tny_a9263.dts revision 262569
1262569Simp/*
2262569Simp * usb_a9263.dts - Device Tree file for Caloa USB A9293 board
3262569Simp *
4262569Simp *  Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5262569Simp *
6262569Simp * Licensed under GPLv2 only
7262569Simp */
8262569Simp/dts-v1/;
9262569Simp#include "at91sam9263.dtsi"
10262569Simp
11262569Simp/ {
12262569Simp	model = "Calao TNY A9263";
13262569Simp	compatible = "atmel,tny-a9263", "atmel,at91sam9263", "atmel,at91sam9";
14262569Simp
15262569Simp	chosen {
16262569Simp		bootargs = "mem=64M console=ttyS0,115200 root=/dev/mtdblock5 rw rootfstype=ubifs";
17262569Simp	};
18262569Simp
19262569Simp	memory {
20262569Simp		reg = <0x20000000 0x4000000>;
21262569Simp	};
22262569Simp
23262569Simp	clocks {
24262569Simp		#address-cells = <1>;
25262569Simp		#size-cells = <1>;
26262569Simp		ranges;
27262569Simp
28262569Simp		main_clock: clock@0 {
29262569Simp			compatible = "atmel,osc", "fixed-clock";
30262569Simp			clock-frequency = <12000000>;
31262569Simp		};
32262569Simp	};
33262569Simp
34262569Simp	ahb {
35262569Simp		apb {
36262569Simp			dbgu: serial@ffffee00 {
37262569Simp				status = "okay";
38262569Simp			};
39262569Simp
40262569Simp			usb1: gadget@fff78000 {
41262569Simp				atmel,vbus-gpio = <&pioB 11 GPIO_ACTIVE_HIGH>;
42262569Simp				status = "okay";
43262569Simp			};
44262569Simp		};
45262569Simp
46262569Simp		nand0: nand@40000000 {
47262569Simp			nand-bus-width = <8>;
48262569Simp			nand-ecc-mode = "soft";
49262569Simp			nand-on-flash-bbt;
50262569Simp			status = "okay";
51262569Simp
52262569Simp			at91bootstrap@0 {
53262569Simp				label = "at91bootstrap";
54262569Simp				reg = <0x0 0x20000>;
55262569Simp			};
56262569Simp
57262569Simp			barebox@20000 {
58262569Simp				label = "barebox";
59262569Simp				reg = <0x20000 0x40000>;
60262569Simp			};
61262569Simp
62262569Simp			bareboxenv@60000 {
63262569Simp				label = "bareboxenv";
64262569Simp				reg = <0x60000 0x20000>;
65262569Simp			};
66262569Simp
67262569Simp			bareboxenv2@80000 {
68262569Simp				label = "bareboxenv2";
69262569Simp				reg = <0x80000 0x20000>;
70262569Simp			};
71262569Simp
72262569Simp			oftree@80000 {
73262569Simp				label = "oftree";
74262569Simp				reg = <0xa0000 0x20000>;
75262569Simp			};
76262569Simp
77262569Simp			kernel@a0000 {
78262569Simp				label = "kernel";
79262569Simp				reg = <0xc0000 0x400000>;
80262569Simp			};
81262569Simp
82262569Simp			rootfs@4a0000 {
83262569Simp				label = "rootfs";
84262569Simp				reg = <0x4c0000 0x7800000>;
85262569Simp			};
86262569Simp
87262569Simp			data@7ca0000 {
88262569Simp				label = "data";
89262569Simp				reg = <0x7cc0000 0x8340000>;
90262569Simp			};
91262569Simp		};
92262569Simp	};
93262569Simp
94262569Simp	i2c@0 {
95262569Simp		status = "okay";
96262569Simp	};
97262569Simp};
98