-
Notifications
You must be signed in to change notification settings - Fork 186
Lyra dsi hdmi #864
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mohitdsor
wants to merge
6
commits into
qualcomm-linux:main
Choose a base branch
from
mohitdsor:lyra_dsi_hdmi
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Lyra dsi hdmi #864
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
6dbcf3d
arm64: dts: qcom: Add Talos IoT SoM platform
nkumarsi 2051cc8
arm64: dts: qcom: Add Talos Lyra EVK board
nkumarsi 9b3de16
dt-bindings: arm: qcom: Add Talos Lyra EVK board
nkumarsi 96b3676
arm64: dts: qcom: talos-lyra-evk: Enable USB controllers
akakum-qualcomm 8eeea97
arm64: dts: qcom: talos-lyra-evk: Enable Native DP
5296b19
Lyra Telos Bringup
mohitdsor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,205 @@ | ||
| // SPDX-License-Identifier: BSD-3-Clause | ||
| /* | ||
| * Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries. | ||
| */ | ||
| /dts-v1/; | ||
|
|
||
| #include "talos-lyra-som.dtsi" | ||
|
|
||
| / { | ||
| model = "Qualcomm QCS615 Talos lyra EVK"; | ||
| compatible = "qcom,talos-lyra-evk", "qcom,qcs615", "qcom,sm6150"; | ||
| chassis-type = "embedded"; | ||
|
|
||
| dp0-connector { | ||
| compatible = "dp-connector"; | ||
| label = "DP0"; | ||
| type = "full-size"; | ||
|
|
||
| hpd-gpios = <&tlmm 104 GPIO_ACTIVE_HIGH>; | ||
|
|
||
| port { | ||
| dp0_connector_in: endpoint { | ||
| remote-endpoint = <&mdss_dp0_out>; | ||
| }; | ||
| }; | ||
| }; | ||
|
|
||
| hdmi-connector { | ||
| compatible = "hdmi-connector"; | ||
| type = "a"; | ||
|
|
||
| port { | ||
| hdmi_con: endpoint { | ||
| remote-endpoint = <<9611_out>; | ||
| }; | ||
| }; | ||
| }; | ||
|
|
||
| vreg_lt9611_vcc: regulator-lt9611-vcc { | ||
| compatible = "regulator-fixed"; | ||
| regulator-name = "lt9611_vcc"; | ||
| regulator-min-microvolt = <3300000>; | ||
| regulator-max-microvolt = <3300000>; | ||
| gpio = <&pm8150_gpios 3 GPIO_ACTIVE_HIGH>; | ||
| enable-active-high; | ||
| pinctrl-0 = <&hdmi_reg_en>; | ||
| pinctrl-names = "default"; | ||
| }; | ||
|
|
||
| vreg_lt9611_vdd: regulator-lt9611-vdd { | ||
| compatible = "regulator-fixed"; | ||
| regulator-name = "lt9611_vdd"; | ||
| regulator-min-microvolt = <1800000>; | ||
| regulator-max-microvolt = <1800000>; | ||
| regulator-always-on; | ||
| }; | ||
| }; | ||
|
|
||
| &i2c2 { | ||
| status = "okay"; | ||
|
|
||
| lt9611uxd: lt9611uxd@41 { | ||
| compatible = "lontium,lt9611uxd"; | ||
| reg = <0x41>; | ||
| interrupts-extended = <&tlmm 60 IRQ_TYPE_EDGE_FALLING>; | ||
| reset-gpios = <&tlmm 61 GPIO_ACTIVE_LOW>; | ||
| vcc-supply = <&vreg_lt9611_vcc>; | ||
| vdd-supply = <&vreg_lt9611_vdd>; | ||
|
|
||
| pinctrl-0 = <<9611_irq_pin <9611_rst_pin>; | ||
| pinctrl-names = "default"; | ||
|
|
||
| ports { | ||
| #address-cells = <1>; | ||
| #size-cells = <0>; | ||
|
|
||
| port@0 { | ||
| reg = <0>; | ||
|
|
||
| lt9611_a: endpoint { | ||
| remote-endpoint = <&mdss_dsi0_out>; | ||
| }; | ||
| }; | ||
|
|
||
| port@2 { | ||
| reg = <2>; | ||
|
|
||
| lt9611_out: endpoint { | ||
| remote-endpoint = <&hdmi_con>; | ||
| }; | ||
| }; | ||
| }; | ||
| }; | ||
| }; | ||
|
|
||
| &mdss { | ||
| status = "okay"; | ||
| }; | ||
|
|
||
| &mdss_dp0 { | ||
| status = "okay"; | ||
| }; | ||
|
|
||
| &mdss_dp0_out { | ||
| link-frequencies = /bits/ 64 <1620000000 2700000000 5400000000>; | ||
| remote-endpoint = <&dp0_connector_in>; | ||
| }; | ||
|
|
||
| &mdss_dsi0 { | ||
| vdda-supply = <&pm8150_l11>; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. base already have the voting, remove |
||
|
|
||
| status = "okay"; | ||
| }; | ||
|
|
||
| &mdss_dsi0_out { | ||
| remote-endpoint = <<9611_a>; | ||
| data-lanes = <0 1 2 3>; | ||
| }; | ||
|
|
||
| &mdss_dsi0_phy { | ||
| status = "okay"; | ||
| }; | ||
|
|
||
| &pm8150_gpios { | ||
| hdmi_reg_en: hdmi-reg-en-state { | ||
| pins = "gpio3"; | ||
| function = PMIC_GPIO_FUNC_NORMAL; | ||
| bias-disable; | ||
| }; | ||
| }; | ||
|
|
||
| &pm8150_l11 { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove |
||
| /* DSI VDDA - must be at NOM voltage for PHY PLL lock */ | ||
| regulator-min-microvolt = <1232000>; | ||
| regulator-max-microvolt = <1232000>; | ||
| regulator-allow-set-load; | ||
| }; | ||
|
|
||
| &pon_pwrkey { | ||
| status = "okay"; | ||
| }; | ||
|
|
||
| &pon_resin { | ||
| linux,code = <KEY_VOLUMEDOWN>; | ||
|
|
||
| status = "okay"; | ||
| }; | ||
|
|
||
| &tlmm { | ||
| lt9611_irq_pin: lt9611-irq-state { | ||
| pins = "gpio60"; | ||
| function = "gpio"; | ||
| drive-strength = <2>; | ||
| bias-disable; | ||
| }; | ||
|
|
||
| lt9611_rst_pin: lt9611-rst-state { | ||
| pins = "gpio61"; | ||
| function = "gpio"; | ||
| drive-strength = <8>; | ||
| bias-disable; | ||
| }; | ||
| }; | ||
|
|
||
| &usb_1_hsphy { | ||
| vdd-supply = <&vreg_l5a>; | ||
| vdda-pll-supply = <&vreg_l12a>; | ||
| vdda-phy-dpdm-supply = <&vreg_l13a>; | ||
|
|
||
| status = "okay"; | ||
| }; | ||
|
|
||
| &usb_qmpphy { | ||
| vdda-phy-supply = <&vreg_l5a>; | ||
| vdda-pll-supply = <&vreg_l12a>; | ||
|
|
||
| status = "okay"; | ||
| }; | ||
|
|
||
| &usb_qmpphy_2 { | ||
| vdda-phy-supply = <&vreg_l5a>; | ||
| vdda-pll-supply = <&vreg_l12a>; | ||
|
|
||
| status = "okay"; | ||
| }; | ||
|
|
||
| &usb_1 { | ||
| dr_mode = "peripheral"; | ||
|
|
||
| status = "okay"; | ||
| }; | ||
|
|
||
| &usb_2_hsphy { | ||
| vdd-supply = <&vreg_l5a>; | ||
| vdda-pll-supply = <&vreg_l12a>; | ||
| vdda-phy-dpdm-supply = <&vreg_l13a>; | ||
|
|
||
| status = "okay"; | ||
| }; | ||
|
|
||
| &usb_2 { | ||
| dr_mode = "host"; | ||
|
|
||
| status = "okay"; | ||
| }; | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S4a voting missing.