blob: 45e5d6a5bde7b458638edfc2992620b7fd3a33ef [file] [log] [blame]
Michael Trimarchie30a3362008-11-28 13:22:09 +01001/*
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +05302 * (C) Copyright 2009, 2011 Freescale Semiconductor, Inc.
Vivek Mahajan288f7fb2009-05-25 17:23:16 +05303 *
Michael Trimarchie30a3362008-11-28 13:22:09 +01004 * (C) Copyright 2008, Excito Elektronik i Sk=E5ne AB
5 *
6 * Author: Tor Krill tor@excito.com
7 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Michael Trimarchie30a3362008-11-28 13:22:09 +01009 */
10
11#include <common.h>
12#include <pci.h>
13#include <usb.h>
Michael Trimarchie30a3362008-11-28 13:22:09 +010014#include <asm/io.h>
Vivek Mahajan288f7fb2009-05-25 17:23:16 +053015#include <usb/ehci-fsl.h>
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053016#include <hwconfig.h>
Michael Trimarchie30a3362008-11-28 13:22:09 +010017
Jean-Christophe PLAGNIOL-VILLARD8f6bcf42009-04-03 12:46:58 +020018#include "ehci.h"
Michael Trimarchie30a3362008-11-28 13:22:09 +010019
Shengzhou Liud407e1f2012-10-22 13:18:24 +080020/* Check USB PHY clock valid */
21static int usb_phy_clk_valid(struct usb_ehci *ehci)
22{
23 if (!((in_be32(&ehci->control) & PHY_CLK_VALID) ||
24 in_be32(&ehci->prictrl))) {
25 printf("USB PHY clock invalid!\n");
26 return 0;
27 } else {
28 return 1;
29 }
30}
31
Michael Trimarchie30a3362008-11-28 13:22:09 +010032/*
33 * Create the appropriate control structures to manage
34 * a new EHCI host controller.
35 *
36 * Excerpts from linux ehci fsl driver.
37 */
Troy Kisky7d6bbb92013-10-10 15:27:57 -070038int ehci_hcd_init(int index, enum usb_init_type init,
39 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Michael Trimarchie30a3362008-11-28 13:22:09 +010040{
ramneek mehresh16b08062013-09-12 16:35:49 +053041 struct usb_ehci *ehci = NULL;
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053042 const char *phy_type = NULL;
43 size_t len;
Kumar Gala7b83c352011-11-09 10:04:15 -060044#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
45 char usb_phy[5];
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053046
47 usb_phy[0] = '\0';
Kumar Gala7b83c352011-11-09 10:04:15 -060048#endif
Michael Trimarchie30a3362008-11-28 13:22:09 +010049
ramneek mehresh16b08062013-09-12 16:35:49 +053050 switch (index) {
51 case 0:
52 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB1_ADDR;
53 break;
54 case 1:
55 ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB2_ADDR;
56 break;
57 default:
58 printf("ERROR: wrong controller index!!\n");
59 break;
60 };
61
Lucas Stach3494a4c2012-09-26 00:14:35 +020062 *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength);
63 *hcor = (struct ehci_hcor *)((uint32_t) *hccr +
64 HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Michael Trimarchie30a3362008-11-28 13:22:09 +010065
Michael Trimarchie30a3362008-11-28 13:22:09 +010066 /* Set to Host mode */
Vivek Mahajan32c52202009-06-19 17:56:00 +053067 setbits_le32(&ehci->usbmode, CM_HOST);
Michael Trimarchie30a3362008-11-28 13:22:09 +010068
Vivek Mahajan32c52202009-06-19 17:56:00 +053069 out_be32(&ehci->snoop1, SNOOP_SIZE_2GB);
70 out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB);
Michael Trimarchie30a3362008-11-28 13:22:09 +010071
72 /* Init phy */
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053073 if (hwconfig_sub("usb1", "phy_type"))
74 phy_type = hwconfig_subarg("usb1", "phy_type", &len);
Vivek Mahajan288f7fb2009-05-25 17:23:16 +053075 else
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053076 phy_type = getenv("usb_phy_type");
77
78 if (!phy_type) {
79#ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
80 /* if none specified assume internal UTMI */
81 strcpy(usb_phy, "utmi");
82 phy_type = usb_phy;
83#else
84 printf("WARNING: USB phy type not defined !!\n");
85 return -1;
86#endif
87 }
88
89 if (!strcmp(phy_type, "utmi")) {
90#if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY)
91 setbits_be32(&ehci->control, PHY_CLK_SEL_UTMI);
92 setbits_be32(&ehci->control, UTMI_PHY_EN);
93 udelay(1000); /* delay required for PHY Clk to appear */
94#endif
Lucas Stach3494a4c2012-09-26 00:14:35 +020095 out_le32(&(*hcor)->or_portsc[0], PORT_PTS_UTMI);
Shengzhou Liud407e1f2012-10-22 13:18:24 +080096 setbits_be32(&ehci->control, USB_EN);
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053097 } else {
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +053098 setbits_be32(&ehci->control, PHY_CLK_SEL_ULPI);
Shengzhou Liud407e1f2012-10-22 13:18:24 +080099 clrsetbits_be32(&ehci->control, UTMI_PHY_EN, USB_EN);
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +0530100 udelay(1000); /* delay required for PHY Clk to appear */
Shengzhou Liud407e1f2012-10-22 13:18:24 +0800101 if (!usb_phy_clk_valid(ehci))
102 return -EINVAL;
Lucas Stach3494a4c2012-09-26 00:14:35 +0200103 out_le32(&(*hcor)->or_portsc[0], PORT_PTS_ULPI);
Ramneek Mehresh3fb68ee2011-03-23 15:20:43 +0530104 }
Michael Trimarchie30a3362008-11-28 13:22:09 +0100105
Vivek Mahajan32c52202009-06-19 17:56:00 +0530106 out_be32(&ehci->prictrl, 0x0000000c);
107 out_be32(&ehci->age_cnt_limit, 0x00000040);
108 out_be32(&ehci->sictrl, 0x00000001);
Michael Trimarchie30a3362008-11-28 13:22:09 +0100109
Vivek Mahajan32c52202009-06-19 17:56:00 +0530110 in_le32(&ehci->usbmode);
Michael Trimarchie30a3362008-11-28 13:22:09 +0100111
112 return 0;
113}
114
115/*
116 * Destroy the appropriate control structures corresponding
117 * the the EHCI host controller.
118 */
Lucas Stach3494a4c2012-09-26 00:14:35 +0200119int ehci_hcd_stop(int index)
Michael Trimarchie30a3362008-11-28 13:22:09 +0100120{
121 return 0;
122}