mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
d35b211374
Add support for 96Boards Dragonboard 845C aka Robotics RB3 development platform. This board complies with 96Boards Open Platform Specifications. Features: - Qualcomm Snapdragon SDA845 SoC - 4GiB RAM - 64GiB UFS drive U-boot is chain loaded by ABL in 64-bit mode as part of boot.img. For detailed build and boot instructions, refer to doc/board/qualcomm/sdm845.rst, board: dragonboard845c. Signed-off-by: Sumit Garg <sumit.garg@linaro.org> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
37 lines
568 B
Text
37 lines
568 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 {
|
|
u-boot,dm-pre-reloc;
|
|
|
|
serial@a84000 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
clock-controller@100000 {
|
|
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";
|
|
};
|
|
};
|