From 6e9100b61dce17a29681e0fd8f5b0a09def47c8a Mon Sep 17 00:00:00 2001 From: dominduchami Date: Thu, 27 Feb 2025 11:41:56 +0100 Subject: [PATCH] dts: msm8994: Add support for LG Nexus 5X (Bullhead) --- Documentation/devices.md | 1 + lk2nd/device/dts/msm8994/msm8992-lg-bullhead.dts | 16 ++++++++++++++++ lk2nd/device/dts/msm8994/rules.mk | 1 + 3 files changed, 18 insertions(+) create mode 100644 lk2nd/device/dts/msm8994/msm8992-lg-bullhead.dts diff --git a/Documentation/devices.md b/Documentation/devices.md index 4e74d7635..87789fffc 100644 --- a/Documentation/devices.md +++ b/Documentation/devices.md @@ -164,6 +164,7 @@ ### lk2nd-msm8994 - Huawei Nexus 6P - Angler - LG G4 - h815 +- LG Nexus 5X - Bullhead ### lk2nd-msm8996 diff --git a/lk2nd/device/dts/msm8994/msm8992-lg-bullhead.dts b/lk2nd/device/dts/msm8994/msm8992-lg-bullhead.dts new file mode 100644 index 000000000..7801442fc --- /dev/null +++ b/lk2nd/device/dts/msm8994/msm8992-lg-bullhead.dts @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: BSD-3-Clause + +#include +#include + +/ { + qcom,msm-id = , ; + qcom,board-id = <2916 0>; + qcom,pmic-id = <0x10009 0x1000a 0x0 0x0>; +}; + +&lk2nd { + model = "LG Nexus 5X"; + compatible = "lg,bullhead"; + lk2nd,dtb-files = "msm8992-lg-bullhead"; +}; \ No newline at end of file diff --git a/lk2nd/device/dts/msm8994/rules.mk b/lk2nd/device/dts/msm8994/rules.mk index 4681e3318..40684adc3 100644 --- a/lk2nd/device/dts/msm8994/rules.mk +++ b/lk2nd/device/dts/msm8994/rules.mk @@ -5,3 +5,4 @@ LOCAL_DIR := $(GET_LOCAL_DIR) ADTBS += \ $(LOCAL_DIR)/msm8992-lg-h815.dtb \ $(LOCAL_DIR)/msm8994-huawei-angler.dtb \ + $(LOCAL_DIR)/msm8992-lg-bullhead.dtb \