mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
arm64: zynqmp: Wire spi-flash compatible string with flashes
Enable reading tx and rx buswidth from DT via spi-uclass. To get these from uclass spi-flash compatible string has to be added to flash node. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
9cd26aaf39
commit
0ed45f0025
9 changed files with 9 additions and 9 deletions
|
@ -41,7 +41,7 @@
|
|||
&qspi {
|
||||
status = "okay";
|
||||
flash@0 {
|
||||
compatible = "m25p80"; /* 32MB FIXME */
|
||||
compatible = "m25p80", "spi-flash"; /* 32MB FIXME */
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
reg = <0x0>;
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
&qspi {
|
||||
status = "okay";
|
||||
flash@0 {
|
||||
compatible = "m25p80"; /* 32MB */
|
||||
compatible = "m25p80", "spi-flash"; /* 32MB */
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
reg = <0x0>;
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
&qspi {
|
||||
status = "okay";
|
||||
flash@0 {
|
||||
compatible = "m25p80"; /* 32MB */
|
||||
compatible = "m25p80", "spi-flash"; /* 32MB */
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
reg = <0x0>;
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
&qspi {
|
||||
status = "okay";
|
||||
flash@0 {
|
||||
compatible = "m25p80"; /* 32MB */
|
||||
compatible = "m25p80", "spi-flash"; /* 32MB */
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
reg = <0x0>;
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
&qspi {
|
||||
status = "okay";
|
||||
flash@0 {
|
||||
compatible = "m25p80"; /* Micron MT25QU512ABB8ESF */
|
||||
compatible = "m25p80", "spi-flash"; /* Micron MT25QU512ABB8ESF */
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
reg = <0x0>;
|
||||
|
|
|
@ -169,7 +169,7 @@
|
|||
&qspi {
|
||||
status = "okay";
|
||||
flash@0 {
|
||||
compatible = "m25p80"; /* n25q512a 128MiB */
|
||||
compatible = "m25p80", "spi-flash"; /* n25q512a 128MiB */
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
reg = <0x0>;
|
||||
|
|
|
@ -175,7 +175,7 @@
|
|||
&qspi {
|
||||
status = "okay";
|
||||
flash@0 {
|
||||
compatible = "m25p80"; /* n25q512a 128MiB */
|
||||
compatible = "m25p80", "spi-flash"; /* n25q512a 128MiB */
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
reg = <0x0>;
|
||||
|
|
|
@ -512,7 +512,7 @@
|
|||
status = "okay";
|
||||
is-dual = <1>;
|
||||
flash@0 {
|
||||
compatible = "m25p80"; /* 32MB */
|
||||
compatible = "m25p80", "spi-flash"; /* 32MB */
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
reg = <0x0>;
|
||||
|
|
|
@ -449,7 +449,7 @@
|
|||
status = "okay";
|
||||
is-dual = <1>;
|
||||
flash@0 {
|
||||
compatible = "m25p80"; /* 32MB */
|
||||
compatible = "m25p80", "spi-flash"; /* 32MB */
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
reg = <0x0>;
|
||||
|
|
Loading…
Reference in a new issue