All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/10] Add DRM Driver for HiSilicon Kirin hi6220 SoC
@ 2016-01-30  8:54 ` Xinliang Liu
  0 siblings, 0 replies; 26+ messages in thread
From: Xinliang Liu @ 2016-01-30  8:54 UTC (permalink / raw)
  To: dri-devel, devicetree, daniel, robh, daniel, architt, airlied,
	corbet, catalin.marinas, will.deacon, emil.l.velikov
  Cc: linux-doc, linux-arm-kernel, linuxarm, andy.green,
	haojian.zhuang, liguozhu, xuwei5, w.f, puck.chen, bintian.wang,
	benjamin.gaignard, xuyiping, kong.kongxinwei, zourongrong,
	lijianhua, sumit.semwal, guodong.xu, Xinliang Liu

  This patch set adds a new drm driver for HiSilicon Kirin hi6220 SoC.
Current testing and support board is Hikey board which is one of Linaro
96boards. It is an arm64 open source board. For more information about
this board, please access https://www.96boards.org.

Hardware Detail
---------------
  The display subsystem of Hi6220 SoC is shown as bellow:
 +-----+       +----------+     +-----+     +---------+
 |     |       |          |     |     |     |         |             	
 | FB  |------>|   ADE    |---->| DSI |---->| External|
 |     |       |          |     |     |     |  HDMI   |
 +-----+       +----------+     +-----+     +---------+

- ADE(Advanced Display Engine) is the display controller. It contains 7
channels, 3 overlay compositors and a LDI.
  - A channel looks like: DMA-->clip-->scale-->ctrans(or called csc).
  - Overlay compositor is response to compose planes which come from 7
  channels and pass composed image to LDI.
  - LDI is response to generate timings and RGB data stream.
- DSI converts the RGB data stream from ADE to DSI packets.
- External HDMI module is connected with DSI bus. Now Hikey use a ADI's
  ADV7533 external HDMI chip.

Change History
-------------
Changes in v3:
- Move and rename all the files to kirin sub-directory.
  So that we could separate different seires SoCs' driver.
- Make ade as the drm master node.
- Replace drm_platform_init, load, unload implementation.
- Use assigned-clocks to set clock rate.
- Use ports to connect display relavant nodes.
- Rename hisi_drm_dsi.c to dw_drm_dsi.c
- Make encoder type as DRM_MODE_ENCODER_DSI.
- A few cleanup on regs and code.

Changes in v2:
- Remove abtraction layer of plane/crtc/encoder/connector.
- Refactor atomic implementation according to Daniel Vetter's guides:
http://blog.ffwll.ch/2014/11/atomic-modeset-support-for-kms-drivers.html
http://blog.ffwll.ch/2015/09/xdc-2015-atomic-modesetting-for-drivers.html
http://blog.ffwll.ch/2015/08/atomic-modesetting-design-overview.html
- Use bridge instead of slave encoder to connect external HDMI.
- Move dt binding docs to bindings/display/hisilicon directory. 

Xinliang Liu (10):
  drm/hisilicon: Add device tree binding for hi6220 display subsystem
  drm/hisilicon: Add hisilicon kirin drm master driver
  drm/hisilicon: Add crtc driver for ADE
  drm/hisilicon: Add plane driver for ADE
  drm/hisilicon: Add vblank driver for ADE
  drm/hisilicon: Add cma fbdev and hotplug
  drm/hisilicon: Add designware dsi encoder driver
  drm/hisilicon: Add designware dsi host driver
  drm/hisilicon: Add support for external bridge
  MAINTAINERS: Add maintainer for hisilicon DRM driver

 .../bindings/display/hisilicon/dw-dsi.txt          |   60 ++
 .../bindings/display/hisilicon/hisi-ade.txt        |   56 ++
 MAINTAINERS                                        |    9 +
 drivers/gpu/drm/Kconfig                            |    2 +
 drivers/gpu/drm/Makefile                           |    1 +
 drivers/gpu/drm/hisilicon/Kconfig                  |    5 +
 drivers/gpu/drm/hisilicon/Makefile                 |    5 +
 drivers/gpu/drm/hisilicon/kirin/Kconfig            |   10 +
 drivers/gpu/drm/hisilicon/kirin/Makefile           |    5 +
 drivers/gpu/drm/hisilicon/kirin/dw_drm_dsi.c       |  845 ++++++++++++++++
 drivers/gpu/drm/hisilicon/kirin/dw_dsi_reg.h       |   83 ++
 drivers/gpu/drm/hisilicon/kirin/kirin_ade_reg.h    |  280 ++++++
 drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c    | 1053 ++++++++++++++++++++
 drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c    |  382 +++++++
 drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.h    |   31 +
 15 files changed, 2827 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/hisilicon/dw-dsi.txt
 create mode 100644 Documentation/devicetree/bindings/display/hisilicon/hisi-ade.txt
 create mode 100644 drivers/gpu/drm/hisilicon/Kconfig
 create mode 100644 drivers/gpu/drm/hisilicon/Makefile
 create mode 100644 drivers/gpu/drm/hisilicon/kirin/Kconfig
 create mode 100644 drivers/gpu/drm/hisilicon/kirin/Makefile
 create mode 100644 drivers/gpu/drm/hisilicon/kirin/dw_drm_dsi.c
 create mode 100644 drivers/gpu/drm/hisilicon/kirin/dw_dsi_reg.h
 create mode 100644 drivers/gpu/drm/hisilicon/kirin/kirin_ade_reg.h
 create mode 100644 drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c
 create mode 100644 drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c
 create mode 100644 drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.h

-- 
1.9.1


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

end of thread, other threads:[~2016-02-03  8:32 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-30  8:54 [PATCH v3 00/10] Add DRM Driver for HiSilicon Kirin hi6220 SoC Xinliang Liu
2016-01-30  8:54 ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 01/10] drm/hisilicon: Add device tree binding for hi6220 display subsystem Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu
2016-02-01 15:10   ` Rob Herring
2016-02-01 15:10     ` Rob Herring
2016-02-03  8:32     ` Xinliang Liu
2016-02-03  8:32       ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 02/10] drm/hisilicon: Add hisilicon kirin drm master driver Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 03/10] drm/hisilicon: Add crtc driver for ADE Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 04/10] drm/hisilicon: Add plane " Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 05/10] drm/hisilicon: Add vblank " Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 06/10] drm/hisilicon: Add cma fbdev and hotplug Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 07/10] drm/hisilicon: Add designware dsi encoder driver Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 08/10] drm/hisilicon: Add designware dsi host driver Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 09/10] drm/hisilicon: Add support for external bridge Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu
2016-01-30  8:54 ` [PATCH v3 10/10] MAINTAINERS: Add maintainer for hisilicon DRM driver Xinliang Liu
2016-01-30  8:54   ` Xinliang Liu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.