Lines Matching +full:vbus +full:- +full:divider
1 // SPDX-License-Identifier: GPL-2.0+
37 /* Set GPA1 pin 1 to HI - enable XCL205 output */ in set_board_type()
43 /* Set GPC1 pin 2 to IN - check XCL205 output state */ in set_board_type()
47 /* XCL205 - needs some latch time */ in set_board_type()
50 /* Check GPC1 pin2 - LED supplied by XCL205 - X2 only */ in set_board_type()
52 gd->board_type = ODROID_TYPE_X2; in set_board_type()
54 gd->board_type = ODROID_TYPE_U3; in set_board_type()
69 return board_type[gd->board_type]; in get_board_type()
120 clrsetbits_le32(&clk->src_cpu, clr_src_cpu, set); in board_clock_init()
123 while (readl(&clk->mux_stat_cpu) & MUX_STAT_CPU_CHANGING) in board_clock_init()
130 clrsetbits_le32(&clk->apll_con0, clr_pll_con0, set); in board_clock_init()
133 while (!(readl(&clk->apll_con0) & PLL_LOCKED_BIT)) in board_clock_init()
139 clrsetbits_le32(&clk->src_cpu, clr_src_cpu, set); in board_clock_init()
142 while (readl(&clk->mux_stat_cpu) & MUX_STAT_CPU_CHANGING) in board_clock_init()
163 clrsetbits_le32(&clk->div_cpu0, clr, set); in board_clock_init()
165 /* Wait for divider ready status */ in board_clock_init()
166 while (readl(&clk->div_stat_cpu0) & DIV_STAT_CPU0_CHANGING) in board_clock_init()
178 clrsetbits_le32(&clk->div_cpu1, clr, set); in board_clock_init()
180 /* Wait for divider ready status */ in board_clock_init()
181 while (readl(&clk->div_stat_cpu1) & DIV_STAT_CPU1_CHANGING) in board_clock_init()
204 clrsetbits_le32(&clk->src_dmc, clr_src_dmc, set); in board_clock_init()
207 while (readl(&clk->mux_stat_dmc) & MUX_STAT_DMC_CHANGING) in board_clock_init()
213 clrsetbits_le32(&clk->mpll_con0, clr_pll_con0, set); in board_clock_init()
216 while (!(readl(&clk->mpll_con0) & PLL_LOCKED_BIT)) in board_clock_init()
224 clrsetbits_le32(&clk->src_dmc, clr_src_dmc, set); in board_clock_init()
227 while (readl(&clk->mux_stat_dmc) & MUX_STAT_DMC_CHANGING) in board_clock_init()
248 clrsetbits_le32(&clk->div_dmc0, clr, set); in board_clock_init()
250 /* Wait for divider ready status */ in board_clock_init()
251 while (readl(&clk->div_stat_dmc0) & DIV_STAT_DMC0_CHANGING) in board_clock_init()
271 clrsetbits_le32(&clk->div_dmc1, clr, set); in board_clock_init()
273 /* Wait for divider ready status */ in board_clock_init()
274 while (readl(&clk->div_stat_dmc1) & DIV_STAT_DMC1_CHANGING) in board_clock_init()
291 clrsetbits_le32(&clk->src_peril0, clr, set); in board_clock_init()
297 * For MOUTuart0-4: 800MHz in board_clock_init()
304 clrsetbits_le32(&clk->div_peril0, clr, set); in board_clock_init()
306 while (readl(&clk->div_stat_peril0) & DIV_STAT_PERIL0_CHANGING) in board_clock_init()
313 * For MOUTmmc0-3 = 800 MHz (MPLL) in board_clock_init()
323 clrsetbits_le32(&clk->div_fsys1, clr, set); in board_clock_init()
325 /* Wait for divider ready status */ in board_clock_init()
326 while (readl(&clk->div_stat_fsys1) & DIV_STAT_FSYS1_CHANGING) in board_clock_init()
333 * For MOUTmmc0-3 = 800 MHz (MPLL) in board_clock_init()
343 clrsetbits_le32(&clk->div_fsys2, clr, set); in board_clock_init()
345 /* Wait for divider ready status */ in board_clock_init()
346 while (readl(&clk->div_stat_fsys2) & DIV_STAT_FSYS2_CHANGING) in board_clock_init()
359 clrsetbits_le32(&clk->div_fsys3, clr, set); in board_clock_init()
361 /* Wait for divider ready status */ in board_clock_init()
362 while (readl(&clk->div_stat_fsys3) & DIV_STAT_FSYS3_CHANGING) in board_clock_init()
384 /* OTG Vbus output (Odroid U3+) */ in board_gpio_init()
385 gpio_request(EXYNOS4X12_GPIO_L20, "OTG Vbus"); in board_gpio_init()
477 * gpx3-0 chooses primary (low) or secondary (high) reference clock in set_usb3503_ref_clk()
478 * frequencies table. The choice of clock is done through hard-wired in set_usb3503_ref_clk()
483 if (gd->board_type == ODROID_TYPE_U3) in set_usb3503_ref_clk()
508 debug("LAN9730 - Turning power buck 8 OFF and ON.\n"); in board_usb_init()
518 pr_err("Regulator %s enable setting error: %d\n", dev->name, ret); in board_usb_init()
524 pr_err("Regulator %s value setting error: %d\n", dev->name, ret); in board_usb_init()
530 pr_err("Regulator %s value setting error: %d\n", dev->name, ret); in board_usb_init()