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.
48 lines
925 B
48 lines
925 B
Driver for part of pm8916 PMIC - gpio and power/reset keys
|
|
|
|
This device should be child of SPMI pmic.
|
|
|
|
1) GPIO driver
|
|
|
|
Required properties:
|
|
- compatible: "qcom,pm8916-gpio"
|
|
- reg: peripheral ID, size of register block
|
|
- gpio-controller
|
|
- gpio-count: number of GPIOs
|
|
- #gpio-cells: 2
|
|
|
|
Optional properties:
|
|
- gpio-bank-name: name of bank (as default "pm8916" is used)
|
|
|
|
Example:
|
|
|
|
pmic_gpios: gpios@c000 {
|
|
compatible = "qcom,pm8916-gpio";
|
|
reg = <0xc000 0x400>;
|
|
gpio-controller;
|
|
gpio-count = <4>;
|
|
#gpio-cells = <2>;
|
|
gpio-bank-name="pmic";
|
|
};
|
|
|
|
|
|
2) Power/Reset key driver
|
|
|
|
Required properties:
|
|
- compatible: "qcom,pm8916-pwrkey"
|
|
- reg: peripheral ID, size of register block
|
|
- gpio-controller
|
|
- #gpio-cells: 2
|
|
|
|
Optional properties:
|
|
- gpio-bank-name: name of bank (as default "pm8916_key" is used)
|
|
|
|
|
|
Example:
|
|
|
|
pmic_pon: pon@800 {
|
|
compatible = "qcom,pm8916-pwrkey";
|
|
reg = <0x800 0x96>;
|
|
#gpio-cells = <2>;
|
|
gpio-controller;
|
|
};
|
|
|