diff options
author | Hans de Goede <hdegoede@redhat.com> | 2013-12-15 14:23:36 -0500 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2013-12-16 05:51:17 -0500 |
commit | 52e86b37b1d3f7c02938def3a036e0bb0f723964 (patch) | |
tree | 285c0182df9abe2816a4d6cab1688e1dee6bbd78 | |
parent | 24a661e9945bae764853c98ea0e4f6b3de11a8ea (diff) |
ARM: dts: sun5i: Add new sun5i-a13-olinuxino-micro board
The A13-OLinuXino-MICRO is a small dev-board with the Allwinner A13 SoC:
https://www.olimex.com/Products/OLinuXino/A13/A13-OLinuXino-MICRO/
Features:
A13 Cortex A8 processor at 1GHz, 3D Mali400 GPU
256 MB RAM (128Mbit x 16)
5VDC input power supply with own ICs, noise immune design
1 USB host
1 USB OTG which can power the board
SD-card connector for booting the Linux image
VGA video output
LCD signals available on connector so you still can use LCD if you disable VGA/HDMI
Audio output
Microphone input pads (no connector)
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
-rw-r--r-- | arch/arm/boot/dts/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/boot/dts/sun5i-a13-olinuxino-micro.dts | 68 |
2 files changed, 69 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile index d57c1a65b24f..b663ed74e3bb 100644 --- a/arch/arm/boot/dts/Makefile +++ b/arch/arm/boot/dts/Makefile | |||
@@ -255,6 +255,7 @@ dtb-$(CONFIG_ARCH_SUNXI) += \ | |||
255 | sun4i-a10-hackberry.dtb \ | 255 | sun4i-a10-hackberry.dtb \ |
256 | sun5i-a10s-olinuxino-micro.dtb \ | 256 | sun5i-a10s-olinuxino-micro.dtb \ |
257 | sun5i-a13-olinuxino.dtb \ | 257 | sun5i-a13-olinuxino.dtb \ |
258 | sun5i-a13-olinuxino-micro.dtb \ | ||
258 | sun6i-a31-colombus.dtb \ | 259 | sun6i-a31-colombus.dtb \ |
259 | sun7i-a20-cubieboard2.dtb \ | 260 | sun7i-a20-cubieboard2.dtb \ |
260 | sun7i-a20-cubietruck.dtb \ | 261 | sun7i-a20-cubietruck.dtb \ |
diff --git a/arch/arm/boot/dts/sun5i-a13-olinuxino-micro.dts b/arch/arm/boot/dts/sun5i-a13-olinuxino-micro.dts new file mode 100644 index 000000000000..fe2ce0acdb06 --- /dev/null +++ b/arch/arm/boot/dts/sun5i-a13-olinuxino-micro.dts | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * Copyright 2012 Maxime Ripard | ||
3 | * Copyright 2013 Hans de Goede <hdegoede@redhat.com> | ||
4 | * | ||
5 | * Maxime Ripard <maxime.ripard@free-electrons.com> | ||
6 | * | ||
7 | * The code contained herein is licensed under the GNU General Public | ||
8 | * License. You may obtain a copy of the GNU General Public License | ||
9 | * Version 2 or later at the following locations: | ||
10 | * | ||
11 | * http://www.opensource.org/licenses/gpl-license.html | ||
12 | * http://www.gnu.org/copyleft/gpl.html | ||
13 | */ | ||
14 | |||
15 | /dts-v1/; | ||
16 | /include/ "sun5i-a13.dtsi" | ||
17 | |||
18 | / { | ||
19 | model = "Olimex A13-Olinuxino Micro"; | ||
20 | compatible = "olimex,a13-olinuxino-micro", "allwinner,sun5i-a13"; | ||
21 | |||
22 | soc@01c00000 { | ||
23 | pinctrl@01c20800 { | ||
24 | led_pins_olinuxinom: led_pins@0 { | ||
25 | allwinner,pins = "PG9"; | ||
26 | allwinner,function = "gpio_out"; | ||
27 | allwinner,drive = <1>; | ||
28 | allwinner,pull = <0>; | ||
29 | }; | ||
30 | }; | ||
31 | |||
32 | uart1: serial@01c28400 { | ||
33 | pinctrl-names = "default"; | ||
34 | pinctrl-0 = <&uart1_pins_b>; | ||
35 | status = "okay"; | ||
36 | }; | ||
37 | |||
38 | i2c0: i2c@01c2ac00 { | ||
39 | pinctrl-names = "default"; | ||
40 | pinctrl-0 = <&i2c0_pins_a>; | ||
41 | status = "okay"; | ||
42 | }; | ||
43 | |||
44 | i2c1: i2c@01c2b000 { | ||
45 | pinctrl-names = "default"; | ||
46 | pinctrl-0 = <&i2c1_pins_a>; | ||
47 | status = "okay"; | ||
48 | }; | ||
49 | |||
50 | i2c2: i2c@01c2b400 { | ||
51 | pinctrl-names = "default"; | ||
52 | pinctrl-0 = <&i2c2_pins_a>; | ||
53 | status = "okay"; | ||
54 | }; | ||
55 | }; | ||
56 | |||
57 | leds { | ||
58 | compatible = "gpio-leds"; | ||
59 | pinctrl-names = "default"; | ||
60 | pinctrl-0 = <&led_pins_olinuxinom>; | ||
61 | |||
62 | power { | ||
63 | label = "a13-olinuxino-micro:green:power"; | ||
64 | gpios = <&pio 6 9 0>; | ||
65 | default-state = "on"; | ||
66 | }; | ||
67 | }; | ||
68 | }; | ||