mirror of
https://xff.cz/git/u-boot/
synced 2025-09-25 04:21:18 +02:00
The PMIC button driver is a much better representation of the hardware here, adjust the boards to use upstream DT and the PMIC button driver instead of exposing the buttons as GPIOs and relying on the GPIO-button driver. Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Reviewed-by: Sumit Garg <sumit.garg@linaro.org> Tested-by: Sumit Garg <sumit.garg@linaro.org> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
45 lines
516 B
Plaintext
45 lines
516 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* U-Boot addition to handle Dragonboard 410c pins
|
|
*
|
|
* (C) Copyright 2015 Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
|
|
*/
|
|
|
|
/ {
|
|
|
|
smem {
|
|
bootph-all;
|
|
};
|
|
|
|
soc {
|
|
bootph-all;
|
|
|
|
pinctrl@1000000 {
|
|
bootph-all;
|
|
|
|
uart {
|
|
bootph-all;
|
|
};
|
|
};
|
|
|
|
qcom,gcc@1800000 {
|
|
bootph-all;
|
|
};
|
|
|
|
serial@78b0000 {
|
|
bootph-all;
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
&pm8916_gpios {
|
|
usb_hub_reset_pm {
|
|
gpios = <&pm8916_gpios 2 0>;
|
|
};
|
|
|
|
usb_sw_sel_pm {
|
|
gpios = <&pm8916_gpios 3 0>;
|
|
};
|
|
};
|