mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
8c103c33fb
Now that Linux has accepted these tags, move the device tree files in U-Boot over to use them. Signed-off-by: Simon Glass <sjg@chromium.org>
37 lines
532 B
Text
37 lines
532 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* U-Boot addition to handle Qualcomm Robotics RB3 Development Platform
|
|
* (dragonboard845c) pins
|
|
*
|
|
* (C) Copyright 2022 Sumit Garg <sumit.garg@linaro.org>
|
|
*/
|
|
|
|
/
|
|
{
|
|
soc {
|
|
bootph-all;
|
|
|
|
serial@a84000 {
|
|
bootph-all;
|
|
};
|
|
|
|
clock-controller@100000 {
|
|
bootph-all;
|
|
};
|
|
|
|
pinctrl_north@3900000 {
|
|
bootph-all;
|
|
};
|
|
};
|
|
};
|
|
|
|
&pm8998_pon {
|
|
key_vol_down {
|
|
gpios = <&pm8998_pon 1 0>;
|
|
label = "key_vol_down";
|
|
};
|
|
key_power {
|
|
gpios = <&pm8998_pon 0 0>;
|
|
label = "key_power";
|
|
};
|
|
};
|