dts: cadence_spi: Sync DT bindings with Linux

Adopt the Linux DT bindings and clean-up duplicate
and unused values.

Fix indentation of the QSPI node in the keystone k2g
device tree.

Tested on TI K2G platform:
Tested-by: Vignesh R <vigneshr@ti.com>

Tested on a socfpga-cyclonev board:
Tested-by: Simon Goldschmidt <sgoldschmidt@de.pepperl-fuchs.com>

Signed-off-by: Jason Rush <jarush@gmail.com>
Reviewed-by: Jagan Teki <jagan@openedev.com>
Acked-by: Simon Goldschmidt <sgoldschmidt@de.pepperl-fuchs.com>
Acked-by: Marek Vasut <marex@denx.de>
This commit is contained in:
Jason Rush 2018-01-23 17:13:10 -06:00 committed by Jagan Teki
parent 15a70a5da3
commit 6e62b178e1
12 changed files with 84 additions and 89 deletions

View file

@ -68,46 +68,45 @@
&qspi { &qspi {
status = "okay"; status = "okay";
flash0: m25p80@0 { flash0: m25p80@0 {
compatible = "s25fl512s","spi-flash"; compatible = "s25fl512s","spi-flash";
reg = <0>; reg = <0>;
spi-tx-bus-width = <1>; spi-tx-bus-width = <1>;
spi-rx-bus-width = <4>; spi-rx-bus-width = <4>;
spi-max-frequency = <96000000>; spi-max-frequency = <96000000>;
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
tshsl-ns = <392>; cdns,tshsl-ns = <392>;
tsd2d-ns = <392>; cdns,tsd2d-ns = <392>;
tchsh-ns = <100>; cdns,tchsh-ns = <100>;
tslch-ns = <100>; cdns,tslch-ns = <100>;
block-size = <18>; block-size = <18>;
partition@0 {
partition@0 { label = "QSPI.u-boot-spl-os";
label = "QSPI.u-boot-spl-os"; reg = <0x00000000 0x00100000>;
reg = <0x00000000 0x00100000>; };
}; partition@1 {
partition@1 { label = "QSPI.u-boot-env";
label = "QSPI.u-boot-env"; reg = <0x00100000 0x00040000>;
reg = <0x00100000 0x00040000>; };
}; partition@2 {
partition@2 { label = "QSPI.skern";
label = "QSPI.skern"; reg = <0x00140000 0x0040000>;
reg = <0x00140000 0x0040000>; };
}; partition@3 {
partition@3 { label = "QSPI.pmmc-firmware";
label = "QSPI.pmmc-firmware"; reg = <0x00180000 0x0040000>;
reg = <0x00180000 0x0040000>; };
}; partition@4 {
partition@4 { label = "QSPI.kernel";
label = "QSPI.kernel"; reg = <0x001C0000 0x0800000>;
reg = <0x001C0000 0x0800000>; };
}; partition@5 {
partition@5 { label = "QSPI.file-system";
label = "QSPI.file-system"; reg = <0x009C0000 0x3640000>;
reg = <0x009C0000 0x3640000>; };
}; };
};
}; };
&mmc0 { &mmc0 {

View file

@ -92,8 +92,9 @@
<0x24000000 0x4000000>; <0x24000000 0x4000000>;
interrupts = <GIC_SPI 198 IRQ_TYPE_EDGE_RISING>; interrupts = <GIC_SPI 198 IRQ_TYPE_EDGE_RISING>;
num-cs = <4>; num-cs = <4>;
fifo-depth = <256>; cdns,fifo-depth = <256>;
sram-size = <256>; cdns,fifo-width = <4>;
cdns,trigger-address = <0x24000000>;
status = "disabled"; status = "disabled";
}; };

View file

@ -644,8 +644,9 @@
clocks = <&qspi_clk>; clocks = <&qspi_clk>;
ext-decoder = <0>; /* external decoder */ ext-decoder = <0>; /* external decoder */
num-cs = <4>; num-cs = <4>;
fifo-depth = <128>; cdns,fifo-depth = <128>;
sram-size = <128>; cdns,fifo-width = <4>;
cdns,trigger-address = <0x00000000>;
bus-num = <2>; bus-num = <2>;
status = "disabled"; status = "disabled";
}; };

View file

@ -734,8 +734,8 @@
clocks = <&l4_main_clk>; clocks = <&l4_main_clk>;
ext-decoder = <0>; /* external decoder */ ext-decoder = <0>; /* external decoder */
num-chipselect = <4>; num-chipselect = <4>;
fifo-depth = <128>; cdns,fifo-depth = <128>;
sram-size = <512>; cdns,fifo-width = <4>;
bus-num = <2>; bus-num = <2>;
status = "disabled"; status = "disabled";
}; };

View file

@ -94,10 +94,9 @@
m25p,fast-read; m25p,fast-read;
page-size = <256>; page-size = <256>;
block-size = <16>; /* 2^16, 64KB */ block-size = <16>; /* 2^16, 64KB */
read-delay = <4>; /* delay value in read data capture register */ cdns,tshsl-ns = <50>;
tshsl-ns = <50>; cdns,tsd2d-ns = <50>;
tsd2d-ns = <50>; cdns,tchsh-ns = <4>;
tchsh-ns = <4>; cdns,tslch-ns = <4>;
tslch-ns = <4>;
}; };
}; };

View file

@ -93,11 +93,10 @@
m25p,fast-read; m25p,fast-read;
page-size = <256>; page-size = <256>;
block-size = <16>; /* 2^16, 64KB */ block-size = <16>; /* 2^16, 64KB */
read-delay = <4>; /* delay value in read data capture register */ cdns,tshsl-ns = <50>;
tshsl-ns = <50>; cdns,tsd2d-ns = <50>;
tsd2d-ns = <50>; cdns,tchsh-ns = <4>;
tchsh-ns = <4>; cdns,tslch-ns = <4>;
tslch-ns = <4>;
}; };
}; };

View file

@ -104,11 +104,10 @@
m25p,fast-read; m25p,fast-read;
page-size = <256>; page-size = <256>;
block-size = <16>; /* 2^16, 64KB */ block-size = <16>; /* 2^16, 64KB */
read-delay = <4>; /* delay value in read data capture register */ cdns,tshsl-ns = <50>;
tshsl-ns = <50>; cdns,tsd2d-ns = <50>;
tsd2d-ns = <50>; cdns,tchsh-ns = <4>;
tchsh-ns = <4>; cdns,tslch-ns = <4>;
tslch-ns = <4>;
}; };
}; };

View file

@ -84,11 +84,10 @@
m25p,fast-read; m25p,fast-read;
page-size = <256>; page-size = <256>;
block-size = <16>; /* 2^16, 64KB */ block-size = <16>; /* 2^16, 64KB */
read-delay = <4>; /* delay value in read data capture register */ cdns,tshsl-ns = <50>;
tshsl-ns = <50>; cdns,tsd2d-ns = <50>;
tsd2d-ns = <50>; cdns,tchsh-ns = <4>;
tchsh-ns = <4>; cdns,tslch-ns = <4>;
tslch-ns = <4>;
}; };
}; };

View file

@ -74,11 +74,10 @@
m25p,fast-read; m25p,fast-read;
page-size = <256>; page-size = <256>;
block-size = <16>; /* 2^16, 64KB */ block-size = <16>; /* 2^16, 64KB */
read-delay = <4>; /* delay value in read data capture register */ cdns,tshsl-ns = <50>;
tshsl-ns = <50>; cdns,tsd2d-ns = <50>;
tsd2d-ns = <50>; cdns,tchsh-ns = <4>;
tchsh-ns = <4>; cdns,tslch-ns = <4>;
tslch-ns = <4>;
}; };
}; };

View file

@ -92,10 +92,9 @@
m25p,fast-read; m25p,fast-read;
page-size = <256>; page-size = <256>;
block-size = <16>; /* 2^16, 64KB */ block-size = <16>; /* 2^16, 64KB */
read-delay = <4>; /* delay value in read data capture register */ cdns,tshsl-ns = <50>;
tshsl-ns = <50>; cdns,tsd2d-ns = <50>;
tsd2d-ns = <50>; cdns,tchsh-ns = <4>;
tchsh-ns = <4>; cdns,tslch-ns = <4>;
tslch-ns = <4>;
}; };
}; };

View file

@ -79,11 +79,10 @@
m25p,fast-read; m25p,fast-read;
page-size = <256>; page-size = <256>;
block-size = <16>; /* 2^16, 64KB */ block-size = <16>; /* 2^16, 64KB */
read-delay = <4>; /* delay value in read data capture register */ cdns,tshsl-ns = <50>;
tshsl-ns = <50>; cdns,tsd2d-ns = <50>;
tsd2d-ns = <50>; cdns,tchsh-ns = <4>;
tchsh-ns = <4>; cdns,tslch-ns = <4>;
tslch-ns = <4>;
}; };
flash1: n25q00@1 { flash1: n25q00@1 {
@ -96,11 +95,10 @@
m25p,fast-read; m25p,fast-read;
page-size = <256>; page-size = <256>;
block-size = <16>; /* 2^16, 64KB */ block-size = <16>; /* 2^16, 64KB */
read-delay = <4>; /* delay value in read data capture register */ cdns,tshsl-ns = <50>;
tshsl-ns = <50>; cdns,tsd2d-ns = <50>;
tsd2d-ns = <50>; cdns,tchsh-ns = <4>;
tchsh-ns = <4>; cdns,tslch-ns = <4>;
tslch-ns = <4>;
}; };
}; };

View file

@ -32,7 +32,9 @@
reg = <0x80203000 0x100>, reg = <0x80203000 0x100>,
<0x40000000 0x1000000>; <0x40000000 0x1000000>;
clocks = <3750000>; clocks = <3750000>;
sram-size = <256>; cdns,fifo-depth = <256>;
cdns,fifo-width = <4>;
cdns,trigger-address = <0x40000000>;
status = "okay"; status = "okay";
flash0: n25q32@0 { flash0: n25q32@0 {
@ -44,10 +46,10 @@
m25p,fast-read; m25p,fast-read;
page-size = <256>; page-size = <256>;
block-size = <16>; /* 2^16, 64KB */ block-size = <16>; /* 2^16, 64KB */
tshsl-ns = <50>; cdns,tshsl-ns = <50>;
tsd2d-ns = <50>; cdns,tsd2d-ns = <50>;
tchsh-ns = <4>; cdns,tchsh-ns = <4>;
tslch-ns = <4>; cdns,tslch-ns = <4>;
}; };
}; };
}; };