Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1207200
| From | Hai Li <hali@codeaurora.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 0/5] drm/msm/dsi: Split different types of PHY drivers |
| Date | 2015-08-13 23:50 +0200 |
| Message-ID | <pX8xP-7ln-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
The DSI PHY driver currently includes the implementation of all PHY types. To support more types in the future, this patch series is moving each PHY code into a separate file and making them compile independent. Some clean up patches for DSI PHY are also included. Hai Li (5): drm/msm/dsi: Update generated header file for DSI PHY drm/msm/dsi: Specify bitmask to set source PLL drm/msm/dsi: Return void from msm_dsi_phy_disable() drm/msm/dsi: Split PHY drivers to separate files drm/msm/dsi: Make each PHY type compilation independent drivers/gpu/drm/msm/Kconfig | 14 + drivers/gpu/drm/msm/Makefile | 13 +- drivers/gpu/drm/msm/dsi/dsi.h | 2 +- drivers/gpu/drm/msm/dsi/dsi.xml.h | 5 + drivers/gpu/drm/msm/dsi/dsi_phy.c | 756 ----------------------------- drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | 452 +++++++++++++++++ drivers/gpu/drm/msm/dsi/phy/dsi_phy.h | 89 ++++ drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c | 150 ++++++ drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm.c | 166 +++++++ drivers/gpu/drm/msm/dsi/pll/dsi_pll.h | 8 + 10 files changed, 894 insertions(+), 761 deletions(-) delete mode 100644 drivers/gpu/drm/msm/dsi/dsi_phy.c create mode 100644 drivers/gpu/drm/msm/dsi/phy/dsi_phy.c create mode 100644 drivers/gpu/drm/msm/dsi/phy/dsi_phy.h create mode 100644 drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c create mode 100644 drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm.c -- The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 0/5] drm/msm/dsi: Split different types of PHY drivers Hai Li <hali@codeaurora.org> - 2015-08-13 23:50 +0200
csiph-web