mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
rockchip: dts: Add LVDS support
Add these node to be used in rockchip LVDS and VOP driver. Signed-off-by: Jacob Chen <jacob-chen@iotwrt.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
35ac89dd8f
commit
cfd9794115
1 changed files with 46 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
||||||
#include <dt-bindings/clock/rk3288-cru.h>
|
#include <dt-bindings/clock/rk3288-cru.h>
|
||||||
#include <dt-bindings/power-domain/rk3288.h>
|
#include <dt-bindings/power-domain/rk3288.h>
|
||||||
#include <dt-bindings/thermal/thermal.h>
|
#include <dt-bindings/thermal/thermal.h>
|
||||||
|
#include <dt-bindings/video/rk3288.h>
|
||||||
#include "skeleton.dtsi"
|
#include "skeleton.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
|
@ -683,6 +684,10 @@
|
||||||
reg = <1>;
|
reg = <1>;
|
||||||
remote-endpoint = <&hdmi_in_vopb>;
|
remote-endpoint = <&hdmi_in_vopb>;
|
||||||
};
|
};
|
||||||
|
vopb_out_lvds: endpoint@2 {
|
||||||
|
reg = <2>;
|
||||||
|
remote-endpoint = <&lvds_in_vopb>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -719,7 +724,10 @@
|
||||||
reg = <1>;
|
reg = <1>;
|
||||||
remote-endpoint = <&hdmi_in_vopl>;
|
remote-endpoint = <&hdmi_in_vopl>;
|
||||||
};
|
};
|
||||||
|
vopl_out_lvds: endpoint@2 {
|
||||||
|
reg = <2>;
|
||||||
|
remote-endpoint = <&lvds_in_vopl>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -786,6 +794,34 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lvds: lvds@ff96c000 {
|
||||||
|
compatible = "rockchip,rk3288-lvds";
|
||||||
|
reg = <0xff96c000 0x4000>;
|
||||||
|
clocks = <&cru PCLK_LVDS_PHY>;
|
||||||
|
clock-names = "pclk_lvds";
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&lcdc0_ctl>;
|
||||||
|
rockchip,grf = <&grf>;
|
||||||
|
status = "disabled";
|
||||||
|
ports {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
lvds_in: port@0 {
|
||||||
|
reg = <0>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
lvds_in_vopb: endpoint@0 {
|
||||||
|
reg = <0>;
|
||||||
|
remote-endpoint = <&vopb_out_lvds>;
|
||||||
|
};
|
||||||
|
lvds_in_vopl: endpoint@1 {
|
||||||
|
reg = <1>;
|
||||||
|
remote-endpoint = <&vopl_out_lvds>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
hdmi_audio: hdmi_audio {
|
hdmi_audio: hdmi_audio {
|
||||||
compatible = "rockchip,rk3288-hdmi-audio";
|
compatible = "rockchip,rk3288-hdmi-audio";
|
||||||
i2s-controller = <&i2s>;
|
i2s-controller = <&i2s>;
|
||||||
|
@ -1109,6 +1145,15 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lcdc0 {
|
||||||
|
lcdc0_ctl: lcdc0-ctl {
|
||||||
|
rockchip,pins = <1 24 RK_FUNC_1 &pcfg_pull_none>,
|
||||||
|
<1 25 RK_FUNC_1 &pcfg_pull_none>,
|
||||||
|
<1 26 RK_FUNC_1 &pcfg_pull_none>,
|
||||||
|
<1 27 RK_FUNC_1 &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
sdmmc {
|
sdmmc {
|
||||||
sdmmc_clk: sdmmc-clk {
|
sdmmc_clk: sdmmc-clk {
|
||||||
rockchip,pins = <6 20 RK_FUNC_1 &pcfg_pull_none>;
|
rockchip,pins = <6 20 RK_FUNC_1 &pcfg_pull_none>;
|
||||||
|
|
Loading…
Reference in a new issue