dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/13] drm/msm/hdmi: HDMI support on MSM8996
@ 2016-02-15  6:53 Archit Taneja
  2016-02-15  6:53 ` [PATCH v2 01/13] drm/msm/dsi: Create separate Makefile/Kconfig Archit Taneja
                   ` (12 more replies)
  0 siblings, 13 replies; 20+ messages in thread
From: Archit Taneja @ 2016-02-15  6:53 UTC (permalink / raw)
  To: robdclark; +Cc: linux-arm-msm, dri-devel, Archit Taneja

HDMI on MSM8996 has a TX block that is compatible with the older
versions apart from some minor changes. The HDMI PHY and PLL on MSM8996
are new.

The series refactors the code such that there is a separate HDMI PHY
driver, similar to what we already have for DSI. This makes it easier
to integrate new PHYs like the one in msm8996.

Changes in v2:
- Fix copy/paste error in dt-binding patch.
- Update commit messages to point out that HDMI functionality will
  break if we pull in the commits that adds the PHY driver, but not
  the commit that updates PHY/PLL register offsets.
- Change the order of patches such that bisectability issues are
  reduced to a minimum.

Archit Taneja (13):
  drm/msm/dsi: Create separate Makefile/Kconfig
  drm/msm/hdmi: Create separate Makefile/Kconfig
  drm/msm/edp: Create separate Makefile/Kconfig
  drm/msm/hdmi: Clean up connector gpio usage
  drm/msm/hdmi: Fix connector detect when there is no HPD gpio
  drm/msm/hdmi: Create a separate HDMI PHY driver
  drm/msm/hdmi: Manage HDMI PLL through PHY driver
  drm/msm/hdmi: Make HDMI core get its PHY
  drm/msm/hdmi: Convert PHY files according to new design
  drm/msm/hdmi: Update generated headers to split PHY/PLL offsets
  drm/msm/hdmi: Update generated headers for HDMI 8996 PHY
  drm/msm/hdmi: HDMI 8996 PHY/PLL support
  dt-bindings: msm/hdmi: Add HDMI PHY bindings

 .../devicetree/bindings/display/msm/hdmi.txt       |  39 +-
 drivers/gpu/drm/msm/Kconfig                        |  42 +-
 drivers/gpu/drm/msm/Makefile                       |  39 +-
 drivers/gpu/drm/msm/dsi/Kconfig                    |  40 ++
 drivers/gpu/drm/msm/dsi/Makefile                   |  13 +
 drivers/gpu/drm/msm/edp/Kconfig                    |   7 +
 drivers/gpu/drm/msm/edp/Makefile                   |   3 +
 drivers/gpu/drm/msm/hdmi/Kconfig                   |   7 +
 drivers/gpu/drm/msm/hdmi/Makefile                  |   6 +
 drivers/gpu/drm/msm/hdmi/hdmi.c                    |  98 ++-
 drivers/gpu/drm/msm/hdmi/hdmi.h                    |  78 ++-
 drivers/gpu/drm/msm/hdmi/hdmi.xml.h                | 657 +++++++++++++++---
 drivers/gpu/drm/msm/hdmi/hdmi_bridge.c             |   8 +-
 drivers/gpu/drm/msm/hdmi/hdmi_connector.c          | 138 ++--
 drivers/gpu/drm/msm/hdmi/hdmi_phy.c                | 228 ++++++
 drivers/gpu/drm/msm/hdmi/hdmi_phy_8960.c           | 503 +-------------
 drivers/gpu/drm/msm/hdmi/hdmi_phy_8996.c           | 766 +++++++++++++++++++++
 drivers/gpu/drm/msm/hdmi/hdmi_phy_8x60.c           | 196 ++----
 drivers/gpu/drm/msm/hdmi/hdmi_phy_8x74.c           |  94 +--
 drivers/gpu/drm/msm/hdmi/hdmi_pll_8960.c           | 461 +++++++++++++
 drivers/gpu/drm/msm/msm_drv.h                      |  33 +
 21 files changed, 2495 insertions(+), 961 deletions(-)
 create mode 100644 drivers/gpu/drm/msm/dsi/Kconfig
 create mode 100644 drivers/gpu/drm/msm/dsi/Makefile
 create mode 100644 drivers/gpu/drm/msm/edp/Kconfig
 create mode 100644 drivers/gpu/drm/msm/edp/Makefile
 create mode 100644 drivers/gpu/drm/msm/hdmi/Kconfig
 create mode 100644 drivers/gpu/drm/msm/hdmi/Makefile
 create mode 100644 drivers/gpu/drm/msm/hdmi/hdmi_phy.c
 create mode 100644 drivers/gpu/drm/msm/hdmi/hdmi_phy_8996.c
 create mode 100644 drivers/gpu/drm/msm/hdmi/hdmi_pll_8960.c

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

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

end of thread, other threads:[~2016-02-25  5:40 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-15  6:53 [PATCH v2 00/13] drm/msm/hdmi: HDMI support on MSM8996 Archit Taneja
2016-02-15  6:53 ` [PATCH v2 01/13] drm/msm/dsi: Create separate Makefile/Kconfig Archit Taneja
2016-02-15  6:53 ` [PATCH v2 02/13] drm/msm/hdmi: " Archit Taneja
2016-02-15  6:53 ` [PATCH v2 03/13] drm/msm/edp: " Archit Taneja
2016-02-15  6:53 ` [PATCH v2 04/13] drm/msm/hdmi: Clean up connector gpio usage Archit Taneja
2016-02-15  6:53 ` [PATCH v2 05/13] drm/msm/hdmi: Fix connector detect when there is no HPD gpio Archit Taneja
2016-02-15  6:53 ` [PATCH v2 06/13] drm/msm/hdmi: Create a separate HDMI PHY driver Archit Taneja
2016-02-15  6:53 ` [PATCH v2 07/13] drm/msm/hdmi: Manage HDMI PLL through " Archit Taneja
2016-02-15  6:53 ` [PATCH v2 08/13] drm/msm/hdmi: Make HDMI core get its PHY Archit Taneja
2016-02-15  6:53 ` [PATCH v2 09/13] drm/msm/hdmi: Convert PHY files according to new design Archit Taneja
2016-02-15  6:53 ` [PATCH v2 10/13] drm/msm/hdmi: Update generated headers to split PHY/PLL offsets Archit Taneja
2016-02-15  6:53 ` [PATCH v2 11/13] drm/msm/hdmi: Update generated headers for HDMI 8996 PHY Archit Taneja
2016-02-15  6:53 ` [PATCH v2 12/13] drm/msm/hdmi: HDMI 8996 PHY/PLL support Archit Taneja
2016-02-15  6:53 ` [PATCH v2 13/13] dt-bindings: msm/hdmi: Add HDMI PHY bindings Archit Taneja
2016-02-22  2:54   ` Rob Herring
2016-02-22 11:07     ` Archit Taneja
2016-02-22 19:27       ` Rob Herring
2016-02-23  9:36         ` Archit Taneja
2016-02-24 12:00           ` Kishon Vijay Abraham I
2016-02-25  5:40             ` Archit Taneja

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).