disp: msm: dsi: snapshot of dsi from 4.14 to 4.19

This change is a snapshot of dsi files taken of 4.14
as of commit 764f7c2 (Merge remote-tracking branch
'quic/dev/msm-4.14-display' into msm-4.14)

Change-Id: I8361a844c35a4450f7800964a8da2741676fd6c7
Signed-off-by: Satya Rama Aditya Pinapala <psraditya30@codeaurora.org>
This commit is contained in:
Satya Rama Aditya Pinapala
2019-05-23 09:48:41 -07:00
committed by Gerrit - the friendly Code Review server
parent 91f4bcda9d
commit edef6ae040
21 changed files with 632 additions and 171 deletions

View File

@@ -40,11 +40,13 @@ enum dsi_phy_version {
* enum dsi_phy_hw_features - features supported by DSI PHY hardware
* @DSI_PHY_DPHY: Supports DPHY
* @DSI_PHY_CPHY: Supports CPHY
* @DSI_PHY_SPLIT_LINK: Supports Split Link
* @DSI_PHY_MAX_FEATURES:
*/
enum dsi_phy_hw_features {
DSI_PHY_DPHY,
DSI_PHY_CPHY,
DSI_PHY_SPLIT_LINK,
DSI_PHY_MAX_FEATURES
};
@@ -303,6 +305,13 @@ struct dsi_phy_hw_ops {
*/
void (*reset_clk_en_sel)(struct dsi_phy_hw *phy);
/**
* set_continuous_clk() - Set continuous clock
* @phy: Pointer to DSI PHY hardware object
* @enable: Bool to control continuous clock request.
*/
void (*set_continuous_clk)(struct dsi_phy_hw *phy, bool enable);
void *timing_ops;
struct phy_ulps_config_ops ulps_ops;
struct phy_dyn_refresh_ops dyn_refresh_ops;