blob: 630bc20be1e0dba5e69dbeeceadb1508cad9780e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Simon Glass316328f2015-01-27 22:13:31 -07002/*
3 * Copyright (c) 2015, Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
5 * All rights reserved.
Simon Glass316328f2015-01-27 22:13:31 -07006 */
7
8#include <common.h>
Stefan Roese555a3472016-07-18 12:51:39 +02009#include <dm.h>
Samuel Holland70a98ca2021-07-05 13:29:02 +010010#include <dm/device_compat.h>
Simon Glass691d7192020-05-10 11:40:02 -060011#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Simon Glass316328f2015-01-27 22:13:31 -070013#include <pci.h>
Samuel Holland70a98ca2021-07-05 13:29:02 +010014#include <reset.h>
Simon Glass316328f2015-01-27 22:13:31 -070015#include <usb.h>
Jean-Jacques Hiblot1708a122019-09-11 11:33:46 +020016#include <usb/xhci.h>
Simon Glass316328f2015-01-27 22:13:31 -070017
Samuel Holland70a98ca2021-07-05 13:29:02 +010018struct xhci_pci_plat {
19 struct reset_ctl reset;
20};
21
Pali Rohár5a5024f2021-01-18 12:30:04 +010022static int xhci_pci_init(struct udevice *dev, struct xhci_hccr **ret_hccr,
23 struct xhci_hcor **ret_hcor)
Stefan Roese555a3472016-07-18 12:51:39 +020024{
25 struct xhci_hccr *hccr;
26 struct xhci_hcor *hcor;
27 u32 cmd;
28
29 hccr = (struct xhci_hccr *)dm_pci_map_bar(dev,
30 PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
Pali Rohár5a5024f2021-01-18 12:30:04 +010031 if (!hccr) {
32 printf("xhci-pci init cannot map PCI mem bar\n");
33 return -EIO;
34 }
35
Stefan Roese555a3472016-07-18 12:51:39 +020036 hcor = (struct xhci_hcor *)((uintptr_t) hccr +
37 HC_LENGTH(xhci_readl(&hccr->cr_capbase)));
38
Bin Meng9fddf6c2018-06-03 19:04:14 -070039 debug("XHCI-PCI init hccr %p and hcor %p hc_length %d\n",
40 hccr, hcor, (u32)HC_LENGTH(xhci_readl(&hccr->cr_capbase)));
Stefan Roese555a3472016-07-18 12:51:39 +020041
42 *ret_hccr = hccr;
43 *ret_hcor = hcor;
44
45 /* enable busmaster */
46 dm_pci_read_config32(dev, PCI_COMMAND, &cmd);
47 cmd |= PCI_COMMAND_MASTER;
48 dm_pci_write_config32(dev, PCI_COMMAND, cmd);
Pali Rohár5a5024f2021-01-18 12:30:04 +010049 return 0;
Stefan Roese555a3472016-07-18 12:51:39 +020050}
51
52static int xhci_pci_probe(struct udevice *dev)
53{
Samuel Holland70a98ca2021-07-05 13:29:02 +010054 struct xhci_pci_plat *plat = dev_get_plat(dev);
Stefan Roese555a3472016-07-18 12:51:39 +020055 struct xhci_hccr *hccr;
56 struct xhci_hcor *hcor;
Pali Rohár5a5024f2021-01-18 12:30:04 +010057 int ret;
Stefan Roese555a3472016-07-18 12:51:39 +020058
Samuel Holland70a98ca2021-07-05 13:29:02 +010059 ret = reset_get_by_index(dev, 0, &plat->reset);
60 if (ret && ret != -ENOENT && ret != -ENOTSUPP) {
61 dev_err(dev, "failed to get reset\n");
62 return ret;
63 }
64
65 if (reset_valid(&plat->reset)) {
66 ret = reset_assert(&plat->reset);
67 if (ret)
68 goto err_reset;
69
70 ret = reset_deassert(&plat->reset);
71 if (ret)
72 goto err_reset;
73 }
74
Pali Rohár5a5024f2021-01-18 12:30:04 +010075 ret = xhci_pci_init(dev, &hccr, &hcor);
76 if (ret)
Samuel Holland70a98ca2021-07-05 13:29:02 +010077 goto err_reset;
Stefan Roese555a3472016-07-18 12:51:39 +020078
Samuel Holland70a98ca2021-07-05 13:29:02 +010079 ret = xhci_register(dev, hccr, hcor);
80 if (ret)
81 goto err_reset;
82
83 return 0;
84
85err_reset:
86 if (reset_valid(&plat->reset))
87 reset_free(&plat->reset);
88
89 return ret;
90}
91
92static int xhci_pci_remove(struct udevice *dev)
93{
94 struct xhci_pci_plat *plat = dev_get_plat(dev);
95
96 xhci_deregister(dev);
97 if (reset_valid(&plat->reset))
98 reset_free(&plat->reset);
99
100 return 0;
Stefan Roese555a3472016-07-18 12:51:39 +0200101}
102
Stefan Roese555a3472016-07-18 12:51:39 +0200103static const struct udevice_id xhci_pci_ids[] = {
104 { .compatible = "xhci-pci" },
105 { }
106};
107
108U_BOOT_DRIVER(xhci_pci) = {
109 .name = "xhci_pci",
110 .id = UCLASS_USB,
111 .probe = xhci_pci_probe,
Samuel Holland70a98ca2021-07-05 13:29:02 +0100112 .remove = xhci_pci_remove,
Stefan Roese555a3472016-07-18 12:51:39 +0200113 .of_match = xhci_pci_ids,
114 .ops = &xhci_usb_ops,
Samuel Holland70a98ca2021-07-05 13:29:02 +0100115 .plat_auto = sizeof(struct xhci_pci_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700116 .priv_auto = sizeof(struct xhci_ctrl),
Nicolas Saenz Juliennee3bbc1f2021-01-14 16:49:00 +0100117 .flags = DM_FLAG_OS_PREPARE | DM_FLAG_ALLOC_PRIV_DMA,
Stefan Roese555a3472016-07-18 12:51:39 +0200118};
119
120static struct pci_device_id xhci_pci_supported[] = {
121 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_XHCI, ~0) },
122 {},
123};
124
125U_BOOT_PCI_DEVICE(xhci_pci, xhci_pci_supported);