blob: 6150f3d88852ef9c99c72354ae4e8047a66525af [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>
Michael Trimarchi8fea2912008-12-31 10:32:41 +010010#include <pci.h>
11#include <usb.h>
Alexey Brodkin2cb7b902017-06-05 10:19:26 +030012#include <asm/io.h>
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020013
14#include "ehci.h"
Michael Trimarchi8fea2912008-12-31 10:32:41 +010015
Simon Glass2b53b072015-07-06 16:47:53 -060016/* Information about a USB port */
17struct ehci_pci_priv {
18 struct ehci_ctrl ehci;
Marek Vasut1335e772018-08-07 12:27:10 +020019 struct phy phy;
Simon Glass2b53b072015-07-06 16:47:53 -060020};
21
Simon Glass09c5c162015-11-29 13:18:07 -070022#ifdef CONFIG_DM_USB
Marek Vasut1335e772018-08-07 12:27:10 +020023static int ehci_pci_init(struct udevice *dev, struct ehci_hccr **ret_hccr,
Simon Glass09c5c162015-11-29 13:18:07 -070024 struct ehci_hcor **ret_hcor)
Simon Glass2b53b072015-07-06 16:47:53 -060025{
Marek Vasut1335e772018-08-07 12:27:10 +020026 struct ehci_pci_priv *priv = dev_get_priv(dev);
Simon Glass2b53b072015-07-06 16:47:53 -060027 struct ehci_hccr *hccr;
28 struct ehci_hcor *hcor;
Marek Vasut1335e772018-08-07 12:27:10 +020029 int ret;
Simon Glass09c5c162015-11-29 13:18:07 -070030 u32 cmd;
Simon Glass2b53b072015-07-06 16:47:53 -060031
Marek Vasut1335e772018-08-07 12:27:10 +020032 ret = ehci_setup_phy(dev, &priv->phy, 0);
33 if (ret)
34 return ret;
35
Simon Glass09c5c162015-11-29 13:18:07 -070036 hccr = (struct ehci_hccr *)dm_pci_map_bar(dev,
Simon Glass2b53b072015-07-06 16:47:53 -060037 PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
Simon Glass09c5c162015-11-29 13:18:07 -070038 hcor = (struct ehci_hcor *)((uintptr_t) hccr +
Simon Glass2b53b072015-07-06 16:47:53 -060039 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
40
Simon Glassb11e2982016-09-25 21:33:21 -060041 debug("EHCI-PCI init hccr %#lx and hcor %#lx hc_length %d\n",
42 (ulong)hccr, (ulong)hcor,
Simon Glass09c5c162015-11-29 13:18:07 -070043 (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
Simon Glass2b53b072015-07-06 16:47:53 -060044
45 *ret_hccr = hccr;
46 *ret_hcor = hcor;
47
48 /* enable busmaster */
Simon Glass09c5c162015-11-29 13:18:07 -070049 dm_pci_read_config32(dev, PCI_COMMAND, &cmd);
Simon Glass2b53b072015-07-06 16:47:53 -060050 cmd |= PCI_COMMAND_MASTER;
Simon Glass09c5c162015-11-29 13:18:07 -070051 dm_pci_write_config32(dev, PCI_COMMAND, cmd);
Marek Vasut1335e772018-08-07 12:27:10 +020052
53 return 0;
Simon Glass2b53b072015-07-06 16:47:53 -060054}
55
Simon Glass09c5c162015-11-29 13:18:07 -070056#else
Simon Glass2b53b072015-07-06 16:47:53 -060057
Michael Trimarchi8fea2912008-12-31 10:32:41 +010058#ifdef CONFIG_PCI_EHCI_DEVICE
59static struct pci_device_id ehci_pci_ids[] = {
60 /* Please add supported PCI EHCI controller ids here */
Trübenbach, Ralf0a5f7e12011-03-31 16:46:47 +000061 {0x1033, 0x00E0}, /* NEC */
Wolfgang Denk4db2fa72011-04-05 12:24:20 +020062 {0x10B9, 0x5239}, /* ULI1575 PCI EHCI module ids */
Trübenbach, Ralf0a5f7e12011-03-31 16:46:47 +000063 {0x12D8, 0x400F}, /* Pericom */
Michael Trimarchi8fea2912008-12-31 10:32:41 +010064 {0, 0}
65};
66#endif
67
Simon Glass09c5c162015-11-29 13:18:07 -070068static void ehci_pci_legacy_init(pci_dev_t pdev, struct ehci_hccr **ret_hccr,
69 struct ehci_hcor **ret_hcor)
70{
71 struct ehci_hccr *hccr;
72 struct ehci_hcor *hcor;
73 u32 cmd;
74
75 hccr = (struct ehci_hccr *)pci_map_bar(pdev,
76 PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
77 hcor = (struct ehci_hcor *)((uintptr_t) hccr +
78 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
79
80 debug("EHCI-PCI init hccr 0x%x and hcor 0x%x hc_length %d\n",
81 (u32)hccr, (u32)hcor,
82 (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
83
84 *ret_hccr = hccr;
85 *ret_hcor = hcor;
86
87 /* enable busmaster */
88 pci_read_config_dword(pdev, PCI_COMMAND, &cmd);
89 cmd |= PCI_COMMAND_MASTER;
90 pci_write_config_dword(pdev, PCI_COMMAND, cmd);
91}
92
Michael Trimarchi8fea2912008-12-31 10:32:41 +010093/*
94 * Create the appropriate control structures to manage
95 * a new EHCI host controller.
96 */
Troy Kisky127efc42013-10-10 15:27:57 -070097int ehci_hcd_init(int index, enum usb_init_type init,
98 struct ehci_hccr **ret_hccr, struct ehci_hcor **ret_hcor)
Michael Trimarchi8fea2912008-12-31 10:32:41 +010099{
100 pci_dev_t pdev;
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100101
Vincent Palatin7c38e902012-12-13 22:58:27 -0800102#ifdef CONFIG_PCI_EHCI_DEVICE
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100103 pdev = pci_find_devices(ehci_pci_ids, CONFIG_PCI_EHCI_DEVICE);
Vincent Palatin7c38e902012-12-13 22:58:27 -0800104#else
Simon Glass4fd46722015-01-27 22:13:30 -0700105 pdev = pci_find_class(PCI_CLASS_SERIAL_USB_EHCI, index);
Vincent Palatin7c38e902012-12-13 22:58:27 -0800106#endif
107 if (pdev < 0) {
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100108 printf("EHCI host controller not found\n");
109 return -1;
110 }
Simon Glass09c5c162015-11-29 13:18:07 -0700111 ehci_pci_legacy_init(pdev, ret_hccr, ret_hcor);
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100112
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100113 return 0;
114}
115
116/*
117 * Destroy the appropriate control structures corresponding
118 * the the EHCI host controller.
119 */
Lucas Stach676ae062012-09-26 00:14:35 +0200120int ehci_hcd_stop(int index)
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100121{
122 return 0;
123}
Simon Glass2b53b072015-07-06 16:47:53 -0600124#endif /* nCONFIG_DM_USB */
125
126#ifdef CONFIG_DM_USB
127static int ehci_pci_probe(struct udevice *dev)
128{
129 struct ehci_hccr *hccr;
130 struct ehci_hcor *hcor;
Marek Vasut1335e772018-08-07 12:27:10 +0200131 int ret;
Simon Glass2b53b072015-07-06 16:47:53 -0600132
Marek Vasut1335e772018-08-07 12:27:10 +0200133 ret = ehci_pci_init(dev, &hccr, &hcor);
134 if (ret)
135 return ret;
Simon Glass2b53b072015-07-06 16:47:53 -0600136
137 return ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST);
138}
139
Marek Vasut1335e772018-08-07 12:27:10 +0200140static int ehci_pci_remove(struct udevice *dev)
141{
142 struct ehci_pci_priv *priv = dev_get_priv(dev);
143 int ret;
144
145 ret = ehci_deregister(dev);
146 if (ret)
147 return ret;
148
149 return ehci_shutdown_phy(dev, &priv->phy);
150}
151
Simon Glass907eed22016-01-17 16:11:07 -0700152static const struct udevice_id ehci_pci_ids[] = {
153 { .compatible = "ehci-pci" },
154 { }
155};
156
Simon Glass2b53b072015-07-06 16:47:53 -0600157U_BOOT_DRIVER(ehci_pci) = {
158 .name = "ehci_pci",
159 .id = UCLASS_USB,
160 .probe = ehci_pci_probe,
Marek Vasut1335e772018-08-07 12:27:10 +0200161 .remove = ehci_pci_remove,
Simon Glass907eed22016-01-17 16:11:07 -0700162 .of_match = ehci_pci_ids,
Simon Glass2b53b072015-07-06 16:47:53 -0600163 .ops = &ehci_usb_ops,
164 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
165 .priv_auto_alloc_size = sizeof(struct ehci_pci_priv),
166 .flags = DM_FLAG_ALLOC_PRIV_DMA,
167};
168
169static struct pci_device_id ehci_pci_supported[] = {
170 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_EHCI, ~0) },
171 {},
172};
173
174U_BOOT_PCI_DEVICE(ehci_pci, ehci_pci_supported);
175
176#endif /* CONFIG_DM_USB */