blob: dceba4bd7aa1eb230567b9bcbfaa9b4bef167d9a [file] [log] [blame]
Michael Trimarchi8fea2912008-12-31 10:32:41 +01001/*-
2 * Copyright (c) 2007-2008, Juniper Networks, Inc.
3 * All rights reserved.
4 *
Simon Glasse62b5262015-07-06 16:47:42 -06005 * SPDX-License-Identifier: GPL-2.0
Michael Trimarchi8fea2912008-12-31 10:32:41 +01006 */
7
8#include <common.h>
Simon Glass2b53b072015-07-06 16:47:53 -06009#include <dm.h>
Vincent Palatin7c38e902012-12-13 22:58:27 -080010#include <errno.h>
Michael Trimarchi8fea2912008-12-31 10:32:41 +010011#include <pci.h>
12#include <usb.h>
Alexey Brodkin2cb7b902017-06-05 10:19:26 +030013#include <asm/io.h>
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020014
15#include "ehci.h"
Michael Trimarchi8fea2912008-12-31 10:32:41 +010016
Simon Glass2b53b072015-07-06 16:47:53 -060017/* Information about a USB port */
18struct ehci_pci_priv {
19 struct ehci_ctrl ehci;
20};
21
Simon Glass09c5c162015-11-29 13:18:07 -070022#ifdef CONFIG_DM_USB
23
24static void ehci_pci_init(struct udevice *dev, struct ehci_hccr **ret_hccr,
25 struct ehci_hcor **ret_hcor)
Simon Glass2b53b072015-07-06 16:47:53 -060026{
27 struct ehci_hccr *hccr;
28 struct ehci_hcor *hcor;
Simon Glass09c5c162015-11-29 13:18:07 -070029 u32 cmd;
Simon Glass2b53b072015-07-06 16:47:53 -060030
Simon Glass09c5c162015-11-29 13:18:07 -070031 hccr = (struct ehci_hccr *)dm_pci_map_bar(dev,
Simon Glass2b53b072015-07-06 16:47:53 -060032 PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
Simon Glass09c5c162015-11-29 13:18:07 -070033 hcor = (struct ehci_hcor *)((uintptr_t) hccr +
Simon Glass2b53b072015-07-06 16:47:53 -060034 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
35
Simon Glassb11e2982016-09-25 21:33:21 -060036 debug("EHCI-PCI init hccr %#lx and hcor %#lx hc_length %d\n",
37 (ulong)hccr, (ulong)hcor,
Simon Glass09c5c162015-11-29 13:18:07 -070038 (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
Simon Glass2b53b072015-07-06 16:47:53 -060039
40 *ret_hccr = hccr;
41 *ret_hcor = hcor;
42
43 /* enable busmaster */
Simon Glass09c5c162015-11-29 13:18:07 -070044 dm_pci_read_config32(dev, PCI_COMMAND, &cmd);
Simon Glass2b53b072015-07-06 16:47:53 -060045 cmd |= PCI_COMMAND_MASTER;
Simon Glass09c5c162015-11-29 13:18:07 -070046 dm_pci_write_config32(dev, PCI_COMMAND, cmd);
Simon Glass2b53b072015-07-06 16:47:53 -060047}
48
Simon Glass09c5c162015-11-29 13:18:07 -070049#else
Simon Glass2b53b072015-07-06 16:47:53 -060050
Michael Trimarchi8fea2912008-12-31 10:32:41 +010051#ifdef CONFIG_PCI_EHCI_DEVICE
52static struct pci_device_id ehci_pci_ids[] = {
53 /* Please add supported PCI EHCI controller ids here */
Trübenbach, Ralf0a5f7e12011-03-31 16:46:47 +000054 {0x1033, 0x00E0}, /* NEC */
Wolfgang Denk4db2fa72011-04-05 12:24:20 +020055 {0x10B9, 0x5239}, /* ULI1575 PCI EHCI module ids */
Trübenbach, Ralf0a5f7e12011-03-31 16:46:47 +000056 {0x12D8, 0x400F}, /* Pericom */
Michael Trimarchi8fea2912008-12-31 10:32:41 +010057 {0, 0}
58};
59#endif
60
Simon Glass09c5c162015-11-29 13:18:07 -070061static void ehci_pci_legacy_init(pci_dev_t pdev, struct ehci_hccr **ret_hccr,
62 struct ehci_hcor **ret_hcor)
63{
64 struct ehci_hccr *hccr;
65 struct ehci_hcor *hcor;
66 u32 cmd;
67
68 hccr = (struct ehci_hccr *)pci_map_bar(pdev,
69 PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
70 hcor = (struct ehci_hcor *)((uintptr_t) hccr +
71 HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
72
73 debug("EHCI-PCI init hccr 0x%x and hcor 0x%x hc_length %d\n",
74 (u32)hccr, (u32)hcor,
75 (u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
76
77 *ret_hccr = hccr;
78 *ret_hcor = hcor;
79
80 /* enable busmaster */
81 pci_read_config_dword(pdev, PCI_COMMAND, &cmd);
82 cmd |= PCI_COMMAND_MASTER;
83 pci_write_config_dword(pdev, PCI_COMMAND, cmd);
84}
85
Michael Trimarchi8fea2912008-12-31 10:32:41 +010086/*
87 * Create the appropriate control structures to manage
88 * a new EHCI host controller.
89 */
Troy Kisky127efc42013-10-10 15:27:57 -070090int ehci_hcd_init(int index, enum usb_init_type init,
91 struct ehci_hccr **ret_hccr, struct ehci_hcor **ret_hcor)
Michael Trimarchi8fea2912008-12-31 10:32:41 +010092{
93 pci_dev_t pdev;
Michael Trimarchi8fea2912008-12-31 10:32:41 +010094
Vincent Palatin7c38e902012-12-13 22:58:27 -080095#ifdef CONFIG_PCI_EHCI_DEVICE
Michael Trimarchi8fea2912008-12-31 10:32:41 +010096 pdev = pci_find_devices(ehci_pci_ids, CONFIG_PCI_EHCI_DEVICE);
Vincent Palatin7c38e902012-12-13 22:58:27 -080097#else
Simon Glass4fd46722015-01-27 22:13:30 -070098 pdev = pci_find_class(PCI_CLASS_SERIAL_USB_EHCI, index);
Vincent Palatin7c38e902012-12-13 22:58:27 -080099#endif
100 if (pdev < 0) {
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100101 printf("EHCI host controller not found\n");
102 return -1;
103 }
Simon Glass09c5c162015-11-29 13:18:07 -0700104 ehci_pci_legacy_init(pdev, ret_hccr, ret_hcor);
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100105
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100106 return 0;
107}
108
109/*
110 * Destroy the appropriate control structures corresponding
111 * the the EHCI host controller.
112 */
Lucas Stach676ae062012-09-26 00:14:35 +0200113int ehci_hcd_stop(int index)
Michael Trimarchi8fea2912008-12-31 10:32:41 +0100114{
115 return 0;
116}
Simon Glass2b53b072015-07-06 16:47:53 -0600117#endif /* nCONFIG_DM_USB */
118
119#ifdef CONFIG_DM_USB
120static int ehci_pci_probe(struct udevice *dev)
121{
122 struct ehci_hccr *hccr;
123 struct ehci_hcor *hcor;
124
Simon Glass09c5c162015-11-29 13:18:07 -0700125 ehci_pci_init(dev, &hccr, &hcor);
Simon Glass2b53b072015-07-06 16:47:53 -0600126
127 return ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST);
128}
129
Simon Glass907eed22016-01-17 16:11:07 -0700130static const struct udevice_id ehci_pci_ids[] = {
131 { .compatible = "ehci-pci" },
132 { }
133};
134
Simon Glass2b53b072015-07-06 16:47:53 -0600135U_BOOT_DRIVER(ehci_pci) = {
136 .name = "ehci_pci",
137 .id = UCLASS_USB,
138 .probe = ehci_pci_probe,
Masahiro Yamada40527342016-09-06 22:17:34 +0900139 .remove = ehci_deregister,
Simon Glass907eed22016-01-17 16:11:07 -0700140 .of_match = ehci_pci_ids,
Simon Glass2b53b072015-07-06 16:47:53 -0600141 .ops = &ehci_usb_ops,
142 .platdata_auto_alloc_size = sizeof(struct usb_platdata),
143 .priv_auto_alloc_size = sizeof(struct ehci_pci_priv),
144 .flags = DM_FLAG_ALLOC_PRIV_DMA,
145};
146
147static struct pci_device_id ehci_pci_supported[] = {
148 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_EHCI, ~0) },
149 {},
150};
151
152U_BOOT_PCI_DEVICE(ehci_pci, ehci_pci_supported);
153
154#endif /* CONFIG_DM_USB */