-
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: 296682 b: refs/heads/master c: 8bf7ec6 h: refs/heads/master v: v3
- Loading branch information
Jean-Christophe PLAGNIOL-VILLARD
committed
Mar 15, 2012
1 parent
5bad740
commit e6afc18
Showing
2 changed files
with
97 additions
and
1 deletion.
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: 10f71c28b66e6b22e46386c265147eff76e3d7a5 | ||
refs/heads/master: 8bf7ec6508cdd6e068d42b9acee1ea439543ebe7 |
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,96 @@ | ||
/* | ||
* calao-dab-mmx.dtsi - Device Tree Include file for Calao DAB-MMX Daughter Board | ||
* | ||
* Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | ||
* | ||
* Licensed under GPLv2. | ||
*/ | ||
|
||
/ { | ||
ahb { | ||
apb { | ||
usart1: serial@fffb4000 { | ||
status = "okay"; | ||
}; | ||
|
||
usart3: serial@fffd0000 { | ||
status = "okay"; | ||
}; | ||
}; | ||
}; | ||
|
||
i2c-gpio@0 { | ||
status = "okay"; | ||
}; | ||
|
||
leds { | ||
compatible = "gpio-leds"; | ||
|
||
user_led1 { | ||
label = "user_led1"; | ||
gpios = <&pioB 20 1>; | ||
}; | ||
|
||
/* | ||
* led already used by mother board but active as high | ||
* user_led2 { | ||
* label = "user_led2"; | ||
* gpios = <&pioB 21 1>; | ||
* }; | ||
*/ | ||
user_led3 { | ||
label = "user_led3"; | ||
gpios = <&pioB 22 1>; | ||
}; | ||
|
||
user_led4 { | ||
label = "user_led4"; | ||
gpios = <&pioB 23 1>; | ||
}; | ||
|
||
red { | ||
label = "red"; | ||
gpios = <&pioB 24 1>; | ||
}; | ||
|
||
orange { | ||
label = "orange"; | ||
gpios = <&pioB 30 1>; | ||
}; | ||
|
||
green { | ||
label = "green"; | ||
gpios = <&pioB 31 1>; | ||
}; | ||
}; | ||
|
||
gpio_keys { | ||
compatible = "gpio-keys"; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
user_pb1 { | ||
label = "user_pb1"; | ||
gpios = <&pioB 25 1>; | ||
linux,code = <0x100>; | ||
}; | ||
|
||
user_pb2 { | ||
label = "user_pb2"; | ||
gpios = <&pioB 13 1>; | ||
linux,code = <0x101>; | ||
}; | ||
|
||
user_pb3 { | ||
label = "user_pb3"; | ||
gpios = <&pioA 26 1>; | ||
linux,code = <0x102>; | ||
}; | ||
|
||
user_pb4 { | ||
label = "user_pb4"; | ||
gpios = <&pioC 9 1>; | ||
linux,code = <0x103>; | ||
}; | ||
}; | ||
}; |