diff options
author | Arnd Bergmann <arnd@arndb.de> | 2012-04-30 18:08:35 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-05-09 05:15:45 -0400 |
commit | 47fad7c6f8d9f64780793cc67d8280259538c31c (patch) | |
tree | 33c79cb7389ce309bc2d019512c16f12925c7f95 /arch/arm/boot/dts/usb_a9260_common.dtsi | |
parent | e86bde3caea693b2e615e7b3664e6273160bf864 (diff) | |
parent | 26690863e2c1fa4fee5f6137b219f4b8a1a02287 (diff) |
Merge tag 'at91-for-next-dt' of git://github.com/at91linux/linux-at91 into next/dt
"Jean-Christophe PLAGNIOL-VILLARD" <plagnioj@jcrosoft.com> writes:
ARM: AT91 more DT material
New SoC conversion and boards support
SoC convertion to DT:
- at91sam9260
- at91sam9263
boards:
- Atmel at91sam9g20ek/9263ek
- Calao TNY-A9260/A9263/A9G20
- Calao USB-A9260/A9263
- Ethernnut 5
- Kizbox
* tag 'at91-for-next-dt' of git://github.com/at91linux/linux-at91: (32 commits)
Ethernut 5 board support
ARM: at91: add kizbox board dt support.
ARM: at91: DT: add Calao TNY A9263 board support
ARM: at91: DT: add Calao USB A9263 board support
ARM: at91: add at91sam9263ek DT support
ARM: at91: add at91sam9263 DT support
ARM: at91: standard device init only if DT is not populated.
ARM: at91: DT: add Calao USB A9260 DT support
ARM: at91: Calao USB A926x factorize common binding in usb_a9260_common
ARM: at91: USB A926x update nand partition
ARM: at91: add at91sam9g20ek boards dt support
arm: at91: add Calao TNY-A9260 and TNY-A9G20 board support
ARM: at91: add at91sam9260 DT support
ARM: at91: add defconfig for device tree
ARM: at91/dt: do not specify the board any more
ARN: at91: introduce SOC_AT91xxx define to allow to compile SoC core support
ARM: at91: add SOC_AT91SAM9 kconfig option to factorise select
ARM: at91: pm select memory controler at runtime
ARM: at91: move at91_init_leds to board init
ARM: at91: do not pin mux the UARTs in init_early
...
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
[olof: rebuilt branch due to drop of an early merge]
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/boot/dts/usb_a9260_common.dtsi')
-rw-r--r-- | arch/arm/boot/dts/usb_a9260_common.dtsi | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/usb_a9260_common.dtsi b/arch/arm/boot/dts/usb_a9260_common.dtsi new file mode 100644 index 000000000000..e70d229baef5 --- /dev/null +++ b/arch/arm/boot/dts/usb_a9260_common.dtsi | |||
@@ -0,0 +1,117 @@ | |||
1 | /* | ||
2 | * usb_a926x.dts - Device Tree file for Caloa USB A926x board | ||
3 | * | ||
4 | * Copyright (C) 2011-2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | ||
5 | * | ||
6 | * Licensed under GPLv2 or later. | ||
7 | */ | ||
8 | |||
9 | / { | ||
10 | clocks { | ||
11 | #address-cells = <1>; | ||
12 | #size-cells = <1>; | ||
13 | ranges; | ||
14 | |||
15 | main_clock: clock@0 { | ||
16 | compatible = "atmel,osc", "fixed-clock"; | ||
17 | clock-frequency = <12000000>; | ||
18 | }; | ||
19 | }; | ||
20 | |||
21 | ahb { | ||
22 | apb { | ||
23 | dbgu: serial@fffff200 { | ||
24 | status = "okay"; | ||
25 | }; | ||
26 | |||
27 | macb0: ethernet@fffc4000 { | ||
28 | phy-mode = "rmii"; | ||
29 | status = "okay"; | ||
30 | }; | ||
31 | |||
32 | usb1: gadget@fffa4000 { | ||
33 | atmel,vbus-gpio = <&pioC 5 0>; | ||
34 | status = "okay"; | ||
35 | }; | ||
36 | }; | ||
37 | |||
38 | nand0: nand@40000000 { | ||
39 | nand-bus-width = <8>; | ||
40 | nand-ecc-mode = "soft"; | ||
41 | nand-on-flash-bbt; | ||
42 | status = "okay"; | ||
43 | |||
44 | at91bootstrap@0 { | ||
45 | label = "at91bootstrap"; | ||
46 | reg = <0x0 0x20000>; | ||
47 | }; | ||
48 | |||
49 | barebox@20000 { | ||
50 | label = "barebox"; | ||
51 | reg = <0x20000 0x40000>; | ||
52 | }; | ||
53 | |||
54 | bareboxenv@60000 { | ||
55 | label = "bareboxenv"; | ||
56 | reg = <0x60000 0x20000>; | ||
57 | }; | ||
58 | |||
59 | bareboxenv2@80000 { | ||
60 | label = "bareboxenv2"; | ||
61 | reg = <0x80000 0x20000>; | ||
62 | }; | ||
63 | |||
64 | oftree@80000 { | ||
65 | label = "oftree"; | ||
66 | reg = <0xa0000 0x20000>; | ||
67 | }; | ||
68 | |||
69 | kernel@a0000 { | ||
70 | label = "kernel"; | ||
71 | reg = <0xc0000 0x400000>; | ||
72 | }; | ||
73 | |||
74 | rootfs@4a0000 { | ||
75 | label = "rootfs"; | ||
76 | reg = <0x4c0000 0x7800000>; | ||
77 | }; | ||
78 | |||
79 | data@7ca0000 { | ||
80 | label = "data"; | ||
81 | reg = <0x7cc0000 0x8340000>; | ||
82 | }; | ||
83 | }; | ||
84 | |||
85 | usb0: ohci@00500000 { | ||
86 | num-ports = <2>; | ||
87 | status = "okay"; | ||
88 | }; | ||
89 | }; | ||
90 | |||
91 | leds { | ||
92 | compatible = "gpio-leds"; | ||
93 | |||
94 | user_led { | ||
95 | label = "user_led"; | ||
96 | gpios = <&pioB 21 1>; | ||
97 | linux,default-trigger = "heartbeat"; | ||
98 | }; | ||
99 | }; | ||
100 | |||
101 | gpio_keys { | ||
102 | compatible = "gpio-keys"; | ||
103 | #address-cells = <1>; | ||
104 | #size-cells = <0>; | ||
105 | |||
106 | user_pb { | ||
107 | label = "user_pb"; | ||
108 | gpios = <&pioB 10 1>; | ||
109 | linux,code = <28>; | ||
110 | gpio-key,wakeup; | ||
111 | }; | ||
112 | }; | ||
113 | |||
114 | i2c@0 { | ||
115 | status = "okay"; | ||
116 | }; | ||
117 | }; | ||