Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 2 | /*- |
| 3 | * Copyright (c) 2007-2008, Juniper Networks, Inc. |
| 4 | * All rights reserved. |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 8 | #include <dm.h> |
Vincent Palatin | 8d45289 | 2012-12-13 22:58:27 -0800 | [diff] [blame] | 9 | #include <errno.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 10 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 12 | #include <pci.h> |
| 13 | #include <usb.h> |
Alexey Brodkin | 1ddd540 | 2017-06-05 10:19:26 +0300 | [diff] [blame] | 14 | #include <asm/io.h> |
Jean-Christophe PLAGNIOL-VILLARD | 8f6bcf4 | 2009-04-03 12:46:58 +0200 | [diff] [blame] | 15 | |
| 16 | #include "ehci.h" |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 17 | |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 18 | /* Information about a USB port */ |
| 19 | struct ehci_pci_priv { |
| 20 | struct ehci_ctrl ehci; |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 21 | struct phy phy; |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 22 | }; |
| 23 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 24 | #if CONFIG_IS_ENABLED(DM_USB) |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 25 | static int ehci_pci_init(struct udevice *dev, struct ehci_hccr **ret_hccr, |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 26 | struct ehci_hcor **ret_hcor) |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 27 | { |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 28 | struct ehci_pci_priv *priv = dev_get_priv(dev); |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 29 | struct ehci_hccr *hccr; |
| 30 | struct ehci_hcor *hcor; |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 31 | int ret; |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 32 | u32 cmd; |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 33 | |
Patrice Chotard | 343ff75 | 2022-09-06 08:15:28 +0200 | [diff] [blame] | 34 | ret = generic_setup_phy(dev, &priv->phy, 0); |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 35 | if (ret) |
| 36 | return ret; |
| 37 | |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 38 | hccr = (struct ehci_hccr *)dm_pci_map_bar(dev, |
Andrew Scull | 6520c82 | 2022-04-21 16:11:13 +0000 | [diff] [blame] | 39 | PCI_BASE_ADDRESS_0, 0, 0, PCI_REGION_TYPE, |
| 40 | PCI_REGION_MEM); |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 41 | hcor = (struct ehci_hcor *)((uintptr_t) hccr + |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 42 | HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
| 43 | |
Simon Glass | 26a2b2d | 2016-09-25 21:33:21 -0600 | [diff] [blame] | 44 | debug("EHCI-PCI init hccr %#lx and hcor %#lx hc_length %d\n", |
| 45 | (ulong)hccr, (ulong)hcor, |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 46 | (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 47 | |
| 48 | *ret_hccr = hccr; |
| 49 | *ret_hcor = hcor; |
| 50 | |
| 51 | /* enable busmaster */ |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 52 | dm_pci_read_config32(dev, PCI_COMMAND, &cmd); |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 53 | cmd |= PCI_COMMAND_MASTER; |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 54 | dm_pci_write_config32(dev, PCI_COMMAND, cmd); |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 55 | |
| 56 | return 0; |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 57 | } |
| 58 | |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 59 | #else |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 60 | |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 61 | #ifdef CONFIG_PCI_EHCI_DEVICE |
| 62 | static struct pci_device_id ehci_pci_ids[] = { |
| 63 | /* Please add supported PCI EHCI controller ids here */ |
Trübenbach, Ralf | d2c9188 | 2011-03-31 16:46:47 +0000 | [diff] [blame] | 64 | {0x1033, 0x00E0}, /* NEC */ |
Wolfgang Denk | e936628 | 2011-04-05 12:24:20 +0200 | [diff] [blame] | 65 | {0x10B9, 0x5239}, /* ULI1575 PCI EHCI module ids */ |
Trübenbach, Ralf | d2c9188 | 2011-03-31 16:46:47 +0000 | [diff] [blame] | 66 | {0x12D8, 0x400F}, /* Pericom */ |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 67 | {0, 0} |
| 68 | }; |
| 69 | #endif |
| 70 | |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 71 | static void ehci_pci_legacy_init(pci_dev_t pdev, struct ehci_hccr **ret_hccr, |
| 72 | struct ehci_hcor **ret_hcor) |
| 73 | { |
| 74 | struct ehci_hccr *hccr; |
| 75 | struct ehci_hcor *hcor; |
| 76 | u32 cmd; |
| 77 | |
| 78 | hccr = (struct ehci_hccr *)pci_map_bar(pdev, |
| 79 | PCI_BASE_ADDRESS_0, PCI_REGION_MEM); |
| 80 | hcor = (struct ehci_hcor *)((uintptr_t) hccr + |
| 81 | HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
| 82 | |
| 83 | debug("EHCI-PCI init hccr 0x%x and hcor 0x%x hc_length %d\n", |
| 84 | (u32)hccr, (u32)hcor, |
| 85 | (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase))); |
| 86 | |
| 87 | *ret_hccr = hccr; |
| 88 | *ret_hcor = hcor; |
| 89 | |
| 90 | /* enable busmaster */ |
| 91 | pci_read_config_dword(pdev, PCI_COMMAND, &cmd); |
| 92 | cmd |= PCI_COMMAND_MASTER; |
| 93 | pci_write_config_dword(pdev, PCI_COMMAND, cmd); |
| 94 | } |
| 95 | |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 96 | /* |
| 97 | * Create the appropriate control structures to manage |
| 98 | * a new EHCI host controller. |
| 99 | */ |
Troy Kisky | 7d6bbb9 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 100 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 101 | struct ehci_hccr **ret_hccr, struct ehci_hcor **ret_hcor) |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 102 | { |
| 103 | pci_dev_t pdev; |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 104 | |
Vincent Palatin | 8d45289 | 2012-12-13 22:58:27 -0800 | [diff] [blame] | 105 | #ifdef CONFIG_PCI_EHCI_DEVICE |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 106 | pdev = pci_find_devices(ehci_pci_ids, CONFIG_PCI_EHCI_DEVICE); |
Vincent Palatin | 8d45289 | 2012-12-13 22:58:27 -0800 | [diff] [blame] | 107 | #else |
Simon Glass | eeb1d28 | 2015-01-27 22:13:30 -0700 | [diff] [blame] | 108 | pdev = pci_find_class(PCI_CLASS_SERIAL_USB_EHCI, index); |
Vincent Palatin | 8d45289 | 2012-12-13 22:58:27 -0800 | [diff] [blame] | 109 | #endif |
| 110 | if (pdev < 0) { |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 111 | printf("EHCI host controller not found\n"); |
| 112 | return -1; |
| 113 | } |
Simon Glass | 261095b | 2015-11-29 13:18:07 -0700 | [diff] [blame] | 114 | ehci_pci_legacy_init(pdev, ret_hccr, ret_hcor); |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 115 | |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | /* |
| 120 | * Destroy the appropriate control structures corresponding |
| 121 | * the the EHCI host controller. |
| 122 | */ |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 123 | int ehci_hcd_stop(int index) |
Michael Trimarchi | ebc8300 | 2008-12-31 10:32:41 +0100 | [diff] [blame] | 124 | { |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 125 | return 0; |
| 126 | } |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 127 | #endif /* !CONFIG_IS_ENABLED(DM_USB) */ |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 128 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 129 | #if CONFIG_IS_ENABLED(DM_USB) |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 130 | static int ehci_pci_probe(struct udevice *dev) |
| 131 | { |
| 132 | struct ehci_hccr *hccr; |
| 133 | struct ehci_hcor *hcor; |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 134 | int ret; |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 135 | |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 136 | ret = ehci_pci_init(dev, &hccr, &hcor); |
| 137 | if (ret) |
| 138 | return ret; |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 139 | |
| 140 | return ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST); |
| 141 | } |
| 142 | |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 143 | static int ehci_pci_remove(struct udevice *dev) |
| 144 | { |
| 145 | struct ehci_pci_priv *priv = dev_get_priv(dev); |
| 146 | int ret; |
| 147 | |
| 148 | ret = ehci_deregister(dev); |
| 149 | if (ret) |
| 150 | return ret; |
| 151 | |
Patrice Chotard | 343ff75 | 2022-09-06 08:15:28 +0200 | [diff] [blame] | 152 | return generic_shutdown_phy(&priv->phy); |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 153 | } |
| 154 | |
Simon Glass | 9470c72 | 2016-01-17 16:11:07 -0700 | [diff] [blame] | 155 | static const struct udevice_id ehci_pci_ids[] = { |
| 156 | { .compatible = "ehci-pci" }, |
| 157 | { } |
| 158 | }; |
| 159 | |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 160 | U_BOOT_DRIVER(ehci_pci) = { |
| 161 | .name = "ehci_pci", |
| 162 | .id = UCLASS_USB, |
| 163 | .probe = ehci_pci_probe, |
Marek Vasut | 8f58c78 | 2018-08-07 12:27:10 +0200 | [diff] [blame] | 164 | .remove = ehci_pci_remove, |
Simon Glass | 9470c72 | 2016-01-17 16:11:07 -0700 | [diff] [blame] | 165 | .of_match = ehci_pci_ids, |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 166 | .ops = &ehci_usb_ops, |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 167 | .plat_auto = sizeof(struct usb_plat), |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 168 | .priv_auto = sizeof(struct ehci_pci_priv), |
Simon Glass | d0065dd | 2015-07-06 16:47:53 -0600 | [diff] [blame] | 169 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 170 | }; |
| 171 | |
| 172 | static struct pci_device_id ehci_pci_supported[] = { |
| 173 | { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_EHCI, ~0) }, |
| 174 | {}, |
| 175 | }; |
| 176 | |
| 177 | U_BOOT_PCI_DEVICE(ehci_pci, ehci_pci_supported); |
| 178 | |
Sven Schwermer | 8a3cb9f1 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 179 | #endif /* CONFIG_IS_ENABLED(DM_USB) */ |