diff options
author | Archit Taneja <architt@codeaurora.org> | 2015-10-14 02:30:34 -0400 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2015-12-14 10:40:06 -0500 |
commit | 225380b3e9b4b82d19de5a161aee169dbc57f353 (patch) | |
tree | 3b5ff612b900c16a0b5bebf56e4aa83df5c4aa4f /drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | |
parent | e6c4c78c10d87a99f298a2455a4aaede5743bb4f (diff) |
drm/msm/dsi: Add support for 28nm PHY on 8960
DSI PHY on MSM8960 and APQ8064 is a 28nm PHY that's different from the
supported 28nm LP PHY found in newer chips.
Add support for the new PHY.
Signed-off-by: Archit Taneja <architt@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/msm/dsi/phy/dsi_phy.c')
-rw-r--r-- | drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c index f1f955f571fa..91a95fb04a4a 100644 --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | |||
@@ -277,6 +277,10 @@ static const struct of_device_id dsi_phy_dt_match[] = { | |||
277 | { .compatible = "qcom,dsi-phy-20nm", | 277 | { .compatible = "qcom,dsi-phy-20nm", |
278 | .data = &dsi_phy_20nm_cfgs }, | 278 | .data = &dsi_phy_20nm_cfgs }, |
279 | #endif | 279 | #endif |
280 | #ifdef CONFIG_DRM_MSM_DSI_28NM_8960_PHY | ||
281 | { .compatible = "qcom,dsi-phy-28nm-8960", | ||
282 | .data = &dsi_phy_28nm_8960_cfgs }, | ||
283 | #endif | ||
280 | {} | 284 | {} |
281 | }; | 285 | }; |
282 | 286 | ||