-
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: 370458 b: refs/heads/master c: e910b45 h: refs/heads/master v: v3
- Loading branch information
Gwenhael Goavec-Merou
authored and
Shawn Guo
committed
Apr 9, 2013
1 parent
a97e842
commit 5de4775
Showing
3 changed files
with
77 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: 624dbacace12a080416bd107a95a094f3cefe117 | ||
refs/heads/master: e910b45c9d6413c057fc0aaf8616683446bdda7d |
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
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,75 @@ | ||
/* | ||
* Copyright 2013 Armadeus Systems - <support@armadeus.com> | ||
* | ||
* The code contained herein is licensed under the GNU General Public | ||
* License. You may obtain a copy of the GNU General Public License | ||
* Version 2 or later at the following locations: | ||
* | ||
* http://www.opensource.org/licenses/gpl-license.html | ||
* http://www.gnu.org/copyleft/gpl.html | ||
*/ | ||
|
||
/* APF51Dev is a docking board for the APF51 SOM */ | ||
#include "imx51-apf51.dts" | ||
|
||
/ { | ||
model = "Armadeus Systems APF51Dev docking/development board"; | ||
compatible = "armadeus,imx51-apf51dev", "armadeus,imx51-apf51", "fsl,imx51"; | ||
|
||
gpio-keys { | ||
compatible = "gpio-keys"; | ||
|
||
user-key { | ||
label = "user"; | ||
gpios = <&gpio1 3 0>; | ||
linux,code = <256>; /* BTN_0 */ | ||
}; | ||
}; | ||
|
||
leds { | ||
compatible = "gpio-leds"; | ||
|
||
user { | ||
label = "Heartbeat"; | ||
gpios = <&gpio1 2 0>; | ||
linux,default-trigger = "heartbeat"; | ||
}; | ||
}; | ||
}; | ||
|
||
&esdhc1 { | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pinctrl_esdhc1_1>; | ||
cd-gpios = <&gpio2 29 0>; | ||
bus-width = <4>; | ||
status = "okay"; | ||
}; | ||
|
||
&esdhc2 { | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pinctrl_esdhc2_1>; | ||
bus-width = <4>; | ||
non-removable; | ||
status = "okay"; | ||
}; | ||
|
||
&iomuxc { | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pinctrl_hog>; | ||
|
||
hog { | ||
pinctrl_hog: hoggrp { | ||
fsl,pins = < | ||
MX51_PAD_EIM_EB2__GPIO2_22 0x0C5 | ||
MX51_PAD_EIM_EB3__GPIO2_23 0x0C5 | ||
MX51_PAD_EIM_CS4__GPIO2_29 0x100 | ||
MX51_PAD_NANDF_D13__GPIO3_27 0x0C5 | ||
MX51_PAD_NANDF_D12__GPIO3_28 0x0C5 | ||
MX51_PAD_CSPI1_SS0__GPIO4_24 0x0C5 | ||
MX51_PAD_CSPI1_SS1__GPIO4_25 0x0C5 | ||
MX51_PAD_GPIO1_2__GPIO1_2 0x0C5 | ||
MX51_PAD_GPIO1_3__GPIO1_3 0x0C5 | ||
>; | ||
}; | ||
}; | ||
}; |