blob: 1121acc0058997667fb5949217d3f753b82e8ad3 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ilya Yanokcd3a8462012-11-06 13:48:27 +00002/*
3 * This file configures the internal USB PHY in AM35X.
4 *
5 * Copyright (C) 2012 Ilya Yanok <ilya.yanok@gmail.com>
6 *
7 * Based on omap_phy_internal.c code from Linux by
8 * Hema HK <hemahk@ti.com>
Ilya Yanokcd3a8462012-11-06 13:48:27 +00009 */
10
11#include <common.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <dm/device.h>
Ilya Yanokcd3a8462012-11-06 13:48:27 +000014#include <asm/io.h>
15#include <asm/arch/am35x_def.h>
16
Mugunthan V N9224f612016-11-17 14:38:10 +053017void am35x_musb_reset(struct udevice *dev)
Ilya Yanokcd3a8462012-11-06 13:48:27 +000018{
19 /* Reset the musb interface */
20 clrsetbits_le32(&am35x_scm_general_regs->ip_sw_reset,
21 0, USBOTGSS_SW_RST);
22 clrsetbits_le32(&am35x_scm_general_regs->ip_sw_reset,
23 USBOTGSS_SW_RST, 0);
24}
25
Mugunthan V N9224f612016-11-17 14:38:10 +053026void am35x_musb_phy_power(struct udevice *dev, u8 on)
Ilya Yanokcd3a8462012-11-06 13:48:27 +000027{
28 unsigned long start = get_timer(0);
29
30 if (on) {
31 /*
32 * Start the on-chip PHY and its PLL.
33 */
34 clrsetbits_le32(&am35x_scm_general_regs->devconf2,
35 CONF2_RESET | CONF2_PHYPWRDN | CONF2_OTGPWRDN,
36 CONF2_PHY_PLLON);
37
38 debug("Waiting for PHY clock good...\n");
39 while (!(readl(&am35x_scm_general_regs->devconf2)
40 & CONF2_PHYCLKGD)) {
41
42 if (get_timer(start) > CONFIG_SYS_HZ / 10) {
43 printf("musb PHY clock good timed out\n");
44 break;
45 }
46 }
47 } else {
48 /*
49 * Power down the on-chip PHY.
50 */
51 clrsetbits_le32(&am35x_scm_general_regs->devconf2,
52 CONF2_PHY_PLLON,
53 CONF2_PHYPWRDN | CONF2_OTGPWRDN);
54 }
55}
56
Mugunthan V N9224f612016-11-17 14:38:10 +053057void am35x_musb_clear_irq(struct udevice *dev)
Ilya Yanokcd3a8462012-11-06 13:48:27 +000058{
59 clrsetbits_le32(&am35x_scm_general_regs->lvl_intr_clr,
60 0, USBOTGSS_INT_CLR);
61 readl(&am35x_scm_general_regs->lvl_intr_clr);
62}