Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: phy: Move the Cadence D-PHY bindings

The Cadence D-PHY bindings was defined as part of the DSI block so far.
However, since it's now going to be a separate driver, we need to move the
binding to a file of its own.

Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>

authored by

Maxime Ripard and committed by
Kishon Vijay Abraham I
df687341 1baafbe4

+20 -21
-21
Documentation/devicetree/bindings/display/bridge/cdns,dsi.txt
··· 31 31 - one subnode per DSI device connected on the DSI bus. Each DSI device should 32 32 contain a reg property encoding its virtual channel. 33 33 34 - Cadence DPHY 35 - ============ 36 - 37 - Cadence DPHY block. 38 - 39 - Required properties: 40 - - compatible: should be set to "cdns,dphy". 41 - - reg: physical base address and length of the DPHY registers. 42 - - clocks: DPHY reference clocks. 43 - - clock-names: must contain "psm" and "pll_ref". 44 - - #phy-cells: must be set to 0. 45 - 46 - 47 34 Example: 48 - dphy0: dphy@fd0e0000{ 49 - compatible = "cdns,dphy"; 50 - reg = <0x0 0xfd0e0000 0x0 0x1000>; 51 - clocks = <&psm_clk>, <&pll_ref_clk>; 52 - clock-names = "psm", "pll_ref"; 53 - #phy-cells = <0>; 54 - }; 55 - 56 35 dsi0: dsi@fd0c0000 { 57 36 compatible = "cdns,dsi"; 58 37 reg = <0x0 0xfd0c0000 0x0 0x1000>;
+20
Documentation/devicetree/bindings/phy/cdns,dphy.txt
··· 1 + Cadence DPHY 2 + ============ 3 + 4 + Cadence DPHY block. 5 + 6 + Required properties: 7 + - compatible: should be set to "cdns,dphy". 8 + - reg: physical base address and length of the DPHY registers. 9 + - clocks: DPHY reference clocks. 10 + - clock-names: must contain "psm" and "pll_ref". 11 + - #phy-cells: must be set to 0. 12 + 13 + Example: 14 + dphy0: dphy@fd0e0000{ 15 + compatible = "cdns,dphy"; 16 + reg = <0x0 0xfd0e0000 0x0 0x1000>; 17 + clocks = <&psm_clk>, <&pll_ref_clk>; 18 + clock-names = "psm", "pll_ref"; 19 + #phy-cells = <0>; 20 + };