mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
c551c8fe5f
Currently there is a mismatch among DT node overrides in starqltechn board DTS file and the actual DT nodes in the sdm845.dtsi. So fix that to align with DT nodes in sdm845.dtsi. Signed-off-by: Sumit Garg <sumit.garg@linaro.org> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
40 lines
647 B
Text
40 lines
647 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* U-Boot addition to handle Samsung S9 SM-G9600 (starqltechn) pins
|
|
*
|
|
* (C) Copyright 2021 Dzmitry Sankouski <dsankouski@gmail.com>
|
|
*
|
|
*/
|
|
|
|
/
|
|
{
|
|
framebuffer@9D400000 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
soc {
|
|
u-boot,dm-pre-reloc;
|
|
serial@a84000 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
clock-controller@100000 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
gpio_north@3900000 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
pinctrl_north@3900000 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
};
|
|
|
|
&pm8998_pon {
|
|
key_vol_down {
|
|
gpios = <&pm8998_pon 1 0>;
|
|
label = "key_vol_down";
|
|
};
|
|
key_power {
|
|
gpios = <&pm8998_pon 0 0>;
|
|
label = "key_power";
|
|
};
|
|
};
|