Re: [PATCH v3 0/7] drm/msm: add support for SM8550

2023-03-29 Thread Rob Herring
On Tue, Mar 28, 2023 at 5:38 PM Dmitry Baryshkov wrote: > > > On Mon, 09 Jan 2023 11:15:17 +0100, Neil Armstrong wrote: > > This adds support for the MDSS/DPU/DSI on the Qualcomm SM8550 platform. > > > > This patchset is based on the SM8450 display support serie at [1]. > > > > In order to work, t

Re: [PATCH 1/6] dt-bindings: display: panel-simple: merge Innolux p120zdg-bf1

2023-03-29 Thread Rob Herring
On Sun, Mar 26, 2023 at 05:54:20PM +0200, Krzysztof Kozlowski wrote: > There is nothing special in Innolux p120zdg-bf1 panel, so just like > other Innolux panels it can be made part of panel-simple. > > Signed-off-by: Krzysztof Kozlowski > --- > .../display/panel/innolux,p120zdg-bf1.yaml| 43

Re: [PATCH 2/8] dt-bindings: mfd: qcom,spmi-pmic: document pm8450 pmic

2023-03-23 Thread Rob Herring
On Thu, 23 Mar 2023 11:25:17 +0100, Neil Armstrong wrote: > Add a compatible for PM8450, commonly found with SM8450. > > Signed-off-by: Neil Armstrong > --- > Documentation/devicetree/bindings/mfd/qcom,spmi-pmic.yaml | 1 + > 1 file changed, 1 insertion(+) > Running 'make dtbs_check' with th

Re: [PATCH 3/8] dt-bindings: ufs: qcom: document the fact the UFS controller can have an ICE core

2023-03-23 Thread Rob Herring
On Thu, 23 Mar 2023 11:25:18 +0100, Neil Armstrong wrote: > Move the qcom,sm8450-ufshc to the right allOf:if allowing the ICE clocks > and registers to be specified. > > Fixes: 462c5c0aa798 ("dt-bindings: ufs: qcom,ufs: convert to dtschema") > Signed-off-by: Neil Armstrong > --- > Documentatio

Re: [PATCH 1/8] dt-bindings: display: msm: sm8450-mdss: Fix DSI compatible

2023-03-23 Thread Rob Herring
On Thu, 23 Mar 2023 11:25:16 +0100, Neil Armstrong wrote: > The DSI compatible changed between patchset revisions, but that wasn't > reflected in the bindings. Fix it. > > 0eda3c6cb1c5 ("dt-bindings: display/msm: add support for the display on > SM8450") > Signed-off-by: Neil Armstrong > --- >

[PATCH v2] dt-bindings: display: Drop unneeded quotes

2023-03-20 Thread Rob Herring
Cleanup bindings dropping unneeded quotes. Once all these are fixed, checking for this can be enabled in yamllint. Reviewed-by: Chun-Kuang Hu Reviewed-by: Krzysztof Kozlowski Reviewed-by: Laurent Pinchart Signed-off-by: Rob Herring --- v2: - Also drop quotes on URLs --- .../bindings

[PATCH] video: ARM CLCD: Use of_address_to_resource()

2023-03-19 Thread Rob Herring
Replace of_get_address() and of_translate_address() with single call to of_address_to_resource(). With this, use ioremap() instead of of_iomap() which would parse "reg" a second time. Signed-off-by: Rob Herring --- drivers/video/fbdev/amba-clcd.c | 24 +--- 1 fi

[PATCH] dt-bindings: display: Drop unneeded quotes

2023-03-17 Thread Rob Herring
Cleanup bindings dropping unneeded quotes. Once all these are fixed, checking for this can be enabled in yamllint. Signed-off-by: Rob Herring --- .../bindings/auxdisplay/holtek,ht16k33.yaml| 2 +- .../bindings/display/bridge/nxp,ptn3460.yaml | 2 +- .../display/bridge/toshiba,tc358767

Re: [PATCH 7/7] dt-bindings: display: add panel-timing property to sitronix,st7789v

2023-03-16 Thread Rob Herring
On Tue, Mar 14, 2023 at 12:56:44PM +0100, Gerald Loacker wrote: > The sitronix-st7789v driver now considers the panel-timing property. I read the patch for that and still don't know 'why'. Commit messages should answer why. > Add the property to the documentation. We generally don't put timings

Re: [PATCH v5 01/10] dt-bindings: display/msm: dsi-controller-main: Fix deprecated QCM2290 compatible

2023-03-16 Thread Rob Herring
On Thu, 16 Mar 2023 09:51:07 +0100, Konrad Dybcio wrote: > The qcom, prefix was missed previously. Fix it. > > Fixes: 0c0f65c6dd44 ("dt-bindings: msm: dsi-controller-main: Add compatible > strings for every current SoC") > Acked-by: Rob Herring > Reviewed-by: Mar

Re: [PATCH v4 01/10] dt-bindings: display/msm: dsi-controller-main: Fix deprecated QCM2290 compatible

2023-03-14 Thread Rob Herring
On Tue, 14 Mar 2023 13:13:39 +0100, Konrad Dybcio wrote: > The qcom, prefix was missed previously. Fix it. > > Fixes: 0c0f65c6dd44 ("dt-bindings: msm: dsi-controller-main: Add compatible > strings for every current SoC") > Acked-by: Rob Herring > Reviewed-by: Mar

Re: [PATCH] fbdev: Use of_property_present() for testing DT property presence

2023-03-11 Thread Rob Herring
patch, we suggest to use '--base' as documented in > https://git-scm.com/docs/git-format-patch#_base_tree_information] > > url: > https://github.com/intel-lab-lkp/linux/commits/Rob-Herring/fbdev-Use-of_property_present-for-testing-DT-property-presence/20230310-225754 > base:

[PATCH] fbdev: Use of_property_read_bool() for boolean properties

2023-03-10 Thread Rob Herring
It is preferred to use typed property access functions (i.e. of_property_read_ functions) rather than low-level of_get_property/of_find_property functions for reading properties. Convert reading boolean properties to to of_property_read_bool(). Signed-off-by: Rob Herring --- drivers/video/fbdev

[PATCH] fbdev: Use of_property_present() for testing DT property presence

2023-03-10 Thread Rob Herring
we just want to test for presence of a property and nothing more. Signed-off-by: Rob Herring --- drivers/video/fbdev/amba-clcd.c | 2 +- drivers/video/fbdev/bw2.c| 2 +- drivers/video/fbdev/cg3.c| 2

[PATCH] backlight: as3711: Use of_property_read_bool() for boolean properties

2023-03-10 Thread Rob Herring
It is preferred to use typed property access functions (i.e. of_property_read_ functions) rather than low-level of_get_property/of_find_property functions for reading properties. Convert reading boolean properties to to of_property_read_bool(). Signed-off-by: Rob Herring --- drivers/video

[PATCH] backlight: hx8357: Use of_property_present() for testing DT property presence

2023-03-10 Thread Rob Herring
we just want to test for presence of a property and nothing more. Signed-off-by: Rob Herring --- drivers/video/backlight/hx8357.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/backlight/hx8357.c b/drivers/video/backlight/hx8357.c index 9b50bc96e00f

[PATCH] drm: Use of_property_present() for testing DT property presence

2023-03-10 Thread Rob Herring
we just want to test for presence of a property and nothing more. Signed-off-by: Rob Herring --- drivers/gpu/drm/bridge/imx/imx8qxp-pixel-link.c | 2 +- drivers/gpu/drm/drm_mipi_dsi.c | 2 +- drivers/gpu/drm/msm/adreno/adreno_gpu.c | 2 +- drivers/gpu/drm/sun4i

[PATCH] drm: Use of_property_read_bool() for boolean properties

2023-03-10 Thread Rob Herring
It is preferred to use typed property access functions (i.e. of_property_read_ functions) rather than low-level of_get_property/of_find_property functions for reading properties. Convert reading boolean properties to to of_property_read_bool(). Signed-off-by: Rob Herring --- drivers/gpu/drm

Re: [PATCH] Fixes dt-bindings: display: mediatek: Fix the fallback for mediatek,mt8186-disp-ccorr

2023-03-08 Thread Rob Herring
hun-Kuang Hu > To: Philipp Zabel > To: David Airlie > To: Daniel Vetter > To: Rob Herring > To: Krzysztof Kozlowski > To: Matthias Brugger > To: AngeloGioacchino Del Regno > To: Allen-KH Cheng > Cc: Rob Herring > Cc: dri-devel@lists.freedesktop.org

Re: [PATCH v4 06/12] dt-bindings: gpu: mali-bifrost: Add support for MediaTek MT8186

2023-03-08 Thread Rob Herring
../bindings/gpu/arm,mali-bifrost.yaml | 18 ++ > 1 file changed, 18 insertions(+) > Reviewed-by: Rob Herring

Re: [PATCH v4 03/12] dt-bindings: gpu: mali-bifrost: Fix power-domain-names validation

2023-03-08 Thread Rob Herring
> +minItems: 1 If you are disallowing for a single domain, then this could be 2... Reviewed-by: Rob Herring > +maxItems: 5 > + >resets: > minItems: 1 > maxItems: 3 > @@ -112,6 +116,7 @@ allOf: >properties: > power-domains: >

Re: [PATCH v4 02/12] dt-bindings: gpu: mali-bifrost: Set power-domains maxItems to 5

2023-03-08 Thread Rob Herring
umentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > Reviewed-by: Rob Herring

Re: [PATCH v4 01/12] dt-bindings: gpu: mali-bifrost: Split out MediaTek power-domains variation

2023-03-08 Thread Rob Herring
; Signed-off-by: AngeloGioacchino Del Regno > > --- > .../devicetree/bindings/gpu/arm,mali-bifrost.yaml| 9 +++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > Reviewed-by: Rob Herring

Re: [PATCH v3 09/10] dt-bindings: display/msm: dsi-controller-main: Add SM6115

2023-03-08 Thread Rob Herring
s.yaml | 8 > +++- > 2 files changed, 9 insertions(+), 1 deletion(-) > Acked-by: Rob Herring

Re: [PATCH] dt-bindings: yamllint: Require a space after a comment '#'

2023-03-08 Thread Rob Herring
On Fri, 03 Mar 2023 15:42:23 -0600, Rob Herring wrote: > Enable yamllint to check the prefered commenting style of requiring a > space after a comment character '#'. Fix the cases in the tree which > have a warning with this enabled. Most cases just need a space after the

Re: [PATCH] dt-bindings: Fix SPI and I2C bus node names in examples

2023-03-08 Thread Rob Herring
On Tue, 28 Feb 2023 15:54:33 -0600, Rob Herring wrote: > SPI and I2C bus node names are expected to be "spi" or "i2c", > respectively, with nothing else, a unit-address, or a '-N' index. A > pattern of 'spi0' or 'i2c0' or similar ha

Re: [PATCH 1/2] dt-bindings: display/bridge: toshiba,tc358764: convert to dtschema

2023-03-07 Thread Rob Herring
On Sat, 25 Feb 2023 17:02:51 +0100, Krzysztof Kozlowski wrote: > Convert the Toshiba TC358764 bridge bindings to DT schema. > > Signed-off-by: Krzysztof Kozlowski > --- > .../display/bridge/toshiba,tc358764.txt | 35 > .../display/bridge/toshiba,tc358764.yaml | 89 +

Re: [PATCH] dt-bindings: display: bridge: parade,ps8622: convert to dtschema

2023-03-07 Thread Rob Herring
On Tue, 21 Feb 2023 18:09:55 +0100, Krzysztof Kozlowski wrote: > Convert the Parade PS8622/PS8625 DisplayPort to LVDS Converter bindings > to DT schema. Changes during conversion: add missing vdd12-supply, used > by Linux driver. > > Signed-off-by: Krzysztof Kozlowski > --- > .../display/brid

Re: [PATCH v3 01/10] dt-bindings: display/msm: dsi-controller-main: Fix deprecated QCM2290 compatible

2023-03-07 Thread Rob Herring
On Tue, 07 Mar 2023 14:01:39 +0100, Konrad Dybcio wrote: > The qcom, prefix was missed previously. Fix it. > > Fixes: 0c0f65c6dd44 ("dt-bindings: msm: dsi-controller-main: Add compatible > strings for every current SoC") > Acked-by: Rob Herring >

[PATCH] dt-bindings: yamllint: Require a space after a comment '#'

2023-03-03 Thread Rob Herring
d to be comments are revealed. Those were in ti,sa2ul.yaml, ti,cal.yaml, and brcm,bcmgenet.yaml. Signed-off-by: Rob Herring --- Cc: Krzysztof Kozlowski Cc: Stephen Boyd Cc: Herbert Xu Cc: "David S. Miller" Cc: Rob Clark Cc: Abhinav Kumar Cc: Dmitry Baryshkov Cc: Sean Paul Cc: Thomas

[PATCH] dt-bindings: Fix SPI and I2C bus node names in examples

2023-02-28 Thread Rob Herring
ommands: git grep -l '\si2c[0-9] {' Documentation/devicetree/ | xargs sed -i -e 's/i2c[0-9] {/i2c {/' git grep -l '\sspi[0-9] {' Documentation/devicetree/ | xargs sed -i -e 's/spi[0-9] {/spi {/' With this, a few errors in examples were exposed and fixed. Signe

Re: [PATCH] dt-bindings: display: Start the info graphics with HS/VS change

2023-02-26 Thread Rob Herring
nfo graphics here > > Signed-off-by: Marek Vasut > --- > Cc: Daniel Vetter > Cc: David Airlie > Cc: Krzysztof Kozlowski > Cc: Rob Herring > Cc: Sam Ravnborg > Cc: Thierry Reding > Cc: devicet...@vger.kernel.org > Cc: dri-devel@lists.freedesktop.org > --

Re: [PATCH 1/2] dt-bindings: display/panel: Add Lenovo NT36523W BOE panel

2023-02-26 Thread Rob Herring
+++ > 1 file changed, 60 insertions(+) > Reviewed-by: Rob Herring

Re: [PATCH v3 1/5] dt-bindings: display: bridge: Add ddc-i2c-bus for anx7688

2023-02-21 Thread Rob Herring
On Sat, Feb 18, 2023 at 07:17:08PM +0800, Pin-yen Lin wrote: > Introduce a optional "ddc-i2c-bus" property for anx7688 bridge. This > allows the bridge to register a .get_edid callback. What's .get_edid? This is a binding and is independent of Linux. > > Signed-off-by: Pin-yen Lin > --- > > Ch

Re: [PATCH 1/2] dt-bindings: display/panel: Add Lenovo NT36523W BOE panel

2023-02-20 Thread Rob Herring
On Fri, Feb 17, 2023 at 12:29:07PM +0100, Konrad Dybcio wrote: > Add bindings for the 2000x1200px IPS panel found on Lenovo Tab P11/ > XiaoXin Pad devices. > > Signed-off-by: Konrad Dybcio > --- > .../display/panel/lenovo,nt36523w-boe-j606.yaml| 60 > ++ > 1 file changed

Re: [PATCH v2 8/9] dt-bindings: display/msm: dsi-controller-main: Add SM6115

2023-02-15 Thread Rob Herring
On Mon, 13 Feb 2023 13:10:11 +0100, Konrad Dybcio wrote: > Add a compatible for the DSI on SM6115. > > Signed-off-by: Konrad Dybcio > --- > .../devicetree/bindings/display/msm/dsi-controller-main.yaml| 2 ++ > 1 file changed, 2 insertions(+) > Acked-by: Rob Herring

Re: [PATCH v2 1/9] dt-bindings: display/msm: dsi-controller-main: Fix deprecated QCM2290 compatible

2023-02-15 Thread Rob Herring
.../devicetree/bindings/display/msm/dsi-controller-main.yaml| 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Acked-by: Rob Herring

Re: [PATCH v5 1/2] dt-bindings: display: imx: Describe drm binding for fsl,imx-lcdc

2023-02-15 Thread Rob Herring
; 1 file changed, 45 insertions(+), 1 deletion(-) > Reviewed-by: Rob Herring

Re: [PATCH 02/10] dt-bindings: display/msm: dsi-controller-main: Add SM6375

2023-02-14 Thread Rob Herring
On Sat, 11 Feb 2023 13:26:48 +0100, Konrad Dybcio wrote: > Add the DSI host found on SM6375. > > Signed-off-by: Konrad Dybcio > --- > .../devicetree/bindings/display/msm/dsi-controller-main.yaml| 2 ++ > 1 file changed, 2 insertions(+) > Acked-by: Rob Herring

Re: [PATCH 01/10] dt-bindings: display/msm: dsi-controller-main: Add SM6350

2023-02-14 Thread Rob Herring
On Sat, 11 Feb 2023 13:26:47 +0100, Konrad Dybcio wrote: > Add the DSI host found on SM6350. > > Signed-off-by: Konrad Dybcio > --- > .../devicetree/bindings/display/msm/dsi-controller-main.yaml| 2 ++ > 1 file changed, 2 insertions(+) > Acked-by: Rob Herring

Re: [PATCH 04/10] dt-bindings: display/msm: Add SM6375 DPU & MDSS

2023-02-13 Thread Rob Herring
On Sat, 11 Feb 2023 13:26:50 +0100, Konrad Dybcio wrote: > Document SM6375 DPU and MDSS. > > Signed-off-by: Konrad Dybcio > --- > .../bindings/display/msm/qcom,sm6375-dpu.yaml | 106 + > .../display/msm/qcom,sm6375-mdss.yaml | 216 ++ > 2 files changed, 322 inse

Re: [PATCH 03/10] dt-bindings: display/msm: Add SM6350 DPU & MDSS

2023-02-13 Thread Rob Herring
On Sat, 11 Feb 2023 13:26:49 +0100, Konrad Dybcio wrote: > Document 6350 DPU and MDSS. > > Signed-off-by: Konrad Dybcio > --- > .../bindings/display/msm/qcom,sm6350-dpu.yaml | 94 > .../display/msm/qcom,sm6350-mdss.yaml | 213 ++ > 2 files changed, 307 inserti

Re: [PATCH v4 1/2] dt-bindings: display: imx: Describe drm binding for fsl,imx-lcdc

2023-02-10 Thread Rob Herring
On Fri, 10 Feb 2023 12:31:15 +0100, Uwe Kleine-König wrote: > Modify the existing (fb-like) binding to support the drm-like binding in > parallel. > > Signed-off-by: Uwe Kleine-König > --- > .../bindings/display/imx/fsl,imx-lcdc.yaml| 46 ++- > 1 file changed, 45 insertions

Re: [PATCH 4/9] dt-bindings: gpu: mali-bifrost: Add new MT8183 compatible

2023-02-09 Thread Rob Herring
ngeloGioacchino Del Regno > > --- > .../bindings/gpu/arm,mali-bifrost.yaml| 20 +++ > 1 file changed, 20 insertions(+) > Reviewed-by: Rob Herring

Re: [PATCH 3/9] dt-bindings: gpu: mali-bifrost: Add compatible for MT8195 SoC

2023-02-09 Thread Rob Herring
--- > Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml | 5 + > 1 file changed, 5 insertions(+) > Reviewed-by: Rob Herring

Re: [PATCH 2/9] dt-bindings: gpu: mali-bifrost: Allow up to 5 power domains for MT8192

2023-02-09 Thread Rob Herring
arm,mali-bifrost.yaml| 34 +-- > 1 file changed, 31 insertions(+), 3 deletions(-) > Reviewed-by: Rob Herring

Re: [PATCH 1/9] dt-bindings: gpu: mali-bifrost: Don't allow sram-supply by default

2023-02-09 Thread Rob Herring
On Thu, Feb 09, 2023 at 10:15:33AM +0100, AngeloGioacchino Del Regno wrote: > Il 09/02/23 03:50, Chen-Yu Tsai ha scritto: > > On Wed, Feb 8, 2023 at 6:37 PM AngeloGioacchino Del Regno > > wrote: > > > > > > The sram-supply is MediaTek-specific, it is and will ever be used > > > only for the media

Re: [PATCH v11 7/9] dt-bindings: display: bridge: it6505: Add mode-switch support

2023-02-09 Thread Rob Herring
On Wed, Feb 8, 2023 at 10:00 PM Pin-yen Lin wrote: > > Hi Rob, > > Thanks for the review. > > On Wed, Feb 8, 2023 at 4:52 AM Rob Herring wrote: > > > > On Sat, Feb 04, 2023 at 09:30:38PM +0800, Pin-yen Lin wrote: > > > ITE IT6505 can be used in systems to

Re: [PATCH v11 7/9] dt-bindings: display: bridge: it6505: Add mode-switch support

2023-02-07 Thread Rob Herring
On Sat, Feb 04, 2023 at 09:30:38PM +0800, Pin-yen Lin wrote: > ITE IT6505 can be used in systems to switch the DP traffic between > two downstreams, which can be USB Type-C DisplayPort alternate mode > lane or regular DisplayPort output ports. > > Update the binding to accommodate this usage by in

Re: [PATCH v2 3/8] dt-bindings: display/msm/gmu: add Adreno 660 support

2023-02-07 Thread Rob Herring
-off-by: Dmitry Baryshkov > --- > Documentation/devicetree/bindings/display/msm/gmu.yaml | 1 + > 1 file changed, 1 insertion(+) > Acked-by: Rob Herring

Re: [PATCH v2 1/8] dt-bindings: clock: Merge qcom,gpucc-sm8350 into qcom,gpucc.yaml

2023-02-07 Thread Rob Herring
ee/bindings/clock/qcom,gpucc.yaml | 2 + > 2 files changed, 2 insertions(+), 71 deletions(-) > delete mode 100644 > Documentation/devicetree/bindings/clock/qcom,gpucc-sm8350.yaml > Acked-by: Rob Herring

Re: [PATCH] dt-bindings: display: panel: visionox,vtdr6130: add missing reg property

2023-02-07 Thread Rob Herring
description: DSI virtual channel > > + > Other panels using dsi uses a simple > " reg: true" > > I think that would suffice here too. Yes, because dsi-controller.yaml restricts it to a single entry. However, it's description says there can be more than 1 virtual channel for a device. In that case, it shouldn't be restricted in dsi-controller.yaml and the above with 'maxItems: 1' would be correct. So I'd keep this as-is. Acked-by: Rob Herring Rob

Re: [PATCH 3/8] dt-bindings: display/msm/gmu: add Adreno 660 support

2023-02-06 Thread Rob Herring
-off-by: Dmitry Baryshkov > --- > Documentation/devicetree/bindings/display/msm/gmu.yaml | 1 + > 1 file changed, 1 insertion(+) > Acked-by: Rob Herring

Re: [PATCH 1/8] dt-bindings: clock: Merge qcom,gpucc-sm8350 into qcom,gpucc.yaml

2023-02-06 Thread Rob Herring
ee/bindings/clock/qcom,gpucc.yaml | 2 + > 2 files changed, 2 insertions(+), 71 deletions(-) > delete mode 100644 > Documentation/devicetree/bindings/clock/qcom,gpucc-sm8350.yaml > Acked-by: Rob Herring

Re: [PATCH v6 01/17] dt-bindings: display: rockchip: convert rockchip-lvds.txt to YAML

2023-02-06 Thread Rob Herring
On Sun, Feb 5, 2023 at 8:12 AM Heiko Stübner wrote: > > Hi, > > Am Freitag, 3. Februar 2023, 20:02:54 CET schrieb Johan Jonker: > > > > On 2/3/23 19:21, Rob Herring wrote: > > > On Thu, Dec 22, 2022 at 03:22:14PM +0100, Johan Jonker wrote: > &g

Re: [PATCH v6 01/17] dt-bindings: display: rockchip: convert rockchip-lvds.txt to YAML

2023-02-03 Thread Rob Herring
On Thu, Dec 22, 2022 at 03:22:14PM +0100, Johan Jonker wrote: > Convert rockchip-lvds.txt to YAML. > > Changed: > Add power-domains property. > Requirements between PX30 and RK3288 > > Signed-off-by: Johan Jonker > Reviewed-by: Rob Herring > --- > >

Re: [PATCH v2] dt-bindings: display: bridge: sil, sii8620: convert to dtschema

2023-02-02 Thread Rob Herring
On Sun, 29 Jan 2023 17:05:37 +0100, Krzysztof Kozlowski wrote: > Convert the Silicon Image SiI8620 HDMI/MHL bridge bindings to DT schema. > > Signed-off-by: Krzysztof Kozlowski > > --- > > Changes since v1: > 1. Require also port@1 (Laurent) > --- > .../bindings/display/bridge/sil,sii8620.ya

Re: [PATCH v4 02/21] dt-bindings: display: tegra: vi: add 'vip' property and example

2023-01-31 Thread Rob Herring
ned-off-by: Luca Ceresoli > > --- > > Changed in v4: > - complete the removal of 'channel@0' > > Changed in v3 (suggested by Rob Herring): > - drop 'endpoint', unneeded as there's no extra properties in the >endpoints > > Changed in

Re: [PATCH] dt-bindings: display: msm: Drop type from 'memory-region'

2023-01-31 Thread Rob Herring
On Wed, 25 Jan 2023 16:13:56 -0600, Rob Herring wrote: > 'memory-region' is a common property and already has a type. > > Signed-off-by: Rob Herring > --- > Documentation/devicetree/bindings/display/msm/gpu.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Applied, thanks!

Re: [PATCH 1/2] dt-bindings: display: bridge: Add NXP i.MX93 parallel display format configuration

2023-01-30 Thread Rob Herring
On Mon, Jan 30, 2023 at 04:39:05PM +0800, Liu Ying wrote: > On Sun, 2023-01-29 at 12:46 +0100, Krzysztof Kozlowski wrote: > > On 28/01/2023 04:47, Liu Ying wrote: > > > NXP i.MX93 mediamix blk-ctrl contains one DISPLAY_MUX register > > > which > > > configures parallel display format by using the >

Re: [PATCH v4 2/2] dt-bindings: display: simple-framebuffer: Document the panel node

2023-01-30 Thread Rob Herring
On Thu, 26 Jan 2023 18:24:35 +, Rayyan Ansari wrote: > Document the new panel node and what it is used for. > > Signed-off-by: Rayyan Ansari > --- > .../devicetree/bindings/display/simple-framebuffer.yaml | 9 + > 1 file changed, 9 insertions(+) > Reviewed-by: Rob Herring

Re: [PATCH v2 3/4] dt-bindings: panel: Introduce dual-link LVDS panel

2023-01-30 Thread Rob Herring
On Tue, Jan 24, 2023 at 03:42:37PM +0530, Aradhya Bhatia wrote: > Dual-link LVDS interfaces have 2 links, with even pixels traveling on > one link, and odd pixels on the other. These panels are also generic in > nature, with no documented constraints, much like their single-link > counterparts, "pa

Re: [PATCH 1/4] dt-bindings: display: bridge: tfp410: Add tfp410 i2c example

2023-01-25 Thread Rob Herring
On Wed, 25 Jan 2023 16:09:09 -0500, Jonathan Cormier wrote: > Add a i2c example with HDMI connector > > Signed-off-by: Jonathan Cormier > --- > .../bindings/display/bridge/ti,tfp410.yaml | 42 > ++ > 1 file changed, 42 insertions(+) > My bot found errors running

[PATCH] dt-bindings: display: msm: Drop type from 'memory-region'

2023-01-25 Thread Rob Herring
'memory-region' is a common property and already has a type. Signed-off-by: Rob Herring --- Documentation/devicetree/bindings/display/msm/gpu.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/display/msm/gpu.yaml b/Doc

Re: [PATCH v7 2/6] dt-bindings: display: ti,am65x-dss: Add support for am625 dss

2023-01-25 Thread Rob Herring
On Wed, Jan 25, 2023 at 05:05:25PM +0530, Aradhya Bhatia wrote: > The DSS controller on TI's AM625 SoC is an update from that on TI's > AM65X SoC. The former has an additional OLDI TX on its first video port > (VP0) that helps output cloned video or WUXGA (1920x1200@60fps) > resolution video output

[PATCH] dt-bindings: Add missing (unevaluated|additional)Properties on child node schemas

2023-01-24 Thread Rob Herring
missing properties flagged by the addition. Signed-off-by: Rob Herring --- To: Krzysztof Kozlowski To: David Airlie To: Daniel Vetter To: Bartosz Golaszewski To: Jean Delvare To: Guenter Roeck To: Thomas Gleixner To: Marc Zyngier To: Jassi Brar To: Mauro Carvalho Chehab To: Lee Jones To

[PATCH] dt-bindings: Add missing (unevaluated|additional)Properties on child node schemas

2023-01-24 Thread Rob Herring
missing properties flagged by the addition. Signed-off-by: Rob Herring --- To: Krzysztof Kozlowski To: David Airlie To: Daniel Vetter To: Bartosz Golaszewski To: Jean Delvare To: Guenter Roeck To: Thomas Gleixner To: Marc Zyngier To: Jassi Brar To: Mauro Carvalho Chehab To: Lee Jones To

Re: [PATCH 2/6] dt-bindings: phy: qcom,hdmi-phy-other: mark it as clock provider

2023-01-23 Thread Rob Herring
> .../devicetree/bindings/phy/qcom,hdmi-phy-other.yaml | 4 > 1 file changed, 4 insertions(+) > Acked-by: Rob Herring

Re: [PATCH] dt-bindings: drop type for operating-points-v2

2023-01-23 Thread Rob Herring
On Thu, 19 Jan 2023 14:10:33 +0100, Krzysztof Kozlowski wrote: > The type for operating-points-v2 property is coming from dtschema > (/schemas/opp/opp.yaml), so individual bindings can just use simple > "true". > > Signed-off-by: Krzysztof Kozlowski > > --- > > This depends on my pull request

Re: [PATCH v2 2/2] dt-bindings: display: simple-framebuffer: Document physical width and height properties

2023-01-23 Thread Rob Herring
On Sun, Jan 22, 2023 at 05:25:38PM +, Rayyan Ansari wrote: > On 22/01/2023 15:36, Rob Herring wrote: > > On Sat, Jan 21, 2023 at 9:36 AM Rayyan Ansari wrote: > > > > > > > Why do you need this change? > > > > The 'simple-framebuffer' co

Re: [PATCH v2 2/2] dt-bindings: display: simple-framebuffer: Document physical width and height properties

2023-01-22 Thread Rob Herring
On Sat, Jan 21, 2023 at 9:36 AM Rayyan Ansari wrote: > Why do you need this change? The 'simple-framebuffer' contains data on how the bootloader configured the display. The bootloader doesn't configure the display size, so this information doesn't belong here. The information should already be i

Re: [PATCH v2 2/2] dt-bindings: display: simple-framebuffer: Document physical width and height properties

2023-01-22 Thread Rob Herring
On Sat, 21 Jan 2023 15:35:44 +, Rayyan Ansari wrote: > Signed-off-by: Rayyan Ansari > --- > .../devicetree/bindings/display/simple-framebuffer.yaml | 8 > 1 file changed, 8 insertions(+) > My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check' on your patch (DT

Re: [PATCH v6 08/10] dt-bindings: msm/dp: Add bindings for HDCP registers

2023-01-18 Thread Rob Herring
/key > exchange/encryption. > > We'll use a new compatible string for this since the fields are optional. > > Cc: Rob Herring > Cc: Stephen Boyd > Reviewed-by: Rob Herring > Signed-off-by: Sean Paul > Signed-off-by: Mark Yacoub > Link: > https://patchwork.

Re: [PATCH v7 03/11] dt-bindings: display/msm: add core clock to the mdss bindings

2023-01-18 Thread Rob Herring
ss.yaml | 32 +-- > 1 file changed, 22 insertions(+), 10 deletions(-) > Reviewed-by: Rob Herring

Re: [PATCH 4/4] dt-binbings: display/msm: dsi-controller-main: add missing supplies

2023-01-18 Thread Rob Herring
On Wed, Jan 18, 2023 at 10:41 AM Rob Herring wrote: > > > On Wed, 18 Jan 2023 05:24:32 +0200, Dmitry Baryshkov wrote: > > Describe DSI supplies used on apq8064 (vdda-supply) and msm8994/96 > > (vcca-supply). > > > > Signed-off-by: Dmitry Baryshkov > >

Re: [PATCH 4/4] dt-binbings: display/msm: dsi-controller-main: add missing supplies

2023-01-18 Thread Rob Herring
changed, 8 insertions(+) > Acked-by: Rob Herring

Re: [PATCH 3/4] dt-bindings: display/msm: dsi-controller-main: allow using fewer lanes

2023-01-18 Thread Rob Herring
ler-main.yaml | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > Acked-by: Rob Herring

Re: [PATCH 2/4] dt-bindings: display/msm: dsi-controller-main: account for apq8064

2023-01-18 Thread Rob Herring
n.yaml | 8 ++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > Acked-by: Rob Herring

Re: [PATCH 1/4] dt-bindings: display/msm: dsi-controller-main: remove #address/#size-cells

2023-01-18 Thread Rob Herring
; > Signed-off-by: Dmitry Baryshkov > --- > .../bindings/display/msm/dsi-controller-main.yaml | 6 +- > 1 file changed, 1 insertion(+), 5 deletions(-) > Acked-by: Rob Herring

Re: [PATCH 2/4] dt-bindings: display/msm: qcom, sc8280xp-mdss: add DP / eDP child nodes

2023-01-18 Thread Rob Herring
--- > .../bindings/display/msm/qcom,sc8280xp-mdss.yaml | 8 > 1 file changed, 8 insertions(+) > Acked-by: Rob Herring

Re: [PATCH 1/4] dt-bindings: display/msm: add qcom,sc8280xp-edp to list of eDP devices

2023-01-18 Thread Rob Herring
s/display/msm/dp-controller.yaml | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > Acked-by: Rob Herring

Re: [PATCH v7 04/11] dt-bindings: display/msm: rename mdss nodes to display-subsystem

2023-01-18 Thread Rob Herring
dss-common.yaml | 8 > .../devicetree/bindings/display/msm/qcom,mdss.yaml| 5 - > 2 files changed, 12 insertions(+), 1 deletion(-) > Reviewed-by: Rob Herring

Re: [PATCH v8 1/3] dt-bindings: msm: dsi-controller-main: Add compatible strings for every current SoC

2023-01-17 Thread Rob Herring
6 ++-- > .../display/msm/qcom,sdm845-mdss.yaml | 8 +++-- > .../display/msm/qcom,sm8150-mdss.yaml | 8 +++-- > .../display/msm/qcom,sm8250-mdss.yaml | 8 +++-- > .../display/msm/qcom,sm8350-mdss.yaml | 6 ++-- > .../display/msm/qcom,sm8450-mdss.yaml | 4 ++- > 10 files changed, 63 insertions(+), 24 deletions(-) > Acked-by: Rob Herring

Re: [PATCH v7 4/4] dt-bindings: display/msm: Add list of mdss-dsi-ctrl compats

2023-01-17 Thread Rob Herring
ss.yaml | 8 +--- > .../devicetree/bindings/display/msm/qcom,sm8350-mdss.yaml | 6 -- > .../devicetree/bindings/display/msm/qcom,sm8450-mdss.yaml | 4 +++- > 9 files changed, 37 insertions(+), 20 deletions(-) > Acked-by: Rob Herring

Re: [PATCH v2 1/2] dt-bindings: display: bridge: Add GPIO display mux binding

2023-01-17 Thread Rob Herring
On Mon, Jan 16, 2023 at 07:08:19PM +0800, Pin-yen Lin wrote: > From: Nicolas Boichat > > Add bindings for Generic GPIO mux driver. > > Signed-off-by: Nicolas Boichat > Signed-off-by: Pin-yen Lin > --- > > Changes in v2: > - Referenced existing dt-binding schemas from graph.yaml > - Added ddc-

Re: [PATCH v6 05/11] dt-bindings: display/msm: rename mdp nodes to display-controller

2023-01-17 Thread Rob Herring
devicetree/bindings/display/msm/qcom,mdp5.yaml| 3 +++ > .../devicetree/bindings/display/msm/qcom,mdss.yaml| 6 +++--- > 3 files changed, 14 insertions(+), 3 deletions(-) > Reviewed-by: Rob Herring

Re: [PATCH v6 03/11] dt-bindings: display/msm: add core clock to the mdss bindings

2023-01-17 Thread Rob Herring
On Fri, Jan 13, 2023 at 10:37:12AM +0200, Dmitry Baryshkov wrote: > Add (optional) core clock to the mdss bindings to let the MDSS driver > access harware registers before MDP driver probes. typo > > Signed-off-by: Dmitry Baryshkov > --- > .../bindings/display/msm/qcom,mdss.yaml | 34 +++

Re: [PATCH v6 02/11] dt-bindings: display/msm: add SoC-specific compats to qcom,mdp5.yaml

2023-01-17 Thread Rob Herring
tion/devicetree/bindings/display/msm/qcom,mdss.yaml > @@ -88,7 +88,11 @@ patternProperties: > type: object > properties: >compatible: > -const: qcom,mdp5 > +oneOf: > + - const: qcom,mdp5 > + - items: > + - {} > +

Re: [PATCH v6 01/11] dt-bindings: display/msm: convert MDP5 schema to YAML format

2023-01-17 Thread Rob Herring
| 138 ++ > 2 files changed, 138 insertions(+), 132 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/display/msm/mdp5.txt > create mode 100644 > Documentation/devicetree/bindings/display/msm/qcom,mdp5.yaml > Reviewed-by: Rob Herring

Re: [PATCH v7 1/4] dt-bindings: msm: dsi-controller-main: Add compatible strings for every current SoC

2023-01-16 Thread Rob Herring
On Mon, 16 Jan 2023 15:21:25 +, Bryan O'Donoghue wrote: > Currently we do not differentiate between the various users of the > qcom,mdss-dsi-ctrl. The driver is flexible enough to operate from one > compatible string but, the hardware does have some significant differences > in the number of

Re: [PATCH v6 01/11] dt-bindings: display/msm: convert MDP5 schema to YAML format

2023-01-13 Thread Rob Herring
On Fri, Jan 13, 2023 at 09:26:52AM -0600, Rob Herring wrote: > > On Fri, 13 Jan 2023 10:37:10 +0200, Dmitry Baryshkov wrote: > > Convert the mdp5.txt into the yaml format. Changes to the existing (txt) > > schema: > > - MSM8996 has additional "iommu" clock, d

Re: [PATCH] dt-bindings: display/msm/dsi-phy: drop unused allOf clauses

2023-01-13 Thread Rob Herring
On Fri, Jan 13, 2023 at 08:33:51AM +0200, Dmitry Baryshkov wrote: > Signed-off-by: Dmitry Baryshkov > --- > .../devicetree/bindings/display/msm/dsi-phy-10nm.yaml | 3 +-- > .../devicetree/bindings/display/msm/dsi-phy-14nm.yaml | 3 +-- > .../devicetree/bindings/display/msm/dsi-p

Re: [PATCH 8/9] dt-bindings: display: mediatek: Fix the fallback for mediatek,mt8186-disp-ccorr

2023-01-13 Thread Rob Herring
8186-disp-ccorr. > > Fixes: 8a26ea19d4dc ("dt-bindings: display: mediatek: add MT8186 SoC binding") > Signed-off-by: Allen-KH Cheng > --- > .../devicetree/bindings/display/mediatek/mediatek,ccorr.yaml| 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Rob Herring

Re: [PATCH 2/9] dt-bindings: spmi: spmi-mtk-pmif: Document mediatek,mt8195-spmi as fallback of mediatek,mt8186-spmi

2023-01-13 Thread Rob Herring
t; 1 file changed, 8 insertions(+), 3 deletions(-) > Reviewed-by: Rob Herring

Re: [PATCH v6 01/11] dt-bindings: display/msm: convert MDP5 schema to YAML format

2023-01-13 Thread Rob Herring
On Fri, 13 Jan 2023 10:37:10 +0200, Dmitry Baryshkov wrote: > Convert the mdp5.txt into the yaml format. Changes to the existing (txt) > schema: > - MSM8996 has additional "iommu" clock, define it separately > - Add new properties used on some of platforms: >- interconnects, interconnect-n

Re: [PATCH v6 04/11] dt-bindings: display/msm: rename mdss nodes to display-subsystem

2023-01-13 Thread Rob Herring
On Fri, 13 Jan 2023 10:37:13 +0200, Dmitry Baryshkov wrote: > Follow the 'generic names' rule and rename mdss nodes to > display-subsystem. > > Signed-off-by: Dmitry Baryshkov > --- > .../devicetree/bindings/display/msm/mdss-common.yaml | 8 > .../devicetree/bindings/display/msm/

Re: remove arch/sh

2023-01-13 Thread Rob Herring
On Fri, Jan 13, 2023 at 07:23:17AM +0100, Christoph Hellwig wrote: > Hi all, > > arch/sh has been a long drag because it supports a lot of SOCs, and most > of them haven't even been converted to device tree infrastructure. These > SOCs are generally obsolete as well, and all of the support has be

Re: [PATCH v10 4/9] dt-bindings: display: bridge: anx7625: Add mode-switch support

2023-01-12 Thread Rob Herring
On Wed, Jan 11, 2023 at 10:21 PM Pin-yen Lin wrote: > > Analogix 7625 can be used in systems to switch the DP traffic between > two downstreams, which can be USB Type-C DisplayPort alternate mode > lane or regular DisplayPort output ports. > > Update the binding to accommodate this usage by introd

Re: [PATCH v10 0/9] Register Type-C mode-switch in DP bridge endpoints

2023-01-12 Thread Rob Herring
On Wed, Jan 11, 2023 at 10:21 PM Pin-yen Lin wrote: > > > This series introduces bindings for anx7625/it6505 to register Type-C > mode-switch in their output endpoints, and use data-lanes property to > describe the pin connections. > > The first two patch modifies fwnode_graph_devcon_matches and >

Re: [PATCH v5 2/4] dt-bindings: display/msm: add SoC-specific compats to qcom,mdp5.yaml

2023-01-12 Thread Rob Herring
On Mon, Jan 09, 2023 at 07:01:50AM +0200, Dmitry Baryshkov wrote: > Add platform-specific compatible entries to the qcom,mdp5.yaml to allow > distinguishing between various platforms. For msm8998 list > qcom,msm8998-dpu rather than -mdp5 to allow this binding to be handled > by either of the driver

<    1   2   3   4   5   6   7   8   9   10   >