-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 326847 b: refs/heads/master c: bc7feda h: refs/heads/master i: 326845: 4640ce0 326843: 26cf624 326839: 8513ff0 326831: 6f3220e 326815: 130f994 326783: 60a29f0 v: v3
- Loading branch information
Florian Vaussard
authored and
Benoit Cousson
committed
Sep 10, 2012
1 parent
7c6e2db
commit 9f7007e
Showing
4 changed files
with
79 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 48420dbcf2168004f8a5ed9f1ecd2d877dc798da | ||
refs/heads/master: bc7fedad82deb398f440b875f54dc81f931a71e3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/* | ||
* The Gumstix Overo must be combined with an expansion board. | ||
*/ | ||
/dts-v1/; | ||
|
||
/include/ "omap3.dtsi" | ||
|
||
&i2c1 { | ||
clock-frequency = <2600000>; | ||
|
||
twl: twl@48 { | ||
reg = <0x48>; | ||
interrupts = <7>; /* SYS_NIRQ cascaded to intc */ | ||
interrupt-parent = <&intc>; | ||
}; | ||
}; | ||
|
||
/include/ "twl4030.dtsi" | ||
|
||
/* i2c2 pins are used for gpio */ | ||
&i2c2 { | ||
status = "disabled"; | ||
}; | ||
|
||
/* on board microSD slot */ | ||
&mmc1 { | ||
vmmc-supply = <&vmmc1>; | ||
bus-width = <4>; | ||
}; | ||
|
||
/* optional on board WiFi */ | ||
&mmc2 { | ||
bus-width = <4>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters