Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 1 | /* |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 2 | * (C) Copyright 2009, 2011 Freescale Semiconductor, Inc. |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 3 | * |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 4 | * (C) Copyright 2008, Excito Elektronik i Sk=E5ne AB |
| 5 | * |
| 6 | * Author: Tor Krill tor@excito.com |
| 7 | * |
| 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. |
| 12 | * |
| 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. |
| 17 | * |
| 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, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include <common.h> |
| 25 | #include <pci.h> |
| 26 | #include <usb.h> |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 27 | #include <asm/io.h> |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 28 | #include <usb/ehci-fsl.h> |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 29 | #include <hwconfig.h> |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 30 | |
Jean-Christophe PLAGNIOL-VILLARD | 2731b9a | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 31 | #include "ehci.h" |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 32 | |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 33 | /* Check USB PHY clock valid */ |
| 34 | static int usb_phy_clk_valid(struct usb_ehci *ehci) |
| 35 | { |
| 36 | if (!((in_be32(&ehci->control) & PHY_CLK_VALID) || |
| 37 | in_be32(&ehci->prictrl))) { |
| 38 | printf("USB PHY clock invalid!\n"); |
| 39 | return 0; |
| 40 | } else { |
| 41 | return 1; |
| 42 | } |
| 43 | } |
| 44 | |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 45 | /* |
| 46 | * Create the appropriate control structures to manage |
| 47 | * a new EHCI host controller. |
| 48 | * |
| 49 | * Excerpts from linux ehci fsl driver. |
| 50 | */ |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 51 | int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 52 | { |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 53 | struct usb_ehci *ehci; |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 54 | const char *phy_type = NULL; |
| 55 | size_t len; |
Kumar Gala | dd22f7c | 2011-11-09 10:04:15 -0600 | [diff] [blame] | 56 | #ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY |
| 57 | char usb_phy[5]; |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 58 | |
| 59 | usb_phy[0] = '\0'; |
Kumar Gala | dd22f7c | 2011-11-09 10:04:15 -0600 | [diff] [blame] | 60 | #endif |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 61 | |
Damien Dusha | 29c6fbe | 2010-10-14 15:27:06 +0200 | [diff] [blame] | 62 | ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB_ADDR; |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 63 | *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength); |
| 64 | *hcor = (struct ehci_hcor *)((uint32_t) *hccr + |
| 65 | HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 66 | |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 67 | /* Set to Host mode */ |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 68 | setbits_le32(&ehci->usbmode, CM_HOST); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 69 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 70 | out_be32(&ehci->snoop1, SNOOP_SIZE_2GB); |
| 71 | out_be32(&ehci->snoop2, 0x80000000 | SNOOP_SIZE_2GB); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 72 | |
| 73 | /* Init phy */ |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 74 | if (hwconfig_sub("usb1", "phy_type")) |
| 75 | phy_type = hwconfig_subarg("usb1", "phy_type", &len); |
Vivek Mahajan | 4ef0101 | 2009-05-25 17:23:16 +0530 | [diff] [blame] | 76 | else |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 77 | phy_type = getenv("usb_phy_type"); |
| 78 | |
| 79 | if (!phy_type) { |
| 80 | #ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY |
| 81 | /* if none specified assume internal UTMI */ |
| 82 | strcpy(usb_phy, "utmi"); |
| 83 | phy_type = usb_phy; |
| 84 | #else |
| 85 | printf("WARNING: USB phy type not defined !!\n"); |
| 86 | return -1; |
| 87 | #endif |
| 88 | } |
| 89 | |
| 90 | if (!strcmp(phy_type, "utmi")) { |
| 91 | #if defined(CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY) |
| 92 | setbits_be32(&ehci->control, PHY_CLK_SEL_UTMI); |
| 93 | setbits_be32(&ehci->control, UTMI_PHY_EN); |
| 94 | udelay(1000); /* delay required for PHY Clk to appear */ |
| 95 | #endif |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 96 | out_le32(&(*hcor)->or_portsc[0], PORT_PTS_UTMI); |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 97 | setbits_be32(&ehci->control, USB_EN); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 98 | } else { |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 99 | setbits_be32(&ehci->control, PHY_CLK_SEL_ULPI); |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 100 | clrsetbits_be32(&ehci->control, UTMI_PHY_EN, USB_EN); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 101 | udelay(1000); /* delay required for PHY Clk to appear */ |
Shengzhou Liu | 047cea3 | 2012-10-22 13:18:24 +0800 | [diff] [blame] | 102 | if (!usb_phy_clk_valid(ehci)) |
| 103 | return -EINVAL; |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 104 | out_le32(&(*hcor)->or_portsc[0], PORT_PTS_ULPI); |
Ramneek Mehresh | 1b719e6 | 2011-03-23 15:20:43 +0530 | [diff] [blame] | 105 | } |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 106 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 107 | out_be32(&ehci->prictrl, 0x0000000c); |
| 108 | out_be32(&ehci->age_cnt_limit, 0x00000040); |
| 109 | out_be32(&ehci->sictrl, 0x00000001); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 110 | |
Vivek Mahajan | 0806615 | 2009-06-19 17:56:00 +0530 | [diff] [blame] | 111 | in_le32(&ehci->usbmode); |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 112 | |
| 113 | return 0; |
| 114 | } |
| 115 | |
| 116 | /* |
| 117 | * Destroy the appropriate control structures corresponding |
| 118 | * the the EHCI host controller. |
| 119 | */ |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 120 | int ehci_hcd_stop(int index) |
Michael Trimarchi | 6b92487 | 2008-11-28 13:22:09 +0100 | [diff] [blame] | 121 | { |
| 122 | return 0; |
| 123 | } |