diff options
author | Wang Dongsheng <Dongsheng.Wang@freescale.com> | 2012-08-28 23:00:49 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2012-09-12 15:57:11 -0400 |
commit | 3a0f880160ba1179db291d72062b13f2d373b9ee (patch) | |
tree | c3a5145120876deca8840ff97f9dab55377d933c /arch/powerpc/boot | |
parent | 17ae4f0aef09c1bcf380dcea555e83d27436e7d5 (diff) |
powerpc/8544ds: add partition table for norflash
create partition table for norflash.
Signed-off-by: Wang Dongsheng <Dongsheng.Wang@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/boot')
-rw-r--r-- | arch/powerpc/boot/dts/mpc8544ds.dts | 4 | ||||
-rw-r--r-- | arch/powerpc/boot/dts/mpc8544ds.dtsi | 39 |
2 files changed, 42 insertions, 1 deletions
diff --git a/arch/powerpc/boot/dts/mpc8544ds.dts b/arch/powerpc/boot/dts/mpc8544ds.dts index e934987e882b..ed38874c3a36 100644 --- a/arch/powerpc/boot/dts/mpc8544ds.dts +++ b/arch/powerpc/boot/dts/mpc8544ds.dts | |||
@@ -20,8 +20,10 @@ | |||
20 | reg = <0 0 0 0>; // Filled by U-Boot | 20 | reg = <0 0 0 0>; // Filled by U-Boot |
21 | }; | 21 | }; |
22 | 22 | ||
23 | lbc: localbus@e0005000 { | 23 | board_lbc: lbc: localbus@e0005000 { |
24 | reg = <0 0xe0005000 0 0x1000>; | 24 | reg = <0 0xe0005000 0 0x1000>; |
25 | |||
26 | ranges = <0x0 0x0 0x0 0xff800000 0x800000>; | ||
25 | }; | 27 | }; |
26 | 28 | ||
27 | board_soc: soc: soc8544@e0000000 { | 29 | board_soc: soc: soc8544@e0000000 { |
diff --git a/arch/powerpc/boot/dts/mpc8544ds.dtsi b/arch/powerpc/boot/dts/mpc8544ds.dtsi index 77ebc9f1d37c..b219d035d794 100644 --- a/arch/powerpc/boot/dts/mpc8544ds.dtsi +++ b/arch/powerpc/boot/dts/mpc8544ds.dtsi | |||
@@ -32,6 +32,45 @@ | |||
32 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 32 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
33 | */ | 33 | */ |
34 | 34 | ||
35 | &board_lbc { | ||
36 | nor@0,0 { | ||
37 | #address-cells = <1>; | ||
38 | #size-cells = <1>; | ||
39 | compatible = "cfi-flash"; | ||
40 | reg = <0x0 0x0 0x800000>; | ||
41 | bank-width = <2>; | ||
42 | device-width = <1>; | ||
43 | |||
44 | partition@0 { | ||
45 | reg = <0x0 0x10000>; | ||
46 | label = "dtb-nor"; | ||
47 | }; | ||
48 | |||
49 | partition@20000 { | ||
50 | reg = <0x20000 0x30000>; | ||
51 | label = "diagnostic-nor"; | ||
52 | read-only; | ||
53 | }; | ||
54 | |||
55 | partition@200000 { | ||
56 | reg = <0x200000 0x200000>; | ||
57 | label = "dink-nor"; | ||
58 | read-only; | ||
59 | }; | ||
60 | |||
61 | partition@400000 { | ||
62 | reg = <0x400000 0x380000>; | ||
63 | label = "kernel-nor"; | ||
64 | }; | ||
65 | |||
66 | partition@780000 { | ||
67 | reg = <0x780000 0x80000>; | ||
68 | label = "u-boot-nor"; | ||
69 | read-only; | ||
70 | }; | ||
71 | }; | ||
72 | }; | ||
73 | |||
35 | &board_soc { | 74 | &board_soc { |
36 | enet0: ethernet@24000 { | 75 | enet0: ethernet@24000 { |
37 | phy-handle = <&phy0>; | 76 | phy-handle = <&phy0>; |