Home
last modified time | relevance | path

Searched refs:dwmci_readl (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/u-boot/drivers/mmc/
H A Ddw_mmc.c95 ctrl = dwmci_readl(host, DWMCI_CTRL); in dwmci_wait_reset()
152 ctrl = dwmci_readl(host, DWMCI_CTRL); in dwmci_prepare_data()
156 ctrl = dwmci_readl(host, DWMCI_BMOD); in dwmci_prepare_data()
172 drto_clks = dwmci_readl(host, DWMCI_TMOUT) >> 8; in dwmci_get_drto()
173 drto_div = (dwmci_readl(host, DWMCI_CLKDIV) & 0xff) * 2; in dwmci_get_drto()
208 cto_clks = dwmci_readl(host, DWMCI_TMOUT) & 0xff; in dwmci_get_cto()
209 cto_div = (dwmci_readl(host, DWMCI_CLKDIV) & 0xff) * 2; in dwmci_get_cto()
245 mask = dwmci_readl(host, DWMCI_RINTSTS); in dwmci_data_transfer()
254 status = dwmci_readl(host, DWMCI_CMD); in dwmci_data_transfer()
261 ctrl = dwmci_readl(host, DWMCI_BMOD); in dwmci_data_transfer()
[all …]
H A Dexynos_dw_mmc.c66 clk_div = ((dwmci_readl(host, DWMCI_CLKSEL) >> DWMCI_DIVRATIO_BIT) in exynos_dwmci_get_clk()
/OK3568_Linux_fs/u-boot/include/
H A Ddwmmc.h232 static inline u32 dwmci_readl(struct dwmci_host *host, int reg) in dwmci_readl() function