mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

Adds initial support for the LG G7 (judyln) and LG V35 (judyp) phones. Currently supported features: - Display via simplefb (panel driver is WIP) - Keys - Micro SD card - Modem (not tested much, but initialises) - UFS (crashes during intensive workloads, may need quirks) - USB in peripheral mode Notable missing features: - Enabling WiFi causes a remoteproc crash, so it's disabled here. Needs to be debugged - ideas welcome! Signed-off-by: Anton Bambura <jenneron@protonmail.com> Signed-off-by: Stefan Hansson <newbie13xd@gmail.com> Tested-by: Gregari Ivanov <llamashere@posteo.de> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20220626164536.16011-2-newbie13xd@gmail.com
45 lines
789 B
Plaintext
45 lines
789 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* SDM845 LG V35 (judyp) device tree.
|
|
*
|
|
* Copyright (c) 2022, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "sdm845-lg-common.dtsi"
|
|
|
|
/ {
|
|
model = "LG V35 ThinQ";
|
|
compatible = "lg,judyp", "qcom,sdm845";
|
|
|
|
chosen {
|
|
framebuffer@9d400000 {
|
|
compatible = "simple-framebuffer";
|
|
reg = <0x0 0x9d400000 0x0 (1440 * 2880 * 4)>;
|
|
width = <1440>;
|
|
height = <2880>;
|
|
stride = <(1440 * 4)>;
|
|
format = "a8r8g8b8";
|
|
};
|
|
};
|
|
};
|
|
|
|
&adsp_pas {
|
|
firmware-name = "qcom/sdm845/judyp/adsp.mbn";
|
|
};
|
|
|
|
&cdsp_pas {
|
|
firmware-name = "qcom/sdm845/judyp/cdsp.mbn";
|
|
};
|
|
|
|
&gpu {
|
|
zap-shader {
|
|
firmware-name = "qcom/sdm845/judyp/a630_zap.mbn";
|
|
};
|
|
};
|
|
|
|
&mss_pil {
|
|
firmware-name = "qcom/sdm845/judyp/mba.mbn", "qcom/sdm845/judyp/modem.mbn";
|
|
};
|