upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
785 B
35 lines
785 B
* broadcom bcm6838 pinctrl
|
|
|
|
Required properties for the pinctrl driver:
|
|
- compatible: "brcm,bcm6838-pinctrl"
|
|
- regmap: specify the gpio test port syscon
|
|
- brcm,pins-count: the number of pin
|
|
- brcm,functions-count: the number of function
|
|
|
|
Please refer to pinctrl-bindings.txt in this directory for details of the
|
|
common pinctrl bindings used by client devices.
|
|
|
|
Example:
|
|
|
|
gpio_test_port: syscon@14e00294 {
|
|
compatible = "syscon";
|
|
reg = <0x14e00294 0x1c>;
|
|
};
|
|
|
|
pinctrl: pinctrl {
|
|
compatible = "brcm,bcm6838-pinctrl";
|
|
regmap = <&gpio_test_port>;
|
|
brcm,pins-count = <74>;
|
|
brcm,functions-count = <8>;
|
|
|
|
usb0: usb0 {
|
|
usb0_pwrflt {
|
|
pins = "69";
|
|
function = "1";
|
|
};
|
|
usb0_pwron {
|
|
pins = "70";
|
|
function = "1";
|
|
};
|
|
};
|
|
};
|
|
|