Skip to content

Commit

Permalink
drm/tinydrm: Add MIPI DBI support
Browse files Browse the repository at this point in the history
Add support for MIPI DBI compatible controllers.
Interface type C option 1 and 3 are supported (SPI).

Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Acked-by: Thierry Reding <treding@nvidia.com>
  • Loading branch information
notro committed Feb 18, 2017
1 parent 9f69eb5 commit 02dd95f
Show file tree
Hide file tree
Showing 5 changed files with 1,130 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Documentation/gpu/tinydrm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,15 @@ Additional helpers

.. kernel-doc:: drivers/gpu/drm/tinydrm/core/tinydrm-helpers.c
:export:

MIPI DBI Compatible Controllers
===============================

.. kernel-doc:: drivers/gpu/drm/tinydrm/mipi-dbi.c
:doc: overview

.. kernel-doc:: include/drm/tinydrm/mipi-dbi.h
:internal:

.. kernel-doc:: drivers/gpu/drm/tinydrm/mipi-dbi.c
:export:
3 changes: 3 additions & 0 deletions drivers/gpu/drm/tinydrm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ menuconfig DRM_TINYDRM
help
Choose this option if you have a tinydrm supported display.
If M is selected the module will be called tinydrm.

config TINYDRM_MIPI_DBI
tristate
3 changes: 3 additions & 0 deletions drivers/gpu/drm/tinydrm/Makefile
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
obj-$(CONFIG_DRM_TINYDRM) += core/

# Controllers
obj-$(CONFIG_TINYDRM_MIPI_DBI) += mipi-dbi.o
Loading

0 comments on commit 02dd95f

Please sign in to comment.