blob: 1ba8defae672b26028efb1c8c96213d36e1b43d9 [file] [log] [blame]
Hong Xucce783c2012-04-17 14:26:29 +08001/*
2 * at91sam9n12ek.dts - Device Tree file for AT91SAM9N12-EK board
3 *
4 * Copyright (C) 2012 Atmel,
5 * 2012 Hong Xu <hong.xu@atmel.com>
6 *
7 * Licensed under GPLv2 or later.
8 */
9/dts-v1/;
Jean-Christophe PLAGNIOL-VILLARD6db64d22013-05-15 01:21:50 +080010#include "at91sam9n12.dtsi"
Hong Xucce783c2012-04-17 14:26:29 +080011
12/ {
13 model = "Atmel AT91SAM9N12-EK";
14 compatible = "atmel,at91sam9n12ek", "atmel,at91sam9n12", "atmel,at91sam9";
15
16 chosen {
Nicolas Ferrea57603c2013-06-28 10:39:15 +020017 bootargs = "console=ttyS0,115200 root=/dev/mtdblock1 rw rootfstype=jffs2";
Hong Xucce783c2012-04-17 14:26:29 +080018 };
19
20 memory {
Nicolas Ferrea57603c2013-06-28 10:39:15 +020021 reg = <0x20000000 0x8000000>;
Hong Xucce783c2012-04-17 14:26:29 +080022 };
23
24 clocks {
25 #address-cells = <1>;
26 #size-cells = <1>;
27 ranges;
28
29 main_clock: clock@0 {
30 compatible = "atmel,osc", "fixed-clock";
31 clock-frequency = <16000000>;
32 };
33 };
34
35 ahb {
36 apb {
37 dbgu: serial@fffff200 {
38 status = "okay";
39 };
Ludovic Desrochesfbc18712012-09-12 08:42:17 +020040
41 i2c0: i2c@f8010000 {
42 status = "okay";
voice82914f82013-07-11 11:30:45 +080043
Bo Shene6f79912013-10-14 13:38:31 +080044 wm8904: codec@1a {
45 compatible = "wm8904";
46 reg = <0x1a>;
47 };
48
voice82914f82013-07-11 11:30:45 +080049 qt1070: keyboard@1b {
50 compatible = "qt1070";
51 reg = <0x1b>;
52 interrupt-parent = <&pioA>;
53 interrupts = <2 IRQ_TYPE_EDGE_FALLING>;
54 pinctrl-names = "default";
55 pinctrl-0 = <&pinctrl_qt1070_irq>;
56 };
Ludovic Desrochesfbc18712012-09-12 08:42:17 +020057 };
58
59 i2c1: i2c@f8014000 {
60 status = "okay";
61 };
Ludovic Desroches4134a452012-11-19 12:24:02 +010062
63 mmc0: mmc@f0008000 {
Jean-Christophe PLAGNIOL-VILLARD199e2ed2012-11-20 00:38:18 +080064 pinctrl-0 = <
65 &pinctrl_board_mmc0
66 &pinctrl_mmc0_slot0_clk_cmd_dat0
67 &pinctrl_mmc0_slot0_dat1_3>;
Ludovic Desroches4134a452012-11-19 12:24:02 +010068 status = "okay";
69 slot@0 {
70 reg = <0>;
71 bus-width = <4>;
Jean-Christophe PLAGNIOL-VILLARD92f86292013-04-24 08:34:25 +080072 cd-gpios = <&pioA 7 GPIO_ACTIVE_HIGH>;
Ludovic Desroches4134a452012-11-19 12:24:02 +010073 };
74 };
Jean-Christophe PLAGNIOL-VILLARD199e2ed2012-11-20 00:38:18 +080075
76 pinctrl@fffff400 {
77 mmc0 {
78 pinctrl_board_mmc0: mmc0-board {
79 atmel,pins =
Jean-Christophe PLAGNIOL-VILLARDc9d0f312013-04-24 08:34:25 +080080 <AT91_PIOA 7 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH>; /* PA7 gpio CD pin pull up and deglitch */
Jean-Christophe PLAGNIOL-VILLARD199e2ed2012-11-20 00:38:18 +080081 };
82 };
voice82914f82013-07-11 11:30:45 +080083
84 qt1070 {
85 pinctrl_qt1070_irq: qt1070_irq {
86 atmel,pins =
87 <AT91_PIOA 2 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH>;
88 };
89 };
Jean-Christophe PLAGNIOL-VILLARD199e2ed2012-11-20 00:38:18 +080090 };
Richard Genoudb6811e92013-04-03 14:03:05 +080091
92 spi0: spi@f0000000 {
93 status = "okay";
94 cs-gpios = <&pioA 14 0>, <0>, <0>, <0>;
95 m25p80@0 {
96 compatible = "atmel,at25df321a";
97 spi-max-frequency = <50000000>;
98 reg = <0>;
99 };
100 };
Wenyou Yangc77bcef2013-05-31 11:11:33 +0800101
102 watchdog@fffffe40 {
103 status = "okay";
104 };
Hong Xucce783c2012-04-17 14:26:29 +0800105 };
106
107 nand0: nand@40000000 {
108 nand-bus-width = <8>;
Josh Wuc18c6b22013-01-23 20:47:10 +0800109 nand-ecc-mode = "hw";
110 atmel,has-pmecc;
111 atmel,pmecc-cap = <2>;
112 atmel,pmecc-sector-size = <512>;
Hong Xucce783c2012-04-17 14:26:29 +0800113 nand-on-flash-bbt;
114 status = "okay";
115 };
116 };
117
118 leds {
119 compatible = "gpio-leds";
120
121 d8 {
122 label = "d8";
Jean-Christophe PLAGNIOL-VILLARD92f86292013-04-24 08:34:25 +0800123 gpios = <&pioB 4 GPIO_ACTIVE_LOW>;
Hong Xucce783c2012-04-17 14:26:29 +0800124 linux,default-trigger = "mmc0";
125 };
126
127 d9 {
128 label = "d6";
Jean-Christophe PLAGNIOL-VILLARD92f86292013-04-24 08:34:25 +0800129 gpios = <&pioB 5 GPIO_ACTIVE_LOW>;
Hong Xucce783c2012-04-17 14:26:29 +0800130 linux,default-trigger = "nand-disk";
131 };
132
133 d10 {
134 label = "d7";
Jean-Christophe PLAGNIOL-VILLARD92f86292013-04-24 08:34:25 +0800135 gpios = <&pioB 6 GPIO_ACTIVE_HIGH>;
Hong Xucce783c2012-04-17 14:26:29 +0800136 linux,default-trigger = "heartbeat";
137 };
138 };
139
140 gpio_keys {
141 compatible = "gpio-keys";
Hong Xucce783c2012-04-17 14:26:29 +0800142
143 enter {
144 label = "Enter";
voicef7042042013-07-11 11:30:46 +0800145 gpios = <&pioB 3 GPIO_ACTIVE_LOW>;
Hong Xucce783c2012-04-17 14:26:29 +0800146 linux,code = <28>;
147 gpio-key,wakeup;
148 };
149 };
150};