]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc/85xx: mpc8548cds - Add NOR flash node to dts
authorchenhui zhao <chenhui.zhao@freescale.com>
Tue, 6 Mar 2012 09:06:40 +0000 (17:06 +0800)
committerKumar Gala <galak@kernel.crashing.org>
Fri, 16 Mar 2012 20:58:20 +0000 (15:58 -0500)
Signed-off-by: Zhao Chenhui <chenhui.zhao@freescale.com>
Signed-off-by: Li Yang <leoli@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/boot/dts/mpc8548cds.dts

index 07b8dae0f46e5366f684e871dc3e97334901dc90..c3c8741b4e4cf692856c0c8d0dfe455805118778 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * MPC8548 CDS Device Tree Source
  *
- * Copyright 2006, 2008 Freescale Semiconductor Inc.
+ * Copyright 2006, 2008, 2011 Freescale Semiconductor Inc.
  *
  * This program is free software; you can redistribute  it and/or modify it
  * under  the terms of  the GNU General  Public License as published by the
 
        lbc: localbus@e0005000 {
                reg = <0 0xe0005000 0 0x1000>;
+
+               ranges = <0x0 0x0 0x0 0xff000000 0x01000000>;
+
+               nor@0,0 {
+                       #address-cells = <1>;
+                       #size-cells = <1>;
+                       compatible = "cfi-flash";
+                       reg = <0x0 0x0 0x01000000>;
+                       bank-width = <2>;
+                       device-width = <2>;
+
+                       partition@0 {
+                               reg = <0x0 0x0b00000>;
+                               label = "ramdisk-nor";
+                       };
+
+                       partition@300000 {
+                               reg = <0x0b00000 0x0400000>;
+                               label = "kernel-nor";
+                       };
+
+                       partition@700000 {
+                               reg = <0x0f00000 0x060000>;
+                               label = "dtb-nor";
+                       };
+
+                       partition@760000 {
+                               reg = <0x0f60000 0x020000>;
+                               label = "env-nor";
+                               read-only;
+                       };
+
+                       partition@780000 {
+                               reg = <0x0f80000 0x080000>;
+                               label = "u-boot-nor";
+                               read-only;
+                       };
+               };
        };
 
        soc: soc8548@e0000000 {