Home
last modified time | relevance | path

Searched refs:msm_host (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/drivers/gpu/drm/msm/dsi/
Ddsi_host.c37 static int dsi_populate_dsc_params(struct msm_dsi_host *msm_host, struct drm_dsc_config *dsc);
198 static inline u32 dsi_read(struct msm_dsi_host *msm_host, u32 reg) in dsi_read() argument
200 return msm_readl(msm_host->ctrl_base + reg); in dsi_read()
202 static inline void dsi_write(struct msm_dsi_host *msm_host, u32 reg, u32 data) in dsi_write() argument
204 msm_writel(data, msm_host->ctrl_base + reg); in dsi_write()
208 struct msm_dsi_host *msm_host) in dsi_get_config() argument
211 struct device *dev = &msm_host->pdev->dev; in dsi_get_config()
220 ahb_clk = msm_clk_get(msm_host->pdev, "iface"); in dsi_get_config()
234 ret = dsi_get_version(msm_host->ctrl_base, &major, &minor); in dsi_get_config()
257 int dsi_clk_init_v2(struct msm_dsi_host *msm_host) in dsi_clk_init_v2() argument
[all …]
Ddsi.h115 int dsi_link_clk_set_rate_6g(struct msm_dsi_host *msm_host);
116 int dsi_link_clk_set_rate_v2(struct msm_dsi_host *msm_host);
117 int dsi_link_clk_enable_6g(struct msm_dsi_host *msm_host);
118 int dsi_link_clk_enable_v2(struct msm_dsi_host *msm_host);
119 void dsi_link_clk_disable_6g(struct msm_dsi_host *msm_host);
120 void dsi_link_clk_disable_v2(struct msm_dsi_host *msm_host);
121 int dsi_tx_buf_alloc_6g(struct msm_dsi_host *msm_host, int size);
122 int dsi_tx_buf_alloc_v2(struct msm_dsi_host *msm_host, int size);
123 void *dsi_tx_buf_get_6g(struct msm_dsi_host *msm_host);
124 void *dsi_tx_buf_get_v2(struct msm_dsi_host *msm_host);
[all …]
Ddsi_cfg.h44 int (*link_clk_set_rate)(struct msm_dsi_host *msm_host);
45 int (*link_clk_enable)(struct msm_dsi_host *msm_host);
46 void (*link_clk_disable)(struct msm_dsi_host *msm_host);
47 int (*clk_init_ver)(struct msm_dsi_host *msm_host);
48 int (*tx_buf_alloc)(struct msm_dsi_host *msm_host, int size);
49 void* (*tx_buf_get)(struct msm_dsi_host *msm_host);
50 void (*tx_buf_put)(struct msm_dsi_host *msm_host);
51 int (*dma_base_get)(struct msm_dsi_host *msm_host, uint64_t *iova);
52 int (*calc_clk_rate)(struct msm_dsi_host *msm_host, bool is_bonded_dsi);
/linux-6.1.9/drivers/mmc/host/
Dsdhci-msm.c138 #define msm_host_readl(msm_host, host, offset) \ argument
139 msm_host->var_ops->msm_readl_relaxed(host, offset)
141 #define msm_host_writel(msm_host, val, host, offset) \ argument
142 msm_host->var_ops->msm_writel_relaxed(val, host, offset)
294 struct sdhci_msm_host *msm_host = sdhci_pltfm_priv(pltfm_host); in sdhci_priv_msm_offset() local
296 return msm_host->offset; in sdhci_priv_msm_offset()
307 struct sdhci_msm_host *msm_host = sdhci_pltfm_priv(pltfm_host); in sdhci_msm_mci_variant_readl_relaxed() local
309 return readl_relaxed(msm_host->core_mem + offset); in sdhci_msm_mci_variant_readl_relaxed()
322 struct sdhci_msm_host *msm_host = sdhci_pltfm_priv(pltfm_host); in sdhci_msm_mci_variant_writel_relaxed() local
324 writel_relaxed(val, msm_host->core_mem + offset); in sdhci_msm_mci_variant_writel_relaxed()
[all …]