xref: /rk3399_rockchip-uboot/drivers/pci/pci-uclass.c (revision 2f6c020d95ebda22b28d3a31f574ec547a9281fb)
1 /*
2  * Copyright (c) 2014 Google, Inc
3  * Written by Simon Glass <sjg@chromium.org>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #include <common.h>
9 #include <dm.h>
10 #include <errno.h>
11 #include <inttypes.h>
12 #include <pci.h>
13 #include <asm/io.h>
14 #include <dm/device-internal.h>
15 #include <dm/lists.h>
16 #if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
17 #include <asm/fsp/fsp_support.h>
18 #endif
19 #include "pci_internal.h"
20 
21 DECLARE_GLOBAL_DATA_PTR;
22 
23 int pci_get_bus(int busnum, struct udevice **busp)
24 {
25 	int ret;
26 
27 	ret = uclass_get_device_by_seq(UCLASS_PCI, busnum, busp);
28 
29 	/* Since buses may not be numbered yet try a little harder with bus 0 */
30 	if (ret == -ENODEV) {
31 		ret = uclass_first_device_err(UCLASS_PCI, busp);
32 		if (ret)
33 			return ret;
34 		ret = uclass_get_device_by_seq(UCLASS_PCI, busnum, busp);
35 	}
36 
37 	return ret;
38 }
39 
40 struct udevice *pci_get_controller(struct udevice *dev)
41 {
42 	while (device_is_on_pci_bus(dev))
43 		dev = dev->parent;
44 
45 	return dev;
46 }
47 
48 pci_dev_t dm_pci_get_bdf(struct udevice *dev)
49 {
50 	struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
51 	struct udevice *bus = dev->parent;
52 
53 	return PCI_ADD_BUS(bus->seq, pplat->devfn);
54 }
55 
56 /**
57  * pci_get_bus_max() - returns the bus number of the last active bus
58  *
59  * @return last bus number, or -1 if no active buses
60  */
61 static int pci_get_bus_max(void)
62 {
63 	struct udevice *bus;
64 	struct uclass *uc;
65 	int ret = -1;
66 
67 	ret = uclass_get(UCLASS_PCI, &uc);
68 	uclass_foreach_dev(bus, uc) {
69 		if (bus->seq > ret)
70 			ret = bus->seq;
71 	}
72 
73 	debug("%s: ret=%d\n", __func__, ret);
74 
75 	return ret;
76 }
77 
78 int pci_last_busno(void)
79 {
80 	return pci_get_bus_max();
81 }
82 
83 int pci_get_ff(enum pci_size_t size)
84 {
85 	switch (size) {
86 	case PCI_SIZE_8:
87 		return 0xff;
88 	case PCI_SIZE_16:
89 		return 0xffff;
90 	default:
91 		return 0xffffffff;
92 	}
93 }
94 
95 int pci_bus_find_devfn(struct udevice *bus, pci_dev_t find_devfn,
96 		       struct udevice **devp)
97 {
98 	struct udevice *dev;
99 
100 	for (device_find_first_child(bus, &dev);
101 	     dev;
102 	     device_find_next_child(&dev)) {
103 		struct pci_child_platdata *pplat;
104 
105 		pplat = dev_get_parent_platdata(dev);
106 		if (pplat && pplat->devfn == find_devfn) {
107 			*devp = dev;
108 			return 0;
109 		}
110 	}
111 
112 	return -ENODEV;
113 }
114 
115 int dm_pci_bus_find_bdf(pci_dev_t bdf, struct udevice **devp)
116 {
117 	struct udevice *bus;
118 	int ret;
119 
120 	ret = pci_get_bus(PCI_BUS(bdf), &bus);
121 	if (ret)
122 		return ret;
123 	return pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), devp);
124 }
125 
126 static int pci_device_matches_ids(struct udevice *dev,
127 				  struct pci_device_id *ids)
128 {
129 	struct pci_child_platdata *pplat;
130 	int i;
131 
132 	pplat = dev_get_parent_platdata(dev);
133 	if (!pplat)
134 		return -EINVAL;
135 	for (i = 0; ids[i].vendor != 0; i++) {
136 		if (pplat->vendor == ids[i].vendor &&
137 		    pplat->device == ids[i].device)
138 			return i;
139 	}
140 
141 	return -EINVAL;
142 }
143 
144 int pci_bus_find_devices(struct udevice *bus, struct pci_device_id *ids,
145 			 int *indexp, struct udevice **devp)
146 {
147 	struct udevice *dev;
148 
149 	/* Scan all devices on this bus */
150 	for (device_find_first_child(bus, &dev);
151 	     dev;
152 	     device_find_next_child(&dev)) {
153 		if (pci_device_matches_ids(dev, ids) >= 0) {
154 			if ((*indexp)-- <= 0) {
155 				*devp = dev;
156 				return 0;
157 			}
158 		}
159 	}
160 
161 	return -ENODEV;
162 }
163 
164 int pci_find_device_id(struct pci_device_id *ids, int index,
165 		       struct udevice **devp)
166 {
167 	struct udevice *bus;
168 
169 	/* Scan all known buses */
170 	for (uclass_first_device(UCLASS_PCI, &bus);
171 	     bus;
172 	     uclass_next_device(&bus)) {
173 		if (!pci_bus_find_devices(bus, ids, &index, devp))
174 			return 0;
175 	}
176 	*devp = NULL;
177 
178 	return -ENODEV;
179 }
180 
181 static int dm_pci_bus_find_device(struct udevice *bus, unsigned int vendor,
182 				  unsigned int device, int *indexp,
183 				  struct udevice **devp)
184 {
185 	struct pci_child_platdata *pplat;
186 	struct udevice *dev;
187 
188 	for (device_find_first_child(bus, &dev);
189 	     dev;
190 	     device_find_next_child(&dev)) {
191 		pplat = dev_get_parent_platdata(dev);
192 		if (pplat->vendor == vendor && pplat->device == device) {
193 			if (!(*indexp)--) {
194 				*devp = dev;
195 				return 0;
196 			}
197 		}
198 	}
199 
200 	return -ENODEV;
201 }
202 
203 int dm_pci_find_device(unsigned int vendor, unsigned int device, int index,
204 		       struct udevice **devp)
205 {
206 	struct udevice *bus;
207 
208 	/* Scan all known buses */
209 	for (uclass_first_device(UCLASS_PCI, &bus);
210 	     bus;
211 	     uclass_next_device(&bus)) {
212 		if (!dm_pci_bus_find_device(bus, vendor, device, &index, devp))
213 			return device_probe(*devp);
214 	}
215 	*devp = NULL;
216 
217 	return -ENODEV;
218 }
219 
220 int dm_pci_find_class(uint find_class, int index, struct udevice **devp)
221 {
222 	struct udevice *dev;
223 
224 	/* Scan all known buses */
225 	for (pci_find_first_device(&dev);
226 	     dev;
227 	     pci_find_next_device(&dev)) {
228 		struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
229 
230 		if (pplat->class == find_class && !index--) {
231 			*devp = dev;
232 			return device_probe(*devp);
233 		}
234 	}
235 	*devp = NULL;
236 
237 	return -ENODEV;
238 }
239 
240 int pci_bus_write_config(struct udevice *bus, pci_dev_t bdf, int offset,
241 			 unsigned long value, enum pci_size_t size)
242 {
243 	struct dm_pci_ops *ops;
244 
245 	ops = pci_get_ops(bus);
246 	if (!ops->write_config)
247 		return -ENOSYS;
248 	return ops->write_config(bus, bdf, offset, value, size);
249 }
250 
251 int pci_bus_clrset_config32(struct udevice *bus, pci_dev_t bdf, int offset,
252 			    u32 clr, u32 set)
253 {
254 	ulong val;
255 	int ret;
256 
257 	ret = pci_bus_read_config(bus, bdf, offset, &val, PCI_SIZE_32);
258 	if (ret)
259 		return ret;
260 	val &= ~clr;
261 	val |= set;
262 
263 	return pci_bus_write_config(bus, bdf, offset, val, PCI_SIZE_32);
264 }
265 
266 int pci_write_config(pci_dev_t bdf, int offset, unsigned long value,
267 		     enum pci_size_t size)
268 {
269 	struct udevice *bus;
270 	int ret;
271 
272 	ret = pci_get_bus(PCI_BUS(bdf), &bus);
273 	if (ret)
274 		return ret;
275 
276 	return pci_bus_write_config(bus, bdf, offset, value, size);
277 }
278 
279 int dm_pci_write_config(struct udevice *dev, int offset, unsigned long value,
280 			enum pci_size_t size)
281 {
282 	struct udevice *bus;
283 
284 	for (bus = dev; device_is_on_pci_bus(bus);)
285 		bus = bus->parent;
286 	return pci_bus_write_config(bus, dm_pci_get_bdf(dev), offset, value,
287 				    size);
288 }
289 
290 int pci_write_config32(pci_dev_t bdf, int offset, u32 value)
291 {
292 	return pci_write_config(bdf, offset, value, PCI_SIZE_32);
293 }
294 
295 int pci_write_config16(pci_dev_t bdf, int offset, u16 value)
296 {
297 	return pci_write_config(bdf, offset, value, PCI_SIZE_16);
298 }
299 
300 int pci_write_config8(pci_dev_t bdf, int offset, u8 value)
301 {
302 	return pci_write_config(bdf, offset, value, PCI_SIZE_8);
303 }
304 
305 int dm_pci_write_config8(struct udevice *dev, int offset, u8 value)
306 {
307 	return dm_pci_write_config(dev, offset, value, PCI_SIZE_8);
308 }
309 
310 int dm_pci_write_config16(struct udevice *dev, int offset, u16 value)
311 {
312 	return dm_pci_write_config(dev, offset, value, PCI_SIZE_16);
313 }
314 
315 int dm_pci_write_config32(struct udevice *dev, int offset, u32 value)
316 {
317 	return dm_pci_write_config(dev, offset, value, PCI_SIZE_32);
318 }
319 
320 int pci_bus_read_config(struct udevice *bus, pci_dev_t bdf, int offset,
321 			unsigned long *valuep, enum pci_size_t size)
322 {
323 	struct dm_pci_ops *ops;
324 
325 	ops = pci_get_ops(bus);
326 	if (!ops->read_config)
327 		return -ENOSYS;
328 	return ops->read_config(bus, bdf, offset, valuep, size);
329 }
330 
331 int pci_read_config(pci_dev_t bdf, int offset, unsigned long *valuep,
332 		    enum pci_size_t size)
333 {
334 	struct udevice *bus;
335 	int ret;
336 
337 	ret = pci_get_bus(PCI_BUS(bdf), &bus);
338 	if (ret)
339 		return ret;
340 
341 	return pci_bus_read_config(bus, bdf, offset, valuep, size);
342 }
343 
344 int dm_pci_read_config(struct udevice *dev, int offset, unsigned long *valuep,
345 		       enum pci_size_t size)
346 {
347 	struct udevice *bus;
348 
349 	for (bus = dev; device_is_on_pci_bus(bus);)
350 		bus = bus->parent;
351 	return pci_bus_read_config(bus, dm_pci_get_bdf(dev), offset, valuep,
352 				   size);
353 }
354 
355 int pci_read_config32(pci_dev_t bdf, int offset, u32 *valuep)
356 {
357 	unsigned long value;
358 	int ret;
359 
360 	ret = pci_read_config(bdf, offset, &value, PCI_SIZE_32);
361 	if (ret)
362 		return ret;
363 	*valuep = value;
364 
365 	return 0;
366 }
367 
368 int pci_read_config16(pci_dev_t bdf, int offset, u16 *valuep)
369 {
370 	unsigned long value;
371 	int ret;
372 
373 	ret = pci_read_config(bdf, offset, &value, PCI_SIZE_16);
374 	if (ret)
375 		return ret;
376 	*valuep = value;
377 
378 	return 0;
379 }
380 
381 int pci_read_config8(pci_dev_t bdf, int offset, u8 *valuep)
382 {
383 	unsigned long value;
384 	int ret;
385 
386 	ret = pci_read_config(bdf, offset, &value, PCI_SIZE_8);
387 	if (ret)
388 		return ret;
389 	*valuep = value;
390 
391 	return 0;
392 }
393 
394 int dm_pci_read_config8(struct udevice *dev, int offset, u8 *valuep)
395 {
396 	unsigned long value;
397 	int ret;
398 
399 	ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_8);
400 	if (ret)
401 		return ret;
402 	*valuep = value;
403 
404 	return 0;
405 }
406 
407 int dm_pci_read_config16(struct udevice *dev, int offset, u16 *valuep)
408 {
409 	unsigned long value;
410 	int ret;
411 
412 	ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_16);
413 	if (ret)
414 		return ret;
415 	*valuep = value;
416 
417 	return 0;
418 }
419 
420 int dm_pci_read_config32(struct udevice *dev, int offset, u32 *valuep)
421 {
422 	unsigned long value;
423 	int ret;
424 
425 	ret = dm_pci_read_config(dev, offset, &value, PCI_SIZE_32);
426 	if (ret)
427 		return ret;
428 	*valuep = value;
429 
430 	return 0;
431 }
432 
433 int dm_pci_clrset_config8(struct udevice *dev, int offset, u32 clr, u32 set)
434 {
435 	u8 val;
436 	int ret;
437 
438 	ret = dm_pci_read_config8(dev, offset, &val);
439 	if (ret)
440 		return ret;
441 	val &= ~clr;
442 	val |= set;
443 
444 	return dm_pci_write_config8(dev, offset, val);
445 }
446 
447 int dm_pci_clrset_config16(struct udevice *dev, int offset, u32 clr, u32 set)
448 {
449 	u16 val;
450 	int ret;
451 
452 	ret = dm_pci_read_config16(dev, offset, &val);
453 	if (ret)
454 		return ret;
455 	val &= ~clr;
456 	val |= set;
457 
458 	return dm_pci_write_config16(dev, offset, val);
459 }
460 
461 int dm_pci_clrset_config32(struct udevice *dev, int offset, u32 clr, u32 set)
462 {
463 	u32 val;
464 	int ret;
465 
466 	ret = dm_pci_read_config32(dev, offset, &val);
467 	if (ret)
468 		return ret;
469 	val &= ~clr;
470 	val |= set;
471 
472 	return dm_pci_write_config32(dev, offset, val);
473 }
474 
475 static void set_vga_bridge_bits(struct udevice *dev)
476 {
477 	struct udevice *parent = dev->parent;
478 	u16 bc;
479 
480 	while (parent->seq != 0) {
481 		dm_pci_read_config16(parent, PCI_BRIDGE_CONTROL, &bc);
482 		bc |= PCI_BRIDGE_CTL_VGA;
483 		dm_pci_write_config16(parent, PCI_BRIDGE_CONTROL, bc);
484 		parent = parent->parent;
485 	}
486 }
487 
488 int pci_auto_config_devices(struct udevice *bus)
489 {
490 	struct pci_controller *hose = bus->uclass_priv;
491 	struct pci_child_platdata *pplat;
492 	unsigned int sub_bus;
493 	struct udevice *dev;
494 	int ret;
495 
496 	sub_bus = bus->seq;
497 	debug("%s: start\n", __func__);
498 	pciauto_config_init(hose);
499 	for (ret = device_find_first_child(bus, &dev);
500 	     !ret && dev;
501 	     ret = device_find_next_child(&dev)) {
502 		unsigned int max_bus;
503 		int ret;
504 
505 		debug("%s: device %s\n", __func__, dev->name);
506 		ret = dm_pciauto_config_device(dev);
507 		if (ret < 0)
508 			return ret;
509 		max_bus = ret;
510 		sub_bus = max(sub_bus, max_bus);
511 
512 		pplat = dev_get_parent_platdata(dev);
513 		if (pplat->class == (PCI_CLASS_DISPLAY_VGA << 8))
514 			set_vga_bridge_bits(dev);
515 	}
516 	debug("%s: done\n", __func__);
517 
518 	return sub_bus;
519 }
520 
521 int dm_pci_hose_probe_bus(struct udevice *bus)
522 {
523 	int sub_bus;
524 	int ret;
525 
526 	debug("%s\n", __func__);
527 
528 	sub_bus = pci_get_bus_max() + 1;
529 	debug("%s: bus = %d/%s\n", __func__, sub_bus, bus->name);
530 	dm_pciauto_prescan_setup_bridge(bus, sub_bus);
531 
532 	ret = device_probe(bus);
533 	if (ret) {
534 		debug("%s: Cannot probe bus %s: %d\n", __func__, bus->name,
535 		      ret);
536 		return ret;
537 	}
538 	if (sub_bus != bus->seq) {
539 		printf("%s: Internal error, bus '%s' got seq %d, expected %d\n",
540 		       __func__, bus->name, bus->seq, sub_bus);
541 		return -EPIPE;
542 	}
543 	sub_bus = pci_get_bus_max();
544 	dm_pciauto_postscan_setup_bridge(bus, sub_bus);
545 
546 	return sub_bus;
547 }
548 
549 /**
550  * pci_match_one_device - Tell if a PCI device structure has a matching
551  *                        PCI device id structure
552  * @id: single PCI device id structure to match
553  * @find: the PCI device id structure to match against
554  *
555  * Returns true if the finding pci_device_id structure matched or false if
556  * there is no match.
557  */
558 static bool pci_match_one_id(const struct pci_device_id *id,
559 			     const struct pci_device_id *find)
560 {
561 	if ((id->vendor == PCI_ANY_ID || id->vendor == find->vendor) &&
562 	    (id->device == PCI_ANY_ID || id->device == find->device) &&
563 	    (id->subvendor == PCI_ANY_ID || id->subvendor == find->subvendor) &&
564 	    (id->subdevice == PCI_ANY_ID || id->subdevice == find->subdevice) &&
565 	    !((id->class ^ find->class) & id->class_mask))
566 		return true;
567 
568 	return false;
569 }
570 
571 /**
572  * pci_find_and_bind_driver() - Find and bind the right PCI driver
573  *
574  * This only looks at certain fields in the descriptor.
575  *
576  * @parent:	Parent bus
577  * @find_id:	Specification of the driver to find
578  * @bdf:	Bus/device/function addreess - see PCI_BDF()
579  * @devp:	Returns a pointer to the device created
580  * @return 0 if OK, -EPERM if the device is not needed before relocation and
581  *	   therefore was not created, other -ve value on error
582  */
583 static int pci_find_and_bind_driver(struct udevice *parent,
584 				    struct pci_device_id *find_id,
585 				    pci_dev_t bdf, struct udevice **devp)
586 {
587 	struct pci_driver_entry *start, *entry;
588 	const char *drv;
589 	int n_ents;
590 	int ret;
591 	char name[30], *str;
592 	bool bridge;
593 
594 	*devp = NULL;
595 
596 	debug("%s: Searching for driver: vendor=%x, device=%x\n", __func__,
597 	      find_id->vendor, find_id->device);
598 	start = ll_entry_start(struct pci_driver_entry, pci_driver_entry);
599 	n_ents = ll_entry_count(struct pci_driver_entry, pci_driver_entry);
600 	for (entry = start; entry != start + n_ents; entry++) {
601 		const struct pci_device_id *id;
602 		struct udevice *dev;
603 		const struct driver *drv;
604 
605 		for (id = entry->match;
606 		     id->vendor || id->subvendor || id->class_mask;
607 		     id++) {
608 			if (!pci_match_one_id(id, find_id))
609 				continue;
610 
611 			drv = entry->driver;
612 
613 			/*
614 			 * In the pre-relocation phase, we only bind devices
615 			 * whose driver has the DM_FLAG_PRE_RELOC set, to save
616 			 * precious memory space as on some platforms as that
617 			 * space is pretty limited (ie: using Cache As RAM).
618 			 */
619 			if (!(gd->flags & GD_FLG_RELOC) &&
620 			    !(drv->flags & DM_FLAG_PRE_RELOC))
621 				return -EPERM;
622 
623 			/*
624 			 * We could pass the descriptor to the driver as
625 			 * platdata (instead of NULL) and allow its bind()
626 			 * method to return -ENOENT if it doesn't support this
627 			 * device. That way we could continue the search to
628 			 * find another driver. For now this doesn't seem
629 			 * necesssary, so just bind the first match.
630 			 */
631 			ret = device_bind(parent, drv, drv->name, NULL, -1,
632 					  &dev);
633 			if (ret)
634 				goto error;
635 			debug("%s: Match found: %s\n", __func__, drv->name);
636 			dev->driver_data = find_id->driver_data;
637 			*devp = dev;
638 			return 0;
639 		}
640 	}
641 
642 	bridge = (find_id->class >> 8) == PCI_CLASS_BRIDGE_PCI;
643 	/*
644 	 * In the pre-relocation phase, we only bind bridge devices to save
645 	 * precious memory space as on some platforms as that space is pretty
646 	 * limited (ie: using Cache As RAM).
647 	 */
648 	if (!(gd->flags & GD_FLG_RELOC) && !bridge)
649 		return -EPERM;
650 
651 	/* Bind a generic driver so that the device can be used */
652 	sprintf(name, "pci_%x:%x.%x", parent->seq, PCI_DEV(bdf),
653 		PCI_FUNC(bdf));
654 	str = strdup(name);
655 	if (!str)
656 		return -ENOMEM;
657 	drv = bridge ? "pci_bridge_drv" : "pci_generic_drv";
658 
659 	ret = device_bind_driver(parent, drv, str, devp);
660 	if (ret) {
661 		debug("%s: Failed to bind generic driver: %d\n", __func__, ret);
662 		free(str);
663 		return ret;
664 	}
665 	debug("%s: No match found: bound generic driver instead\n", __func__);
666 
667 	return 0;
668 
669 error:
670 	debug("%s: No match found: error %d\n", __func__, ret);
671 	return ret;
672 }
673 
674 int pci_bind_bus_devices(struct udevice *bus)
675 {
676 	ulong vendor, device;
677 	ulong header_type;
678 	pci_dev_t bdf, end;
679 	bool found_multi;
680 	int ret;
681 
682 	found_multi = false;
683 	end = PCI_BDF(bus->seq, PCI_MAX_PCI_DEVICES - 1,
684 		      PCI_MAX_PCI_FUNCTIONS - 1);
685 	for (bdf = PCI_BDF(bus->seq, 0, 0); bdf <= end;
686 	     bdf += PCI_BDF(0, 0, 1)) {
687 		struct pci_child_platdata *pplat;
688 		struct udevice *dev;
689 		ulong class;
690 
691 		if (PCI_FUNC(bdf) && !found_multi)
692 			continue;
693 		/* Check only the first access, we don't expect problems */
694 		ret = pci_bus_read_config(bus, bdf, PCI_HEADER_TYPE,
695 					  &header_type, PCI_SIZE_8);
696 		if (ret)
697 			goto error;
698 		pci_bus_read_config(bus, bdf, PCI_VENDOR_ID, &vendor,
699 				    PCI_SIZE_16);
700 		if (vendor == 0xffff || vendor == 0x0000)
701 			continue;
702 
703 		if (!PCI_FUNC(bdf))
704 			found_multi = header_type & 0x80;
705 
706 		debug("%s: bus %d/%s: found device %x, function %d\n", __func__,
707 		      bus->seq, bus->name, PCI_DEV(bdf), PCI_FUNC(bdf));
708 		pci_bus_read_config(bus, bdf, PCI_DEVICE_ID, &device,
709 				    PCI_SIZE_16);
710 		pci_bus_read_config(bus, bdf, PCI_CLASS_REVISION, &class,
711 				    PCI_SIZE_32);
712 		class >>= 8;
713 
714 		/* Find this device in the device tree */
715 		ret = pci_bus_find_devfn(bus, PCI_MASK_BUS(bdf), &dev);
716 
717 		/* If nothing in the device tree, bind a device */
718 		if (ret == -ENODEV) {
719 			struct pci_device_id find_id;
720 			ulong val;
721 
722 			memset(&find_id, '\0', sizeof(find_id));
723 			find_id.vendor = vendor;
724 			find_id.device = device;
725 			find_id.class = class;
726 			if ((header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL) {
727 				pci_bus_read_config(bus, bdf,
728 						    PCI_SUBSYSTEM_VENDOR_ID,
729 						    &val, PCI_SIZE_32);
730 				find_id.subvendor = val & 0xffff;
731 				find_id.subdevice = val >> 16;
732 			}
733 			ret = pci_find_and_bind_driver(bus, &find_id, bdf,
734 						       &dev);
735 		}
736 		if (ret == -EPERM)
737 			continue;
738 		else if (ret)
739 			return ret;
740 
741 		/* Update the platform data */
742 		pplat = dev_get_parent_platdata(dev);
743 		pplat->devfn = PCI_MASK_BUS(bdf);
744 		pplat->vendor = vendor;
745 		pplat->device = device;
746 		pplat->class = class;
747 	}
748 
749 	return 0;
750 error:
751 	printf("Cannot read bus configuration: %d\n", ret);
752 
753 	return ret;
754 }
755 
756 static int decode_regions(struct pci_controller *hose, ofnode parent_node,
757 			  ofnode node)
758 {
759 	int pci_addr_cells, addr_cells, size_cells;
760 	phys_addr_t base = 0, size;
761 	int cells_per_record;
762 	const u32 *prop;
763 	int len;
764 	int i;
765 
766 	prop = ofnode_get_property(node, "ranges", &len);
767 	if (!prop)
768 		return -EINVAL;
769 	pci_addr_cells = ofnode_read_simple_addr_cells(node);
770 	addr_cells = ofnode_read_simple_addr_cells(parent_node);
771 	size_cells = ofnode_read_simple_size_cells(node);
772 
773 	/* PCI addresses are always 3-cells */
774 	len /= sizeof(u32);
775 	cells_per_record = pci_addr_cells + addr_cells + size_cells;
776 	hose->region_count = 0;
777 	debug("%s: len=%d, cells_per_record=%d\n", __func__, len,
778 	      cells_per_record);
779 	for (i = 0; i < MAX_PCI_REGIONS; i++, len -= cells_per_record) {
780 		u64 pci_addr, addr, size;
781 		int space_code;
782 		u32 flags;
783 		int type;
784 		int pos;
785 
786 		if (len < cells_per_record)
787 			break;
788 		flags = fdt32_to_cpu(prop[0]);
789 		space_code = (flags >> 24) & 3;
790 		pci_addr = fdtdec_get_number(prop + 1, 2);
791 		prop += pci_addr_cells;
792 		addr = fdtdec_get_number(prop, addr_cells);
793 		prop += addr_cells;
794 		size = fdtdec_get_number(prop, size_cells);
795 		prop += size_cells;
796 		debug("%s: region %d, pci_addr=%" PRIx64 ", addr=%" PRIx64
797 		      ", size=%" PRIx64 ", space_code=%d\n", __func__,
798 		      hose->region_count, pci_addr, addr, size, space_code);
799 		if (space_code & 2) {
800 			type = flags & (1U << 30) ? PCI_REGION_PREFETCH :
801 					PCI_REGION_MEM;
802 #ifndef CONFIG_SYS_PCI_64BIT
803 			if (upper_32_bits(pci_addr))
804 				continue;
805 #endif
806 		} else if (space_code & 1) {
807 			type = PCI_REGION_IO;
808 		} else {
809 			continue;
810 		}
811 		pos = -1;
812 		for (i = 0; i < hose->region_count; i++) {
813 			if (hose->regions[i].flags == type) {
814 #if defined(CONFIG_SYS_PCI_64BIT)
815 				if (type == PCI_REGION_MEM) {
816 					if ((upper_32_bits(pci_addr) &&
817 					    !upper_32_bits(hose->regions[i].bus_start)) ||
818 					    (!upper_32_bits(pci_addr) &&
819 					    upper_32_bits(hose->regions[i].bus_start)))
820 					    continue;
821 				}
822 #endif
823 				pos = i;
824 			}
825 		}
826 		if (pos == -1)
827 			pos = hose->region_count++;
828 		debug(" - type=%d, pos=%d\n", type, pos);
829 		pci_set_region(hose->regions + pos, pci_addr, addr, size, type);
830 	}
831 
832 	/* Add a region for our local memory */
833 	size = gd->ram_size;
834 #ifdef CONFIG_SYS_SDRAM_BASE
835 	base = CONFIG_SYS_SDRAM_BASE;
836 #endif
837 	if (gd->pci_ram_top && gd->pci_ram_top < base + size)
838 		size = gd->pci_ram_top - base;
839 	pci_set_region(hose->regions + hose->region_count++, base, base,
840 		       size, PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
841 
842 	return 0;
843 }
844 
845 static int pci_uclass_pre_probe(struct udevice *bus)
846 {
847 	struct pci_controller *hose;
848 	int ret;
849 
850 	debug("%s, bus=%d/%s, parent=%s\n", __func__, bus->seq, bus->name,
851 	      bus->parent->name);
852 	hose = bus->uclass_priv;
853 
854 	/* For bridges, use the top-level PCI controller */
855 	if (!device_is_on_pci_bus(bus)) {
856 		hose->ctlr = bus;
857 		ret = decode_regions(hose, dev_ofnode(bus->parent),
858 				     dev_ofnode(bus));
859 		if (ret) {
860 			debug("%s: Cannot decode regions\n", __func__);
861 			return ret;
862 		}
863 	} else {
864 		struct pci_controller *parent_hose;
865 
866 		parent_hose = dev_get_uclass_priv(bus->parent);
867 		hose->ctlr = parent_hose->bus;
868 	}
869 	hose->bus = bus;
870 	hose->first_busno = bus->seq;
871 	hose->last_busno = bus->seq;
872 
873 	return 0;
874 }
875 
876 static int pci_uclass_post_probe(struct udevice *bus)
877 {
878 	int ret;
879 
880 	debug("%s: probing bus %d\n", __func__, bus->seq);
881 	ret = pci_bind_bus_devices(bus);
882 	if (ret)
883 		return ret;
884 
885 #ifdef CONFIG_PCI_PNP
886 	ret = pci_auto_config_devices(bus);
887 	if (ret < 0)
888 		return ret;
889 #endif
890 
891 #if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
892 	/*
893 	 * Per Intel FSP specification, we should call FSP notify API to
894 	 * inform FSP that PCI enumeration has been done so that FSP will
895 	 * do any necessary initialization as required by the chipset's
896 	 * BIOS Writer's Guide (BWG).
897 	 *
898 	 * Unfortunately we have to put this call here as with driver model,
899 	 * the enumeration is all done on a lazy basis as needed, so until
900 	 * something is touched on PCI it won't happen.
901 	 *
902 	 * Note we only call this 1) after U-Boot is relocated, and 2)
903 	 * root bus has finished probing.
904 	 */
905 	if ((gd->flags & GD_FLG_RELOC) && (bus->seq == 0)) {
906 		ret = fsp_init_phase_pci();
907 		if (ret)
908 			return ret;
909 	}
910 #endif
911 
912 	return 0;
913 }
914 
915 static int pci_uclass_child_post_bind(struct udevice *dev)
916 {
917 	struct pci_child_platdata *pplat;
918 	struct fdt_pci_addr addr;
919 	int ret;
920 
921 	if (!dev_of_valid(dev))
922 		return 0;
923 
924 	/*
925 	 * We could read vendor, device, class if available. But for now we
926 	 * just check the address.
927 	 */
928 	pplat = dev_get_parent_platdata(dev);
929 	ret = ofnode_read_pci_addr(dev_ofnode(dev), FDT_PCI_SPACE_CONFIG, "reg",
930 				   &addr);
931 
932 	if (ret) {
933 		if (ret != -ENOENT)
934 			return -EINVAL;
935 	} else {
936 		/* extract the devfn from fdt_pci_addr */
937 		pplat->devfn = addr.phys_hi & 0xff00;
938 	}
939 
940 	return 0;
941 }
942 
943 static int pci_bridge_read_config(struct udevice *bus, pci_dev_t bdf,
944 				  uint offset, ulong *valuep,
945 				  enum pci_size_t size)
946 {
947 	struct pci_controller *hose = bus->uclass_priv;
948 
949 	return pci_bus_read_config(hose->ctlr, bdf, offset, valuep, size);
950 }
951 
952 static int pci_bridge_write_config(struct udevice *bus, pci_dev_t bdf,
953 				   uint offset, ulong value,
954 				   enum pci_size_t size)
955 {
956 	struct pci_controller *hose = bus->uclass_priv;
957 
958 	return pci_bus_write_config(hose->ctlr, bdf, offset, value, size);
959 }
960 
961 static int skip_to_next_device(struct udevice *bus, struct udevice **devp)
962 {
963 	struct udevice *dev;
964 
965 	/*
966 	 * Scan through all the PCI controllers. On x86 there will only be one
967 	 * but that is not necessarily true on other hardware.
968 	 */
969 	do {
970 		device_find_first_child(bus, &dev);
971 		if (dev) {
972 			*devp = dev;
973 			return 0;
974 		}
975 		uclass_next_device(&bus);
976 	} while (bus);
977 
978 	return 0;
979 }
980 
981 int pci_find_next_device(struct udevice **devp)
982 {
983 	struct udevice *child = *devp;
984 	struct udevice *bus = child->parent;
985 
986 	/* First try all the siblings */
987 	*devp = NULL;
988 	while (child) {
989 		device_find_next_child(&child);
990 		if (child) {
991 			*devp = child;
992 			return 0;
993 		}
994 	}
995 
996 	/* We ran out of siblings. Try the next bus */
997 	uclass_next_device(&bus);
998 
999 	return bus ? skip_to_next_device(bus, devp) : 0;
1000 }
1001 
1002 int pci_find_first_device(struct udevice **devp)
1003 {
1004 	struct udevice *bus;
1005 
1006 	*devp = NULL;
1007 	uclass_first_device(UCLASS_PCI, &bus);
1008 
1009 	return skip_to_next_device(bus, devp);
1010 }
1011 
1012 ulong pci_conv_32_to_size(ulong value, uint offset, enum pci_size_t size)
1013 {
1014 	switch (size) {
1015 	case PCI_SIZE_8:
1016 		return (value >> ((offset & 3) * 8)) & 0xff;
1017 	case PCI_SIZE_16:
1018 		return (value >> ((offset & 2) * 8)) & 0xffff;
1019 	default:
1020 		return value;
1021 	}
1022 }
1023 
1024 ulong pci_conv_size_to_32(ulong old, ulong value, uint offset,
1025 			  enum pci_size_t size)
1026 {
1027 	uint off_mask;
1028 	uint val_mask, shift;
1029 	ulong ldata, mask;
1030 
1031 	switch (size) {
1032 	case PCI_SIZE_8:
1033 		off_mask = 3;
1034 		val_mask = 0xff;
1035 		break;
1036 	case PCI_SIZE_16:
1037 		off_mask = 2;
1038 		val_mask = 0xffff;
1039 		break;
1040 	default:
1041 		return value;
1042 	}
1043 	shift = (offset & off_mask) * 8;
1044 	ldata = (value & val_mask) << shift;
1045 	mask = val_mask << shift;
1046 	value = (old & ~mask) | ldata;
1047 
1048 	return value;
1049 }
1050 
1051 int pci_get_regions(struct udevice *dev, struct pci_region **iop,
1052 		    struct pci_region **memp, struct pci_region **prefp)
1053 {
1054 	struct udevice *bus = pci_get_controller(dev);
1055 	struct pci_controller *hose = dev_get_uclass_priv(bus);
1056 	int i;
1057 
1058 	*iop = NULL;
1059 	*memp = NULL;
1060 	*prefp = NULL;
1061 	for (i = 0; i < hose->region_count; i++) {
1062 		switch (hose->regions[i].flags) {
1063 		case PCI_REGION_IO:
1064 			if (!*iop || (*iop)->size < hose->regions[i].size)
1065 				*iop = hose->regions + i;
1066 			break;
1067 		case PCI_REGION_MEM:
1068 			if (!*memp || (*memp)->size < hose->regions[i].size)
1069 				*memp = hose->regions + i;
1070 			break;
1071 		case (PCI_REGION_MEM | PCI_REGION_PREFETCH):
1072 			if (!*prefp || (*prefp)->size < hose->regions[i].size)
1073 				*prefp = hose->regions + i;
1074 			break;
1075 		}
1076 	}
1077 
1078 	return (*iop != NULL) + (*memp != NULL) + (*prefp != NULL);
1079 }
1080 
1081 u32 dm_pci_read_bar32(struct udevice *dev, int barnum)
1082 {
1083 	u32 addr;
1084 	int bar;
1085 
1086 	bar = PCI_BASE_ADDRESS_0 + barnum * 4;
1087 	dm_pci_read_config32(dev, bar, &addr);
1088 	if (addr & PCI_BASE_ADDRESS_SPACE_IO)
1089 		return addr & PCI_BASE_ADDRESS_IO_MASK;
1090 	else
1091 		return addr & PCI_BASE_ADDRESS_MEM_MASK;
1092 }
1093 
1094 void dm_pci_write_bar32(struct udevice *dev, int barnum, u32 addr)
1095 {
1096 	int bar;
1097 
1098 	bar = PCI_BASE_ADDRESS_0 + barnum * 4;
1099 	dm_pci_write_config32(dev, bar, addr);
1100 }
1101 
1102 static int _dm_pci_bus_to_phys(struct udevice *ctlr,
1103 			       pci_addr_t bus_addr, unsigned long flags,
1104 			       unsigned long skip_mask, phys_addr_t *pa)
1105 {
1106 	struct pci_controller *hose = dev_get_uclass_priv(ctlr);
1107 	struct pci_region *res;
1108 	int i;
1109 
1110 	for (i = 0; i < hose->region_count; i++) {
1111 		res = &hose->regions[i];
1112 
1113 		if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
1114 			continue;
1115 
1116 		if (res->flags & skip_mask)
1117 			continue;
1118 
1119 		if (bus_addr >= res->bus_start &&
1120 		    (bus_addr - res->bus_start) < res->size) {
1121 			*pa = (bus_addr - res->bus_start + res->phys_start);
1122 			return 0;
1123 		}
1124 	}
1125 
1126 	return 1;
1127 }
1128 
1129 phys_addr_t dm_pci_bus_to_phys(struct udevice *dev, pci_addr_t bus_addr,
1130 			       unsigned long flags)
1131 {
1132 	phys_addr_t phys_addr = 0;
1133 	struct udevice *ctlr;
1134 	int ret;
1135 
1136 	/* The root controller has the region information */
1137 	ctlr = pci_get_controller(dev);
1138 
1139 	/*
1140 	 * if PCI_REGION_MEM is set we do a two pass search with preference
1141 	 * on matches that don't have PCI_REGION_SYS_MEMORY set
1142 	 */
1143 	if ((flags & PCI_REGION_TYPE) == PCI_REGION_MEM) {
1144 		ret = _dm_pci_bus_to_phys(ctlr, bus_addr,
1145 					  flags, PCI_REGION_SYS_MEMORY,
1146 					  &phys_addr);
1147 		if (!ret)
1148 			return phys_addr;
1149 	}
1150 
1151 	ret = _dm_pci_bus_to_phys(ctlr, bus_addr, flags, 0, &phys_addr);
1152 
1153 	if (ret)
1154 		puts("pci_hose_bus_to_phys: invalid physical address\n");
1155 
1156 	return phys_addr;
1157 }
1158 
1159 int _dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t phys_addr,
1160 			unsigned long flags, unsigned long skip_mask,
1161 			pci_addr_t *ba)
1162 {
1163 	struct pci_region *res;
1164 	struct udevice *ctlr;
1165 	pci_addr_t bus_addr;
1166 	int i;
1167 	struct pci_controller *hose;
1168 
1169 	/* The root controller has the region information */
1170 	ctlr = pci_get_controller(dev);
1171 	hose = dev_get_uclass_priv(ctlr);
1172 
1173 	for (i = 0; i < hose->region_count; i++) {
1174 		res = &hose->regions[i];
1175 
1176 		if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
1177 			continue;
1178 
1179 		if (res->flags & skip_mask)
1180 			continue;
1181 
1182 		bus_addr = phys_addr - res->phys_start + res->bus_start;
1183 
1184 		if (bus_addr >= res->bus_start &&
1185 		    (bus_addr - res->bus_start) < res->size) {
1186 			*ba = bus_addr;
1187 			return 0;
1188 		}
1189 	}
1190 
1191 	return 1;
1192 }
1193 
1194 pci_addr_t dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t phys_addr,
1195 			      unsigned long flags)
1196 {
1197 	pci_addr_t bus_addr = 0;
1198 	int ret;
1199 
1200 	/*
1201 	 * if PCI_REGION_MEM is set we do a two pass search with preference
1202 	 * on matches that don't have PCI_REGION_SYS_MEMORY set
1203 	 */
1204 	if ((flags & PCI_REGION_TYPE) == PCI_REGION_MEM) {
1205 		ret = _dm_pci_phys_to_bus(dev, phys_addr, flags,
1206 					  PCI_REGION_SYS_MEMORY, &bus_addr);
1207 		if (!ret)
1208 			return bus_addr;
1209 	}
1210 
1211 	ret = _dm_pci_phys_to_bus(dev, phys_addr, flags, 0, &bus_addr);
1212 
1213 	if (ret)
1214 		puts("pci_hose_phys_to_bus: invalid physical address\n");
1215 
1216 	return bus_addr;
1217 }
1218 
1219 void *dm_pci_map_bar(struct udevice *dev, int bar, int flags)
1220 {
1221 	pci_addr_t pci_bus_addr;
1222 	u32 bar_response;
1223 
1224 	/* read BAR address */
1225 	dm_pci_read_config32(dev, bar, &bar_response);
1226 	pci_bus_addr = (pci_addr_t)(bar_response & ~0xf);
1227 
1228 #if defined(CONFIG_SYS_PCI_64BIT)
1229         if (bar_response & PCI_BASE_ADDRESS_MEM_TYPE_64) {
1230 		dm_pci_read_config32(dev, bar + 4, &bar_response);
1231 		pci_bus_addr |= (pci_addr_t)bar_response << 32;				        }
1232 #endif /* CONFIG_SYS_PCI_64BIT */
1233 	/*
1234 	 * Pass "0" as the length argument to pci_bus_to_virt.  The arg
1235 	 * isn't actualy used on any platform because u-boot assumes a static
1236 	 * linear mapping.  In the future, this could read the BAR size
1237 	 * and pass that as the size if needed.
1238 	 */
1239 	return dm_pci_bus_to_virt(dev, pci_bus_addr, flags, 0, MAP_NOCACHE);
1240 }
1241 
1242 UCLASS_DRIVER(pci) = {
1243 	.id		= UCLASS_PCI,
1244 	.name		= "pci",
1245 	.flags		= DM_UC_FLAG_SEQ_ALIAS,
1246 	.post_bind	= dm_scan_fdt_dev,
1247 	.pre_probe	= pci_uclass_pre_probe,
1248 	.post_probe	= pci_uclass_post_probe,
1249 	.child_post_bind = pci_uclass_child_post_bind,
1250 	.per_device_auto_alloc_size = sizeof(struct pci_controller),
1251 	.per_child_platdata_auto_alloc_size =
1252 			sizeof(struct pci_child_platdata),
1253 };
1254 
1255 static const struct dm_pci_ops pci_bridge_ops = {
1256 	.read_config	= pci_bridge_read_config,
1257 	.write_config	= pci_bridge_write_config,
1258 };
1259 
1260 static const struct udevice_id pci_bridge_ids[] = {
1261 	{ .compatible = "pci-bridge" },
1262 	{ }
1263 };
1264 
1265 U_BOOT_DRIVER(pci_bridge_drv) = {
1266 	.name		= "pci_bridge_drv",
1267 	.id		= UCLASS_PCI,
1268 	.of_match	= pci_bridge_ids,
1269 	.ops		= &pci_bridge_ops,
1270 };
1271 
1272 UCLASS_DRIVER(pci_generic) = {
1273 	.id		= UCLASS_PCI_GENERIC,
1274 	.name		= "pci_generic",
1275 };
1276 
1277 static const struct udevice_id pci_generic_ids[] = {
1278 	{ .compatible = "pci-generic" },
1279 	{ }
1280 };
1281 
1282 U_BOOT_DRIVER(pci_generic_drv) = {
1283 	.name		= "pci_generic_drv",
1284 	.id		= UCLASS_PCI_GENERIC,
1285 	.of_match	= pci_generic_ids,
1286 };
1287 
1288 void pci_init(void)
1289 {
1290 	struct udevice *bus;
1291 
1292 	/*
1293 	 * Enumerate all known controller devices. Enumeration has the side-
1294 	 * effect of probing them, so PCIe devices will be enumerated too.
1295 	 */
1296 	for (uclass_first_device(UCLASS_PCI, &bus);
1297 	     bus;
1298 	     uclass_next_device(&bus)) {
1299 		;
1300 	}
1301 }
1302