Searched refs:msm_host (Results 1 – 5 of 5) sorted by relevance
/kernel/linux/linux-5.10/drivers/gpu/drm/msm/dsi/ |
D | dsi_host.c | 190 static inline u32 dsi_read(struct msm_dsi_host *msm_host, u32 reg) in dsi_read() argument 192 return msm_readl(msm_host->ctrl_base + reg); in dsi_read() 194 static inline void dsi_write(struct msm_dsi_host *msm_host, u32 reg, u32 data) in dsi_write() argument 196 msm_writel(data, msm_host->ctrl_base + reg); in dsi_write() 199 static int dsi_host_regulator_enable(struct msm_dsi_host *msm_host); 200 static void dsi_host_regulator_disable(struct msm_dsi_host *msm_host); 203 struct msm_dsi_host *msm_host) in dsi_get_config() argument 206 struct device *dev = &msm_host->pdev->dev; in dsi_get_config() 218 ahb_clk = msm_clk_get(msm_host->pdev, "iface"); in dsi_get_config() 238 ret = dsi_get_version(msm_host->ctrl_base, &major, &minor); in dsi_get_config() [all …]
|
D | dsi_cfg.h | 42 int (*link_clk_set_rate)(struct msm_dsi_host *msm_host); 43 int (*link_clk_enable)(struct msm_dsi_host *msm_host); 44 void (*link_clk_disable)(struct msm_dsi_host *msm_host); 45 int (*clk_init_ver)(struct msm_dsi_host *msm_host); 46 int (*tx_buf_alloc)(struct msm_dsi_host *msm_host, int size); 47 void* (*tx_buf_get)(struct msm_dsi_host *msm_host); 48 void (*tx_buf_put)(struct msm_dsi_host *msm_host); 49 int (*dma_base_get)(struct msm_dsi_host *msm_host, uint64_t *iova); 50 int (*calc_clk_rate)(struct msm_dsi_host *msm_host, bool is_dual_dsi);
|
D | dsi.h | 183 int dsi_link_clk_set_rate_6g(struct msm_dsi_host *msm_host); 184 int dsi_link_clk_set_rate_v2(struct msm_dsi_host *msm_host); 185 int dsi_link_clk_enable_6g(struct msm_dsi_host *msm_host); 186 int dsi_link_clk_enable_v2(struct msm_dsi_host *msm_host); 187 void dsi_link_clk_disable_6g(struct msm_dsi_host *msm_host); 188 void dsi_link_clk_disable_v2(struct msm_dsi_host *msm_host); 189 int dsi_tx_buf_alloc_6g(struct msm_dsi_host *msm_host, int size); 190 int dsi_tx_buf_alloc_v2(struct msm_dsi_host *msm_host, int size); 191 void *dsi_tx_buf_get_6g(struct msm_dsi_host *msm_host); 192 void *dsi_tx_buf_get_v2(struct msm_dsi_host *msm_host); [all …]
|
/kernel/linux/linux-5.10/drivers/mmc/host/ |
D | sdhci-msm.c | 137 #define msm_host_readl(msm_host, host, offset) \ argument 138 msm_host->var_ops->msm_readl_relaxed(host, offset) 140 #define msm_host_writel(msm_host, val, host, offset) \ argument 141 msm_host->var_ops->msm_writel_relaxed(val, host, offset) 293 struct sdhci_msm_host *msm_host = sdhci_pltfm_priv(pltfm_host); in sdhci_priv_msm_offset() local 295 return msm_host->offset; in sdhci_priv_msm_offset() 306 struct sdhci_msm_host *msm_host = sdhci_pltfm_priv(pltfm_host); in sdhci_msm_mci_variant_readl_relaxed() local 308 return readl_relaxed(msm_host->core_mem + offset); in sdhci_msm_mci_variant_readl_relaxed() 321 struct sdhci_msm_host *msm_host = sdhci_pltfm_priv(pltfm_host); in sdhci_msm_mci_variant_writel_relaxed() local 323 writel_relaxed(val, msm_host->core_mem + offset); in sdhci_msm_mci_variant_writel_relaxed() [all …]
|
/kernel/linux/patches/linux-5.10/imx8mm_patch/patches/drivers/ |
D | 0030_linux_drivers_pci_misc_nvmem_of_mtd_mmc.patch | 10400 #define msm_host_readl(msm_host, host, offset) \ 10401 msm_host->var_ops->msm_readl_relaxed(host, offset) 10403 #define msm_host_writel(msm_host, val, host, offset) \ 10404 msm_host->var_ops->msm_writel_relaxed(val, host, offset) 10489 - if (msm_host->dll_config) 10490 - writel_relaxed(msm_host->dll_config, 10493 if (msm_host->use_14lpp_dll_reset) { 10501 - if (!msm_host->dll_config) 10505 if (msm_host->use_14lpp_dll_reset && 10506 !IS_ERR_OR_NULL(msm_host->xo_clk)) { [all …]
|