1/* 2 * at91sam9m10g45ek.dts - Device Tree file for AT91SAM9M10G45-EK board 3 * 4 * Copyright (C) 2011 Atmel, 5 * 2011 Nicolas Ferre <nicolas.ferre@atmel.com> 6 * 7 * Licensed under GPLv2 or later. 8 */ 9/dts-v1/; 10#include "at91sam9g45.dtsi" 11#include <dt-bindings/pwm/pwm.h> 12 13/ { 14 model = "Atmel AT91SAM9M10G45-EK"; 15 compatible = "atmel,at91sam9m10g45ek", "atmel,at91sam9g45", "atmel,at91sam9"; 16 17 chosen { 18 bootargs = "mem=64M root=/dev/mtdblock1 rw rootfstype=jffs2"; 19 stdout-path = "serial0:115200n8"; 20 }; 21 22 memory { 23 reg = <0x70000000 0x4000000>; 24 }; 25 26 clocks { 27 slow_xtal { 28 clock-frequency = <32768>; 29 }; 30 31 main_xtal { 32 clock-frequency = <12000000>; 33 }; 34 }; 35 36 ahb { 37 apb { 38 dbgu: serial@ffffee00 { 39 status = "okay"; 40 }; 41 42 usart1: serial@fff90000 { 43 pinctrl-0 = 44 <&pinctrl_usart1 45 &pinctrl_usart1_rts 46 &pinctrl_usart1_cts>; 47 status = "okay"; 48 }; 49 50 macb0: ethernet@fffbc000 { 51 phy-mode = "rmii"; 52 status = "okay"; 53 }; 54 55 i2c0: i2c@fff84000 { 56 status = "okay"; 57 ov2640: camera@30 { 58 compatible = "ovti,ov2640"; 59 reg = <0x30>; 60 pinctrl-names = "default"; 61 pinctrl-0 = <&pinctrl_pck1_as_isi_mck &pinctrl_sensor_power &pinctrl_sensor_reset>; 62 resetb-gpios = <&pioD 12 GPIO_ACTIVE_LOW>; 63 pwdn-gpios = <&pioD 13 GPIO_ACTIVE_HIGH>; 64 clocks = <&pck1>; 65 clock-names = "xvclk"; 66 assigned-clocks = <&pck1>; 67 assigned-clock-rates = <25000000>; 68 69 port { 70 ov2640_0: endpoint { 71 remote-endpoint = <&isi_0>; 72 bus-width = <8>; 73 }; 74 }; 75 }; 76 }; 77 78 i2c1: i2c@fff88000 { 79 status = "okay"; 80 }; 81 82 watchdog@fffffd40 { 83 status = "okay"; 84 }; 85 86 mmc0: mmc@fff80000 { 87 pinctrl-0 = < 88 &pinctrl_board_mmc0 89 &pinctrl_mmc0_slot0_clk_cmd_dat0 90 &pinctrl_mmc0_slot0_dat1_3>; 91 status = "okay"; 92 slot@0 { 93 reg = <0>; 94 bus-width = <4>; 95 cd-gpios = <&pioD 10 GPIO_ACTIVE_HIGH>; 96 }; 97 }; 98 99 mmc1: mmc@fffd0000 { 100 pinctrl-0 = < 101 &pinctrl_board_mmc1 102 &pinctrl_mmc1_slot0_clk_cmd_dat0 103 &pinctrl_mmc1_slot0_dat1_3>; 104 status = "okay"; 105 slot@0 { 106 reg = <0>; 107 bus-width = <4>; 108 cd-gpios = <&pioD 11 GPIO_ACTIVE_HIGH>; 109 wp-gpios = <&pioD 29 GPIO_ACTIVE_HIGH>; 110 }; 111 }; 112 113 pinctrl@fffff200 { 114 camera_sensor { 115 pinctrl_pck1_as_isi_mck: pck1_as_isi_mck-0 { 116 atmel,pins = 117 <AT91_PIOB 31 AT91_PERIPH_B AT91_PINCTRL_NONE>; 118 }; 119 120 pinctrl_sensor_reset: sensor_reset-0 { 121 atmel,pins = 122 <AT91_PIOD 12 AT91_PERIPH_GPIO AT91_PINCTRL_NONE>; 123 }; 124 125 pinctrl_sensor_power: sensor_power-0 { 126 atmel,pins = 127 <AT91_PIOD 13 AT91_PERIPH_GPIO AT91_PINCTRL_NONE>; 128 }; 129 }; 130 mmc0 { 131 pinctrl_board_mmc0: mmc0-board { 132 atmel,pins = 133 <AT91_PIOD 10 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH>; /* PD10 gpio CD pin pull up and deglitch */ 134 }; 135 }; 136 137 mmc1 { 138 pinctrl_board_mmc1: mmc1-board { 139 atmel,pins = 140 <AT91_PIOD 11 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH /* PD11 gpio CD pin pull up and deglitch */ 141 AT91_PIOD 29 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP>; /* PD29 gpio WP pin pull up */ 142 }; 143 }; 144 145 pwm0 { 146 pinctrl_pwm_leds: pwm-led { 147 atmel,pins = 148 <AT91_PIOD 0 AT91_PERIPH_B AT91_PINCTRL_PULL_UP /* PD0 periph B */ 149 AT91_PIOD 31 AT91_PERIPH_B AT91_PINCTRL_PULL_UP>; /* PD31 periph B */ 150 }; 151 }; 152 }; 153 154 spi0: spi@fffa4000{ 155 status = "okay"; 156 cs-gpios = <&pioB 3 0>, <0>, <0>, <0>; 157 mtd_dataflash@0 { 158 compatible = "atmel,at45", "atmel,dataflash"; 159 spi-max-frequency = <13000000>; 160 reg = <0>; 161 }; 162 }; 163 164 usb2: gadget@fff78000 { 165 atmel,vbus-gpio = <&pioB 19 GPIO_ACTIVE_HIGH>; 166 status = "okay"; 167 }; 168 169 ac97: sound@fffac000 { 170 status = "okay"; 171 }; 172 173 adc0: adc@fffb0000 { 174 pinctrl-names = "default"; 175 pinctrl-0 = < 176 &pinctrl_adc0_ad0 177 &pinctrl_adc0_ad1 178 &pinctrl_adc0_ad2 179 &pinctrl_adc0_ad3 180 &pinctrl_adc0_ad4 181 &pinctrl_adc0_ad5 182 &pinctrl_adc0_ad6 183 &pinctrl_adc0_ad7>; 184 atmel,adc-ts-wires = <4>; 185 status = "okay"; 186 }; 187 188 isi@fffb4000 { 189 pinctrl-names = "default"; 190 pinctrl-0 = <&pinctrl_isi_data_0_7>; 191 status = "okay"; 192 port { 193 isi_0: endpoint { 194 remote-endpoint = <&ov2640_0>; 195 bus-width = <8>; 196 vsync-active = <1>; 197 hsync-active = <1>; 198 }; 199 }; 200 }; 201 202 pwm0: pwm@fffb8000 { 203 status = "okay"; 204 205 pinctrl-names = "default"; 206 pinctrl-0 = <&pinctrl_pwm_leds>; 207 }; 208 209 rtc@fffffd20 { 210 atmel,rtt-rtc-time-reg = <&gpbr 0x0>; 211 status = "okay"; 212 }; 213 214 gpbr: syscon@fffffd60 { 215 status = "okay"; 216 }; 217 218 rtc@fffffdb0 { 219 status = "okay"; 220 }; 221 }; 222 223 fb0: fb@0x00500000 { 224 display = <&display0>; 225 status = "okay"; 226 227 display0: display { 228 bits-per-pixel = <32>; 229 atmel,lcdcon-backlight; 230 atmel,dmacon = <0x1>; 231 atmel,lcdcon2 = <0x80008002>; 232 atmel,guard-time = <9>; 233 atmel,lcd-wiring-mode = "RGB"; 234 235 display-timings { 236 native-mode = <&timing0>; 237 timing0: timing0 { 238 clock-frequency = <9000000>; 239 hactive = <480>; 240 vactive = <272>; 241 hback-porch = <1>; 242 hfront-porch = <1>; 243 vback-porch = <40>; 244 vfront-porch = <1>; 245 hsync-len = <45>; 246 vsync-len = <1>; 247 }; 248 }; 249 }; 250 }; 251 252 ebi: ebi@10000000 { 253 status = "okay"; 254 255 nand_controller: nand-controller { 256 status = "okay"; 257 pinctrl-0 = <&pinctrl_nand_cs &pinctrl_nand_rb>; 258 pinctrl-names = "default"; 259 260 nand@3 { 261 reg = <0x3 0x0 0x800000>; 262 rb-gpios = <&pioC 8 GPIO_ACTIVE_HIGH>; 263 cs-gpios = <&pioC 14 GPIO_ACTIVE_HIGH>; 264 nand-bus-width = <8>; 265 nand-ecc-mode = "soft"; 266 nand-on-flash-bbt; 267 label = "atmel_nand"; 268 269 partitions { 270 compatible = "fixed-partitions"; 271 #address-cells = <1>; 272 #size-cells = <1>; 273 274 boot@0 { 275 label = "bootstrap/uboot/kernel"; 276 reg = <0x0 0x400000>; 277 }; 278 279 rootfs@400000 { 280 label = "rootfs"; 281 reg = <0x400000 0x3C00000>; 282 }; 283 284 data@4000000 { 285 label = "data"; 286 reg = <0x4000000 0xC000000>; 287 }; 288 }; 289 }; 290 }; 291 }; 292 293 usb0: ohci@00700000 { 294 status = "okay"; 295 num-ports = <2>; 296 atmel,vbus-gpio = <&pioD 1 GPIO_ACTIVE_LOW 297 &pioD 3 GPIO_ACTIVE_LOW>; 298 }; 299 300 usb1: ehci@00800000 { 301 status = "okay"; 302 }; 303 }; 304 305 leds { 306 compatible = "gpio-leds"; 307 308 d8 { 309 label = "d8"; 310 gpios = <&pioD 30 GPIO_ACTIVE_HIGH>; 311 linux,default-trigger = "heartbeat"; 312 }; 313 }; 314 315 pwmleds { 316 compatible = "pwm-leds"; 317 318 d6 { 319 label = "d6"; 320 pwms = <&pwm0 3 5000 PWM_POLARITY_INVERTED>; 321 max-brightness = <255>; 322 linux,default-trigger = "nand-disk"; 323 }; 324 325 d7 { 326 label = "d7"; 327 pwms = <&pwm0 1 5000 PWM_POLARITY_INVERTED>; 328 max-brightness = <255>; 329 linux,default-trigger = "mmc0"; 330 }; 331 }; 332 333 gpio_keys { 334 compatible = "gpio-keys"; 335 336 left_click { 337 label = "left_click"; 338 gpios = <&pioB 6 GPIO_ACTIVE_LOW>; 339 linux,code = <272>; 340 wakeup-source; 341 }; 342 343 right_click { 344 label = "right_click"; 345 gpios = <&pioB 7 GPIO_ACTIVE_LOW>; 346 linux,code = <273>; 347 wakeup-source; 348 }; 349 350 left { 351 label = "Joystick Left"; 352 gpios = <&pioB 14 GPIO_ACTIVE_LOW>; 353 linux,code = <105>; 354 }; 355 356 right { 357 label = "Joystick Right"; 358 gpios = <&pioB 15 GPIO_ACTIVE_LOW>; 359 linux,code = <106>; 360 }; 361 362 up { 363 label = "Joystick Up"; 364 gpios = <&pioB 16 GPIO_ACTIVE_LOW>; 365 linux,code = <103>; 366 }; 367 368 down { 369 label = "Joystick Down"; 370 gpios = <&pioB 17 GPIO_ACTIVE_LOW>; 371 linux,code = <108>; 372 }; 373 374 enter { 375 label = "Joystick Press"; 376 gpios = <&pioB 18 GPIO_ACTIVE_LOW>; 377 linux,code = <28>; 378 }; 379 }; 380}; 381