All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/13] drm/mediatek: support hdmi output for mt2701 and mt7623
@ 2018-09-05  8:31 ` Bibby Hsieh
  0 siblings, 0 replies; 87+ messages in thread
From: Bibby Hsieh @ 2018-09-05  8:31 UTC (permalink / raw)
  To: David Airlie, Matthias Brugger, Daniel Vetter, dri-devel, linux-mediatek
  Cc: Yingjoe Chen, Cawa Cheng, Daniel Kurtz, Bibby Hsieh,
	Philipp Zabel, YT Shen, Thierry Reding, CK Hu, Mao Huang,
	linux-arm-kernel, linux-kernel, Sascha Hauer

In order to support HDMI on mt2701,
we have to make some modifications.
1) Add the HDMI driver.
2) Add the DPI driver.
3) Add a mechanism that config output component by dts.

Changes since v1:
 - Separate some patches to independent patch.
 - add DISP_REG_CONFIG_DSI_SEL and DISP_REG_CONFIG_DPI_SEL
   configuration in the condition of BLS&DPI0 connection.

Changes since v0:
 - Correct some typos in commit message.
 - Fixup the build warning (tmp variable didn't be initialized)

Bibby Hsieh (3):
  drm/mediatek: implement connection from BLS to DPI0
  drm/mediatek: add a error return value when clock driver has been
    prepared
  drm/mediatek: config component output by device node port

chunhui dai (10):
  drm/mediatek: add refcount for DPI power on/off
  drm/mediatek: move hardware register to node data
  drm/mediatek: adjust EDGE to match clock and data
  drm/mediatek: add clock factor for different IC
  drm/mediatek: dpi use new API for finding bridge
  drm/mediatek: add dpi driver for mt2701 and mt7623
  drm/mediatek: separae hdmi phy to different file
  drm/mediatek: register hdmi codec more earlier
  drm/mediatek: add support for SPDIF audio in HDMI
  drm/mediatek: add hdmi driver for MT2701 and MT7623

 drivers/gpu/drm/mediatek/Makefile              |  16 +-
 drivers/gpu/drm/mediatek/mtk_dpi.c             | 123 +++++++---
 drivers/gpu/drm/mediatek/mtk_dpi_regs.h        |   2 +-
 drivers/gpu/drm/mediatek/mtk_drm_ddp.c         |  19 +-
 drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.c    |   2 +-
 drivers/gpu/drm/mediatek/mtk_drm_drv.c         |  39 +++-
 drivers/gpu/drm/mediatek/mtk_drm_drv.h         |   4 +-
 drivers/gpu/drm/mediatek/mtk_hdmi.c            |  51 ++--
 drivers/gpu/drm/mediatek/mtk_hdmi.h            |  27 +++
 drivers/gpu/drm/mediatek/mtk_hdmi_phy.c        | 157 +++++++++++++
 drivers/gpu/drm/mediatek/mtk_mt2701_hdmi_phy.c | 307 +++++++++++++++++++++++++
 drivers/gpu/drm/mediatek/mtk_mt8173_hdmi_phy.c | 129 +----------
 12 files changed, 690 insertions(+), 186 deletions(-)
 create mode 100644 drivers/gpu/drm/mediatek/mtk_hdmi_phy.c
 create mode 100644 drivers/gpu/drm/mediatek/mtk_mt2701_hdmi_phy.c

-- 
2.12.5.2.gbdf23ab


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

end of thread, other threads:[~2018-09-21  3:02 UTC | newest]

Thread overview: 87+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-05  8:31 [PATCH v2 00/13] drm/mediatek: support hdmi output for mt2701 and mt7623 Bibby Hsieh
2018-09-05  8:31 ` Bibby Hsieh
2018-09-05  8:31 ` Bibby Hsieh
2018-09-05  8:31 ` [PATCH v2 01/13] drm/mediatek: add refcount for DPI power on/off Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  9:30   ` CK Hu
2018-09-05  9:30     ` CK Hu
2018-09-05  9:30     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 02/13] drm/mediatek: move hardware register to node data Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  9:50   ` CK Hu
2018-09-05  9:50     ` CK Hu
2018-09-05  9:50     ` CK Hu
2018-09-05 10:32   ` CK Hu
2018-09-05 10:32     ` CK Hu
2018-09-05 10:32     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 03/13] drm/mediatek: adjust EDGE to match clock and data Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05 10:47   ` CK Hu
2018-09-05 10:47     ` CK Hu
2018-09-05 10:47     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 04/13] drm/mediatek: add clock factor for different IC Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-06  2:11   ` CK Hu
2018-09-06  2:11     ` CK Hu
2018-09-06  2:11     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 05/13] drm/mediatek: dpi use new API for finding bridge Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-06  1:49   ` CK Hu
2018-09-06  1:49     ` CK Hu
2018-09-06  1:49     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 06/13] drm/mediatek: add dpi driver for mt2701 and mt7623 Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-06  2:18   ` CK Hu
2018-09-06  2:18     ` CK Hu
2018-09-06  2:18     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 07/13] drm/mediatek: separae hdmi phy to different file Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-07  1:15   ` CK Hu
2018-09-07  1:15     ` CK Hu
2018-09-07  1:15     ` CK Hu
2018-09-10  1:44   ` CK Hu
2018-09-10  1:44     ` CK Hu
2018-09-10  1:44     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 08/13] drm/mediatek: register hdmi codec more earlier Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-06  5:36   ` CK Hu
2018-09-06  5:36     ` CK Hu
2018-09-06  5:36     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 09/13] drm/mediatek: add support for SPDIF audio in HDMI Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-06  3:37   ` CK Hu
2018-09-06  3:37     ` CK Hu
2018-09-06  3:37     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 10/13] drm/mediatek: add hdmi driver for MT2701 and MT7623 Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-07  2:28   ` CK Hu
2018-09-07  2:28     ` CK Hu
2018-09-07  2:28     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 11/13] drm/mediatek: implement connection from BLS to DPI0 Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-06  5:42   ` CK Hu
2018-09-06  5:42     ` CK Hu
2018-09-06  5:42     ` CK Hu
2018-09-05  8:31 ` [PATCH v2 12/13] drm/mediatek: add a error return value when clock driver has been prepared Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31 ` [PATCH v2 13/13] drm/mediatek: config component output by device node port Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-05  8:31   ` Bibby Hsieh
2018-09-06  6:03   ` CK Hu
2018-09-06  6:03     ` CK Hu
2018-09-06  6:03     ` CK Hu
2018-09-21  3:02     ` Bibby Hsieh
2018-09-21  3:02       ` Bibby Hsieh
2018-09-21  3:02       ` Bibby Hsieh

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.