Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Simon Glass | 316328f | 2015-01-27 22:13:31 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015, Google, Inc |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
| 5 | * All rights reserved. |
Simon Glass | 316328f | 2015-01-27 22:13:31 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 9 | #include <dm.h> |
Samuel Holland | 70a98ca | 2021-07-05 13:29:02 +0100 | [diff] [blame] | 10 | #include <dm/device_compat.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | 316328f | 2015-01-27 22:13:31 -0700 | [diff] [blame] | 13 | #include <pci.h> |
Samuel Holland | 70a98ca | 2021-07-05 13:29:02 +0100 | [diff] [blame] | 14 | #include <reset.h> |
Simon Glass | 316328f | 2015-01-27 22:13:31 -0700 | [diff] [blame] | 15 | #include <usb.h> |
Jean-Jacques Hiblot | 1708a12 | 2019-09-11 11:33:46 +0200 | [diff] [blame] | 16 | #include <usb/xhci.h> |
Simon Glass | 316328f | 2015-01-27 22:13:31 -0700 | [diff] [blame] | 17 | |
Samuel Holland | 70a98ca | 2021-07-05 13:29:02 +0100 | [diff] [blame] | 18 | struct xhci_pci_plat { |
| 19 | struct reset_ctl reset; |
| 20 | }; |
| 21 | |
Pali Rohár | 5a5024f | 2021-01-18 12:30:04 +0100 | [diff] [blame] | 22 | static int xhci_pci_init(struct udevice *dev, struct xhci_hccr **ret_hccr, |
| 23 | struct xhci_hcor **ret_hcor) |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 24 | { |
| 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ár | 5a5024f | 2021-01-18 12:30:04 +0100 | [diff] [blame] | 31 | if (!hccr) { |
| 32 | printf("xhci-pci init cannot map PCI mem bar\n"); |
| 33 | return -EIO; |
| 34 | } |
| 35 | |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 36 | hcor = (struct xhci_hcor *)((uintptr_t) hccr + |
| 37 | HC_LENGTH(xhci_readl(&hccr->cr_capbase))); |
| 38 | |
Bin Meng | 9fddf6c | 2018-06-03 19:04:14 -0700 | [diff] [blame] | 39 | 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 Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 41 | |
| 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ár | 5a5024f | 2021-01-18 12:30:04 +0100 | [diff] [blame] | 49 | return 0; |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | static int xhci_pci_probe(struct udevice *dev) |
| 53 | { |
Samuel Holland | 70a98ca | 2021-07-05 13:29:02 +0100 | [diff] [blame] | 54 | struct xhci_pci_plat *plat = dev_get_plat(dev); |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 55 | struct xhci_hccr *hccr; |
| 56 | struct xhci_hcor *hcor; |
Pali Rohár | 5a5024f | 2021-01-18 12:30:04 +0100 | [diff] [blame] | 57 | int ret; |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 58 | |
Samuel Holland | 70a98ca | 2021-07-05 13:29:02 +0100 | [diff] [blame] | 59 | 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ár | 5a5024f | 2021-01-18 12:30:04 +0100 | [diff] [blame] | 75 | ret = xhci_pci_init(dev, &hccr, &hcor); |
| 76 | if (ret) |
Samuel Holland | 70a98ca | 2021-07-05 13:29:02 +0100 | [diff] [blame] | 77 | goto err_reset; |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 78 | |
Samuel Holland | 70a98ca | 2021-07-05 13:29:02 +0100 | [diff] [blame] | 79 | ret = xhci_register(dev, hccr, hcor); |
| 80 | if (ret) |
| 81 | goto err_reset; |
| 82 | |
| 83 | return 0; |
| 84 | |
| 85 | err_reset: |
| 86 | if (reset_valid(&plat->reset)) |
| 87 | reset_free(&plat->reset); |
| 88 | |
| 89 | return ret; |
| 90 | } |
| 91 | |
| 92 | static 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 Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 101 | } |
| 102 | |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 103 | static const struct udevice_id xhci_pci_ids[] = { |
| 104 | { .compatible = "xhci-pci" }, |
| 105 | { } |
| 106 | }; |
| 107 | |
| 108 | U_BOOT_DRIVER(xhci_pci) = { |
| 109 | .name = "xhci_pci", |
| 110 | .id = UCLASS_USB, |
| 111 | .probe = xhci_pci_probe, |
Samuel Holland | 70a98ca | 2021-07-05 13:29:02 +0100 | [diff] [blame] | 112 | .remove = xhci_pci_remove, |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 113 | .of_match = xhci_pci_ids, |
| 114 | .ops = &xhci_usb_ops, |
Samuel Holland | 70a98ca | 2021-07-05 13:29:02 +0100 | [diff] [blame] | 115 | .plat_auto = sizeof(struct xhci_pci_plat), |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 116 | .priv_auto = sizeof(struct xhci_ctrl), |
Nicolas Saenz Julienne | e3bbc1f | 2021-01-14 16:49:00 +0100 | [diff] [blame] | 117 | .flags = DM_FLAG_OS_PREPARE | DM_FLAG_ALLOC_PRIV_DMA, |
Stefan Roese | 555a347 | 2016-07-18 12:51:39 +0200 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | static struct pci_device_id xhci_pci_supported[] = { |
| 121 | { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_XHCI, ~0) }, |
| 122 | {}, |
| 123 | }; |
| 124 | |
| 125 | U_BOOT_PCI_DEVICE(xhci_pci, xhci_pci_supported); |