All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/13] Add mipi dsi support for rk3288
@ 2015-10-31 12:55 ` Chris Zhong
  0 siblings, 0 replies; 35+ messages in thread
From: Chris Zhong @ 2015-10-31 12:55 UTC (permalink / raw)
  To: heiko, linux-rockchip
  Cc: Chris Zhong, Arnd Bergmann, Thierry Reding, Takashi Iwai,
	Philipp Zabel, Kumar Gala, dri-devel, Ian Campbell, Rob Herring,
	Antony Pavlov, David Airlie, Jeff Chen, Thierry Reding,
	linux-clk, Alexandru M Stan, Sonny Rao, Kever Yang,
	Arnaud Ebalard, Huang Lin, Inki Dae, Pawel Moll,
	Jonathan Cameron, devicetree, Michael Turquette, Stephen Boyd,
	Vincent Palatin, Kuninori Morimoto, Russell King, Ajay Kumar,
	linux-arm-kernel, Russell King, Liu Ying, Doug Anderson,
	linux-kernel, Mark Yao, David S. Miller, Andy Yan, Mark Rutland,
	Roger Chen

The rk3288 MIPI DSI is a Synopsys DesignWare MIPI DSI host controller
IP. This series adds support for a Synopsys DesignWare MIPI DSI host
controller DRM bridge driver and a rockchip MIPI DSI specific DRM
driver.

This series also includes a DRM panel driver for BOE TV080WUM-NL0 panel.
This panel only use the MIPI DSI video mode.

The MIPI DSI feature is tested on rk3288 evb board, backport them to
chrome os kernel v3.14, and it can display normally.

This patchset is base on the patchset from Ying.liu@freescale.com.
<http://www.spinics.net/lists/dri-devel/msg77181.html>


Changes in v2:
add the mipi clk id in a single patch
add vendor prefix for boe
As Thierry.Reding comment, add a documentation for this panel.

Chris Zhong (11):
  clk: rockchip: add id for mipidsi sclk on rk3288
  clk: rockchip: add mipidsi clocks on rk3288
  drm/rockchip: return a true clock rate to adjusted_mode
  drm/bridge: Add Synopsys DesignWare MIPI DSI host controller driver
  drm: rockchip: Support Synopsys DesignWare MIPI DSI host controller
  Documentation: dt-bindings: Add bindings for rk3288 DW MIPI DSI driver
  ARM: dts: rockchip: add rk3288 mipi_dsi nodes
  of: add vendor prefix for boe
  drm/panel: simple: Add support for BOE TV080WUM-NL0
  drm/panel: simple: Add simple panel device tree binding
  ARM: dts: rockchip: add support mipi panel tv080wum-nl0 for rk3288-evb

Liu Ying (2):
  drm/dsi: Add a helper to get bits per pixel of MIPI DSI pixel format
  Documentation: dt-bindings: Add bindings for Synopsys DW MIPI DSI DRM
    bridge driver

 .../devicetree/bindings/drm/bridge/dw_mipi_dsi.txt |   76 ++
 .../devicetree/bindings/panel/boe,tv080wum-nl0.txt |    7 +
 .../devicetree/bindings/vendor-prefixes.txt        |    1 +
 .../bindings/video/dw_mipi_dsi_rockchip.txt        |   56 ++
 arch/arm/boot/dts/rk3288-evb.dtsi                  |   20 +-
 arch/arm/boot/dts/rk3288.dtsi                      |   39 +
 drivers/clk/rockchip/clk-rk3288.c                  |    2 +-
 drivers/gpu/drm/bridge/Kconfig                     |    9 +
 drivers/gpu/drm/bridge/Makefile                    |    1 +
 drivers/gpu/drm/bridge/dw_mipi_dsi.c               | 1055 ++++++++++++++++++++
 drivers/gpu/drm/panel/panel-simple.c               |   33 +
 drivers/gpu/drm/rockchip/Kconfig                   |   10 +
 drivers/gpu/drm/rockchip/Makefile                  |    1 +
 drivers/gpu/drm/rockchip/dw_mipi_dsi_rockchip.c    |  249 +++++
 drivers/gpu/drm/rockchip/rockchip_drm_vop.c        |    9 +
 include/drm/bridge/dw_mipi_dsi.h                   |   27 +
 include/drm/drm_mipi_dsi.h                         |   14 +
 include/dt-bindings/clock/rk3288-cru.h             |    1 +
 18 files changed, 1608 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/drm/bridge/dw_mipi_dsi.txt
 create mode 100644 Documentation/devicetree/bindings/panel/boe,tv080wum-nl0.txt
 create mode 100644 Documentation/devicetree/bindings/video/dw_mipi_dsi_rockchip.txt
 create mode 100644 drivers/gpu/drm/bridge/dw_mipi_dsi.c
 create mode 100644 drivers/gpu/drm/rockchip/dw_mipi_dsi_rockchip.c
 create mode 100644 include/drm/bridge/dw_mipi_dsi.h

-- 
2.6.2


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

end of thread, other threads:[~2015-11-06  2:21 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-31 12:55 [PATCH v2 00/13] Add mipi dsi support for rk3288 Chris Zhong
2015-10-31 12:55 ` Chris Zhong
2015-10-31 12:55 ` Chris Zhong
2015-10-31 12:55 ` [PATCH v2 01/13] clk: rockchip: add id for mipidsi sclk on rk3288 Chris Zhong
2015-10-31 12:55 ` [PATCH v2 02/13] clk: rockchip: add mipidsi clocks " Chris Zhong
2015-10-31 12:55   ` Chris Zhong
2015-10-31 12:55 ` [PATCH v2 03/13] drm/rockchip: return a true clock rate to adjusted_mode Chris Zhong
2015-10-31 12:55   ` Chris Zhong
2015-10-31 12:56 ` [PATCH v2 04/13] drm/dsi: Add a helper to get bits per pixel of MIPI DSI pixel format Chris Zhong
2015-10-31 12:56   ` Chris Zhong
2015-10-31 12:56 ` [PATCH v2 05/13] Documentation: dt-bindings: Add bindings for Synopsys DW MIPI DSI DRM bridge driver Chris Zhong
2015-11-06  2:21   ` Rob Herring
2015-11-06  2:21     ` Rob Herring
2015-10-31 12:56 ` [PATCH v2 06/13] drm/bridge: Add Synopsys DesignWare MIPI DSI host controller driver Chris Zhong
2015-10-31 12:56 ` [PATCH v2 07/13] drm: rockchip: Support Synopsys DesignWare MIPI DSI host controller Chris Zhong
2015-10-31 12:56   ` Chris Zhong
2015-10-31 12:56 ` [PATCH v2 08/13] Documentation: dt-bindings: Add bindings for rk3288 DW MIPI DSI driver Chris Zhong
2015-10-31 12:56   ` Chris Zhong
2015-11-06  2:18   ` Rob Herring
2015-11-06  2:18     ` Rob Herring
2015-10-31 12:56 ` [PATCH v2 09/13] ARM: dts: rockchip: add rk3288 mipi_dsi nodes Chris Zhong
2015-10-31 12:56   ` Chris Zhong
2015-10-31 12:56   ` Chris Zhong
2015-10-31 12:56 ` [PATCH v2 10/13] of: add vendor prefix for boe Chris Zhong
2015-11-03  2:24   ` Rob Herring
2015-11-03  2:24     ` Rob Herring
2015-10-31 12:56 ` [PATCH v2 11/13] drm/panel: simple: Add support for BOE TV080WUM-NL0 Chris Zhong
2015-10-31 12:56 ` [PATCH v2 12/13] drm/panel: simple: Add simple panel device tree binding Chris Zhong
2015-10-31 12:56   ` Chris Zhong
2015-11-02 15:06   ` Rob Herring
2015-11-02 15:06     ` Rob Herring
2015-11-03  0:28     ` Chris Zhong
2015-11-03  0:28       ` Chris Zhong
2015-10-31 12:56 ` [PATCH v2 13/13] ARM: dts: rockchip: add support mipi panel tv080wum-nl0 for rk3288-evb Chris Zhong
2015-10-31 12:56   ` Chris Zhong

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.