Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Apr 14-17, 2025
Register
Loading...
v5.4
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * at91-qil_a9260.dts - Device Tree file for Calao QIL A9260 board
  4 *
  5 * Copyright (C) 2011-2013 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
 
 
  6 */
  7/dts-v1/;
  8#include "at91sam9260.dtsi"
  9/ {
 10	model = "Calao QIL A9260";
 11	compatible = "calao,qil-a9260", "atmel,at91sam9260", "atmel,at91sam9";
 12
 13	chosen {
 14		bootargs = "console=ttyS0,115200";
 15	};
 16
 17	memory {
 18		reg = <0x20000000 0x4000000>;
 19	};
 20
 21	clocks {
 
 
 
 
 
 
 
 
 
 22		slow_xtal {
 23			clock-frequency = <32768>;
 24		};
 25
 26		main_xtal {
 27			clock-frequency = <12000000>;
 28		};
 29	};
 30
 31	ahb {
 32		apb {
 33			tcb0: timer@fffa0000 {
 34				timer@0 {
 35					compatible = "atmel,tcb-timer";
 36					reg = <0>, <1>;
 37				};
 38
 39				timer@2 {
 40					compatible = "atmel,tcb-timer";
 41					reg = <2>;
 42				};
 43			};
 44
 45			usb1: gadget@fffa4000 {
 46				atmel,vbus-gpio = <&pioC 5 GPIO_ACTIVE_HIGH>;
 47				status = "okay";
 48			};
 49
 50			mmc0: mmc@fffa8000 {
 51				pinctrl-0 = <
 52					&pinctrl_mmc0_clk
 53					&pinctrl_mmc0_slot0_cmd_dat0
 54					&pinctrl_mmc0_slot0_dat1_3>;
 55				status = "okay";
 56				slot@0 {
 57					reg = <0>;
 58					bus-width = <4>;
 59				};
 60			};
 61
 62			usart0: serial@fffb0000 {
 63				pinctrl-0 =
 64					<&pinctrl_usart0
 65					 &pinctrl_usart0_rts
 66					 &pinctrl_usart0_cts
 67					 &pinctrl_usart0_dtr_dsr
 68					 &pinctrl_usart0_dcd
 69					 &pinctrl_usart0_ri>;
 70				status = "okay";
 71			};
 72
 73			usart1: serial@fffb4000 {
 74				pinctrl-0 =
 75					<&pinctrl_usart1
 76					 &pinctrl_usart1_rts
 77					 &pinctrl_usart1_cts>;
 78				status = "okay";
 79			};
 80
 81			usart2: serial@fffb8000 {
 82				pinctrl-0 =
 83					<&pinctrl_usart2
 84					 &pinctrl_usart2_rts
 85					 &pinctrl_usart2_cts>;
 86				status = "okay";
 87			};
 88
 89			macb0: ethernet@fffc4000 {
 90				phy-mode = "rmii";
 91				status = "okay";
 92			};
 93
 94			spi0: spi@fffc8000 {
 95				status = "okay";
 96				cs-gpios = <&pioA 3 GPIO_ACTIVE_HIGH>;
 97
 98				m41t94@0 {
 99					compatible = "st,m41t94";
100					reg = <0>;
101					spi-max-frequency = <1000000>;
102				};
103
104			};
105
106			dbgu: serial@fffff200 {
107				status = "okay";
108			};
109
110			shdwc@fffffd10 {
111				atmel,wakeup-counter = <10>;
112				atmel,wakeup-rtt-timer;
113			};
114		};
115
116		usb0: ohci@500000 {
117			num-ports = <2>;
118			status = "okay";
119		};
120
121		ebi: ebi@10000000 {
 
 
 
122			status = "okay";
123
124			nand_controller: nand-controller {
125				status = "okay";
126				pinctrl-0 = <&pinctrl_nand_cs &pinctrl_nand_rb>;
127				pinctrl-names = "default";
128
129				nand@3 {
130					reg = <0x3 0x0 0x800000>;
131					rb-gpios = <&pioC 13 GPIO_ACTIVE_HIGH>;
132					cs-gpios = <&pioC 14 GPIO_ACTIVE_HIGH>;
133					nand-bus-width = <8>;
134					nand-ecc-mode = "soft";
135					nand-on-flash-bbt;
136					label = "atmel_nand";
137
138					partitions {
139						compatible = "fixed-partitions";
140						#address-cells = <1>;
141						#size-cells = <1>;
142
143						at91bootstrap@0 {
144							label = "at91bootstrap";
145							reg = <0x0 0x20000>;
146						};
147
148						barebox@20000 {
149							label = "barebox";
150							reg = <0x20000 0x40000>;
151						};
152
153						bareboxenv@60000 {
154							label = "bareboxenv";
155							reg = <0x60000 0x20000>;
156						};
157
158						bareboxenv2@80000 {
159							label = "bareboxenv2";
160							reg = <0x80000 0x20000>;
161						};
162
163						oftree@a0000 {
164							label = "oftree";
165							reg = <0xa0000 0x20000>;
166						};
167
168						kernel@c0000 {
169							label = "kernel";
170							reg = <0xc0000 0x400000>;
171						};
172
173						rootfs@4c0000 {
174							label = "rootfs";
175							reg = <0x4c0000 0x7800000>;
176						};
177
178						data@7cc0000 {
179							label = "data";
180							reg = <0x7cc0000 0x8340000>;
181						};
182					};
183				};
184			};
185		};
186	};
187
188	leds {
189		compatible = "gpio-leds";
190
191		user_led {
192			label = "user_led";
193			gpios = <&pioB 21 GPIO_ACTIVE_HIGH>;
194			linux,default-trigger = "heartbeat";
195		};
196	};
197
198	gpio_keys {
199		compatible = "gpio-keys";
200		#address-cells = <1>;
201		#size-cells = <0>;
202
203		user_pb {
204			label = "user_pb";
205			gpios = <&pioB 10 GPIO_ACTIVE_LOW>;
206			linux,code = <28>;
207			wakeup-source;
208		};
209	};
210
211	i2c-gpio-0 {
212		status = "okay";
213	};
214};
v4.6
 
  1/*
  2 * at91-qil_a9260.dts - Device Tree file for Calao QIL A9260 board
  3 *
  4 * Copyright (C) 2011-2013 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  5 *
  6 * Licensed under GPLv2.
  7 */
  8/dts-v1/;
  9#include "at91sam9260.dtsi"
 10/ {
 11	model = "Calao QIL A9260";
 12	compatible = "calao,qil-a9260", "atmel,at91sam9260", "atmel,at91sam9";
 13
 14	chosen {
 15		bootargs = "console=ttyS0,115200";
 16	};
 17
 18	memory {
 19		reg = <0x20000000 0x4000000>;
 20	};
 21
 22	clocks {
 23		#address-cells = <1>;
 24		#size-cells = <1>;
 25		ranges;
 26
 27		main_clock: clock@0 {
 28			compatible = "atmel,osc", "fixed-clock";
 29			clock-frequency = <12000000>;
 30		};
 31
 32		slow_xtal {
 33			clock-frequency = <32768>;
 34		};
 35
 36		main_xtal {
 37			clock-frequency = <12000000>;
 38		};
 39	};
 40
 41	ahb {
 42		apb {
 
 
 
 
 
 
 
 
 
 
 
 
 43			usb1: gadget@fffa4000 {
 44				atmel,vbus-gpio = <&pioC 5 GPIO_ACTIVE_HIGH>;
 45				status = "okay";
 46			};
 47
 48			mmc0: mmc@fffa8000 {
 49				pinctrl-0 = <
 50					&pinctrl_mmc0_clk
 51					&pinctrl_mmc0_slot0_cmd_dat0
 52					&pinctrl_mmc0_slot0_dat1_3>;
 53				status = "okay";
 54				slot@0 {
 55					reg = <0>;
 56					bus-width = <4>;
 57				};
 58			};
 59
 60			usart0: serial@fffb0000 {
 61				pinctrl-0 =
 62					<&pinctrl_usart0
 63					 &pinctrl_usart0_rts
 64					 &pinctrl_usart0_cts
 65					 &pinctrl_usart0_dtr_dsr
 66					 &pinctrl_usart0_dcd
 67					 &pinctrl_usart0_ri>;
 68				status = "okay";
 69			};
 70
 71			usart1: serial@fffb4000 {
 72				pinctrl-0 =
 73					<&pinctrl_usart1
 74					 &pinctrl_usart1_rts
 75					 &pinctrl_usart1_cts>;
 76				status = "okay";
 77			};
 78
 79			usart2: serial@fffb8000 {
 80				pinctrl-0 =
 81					<&pinctrl_usart2
 82					 &pinctrl_usart2_rts
 83					 &pinctrl_usart2_cts>;
 84				status = "okay";
 85			};
 86
 87			macb0: ethernet@fffc4000 {
 88				phy-mode = "rmii";
 89				status = "okay";
 90			};
 91
 92			spi0: spi@fffc8000 {
 93				status = "okay";
 94				cs-gpios = <&pioA 3 GPIO_ACTIVE_HIGH>;
 95
 96				m41t94@0 {
 97					compatible = "st,m41t94";
 98					reg = <0>;
 99					spi-max-frequency = <1000000>;
100				};
101
102			};
103
104			dbgu: serial@fffff200 {
105				status = "okay";
106			};
107
108			shdwc@fffffd10 {
109				atmel,wakeup-counter = <10>;
110				atmel,wakeup-rtt-timer;
111			};
112		};
113
114		usb0: ohci@00500000 {
115			num-ports = <2>;
116			status = "okay";
117		};
118
119		nand0: nand@40000000 {
120			nand-bus-width = <8>;
121			nand-ecc-mode = "soft";
122			nand-on-flash-bbt;
123			status = "okay";
124
125			at91bootstrap@0 {
126				label = "at91bootstrap";
127				reg = <0x0 0x20000>;
128			};
129
130			barebox@20000 {
131				label = "barebox";
132				reg = <0x20000 0x40000>;
133			};
134
135			bareboxenv@60000 {
136				label = "bareboxenv";
137				reg = <0x60000 0x20000>;
138			};
139
140			bareboxenv2@80000 {
141				label = "bareboxenv2";
142				reg = <0x80000 0x20000>;
143			};
144
145			oftree@a0000 {
146				label = "oftree";
147				reg = <0xa0000 0x20000>;
148			};
149
150			kernel@c0000 {
151				label = "kernel";
152				reg = <0xc0000 0x400000>;
153			};
154
155			rootfs@4c0000 {
156				label = "rootfs";
157				reg = <0x4c0000 0x7800000>;
158			};
159
160			data@7cc0000 {
161				label = "data";
162				reg = <0x7cc0000 0x8340000>;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163			};
164		};
165	};
166
167	leds {
168		compatible = "gpio-leds";
169
170		user_led {
171			label = "user_led";
172			gpios = <&pioB 21 GPIO_ACTIVE_HIGH>;
173			linux,default-trigger = "heartbeat";
174		};
175	};
176
177	gpio_keys {
178		compatible = "gpio-keys";
179		#address-cells = <1>;
180		#size-cells = <0>;
181
182		user_pb {
183			label = "user_pb";
184			gpios = <&pioB 10 GPIO_ACTIVE_LOW>;
185			linux,code = <28>;
186			wakeup-source;
187		};
188	};
189
190	i2c@0 {
191		status = "okay";
192	};
193};