Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Documentation/devicetree/bindings/arm/qcom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,7 @@ properties:
- items:
- enum:
- qcom,qcs615-ride
- qcom,talos-evk
- const: qcom,qcs615
- const: qcom,sm6150

Expand Down
4 changes: 4 additions & 0 deletions arch/arm64/boot/dts/qcom/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,10 @@ dtb-$(CONFIG_ARCH_QCOM) += sm8650-mtp.dtb
dtb-$(CONFIG_ARCH_QCOM) += sm8650-qrd.dtb
dtb-$(CONFIG_ARCH_QCOM) += sm8750-mtp.dtb
dtb-$(CONFIG_ARCH_QCOM) += sm8750-qrd.dtb
dtb-$(CONFIG_ARCH_QCOM) += talos-evk.dtb
talos-evk-lvds-auo,g133han01-dtbs := \
talos-evk.dtb talos-evk-lvds-auo,g133han01.dtbo
dtb-$(CONFIG_ARCH_QCOM) += talos-evk-lvds-auo,g133han01.dtb
x1e001de-devkit-el2-dtbs := x1e001de-devkit.dtb x1-el2.dtbo
dtb-$(CONFIG_ARCH_QCOM) += x1e001de-devkit.dtb x1e001de-devkit-el2.dtb
x1e78100-lenovo-thinkpad-t14s-el2-dtbs := x1e78100-lenovo-thinkpad-t14s.dtb x1-el2.dtbo
Expand Down
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/qcom/qcs615-ride.dts
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@
};
};

&usb_1_hsphy {
&usb_hsphy_1 {
vdd-supply = <&vreg_l5a>;
vdda-pll-supply = <&vreg_l12a>;
vdda-phy-dpdm-supply = <&vreg_l13a>;
Expand Down
131 changes: 131 additions & 0 deletions arch/arm64/boot/dts/qcom/talos-evk-lvds-auo,g133han01.dtso
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
*/
/dts-v1/;
/plugin/;

#include <dt-bindings/gpio/gpio.h>

&{/} {
backlight: backlight {
compatible = "gpio-backlight";
gpios = <&tlmm 59 GPIO_ACTIVE_HIGH>,
<&tlmm 115 GPIO_ACTIVE_HIGH>;
default-on;
};

panel-lvds {
compatible = "auo,g133han01";
power-supply = <&vreg_v3p3>;

ports {
#address-cells = <1>;
#size-cells = <0>;

/* LVDS A (Odd pixels) */
port@0 {
reg = <0>;
dual-lvds-odd-pixels;

lvds_panel_out_a: endpoint {
remote-endpoint = <&sn65dsi84_out_a>;
};
};

/* LVDS B (Even pixels) */
port@1 {
reg = <1>;
dual-lvds-even-pixels;

lvds_panel_out_b: endpoint {
remote-endpoint = <&sn65dsi84_out_b>;
};
};
};
};

vreg_v3p3: regulator-v3p3 {
compatible = "regulator-fixed";
regulator-name = "vdd-3v3";
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
};
};

&hdmi_connector {
status = "disabled";
};

&i2c1 {
clock-frequency = <400000>;

status = "okay";

hdmi_bridge: bridge@3d {
status = "disabled";
};

lvds_bridge: bridge@2c {
compatible = "ti,sn65dsi84";
reg = <0x2c>;
enable-gpios = <&tlmm 42 GPIO_ACTIVE_HIGH>;

ports {
#address-cells = <1>;
#size-cells = <0>;

port@0 {
reg = <0>;

sn65dsi84_in: endpoint {
data-lanes = <1 2 3 4>;
remote-endpoint = <&mdss_dsi0_out>;
};
};

port@2 {
reg = <2>;

sn65dsi84_out_a: endpoint {
data-lanes = <1 2 3 4>;
remote-endpoint = <&lvds_panel_out_a>;
};
};

port@3 {
reg = <3>;

sn65dsi84_out_b: endpoint {
data-lanes = <1 2 3 4>;
remote-endpoint = <&lvds_panel_out_b>;
};
};
};
};
};

&mdss_dsi0 {
vdda-supply = <&vreg_l11a>;

status = "okay";
};

&mdss_dsi0_out {
remote-endpoint = <&sn65dsi84_in>;
data-lanes = <0 1 2 3>;
};

&tlmm {
lcd_bklt_en: lcd-bklt-en-state {
pins = "gpio115";
function = "gpio";
bias-disable;
};

lcd_bklt_pwm: lcd-bklt-pwm-state {
pins = "gpio59";
function = "gpio";
bias-disable;
};
};
Loading