diff options
author | Archit Taneja <architt@codeaurora.org> | 2018-01-17 09:05:25 +0300 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2018-02-20 18:41:20 +0300 |
commit | 973e02db35c2c4036693e32ed6f250eefd8c322c (patch) | |
tree | 87b487f88a958d527ac69e4e8d724dce0dfc28de /drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | |
parent | 6d5796af7136046835621ffe680eb15ce88500b6 (diff) | |
download | linux-973e02db35c2c4036693e32ed6f250eefd8c322c.tar.xz |
drm/msm/dsi: Add skeleton 10nm PHY/PLL code
Add new 10nm DSI PLL/PHY files that will be used on SDM845.
Just populate empty pll/phy funcs for now. These will be filled up
later.
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 c8bfaa780651..8e9d5c255820 100644 --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c @@ -395,6 +395,10 @@ static const struct of_device_id dsi_phy_dt_match[] = { { .compatible = "qcom,dsi-phy-14nm", .data = &dsi_phy_14nm_cfgs }, #endif +#ifdef CONFIG_DRM_MSM_DSI_10NM_PHY + { .compatible = "qcom,dsi-phy-10nm", + .data = &dsi_phy_10nm_cfgs }, +#endif {} }; |