diff options
author | Robert Chiras <robert.chiras@nxp.com> | 2017-07-14 15:31:56 +0300 |
---|---|---|
committer | Jason Liu <jason.hui.liu@nxp.com> | 2019-02-12 10:29:03 +0800 |
commit | 67ad7f98067a6ff6cddf8e0b1bbd8e7af683a24d (patch) | |
tree | cf15f72c40aa465936f5d2cd64d2bf141f2d27df /Documentation/devicetree | |
parent | 0cdb8c073d1d9a7d134ec2ef4f265217c2e25b39 (diff) |
MLK-16347-1: phy: add phy driver for mipi-dsi on mx8
Implement the DPHY from MIPI-DSI found on i.MX8 platforms (QM, QXP and MQ)
as a phy driver.
Signed-off-by: Robert Chiras <robert.chiras@nxp.com>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/phy/mixel,mipi-dsi-phy.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/phy/mixel,mipi-dsi-phy.txt b/Documentation/devicetree/bindings/phy/mixel,mipi-dsi-phy.txt new file mode 100644 index 000000000000..c868b39a88b7 --- /dev/null +++ b/Documentation/devicetree/bindings/phy/mixel,mipi-dsi-phy.txt @@ -0,0 +1,23 @@ +Mixel DSI DPHY for MX8 + +The MIPI-DSI DPHY IP block found on MX8 platforms comes along the MIPI-DSI +IP from Northwest Logic and represents the physical layer for the electrical +signals for DSI. + +Required properties: +- compatible: "mixel,<soc>-mipi-dsi-phy" +- reg: the register range of the PHY controller +- #phy-cells: number of cells in PHY, as defined in + Documentation/devicetree/bindings/phy/phy-bindings.txt + this must be <0> + +Optional properties: +- power-domains: phandle to power domain + +Example: + mipi0_phy: mipi0_phy@56228300 { + compatible = "mixel,imx8qm-mipi-dsi-phy"; + reg = <0x0 0x56228300 0x0 0x100>; + power-domains = <&pd_mipi0>; + #phy-cells = <0>; + }; |