mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
707e6ef964
The clock node is used by the serial driver and it's needed before relocation. This patch ensures that the msm-serial driver can actually use the clock node. Signed-off-by: Ramon Fried <ramon.fried@linaro.org>
46 lines
603 B
Text
46 lines
603 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* U-Boot addition to handle Dragonboard 410c pins
|
|
*
|
|
* (C) Copyright 2015 Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
|
|
*/
|
|
|
|
/ {
|
|
config {
|
|
u-boot,mmc-env-partition = "boot";
|
|
};
|
|
|
|
soc {
|
|
u-boot,dm-pre-reloc;
|
|
|
|
qcom,gcc@1800000 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
serial@78b0000 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
&pm8916_gpios {
|
|
usb_hub_reset_pm {
|
|
gpios = <&pm8916_gpios 2 0>;
|
|
};
|
|
|
|
usb_sw_sel_pm {
|
|
gpios = <&pm8916_gpios 3 0>;
|
|
};
|
|
};
|
|
|
|
|
|
&pm8916_pon {
|
|
key_vol_down {
|
|
gpios = <&pm8916_pon 1 0>;
|
|
};
|
|
|
|
key_power {
|
|
gpios = <&pm8916_pon 0 0>;
|
|
};
|
|
};
|