diff options
Diffstat (limited to 'arch/arm/boot/dts/spear300.dtsi')
-rw-r--r-- | arch/arm/boot/dts/spear300.dtsi | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/spear300.dtsi b/arch/arm/boot/dts/spear300.dtsi new file mode 100644 index 000000000000..f9fcbf4f477b --- /dev/null +++ b/arch/arm/boot/dts/spear300.dtsi | |||
@@ -0,0 +1,72 @@ | |||
1 | /* | ||
2 | * DTS file for SPEAr300 SoC | ||
3 | * | ||
4 | * Copyright 2012 Viresh Kumar <viresh.kumar@st.com> | ||
5 | * | ||
6 | * The code contained herein is licensed under the GNU General Public | ||
7 | * License. You may obtain a copy of the GNU General Public License | ||
8 | * Version 2 or later at the following locations: | ||
9 | * | ||
10 | * http://www.opensource.org/licenses/gpl-license.html | ||
11 | * http://www.gnu.org/copyleft/gpl.html | ||
12 | */ | ||
13 | |||
14 | /include/ "spear3xx.dtsi" | ||
15 | |||
16 | / { | ||
17 | ahb { | ||
18 | #address-cells = <1>; | ||
19 | #size-cells = <1>; | ||
20 | compatible = "simple-bus"; | ||
21 | ranges = <0x60000000 0x60000000 0x50000000 | ||
22 | 0xd0000000 0xd0000000 0x30000000>; | ||
23 | |||
24 | clcd@60000000 { | ||
25 | compatible = "arm,clcd-pl110", "arm,primecell"; | ||
26 | reg = <0x60000000 0x1000>; | ||
27 | interrupts = <30>; | ||
28 | status = "disabled"; | ||
29 | }; | ||
30 | |||
31 | fsmc: flash@94000000 { | ||
32 | compatible = "st,spear600-fsmc-nand"; | ||
33 | #address-cells = <1>; | ||
34 | #size-cells = <1>; | ||
35 | reg = <0x94000000 0x1000 /* FSMC Register */ | ||
36 | 0x80000000 0x0010>; /* NAND Base */ | ||
37 | reg-names = "fsmc_regs", "nand_data"; | ||
38 | st,ale-off = <0x20000>; | ||
39 | st,cle-off = <0x10000>; | ||
40 | status = "disabled"; | ||
41 | }; | ||
42 | |||
43 | sdhci@70000000 { | ||
44 | compatible = "st,sdhci-spear"; | ||
45 | reg = <0x70000000 0x100>; | ||
46 | interrupts = <1>; | ||
47 | status = "disabled"; | ||
48 | }; | ||
49 | |||
50 | apb { | ||
51 | #address-cells = <1>; | ||
52 | #size-cells = <1>; | ||
53 | compatible = "simple-bus"; | ||
54 | ranges = <0xa0000000 0xa0000000 0x10000000 | ||
55 | 0xd0000000 0xd0000000 0x30000000>; | ||
56 | |||
57 | gpio1: gpio@a9000000 { | ||
58 | #gpio-cells = <2>; | ||
59 | compatible = "arm,pl061", "arm,primecell"; | ||
60 | gpio-controller; | ||
61 | reg = <0xa9000000 0x1000>; | ||
62 | status = "disabled"; | ||
63 | }; | ||
64 | |||
65 | kbd@a0000000 { | ||
66 | compatible = "st,spear300-kbd"; | ||
67 | reg = <0xa0000000 0x1000>; | ||
68 | status = "disabled"; | ||
69 | }; | ||
70 | }; | ||
71 | }; | ||
72 | }; | ||