diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/omap3-overo.dtsi | 42 | ||||
-rw-r--r-- | arch/arm/boot/dts/omap3-tobi.dts | 35 | ||||
-rw-r--r-- | arch/arm/mach-omap2/Makefile.boot | 2 |
3 files changed, 78 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/omap3-overo.dtsi b/arch/arm/boot/dts/omap3-overo.dtsi new file mode 100644 index 000000000000..d6cc5e2671e7 --- /dev/null +++ b/arch/arm/boot/dts/omap3-overo.dtsi | |||
@@ -0,0 +1,42 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2012 Florian Vaussard, EPFL Mobots group | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 as | ||
6 | * published by the Free Software Foundation. | ||
7 | */ | ||
8 | |||
9 | /* | ||
10 | * The Gumstix Overo must be combined with an expansion board. | ||
11 | */ | ||
12 | /dts-v1/; | ||
13 | |||
14 | /include/ "omap3.dtsi" | ||
15 | |||
16 | &i2c1 { | ||
17 | clock-frequency = <2600000>; | ||
18 | |||
19 | twl: twl@48 { | ||
20 | reg = <0x48>; | ||
21 | interrupts = <7>; /* SYS_NIRQ cascaded to intc */ | ||
22 | interrupt-parent = <&intc>; | ||
23 | }; | ||
24 | }; | ||
25 | |||
26 | /include/ "twl4030.dtsi" | ||
27 | |||
28 | /* i2c2 pins are used for gpio */ | ||
29 | &i2c2 { | ||
30 | status = "disabled"; | ||
31 | }; | ||
32 | |||
33 | /* on board microSD slot */ | ||
34 | &mmc1 { | ||
35 | vmmc-supply = <&vmmc1>; | ||
36 | bus-width = <4>; | ||
37 | }; | ||
38 | |||
39 | /* optional on board WiFi */ | ||
40 | &mmc2 { | ||
41 | bus-width = <4>; | ||
42 | }; | ||
diff --git a/arch/arm/boot/dts/omap3-tobi.dts b/arch/arm/boot/dts/omap3-tobi.dts new file mode 100644 index 000000000000..a13d12de77ff --- /dev/null +++ b/arch/arm/boot/dts/omap3-tobi.dts | |||
@@ -0,0 +1,35 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2012 Florian Vaussard, EPFL Mobots group | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 as | ||
6 | * published by the Free Software Foundation. | ||
7 | */ | ||
8 | |||
9 | /* | ||
10 | * Tobi expansion board is manufactured by Gumstix Inc. | ||
11 | */ | ||
12 | |||
13 | /include/ "omap3-overo.dtsi" | ||
14 | |||
15 | / { | ||
16 | model = "TI OMAP3 Gumstix Overo on Tobi"; | ||
17 | compatible = "ti,omap3-tobi", "ti,omap3-overo", "ti,omap3"; | ||
18 | |||
19 | leds { | ||
20 | compatible = "gpio-leds"; | ||
21 | heartbeat { | ||
22 | label = "overo:red:gpio21"; | ||
23 | gpios = <&gpio1 21 0>; | ||
24 | linux,default-trigger = "heartbeat"; | ||
25 | }; | ||
26 | }; | ||
27 | }; | ||
28 | |||
29 | &i2c3 { | ||
30 | clock-frequency = <100000>; | ||
31 | }; | ||
32 | |||
33 | &mmc3 { | ||
34 | status = "disabled"; | ||
35 | }; | ||
diff --git a/arch/arm/mach-omap2/Makefile.boot b/arch/arm/mach-omap2/Makefile.boot index 6cf1c2d336da..18813ab1bb3c 100644 --- a/arch/arm/mach-omap2/Makefile.boot +++ b/arch/arm/mach-omap2/Makefile.boot | |||
@@ -3,7 +3,7 @@ params_phys-y := 0x80000100 | |||
3 | initrd_phys-y := 0x80800000 | 3 | initrd_phys-y := 0x80800000 |
4 | 4 | ||
5 | dtb-$(CONFIG_SOC_OMAP2420) += omap2420-h4.dtb | 5 | dtb-$(CONFIG_SOC_OMAP2420) += omap2420-h4.dtb |
6 | dtb-$(CONFIG_ARCH_OMAP3) += omap3-beagle.dtb omap3-evm.dtb | 6 | dtb-$(CONFIG_ARCH_OMAP3) += omap3-beagle.dtb omap3-evm.dtb omap3-tobi.dtb |
7 | dtb-$(CONFIG_ARCH_OMAP4) += omap4-panda.dtb omap4-pandaES.dtb | 7 | dtb-$(CONFIG_ARCH_OMAP4) += omap4-panda.dtb omap4-pandaES.dtb |
8 | dtb-$(CONFIG_ARCH_OMAP4) += omap4-var_som.dtb omap4-sdp.dtb | 8 | dtb-$(CONFIG_ARCH_OMAP4) += omap4-var_som.dtb omap4-sdp.dtb |
9 | dtb-$(CONFIG_SOC_OMAP5) += omap5-evm.dtb | 9 | dtb-$(CONFIG_SOC_OMAP5) += omap5-evm.dtb |