mbox series

[v6,0/5] drm/tiny: Add MIPI DBI compatible SPI driver

Message ID 20220227124713.39766-1-noralf@tronnes.org (mailing list archive)
Headers show
Series drm/tiny: Add MIPI DBI compatible SPI driver | expand

Message

Noralf Trønnes Feb. 27, 2022, 12:47 p.m. UTC
Hi,

This patchset adds a driver that will work with most MIPI DBI compatible
SPI panels out there.

One change this time: Fix indentation in the DT binding.

All patches are reviewed now so I will apply this after Rob's bot have
looked at the binding.

Thanks for reviewing!

Noralf.


Noralf Trønnes (5):
  dt-bindings: display: add bindings for MIPI DBI compatible SPI panels
  drm/modes: Remove trailing whitespace
  drm/modes: Add of_get_drm_panel_display_mode()
  drm/mipi-dbi: Add driver_private member to struct mipi_dbi_dev
  drm/tiny: Add MIPI DBI compatible SPI driver

 .../display/panel/panel-mipi-dbi-spi.yaml     | 126 ++++++
 MAINTAINERS                                   |   8 +
 drivers/gpu/drm/drm_modes.c                   |  51 ++-
 drivers/gpu/drm/tiny/Kconfig                  |  15 +
 drivers/gpu/drm/tiny/Makefile                 |   1 +
 drivers/gpu/drm/tiny/panel-mipi-dbi.c         | 398 ++++++++++++++++++
 include/drm/drm_mipi_dbi.h                    |   8 +
 include/drm/drm_modes.h                       |   8 +
 8 files changed, 614 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
 create mode 100644 drivers/gpu/drm/tiny/panel-mipi-dbi.c

Comments

Maxime Ripard Feb. 28, 2022, 8:31 a.m. UTC | #1
Hi,

On Sun, Feb 27, 2022 at 01:47:08PM +0100, Noralf Trønnes wrote:
> Hi,
> 
> This patchset adds a driver that will work with most MIPI DBI compatible
> SPI panels out there.
> 
> One change this time: Fix indentation in the DT binding.
> 
> All patches are reviewed now so I will apply this after Rob's bot have
> looked at the binding.
> 
> Thanks for reviewing!

I just merged it in drm-misc-next.

Thanks a lot for being persistent enough to get through this, it will
massively improve the situation for those displays :)

Maxime
Noralf Trønnes Feb. 28, 2022, 11:50 a.m. UTC | #2
Den 28.02.2022 09.31, skrev Maxime Ripard:
> Hi,
> 
> On Sun, Feb 27, 2022 at 01:47:08PM +0100, Noralf Trønnes wrote:
>> Hi,
>>
>> This patchset adds a driver that will work with most MIPI DBI compatible
>> SPI panels out there.
>>
>> One change this time: Fix indentation in the DT binding.
>>
>> All patches are reviewed now so I will apply this after Rob's bot have
>> looked at the binding.
>>
>> Thanks for reviewing!
> 
> I just merged it in drm-misc-next.
> 

Thanks.

> Thanks a lot for being persistent enough to get through this, it will
> massively improve the situation for those displays :)
> 

Some times it's good not knowing how long it will take to do a project,
I wouldn't have done it if I knew, but then again I'm now glad there's a
future proof solution for this :) I did it for the maker community which
continues to facinate me with its ingenuity and energy.

Thanks Maxime for the idea that made it possible to do a generic driver
in mainline!

Noralf.