2 * (C) Copyright 2009 Freescale Semiconductor, Inc.
4 * (C) Copyright 2008, Excito Elektronik i Sk=E5ne AB
6 * Author: Tor Krill tor@excito.com
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 #include <usb/ehci-fsl.h>
31 #include "ehci-core.h"
34 * Create the appropriate control structures to manage
35 * a new EHCI host controller.
37 * Excerpts from linux ehci fsl driver.
39 int ehci_hcd_init(void)
41 struct usb_ehci *ehci;
43 ehci = (struct usb_ehci *)CONFIG_SYS_MPC8xxx_USB_ADDR;
44 hccr = (struct ehci_hccr *)((uint32_t)ehci->caplength);
45 hcor = (struct ehci_hcor *)((uint32_t) hccr +
46 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
48 /* Set to Host mode */
49 setbits_le32((void *)ehci->usbmode, CM_HOST);
51 out_be32((void *)ehci->snoop1, SNOOP_SIZE_2GB);
52 out_be32((void *)ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB);
55 if (!strcmp(getenv("usb_phy_type"), "utmi"))
56 out_le32(&(hcor->or_portsc[0]), PORT_PTS_UTMI);
58 out_le32(&(hcor->or_portsc[0]), PORT_PTS_ULPI);
60 /* Enable interface. */
61 setbits_be32((void *)ehci->control, USB_EN);
63 out_be32((void *)ehci->prictrl, 0x0000000c);
64 out_be32((void *)ehci->age_cnt_limit, 0x00000040);
65 out_be32((void *)ehci->sictrl, 0x00000001);
67 in_le32((void *)ehci->usbmode);
73 * Destroy the appropriate control structures corresponding
74 * the the EHCI host controller.
76 int ehci_hcd_stop(void)