Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Xilinx AXI Bridge for PCI Express Driver |
| 4 | * |
| 5 | * Copyright (C) 2016 Imagination Technologies |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <dm.h> |
| 10 | #include <pci.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 11 | #include <asm/global_data.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 12 | #include <linux/bitops.h> |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 13 | |
| 14 | #include <asm/io.h> |
| 15 | |
| 16 | /** |
| 17 | * struct xilinx_pcie - Xilinx PCIe controller state |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 18 | * @cfg_base: The base address of memory mapped configuration space |
| 19 | */ |
| 20 | struct xilinx_pcie { |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 21 | void *cfg_base; |
| 22 | }; |
| 23 | |
| 24 | /* Register definitions */ |
| 25 | #define XILINX_PCIE_REG_PSCR 0x144 |
| 26 | #define XILINX_PCIE_REG_PSCR_LNKUP BIT(11) |
| 27 | |
| 28 | /** |
| 29 | * pcie_xilinx_link_up() - Check whether the PCIe link is up |
| 30 | * @pcie: Pointer to the PCI controller state |
| 31 | * |
| 32 | * Checks whether the PCIe link for the given device is up or down. |
| 33 | * |
| 34 | * Return: true if the link is up, else false |
| 35 | */ |
| 36 | static bool pcie_xilinx_link_up(struct xilinx_pcie *pcie) |
| 37 | { |
| 38 | uint32_t pscr = __raw_readl(pcie->cfg_base + XILINX_PCIE_REG_PSCR); |
| 39 | |
| 40 | return pscr & XILINX_PCIE_REG_PSCR_LNKUP; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * pcie_xilinx_config_address() - Calculate the address of a config access |
Tuomas Tynkkynen | 6b18f2a | 2017-09-19 23:18:04 +0300 | [diff] [blame] | 45 | * @udev: Pointer to the PCI bus |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 46 | * @bdf: Identifies the PCIe device to access |
| 47 | * @offset: The offset into the device's configuration space |
| 48 | * @paddress: Pointer to the pointer to write the calculates address to |
| 49 | * |
| 50 | * Calculates the address that should be accessed to perform a PCIe |
| 51 | * configuration space access for a given device identified by the PCIe |
| 52 | * controller device @pcie and the bus, device & function numbers in @bdf. If |
| 53 | * access to the device is not valid then the function will return an error |
| 54 | * code. Otherwise the address to access will be written to the pointer pointed |
| 55 | * to by @paddress. |
| 56 | * |
| 57 | * Return: 0 on success, else -ENODEV |
| 58 | */ |
Simon Glass | 2a311e8 | 2020-01-27 08:49:37 -0700 | [diff] [blame] | 59 | static int pcie_xilinx_config_address(const struct udevice *udev, pci_dev_t bdf, |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 60 | uint offset, void **paddress) |
| 61 | { |
Tuomas Tynkkynen | 6b18f2a | 2017-09-19 23:18:04 +0300 | [diff] [blame] | 62 | struct xilinx_pcie *pcie = dev_get_priv(udev); |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 63 | unsigned int bus = PCI_BUS(bdf); |
| 64 | unsigned int dev = PCI_DEV(bdf); |
| 65 | unsigned int func = PCI_FUNC(bdf); |
| 66 | void *addr; |
| 67 | |
| 68 | if ((bus > 0) && !pcie_xilinx_link_up(pcie)) |
| 69 | return -ENODEV; |
| 70 | |
| 71 | /* |
| 72 | * Busses 0 (host-PCIe bridge) & 1 (its immediate child) are |
| 73 | * limited to a single device each. |
| 74 | */ |
| 75 | if ((bus < 2) && (dev > 0)) |
| 76 | return -ENODEV; |
| 77 | |
| 78 | addr = pcie->cfg_base; |
Pali Rohár | 2376935 | 2021-11-03 01:01:05 +0100 | [diff] [blame] | 79 | addr += PCIE_ECAM_OFFSET(bus, dev, func, offset); |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 80 | *paddress = addr; |
| 81 | |
| 82 | return 0; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * pcie_xilinx_read_config() - Read from configuration space |
Tuomas Tynkkynen | f0e8d23 | 2017-09-01 17:25:58 +0300 | [diff] [blame] | 87 | * @bus: Pointer to the PCI bus |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 88 | * @bdf: Identifies the PCIe device to access |
| 89 | * @offset: The offset into the device's configuration space |
| 90 | * @valuep: A pointer at which to store the read value |
| 91 | * @size: Indicates the size of access to perform |
| 92 | * |
| 93 | * Read a value of size @size from offset @offset within the configuration |
| 94 | * space of the device identified by the bus, device & function numbers in @bdf |
| 95 | * on the PCI bus @bus. |
| 96 | * |
| 97 | * Return: 0 on success, else -ENODEV or -EINVAL |
| 98 | */ |
Simon Glass | 2a311e8 | 2020-01-27 08:49:37 -0700 | [diff] [blame] | 99 | static int pcie_xilinx_read_config(const struct udevice *bus, pci_dev_t bdf, |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 100 | uint offset, ulong *valuep, |
| 101 | enum pci_size_t size) |
| 102 | { |
Tuomas Tynkkynen | 6b18f2a | 2017-09-19 23:18:04 +0300 | [diff] [blame] | 103 | return pci_generic_mmap_read_config(bus, pcie_xilinx_config_address, |
| 104 | bdf, offset, valuep, size); |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | /** |
| 108 | * pcie_xilinx_write_config() - Write to configuration space |
Tuomas Tynkkynen | f0e8d23 | 2017-09-01 17:25:58 +0300 | [diff] [blame] | 109 | * @bus: Pointer to the PCI bus |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 110 | * @bdf: Identifies the PCIe device to access |
| 111 | * @offset: The offset into the device's configuration space |
| 112 | * @value: The value to write |
| 113 | * @size: Indicates the size of access to perform |
| 114 | * |
| 115 | * Write the value @value of size @size from offset @offset within the |
| 116 | * configuration space of the device identified by the bus, device & function |
| 117 | * numbers in @bdf on the PCI bus @bus. |
| 118 | * |
| 119 | * Return: 0 on success, else -ENODEV or -EINVAL |
| 120 | */ |
| 121 | static int pcie_xilinx_write_config(struct udevice *bus, pci_dev_t bdf, |
| 122 | uint offset, ulong value, |
| 123 | enum pci_size_t size) |
| 124 | { |
Tuomas Tynkkynen | 6b18f2a | 2017-09-19 23:18:04 +0300 | [diff] [blame] | 125 | return pci_generic_mmap_write_config(bus, pcie_xilinx_config_address, |
| 126 | bdf, offset, value, size); |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | /** |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 130 | * pcie_xilinx_of_to_plat() - Translate from DT to device state |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 131 | * @dev: A pointer to the device being operated on |
| 132 | * |
| 133 | * Translate relevant data from the device tree pertaining to device @dev into |
| 134 | * state that the driver will later make use of. This state is stored in the |
| 135 | * device's private data structure. |
| 136 | * |
| 137 | * Return: 0 on success, else -EINVAL |
| 138 | */ |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 139 | static int pcie_xilinx_of_to_plat(struct udevice *dev) |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 140 | { |
| 141 | struct xilinx_pcie *pcie = dev_get_priv(dev); |
| 142 | struct fdt_resource reg_res; |
| 143 | DECLARE_GLOBAL_DATA_PTR; |
| 144 | int err; |
| 145 | |
Simon Glass | dd79d6e | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 146 | err = fdt_get_resource(gd->fdt_blob, dev_of_offset(dev), "reg", |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 147 | 0, ®_res); |
| 148 | if (err < 0) { |
Masahiro Yamada | 81e1042 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 149 | pr_err("\"reg\" resource not found\n"); |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 150 | return err; |
| 151 | } |
| 152 | |
| 153 | pcie->cfg_base = map_physmem(reg_res.start, |
| 154 | fdt_resource_size(®_res), |
| 155 | MAP_NOCACHE); |
| 156 | |
| 157 | return 0; |
| 158 | } |
| 159 | |
| 160 | static const struct dm_pci_ops pcie_xilinx_ops = { |
| 161 | .read_config = pcie_xilinx_read_config, |
| 162 | .write_config = pcie_xilinx_write_config, |
| 163 | }; |
| 164 | |
| 165 | static const struct udevice_id pcie_xilinx_ids[] = { |
| 166 | { .compatible = "xlnx,axi-pcie-host-1.00.a" }, |
| 167 | { } |
| 168 | }; |
| 169 | |
| 170 | U_BOOT_DRIVER(pcie_xilinx) = { |
| 171 | .name = "pcie_xilinx", |
| 172 | .id = UCLASS_PCI, |
| 173 | .of_match = pcie_xilinx_ids, |
| 174 | .ops = &pcie_xilinx_ops, |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 175 | .of_to_plat = pcie_xilinx_of_to_plat, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 176 | .priv_auto = sizeof(struct xilinx_pcie), |
Paul Burton | c893f21 | 2016-09-08 07:47:31 +0100 | [diff] [blame] | 177 | }; |