-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: add document for Innosilicon HDMI on Rockchip platform
Signed-off-by: Yakir Yang <ykk@rock-chips.com> Acked-by: Rob Herring <robh@kernel.org>
- Loading branch information
Yakir Yang
authored and
Mark Yao
committed
Feb 18, 2016
1 parent
412d4ae
commit a2b5f9b
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
Documentation/devicetree/bindings/display/rockchip/inno_hdmi-rockchip.txt
This file contains 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,50 @@ | ||
Rockchip specific extensions to the Innosilicon HDMI | ||
================================ | ||
|
||
Required properties: | ||
- compatible: | ||
"rockchip,rk3036-inno-hdmi"; | ||
- reg: | ||
Physical base address and length of the controller's registers. | ||
- clocks, clock-names: | ||
Phandle to hdmi controller clock, name should be "pclk" | ||
- interrupts: | ||
HDMI interrupt number | ||
- ports: | ||
Contain one port node with endpoint definitions as defined in | ||
Documentation/devicetree/bindings/graph.txt. | ||
- pinctrl-0, pinctrl-name: | ||
Switch the iomux of HPD/CEC pins to HDMI function. | ||
|
||
Example: | ||
hdmi: hdmi@20034000 { | ||
compatible = "rockchip,rk3036-inno-hdmi"; | ||
reg = <0x20034000 0x4000>; | ||
interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>; | ||
clocks = <&cru PCLK_HDMI>; | ||
clock-names = "pclk"; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&hdmi_ctl>; | ||
status = "disabled"; | ||
|
||
hdmi_in: port { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
hdmi_in_lcdc: endpoint@0 { | ||
reg = <0>; | ||
remote-endpoint = <&lcdc_out_hdmi>; | ||
}; | ||
}; | ||
}; | ||
|
||
&pinctrl { | ||
hdmi { | ||
hdmi_ctl: hdmi-ctl { | ||
rockchip,pins = <1 8 RK_FUNC_1 &pcfg_pull_none>, | ||
<1 9 RK_FUNC_1 &pcfg_pull_none>, | ||
<1 10 RK_FUNC_1 &pcfg_pull_none>, | ||
<1 11 RK_FUNC_1 &pcfg_pull_none>; | ||
}; | ||
}; | ||
|
||
}; |