Commit 79826ac6 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by Shawn Guo
Browse files

ARM: dts: imx: add "jedec,spi-nor" flash compatible binding



Starting with commit 8947e396 ("Documentation: dt: mtd: replace
"nor-jedec" binding with "jedec, spi-nor"") we have "jedec,spi-nor"
binding indicating support for JEDEC identification.

Use it for all flashes that are supposed to support READ ID op according
to the datasheets.

Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent a7be1e68
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@
				flash: m25p80@0 {
					#address-cells = <1>;
					#size-cells = <1>;
					compatible = "sst,sst25vf016b";
					compatible = "sst,sst25vf016b", "jedec,spi-nor";
					spi-max-frequency = <40000000>;
					reg = <0>;
				};
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
				flash: m25p80@0 {
					#address-cells = <1>;
					#size-cells = <1>;
					compatible = "m25p80";
					compatible = "m25p80", "jedec,spi-nor";
					spi-max-frequency = <40000000>;
					reg = <0>;
				};
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@
	flash: m25p32@1 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "m25p32", "m25p80";
		compatible = "m25p32", "jedec,spi-nor";
		spi-max-frequency = <25000000>;
		reg = <1>;

+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@
	flash: m25p32@1 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "st,m25p32", "st,m25p";
		compatible = "st,m25p32", "st,m25p", "jedec,spi-nor";
		spi-max-frequency = <20000000>;
		reg = <1>;

+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@

&ecspi3 {
	flash: m25p80@0 {
		compatible = "sst,sst25vf016b";
		compatible = "sst,sst25vf016b", "jedec,spi-nor";
		spi-max-frequency = <20000000>;
		reg = <0>;
	};
Loading