Message ID | 20191224143900.23567-11-miquel.raynal@bootlin.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add PX30 LVDS support | expand |
Am Dienstag, 24. Dezember 2019, 15:38:59 CET schrieb Miquel Raynal: > Add the PHY which outputs MIPI DSI and LVDS. > > Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> applied for 5.6 (picked early due to it being shared between lvds and dsi) Thanks Heiko
Am Dienstag, 31. Dezember 2019, 12:56:14 CET schrieb Heiko Stuebner: > Am Dienstag, 24. Dezember 2019, 15:38:59 CET schrieb Miquel Raynal: > > Add the PHY which outputs MIPI DSI and LVDS. > > > > Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> > > applied for 5.6 (picked early due to it being shared between lvds and dsi) and I've just added the VO powerdomain to the dsi-dphy node. While the TRM is not really forthcoming in telling me if the dphy needs the power-domain as well, the vendor kernel does, so we should probably just follow their example ;-) . Heiko
Hi Heiko, Heiko Stuebner <heiko@sntech.de> wrote on Tue, 31 Dec 2019 13:14:02 +0100: > Am Dienstag, 31. Dezember 2019, 12:56:14 CET schrieb Heiko Stuebner: > > Am Dienstag, 24. Dezember 2019, 15:38:59 CET schrieb Miquel Raynal: > > > Add the PHY which outputs MIPI DSI and LVDS. > > > > > > Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> > > > > applied for 5.6 (picked early due to it being shared between lvds and dsi) > > and I've just added the VO powerdomain to the dsi-dphy node. > > While the TRM is not really forthcoming in telling me if the dphy needs > the power-domain as well, the vendor kernel does, so we should probably > just follow their example ;-) . Agreed! Miquèl
diff --git a/arch/arm64/boot/dts/rockchip/px30.dtsi b/arch/arm64/boot/dts/rockchip/px30.dtsi index b2af0f02ecbe..672a3a2f42b9 100644 --- a/arch/arm64/boot/dts/rockchip/px30.dtsi +++ b/arch/arm64/boot/dts/rockchip/px30.dtsi @@ -849,6 +849,17 @@ }; }; + dsi_dphy: phy@ff2e0000 { + compatible = "rockchip,px30-dsi-dphy"; + reg = <0x0 0xff2e0000 0x0 0x10000>; + clocks = <&pmucru SCLK_MIPIDSIPHY_REF>, <&cru PCLK_MIPIDSIPHY>; + clock-names = "ref", "pclk"; + resets = <&cru SRST_MIPIDSIPHY_P>; + reset-names = "apb"; + #phy-cells = <0>; + status = "disabled"; + }; + usb20_otg: usb@ff300000 { compatible = "rockchip,px30-usb", "rockchip,rk3066-usb", "snps,dwc2";
Add the PHY which outputs MIPI DSI and LVDS. Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> --- arch/arm64/boot/dts/rockchip/px30.dtsi | 11 +++++++++++ 1 file changed, 11 insertions(+)