forked from derekmolloy/boneDeviceTree
-
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.
- Loading branch information
Showing
14 changed files
with
2,605 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,12 @@ | ||
/* | ||
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ | ||
* | ||
* 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. | ||
*/ | ||
/dts-v1/; | ||
|
||
/include/ "am33xx.dtsi" | ||
|
||
/include/ "am335x-bone-common.dtsi" |
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,69 @@ | ||
/* | ||
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ | ||
* | ||
* 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. | ||
*/ | ||
/dts-v1/; | ||
|
||
/include/ "am33xx.dtsi" | ||
|
||
/include/ "am335x-bone-common.dtsi" | ||
|
||
&am33xx_pinmux { | ||
rstctl_pins: pinmux_rstctl_pins { | ||
pinctrl-single,pins = < | ||
/* eMMC_RSTn */ | ||
0x50 0x17 /* gpmc_a4.gpio1_20, OUTPUT | MODE7 | PULLUP */ | ||
>; | ||
}; | ||
}; | ||
|
||
&ldo3_reg { | ||
regulator-min-microvolt = <1800000>; | ||
regulator-max-microvolt = <1800000>; | ||
regulator-always-on; | ||
}; | ||
|
||
&rstctl { | ||
status = "okay"; | ||
compatible = "gpio-rctrl"; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&rstctl_pins>; | ||
|
||
#reset-cells = <2>; | ||
|
||
gpios = <&gpio2 20 0x00>; | ||
gpio-names = "eMMC_RSTn"; | ||
}; | ||
|
||
&mmc1 { | ||
vmmc-supply = <&vmmcsd_fixed>; | ||
}; | ||
|
||
&mmc2 { | ||
vmmc-supply = <&vmmcsd_fixed>; | ||
bus-width = <8>; | ||
ti,non-removable; | ||
status = "okay"; | ||
|
||
reset = <&rstctl 0 0>; | ||
reset-names = "eMMC_RSTn-CONSUMER"; | ||
}; | ||
|
||
|
||
&cpu { | ||
/* | ||
* To consider voltage drop between PMIC and SoC, | ||
* tolerance value is reduced to 2% from 4% and | ||
* voltage value is increased as a precaution. | ||
*/ | ||
operating-points = < | ||
/* kHz uV */ | ||
1000000 1350000 | ||
800000 1300000 | ||
600000 1112000 | ||
300000 969000 | ||
>; | ||
}; |
Oops, something went wrong.