coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
device_const.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <assert.h>
4 #include <console/console.h>
5 #include <device/device.h>
6 #include <device/path.h>
7 #include <device/pci.h>
8 #include <device/pci_def.h>
9 #include <device/resource.h>
10 #include <fw_config.h>
11 
12 /** Linked list of ALL devices */
14 
15 /**
16  * Given a PCI bus and a devfn number, find the device structure.
17  *
18  * Note that this function can return the incorrect device prior
19  * to PCI enumeration because the secondary field of the bus object
20  * is 0. The failing scenario is determined by the order of the
21  * devices in all_devices singly-linked list as well as the time
22  * when this function is called (secondary reflecting topology).
23  *
24  * @param bus The bus number.
25  * @param devfn A device/function number.
26  * @return Pointer to the device structure (if found), 0 otherwise.
27  */
28 
29 static DEVTREE_CONST struct device *dev_find_slot(unsigned int bus,
30  unsigned int devfn)
31 {
32  DEVTREE_CONST struct device *dev, *result;
33 
34  result = 0;
35  for (dev = all_devices; dev; dev = dev->next) {
36  if ((dev->path.type == DEVICE_PATH_PCI) &&
37  (dev->bus->secondary == bus) &&
38  (dev->path.pci.devfn == devfn)) {
39  result = dev;
40  break;
41  }
42  }
43  return result;
44 }
45 
46 /**
47  * Given a Device Path Type, find the device structure.
48  *
49  * @param prev_match The previously matched device instance.
50  * @param path_type The Device Path Type.
51  * @return Pointer to the device structure (if found), 0 otherwise.
52  */
54  DEVTREE_CONST struct device *prev_match,
55  enum device_path_type path_type)
56 {
57  DEVTREE_CONST struct device *dev, *result = NULL;
58 
59  if (prev_match == NULL)
60  prev_match = all_devices;
61  else
62  prev_match = prev_match->next;
63 
64  for (dev = prev_match; dev; dev = dev->next) {
65  if (dev->path.type == path_type) {
66  result = dev;
67  break;
68  }
69  }
70  return result;
71 }
72 
73 /**
74  * Given a device pointer, find the next PCI device.
75  *
76  * @param previous_dev A pointer to a PCI device structure.
77  * @return Pointer to the next device structure (if found), 0 otherwise.
78  */
80  DEVTREE_CONST struct device *previous_dev)
81 {
82  return dev_find_path(previous_dev, DEVICE_PATH_PCI);
83 }
84 
85 static int path_eq(const struct device_path *path1,
86  const struct device_path *path2)
87 {
88  int equal = 0;
89 
90  if (!path1 || !path2) {
91  assert(path1);
92  assert(path2);
93  /* Return 0 in case assert is considered non-fatal. */
94  return 0;
95  }
96 
97  if (path1->type != path2->type)
98  return 0;
99 
100  switch (path1->type) {
101  case DEVICE_PATH_NONE:
102  break;
103  case DEVICE_PATH_ROOT:
104  equal = 1;
105  break;
106  case DEVICE_PATH_PCI:
107  equal = (path1->pci.devfn == path2->pci.devfn);
108  break;
109  case DEVICE_PATH_PNP:
110  equal = (path1->pnp.port == path2->pnp.port) &&
111  (path1->pnp.device == path2->pnp.device);
112  break;
113  case DEVICE_PATH_I2C:
114  equal = (path1->i2c.device == path2->i2c.device) &&
115  (path1->i2c.mode_10bit == path2->i2c.mode_10bit);
116  break;
117  case DEVICE_PATH_APIC:
118  equal = (path1->apic.apic_id == path2->apic.apic_id);
119  break;
120  case DEVICE_PATH_DOMAIN:
121  equal = (path1->domain.domain == path2->domain.domain);
122  break;
124  equal = (path1->cpu_cluster.cluster
125  == path2->cpu_cluster.cluster);
126  break;
127  case DEVICE_PATH_CPU:
128  equal = (path1->cpu.id == path2->cpu.id);
129  break;
130  case DEVICE_PATH_CPU_BUS:
131  equal = (path1->cpu_bus.id == path2->cpu_bus.id);
132  break;
133  case DEVICE_PATH_GENERIC:
134  equal = (path1->generic.id == path2->generic.id) &&
135  (path1->generic.subid == path2->generic.subid);
136  break;
137  case DEVICE_PATH_SPI:
138  equal = (path1->spi.cs == path2->spi.cs);
139  break;
140  case DEVICE_PATH_USB:
141  equal = (path1->usb.port_type == path2->usb.port_type) &&
142  (path1->usb.port_id == path2->usb.port_id);
143  break;
144  case DEVICE_PATH_MMIO:
145  equal = (path1->mmio.addr == path2->mmio.addr);
146  break;
147  case DEVICE_PATH_GPIO:
148  equal = (path1->gpio.id == path2->gpio.id);
149  break;
150  default:
151  printk(BIOS_ERR, "Unknown device type: %d\n", path1->type);
152  break;
153  }
154 
155  return equal;
156 }
157 
158 /**
159  * See if a device structure exists for path.
160  *
161  * @param parent The bus to find the device on.
162  * @param path The relative path from the bus to the appropriate device.
163  * @return Pointer to a device structure for the device on bus at path
164  * or 0/NULL if no device is found.
165  */
167  const struct bus *parent, const struct device_path *path)
168 {
169  DEVTREE_CONST struct device *child;
170 
171  if (!parent) {
172  BUG();
173  /* Return NULL in case asserts are considered non-fatal. */
174  return NULL;
175  }
176 
177  for (child = parent->children; child; child = child->sibling) {
178  if (path_eq(path, &child->path))
179  break;
180  }
181  return child;
182 }
183 
184 /**
185  * Find the device structure given an array of nested device paths,
186  *
187  * @param parent The parent bus to start the search on.
188  * @param nested_path An array of relative paths from the parent bus to the target device.
189  * @param nested_path_length Number of path elements in nested_path array.
190  * @return Pointer to a device structure for the device at nested path
191  * or 0/NULL if no device is found.
192  */
194  const struct bus *parent, const struct device_path nested_path[],
195  size_t nested_path_length)
196 {
197  DEVTREE_CONST struct device *child;
198 
199  if (!parent || !nested_path || !nested_path_length)
200  return NULL;
201 
202  child = find_dev_path(parent, nested_path);
203 
204  /* Terminate recursion at end of nested path or child not found */
205  if (nested_path_length == 1 || !child)
206  return child;
207 
208  return find_dev_nested_path(child->link_list, nested_path + 1, nested_path_length - 1);
209 }
210 
212  const struct bus *parent, pci_devfn_t devfn)
213 {
214  const struct device_path path = {
216  .pci.devfn = devfn,
217  };
218  return find_dev_path(parent, &path);
219 }
220 
222 {
223  DEVTREE_CONST struct bus *parent = pci_root_bus();
224  DEVTREE_CONST struct device *dev = parent->children;
225 
226  /* FIXME: Write the loop with topology links. */
227  while (dev) {
228  if (dev->path.type != DEVICE_PATH_PCI) {
229  dev = dev->next;
230  continue;
231  }
232  if (dev->bus->secondary == bus)
233  return pcidev_path_behind(dev->bus, devfn);
234  dev = dev->next;
235  }
236  return NULL;
237 }
238 
240 {
241  DEVTREE_CONST struct device *pci_domain;
242  static DEVTREE_CONST struct bus *pci_root;
243 
244  if (pci_root)
245  return pci_root;
246 
247  pci_domain = dev_find_path(NULL, DEVICE_PATH_DOMAIN);
248  if (!pci_domain)
249  return NULL;
250 
251  pci_root = pci_domain->link_list;
252  return pci_root;
253 }
254 
256 {
257  return pcidev_path_behind(pci_root_bus(), devfn);
258 }
259 
261 {
262  return pcidev_path_on_root(PCI_DEVFN(dev, fn));
263 }
264 
266  const struct device *bridge,
267  pci_devfn_t devfn)
268 {
269  if (!bridge || (bridge->path.type != DEVICE_PATH_PCI)) {
270  BUG();
271  /* Return NULL in case asserts are non-fatal. */
272  return NULL;
273  }
274 
275  return pcidev_path_behind(bridge->link_list, devfn);
276 }
277 
279 {
280  DEVTREE_CONST struct device *dev = pcidev_path_on_root(devfn);
281  if (dev)
282  return dev;
283 
284  devtree_bug(func, devfn);
285 
286  /* FIXME: This can return wrong device. */
287  return dev_find_slot(0, devfn);
288 }
289 
290 void devtree_bug(const char *func, pci_devfn_t devfn)
291 {
292  printk(BIOS_ERR, "BUG: %s requests hidden 00:%02x.%u\n", func, devfn >> 3, devfn & 7);
293 }
294 
296 {
297  die("DEVTREE: dev or chip_info is NULL\n");
298 }
299 
300 /**
301  * Given an SMBus bus and a device number, find the device structure.
302  *
303  * @param bus The bus number.
304  * @param addr A device number.
305  * @return Pointer to the device structure (if found), 0 otherwise.
306  */
308  unsigned int addr)
309 {
310  DEVTREE_CONST struct device *dev, *result;
311 
312  result = 0;
313  for (dev = all_devices; dev; dev = dev->next) {
314  if ((dev->path.type == DEVICE_PATH_I2C) &&
315  (dev->bus->secondary == bus) &&
316  (dev->path.i2c.device == addr)) {
317  result = dev;
318  break;
319  }
320  }
321  return result;
322 }
323 
324 /**
325  * Given a PnP port and a device number, find the device structure.
326  *
327  * @param port The I/O port.
328  * @param device Logical device number.
329  * @return Pointer to the device structure (if found), 0 otherwise.
330  */
332 {
333  DEVTREE_CONST struct device *dev;
334 
335  for (dev = all_devices; dev; dev = dev->next) {
336  if ((dev->path.type == DEVICE_PATH_PNP) &&
337  (dev->path.pnp.port == port) &&
338  (dev->path.pnp.device == device)) {
339  return dev;
340  }
341  }
342  return 0;
343 }
344 
345 /**
346  * Given a device and previous match iterate through all the children.
347  *
348  * @param bus parent device's bus holding all the children
349  * @param prev_child previous child already traversed, if NULL start at
350  * children of parent bus.
351  * @return pointer to child or NULL when no more children
352  */
353 DEVTREE_CONST struct device *dev_bus_each_child(const struct bus *parent,
354  DEVTREE_CONST struct device *prev_child)
355 {
356  DEVTREE_CONST struct device *dev;
357 
358  if (parent == NULL)
359  return NULL;
360 
361  if (prev_child == NULL)
362  dev = parent->children;
363  else
364  dev = prev_child->sibling;
365 
366  return dev;
367 }
368 
369 bool is_dev_enabled(const struct device *dev)
370 {
371  if (!dev)
372  return false;
373 
374  /* For stages with immutable device tree, first check if device is disabled because of
375  fw_config probing. In these stages, dev->enabled does not reflect the true state of a
376  device that uses fw_config probing. */
377  if (DEVTREE_EARLY && !fw_config_probe_dev(dev, NULL))
378  return false;
379  return dev->enabled;
380 }
381 
382 bool is_devfn_enabled(unsigned int devfn)
383 {
384  const struct device *dev = pcidev_path_on_root(devfn);
385  return is_dev_enabled(dev);
386 }
#define BUG()
Definition: assert.h:65
#define assert(statement)
Definition: assert.h:74
static u32 addr
Definition: cirrus.c:14
#define printk(level,...)
Definition: stdlib.h:16
#define __noreturn
Definition: compiler.h:31
void __noreturn die(const char *fmt,...)
Definition: die.c:17
DEVTREE_CONST struct bus * pci_root_bus(void)
Definition: device_const.c:239
void __noreturn devtree_die(void)
Definition: device_const.c:295
DEVTREE_CONST struct device * dev_find_slot_on_smbus(unsigned int bus, unsigned int addr)
Given an SMBus bus and a device number, find the device structure.
Definition: device_const.c:307
DEVTREE_CONST struct device * pcidev_path_on_root_debug(pci_devfn_t devfn, const char *func)
Definition: device_const.c:278
DEVTREE_CONST struct device * find_dev_nested_path(const struct bus *parent, const struct device_path nested_path[], size_t nested_path_length)
Find the device structure given an array of nested device paths,.
Definition: device_const.c:193
static int path_eq(const struct device_path *path1, const struct device_path *path2)
Definition: device_const.c:85
DEVTREE_CONST struct device * pcidev_path_behind(const struct bus *parent, pci_devfn_t devfn)
Definition: device_const.c:211
bool is_devfn_enabled(unsigned int devfn)
Definition: device_const.c:382
DEVTREE_CONST struct device * dev_find_path(DEVTREE_CONST struct device *prev_match, enum device_path_type path_type)
Given a Device Path Type, find the device structure.
Definition: device_const.c:53
void devtree_bug(const char *func, pci_devfn_t devfn)
Definition: device_const.c:290
DEVTREE_CONST struct device * dev_find_slot_pnp(u16 port, u16 device)
Given a PnP port and a device number, find the device structure.
Definition: device_const.c:331
DEVTREE_CONST struct device * pcidev_path_behind_pci2pci_bridge(const struct device *bridge, pci_devfn_t devfn)
Definition: device_const.c:265
DEVTREE_CONST struct device * find_dev_path(const struct bus *parent, const struct device_path *path)
See if a device structure exists for path.
Definition: device_const.c:166
DEVTREE_CONST struct device *DEVTREE_CONST all_devices
Linked list of ALL devices.
Definition: device_const.c:13
DEVTREE_CONST struct device * dev_find_next_pci_device(DEVTREE_CONST struct device *previous_dev)
Given a device pointer, find the next PCI device.
Definition: device_const.c:79
bool is_dev_enabled(const struct device *dev)
Definition: device_const.c:369
static DEVTREE_CONST struct device * dev_find_slot(unsigned int bus, unsigned int devfn)
Given a PCI bus and a devfn number, find the device structure.
Definition: device_const.c:29
DEVTREE_CONST struct device * pcidev_path_on_root(pci_devfn_t devfn)
Definition: device_const.c:255
DEVTREE_CONST struct device * pcidev_on_root(uint8_t dev, uint8_t fn)
Definition: device_const.c:260
DEVTREE_CONST struct device * pcidev_path_on_bus(unsigned int bus, pci_devfn_t devfn)
Definition: device_const.c:221
DEVTREE_CONST struct device * dev_bus_each_child(const struct bus *parent, DEVTREE_CONST struct device *prev_child)
Given a device and previous match iterate through all the children.
Definition: device_const.c:353
port
Definition: i915.h:29
DEVTREE_CONST struct device dev_root
This is the root of the device tree.
bool fw_config_probe_dev(const struct device *dev, const struct fw_config **matching_probe)
Definition: fw_config.c:88
#define BIOS_ERR
BIOS_ERR - System in incomplete state.
Definition: loglevel.h:72
result
Definition: mrc_cache.c:35
device_path_type
Definition: path.h:6
@ DEVICE_PATH_I2C
Definition: path.h:11
@ DEVICE_PATH_SPI
Definition: path.h:19
@ DEVICE_PATH_CPU_BUS
Definition: path.h:16
@ DEVICE_PATH_GPIO
Definition: path.h:22
@ DEVICE_PATH_PNP
Definition: path.h:10
@ DEVICE_PATH_PCI
Definition: path.h:9
@ DEVICE_PATH_CPU_CLUSTER
Definition: path.h:14
@ DEVICE_PATH_ROOT
Definition: path.h:8
@ DEVICE_PATH_APIC
Definition: path.h:12
@ DEVICE_PATH_DOMAIN
Definition: path.h:13
@ DEVICE_PATH_USB
Definition: path.h:20
@ DEVICE_PATH_GENERIC
Definition: path.h:18
@ DEVICE_PATH_NONE
Definition: path.h:7
@ DEVICE_PATH_CPU
Definition: path.h:15
@ DEVICE_PATH_MMIO
Definition: path.h:21
static const PCI_SUBCLASS bridge[]
Definition: pci_class.c:72
#define PCI_DEVFN(slot, func)
Definition: pci_def.h:548
u32 pci_devfn_t
Definition: pci_type.h:8
#define NULL
Definition: stddef.h:19
#define DEVTREE_CONST
Definition: stddef.h:30
#define DEVTREE_EARLY
Definition: stddef.h:24
uint16_t u16
Definition: stdint.h:48
unsigned char uint8_t
Definition: stdint.h:8
unsigned int apic_id
Definition: path.h:72
Definition: device.h:76
DEVTREE_CONST struct device * children
Definition: device.h:79
uint16_t secondary
Definition: device.h:84
unsigned int id
Definition: path.h:92
unsigned int cluster
Definition: path.h:84
unsigned int id
Definition: path.h:88
struct usb_path usb
Definition: path.h:127
struct apic_path apic
Definition: path.h:119
struct domain_path domain
Definition: path.h:121
struct cpu_path cpu
Definition: path.h:123
struct i2c_path i2c
Definition: path.h:118
struct cpu_cluster_path cpu_cluster
Definition: path.h:122
struct cpu_bus_path cpu_bus
Definition: path.h:124
struct mmio_path mmio
Definition: path.h:128
struct generic_path generic
Definition: path.h:125
struct pnp_path pnp
Definition: path.h:117
struct gpio_path gpio
Definition: path.h:129
struct spi_path spi
Definition: path.h:126
struct pci_path pci
Definition: path.h:116
enum device_path_type type
Definition: path.h:114
Definition: device.h:107
DEVTREE_CONST struct device * sibling
Definition: device.h:111
struct device_path path
Definition: device.h:115
DEVTREE_CONST struct bus * bus
Definition: device.h:108
DEVTREE_CONST struct bus * link_list
Definition: device.h:139
DEVTREE_CONST struct device * next
Definition: device.h:113
unsigned int enabled
Definition: device.h:122
unsigned int domain
Definition: path.h:50
unsigned int subid
Definition: path.h:97
unsigned int id
Definition: path.h:96
unsigned int id
Definition: path.h:110
unsigned int device
Definition: path.h:63
unsigned int mode_10bit
Definition: path.h:64
uintptr_t addr
Definition: path.h:106
unsigned int devfn
Definition: path.h:54
unsigned int port
Definition: path.h:58
unsigned int device
Definition: path.h:59
unsigned int cs
Definition: path.h:68
unsigned int port_type
Definition: path.h:101
unsigned int port_id
Definition: path.h:102