blob: 7dd5c33c13dfed461a4e4d989d65b0e7f2c09200 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Michael Trimarchi8fea2912008-12-31 10:32:41 +01002/*-
3 * Copyright (c) 2007-2008, Juniper Networks, Inc.
4 * All rights reserved.
Michael Trimarchi8fea2912008-12-31 10:32:41 +01005 */
6
7#include <common.h>
Simon Glass2b53b072015-07-06 16:47:53 -06008#include <dm.h>
Vincent Palatin7c38e902012-12-13 22:58:27 -08009#include <errno.h>
Simon Glass691d7192020-05-10 11:40:02 -060010#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Michael Trimarchi8fea2912008-12-31 10:32:41 +010012#include <pci.h>
13#include <usb.h>
Alexey Brodkin2cb7b902017-06-05 10:19:26 +030014#include <asm/io.h>
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020015
16#include "ehci.h"
Michael Trimarchi8fea2912008-12-31 10:32:41 +010017
Simon Glass2b53b072015-07-06 16:47:53 -060018/* Information about a USB port */
19struct ehci_pci_priv {
20 struct ehci_ctrl ehci;
Marek Vasut1335e772018-08-07 12:27:10 +020021 struct phy phy;
Simon Glass2b53b072015-07-06 16:47:53 -060022};
23
Sven Schwermerfd09c202018-11-21 08:43:56 +010024#if CONFIG_IS_ENABLED(DM_USB)
Marek Vasut1335e772018-08-07 12:27:10 +020025static int ehci_pci_init(struct udevice *dev, struct ehci_hccr **ret_hccr,
Simon Glass09c5c162015-11-29 13:18:07 -070026 struct ehci_hcor **ret_hcor)
Simon Glass2b53b072015-07-06 16:47:53 -060027{
Marek Vasut1335e772018-08-07 12:27:10 +020028 struct ehci_pci_priv *priv = dev_get_priv(dev);
Simon Glass2b53b072015-07-06 16:47:53 -060029 struct ehci_hccr *hccr;
30 struct ehci_hcor *hcor;
Marek Vasut1335e772018-08-07 12:27:10 +020031 int ret;
Simon Glass09c5c162015-11-29 13:18:07 -070032 u32 cmd;
Simon Glass2b53b072015-07-06 16:47:53 -060033
Marek Vasut1335e772018-08-07 12:27:10 +020034 ret = ehci_setup_phy(dev, &priv->phy, 0);
35 if (ret)
36 return ret;
37
Simon Glass09c5c162015-11-29 13:18:07 -070038 hccr = (struct ehci_hccr *)dm_pci_map_bar(dev,
Simon Glass2b53b072015-07-06 16:47:53 -060039 PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
Simon Glass09c5c162015-11-29 13:18:07 -070040 hcor = (struct ehci_hcor *)((uintptr_t) hccr +
Simon Glass2b53b072015-07-06 16:47:53 -060041 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
42
Simon Glassb11e2982016-09-25 21:33:21 -060043 debug("EHCI-PCI init hccr %#lx and hcor %#lx hc_length %d\n",
44 (ulong)hccr, (ulong)hcor,
Simon Glass09c5c162015-11-29 13:18:07 -070045 (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
Simon Glass2b53b072015-07-06 16:47:53 -060046
47 *ret_hccr = hccr;
48 *ret_hcor = hcor;
49
50 /* enable busmaster */
Simon Glass09c5c162015-11-29 13:18:07 -070051 dm_pci_read_config32(dev, PCI_COMMAND, &cmd);
Simon Glass2b53b072015-07-06 16:47:53 -060052 cmd |= PCI_COMMAND_MASTER;
Simon Glass09c5c162015-11-29 13:18:07 -070053 dm_pci_write_config32(dev, PCI_COMMAND, cmd);
Marek Vasut1335e772018-08-07 12:27:10 +020054
55 return 0;
Simon Glass2b53b072015-07-06 16:47:53 -060056}
57
Simon Glass09c5c162015-11-29 13:18:07 -070058#else
Simon Glass2b53b072015-07-06 16:47:53 -060059
Michael Trimarchi8fea2912008-12-31 10:32:41 +010060#ifdef CONFIG_PCI_EHCI_DEVICE
61static struct pci_device_id ehci_pci_ids[] = {
62 /* Please add supported PCI EHCI controller ids here */
Trübenbach, Ralf0a5f7e12011-03-31 16:46:47 +000063 {0x1033, 0x00E0}, /* NEC */
Wolfgang Denk4db2fa72011-04-05 12:24:20 +020064 {0x10B9, 0x5239}, /* ULI1575 PCI EHCI module ids */
Trübenbach, Ralf0a5f7e12011-03-31 16:46:47 +000065 {0x12D8, 0x400F}, /* Pericom */
Michael Trimarchi8fea2912008-12-31 10:32:41 +010066 {0, 0}
67};
68#endif
69
Simon Glass09c5c162015-11-29 13:18:07 -070070static void ehci_pci_legacy_init(pci_dev_t pdev, struct ehci_hccr **ret_hccr,
71 struct ehci_hcor **ret_hcor)
72{
73 struct ehci_hccr *hccr;
74 struct ehci_hcor *hcor;
75 u32 cmd;
76
77 hccr = (struct ehci_hccr *)pci_map_bar(pdev,
78 PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
79 hcor = (struct ehci_hcor *)((uintptr_t) hccr +
80 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
81
82 debug("EHCI-PCI init hccr 0x%x and hcor 0x%x hc_length %d\n",
83 (u32)hccr, (u32)hcor,
84 (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
85
86 *ret_hccr = hccr;
87 *ret_hcor = hcor;
88
89 /* enable busmaster */
90 pci_read_config_dword(pdev, PCI_COMMAND, &cmd);
91 cmd |= PCI_COMMAND_MASTER;
92 pci_write_config_dword(pdev, PCI_COMMAND, cmd);
93}
94
Michael Trimarchi8fea2912008-12-31 10:32:41 +010095/*
96 * Create the appropriate control structures to manage
97 * a new EHCI host controller.
98 */
Troy Kisky127efc42013-10-10 15:27:57 -070099int ehci_hcd_init(int index, enum usb_init_type init,
100 struct ehci_hccr **ret_hccr, struct ehci_hcor **ret_hcor)
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100101{
102 pci_dev_t pdev;
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100103
Vincent Palatin7c38e902012-12-13 22:58:27 -0800104#ifdef CONFIG_PCI_EHCI_DEVICE
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100105 pdev = pci_find_devices(ehci_pci_ids, CONFIG_PCI_EHCI_DEVICE);
Vincent Palatin7c38e902012-12-13 22:58:27 -0800106#else
Simon Glass4fd46722015-01-27 22:13:30 -0700107 pdev = pci_find_class(PCI_CLASS_SERIAL_USB_EHCI, index);
Vincent Palatin7c38e902012-12-13 22:58:27 -0800108#endif
109 if (pdev < 0) {
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100110 printf("EHCI host controller not found\n");
111 return -1;
112 }
Simon Glass09c5c162015-11-29 13:18:07 -0700113 ehci_pci_legacy_init(pdev, ret_hccr, ret_hcor);
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100114
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100115 return 0;
116}
117
118/*
119 * Destroy the appropriate control structures corresponding
120 * the the EHCI host controller.
121 */
Lucas Stach676ae062012-09-26 00:14:35 +0200122int ehci_hcd_stop(int index)
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100123{
124 return 0;
125}
Sven Schwermerfd09c202018-11-21 08:43:56 +0100126#endif /* !CONFIG_IS_ENABLED(DM_USB) */
Simon Glass2b53b072015-07-06 16:47:53 -0600127
Sven Schwermerfd09c202018-11-21 08:43:56 +0100128#if CONFIG_IS_ENABLED(DM_USB)
Simon Glass2b53b072015-07-06 16:47:53 -0600129static int ehci_pci_probe(struct udevice *dev)
130{
131 struct ehci_hccr *hccr;
132 struct ehci_hcor *hcor;
Marek Vasut1335e772018-08-07 12:27:10 +0200133 int ret;
Simon Glass2b53b072015-07-06 16:47:53 -0600134
Marek Vasut1335e772018-08-07 12:27:10 +0200135 ret = ehci_pci_init(dev, &hccr, &hcor);
136 if (ret)
137 return ret;
Simon Glass2b53b072015-07-06 16:47:53 -0600138
139 return ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST);
140}
141
Marek Vasut1335e772018-08-07 12:27:10 +0200142static int ehci_pci_remove(struct udevice *dev)
143{
144 struct ehci_pci_priv *priv = dev_get_priv(dev);
145 int ret;
146
147 ret = ehci_deregister(dev);
148 if (ret)
149 return ret;
150
151 return ehci_shutdown_phy(dev, &priv->phy);
152}
153
Simon Glass907eed22016-01-17 16:11:07 -0700154static const struct udevice_id ehci_pci_ids[] = {
155 { .compatible = "ehci-pci" },
156 { }
157};
158
Simon Glass2b53b072015-07-06 16:47:53 -0600159U_BOOT_DRIVER(ehci_pci) = {
160 .name = "ehci_pci",
161 .id = UCLASS_USB,
162 .probe = ehci_pci_probe,
Marek Vasut1335e772018-08-07 12:27:10 +0200163 .remove = ehci_pci_remove,
Simon Glass907eed22016-01-17 16:11:07 -0700164 .of_match = ehci_pci_ids,
Simon Glass2b53b072015-07-06 16:47:53 -0600165 .ops = &ehci_usb_ops,
166 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
167 .priv_auto_alloc_size = sizeof(struct ehci_pci_priv),
168 .flags = DM_FLAG_ALLOC_PRIV_DMA,
169};
170
171static struct pci_device_id ehci_pci_supported[] = {
172 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_EHCI, ~0) },
173 {},
174};
175
176U_BOOT_PCI_DEVICE(ehci_pci, ehci_pci_supported);
177
Sven Schwermerfd09c202018-11-21 08:43:56 +0100178#endif /* CONFIG_IS_ENABLED(DM_USB) */