mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
scsi: ceva: rename the resource name to match the linux kernel one
The driver will look for a named resource "ecc-addr", but this isn't the official binding. In fact, the official device tree binding documentation doesn't mention any resource names at all. But it is safe to assume that it's the linux ones we have to use if we want to be compatible with the linux device tree. Thus rename "ecc-addr" to "sata-ecc" and convert all the users in u-boot. While at it, also rename "sata-base" to "ahci" although its not used at all. This change doesn't affect the SATA controller on the ZynqMP. Cc: Michal Simek <monstr@monstr.eu> Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
c9bf9af9a7
commit
cde9b147ba
7 changed files with 7 additions and 7 deletions
|
@ -157,7 +157,7 @@
|
|||
compatible = "fsl,ls1012a-ahci";
|
||||
reg = <0x0 0x3200000 0x0 0x10000 /* ccsr sata base */
|
||||
0x0 0x20140520 0x0 0x4>; /* ecc sata addr */
|
||||
reg-names = "sata-base", "ecc-addr";
|
||||
reg-names = "ahci", "sata-ecc";
|
||||
interrupts = <0 69 4>;
|
||||
clocks = <&clockgen 4 0>;
|
||||
status = "disabled";
|
||||
|
|
|
@ -338,7 +338,7 @@
|
|||
compatible = "fsl,ls1028a-ahci";
|
||||
reg = <0x0 0x3200000 0x0 0x10000 /* ccsr sata base */
|
||||
0x7 0x100520 0x0 0x4>; /* ecc sata addr*/
|
||||
reg-names = "sata-base", "ecc-addr";
|
||||
reg-names = "ahci", "sata-ecc";
|
||||
interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
|
@ -331,7 +331,7 @@
|
|||
compatible = "fsl,ls1043a-ahci";
|
||||
reg = <0x0 0x3200000 0x0 0x10000 /* ccsr sata base */
|
||||
0x0 0x20140520 0x0 0x4>; /* ecc sata addr*/
|
||||
reg-names = "sata-base", "ecc-addr";
|
||||
reg-names = "ahci", "sata-ecc";
|
||||
interrupts = <0 69 4>;
|
||||
clocks = <&clockgen 4 0>;
|
||||
status = "disabled";
|
||||
|
|
|
@ -367,7 +367,7 @@
|
|||
compatible = "fsl,ls1046a-ahci";
|
||||
reg = <0x0 0x3200000 0x0 0x10000 /* ccsr sata base */
|
||||
0x0 0x20140520 0x0 0x4>; /* ecc sata addr*/
|
||||
reg-names = "sata-base", "ecc-addr";
|
||||
reg-names = "ahci", "sata-ecc";
|
||||
interrupts = <0 69 4>;
|
||||
clocks = <&clockgen 4 1>;
|
||||
status = "disabled";
|
||||
|
|
|
@ -226,7 +226,7 @@
|
|||
compatible = "fsl,ls1088a-ahci";
|
||||
reg = <0x0 0x3200000 0x0 0x10000 /* ccsr sata base */
|
||||
0x7 0x100520 0x0 0x4>; /* ecc sata addr*/
|
||||
reg-names = "sata-base", "ecc-addr";
|
||||
reg-names = "ahci", "sata-ecc";
|
||||
interrupts = <0 133 4>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
|
@ -469,7 +469,7 @@
|
|||
sata: sata@3200000 {
|
||||
compatible = "fsl,ls1021a-ahci";
|
||||
reg = <0x3200000 0x10000 0x20220520 0x4>;
|
||||
reg-names = "sata-base", "ecc-addr";
|
||||
reg-names = "ahci", "sata-ecc";
|
||||
interrupts = <0 101 4>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
|
@ -212,7 +212,7 @@ static int sata_ceva_of_to_plat(struct udevice *dev)
|
|||
if (priv->base == FDT_ADDR_T_NONE)
|
||||
return -EINVAL;
|
||||
|
||||
ret = dev_read_resource_byname(dev, "ecc-addr", &res_regs);
|
||||
ret = dev_read_resource_byname(dev, "sata-ecc", &res_regs);
|
||||
if (ret)
|
||||
priv->ecc_base = 0;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue