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