aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/boot/dts/am335x-icev2.dts33
1 files changed, 33 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/am335x-icev2.dts b/arch/arm/boot/dts/am335x-icev2.dts
index a2ad076822db..1e643dcf63ec 100644
--- a/arch/arm/boot/dts/am335x-icev2.dts
+++ b/arch/arm/boot/dts/am335x-icev2.dts
@@ -245,6 +245,39 @@
245 spi-max-frequency = <1000000>; 245 spi-max-frequency = <1000000>;
246 spi-cpol; 246 spi-cpol;
247 }; 247 };
248
249 spi_nor: flash@0 {
250 #address-cells = <1>;
251 #size-cells = <1>;
252 compatible = "winbond,w25q64", "jedec,spi-nor";
253 spi-max-frequency = <80000000>;
254 m25p,fast-read;
255 reg = <0>;
256
257 partition@0 {
258 label = "u-boot-spl";
259 reg = <0x0 0x80000>;
260 read-only;
261 };
262
263 partition@1 {
264 label = "u-boot";
265 reg = <0x80000 0x100000>;
266 read-only;
267 };
268
269 partition@2 {
270 label = "u-boot-env";
271 reg = <0x180000 0x20000>;
272 read-only;
273 };
274
275 partition@3 {
276 label = "misc";
277 reg = <0x1A0000 0x660000>;
278 };
279 };
280
248}; 281};
249 282
250&tscadc { 283&tscadc {