Lines Matching full:mck
288 * @bus_hz: The rate of @mck in Hz. This forms the basis for MMC bus
291 * @mck: The peripheral bus clock hooked up to the MMC controller.
369 struct clk *mck; member
2474 host->mck = devm_clk_get(dev, "mci_clk"); in atmci_probe()
2475 if (IS_ERR(host->mck)) in atmci_probe()
2476 return PTR_ERR(host->mck); in atmci_probe()
2482 ret = clk_prepare_enable(host->mck); in atmci_probe()
2487 host->bus_hz = clk_get_rate(host->mck); in atmci_probe()
2495 clk_disable_unprepare(host->mck); in atmci_probe()
2503 clk_disable_unprepare(host->mck); in atmci_probe()
2583 clk_disable_unprepare(host->mck); in atmci_probe()
2622 clk_disable_unprepare(host->mck); in atmci_remove()
2633 clk_disable_unprepare(host->mck); in atmci_runtime_suspend()
2646 return clk_prepare_enable(host->mck); in atmci_runtime_resume()