blob: 92e281e7c2f7437dd2507ae1dae5efbaf56707dd [file] [log] [blame]
liu haoe3aafef2019-10-31 07:51:08 +00001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Phytium PCIE host driver
4 *
5 * Heavily based on drivers/pci/pcie_xilinx.c
6 *
7 * Copyright (C) 2019
8 */
9
10#include <common.h>
11#include <dm.h>
12#include <pci.h>
13#include <asm/io.h>
14
15/**
16 * struct phytium_pcie - phytium PCIe controller state
17 * @cfg_base: The base address of memory mapped configuration space
18 */
19struct phytium_pcie {
20 void *cfg_base;
21};
22
23/*
24 * phytium_pci_skip_dev()
25 * @parent: Identifies the PCIe device to access
26 *
27 * Checks whether the parent of the PCIe device is bridge
28 *
29 * Return: true if it is bridge, else false.
30 */
31static int phytium_pci_skip_dev(pci_dev_t parent)
32{
33 unsigned char pos, id;
34 unsigned long addr = 0x40000000;
35 unsigned short capreg;
36 unsigned char port_type;
37
38 addr += PCI_BUS(parent) << 20;
39 addr += PCI_DEV(parent) << 15;
40 addr += PCI_FUNC(parent) << 12;
41
42 pos = 0x34;
43 while (1) {
44 pos = readb(addr + pos);
45 if (pos < 0x40)
46 break;
47 pos &= ~3;
48 id = readb(addr + pos);
49 if (id == 0xff)
50 break;
51 if (id == 0x10) {
52 capreg = readw(addr + pos + 2);
53 port_type = (capreg >> 4) & 0xf;
54 if (port_type == 0x6 || port_type == 0x4)
55 return 1;
56 else
57 return 0;
58 }
59 pos += 1;
60 }
61 return 0;
62}
63
64/**
65 * pci_phytium_conf_address() - Calculate the address of a config access
66 * @bus: Pointer to the PCI bus
67 * @bdf: Identifies the PCIe device to access
68 * @offset: The offset into the device's configuration space
69 * @paddress: Pointer to the pointer to write the calculates address to
70 *
71 * Calculates the address that should be accessed to perform a PCIe
72 * configuration space access for a given device identified by the PCIe
73 * controller device @pcie and the bus, device & function numbers in @bdf. If
74 * access to the device is not valid then the function will return an error
75 * code. Otherwise the address to access will be written to the pointer pointed
76 * to by @paddress.
77 */
78static int pci_phytium_conf_address(struct udevice *bus, pci_dev_t bdf,
79 uint offset,
80 void **paddress)
81{
82 struct phytium_pcie *pcie = dev_get_priv(bus);
83 void *addr;
84 pci_dev_t bdf_parent;
85
86 unsigned int bus_no = PCI_BUS(bdf);
87 unsigned int dev_no = PCI_DEV(bdf);
88
89 bdf_parent = PCI_BDF((bus_no - 1), 0, 0);
90
91 addr = pcie->cfg_base;
92 addr += PCI_BUS(bdf) << 20;
93 addr += PCI_DEV(bdf) << 15;
94 addr += PCI_FUNC(bdf) << 12;
95
96 if (bus_no > 0 && dev_no > 0) {
97 if ((readb(addr + PCI_HEADER_TYPE) & 0x7f) !=
98 PCI_HEADER_TYPE_BRIDGE)
99 return -ENODEV;
100 if (phytium_pci_skip_dev(bdf_parent))
101 return -ENODEV;
102 }
103
104 addr += offset;
105 *paddress = addr;
106
107 return 0;
108}
109
110/**
111 * pci_phytium_read_config() - Read from configuration space
112 * @bus: Pointer to the PCI bus
113 * @bdf: Identifies the PCIe device to access
114 * @offset: The offset into the device's configuration space
115 * @valuep: A pointer at which to store the read value
116 * @size: Indicates the size of access to perform
117 *
118 * Read a value of size @size from offset @offset within the configuration
119 * space of the device identified by the bus, device & function numbers in @bdf
120 * on the PCI bus @bus.
121 */
122static int pci_phytium_read_config(struct udevice *bus, pci_dev_t bdf,
123 uint offset, ulong *valuep,
124 enum pci_size_t size)
125{
126 return pci_generic_mmap_read_config(bus, pci_phytium_conf_address,
127 bdf, offset, valuep, size);
128}
129
130/**
131 * pci_phytium_write_config() - Write to configuration space
132 * @bus: Pointer to the PCI bus
133 * @bdf: Identifies the PCIe device to access
134 * @offset: The offset into the device's configuration space
135 * @value: The value to write
136 * @size: Indicates the size of access to perform
137 *
138 * Write the value @value of size @size from offset @offset within the
139 * configuration space of the device identified by the bus, device & function
140 * numbers in @bdf on the PCI bus @bus.
141 */
142static int pci_phytium_write_config(struct udevice *bus, pci_dev_t bdf,
143 uint offset, ulong value,
144 enum pci_size_t size)
145{
146 return pci_generic_mmap_write_config(bus, pci_phytium_conf_address,
147 bdf, offset, value, size);
148}
149
150/**
151 * pci_phytium_ofdata_to_platdata() - Translate from DT to device state
152 * @dev: A pointer to the device being operated on
153 *
154 * Translate relevant data from the device tree pertaining to device @dev into
155 * state that the driver will later make use of. This state is stored in the
156 * device's private data structure.
157 *
158 * Return: 0 on success, else -EINVAL
159 */
160static int pci_phytium_ofdata_to_platdata(struct udevice *dev)
161{
162 struct phytium_pcie *pcie = dev_get_priv(dev);
163 struct fdt_resource reg_res;
164
165 DECLARE_GLOBAL_DATA_PTR;
166
167 int err;
168
169 err = fdt_get_resource(gd->fdt_blob, dev_of_offset(dev), "reg",
170 0, &reg_res);
171 if (err < 0) {
172 pr_err("\"reg\" resource not found\n");
173 return err;
174 }
175
176 pcie->cfg_base = map_physmem(reg_res.start,
177 fdt_resource_size(&reg_res),
178 MAP_NOCACHE);
179
180 return 0;
181}
182
183static const struct dm_pci_ops pci_phytium_ops = {
184 .read_config = pci_phytium_read_config,
185 .write_config = pci_phytium_write_config,
186};
187
188static const struct udevice_id pci_phytium_ids[] = {
189 { .compatible = "phytium,pcie-host-1.0" },
190 { }
191};
192
193U_BOOT_DRIVER(pci_phytium) = {
194 .name = "pci_phytium",
195 .id = UCLASS_PCI,
196 .of_match = pci_phytium_ids,
197 .ops = &pci_phytium_ops,
198 .ofdata_to_platdata = pci_phytium_ofdata_to_platdata,
199 .priv_auto_alloc_size = sizeof(struct phytium_pcie),
200};