blob: a13d12de77ffe72bc2f41b53e5e41d813657f36a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 | /*
 * Copyright (C) 2012 Florian Vaussard, EPFL Mobots group
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
/*
 * Tobi expansion board is manufactured by Gumstix Inc.
 */
/include/ "omap3-overo.dtsi"
/ {
	model = "TI OMAP3 Gumstix Overo on Tobi";
	compatible = "ti,omap3-tobi", "ti,omap3-overo", "ti,omap3";
	leds {
		compatible = "gpio-leds";
		heartbeat {
			label = "overo:red:gpio21";
			gpios = <&gpio1 21 0>;
			linux,default-trigger = "heartbeat";
		};
	};
};
&i2c3 {
	clock-frequency = <100000>;
};
&mmc3 {
	status = "disabled";
};
 |