HomeSort by: relevance | last modified time | path
    Searched defs:sc_clk_ciu (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/arch/arm/altera/
cycv_dwcmmc.c 60 struct clk *sc_clk_ciu; member in struct:cycv_dwcmmc_softc
106 esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu");
107 if (esc->sc_clk_ciu == NULL) {
117 error = clk_enable(esc->sc_clk_ciu);
133 sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu);
  /src/sys/arch/arm/samsung/
exynos_dwcmmc.c 64 struct clk *sc_clk_ciu; member in struct:exynos_dwcmmc_softc
116 esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu");
117 if (esc->sc_clk_ciu == NULL) {
127 error = clk_enable(esc->sc_clk_ciu);
147 sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu) / (esc->sc_ciu_div + 1);
204 error = clk_set_rate(esc->sc_clk_ciu, 1000 * rate * ciu_div);
211 sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu) / ciu_div;
  /src/sys/dev/fdt/
dwcmmc_fdt.c 84 struct clk *sc_clk_ciu; member in struct:dwcmmc_fdt_softc
131 esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu");
132 if (esc->sc_clk_ciu == NULL) {
142 error = clk_enable(esc->sc_clk_ciu);
243 error = clk_set_rate(esc->sc_clk_ciu, 1000 * rate * ciu_div);
250 sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu);

Completed in 13 milliseconds