Unverified Commit 9b8f3200 authored by Marcus Folkesson's avatar Marcus Folkesson Committed by Javier Martinez Canillas
Browse files

drm/sitronix: move tiny Sitronix drivers to their own subdir



We start to have support many Sitronix displays in the tiny directory,
and we expect more to come.

Move them to their own subdirectory.

Reviewed-by: default avatarJavier Martinez Canillas <javierm@redhat.com>
Suggested-by: default avatarJavier Martinez Canillas <javierm@redhat.com>
Signed-off-by: default avatarMarcus Folkesson <marcus.folkesson@gmail.com>
Acked-by: default avatarThomas Zimmermann <tzimmermann@suse.de>
Link: https://lore.kernel.org/r/20250512-sitronix-v3-1-bbf6cc413698@gmail.com


Signed-off-by: default avatarJavier Martinez Canillas <javierm@redhat.com>
parent 84953fc5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -7695,13 +7695,13 @@ M: David Lechner <david@lechnology.com>
S:	Maintained
T:	git https://gitlab.freedesktop.org/drm/misc/kernel.git
F:	Documentation/devicetree/bindings/display/sitronix,st7586.txt
F:	drivers/gpu/drm/tiny/st7586.c
F:	drivers/gpu/drm/sitronix/st7586.c
DRM DRIVER FOR SITRONIX ST7571 PANELS
M:	Marcus Folkesson <marcus.folkesson@gmail.com>
S:	Maintained
F:	Documentation/devicetree/bindings/display/sitronix,st7571.yaml
F:	drivers/gpu/drm/tiny/st7571-i2c.c
F:	drivers/gpu/drm/sitronix/st7571-i2c.c
DRM DRIVER FOR SITRONIX ST7701 PANELS
M:	Jagan Teki <jagan@amarulasolutions.com>
@@ -7722,7 +7722,7 @@ M: David Lechner <david@lechnology.com>
S:	Maintained
T:	git https://gitlab.freedesktop.org/drm/misc/kernel.git
F:	Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
F:	drivers/gpu/drm/tiny/st7735r.c
F:	drivers/gpu/drm/sitronix/st7735r.c
DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
M:	Javier Martinez Canillas <javierm@redhat.com>
+2 −0
Original line number Diff line number Diff line
@@ -385,6 +385,8 @@ source "drivers/gpu/drm/xlnx/Kconfig"

source "drivers/gpu/drm/gud/Kconfig"

source "drivers/gpu/drm/sitronix/Kconfig"

source "drivers/gpu/drm/solomon/Kconfig"

source "drivers/gpu/drm/sprd/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -221,6 +221,7 @@ obj-$(CONFIG_DRM_TIDSS) += tidss/
obj-y			+= xlnx/
obj-y			+= gud/
obj-$(CONFIG_DRM_HYPERV) += hyperv/
obj-y			+= sitronix/
obj-y			+= solomon/
obj-$(CONFIG_DRM_SPRD) += sprd/
obj-$(CONFIG_DRM_LOONGSON) += loongson/
+51 −0
Original line number Diff line number Diff line
config DRM_ST7571_I2C
	tristate "DRM support for Sitronix ST7571 display panels (I2C)"
	depends on DRM && I2C && MMU
	select DRM_CLIENT_SELECTION
	select DRM_GEM_SHMEM_HELPER
	select DRM_KMS_HELPER
	select REGMAP_I2C
	help
	  DRM driver for Sitronix ST7571 panels controlled over I2C.

	  if M is selected the module will be called st7571-i2c.

config TINYDRM_ST7586
	tristate
	default n

config DRM_ST7586
	tristate "DRM support for Sitronix ST7586 display panels"
	depends on DRM && SPI
	select DRM_CLIENT_SELECTION
	select DRM_KMS_HELPER
	select DRM_GEM_DMA_HELPER
	select DRM_MIPI_DBI
	default TINYDRM_ST7586
	help
	  DRM driver for the following Sitronix ST7586 panels:
	  * LEGO MINDSTORMS EV3

	  If M is selected the module will be called st7586.

config TINYDRM_ST7735R
	tristate
	default n

config DRM_ST7735R
	tristate "DRM support for Sitronix ST7715R/ST7735R display panels"
	depends on DRM && SPI
	select DRM_CLIENT_SELECTION
	select DRM_KMS_HELPER
	select DRM_GEM_DMA_HELPER
	select DRM_MIPI_DBI
	select BACKLIGHT_CLASS_DEVICE
	default TINYDRM_ST7735R
	help
	  DRM driver for Sitronix ST7715R/ST7735R with one of the following
	  LCDs:
	  * Jianda JD-T18003-T01 1.8" 128x160 TFT
	  * Okaya RH128128T 1.44" 128x128 TFT

	  If M is selected the module will be called st7735r.
+3 −0
Original line number Diff line number Diff line
obj-$(CONFIG_DRM_ST7571_I2C)		+= st7571-i2c.o
obj-$(CONFIG_DRM_ST7586)		+= st7586.o
obj-$(CONFIG_DRM_ST7735R)		+= st7735r.o
Loading