732c94def0
Add properties required for the bootloader to select the correct bootloader blob. They have been removed from the SoC device tree as they should be set on a per-device basis. Signed-off-by: Konrad Dybcio <konradybcio@gmail.com> Link: https://lore.kernel.org/r/20200623224813.297077-11-konradybcio@gmail.com Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
35 lines
706 B
Plaintext
35 lines
706 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
/* Copyright (c) 2015, Huawei Inc. All rights reserved.
|
|
* Copyright (c) 2016, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "msm8994.dtsi"
|
|
|
|
/ {
|
|
model = "Huawei Nexus 6P";
|
|
compatible = "huawei,angler", "qcom,msm8994";
|
|
/* required for bootloader to select correct board */
|
|
qcom,msm-id = <207 0x20000>;
|
|
qcom,pmic-id = <0x10009 0x1000A 0x0 0x0>;
|
|
qcom,board-id = <8026 0>;
|
|
|
|
aliases {
|
|
serial0 = &blsp1_uart2;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
|
|
soc {
|
|
serial@f991e000 {
|
|
status = "okay";
|
|
pinctrl-names = "default", "sleep";
|
|
pinctrl-0 = <&blsp1_uart2_default>;
|
|
pinctrl-1 = <&blsp1_uart2_sleep>;
|
|
};
|
|
};
|
|
};
|