mbox series

[v5,0/2] Add support for Sharp LS060T1SX01 panel

Message ID 20211009203806.56821-1-dmitry.baryshkov@linaro.org (mailing list archive)
Headers show
Series Add support for Sharp LS060T1SX01 panel | expand

Message

Dmitry Baryshkov Oct. 9, 2021, 8:38 p.m. UTC
Add driver to support Sharp LS06T1SX01 6.0" FullHD panel found e.g. in
the kwaek.ca Dragonboard Display Adapter Bundle.

Changes since v4:
 - Use MIPI_DSI_MODE_NO_EOT_PACKET instead of the old name

Changes since v3:
 - Replaced small msleeps with usleep_range

Changes since v2:
 - Add missing power supplies used by the panel according to the
   datasheet

Changes since v1:
 - Fix the id in the schema file

----------------------------------------------------------------
Dmitry Baryshkov (2):
      dt-bindings: add bindings for the Sharp LS060T1SX01 panel
      drm/panel: Add support for Sharp LS060T1SX01 panel

 .../bindings/display/panel/sharp,ls060t1sx01.yaml  |  56 ++++
 drivers/gpu/drm/panel/Kconfig                      |  10 +
 drivers/gpu/drm/panel/Makefile                     |   1 +
 drivers/gpu/drm/panel/panel-sharp-ls060t1sx01.c    | 333 +++++++++++++++++++++
 4 files changed, 400 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/sharp,ls060t1sx01.yaml
 create mode 100644 drivers/gpu/drm/panel/panel-sharp-ls060t1sx01.c

Comments

Sam Ravnborg Oct. 10, 2021, 5:33 p.m. UTC | #1
Hi Dmitry,

On Sat, Oct 09, 2021 at 11:38:04PM +0300, Dmitry Baryshkov wrote:
> Add driver to support Sharp LS06T1SX01 6.0" FullHD panel found e.g. in
> the kwaek.ca Dragonboard Display Adapter Bundle.
> 
> Changes since v4:
>  - Use MIPI_DSI_MODE_NO_EOT_PACKET instead of the old name
> 
> Changes since v3:
>  - Replaced small msleeps with usleep_range
> 
> Changes since v2:
>  - Add missing power supplies used by the panel according to the
>    datasheet
> 
> Changes since v1:
>  - Fix the id in the schema file
> 
> ----------------------------------------------------------------
> Dmitry Baryshkov (2):
>       dt-bindings: add bindings for the Sharp LS060T1SX01 panel
>       drm/panel: Add support for Sharp LS060T1SX01 panel

Applied to drm-misc-next and this time on purpose.
Thanks for the quick fixes.

	Sam
Dmitry Baryshkov Oct. 10, 2021, 10:04 p.m. UTC | #2
On Sun, 10 Oct 2021 at 20:33, Sam Ravnborg <sam@ravnborg.org> wrote:
>
> Hi Dmitry,
>
> On Sat, Oct 09, 2021 at 11:38:04PM +0300, Dmitry Baryshkov wrote:
> > Add driver to support Sharp LS06T1SX01 6.0" FullHD panel found e.g. in
> > the kwaek.ca Dragonboard Display Adapter Bundle.
> >
> > Changes since v4:
> >  - Use MIPI_DSI_MODE_NO_EOT_PACKET instead of the old name
> >
> > Changes since v3:
> >  - Replaced small msleeps with usleep_range
> >
> > Changes since v2:
> >  - Add missing power supplies used by the panel according to the
> >    datasheet
> >
> > Changes since v1:
> >  - Fix the id in the schema file
> >
> > ----------------------------------------------------------------
> > Dmitry Baryshkov (2):
> >       dt-bindings: add bindings for the Sharp LS060T1SX01 panel
> >       drm/panel: Add support for Sharp LS060T1SX01 panel
>
> Applied to drm-misc-next and this time on purpose.
> Thanks for the quick fixes.

Thank you and sorry for the confusion/mess during the merge.