mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
77e0ecdb4a
u-boot,dm-pre-reloc was missing from pinctrl and it's children node. causing failure to configure pin mux before relocation. Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
54 lines
697 B
Text
54 lines
697 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,tlmm@1000000 {
|
|
u-boot,dm-pre-reloc;
|
|
|
|
uart {
|
|
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>;
|
|
};
|
|
};
|