Message ID | 20220208171823.226211-1-krzysztof.kozlowski@canonical.com |
---|---|
Headers | show |
Series | drm: dt-bindings: exynos: convert to dtschema | expand |
On Tue, 08 Feb 2022 18:18:16 +0100, Krzysztof Kozlowski wrote: > Convert the Exynos HDMI PHY bindings to DT schema format and put them > next to other PHYs. > > Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> > --- > .../display/exynos/exynos_hdmiphy.txt | 15 ------- > .../bindings/phy/samsung,exynos-hdmi-phy.yaml | 44 +++++++++++++++++++ > 2 files changed, 44 insertions(+), 15 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/display/exynos/exynos_hdmiphy.txt > create mode 100644 Documentation/devicetree/bindings/phy/samsung,exynos-hdmi-phy.yaml > Applied, thanks!
On Tue, 08 Feb 2022 18:18:17 +0100, Krzysztof Kozlowski wrote: > Convert the Exynos5433 DECON display controller bindings to DT schema > format. > > The conversion includes also updates to the bindings, matching the > current DTS and Linux driver: > 1. Require "fifo" interrupt. > 2. Add "dsd" as a last clock. > 3. Document "power-domains" and "iommus" properties. > > Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> > --- > .../display/exynos/exynos5433-decon.txt | 60 ------- > .../samsung/samsung,exynos5433-decon.yaml | 148 ++++++++++++++++++ > MAINTAINERS | 1 + > 3 files changed, 149 insertions(+), 60 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/display/exynos/exynos5433-decon.txt > create mode 100644 Documentation/devicetree/bindings/display/samsung/samsung,exynos5433-decon.yaml > Applied, thanks!
On Tue, 08 Feb 2022 18:18:20 +0100, Krzysztof Kozlowski wrote: > Convert the Exynos Mixer bindings to DT schema format. > > The conversion includes also updates to the bindings, matching the > current DTS and Linux driver: > 1. Add clocks required on Exynos4210 and Exynos4212 types of Mixer. > 2. Add second memory range on Exynos4210 and Exynos4212. > 3. Add interconnects, iommus and power-domains. > > Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> > --- > .../bindings/display/exynos/exynos_mixer.txt | 26 ---- > .../display/samsung/samsung,exynos-mixer.yaml | 143 ++++++++++++++++++ > 2 files changed, 143 insertions(+), 26 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/display/exynos/exynos_mixer.txt > create mode 100644 Documentation/devicetree/bindings/display/samsung/samsung,exynos-mixer.yaml > Applied, thanks!
On Tue, 08 Feb 2022 18:18:22 +0100, Krzysztof Kozlowski wrote: > Convert the Exynos5433 MIC bindings to DT schema format. > > The conversion includes also updates to the bindings, matching the > current DTS and Linux driver: adding optional power-domains. > > Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> > --- > .../bindings/display/exynos/exynos-mic.txt | 51 ---------- > .../samsung/samsung,exynos5433-mic.yaml | 95 +++++++++++++++++++ > 2 files changed, 95 insertions(+), 51 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/display/exynos/exynos-mic.txt > create mode 100644 Documentation/devicetree/bindings/display/samsung/samsung,exynos5433-mic.yaml > Applied, thanks!
>-----Original Message----- >From: Krzysztof Kozlowski [mailto:krzysztof.kozlowski@canonical.com] >Sent: Tuesday, February 8, 2022 10:48 PM >To: Inki Dae <inki.dae@samsung.com>; Joonyoung Shim ><jy0922.shim@samsung.com>; Seung-Woo Kim ><sw0312.kim@samsung.com>; Kyungmin Park ><kyungmin.park@samsung.com>; David Airlie <airlied@linux.ie>; Daniel >Vetter <daniel@ffwll.ch>; Rob Herring <robh+dt@kernel.org>; Krzysztof >Kozlowski <krzysztof.kozlowski@canonical.com>; Alim Akhtar ><alim.akhtar@samsung.com>; Kishon Vijay Abraham I <kishon@ti.com>; >Vinod Koul <vkoul@kernel.org>; dri-devel@lists.freedesktop.org; >devicetree@vger.kernel.org; linux-arm-kernel@lists.infradead.org; linux- >samsung-soc@vger.kernel.org; linux-kernel@vger.kernel.org; linux- >phy@lists.infradead.org >Cc: Marek Szyprowski <m.szyprowski@samsung.com>; Sylwester Nawrocki ><snawrocki@kernel.org>; stable@vger.kernel.org >Subject: [PATCH 01/10] ARM: dts: exynos: add missing HDMI supplies on >SMDK5250 > >Add required VDD supplies to HDMI block on SMDK5250. Without them, the >HDMI driver won't probe. Because of lack of schematics, use same supplies as >on Arndale 5250 board (voltage matches). > >Cc: <stable@vger.kernel.org> # v3.15+ >Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> >--- > arch/arm/boot/dts/exynos5250-smdk5250.dts | 3 +++ > 1 file changed, 3 insertions(+) > >diff --git a/arch/arm/boot/dts/exynos5250-smdk5250.dts >b/arch/arm/boot/dts/exynos5250-smdk5250.dts >index 65d2474f83eb..21fbbf3d8684 100644 >--- a/arch/arm/boot/dts/exynos5250-smdk5250.dts >+++ b/arch/arm/boot/dts/exynos5250-smdk5250.dts >@@ -118,6 +118,9 @@ &hdmi { > status = "okay"; > ddc = <&i2c_2>; > hpd-gpios = <&gpx3 7 GPIO_ACTIVE_HIGH>; >+ vdd-supply = <&ldo8_reg>; >+ vdd_osc-supply = <&ldo10_reg>; >+ vdd_pll-supply = <&ldo8_reg>; > }; Cross checked with SMDK schematic, looks correct. Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com> > > &i2c_0 { >-- >2.32.0