blob: d542699ab001540862f08b471e61970d8d6f24c2 [file] [log] [blame]
Ilya Yanokcd3a8462012-11-06 13:48:27 +00001/*
2 * This file configures the internal USB PHY in AM35X.
3 *
4 * Copyright (C) 2012 Ilya Yanok <ilya.yanok@gmail.com>
5 *
6 * Based on omap_phy_internal.c code from Linux by
7 * Hema HK <hemahk@ti.com>
8 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Ilya Yanokcd3a8462012-11-06 13:48:27 +000010 */
11
12#include <common.h>
13#include <asm/io.h>
14#include <asm/arch/am35x_def.h>
15
Mugunthan V N9224f612016-11-17 14:38:10 +053016void am35x_musb_reset(struct udevice *dev)
Ilya Yanokcd3a8462012-11-06 13:48:27 +000017{
18 /* Reset the musb interface */
19 clrsetbits_le32(&am35x_scm_general_regs->ip_sw_reset,
20 0, USBOTGSS_SW_RST);
21 clrsetbits_le32(&am35x_scm_general_regs->ip_sw_reset,
22 USBOTGSS_SW_RST, 0);
23}
24
Mugunthan V N9224f612016-11-17 14:38:10 +053025void am35x_musb_phy_power(struct udevice *dev, u8 on)
Ilya Yanokcd3a8462012-11-06 13:48:27 +000026{
27 unsigned long start = get_timer(0);
28
29 if (on) {
30 /*
31 * Start the on-chip PHY and its PLL.
32 */
33 clrsetbits_le32(&am35x_scm_general_regs->devconf2,
34 CONF2_RESET | CONF2_PHYPWRDN | CONF2_OTGPWRDN,
35 CONF2_PHY_PLLON);
36
37 debug("Waiting for PHY clock good...\n");
38 while (!(readl(&am35x_scm_general_regs->devconf2)
39 & CONF2_PHYCLKGD)) {
40
41 if (get_timer(start) > CONFIG_SYS_HZ / 10) {
42 printf("musb PHY clock good timed out\n");
43 break;
44 }
45 }
46 } else {
47 /*
48 * Power down the on-chip PHY.
49 */
50 clrsetbits_le32(&am35x_scm_general_regs->devconf2,
51 CONF2_PHY_PLLON,
52 CONF2_PHYPWRDN | CONF2_OTGPWRDN);
53 }
54}
55
Mugunthan V N9224f612016-11-17 14:38:10 +053056void am35x_musb_clear_irq(struct udevice *dev)
Ilya Yanokcd3a8462012-11-06 13:48:27 +000057{
58 clrsetbits_le32(&am35x_scm_general_regs->lvl_intr_clr,
59 0, USBOTGSS_INT_CLR);
60 readl(&am35x_scm_general_regs->lvl_intr_clr);
61}