devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v7 0/9] STM32 LCD-TFT display controller
@ 2017-04-14 10:13 Yannick Fertre
  2017-04-14 10:13 ` [PATCH v7 1/9] drm/cma: Update DEFINE_DRM_GEM_CMA_FOPS to add get_unmapped_area Yannick Fertre
                   ` (9 more replies)
  0 siblings, 10 replies; 16+ messages in thread
From: Yannick Fertre @ 2017-04-14 10:13 UTC (permalink / raw)
  To: Alexandre TORGUE, Thierry Reding, David Airlie, Maxime Coquelin,
	Russell King, Mark Rutland, Rob Herring, Arnd Bergmann,
	Benjamin Gaignard, Yannick Fertre
  Cc: devicetree, kernel, Philippe Cornu, Fabien Dessenne, dri-devel,
	Mickael Reulier, Vincent Abriou, Gabriel FERNANDEZ,
	linux-arm-kernel

Version 7:
- rework heading of MAINTAINERS patch

Version 6:
- Add patch on MAINTAINERS file to add Philippe Cornu & myself.
- Update driver stm to remove uneccessary functions called.

Version 5:
- Add patch on drm_gem_cma_helper.h to udapte DEFINE_DRM_GEM_CMA_FOPS.
- Add patch on drm_fb_cma_helper to add new function to get physical address.
- Solve some typos & update ltdc driver including last remarks of Eric Anholt
- Update commits of config patches.

Version 4:
- Update "ampire,am-480272h3tmqw-t01h.txt" binding with more details on gpios.
- Update ltdc.c. Remove regmap, solve some typo & warnings.

Version 3:
- Update "st,stm32-ltdc.txt" binding.
- Add a commit to "ARM: configs: stm32: ADD LDTC support" patch.

Version 2:
- Rename driver directory from st to stm.
- Rename compatiblity from st,ltdc to st,stm32-ltdc.
- Remove compatibility st,display-subsystem.
- Rename driver from st-drm to stm-drm.
- Rework probe sequence & remove display-subsystem part.
- I keep clock name which is necessary for devm_regmap_init_mmio_clk call.

Version 1:
- Initial commit

The purpose of this set of patches is to add a new driver for stm32f429.
This driver was developed and tested on evaluation board stm32429i.

Stm32f4 is a MCU platform which don't have MMU so the last patches developed
by Benjamin Gaignard regarding "DRM: allow to use mmuless devices"
are necessary.

The board stm429i embeds a Ampire AM-480272H3TMQW-T01H screen.
A new simple panel am-480272h3tmqw-t01h have been added to support it.


Yannick Fertre (9):
  drm/cma: Update DEFINE_DRM_GEM_CMA_FOPS to add get_unmapped_area
  drm/fb-cma-helper: Add drm_fb_cma_get_gem_addr()
  dt-bindings: display: Add STM32 LTDC driver
  drm/stm: Add STM32 LTDC driver
  MAINTAINERS: add maintainers for DRM STM driver
  ARM: dts: stm32: Add ltdc support on stm32f429 MCU
  ARM: dts: stm32: Enable ltdc & simple panel on stm32f429-Eval board
  ARM: configs: stm32: Add DRM support in STM32 defconfig
  ARM: configs: stm32: Add simple panel support in STM32 defconfig

 .../devicetree/bindings/display/st,stm32-ltdc.txt  |   36 +
 MAINTAINERS                                        |    9 +
 arch/arm/boot/dts/stm32429i-eval.dts               |   59 +
 arch/arm/boot/dts/stm32f429.dtsi                   |   12 +-
 arch/arm/configs/stm32_defconfig                   |    3 +
 drivers/gpu/drm/Kconfig                            |    2 +
 drivers/gpu/drm/Makefile                           |    1 +
 drivers/gpu/drm/drm_fb_cma_helper.c                |   27 +
 drivers/gpu/drm/stm/Kconfig                        |   16 +
 drivers/gpu/drm/stm/Makefile                       |    7 +
 drivers/gpu/drm/stm/drv.c                          |  221 ++++
 drivers/gpu/drm/stm/ltdc.c                         | 1161 ++++++++++++++++++++
 drivers/gpu/drm/stm/ltdc.h                         |   40 +
 include/drm/drm_fb_cma_helper.h                    |    4 +
 include/drm/drm_gem_cma_helper.h                   |    1 +
 15 files changed, 1598 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
 create mode 100644 drivers/gpu/drm/stm/Kconfig
 create mode 100644 drivers/gpu/drm/stm/Makefile
 create mode 100644 drivers/gpu/drm/stm/drv.c
 create mode 100644 drivers/gpu/drm/stm/ltdc.c
 create mode 100644 drivers/gpu/drm/stm/ltdc.h

-- 
1.9.1

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2017-06-12 12:00 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-14 10:13 [PATCH v7 0/9] STM32 LCD-TFT display controller Yannick Fertre
2017-04-14 10:13 ` [PATCH v7 1/9] drm/cma: Update DEFINE_DRM_GEM_CMA_FOPS to add get_unmapped_area Yannick Fertre
     [not found]   ` <1492164819-10513-2-git-send-email-yannick.fertre-qxv4g6HH51o@public.gmane.org>
2017-04-14 12:49     ` Neil Armstrong
2017-04-14 10:13 ` [PATCH v7 2/9] drm/fb-cma-helper: Add drm_fb_cma_get_gem_addr() Yannick Fertre
     [not found]   ` <1492164819-10513-3-git-send-email-yannick.fertre-qxv4g6HH51o@public.gmane.org>
2017-04-14 12:54     ` Neil Armstrong
2017-04-14 10:13 ` [PATCH v7 3/9] dt-bindings: display: Add STM32 LTDC driver Yannick Fertre
2017-04-14 10:13 ` [PATCH v7 4/9] drm/stm: " Yannick Fertre
2017-04-14 12:59   ` Neil Armstrong
     [not found]   ` <1492164819-10513-5-git-send-email-yannick.fertre-qxv4g6HH51o@public.gmane.org>
2017-04-14 18:38     ` Eric Anholt
2017-04-14 10:13 ` [PATCH v7 5/9] MAINTAINERS: add maintainers for DRM STM driver Yannick Fertre
     [not found]   ` <1492164819-10513-6-git-send-email-yannick.fertre-qxv4g6HH51o@public.gmane.org>
2017-04-14 12:59     ` Neil Armstrong
2017-04-14 10:13 ` [PATCH v7 6/9] ARM: dts: stm32: Add ltdc support on stm32f429 MCU Yannick Fertre
2017-04-14 10:13 ` [PATCH v7 7/9] ARM: dts: stm32: Enable ltdc & simple panel on stm32f429-Eval board Yannick Fertre
2017-04-14 10:13 ` [PATCH v7 8/9] ARM: configs: stm32: Add DRM support in STM32 defconfig Yannick Fertre
2017-04-14 10:13 ` [PATCH v7 9/9] ARM: configs: stm32: Add simple panel " Yannick Fertre
2017-06-12 12:00 ` [PATCH v7 0/9] STM32 LCD-TFT display controller Alexandre Torgue

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).