blob: 9fe07cfd34f71ad7f00d145bf75a56c464c187f1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassb94dc892015-03-05 12:25:25 -07002/*
3 * Copyright (c) 2014 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glassb94dc892015-03-05 12:25:25 -07005 */
6
Patrick Delaunay81313352021-04-27 11:02:19 +02007#define LOG_CATEGORY UCLASS_PCI
8
Simon Glassb94dc892015-03-05 12:25:25 -07009#include <common.h>
10#include <dm.h>
11#include <errno.h>
Simon Glass97589732020-05-10 11:40:02 -060012#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070014#include <malloc.h>
Simon Glassb94dc892015-03-05 12:25:25 -070015#include <pci.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Simon Glassc5f053b2015-11-29 13:18:03 -070017#include <asm/io.h>
Simon Glassb94dc892015-03-05 12:25:25 -070018#include <dm/device-internal.h>
Simon Glass89d83232017-05-18 20:09:51 -060019#include <dm/lists.h>
Simon Glassbe706102020-12-16 21:20:18 -070020#include <dm/uclass-internal.h>
Bin Mengc0820a42015-08-20 06:40:23 -070021#if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
Simon Glassef8a2dd2019-08-24 14:19:05 -060022#include <asm/fsp/fsp_support.h>
Bin Mengc0820a42015-08-20 06:40:23 -070023#endif
Simon Glass8807a562021-06-27 17:50:57 -060024#include <dt-bindings/pci/pci.h>
Simon Glassdbd79542020-05-10 11:40:11 -060025#include <linux/delay.h>
Simon Glass37a3f94b2015-11-29 13:17:49 -070026#include "pci_internal.h"
Simon Glassb94dc892015-03-05 12:25:25 -070027
28DECLARE_GLOBAL_DATA_PTR;
29
Simon Glass2e4e4432016-01-18 20:19:14 -070030int pci_get_bus(int busnum, struct udevice **busp)
Simon Glass7d07e592015-08-31 18:55:35 -060031{
32 int ret;
33
34 ret = uclass_get_device_by_seq(UCLASS_PCI, busnum, busp);
35
36 /* Since buses may not be numbered yet try a little harder with bus 0 */
37 if (ret == -ENODEV) {
Simon Glassc7298e72016-02-11 13:23:26 -070038 ret = uclass_first_device_err(UCLASS_PCI, busp);
Simon Glass7d07e592015-08-31 18:55:35 -060039 if (ret)
40 return ret;
Simon Glass7d07e592015-08-31 18:55:35 -060041 ret = uclass_get_device_by_seq(UCLASS_PCI, busnum, busp);
42 }
43
44 return ret;
45}
46
Simon Glass6256d672015-11-19 20:27:00 -070047struct udevice *pci_get_controller(struct udevice *dev)
48{
49 while (device_is_on_pci_bus(dev))
50 dev = dev->parent;
51
52 return dev;
53}
54
Simon Glassc92aac12020-01-27 08:49:38 -070055pci_dev_t dm_pci_get_bdf(const struct udevice *dev)
Simon Glassc9118d42015-07-06 16:47:46 -060056{
Simon Glassb75b15b2020-12-03 16:55:23 -070057 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
Simon Glassc9118d42015-07-06 16:47:46 -060058 struct udevice *bus = dev->parent;
59
Simon Glass1c6449c2019-12-29 21:19:14 -070060 /*
61 * This error indicates that @dev is a device on an unprobed PCI bus.
62 * The bus likely has bus=seq == -1, so the PCI_ADD_BUS() macro below
63 * will produce a bad BDF>
64 *
65 * A common cause of this problem is that this function is called in the
Simon Glassaad29ae2020-12-03 16:55:21 -070066 * of_to_plat() method of @dev. Accessing the PCI bus in that
Simon Glass1c6449c2019-12-29 21:19:14 -070067 * method is not allowed, since it has not yet been probed. To fix this,
68 * move that access to the probe() method of @dev instead.
69 */
70 if (!device_active(bus))
71 log_err("PCI: Device '%s' on unprobed bus '%s'\n", dev->name,
72 bus->name);
Simon Glass75e534b2020-12-16 21:20:07 -070073 return PCI_ADD_BUS(dev_seq(bus), pplat->devfn);
Simon Glassc9118d42015-07-06 16:47:46 -060074}
75
Simon Glassb94dc892015-03-05 12:25:25 -070076/**
77 * pci_get_bus_max() - returns the bus number of the last active bus
78 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010079 * Return: last bus number, or -1 if no active buses
Simon Glassb94dc892015-03-05 12:25:25 -070080 */
81static int pci_get_bus_max(void)
82{
83 struct udevice *bus;
84 struct uclass *uc;
85 int ret = -1;
86
87 ret = uclass_get(UCLASS_PCI, &uc);
88 uclass_foreach_dev(bus, uc) {
Simon Glass75e534b2020-12-16 21:20:07 -070089 if (dev_seq(bus) > ret)
90 ret = dev_seq(bus);
Simon Glassb94dc892015-03-05 12:25:25 -070091 }
92
93 debug("%s: ret=%d\n", __func__, ret);
94
95 return ret;
96}
97
98int pci_last_busno(void)
99{
Bin Meng5bc3f8a2015-10-01 00:36:01 -0700100 return pci_get_bus_max();
Simon Glassb94dc892015-03-05 12:25:25 -0700101}
102
103int pci_get_ff(enum pci_size_t size)
104{
105 switch (size) {
106 case PCI_SIZE_8:
107 return 0xff;
108 case PCI_SIZE_16:
109 return 0xffff;
110 default:
111 return 0xffffffff;
112 }
113}
114
Marek Vasutb4535792018-10-10 21:27:06 +0200115static void pci_dev_find_ofnode(struct udevice *bus, phys_addr_t bdf,
116 ofnode *rnode)
117{
118 struct fdt_pci_addr addr;
119 ofnode node;
120 int ret;
121
122 dev_for_each_subnode(node, bus) {
123 ret = ofnode_read_pci_addr(node, FDT_PCI_SPACE_CONFIG, "reg",
124 &addr);
125 if (ret)
126 continue;
127
128 if (PCI_MASK_BUS(addr.phys_hi) != PCI_MASK_BUS(bdf))
129 continue;
130
131 *rnode = node;
132 break;
133 }
134};
135
Simon Glass2a311e82020-01-27 08:49:37 -0700136int pci_bus_find_devfn(const struct udevice *bus, pci_dev_t find_devfn,
Simon Glassb94dc892015-03-05 12:25:25 -0700137 struct udevice **devp)
138{
139 struct udevice *dev;
140
141 for (device_find_first_child(bus, &dev);
142 dev;
143 device_find_next_child(&dev)) {
Simon Glassb75b15b2020-12-03 16:55:23 -0700144 struct pci_child_plat *pplat;
Simon Glassb94dc892015-03-05 12:25:25 -0700145
Simon Glass71fa5b42020-12-03 16:55:18 -0700146 pplat = dev_get_parent_plat(dev);
Simon Glassb94dc892015-03-05 12:25:25 -0700147 if (pplat && pplat->devfn == find_devfn) {
148 *devp = dev;
149 return 0;
150 }
151 }
152
153 return -ENODEV;
154}
155
Simon Glass84283d52015-11-29 13:17:48 -0700156int dm_pci_bus_find_bdf(pci_dev_t bdf, struct udevice **devp)
Simon Glassb94dc892015-03-05 12:25:25 -0700157{
158 struct udevice *bus;
159 int ret;
160
Simon Glass7d07e592015-08-31 18:55:35 -0600161 ret = pci_get_bus(PCI_BUS(bdf), &bus);
Simon Glassb94dc892015-03-05 12:25:25 -0700162 if (ret)
163 return ret;
164 return pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), devp);
165}
166
167static int pci_device_matches_ids(struct udevice *dev,
Simon Glass3f7dc6e2021-06-27 17:50:56 -0600168 const struct pci_device_id *ids)
Simon Glassb94dc892015-03-05 12:25:25 -0700169{
Simon Glassb75b15b2020-12-03 16:55:23 -0700170 struct pci_child_plat *pplat;
Simon Glassb94dc892015-03-05 12:25:25 -0700171 int i;
172
Simon Glass71fa5b42020-12-03 16:55:18 -0700173 pplat = dev_get_parent_plat(dev);
Simon Glassb94dc892015-03-05 12:25:25 -0700174 if (!pplat)
175 return -EINVAL;
176 for (i = 0; ids[i].vendor != 0; i++) {
177 if (pplat->vendor == ids[i].vendor &&
178 pplat->device == ids[i].device)
179 return i;
180 }
181
182 return -EINVAL;
183}
184
Simon Glass3f7dc6e2021-06-27 17:50:56 -0600185int pci_bus_find_devices(struct udevice *bus, const struct pci_device_id *ids,
Simon Glassb94dc892015-03-05 12:25:25 -0700186 int *indexp, struct udevice **devp)
187{
188 struct udevice *dev;
189
190 /* Scan all devices on this bus */
191 for (device_find_first_child(bus, &dev);
192 dev;
193 device_find_next_child(&dev)) {
194 if (pci_device_matches_ids(dev, ids) >= 0) {
195 if ((*indexp)-- <= 0) {
196 *devp = dev;
197 return 0;
198 }
199 }
200 }
201
202 return -ENODEV;
203}
204
Simon Glass3f7dc6e2021-06-27 17:50:56 -0600205int pci_find_device_id(const struct pci_device_id *ids, int index,
Simon Glassb94dc892015-03-05 12:25:25 -0700206 struct udevice **devp)
207{
208 struct udevice *bus;
209
210 /* Scan all known buses */
211 for (uclass_first_device(UCLASS_PCI, &bus);
212 bus;
213 uclass_next_device(&bus)) {
214 if (!pci_bus_find_devices(bus, ids, &index, devp))
215 return 0;
216 }
217 *devp = NULL;
218
219 return -ENODEV;
220}
221
Simon Glass70e0c582015-11-29 13:17:50 -0700222static int dm_pci_bus_find_device(struct udevice *bus, unsigned int vendor,
223 unsigned int device, int *indexp,
224 struct udevice **devp)
225{
Simon Glassb75b15b2020-12-03 16:55:23 -0700226 struct pci_child_plat *pplat;
Simon Glass70e0c582015-11-29 13:17:50 -0700227 struct udevice *dev;
228
229 for (device_find_first_child(bus, &dev);
230 dev;
231 device_find_next_child(&dev)) {
Simon Glass71fa5b42020-12-03 16:55:18 -0700232 pplat = dev_get_parent_plat(dev);
Simon Glass70e0c582015-11-29 13:17:50 -0700233 if (pplat->vendor == vendor && pplat->device == device) {
234 if (!(*indexp)--) {
235 *devp = dev;
236 return 0;
237 }
238 }
239 }
240
241 return -ENODEV;
242}
243
244int dm_pci_find_device(unsigned int vendor, unsigned int device, int index,
245 struct udevice **devp)
246{
247 struct udevice *bus;
248
249 /* Scan all known buses */
250 for (uclass_first_device(UCLASS_PCI, &bus);
251 bus;
252 uclass_next_device(&bus)) {
253 if (!dm_pci_bus_find_device(bus, vendor, device, &index, devp))
254 return device_probe(*devp);
255 }
256 *devp = NULL;
257
258 return -ENODEV;
259}
260
Simon Glassb639d512015-11-29 13:17:52 -0700261int dm_pci_find_class(uint find_class, int index, struct udevice **devp)
262{
263 struct udevice *dev;
264
265 /* Scan all known buses */
266 for (pci_find_first_device(&dev);
267 dev;
268 pci_find_next_device(&dev)) {
Simon Glassb75b15b2020-12-03 16:55:23 -0700269 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
Simon Glassb639d512015-11-29 13:17:52 -0700270
271 if (pplat->class == find_class && !index--) {
272 *devp = dev;
273 return device_probe(*devp);
274 }
275 }
276 *devp = NULL;
277
278 return -ENODEV;
279}
280
Simon Glassb94dc892015-03-05 12:25:25 -0700281int pci_bus_write_config(struct udevice *bus, pci_dev_t bdf, int offset,
282 unsigned long value, enum pci_size_t size)
283{
284 struct dm_pci_ops *ops;
285
286 ops = pci_get_ops(bus);
287 if (!ops->write_config)
288 return -ENOSYS;
289 return ops->write_config(bus, bdf, offset, value, size);
290}
291
Simon Glass9cec2df2016-03-06 19:27:52 -0700292int pci_bus_clrset_config32(struct udevice *bus, pci_dev_t bdf, int offset,
293 u32 clr, u32 set)
294{
295 ulong val;
296 int ret;
297
298 ret = pci_bus_read_config(bus, bdf, offset, &val, PCI_SIZE_32);
299 if (ret)
300 return ret;
301 val &= ~clr;
302 val |= set;
303
304 return pci_bus_write_config(bus, bdf, offset, val, PCI_SIZE_32);
305}
306
Vladimir Oltean278a5b52021-09-17 15:11:25 +0300307static int pci_write_config(pci_dev_t bdf, int offset, unsigned long value,
308 enum pci_size_t size)
Simon Glassb94dc892015-03-05 12:25:25 -0700309{
310 struct udevice *bus;
311 int ret;
312
Simon Glass7d07e592015-08-31 18:55:35 -0600313 ret = pci_get_bus(PCI_BUS(bdf), &bus);
Simon Glassb94dc892015-03-05 12:25:25 -0700314 if (ret)
315 return ret;
316
Bin Meng0a721522015-07-19 00:20:04 +0800317 return pci_bus_write_config(bus, bdf, offset, value, size);
Simon Glassb94dc892015-03-05 12:25:25 -0700318}
319
Simon Glass94ef2422015-08-10 07:05:03 -0600320int dm_pci_write_config(struct udevice *dev, int offset, unsigned long value,
321 enum pci_size_t size)
322{
323 struct udevice *bus;
324
Bin Meng05bedb12015-09-11 03:24:34 -0700325 for (bus = dev; device_is_on_pci_bus(bus);)
Simon Glass94ef2422015-08-10 07:05:03 -0600326 bus = bus->parent;
Simon Glasseaa14892015-11-29 13:17:47 -0700327 return pci_bus_write_config(bus, dm_pci_get_bdf(dev), offset, value,
328 size);
Simon Glass94ef2422015-08-10 07:05:03 -0600329}
330
Simon Glassb94dc892015-03-05 12:25:25 -0700331int pci_write_config32(pci_dev_t bdf, int offset, u32 value)
332{
333 return pci_write_config(bdf, offset, value, PCI_SIZE_32);
334}
335
336int pci_write_config16(pci_dev_t bdf, int offset, u16 value)
337{
338 return pci_write_config(bdf, offset, value, PCI_SIZE_16);
339}
340
341int pci_write_config8(pci_dev_t bdf, int offset, u8 value)
342{
343 return pci_write_config(bdf, offset, value, PCI_SIZE_8);
344}
345
Simon Glass94ef2422015-08-10 07:05:03 -0600346int dm_pci_write_config8(struct udevice *dev, int offset, u8 value)
347{
348 return dm_pci_write_config(dev, offset, value, PCI_SIZE_8);
349}
350
351int dm_pci_write_config16(struct udevice *dev, int offset, u16 value)
352{
353 return dm_pci_write_config(dev, offset, value, PCI_SIZE_16);
354}
355
356int dm_pci_write_config32(struct udevice *dev, int offset, u32 value)
357{
358 return dm_pci_write_config(dev, offset, value, PCI_SIZE_32);
359}
360
Simon Glassc92aac12020-01-27 08:49:38 -0700361int pci_bus_read_config(const struct udevice *bus, pci_dev_t bdf, int offset,
Simon Glassb94dc892015-03-05 12:25:25 -0700362 unsigned long *valuep, enum pci_size_t size)
363{
364 struct dm_pci_ops *ops;
365
366 ops = pci_get_ops(bus);
367 if (!ops->read_config)
368 return -ENOSYS;
369 return ops->read_config(bus, bdf, offset, valuep, size);
370}
371
Vladimir Oltean69c5f8a2021-09-17 15:11:26 +0300372static int pci_read_config(pci_dev_t bdf, int offset, unsigned long *valuep,
373 enum pci_size_t size)
Simon Glassb94dc892015-03-05 12:25:25 -0700374{
375 struct udevice *bus;
376 int ret;
377
Simon Glass7d07e592015-08-31 18:55:35 -0600378 ret = pci_get_bus(PCI_BUS(bdf), &bus);
Simon Glassb94dc892015-03-05 12:25:25 -0700379 if (ret)
380 return ret;
381
Bin Meng0a721522015-07-19 00:20:04 +0800382 return pci_bus_read_config(bus, bdf, offset, valuep, size);
Simon Glassb94dc892015-03-05 12:25:25 -0700383}
384
Simon Glassc92aac12020-01-27 08:49:38 -0700385int dm_pci_read_config(const struct udevice *dev, int offset,
386 unsigned long *valuep, enum pci_size_t size)
Simon Glass94ef2422015-08-10 07:05:03 -0600387{
Simon Glassc92aac12020-01-27 08:49:38 -0700388 const struct udevice *bus;
Simon Glass94ef2422015-08-10 07:05:03 -0600389
Bin Meng05bedb12015-09-11 03:24:34 -0700390 for (bus = dev; device_is_on_pci_bus(bus);)
Simon Glass94ef2422015-08-10 07:05:03 -0600391 bus = bus->parent;
Simon Glasseaa14892015-11-29 13:17:47 -0700392 return pci_bus_read_config(bus, dm_pci_get_bdf(dev), offset, valuep,
Simon Glass94ef2422015-08-10 07:05:03 -0600393 size);
394}
395
Simon Glassb94dc892015-03-05 12:25:25 -0700396int pci_read_config32(pci_dev_t bdf, int offset, u32 *valuep)
397{
398 unsigned long value;
399 int ret;
400
401 ret = pci_read_config(bdf, offset, &value, PCI_SIZE_32);
402 if (ret)
403 return ret;
404 *valuep = value;
405
406 return 0;
407}
408
409int pci_read_config16(pci_dev_t bdf, int offset, u16 *valuep)
410{
411 unsigned long value;
412 int ret;
413
414 ret = pci_read_config(bdf, offset, &value, PCI_SIZE_16);
415 if (ret)
416 return ret;
417 *valuep = value;
418
419 return 0;
420}
421
422int pci_read_config8(pci_dev_t bdf, int offset, u8 *valuep)
423{
424 unsigned long value;
425 int ret;
426
427 ret = pci_read_config(bdf, offset, &value, PCI_SIZE_8);
428 if (ret)
429 return ret;
430 *valuep = value;
431
432 return 0;
433}
434
Simon Glassc92aac12020-01-27 08:49:38 -0700435int dm_pci_read_config8(const struct udevice *dev, int offset, u8 *valuep)
Simon Glass94ef2422015-08-10 07:05:03 -0600436{
437 unsigned long value;
438 int ret;
439
440 ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_8);
441 if (ret)
442 return ret;
443 *valuep = value;
444
445 return 0;
446}
447
Simon Glassc92aac12020-01-27 08:49:38 -0700448int dm_pci_read_config16(const struct udevice *dev, int offset, u16 *valuep)
Simon Glass94ef2422015-08-10 07:05:03 -0600449{
450 unsigned long value;
451 int ret;
452
453 ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_16);
454 if (ret)
455 return ret;
456 *valuep = value;
457
458 return 0;
459}
460
Simon Glassc92aac12020-01-27 08:49:38 -0700461int dm_pci_read_config32(const struct udevice *dev, int offset, u32 *valuep)
Simon Glass94ef2422015-08-10 07:05:03 -0600462{
463 unsigned long value;
464 int ret;
465
466 ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_32);
467 if (ret)
468 return ret;
469 *valuep = value;
470
471 return 0;
472}
473
Simon Glass9cec2df2016-03-06 19:27:52 -0700474int dm_pci_clrset_config8(struct udevice *dev, int offset, u32 clr, u32 set)
475{
476 u8 val;
477 int ret;
478
479 ret = dm_pci_read_config8(dev, offset, &val);
480 if (ret)
481 return ret;
482 val &= ~clr;
483 val |= set;
484
485 return dm_pci_write_config8(dev, offset, val);
486}
487
488int dm_pci_clrset_config16(struct udevice *dev, int offset, u32 clr, u32 set)
489{
490 u16 val;
491 int ret;
492
493 ret = dm_pci_read_config16(dev, offset, &val);
494 if (ret)
495 return ret;
496 val &= ~clr;
497 val |= set;
498
499 return dm_pci_write_config16(dev, offset, val);
500}
501
502int dm_pci_clrset_config32(struct udevice *dev, int offset, u32 clr, u32 set)
503{
504 u32 val;
505 int ret;
506
507 ret = dm_pci_read_config32(dev, offset, &val);
508 if (ret)
509 return ret;
510 val &= ~clr;
511 val |= set;
512
513 return dm_pci_write_config32(dev, offset, val);
514}
515
Bin Menga0705782015-10-01 00:36:02 -0700516static void set_vga_bridge_bits(struct udevice *dev)
517{
518 struct udevice *parent = dev->parent;
519 u16 bc;
520
Simon Glass75e534b2020-12-16 21:20:07 -0700521 while (dev_seq(parent) != 0) {
Bin Menga0705782015-10-01 00:36:02 -0700522 dm_pci_read_config16(parent, PCI_BRIDGE_CONTROL, &bc);
523 bc |= PCI_BRIDGE_CTL_VGA;
524 dm_pci_write_config16(parent, PCI_BRIDGE_CONTROL, bc);
525 parent = parent->parent;
526 }
527}
528
Simon Glassb94dc892015-03-05 12:25:25 -0700529int pci_auto_config_devices(struct udevice *bus)
530{
Simon Glass95588622020-12-22 19:30:28 -0700531 struct pci_controller *hose = dev_get_uclass_priv(bus);
Simon Glassb75b15b2020-12-03 16:55:23 -0700532 struct pci_child_plat *pplat;
Simon Glassb94dc892015-03-05 12:25:25 -0700533 unsigned int sub_bus;
534 struct udevice *dev;
535 int ret;
536
Simon Glass75e534b2020-12-16 21:20:07 -0700537 sub_bus = dev_seq(bus);
Simon Glassb94dc892015-03-05 12:25:25 -0700538 debug("%s: start\n", __func__);
539 pciauto_config_init(hose);
540 for (ret = device_find_first_child(bus, &dev);
541 !ret && dev;
542 ret = device_find_next_child(&dev)) {
Simon Glassb94dc892015-03-05 12:25:25 -0700543 unsigned int max_bus;
Simon Glassb072d522015-09-08 17:52:47 -0600544 int ret;
Simon Glassb94dc892015-03-05 12:25:25 -0700545
Simon Glassb94dc892015-03-05 12:25:25 -0700546 debug("%s: device %s\n", __func__, dev->name);
Simon Glassf1d50f72020-12-19 10:40:13 -0700547 if (dev_has_ofnode(dev) &&
Suneel Garapatif8c86282020-05-04 21:25:25 -0700548 dev_read_bool(dev, "pci,no-autoconfig"))
Simon Glassf3005fb2020-04-08 16:57:26 -0600549 continue;
Simon Glass37a3f94b2015-11-29 13:17:49 -0700550 ret = dm_pciauto_config_device(dev);
Simon Glassb072d522015-09-08 17:52:47 -0600551 if (ret < 0)
Simon Glassbe706102020-12-16 21:20:18 -0700552 return log_msg_ret("auto", ret);
Simon Glassb072d522015-09-08 17:52:47 -0600553 max_bus = ret;
Simon Glassb94dc892015-03-05 12:25:25 -0700554 sub_bus = max(sub_bus, max_bus);
Bin Menga0705782015-10-01 00:36:02 -0700555
Masami Hiramatsu7ccdc672021-06-04 18:43:34 +0900556 if (dev_get_parent(dev) == bus)
557 continue;
558
Simon Glass71fa5b42020-12-03 16:55:18 -0700559 pplat = dev_get_parent_plat(dev);
Bin Menga0705782015-10-01 00:36:02 -0700560 if (pplat->class == (PCI_CLASS_DISPLAY_VGA << 8))
561 set_vga_bridge_bits(dev);
Simon Glassb94dc892015-03-05 12:25:25 -0700562 }
Pali RohĂĄr8b79e082022-01-17 16:38:37 +0100563 if (hose->last_busno < sub_bus)
564 hose->last_busno = sub_bus;
Simon Glassb94dc892015-03-05 12:25:25 -0700565 debug("%s: done\n", __func__);
566
Simon Glassbe706102020-12-16 21:20:18 -0700567 return log_msg_ret("sub", sub_bus);
Simon Glassb94dc892015-03-05 12:25:25 -0700568}
569
Tuomas Tynkkynen8cce4cf2017-09-19 23:18:03 +0300570int pci_generic_mmap_write_config(
Simon Glass2a311e82020-01-27 08:49:37 -0700571 const struct udevice *bus,
572 int (*addr_f)(const struct udevice *bus, pci_dev_t bdf, uint offset,
573 void **addrp),
Tuomas Tynkkynen8cce4cf2017-09-19 23:18:03 +0300574 pci_dev_t bdf,
575 uint offset,
576 ulong value,
577 enum pci_size_t size)
578{
579 void *address;
580
581 if (addr_f(bus, bdf, offset, &address) < 0)
582 return 0;
583
584 switch (size) {
585 case PCI_SIZE_8:
586 writeb(value, address);
587 return 0;
588 case PCI_SIZE_16:
589 writew(value, address);
590 return 0;
591 case PCI_SIZE_32:
592 writel(value, address);
593 return 0;
594 default:
595 return -EINVAL;
596 }
597}
598
599int pci_generic_mmap_read_config(
Simon Glass2a311e82020-01-27 08:49:37 -0700600 const struct udevice *bus,
601 int (*addr_f)(const struct udevice *bus, pci_dev_t bdf, uint offset,
602 void **addrp),
Tuomas Tynkkynen8cce4cf2017-09-19 23:18:03 +0300603 pci_dev_t bdf,
604 uint offset,
605 ulong *valuep,
606 enum pci_size_t size)
607{
608 void *address;
609
610 if (addr_f(bus, bdf, offset, &address) < 0) {
611 *valuep = pci_get_ff(size);
612 return 0;
613 }
614
615 switch (size) {
616 case PCI_SIZE_8:
617 *valuep = readb(address);
618 return 0;
619 case PCI_SIZE_16:
620 *valuep = readw(address);
621 return 0;
622 case PCI_SIZE_32:
623 *valuep = readl(address);
624 return 0;
625 default:
626 return -EINVAL;
627 }
628}
629
Simon Glass37a3f94b2015-11-29 13:17:49 -0700630int dm_pci_hose_probe_bus(struct udevice *bus)
Simon Glassb94dc892015-03-05 12:25:25 -0700631{
Pali RohĂĄr4fb65992021-10-07 14:50:58 +0200632 u8 header_type;
Simon Glassb94dc892015-03-05 12:25:25 -0700633 int sub_bus;
634 int ret;
Suneel Garapati1b9c44e2019-10-19 15:52:32 -0700635 int ea_pos;
636 u8 reg;
Simon Glassb94dc892015-03-05 12:25:25 -0700637
638 debug("%s\n", __func__);
Simon Glassb94dc892015-03-05 12:25:25 -0700639
Pali RohĂĄr4fb65992021-10-07 14:50:58 +0200640 dm_pci_read_config8(bus, PCI_HEADER_TYPE, &header_type);
641 header_type &= 0x7f;
642 if (header_type != PCI_HEADER_TYPE_BRIDGE) {
643 debug("%s: Skipping PCI device %d with Non-Bridge Header Type 0x%x\n",
644 __func__, PCI_DEV(dm_pci_get_bdf(bus)), header_type);
645 return log_msg_ret("probe", -EINVAL);
646 }
647
Suneel Garapati1b9c44e2019-10-19 15:52:32 -0700648 ea_pos = dm_pci_find_capability(bus, PCI_CAP_ID_EA);
649 if (ea_pos) {
650 dm_pci_read_config8(bus, ea_pos + sizeof(u32) + sizeof(u8),
651 &reg);
652 sub_bus = reg;
653 } else {
654 sub_bus = pci_get_bus_max() + 1;
655 }
Simon Glassb94dc892015-03-05 12:25:25 -0700656 debug("%s: bus = %d/%s\n", __func__, sub_bus, bus->name);
Simon Glass37a3f94b2015-11-29 13:17:49 -0700657 dm_pciauto_prescan_setup_bridge(bus, sub_bus);
Simon Glassb94dc892015-03-05 12:25:25 -0700658
659 ret = device_probe(bus);
660 if (ret) {
Simon Glass3b02d842015-09-08 17:52:48 -0600661 debug("%s: Cannot probe bus %s: %d\n", __func__, bus->name,
Simon Glassb94dc892015-03-05 12:25:25 -0700662 ret);
Simon Glassbe706102020-12-16 21:20:18 -0700663 return log_msg_ret("probe", ret);
Simon Glassb94dc892015-03-05 12:25:25 -0700664 }
Suneel Garapati1b9c44e2019-10-19 15:52:32 -0700665
Masami Hiramatsuff022452021-04-16 14:53:46 -0700666 if (!ea_pos)
667 sub_bus = pci_get_bus_max();
668
Simon Glass37a3f94b2015-11-29 13:17:49 -0700669 dm_pciauto_postscan_setup_bridge(bus, sub_bus);
Simon Glassb94dc892015-03-05 12:25:25 -0700670
671 return sub_bus;
672}
673
Simon Glass318d71c2015-07-06 16:47:44 -0600674/**
675 * pci_match_one_device - Tell if a PCI device structure has a matching
676 * PCI device id structure
677 * @id: single PCI device id structure to match
Hou Zhiqiangd19d0612017-03-22 16:07:24 +0800678 * @find: the PCI device id structure to match against
Simon Glass318d71c2015-07-06 16:47:44 -0600679 *
Hou Zhiqiangd19d0612017-03-22 16:07:24 +0800680 * Returns true if the finding pci_device_id structure matched or false if
681 * there is no match.
Simon Glass318d71c2015-07-06 16:47:44 -0600682 */
683static bool pci_match_one_id(const struct pci_device_id *id,
684 const struct pci_device_id *find)
685{
686 if ((id->vendor == PCI_ANY_ID || id->vendor == find->vendor) &&
687 (id->device == PCI_ANY_ID || id->device == find->device) &&
688 (id->subvendor == PCI_ANY_ID || id->subvendor == find->subvendor) &&
689 (id->subdevice == PCI_ANY_ID || id->subdevice == find->subdevice) &&
690 !((id->class ^ find->class) & id->class_mask))
691 return true;
692
693 return false;
694}
695
696/**
Simon Glass8807a562021-06-27 17:50:57 -0600697 * pci_need_device_pre_reloc() - Check if a device should be bound
698 *
699 * This checks a list of vendor/device-ID values indicating devices that should
700 * be bound before relocation.
701 *
702 * @bus: Bus to check
703 * @vendor: Vendor ID to check
704 * @device: Device ID to check
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100705 * Return: true if the vendor/device is in the list, false if not
Simon Glass8807a562021-06-27 17:50:57 -0600706 */
707static bool pci_need_device_pre_reloc(struct udevice *bus, uint vendor,
708 uint device)
709{
710 u32 vendev;
711 int index;
712
713 for (index = 0;
714 !dev_read_u32_index(bus, "u-boot,pci-pre-reloc", index,
715 &vendev);
716 index++) {
717 if (vendev == PCI_VENDEV(vendor, device))
718 return true;
719 }
720
721 return false;
722}
723
724/**
Simon Glass318d71c2015-07-06 16:47:44 -0600725 * pci_find_and_bind_driver() - Find and bind the right PCI driver
726 *
727 * This only looks at certain fields in the descriptor.
Simon Glassc45abf12015-09-08 17:52:49 -0600728 *
729 * @parent: Parent bus
730 * @find_id: Specification of the driver to find
731 * @bdf: Bus/device/function addreess - see PCI_BDF()
732 * @devp: Returns a pointer to the device created
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100733 * Return: 0 if OK, -EPERM if the device is not needed before relocation and
Simon Glassc45abf12015-09-08 17:52:49 -0600734 * therefore was not created, other -ve value on error
Simon Glass318d71c2015-07-06 16:47:44 -0600735 */
736static int pci_find_and_bind_driver(struct udevice *parent,
Simon Glassc45abf12015-09-08 17:52:49 -0600737 struct pci_device_id *find_id,
738 pci_dev_t bdf, struct udevice **devp)
Simon Glass318d71c2015-07-06 16:47:44 -0600739{
740 struct pci_driver_entry *start, *entry;
Marek Vasutb4535792018-10-10 21:27:06 +0200741 ofnode node = ofnode_null();
Simon Glass318d71c2015-07-06 16:47:44 -0600742 const char *drv;
743 int n_ents;
744 int ret;
745 char name[30], *str;
Bin Meng984c0dc2015-08-20 06:40:17 -0700746 bool bridge;
Simon Glass318d71c2015-07-06 16:47:44 -0600747
748 *devp = NULL;
749
750 debug("%s: Searching for driver: vendor=%x, device=%x\n", __func__,
751 find_id->vendor, find_id->device);
Marek Vasutb4535792018-10-10 21:27:06 +0200752
753 /* Determine optional OF node */
Suneel Garapaticb7093d2019-10-19 16:02:48 -0700754 if (ofnode_valid(dev_ofnode(parent)))
755 pci_dev_find_ofnode(parent, bdf, &node);
Marek Vasutb4535792018-10-10 21:27:06 +0200756
Michael Walle2e21f372019-12-01 17:45:18 +0100757 if (ofnode_valid(node) && !ofnode_is_available(node)) {
758 debug("%s: Ignoring disabled device\n", __func__);
Simon Glassbe706102020-12-16 21:20:18 -0700759 return log_msg_ret("dis", -EPERM);
Michael Walle2e21f372019-12-01 17:45:18 +0100760 }
761
Simon Glass318d71c2015-07-06 16:47:44 -0600762 start = ll_entry_start(struct pci_driver_entry, pci_driver_entry);
763 n_ents = ll_entry_count(struct pci_driver_entry, pci_driver_entry);
764 for (entry = start; entry != start + n_ents; entry++) {
765 const struct pci_device_id *id;
766 struct udevice *dev;
767 const struct driver *drv;
768
769 for (id = entry->match;
770 id->vendor || id->subvendor || id->class_mask;
771 id++) {
772 if (!pci_match_one_id(id, find_id))
773 continue;
774
775 drv = entry->driver;
Bin Meng984c0dc2015-08-20 06:40:17 -0700776
777 /*
778 * In the pre-relocation phase, we only bind devices
779 * whose driver has the DM_FLAG_PRE_RELOC set, to save
780 * precious memory space as on some platforms as that
781 * space is pretty limited (ie: using Cache As RAM).
782 */
783 if (!(gd->flags & GD_FLG_RELOC) &&
784 !(drv->flags & DM_FLAG_PRE_RELOC))
Simon Glassbe706102020-12-16 21:20:18 -0700785 return log_msg_ret("pre", -EPERM);
Bin Meng984c0dc2015-08-20 06:40:17 -0700786
Simon Glass318d71c2015-07-06 16:47:44 -0600787 /*
788 * We could pass the descriptor to the driver as
Simon Glass71fa5b42020-12-03 16:55:18 -0700789 * plat (instead of NULL) and allow its bind()
Simon Glass318d71c2015-07-06 16:47:44 -0600790 * method to return -ENOENT if it doesn't support this
791 * device. That way we could continue the search to
792 * find another driver. For now this doesn't seem
793 * necesssary, so just bind the first match.
794 */
Simon Glass884870f2020-11-28 17:50:01 -0700795 ret = device_bind(parent, drv, drv->name, NULL, node,
796 &dev);
Simon Glass318d71c2015-07-06 16:47:44 -0600797 if (ret)
798 goto error;
799 debug("%s: Match found: %s\n", __func__, drv->name);
Bin Menga8d27802018-08-03 01:14:44 -0700800 dev->driver_data = id->driver_data;
Simon Glass318d71c2015-07-06 16:47:44 -0600801 *devp = dev;
802 return 0;
803 }
804 }
805
Bin Meng984c0dc2015-08-20 06:40:17 -0700806 bridge = (find_id->class >> 8) == PCI_CLASS_BRIDGE_PCI;
807 /*
808 * In the pre-relocation phase, we only bind bridge devices to save
809 * precious memory space as on some platforms as that space is pretty
810 * limited (ie: using Cache As RAM).
811 */
Simon Glass8807a562021-06-27 17:50:57 -0600812 if (!(gd->flags & GD_FLG_RELOC) && !bridge &&
813 !pci_need_device_pre_reloc(parent, find_id->vendor,
814 find_id->device))
Simon Glassbe706102020-12-16 21:20:18 -0700815 return log_msg_ret("notbr", -EPERM);
Bin Meng984c0dc2015-08-20 06:40:17 -0700816
Simon Glass318d71c2015-07-06 16:47:44 -0600817 /* Bind a generic driver so that the device can be used */
Simon Glass75e534b2020-12-16 21:20:07 -0700818 sprintf(name, "pci_%x:%x.%x", dev_seq(parent), PCI_DEV(bdf),
Bin Meng0a721522015-07-19 00:20:04 +0800819 PCI_FUNC(bdf));
Simon Glass318d71c2015-07-06 16:47:44 -0600820 str = strdup(name);
821 if (!str)
822 return -ENOMEM;
Bin Meng984c0dc2015-08-20 06:40:17 -0700823 drv = bridge ? "pci_bridge_drv" : "pci_generic_drv";
824
Marek Vasutb4535792018-10-10 21:27:06 +0200825 ret = device_bind_driver_to_node(parent, drv, str, node, devp);
Simon Glass318d71c2015-07-06 16:47:44 -0600826 if (ret) {
Simon Glass3b02d842015-09-08 17:52:48 -0600827 debug("%s: Failed to bind generic driver: %d\n", __func__, ret);
xypron.glpk@gmx.dea89009c2017-05-08 20:40:16 +0200828 free(str);
Simon Glass318d71c2015-07-06 16:47:44 -0600829 return ret;
830 }
831 debug("%s: No match found: bound generic driver instead\n", __func__);
832
833 return 0;
834
835error:
836 debug("%s: No match found: error %d\n", __func__, ret);
837 return ret;
838}
839
Tim Harvey4c57bf72021-04-16 14:53:47 -0700840__weak extern void board_pci_fixup_dev(struct udevice *bus, struct udevice *dev)
841{
842}
843
Simon Glassb94dc892015-03-05 12:25:25 -0700844int pci_bind_bus_devices(struct udevice *bus)
845{
846 ulong vendor, device;
847 ulong header_type;
Bin Meng0a721522015-07-19 00:20:04 +0800848 pci_dev_t bdf, end;
Simon Glassb94dc892015-03-05 12:25:25 -0700849 bool found_multi;
Suneel Garapatia99a5eb2019-10-23 18:40:36 -0700850 int ari_off;
Simon Glassb94dc892015-03-05 12:25:25 -0700851 int ret;
852
853 found_multi = false;
Simon Glass75e534b2020-12-16 21:20:07 -0700854 end = PCI_BDF(dev_seq(bus), PCI_MAX_PCI_DEVICES - 1,
Bin Meng0a721522015-07-19 00:20:04 +0800855 PCI_MAX_PCI_FUNCTIONS - 1);
Simon Glass75e534b2020-12-16 21:20:07 -0700856 for (bdf = PCI_BDF(dev_seq(bus), 0, 0); bdf <= end;
Bin Meng0a721522015-07-19 00:20:04 +0800857 bdf += PCI_BDF(0, 0, 1)) {
Simon Glassb75b15b2020-12-03 16:55:23 -0700858 struct pci_child_plat *pplat;
Simon Glassb94dc892015-03-05 12:25:25 -0700859 struct udevice *dev;
860 ulong class;
861
Bin Meng20bdc1e2018-08-03 01:14:37 -0700862 if (!PCI_FUNC(bdf))
863 found_multi = false;
Bin Meng0a721522015-07-19 00:20:04 +0800864 if (PCI_FUNC(bdf) && !found_multi)
Simon Glassb94dc892015-03-05 12:25:25 -0700865 continue;
Hou Zhiqiangfb862b052018-10-08 16:35:47 +0800866
Simon Glassb94dc892015-03-05 12:25:25 -0700867 /* Check only the first access, we don't expect problems */
Hou Zhiqiangfb862b052018-10-08 16:35:47 +0800868 ret = pci_bus_read_config(bus, bdf, PCI_VENDOR_ID, &vendor,
869 PCI_SIZE_16);
Pali RohĂĄra8a520d2021-09-07 18:07:08 +0200870 if (ret || vendor == 0xffff || vendor == 0x0000)
Simon Glassb94dc892015-03-05 12:25:25 -0700871 continue;
872
Hou Zhiqiangfb862b052018-10-08 16:35:47 +0800873 pci_bus_read_config(bus, bdf, PCI_HEADER_TYPE,
874 &header_type, PCI_SIZE_8);
875
Bin Meng0a721522015-07-19 00:20:04 +0800876 if (!PCI_FUNC(bdf))
Simon Glassb94dc892015-03-05 12:25:25 -0700877 found_multi = header_type & 0x80;
878
Simon Glass25916d62019-09-25 08:56:12 -0600879 debug("%s: bus %d/%s: found device %x, function %d", __func__,
Simon Glass75e534b2020-12-16 21:20:07 -0700880 dev_seq(bus), bus->name, PCI_DEV(bdf), PCI_FUNC(bdf));
Bin Meng0a721522015-07-19 00:20:04 +0800881 pci_bus_read_config(bus, bdf, PCI_DEVICE_ID, &device,
Simon Glassb94dc892015-03-05 12:25:25 -0700882 PCI_SIZE_16);
Bin Meng0a721522015-07-19 00:20:04 +0800883 pci_bus_read_config(bus, bdf, PCI_CLASS_REVISION, &class,
Simon Glass318d71c2015-07-06 16:47:44 -0600884 PCI_SIZE_32);
885 class >>= 8;
Simon Glassb94dc892015-03-05 12:25:25 -0700886
887 /* Find this device in the device tree */
Bin Meng0a721522015-07-19 00:20:04 +0800888 ret = pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), &dev);
Simon Glass25916d62019-09-25 08:56:12 -0600889 debug(": find ret=%d\n", ret);
Simon Glassb94dc892015-03-05 12:25:25 -0700890
Simon Glass413ebdb2015-11-29 13:18:09 -0700891 /* If nothing in the device tree, bind a device */
Simon Glassb94dc892015-03-05 12:25:25 -0700892 if (ret == -ENODEV) {
Simon Glass318d71c2015-07-06 16:47:44 -0600893 struct pci_device_id find_id;
894 ulong val;
Simon Glassb94dc892015-03-05 12:25:25 -0700895
Simon Glass318d71c2015-07-06 16:47:44 -0600896 memset(&find_id, '\0', sizeof(find_id));
897 find_id.vendor = vendor;
898 find_id.device = device;
899 find_id.class = class;
900 if ((header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL) {
Bin Meng0a721522015-07-19 00:20:04 +0800901 pci_bus_read_config(bus, bdf,
Simon Glass318d71c2015-07-06 16:47:44 -0600902 PCI_SUBSYSTEM_VENDOR_ID,
903 &val, PCI_SIZE_32);
904 find_id.subvendor = val & 0xffff;
905 find_id.subdevice = val >> 16;
906 }
Bin Meng0a721522015-07-19 00:20:04 +0800907 ret = pci_find_and_bind_driver(bus, &find_id, bdf,
Simon Glass318d71c2015-07-06 16:47:44 -0600908 &dev);
Simon Glassb94dc892015-03-05 12:25:25 -0700909 }
Simon Glassc45abf12015-09-08 17:52:49 -0600910 if (ret == -EPERM)
911 continue;
912 else if (ret)
Simon Glassb94dc892015-03-05 12:25:25 -0700913 return ret;
914
915 /* Update the platform data */
Simon Glass71fa5b42020-12-03 16:55:18 -0700916 pplat = dev_get_parent_plat(dev);
Simon Glassc45abf12015-09-08 17:52:49 -0600917 pplat->devfn = PCI_MASK_BUS(bdf);
918 pplat->vendor = vendor;
919 pplat->device = device;
920 pplat->class = class;
Suneel Garapatia99a5eb2019-10-23 18:40:36 -0700921
922 if (IS_ENABLED(CONFIG_PCI_ARID)) {
923 ari_off = dm_pci_find_ext_capability(dev,
924 PCI_EXT_CAP_ID_ARI);
925 if (ari_off) {
926 u16 ari_cap;
927
928 /*
929 * Read Next Function number in ARI Cap
930 * Register
931 */
932 dm_pci_read_config16(dev, ari_off + 4,
933 &ari_cap);
934 /*
935 * Update next scan on this function number,
936 * subtract 1 in BDF to satisfy loop increment.
937 */
938 if (ari_cap & 0xff00) {
939 bdf = PCI_BDF(PCI_BUS(bdf),
940 PCI_DEV(ari_cap),
941 PCI_FUNC(ari_cap));
942 bdf = bdf - 0x100;
943 }
944 }
945 }
Tim Harvey4c57bf72021-04-16 14:53:47 -0700946
947 board_pci_fixup_dev(bus, dev);
Simon Glassb94dc892015-03-05 12:25:25 -0700948 }
949
950 return 0;
Simon Glassb94dc892015-03-05 12:25:25 -0700951}
952
Christian Gmeiner5f4e0942018-06-10 06:25:05 -0700953static void decode_regions(struct pci_controller *hose, ofnode parent_node,
954 ofnode node)
Simon Glassb94dc892015-03-05 12:25:25 -0700955{
956 int pci_addr_cells, addr_cells, size_cells;
957 int cells_per_record;
Stefan Roesebbc88462020-08-12 11:55:46 +0200958 struct bd_info *bd;
Simon Glassb94dc892015-03-05 12:25:25 -0700959 const u32 *prop;
Stefan Roese950864f2020-07-23 16:34:10 +0200960 int max_regions;
Simon Glassb94dc892015-03-05 12:25:25 -0700961 int len;
962 int i;
963
Masahiro Yamada9cf85cb2017-06-22 16:54:05 +0900964 prop = ofnode_get_property(node, "ranges", &len);
Christian Gmeiner5f4e0942018-06-10 06:25:05 -0700965 if (!prop) {
966 debug("%s: Cannot decode regions\n", __func__);
967 return;
968 }
969
Simon Glass4191dc12017-06-12 06:21:31 -0600970 pci_addr_cells = ofnode_read_simple_addr_cells(node);
971 addr_cells = ofnode_read_simple_addr_cells(parent_node);
972 size_cells = ofnode_read_simple_size_cells(node);
Simon Glassb94dc892015-03-05 12:25:25 -0700973
974 /* PCI addresses are always 3-cells */
975 len /= sizeof(u32);
976 cells_per_record = pci_addr_cells + addr_cells + size_cells;
977 hose->region_count = 0;
978 debug("%s: len=%d, cells_per_record=%d\n", __func__, len,
979 cells_per_record);
Stefan Roese950864f2020-07-23 16:34:10 +0200980
981 /* Dynamically allocate the regions array */
982 max_regions = len / cells_per_record + CONFIG_NR_DRAM_BANKS;
983 hose->regions = (struct pci_region *)
984 calloc(1, max_regions * sizeof(struct pci_region));
985
986 for (i = 0; i < max_regions; i++, len -= cells_per_record) {
Simon Glassb94dc892015-03-05 12:25:25 -0700987 u64 pci_addr, addr, size;
988 int space_code;
989 u32 flags;
990 int type;
Simon Glass7efc9ba2015-11-19 20:26:58 -0700991 int pos;
Simon Glassb94dc892015-03-05 12:25:25 -0700992
993 if (len < cells_per_record)
994 break;
995 flags = fdt32_to_cpu(prop[0]);
996 space_code = (flags >> 24) & 3;
997 pci_addr = fdtdec_get_number(prop + 1, 2);
998 prop += pci_addr_cells;
999 addr = fdtdec_get_number(prop, addr_cells);
1000 prop += addr_cells;
1001 size = fdtdec_get_number(prop, size_cells);
1002 prop += size_cells;
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001003 debug("%s: region %d, pci_addr=%llx, addr=%llx, size=%llx, space_code=%d\n",
1004 __func__, hose->region_count, pci_addr, addr, size, space_code);
Simon Glassb94dc892015-03-05 12:25:25 -07001005 if (space_code & 2) {
1006 type = flags & (1U << 30) ? PCI_REGION_PREFETCH :
1007 PCI_REGION_MEM;
1008 } else if (space_code & 1) {
1009 type = PCI_REGION_IO;
1010 } else {
1011 continue;
1012 }
Tuomas Tynkkynenc307e172018-05-14 18:47:50 +03001013
1014 if (!IS_ENABLED(CONFIG_SYS_PCI_64BIT) &&
1015 type == PCI_REGION_MEM && upper_32_bits(pci_addr)) {
Andrew Scullcb06f0e2022-04-21 16:11:07 +00001016 debug(" - pci_addr beyond the 32-bit boundary, ignoring\n");
1017 continue;
1018 }
1019
1020 if (!IS_ENABLED(CONFIG_PHYS_64BIT) && upper_32_bits(addr)) {
1021 debug(" - addr beyond the 32-bit boundary, ignoring\n");
1022 continue;
1023 }
1024
1025 if (~((pci_addr_t)0) - pci_addr < size) {
1026 debug(" - PCI range exceeds max address, ignoring\n");
1027 continue;
1028 }
1029
1030 if (~((phys_addr_t)0) - addr < size) {
1031 debug(" - phys range exceeds max address, ignoring\n");
Tuomas Tynkkynenc307e172018-05-14 18:47:50 +03001032 continue;
1033 }
1034
Simon Glass7efc9ba2015-11-19 20:26:58 -07001035 pos = -1;
Suneel Garapati3ac3aec2019-10-19 17:10:20 -07001036 if (!IS_ENABLED(CONFIG_PCI_REGION_MULTI_ENTRY)) {
1037 for (i = 0; i < hose->region_count; i++) {
1038 if (hose->regions[i].flags == type)
1039 pos = i;
1040 }
Simon Glass7efc9ba2015-11-19 20:26:58 -07001041 }
Suneel Garapati3ac3aec2019-10-19 17:10:20 -07001042
Simon Glass7efc9ba2015-11-19 20:26:58 -07001043 if (pos == -1)
1044 pos = hose->region_count++;
1045 debug(" - type=%d, pos=%d\n", type, pos);
1046 pci_set_region(hose->regions + pos, pci_addr, addr, size, type);
Simon Glassb94dc892015-03-05 12:25:25 -07001047 }
1048
1049 /* Add a region for our local memory */
Stefan Roesebbc88462020-08-12 11:55:46 +02001050 bd = gd->bd;
Bin Mengae0bdde2018-03-27 00:46:05 -07001051 if (!bd)
Christian Gmeiner5f4e0942018-06-10 06:25:05 -07001052 return;
Bin Mengae0bdde2018-03-27 00:46:05 -07001053
Bernhard Messerklinger9c5df382018-02-15 08:59:53 +01001054 for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
1055 if (bd->bi_dram[i].size) {
Daniel Schwierzeckf59925e2021-07-15 20:53:56 +02001056 phys_addr_t start = bd->bi_dram[i].start;
1057
1058 if (IS_ENABLED(CONFIG_PCI_MAP_SYSTEM_MEMORY))
1059 start = virt_to_phys((void *)(uintptr_t)bd->bi_dram[i].start);
1060
Bernhard Messerklinger9c5df382018-02-15 08:59:53 +01001061 pci_set_region(hose->regions + hose->region_count++,
Daniel Schwierzeckf59925e2021-07-15 20:53:56 +02001062 start, start, bd->bi_dram[i].size,
Bernhard Messerklinger9c5df382018-02-15 08:59:53 +01001063 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
1064 }
1065 }
Simon Glassb94dc892015-03-05 12:25:25 -07001066
Christian Gmeiner5f4e0942018-06-10 06:25:05 -07001067 return;
Simon Glassb94dc892015-03-05 12:25:25 -07001068}
1069
1070static int pci_uclass_pre_probe(struct udevice *bus)
1071{
1072 struct pci_controller *hose;
Simon Glassbe706102020-12-16 21:20:18 -07001073 struct uclass *uc;
1074 int ret;
Simon Glassb94dc892015-03-05 12:25:25 -07001075
Simon Glass75e534b2020-12-16 21:20:07 -07001076 debug("%s, bus=%d/%s, parent=%s\n", __func__, dev_seq(bus), bus->name,
Simon Glassb94dc892015-03-05 12:25:25 -07001077 bus->parent->name);
Simon Glass95588622020-12-22 19:30:28 -07001078 hose = dev_get_uclass_priv(bus);
Simon Glassb94dc892015-03-05 12:25:25 -07001079
Simon Glassbe706102020-12-16 21:20:18 -07001080 /*
1081 * Set the sequence number, if device_bind() doesn't. We want control
1082 * of this so that numbers are allocated as devices are probed. That
1083 * ensures that sub-bus numbered is correct (sub-buses must get numbers
1084 * higher than their parents)
1085 */
1086 if (dev_seq(bus) == -1) {
1087 ret = uclass_get(UCLASS_PCI, &uc);
1088 if (ret)
1089 return ret;
Simon Glass5e349922020-12-19 10:40:09 -07001090 bus->seq_ = uclass_find_next_free_seq(uc);
Simon Glassbe706102020-12-16 21:20:18 -07001091 }
1092
Simon Glassb94dc892015-03-05 12:25:25 -07001093 /* For bridges, use the top-level PCI controller */
Paul Burtone3b106d2016-09-08 07:47:32 +01001094 if (!device_is_on_pci_bus(bus)) {
Simon Glassb94dc892015-03-05 12:25:25 -07001095 hose->ctlr = bus;
Christian Gmeiner5f4e0942018-06-10 06:25:05 -07001096 decode_regions(hose, dev_ofnode(bus->parent), dev_ofnode(bus));
Simon Glassb94dc892015-03-05 12:25:25 -07001097 } else {
1098 struct pci_controller *parent_hose;
1099
1100 parent_hose = dev_get_uclass_priv(bus->parent);
1101 hose->ctlr = parent_hose->bus;
1102 }
Simon Glassbe706102020-12-16 21:20:18 -07001103
Simon Glassb94dc892015-03-05 12:25:25 -07001104 hose->bus = bus;
Simon Glass75e534b2020-12-16 21:20:07 -07001105 hose->first_busno = dev_seq(bus);
1106 hose->last_busno = dev_seq(bus);
Simon Glassf1d50f72020-12-19 10:40:13 -07001107 if (dev_has_ofnode(bus)) {
Suneel Garapatif8c86282020-05-04 21:25:25 -07001108 hose->skip_auto_config_until_reloc =
1109 dev_read_bool(bus,
1110 "u-boot,skip-auto-config-until-reloc");
1111 }
Simon Glassb94dc892015-03-05 12:25:25 -07001112
1113 return 0;
1114}
1115
1116static int pci_uclass_post_probe(struct udevice *bus)
1117{
Simon Glass68e35a72019-12-06 21:41:37 -07001118 struct pci_controller *hose = dev_get_uclass_priv(bus);
Simon Glassb94dc892015-03-05 12:25:25 -07001119 int ret;
1120
Simon Glass75e534b2020-12-16 21:20:07 -07001121 debug("%s: probing bus %d\n", __func__, dev_seq(bus));
Simon Glassb94dc892015-03-05 12:25:25 -07001122 ret = pci_bind_bus_devices(bus);
1123 if (ret)
Simon Glassbe706102020-12-16 21:20:18 -07001124 return log_msg_ret("bind", ret);
Simon Glassb94dc892015-03-05 12:25:25 -07001125
Simon Glassbd165e72020-04-26 09:12:56 -06001126 if (CONFIG_IS_ENABLED(PCI_PNP) && ll_boot_init() &&
Simon Glass68e35a72019-12-06 21:41:37 -07001127 (!hose->skip_auto_config_until_reloc ||
1128 (gd->flags & GD_FLG_RELOC))) {
1129 ret = pci_auto_config_devices(bus);
1130 if (ret < 0)
Simon Glassbe706102020-12-16 21:20:18 -07001131 return log_msg_ret("cfg", ret);
Simon Glass68e35a72019-12-06 21:41:37 -07001132 }
Simon Glassb94dc892015-03-05 12:25:25 -07001133
Bin Mengc0820a42015-08-20 06:40:23 -07001134#if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
1135 /*
1136 * Per Intel FSP specification, we should call FSP notify API to
1137 * inform FSP that PCI enumeration has been done so that FSP will
1138 * do any necessary initialization as required by the chipset's
1139 * BIOS Writer's Guide (BWG).
1140 *
1141 * Unfortunately we have to put this call here as with driver model,
1142 * the enumeration is all done on a lazy basis as needed, so until
1143 * something is touched on PCI it won't happen.
1144 *
1145 * Note we only call this 1) after U-Boot is relocated, and 2)
1146 * root bus has finished probing.
1147 */
Simon Glass75e534b2020-12-16 21:20:07 -07001148 if ((gd->flags & GD_FLG_RELOC) && dev_seq(bus) == 0 && ll_boot_init()) {
Bin Mengc0820a42015-08-20 06:40:23 -07001149 ret = fsp_init_phase_pci();
Simon Glassb072d522015-09-08 17:52:47 -06001150 if (ret)
Simon Glassbe706102020-12-16 21:20:18 -07001151 return log_msg_ret("fsp", ret);
Simon Glassb072d522015-09-08 17:52:47 -06001152 }
Bin Mengc0820a42015-08-20 06:40:23 -07001153#endif
1154
Simon Glassb072d522015-09-08 17:52:47 -06001155 return 0;
Simon Glassb94dc892015-03-05 12:25:25 -07001156}
1157
1158static int pci_uclass_child_post_bind(struct udevice *dev)
1159{
Simon Glassb75b15b2020-12-03 16:55:23 -07001160 struct pci_child_plat *pplat;
Simon Glassb94dc892015-03-05 12:25:25 -07001161
Simon Glassf1d50f72020-12-19 10:40:13 -07001162 if (!dev_has_ofnode(dev))
Simon Glassb94dc892015-03-05 12:25:25 -07001163 return 0;
1164
Simon Glass71fa5b42020-12-03 16:55:18 -07001165 pplat = dev_get_parent_plat(dev);
Bin Meng00d808e2018-08-03 01:14:36 -07001166
1167 /* Extract vendor id and device id if available */
1168 ofnode_read_pci_vendev(dev_ofnode(dev), &pplat->vendor, &pplat->device);
1169
1170 /* Extract the devfn from fdt_pci_addr */
Stefan Roesea74eb552019-01-25 11:52:42 +01001171 pplat->devfn = pci_get_devfn(dev);
Simon Glassb94dc892015-03-05 12:25:25 -07001172
1173 return 0;
1174}
1175
Simon Glass2a311e82020-01-27 08:49:37 -07001176static int pci_bridge_read_config(const struct udevice *bus, pci_dev_t bdf,
Bin Meng0a721522015-07-19 00:20:04 +08001177 uint offset, ulong *valuep,
1178 enum pci_size_t size)
Simon Glassb94dc892015-03-05 12:25:25 -07001179{
Simon Glass95588622020-12-22 19:30:28 -07001180 struct pci_controller *hose = dev_get_uclass_priv(bus);
Simon Glassb94dc892015-03-05 12:25:25 -07001181
1182 return pci_bus_read_config(hose->ctlr, bdf, offset, valuep, size);
1183}
1184
Bin Meng0a721522015-07-19 00:20:04 +08001185static int pci_bridge_write_config(struct udevice *bus, pci_dev_t bdf,
1186 uint offset, ulong value,
1187 enum pci_size_t size)
Simon Glassb94dc892015-03-05 12:25:25 -07001188{
Simon Glass95588622020-12-22 19:30:28 -07001189 struct pci_controller *hose = dev_get_uclass_priv(bus);
Simon Glassb94dc892015-03-05 12:25:25 -07001190
1191 return pci_bus_write_config(hose->ctlr, bdf, offset, value, size);
1192}
1193
Simon Glass04c8b6a2015-08-10 07:05:04 -06001194static int skip_to_next_device(struct udevice *bus, struct udevice **devp)
1195{
1196 struct udevice *dev;
1197 int ret = 0;
1198
1199 /*
1200 * Scan through all the PCI controllers. On x86 there will only be one
1201 * but that is not necessarily true on other hardware.
1202 */
1203 do {
1204 device_find_first_child(bus, &dev);
1205 if (dev) {
1206 *devp = dev;
1207 return 0;
1208 }
1209 ret = uclass_next_device(&bus);
1210 if (ret)
1211 return ret;
1212 } while (bus);
1213
1214 return 0;
1215}
1216
1217int pci_find_next_device(struct udevice **devp)
1218{
1219 struct udevice *child = *devp;
1220 struct udevice *bus = child->parent;
1221 int ret;
1222
1223 /* First try all the siblings */
1224 *devp = NULL;
1225 while (child) {
1226 device_find_next_child(&child);
1227 if (child) {
1228 *devp = child;
1229 return 0;
1230 }
1231 }
1232
1233 /* We ran out of siblings. Try the next bus */
1234 ret = uclass_next_device(&bus);
1235 if (ret)
1236 return ret;
1237
1238 return bus ? skip_to_next_device(bus, devp) : 0;
1239}
1240
1241int pci_find_first_device(struct udevice **devp)
1242{
1243 struct udevice *bus;
1244 int ret;
1245
1246 *devp = NULL;
1247 ret = uclass_first_device(UCLASS_PCI, &bus);
1248 if (ret)
1249 return ret;
1250
1251 return skip_to_next_device(bus, devp);
1252}
1253
Simon Glass27a733f2015-11-19 20:26:59 -07001254ulong pci_conv_32_to_size(ulong value, uint offset, enum pci_size_t size)
1255{
1256 switch (size) {
1257 case PCI_SIZE_8:
1258 return (value >> ((offset & 3) * 8)) & 0xff;
1259 case PCI_SIZE_16:
1260 return (value >> ((offset & 2) * 8)) & 0xffff;
1261 default:
1262 return value;
1263 }
1264}
1265
1266ulong pci_conv_size_to_32(ulong old, ulong value, uint offset,
1267 enum pci_size_t size)
1268{
1269 uint off_mask;
1270 uint val_mask, shift;
1271 ulong ldata, mask;
1272
1273 switch (size) {
1274 case PCI_SIZE_8:
1275 off_mask = 3;
1276 val_mask = 0xff;
1277 break;
1278 case PCI_SIZE_16:
1279 off_mask = 2;
1280 val_mask = 0xffff;
1281 break;
1282 default:
1283 return value;
1284 }
1285 shift = (offset & off_mask) * 8;
1286 ldata = (value & val_mask) << shift;
1287 mask = val_mask << shift;
1288 value = (old & ~mask) | ldata;
1289
1290 return value;
1291}
1292
Rayagonda Kokatanurcdc7ed32020-05-12 13:29:49 +05301293int pci_get_dma_regions(struct udevice *dev, struct pci_region *memp, int index)
1294{
1295 int pci_addr_cells, addr_cells, size_cells;
1296 int cells_per_record;
1297 const u32 *prop;
1298 int len;
1299 int i = 0;
1300
1301 prop = ofnode_get_property(dev_ofnode(dev), "dma-ranges", &len);
1302 if (!prop) {
1303 log_err("PCI: Device '%s': Cannot decode dma-ranges\n",
1304 dev->name);
1305 return -EINVAL;
1306 }
1307
1308 pci_addr_cells = ofnode_read_simple_addr_cells(dev_ofnode(dev));
1309 addr_cells = ofnode_read_simple_addr_cells(dev_ofnode(dev->parent));
1310 size_cells = ofnode_read_simple_size_cells(dev_ofnode(dev));
1311
1312 /* PCI addresses are always 3-cells */
1313 len /= sizeof(u32);
1314 cells_per_record = pci_addr_cells + addr_cells + size_cells;
1315 debug("%s: len=%d, cells_per_record=%d\n", __func__, len,
1316 cells_per_record);
1317
1318 while (len) {
1319 memp->bus_start = fdtdec_get_number(prop + 1, 2);
1320 prop += pci_addr_cells;
1321 memp->phys_start = fdtdec_get_number(prop, addr_cells);
1322 prop += addr_cells;
1323 memp->size = fdtdec_get_number(prop, size_cells);
1324 prop += size_cells;
1325
1326 if (i == index)
1327 return 0;
1328 i++;
1329 len -= cells_per_record;
1330 }
1331
1332 return -EINVAL;
1333}
1334
Simon Glassdcdc0122015-11-19 20:27:01 -07001335int pci_get_regions(struct udevice *dev, struct pci_region **iop,
1336 struct pci_region **memp, struct pci_region **prefp)
1337{
1338 struct udevice *bus = pci_get_controller(dev);
1339 struct pci_controller *hose = dev_get_uclass_priv(bus);
1340 int i;
1341
1342 *iop = NULL;
1343 *memp = NULL;
1344 *prefp = NULL;
1345 for (i = 0; i < hose->region_count; i++) {
1346 switch (hose->regions[i].flags) {
1347 case PCI_REGION_IO:
1348 if (!*iop || (*iop)->size < hose->regions[i].size)
1349 *iop = hose->regions + i;
1350 break;
1351 case PCI_REGION_MEM:
1352 if (!*memp || (*memp)->size < hose->regions[i].size)
1353 *memp = hose->regions + i;
1354 break;
1355 case (PCI_REGION_MEM | PCI_REGION_PREFETCH):
1356 if (!*prefp || (*prefp)->size < hose->regions[i].size)
1357 *prefp = hose->regions + i;
1358 break;
1359 }
1360 }
1361
1362 return (*iop != NULL) + (*memp != NULL) + (*prefp != NULL);
1363}
1364
Simon Glassc92aac12020-01-27 08:49:38 -07001365u32 dm_pci_read_bar32(const struct udevice *dev, int barnum)
Simon Glass3452cb12015-11-29 13:17:53 -07001366{
1367 u32 addr;
1368 int bar;
1369
1370 bar = PCI_BASE_ADDRESS_0 + barnum * 4;
1371 dm_pci_read_config32(dev, bar, &addr);
Simon Glass71fafd12020-04-09 10:27:36 -06001372
1373 /*
1374 * If we get an invalid address, return this so that comparisons with
1375 * FDT_ADDR_T_NONE work correctly
1376 */
1377 if (addr == 0xffffffff)
1378 return addr;
1379 else if (addr & PCI_BASE_ADDRESS_SPACE_IO)
Simon Glass3452cb12015-11-29 13:17:53 -07001380 return addr & PCI_BASE_ADDRESS_IO_MASK;
1381 else
1382 return addr & PCI_BASE_ADDRESS_MEM_MASK;
1383}
1384
Simon Glasse2b6b562016-01-18 20:19:15 -07001385void dm_pci_write_bar32(struct udevice *dev, int barnum, u32 addr)
1386{
1387 int bar;
1388
1389 bar = PCI_BASE_ADDRESS_0 + barnum * 4;
1390 dm_pci_write_config32(dev, bar, addr);
1391}
1392
Andrew Scull3bf61522022-04-21 16:11:08 +00001393static int _dm_pci_bus_to_phys(struct udevice *ctlr, pci_addr_t bus_addr,
1394 size_t len, unsigned long flags,
Simon Glassc5f053b2015-11-29 13:18:03 -07001395 unsigned long skip_mask, phys_addr_t *pa)
1396{
1397 struct pci_controller *hose = dev_get_uclass_priv(ctlr);
1398 struct pci_region *res;
Andrew Scull3bf61522022-04-21 16:11:08 +00001399 pci_addr_t offset;
Simon Glassc5f053b2015-11-29 13:18:03 -07001400 int i;
1401
Christian Gmeiner7241f802018-06-10 06:25:06 -07001402 if (hose->region_count == 0) {
1403 *pa = bus_addr;
1404 return 0;
1405 }
1406
Simon Glassc5f053b2015-11-29 13:18:03 -07001407 for (i = 0; i < hose->region_count; i++) {
1408 res = &hose->regions[i];
1409
1410 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
1411 continue;
1412
1413 if (res->flags & skip_mask)
1414 continue;
1415
Andrew Scull3bf61522022-04-21 16:11:08 +00001416 if (bus_addr < res->bus_start)
1417 continue;
1418
1419 offset = bus_addr - res->bus_start;
1420 if (offset >= res->size)
1421 continue;
1422
1423 if (len > res->size - offset)
1424 continue;
1425
1426 *pa = res->phys_start + offset;
1427 return 0;
Simon Glassc5f053b2015-11-29 13:18:03 -07001428 }
1429
1430 return 1;
1431}
1432
1433phys_addr_t dm_pci_bus_to_phys(struct udevice *dev, pci_addr_t bus_addr,
Andrew Scull3bf61522022-04-21 16:11:08 +00001434 size_t len, unsigned long flags)
Simon Glassc5f053b2015-11-29 13:18:03 -07001435{
1436 phys_addr_t phys_addr = 0;
1437 struct udevice *ctlr;
1438 int ret;
1439
1440 /* The root controller has the region information */
1441 ctlr = pci_get_controller(dev);
1442
1443 /*
1444 * if PCI_REGION_MEM is set we do a two pass search with preference
1445 * on matches that don't have PCI_REGION_SYS_MEMORY set
1446 */
1447 if ((flags & PCI_REGION_TYPE) == PCI_REGION_MEM) {
Andrew Scull3bf61522022-04-21 16:11:08 +00001448 ret = _dm_pci_bus_to_phys(ctlr, bus_addr, len,
Simon Glassc5f053b2015-11-29 13:18:03 -07001449 flags, PCI_REGION_SYS_MEMORY,
1450 &phys_addr);
1451 if (!ret)
1452 return phys_addr;
1453 }
1454
Andrew Scull3bf61522022-04-21 16:11:08 +00001455 ret = _dm_pci_bus_to_phys(ctlr, bus_addr, len, flags, 0, &phys_addr);
Simon Glassc5f053b2015-11-29 13:18:03 -07001456
1457 if (ret)
1458 puts("pci_hose_bus_to_phys: invalid physical address\n");
1459
1460 return phys_addr;
1461}
1462
Vladimir Oltean86fa8b02021-09-17 15:11:27 +03001463static int _dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t phys_addr,
Andrew Scull3bf61522022-04-21 16:11:08 +00001464 size_t len, unsigned long flags,
1465 unsigned long skip_mask, pci_addr_t *ba)
Simon Glassc5f053b2015-11-29 13:18:03 -07001466{
1467 struct pci_region *res;
1468 struct udevice *ctlr;
Andrew Scull3bf61522022-04-21 16:11:08 +00001469 phys_addr_t offset;
Simon Glassc5f053b2015-11-29 13:18:03 -07001470 int i;
1471 struct pci_controller *hose;
1472
1473 /* The root controller has the region information */
1474 ctlr = pci_get_controller(dev);
1475 hose = dev_get_uclass_priv(ctlr);
1476
Christian Gmeiner7241f802018-06-10 06:25:06 -07001477 if (hose->region_count == 0) {
1478 *ba = phys_addr;
1479 return 0;
1480 }
1481
Simon Glassc5f053b2015-11-29 13:18:03 -07001482 for (i = 0; i < hose->region_count; i++) {
1483 res = &hose->regions[i];
1484
1485 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
1486 continue;
1487
1488 if (res->flags & skip_mask)
1489 continue;
1490
Andrew Scull3bf61522022-04-21 16:11:08 +00001491 if (phys_addr < res->phys_start)
1492 continue;
1493
1494 offset = phys_addr - res->phys_start;
1495 if (offset >= res->size)
1496 continue;
Simon Glassc5f053b2015-11-29 13:18:03 -07001497
Andrew Scull3bf61522022-04-21 16:11:08 +00001498 if (len > res->size - offset)
1499 continue;
1500
1501 *ba = res->bus_start + offset;
1502 return 0;
Simon Glassc5f053b2015-11-29 13:18:03 -07001503 }
1504
1505 return 1;
1506}
1507
1508pci_addr_t dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t phys_addr,
Andrew Scull3bf61522022-04-21 16:11:08 +00001509 size_t len, unsigned long flags)
Simon Glassc5f053b2015-11-29 13:18:03 -07001510{
1511 pci_addr_t bus_addr = 0;
1512 int ret;
1513
1514 /*
1515 * if PCI_REGION_MEM is set we do a two pass search with preference
1516 * on matches that don't have PCI_REGION_SYS_MEMORY set
1517 */
1518 if ((flags & PCI_REGION_TYPE) == PCI_REGION_MEM) {
Andrew Scull3bf61522022-04-21 16:11:08 +00001519 ret = _dm_pci_phys_to_bus(dev, phys_addr, len, flags,
Simon Glassc5f053b2015-11-29 13:18:03 -07001520 PCI_REGION_SYS_MEMORY, &bus_addr);
1521 if (!ret)
1522 return bus_addr;
1523 }
1524
Andrew Scull3bf61522022-04-21 16:11:08 +00001525 ret = _dm_pci_phys_to_bus(dev, phys_addr, len, flags, 0, &bus_addr);
Simon Glassc5f053b2015-11-29 13:18:03 -07001526
1527 if (ret)
1528 puts("pci_hose_phys_to_bus: invalid physical address\n");
1529
1530 return bus_addr;
1531}
1532
Suneel Garapati5858ba82019-10-19 16:34:16 -07001533static phys_addr_t dm_pci_map_ea_virt(struct udevice *dev, int ea_off,
Simon Glassb75b15b2020-12-03 16:55:23 -07001534 struct pci_child_plat *pdata)
Suneel Garapati5858ba82019-10-19 16:34:16 -07001535{
1536 phys_addr_t addr = 0;
1537
1538 /*
1539 * In the case of a Virtual Function device using BAR
1540 * base and size, add offset for VFn BAR(1, 2, 3...n)
1541 */
1542 if (pdata->is_virtfn) {
1543 size_t sz;
1544 u32 ea_entry;
1545
1546 /* MaxOffset, 1st DW */
1547 dm_pci_read_config32(dev, ea_off + 8, &ea_entry);
1548 sz = ea_entry & PCI_EA_FIELD_MASK;
1549 /* Fill up lower 2 bits */
1550 sz |= (~PCI_EA_FIELD_MASK);
1551
1552 if (ea_entry & PCI_EA_IS_64) {
1553 /* MaxOffset 2nd DW */
1554 dm_pci_read_config32(dev, ea_off + 16, &ea_entry);
1555 sz |= ((u64)ea_entry) << 32;
1556 }
1557
1558 addr = (pdata->virtid - 1) * (sz + 1);
1559 }
1560
1561 return addr;
1562}
1563
Andrew Scull58c61022022-04-21 16:11:10 +00001564static void *dm_pci_map_ea_bar(struct udevice *dev, int bar, size_t offset,
1565 size_t len, int ea_off,
Andrew Scull30d338d2022-04-21 16:11:06 +00001566 struct pci_child_plat *pdata)
Alex Marginean1c934a62019-06-07 11:24:23 +03001567{
1568 int ea_cnt, i, entry_size;
1569 int bar_id = (bar - PCI_BASE_ADDRESS_0) >> 2;
1570 u32 ea_entry;
1571 phys_addr_t addr;
1572
Suneel Garapati5858ba82019-10-19 16:34:16 -07001573 if (IS_ENABLED(CONFIG_PCI_SRIOV)) {
1574 /*
1575 * In the case of a Virtual Function device, device is
1576 * Physical function, so pdata will point to required VF
1577 * specific data.
1578 */
1579 if (pdata->is_virtfn)
1580 bar_id += PCI_EA_BEI_VF_BAR0;
1581 }
1582
Alex Marginean1c934a62019-06-07 11:24:23 +03001583 /* EA capability structure header */
1584 dm_pci_read_config32(dev, ea_off, &ea_entry);
1585 ea_cnt = (ea_entry >> 16) & PCI_EA_NUM_ENT_MASK;
1586 ea_off += PCI_EA_FIRST_ENT;
1587
1588 for (i = 0; i < ea_cnt; i++, ea_off += entry_size) {
1589 /* Entry header */
1590 dm_pci_read_config32(dev, ea_off, &ea_entry);
1591 entry_size = ((ea_entry & PCI_EA_ES) + 1) << 2;
1592
1593 if (((ea_entry & PCI_EA_BEI) >> 4) != bar_id)
1594 continue;
1595
1596 /* Base address, 1st DW */
1597 dm_pci_read_config32(dev, ea_off + 4, &ea_entry);
1598 addr = ea_entry & PCI_EA_FIELD_MASK;
1599 if (ea_entry & PCI_EA_IS_64) {
1600 /* Base address, 2nd DW, skip over 4B MaxOffset */
1601 dm_pci_read_config32(dev, ea_off + 12, &ea_entry);
1602 addr |= ((u64)ea_entry) << 32;
1603 }
1604
Suneel Garapati5858ba82019-10-19 16:34:16 -07001605 if (IS_ENABLED(CONFIG_PCI_SRIOV))
1606 addr += dm_pci_map_ea_virt(dev, ea_off, pdata);
1607
Andrew Scull58c61022022-04-21 16:11:10 +00001608 if (~((phys_addr_t)0) - addr < offset)
1609 return NULL;
1610
Alex Marginean1c934a62019-06-07 11:24:23 +03001611 /* size ignored for now */
Andrew Scull58c61022022-04-21 16:11:10 +00001612 return map_physmem(addr + offset, len, MAP_NOCACHE);
Alex Marginean1c934a62019-06-07 11:24:23 +03001613 }
1614
1615 return 0;
1616}
1617
Andrew Scull58c61022022-04-21 16:11:10 +00001618void *dm_pci_map_bar(struct udevice *dev, int bar, size_t offset, size_t len,
1619 unsigned long flags)
Simon Glassc5f053b2015-11-29 13:18:03 -07001620{
Simon Glassb75b15b2020-12-03 16:55:23 -07001621 struct pci_child_plat *pdata = dev_get_parent_plat(dev);
Suneel Garapati5858ba82019-10-19 16:34:16 -07001622 struct udevice *udev = dev;
Simon Glassc5f053b2015-11-29 13:18:03 -07001623 pci_addr_t pci_bus_addr;
1624 u32 bar_response;
Alex Marginean1c934a62019-06-07 11:24:23 +03001625 int ea_off;
1626
Suneel Garapati5858ba82019-10-19 16:34:16 -07001627 if (IS_ENABLED(CONFIG_PCI_SRIOV)) {
1628 /*
1629 * In case of Virtual Function devices, use PF udevice
1630 * as EA capability is defined in Physical Function
1631 */
1632 if (pdata->is_virtfn)
1633 udev = pdata->pfdev;
1634 }
1635
Alex Marginean1c934a62019-06-07 11:24:23 +03001636 /*
1637 * if the function supports Enhanced Allocation use that instead of
1638 * BARs
Suneel Garapati5858ba82019-10-19 16:34:16 -07001639 * Incase of virtual functions, pdata will help read VF BEI
1640 * and EA entry size.
Alex Marginean1c934a62019-06-07 11:24:23 +03001641 */
Suneel Garapati5858ba82019-10-19 16:34:16 -07001642 ea_off = dm_pci_find_capability(udev, PCI_CAP_ID_EA);
Alex Marginean1c934a62019-06-07 11:24:23 +03001643 if (ea_off)
Andrew Scull58c61022022-04-21 16:11:10 +00001644 return dm_pci_map_ea_bar(udev, bar, offset, len, ea_off, pdata);
Simon Glassc5f053b2015-11-29 13:18:03 -07001645
1646 /* read BAR address */
Suneel Garapati5858ba82019-10-19 16:34:16 -07001647 dm_pci_read_config32(udev, bar, &bar_response);
Simon Glassc5f053b2015-11-29 13:18:03 -07001648 pci_bus_addr = (pci_addr_t)(bar_response & ~0xf);
1649
Andrew Scull58c61022022-04-21 16:11:10 +00001650 if (~((pci_addr_t)0) - pci_bus_addr < offset)
1651 return NULL;
1652
Simon Glassc5f053b2015-11-29 13:18:03 -07001653 /*
Andrew Scull58c61022022-04-21 16:11:10 +00001654 * Forward the length argument to dm_pci_bus_to_virt. The length will
1655 * be used to check that the entire address range has been declared as
1656 * a PCI range, but a better check would be to probe for the size of
1657 * the bar and prevent overflow more locally.
Simon Glassc5f053b2015-11-29 13:18:03 -07001658 */
Andrew Scull58c61022022-04-21 16:11:10 +00001659 return dm_pci_bus_to_virt(udev, pci_bus_addr + offset, flags, len,
1660 MAP_NOCACHE);
Simon Glassc5f053b2015-11-29 13:18:03 -07001661}
1662
Bin Meng631f3482018-10-15 02:21:21 -07001663static int _dm_pci_find_next_capability(struct udevice *dev, u8 pos, int cap)
Bin Menga7366f02018-08-03 01:14:52 -07001664{
Bin Menga7366f02018-08-03 01:14:52 -07001665 int ttl = PCI_FIND_CAP_TTL;
1666 u8 id;
1667 u16 ent;
Bin Menga7366f02018-08-03 01:14:52 -07001668
1669 dm_pci_read_config8(dev, pos, &pos);
Bin Meng631f3482018-10-15 02:21:21 -07001670
Bin Menga7366f02018-08-03 01:14:52 -07001671 while (ttl--) {
1672 if (pos < PCI_STD_HEADER_SIZEOF)
1673 break;
1674 pos &= ~3;
1675 dm_pci_read_config16(dev, pos, &ent);
1676
1677 id = ent & 0xff;
1678 if (id == 0xff)
1679 break;
1680 if (id == cap)
1681 return pos;
1682 pos = (ent >> 8);
1683 }
1684
1685 return 0;
1686}
1687
Bin Meng631f3482018-10-15 02:21:21 -07001688int dm_pci_find_next_capability(struct udevice *dev, u8 start, int cap)
1689{
1690 return _dm_pci_find_next_capability(dev, start + PCI_CAP_LIST_NEXT,
1691 cap);
1692}
1693
1694int dm_pci_find_capability(struct udevice *dev, int cap)
1695{
1696 u16 status;
1697 u8 header_type;
1698 u8 pos;
1699
1700 dm_pci_read_config16(dev, PCI_STATUS, &status);
1701 if (!(status & PCI_STATUS_CAP_LIST))
1702 return 0;
1703
1704 dm_pci_read_config8(dev, PCI_HEADER_TYPE, &header_type);
1705 if ((header_type & 0x7f) == PCI_HEADER_TYPE_CARDBUS)
1706 pos = PCI_CB_CAPABILITY_LIST;
1707 else
1708 pos = PCI_CAPABILITY_LIST;
1709
1710 return _dm_pci_find_next_capability(dev, pos, cap);
1711}
1712
1713int dm_pci_find_next_ext_capability(struct udevice *dev, int start, int cap)
Bin Menga7366f02018-08-03 01:14:52 -07001714{
1715 u32 header;
1716 int ttl;
1717 int pos = PCI_CFG_SPACE_SIZE;
1718
1719 /* minimum 8 bytes per capability */
1720 ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
1721
Bin Meng631f3482018-10-15 02:21:21 -07001722 if (start)
1723 pos = start;
1724
Bin Menga7366f02018-08-03 01:14:52 -07001725 dm_pci_read_config32(dev, pos, &header);
1726 /*
1727 * If we have no capabilities, this is indicated by cap ID,
1728 * cap version and next pointer all being 0.
1729 */
1730 if (header == 0)
1731 return 0;
1732
1733 while (ttl--) {
1734 if (PCI_EXT_CAP_ID(header) == cap)
1735 return pos;
1736
1737 pos = PCI_EXT_CAP_NEXT(header);
1738 if (pos < PCI_CFG_SPACE_SIZE)
1739 break;
1740
1741 dm_pci_read_config32(dev, pos, &header);
1742 }
1743
1744 return 0;
1745}
1746
Bin Meng631f3482018-10-15 02:21:21 -07001747int dm_pci_find_ext_capability(struct udevice *dev, int cap)
1748{
1749 return dm_pci_find_next_ext_capability(dev, 0, cap);
1750}
1751
Alex Marginean09467d32019-06-07 11:24:25 +03001752int dm_pci_flr(struct udevice *dev)
1753{
1754 int pcie_off;
1755 u32 cap;
1756
1757 /* look for PCI Express Capability */
1758 pcie_off = dm_pci_find_capability(dev, PCI_CAP_ID_EXP);
1759 if (!pcie_off)
1760 return -ENOENT;
1761
1762 /* check FLR capability */
1763 dm_pci_read_config32(dev, pcie_off + PCI_EXP_DEVCAP, &cap);
1764 if (!(cap & PCI_EXP_DEVCAP_FLR))
1765 return -ENOENT;
1766
1767 dm_pci_clrset_config16(dev, pcie_off + PCI_EXP_DEVCTL, 0,
1768 PCI_EXP_DEVCTL_BCR_FLR);
1769
1770 /* wait 100ms, per PCI spec */
1771 mdelay(100);
1772
1773 return 0;
1774}
1775
Suneel Garapati13822f72019-10-19 16:07:20 -07001776#if defined(CONFIG_PCI_SRIOV)
1777int pci_sriov_init(struct udevice *pdev, int vf_en)
1778{
1779 u16 vendor, device;
1780 struct udevice *bus;
1781 struct udevice *dev;
1782 pci_dev_t bdf;
1783 u16 ctrl;
1784 u16 num_vfs;
1785 u16 total_vf;
1786 u16 vf_offset;
1787 u16 vf_stride;
1788 int vf, ret;
1789 int pos;
1790
1791 pos = dm_pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
1792 if (!pos) {
1793 debug("Error: SRIOV capability not found\n");
1794 return -ENOENT;
1795 }
1796
1797 dm_pci_read_config16(pdev, pos + PCI_SRIOV_CTRL, &ctrl);
1798
1799 dm_pci_read_config16(pdev, pos + PCI_SRIOV_TOTAL_VF, &total_vf);
1800 if (vf_en > total_vf)
1801 vf_en = total_vf;
1802 dm_pci_write_config16(pdev, pos + PCI_SRIOV_NUM_VF, vf_en);
1803
1804 ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE;
1805 dm_pci_write_config16(pdev, pos + PCI_SRIOV_CTRL, ctrl);
1806
1807 dm_pci_read_config16(pdev, pos + PCI_SRIOV_NUM_VF, &num_vfs);
1808 if (num_vfs > vf_en)
1809 num_vfs = vf_en;
1810
1811 dm_pci_read_config16(pdev, pos + PCI_SRIOV_VF_OFFSET, &vf_offset);
1812 dm_pci_read_config16(pdev, pos + PCI_SRIOV_VF_STRIDE, &vf_stride);
1813
1814 dm_pci_read_config16(pdev, PCI_VENDOR_ID, &vendor);
1815 dm_pci_read_config16(pdev, pos + PCI_SRIOV_VF_DID, &device);
1816
1817 bdf = dm_pci_get_bdf(pdev);
1818
1819 pci_get_bus(PCI_BUS(bdf), &bus);
1820
1821 if (!bus)
1822 return -ENODEV;
1823
1824 bdf += PCI_BDF(0, 0, vf_offset);
1825
1826 for (vf = 0; vf < num_vfs; vf++) {
Simon Glassb75b15b2020-12-03 16:55:23 -07001827 struct pci_child_plat *pplat;
Suneel Garapati13822f72019-10-19 16:07:20 -07001828 ulong class;
1829
1830 pci_bus_read_config(bus, bdf, PCI_CLASS_DEVICE,
1831 &class, PCI_SIZE_16);
1832
1833 debug("%s: bus %d/%s: found VF %x:%x\n", __func__,
Simon Glass75e534b2020-12-16 21:20:07 -07001834 dev_seq(bus), bus->name, PCI_DEV(bdf), PCI_FUNC(bdf));
Suneel Garapati13822f72019-10-19 16:07:20 -07001835
1836 /* Find this device in the device tree */
1837 ret = pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), &dev);
1838
1839 if (ret == -ENODEV) {
1840 struct pci_device_id find_id;
1841
1842 memset(&find_id, '\0', sizeof(find_id));
1843 find_id.vendor = vendor;
1844 find_id.device = device;
1845 find_id.class = class;
1846
1847 ret = pci_find_and_bind_driver(bus, &find_id,
1848 bdf, &dev);
1849
1850 if (ret)
1851 return ret;
1852 }
1853
1854 /* Update the platform data */
Simon Glass71fa5b42020-12-03 16:55:18 -07001855 pplat = dev_get_parent_plat(dev);
Suneel Garapati13822f72019-10-19 16:07:20 -07001856 pplat->devfn = PCI_MASK_BUS(bdf);
1857 pplat->vendor = vendor;
1858 pplat->device = device;
1859 pplat->class = class;
1860 pplat->is_virtfn = true;
1861 pplat->pfdev = pdev;
1862 pplat->virtid = vf * vf_stride + vf_offset;
1863
1864 debug("%s: bus %d/%s: found VF %x:%x %x:%x class %lx id %x\n",
Simon Glass75e534b2020-12-16 21:20:07 -07001865 __func__, dev_seq(dev), dev->name, PCI_DEV(bdf),
Suneel Garapati13822f72019-10-19 16:07:20 -07001866 PCI_FUNC(bdf), vendor, device, class, pplat->virtid);
1867 bdf += PCI_BDF(0, 0, vf_stride);
1868 }
1869
1870 return 0;
1871}
1872
1873int pci_sriov_get_totalvfs(struct udevice *pdev)
1874{
1875 u16 total_vf;
1876 int pos;
1877
1878 pos = dm_pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
1879 if (!pos) {
1880 debug("Error: SRIOV capability not found\n");
1881 return -ENOENT;
1882 }
1883
1884 dm_pci_read_config16(pdev, pos + PCI_SRIOV_TOTAL_VF, &total_vf);
1885
1886 return total_vf;
1887}
1888#endif /* SRIOV */
1889
Simon Glassb94dc892015-03-05 12:25:25 -07001890UCLASS_DRIVER(pci) = {
1891 .id = UCLASS_PCI,
1892 .name = "pci",
Simon Glassbe706102020-12-16 21:20:18 -07001893 .flags = DM_UC_FLAG_SEQ_ALIAS | DM_UC_FLAG_NO_AUTO_SEQ,
Simon Glass18230342016-07-05 17:10:10 -06001894 .post_bind = dm_scan_fdt_dev,
Simon Glassb94dc892015-03-05 12:25:25 -07001895 .pre_probe = pci_uclass_pre_probe,
1896 .post_probe = pci_uclass_post_probe,
1897 .child_post_bind = pci_uclass_child_post_bind,
Simon Glass8a2b47f2020-12-03 16:55:17 -07001898 .per_device_auto = sizeof(struct pci_controller),
Simon Glassb75b15b2020-12-03 16:55:23 -07001899 .per_child_plat_auto = sizeof(struct pci_child_plat),
Simon Glassb94dc892015-03-05 12:25:25 -07001900};
1901
1902static const struct dm_pci_ops pci_bridge_ops = {
1903 .read_config = pci_bridge_read_config,
1904 .write_config = pci_bridge_write_config,
1905};
1906
1907static const struct udevice_id pci_bridge_ids[] = {
1908 { .compatible = "pci-bridge" },
1909 { }
1910};
1911
1912U_BOOT_DRIVER(pci_bridge_drv) = {
1913 .name = "pci_bridge_drv",
1914 .id = UCLASS_PCI,
1915 .of_match = pci_bridge_ids,
1916 .ops = &pci_bridge_ops,
1917};
1918
1919UCLASS_DRIVER(pci_generic) = {
1920 .id = UCLASS_PCI_GENERIC,
1921 .name = "pci_generic",
1922};
1923
1924static const struct udevice_id pci_generic_ids[] = {
1925 { .compatible = "pci-generic" },
1926 { }
1927};
1928
1929U_BOOT_DRIVER(pci_generic_drv) = {
1930 .name = "pci_generic_drv",
1931 .id = UCLASS_PCI_GENERIC,
1932 .of_match = pci_generic_ids,
1933};
Stephen Warren04eb2692016-01-26 11:10:11 -07001934
Ovidiu Panaite353edb2020-11-28 10:43:12 +02001935int pci_init(void)
Stephen Warren04eb2692016-01-26 11:10:11 -07001936{
1937 struct udevice *bus;
1938
1939 /*
1940 * Enumerate all known controller devices. Enumeration has the side-
1941 * effect of probing them, so PCIe devices will be enumerated too.
1942 */
Marek BehĂșn5df208d2019-05-21 12:04:31 +02001943 for (uclass_first_device_check(UCLASS_PCI, &bus);
Stephen Warren04eb2692016-01-26 11:10:11 -07001944 bus;
Marek BehĂșn5df208d2019-05-21 12:04:31 +02001945 uclass_next_device_check(&bus)) {
Stephen Warren04eb2692016-01-26 11:10:11 -07001946 ;
1947 }
Ovidiu Panaite353edb2020-11-28 10:43:12 +02001948
1949 return 0;
Stephen Warren04eb2692016-01-26 11:10:11 -07001950}