Message ID | 1573660292-10629-1-git-send-email-fabrizio.castro@bp.renesas.com (mailing list archive) |
---|---|
Headers | show |
Series | Add LCD panel support to iwg20d | expand |
Hi, On 13/11/2019 16:51, Fabrizio Castro wrote: > The iW-RainboW-G20D-Qseven RZ/G1M,G1N Qseven Development Platform > comes with a 7" capacitive display kit from Emerging Display > Technologies Corporation (EDT). This series adds all that's > necessary for supporting it. > > Thanks, > Fab > > v3->v4: > * Reworked according to Laurent's and Jacopo's comments > v2->v3: > * Split the dt-schema patch in two patches as per Rob's comment > * Made fixes to the dt-schema according to Rob's comment > * Made fixes to the lvds-codec driver according to Jacopo's comments > * Added two new patches: > * drm: Define DRM_MODE_CONNECTOR_PARALLEL > * drm/panel: panel-simple: Add connector type for etm0700g0dh6 > v1->v2: > * Convert dt-bindings to dt-schema > > Fabrizio Castro (13): > dt-bindings: display: bridge: Convert lvds-transmitter binding to > json-schema > dt-bindings: display: bridge: lvds-transmitter: Document > powerdown-gpios > dt-bindings: display: bridge: lvds-transmitter: Absorb ti,ds90c185.txt > dt-bindings: display: bridge: lvds-transmitter: Document > "ti,sn75lvds83" > drm/bridge: Repurpose lvds-encoder.c > drm/bridge: lvds-codec: Add "lvds-decoder" support > drm/bridge: lvds-codec: Simplify panel DT node localisation > dt-bindings: display: bridge: Repurpose lvds-encoder > dt-bindings: display: bridge: lvds-codec: Document ti,ds90cf384a > ARM: dts: iwg20d-q7-common: Add LCD support > ARM: shmobile_defconfig: Enable support for panels from EDT > [HACK] drm/bridge: lvds-codec: Enforce device specific compatible > strings > [HACK] dt-bindings: display: bridge: lvds-codec: Absorb > thine,thc63lvdm83d.txt > > .../bindings/display/bridge/lvds-codec.yaml | 131 +++++++++++++++ > .../bindings/display/bridge/lvds-transmitter.txt | 66 -------- > .../bindings/display/bridge/thine,thc63lvdm83d.txt | 50 ------ > .../bindings/display/bridge/ti,ds90c185.txt | 55 ------- > arch/arm/boot/dts/iwg20d-q7-common.dtsi | 85 ++++++++++ > arch/arm/boot/dts/iwg20d-q7-dbcm-ca.dtsi | 1 - > arch/arm/configs/shmobile_defconfig | 3 + > drivers/gpu/drm/bridge/Kconfig | 8 +- > drivers/gpu/drm/bridge/Makefile | 2 +- > .../drm/bridge/{lvds-encoder.c => lvds-codec.c} | 179 +++++++++++++-------- > 10 files changed, 333 insertions(+), 247 deletions(-) > create mode 100644 Documentation/devicetree/bindings/display/bridge/lvds-codec.yaml > delete mode 100644 Documentation/devicetree/bindings/display/bridge/lvds-transmitter.txt > delete mode 100644 Documentation/devicetree/bindings/display/bridge/thine,thc63lvdm83d.txt > delete mode 100644 Documentation/devicetree/bindings/display/bridge/ti,ds90c185.txt > rename drivers/gpu/drm/bridge/{lvds-encoder.c => lvds-codec.c} (25%) > Applying patches 1->9 and 13 to drm-misc-next with correct SoB. Also applied change on patch 8 while applying. And checked the diff is the same as laurent's PR. Neil
Hi Neil, > From: Neil Armstrong <narmstrong@baylibre.com> > Sent: 18 December 2019 11:53 > Subject: Re: [PATCH v4 00/13] Add LCD panel support to iwg20d > > Hi, > > On 13/11/2019 16:51, Fabrizio Castro wrote: > > The iW-RainboW-G20D-Qseven RZ/G1M,G1N Qseven Development Platform > > comes with a 7" capacitive display kit from Emerging Display > > Technologies Corporation (EDT). This series adds all that's > > necessary for supporting it. > > > > Thanks, > > Fab > > > > v3->v4: > > * Reworked according to Laurent's and Jacopo's comments > > v2->v3: > > * Split the dt-schema patch in two patches as per Rob's comment > > * Made fixes to the dt-schema according to Rob's comment > > * Made fixes to the lvds-codec driver according to Jacopo's comments > > * Added two new patches: > > * drm: Define DRM_MODE_CONNECTOR_PARALLEL > > * drm/panel: panel-simple: Add connector type for etm0700g0dh6 > > v1->v2: > > * Convert dt-bindings to dt-schema > > > > Fabrizio Castro (13): > > dt-bindings: display: bridge: Convert lvds-transmitter binding to > > json-schema > > dt-bindings: display: bridge: lvds-transmitter: Document > > powerdown-gpios > > dt-bindings: display: bridge: lvds-transmitter: Absorb ti,ds90c185.txt > > dt-bindings: display: bridge: lvds-transmitter: Document > > "ti,sn75lvds83" > > drm/bridge: Repurpose lvds-encoder.c > > drm/bridge: lvds-codec: Add "lvds-decoder" support > > drm/bridge: lvds-codec: Simplify panel DT node localisation > > dt-bindings: display: bridge: Repurpose lvds-encoder > > dt-bindings: display: bridge: lvds-codec: Document ti,ds90cf384a > > ARM: dts: iwg20d-q7-common: Add LCD support > > ARM: shmobile_defconfig: Enable support for panels from EDT > > [HACK] drm/bridge: lvds-codec: Enforce device specific compatible > > strings > > [HACK] dt-bindings: display: bridge: lvds-codec: Absorb > > thine,thc63lvdm83d.txt > > > > .../bindings/display/bridge/lvds-codec.yaml | 131 +++++++++++++++ > > .../bindings/display/bridge/lvds-transmitter.txt | 66 -------- > > .../bindings/display/bridge/thine,thc63lvdm83d.txt | 50 ------ > > .../bindings/display/bridge/ti,ds90c185.txt | 55 ------- > > arch/arm/boot/dts/iwg20d-q7-common.dtsi | 85 ++++++++++ > > arch/arm/boot/dts/iwg20d-q7-dbcm-ca.dtsi | 1 - > > arch/arm/configs/shmobile_defconfig | 3 + > > drivers/gpu/drm/bridge/Kconfig | 8 +- > > drivers/gpu/drm/bridge/Makefile | 2 +- > > .../drm/bridge/{lvds-encoder.c => lvds-codec.c} | 179 +++++++++++++-------- > > 10 files changed, 333 insertions(+), 247 deletions(-) > > create mode 100644 Documentation/devicetree/bindings/display/bridge/lvds-codec.yaml > > delete mode 100644 Documentation/devicetree/bindings/display/bridge/lvds-transmitter.txt > > delete mode 100644 Documentation/devicetree/bindings/display/bridge/thine,thc63lvdm83d.txt > > delete mode 100644 Documentation/devicetree/bindings/display/bridge/ti,ds90c185.txt > > rename drivers/gpu/drm/bridge/{lvds-encoder.c => lvds-codec.c} (25%) > > > > Applying patches 1->9 and 13 to drm-misc-next with correct SoB. > > Also applied change on patch 8 while applying. > > And checked the diff is the same as laurent's PR. Thank you. Fab > > Neil