blob: 1e13bca151ab7db0dc929edbdde42436c123eac7 [file] [log] [blame]
Angel Ponsc74dae92020-04-02 23:48:16 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Uwe Hermannb80dbf02007-04-22 19:08:13 +00002
Eric Biederman8ca8d762003-04-22 19:02:15 +00003#include <console/console.h>
Eric Biederman5899fd82003-04-24 06:25:08 +00004#include <device/device.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +00005#include <device/path.h>
Kyösti Mälkki318066f2014-02-12 14:18:50 +02006#include <device/pci_def.h>
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +00007#include <device/resource.h>
Nico Huber577c6b92022-08-15 00:08:58 +02008#include <stdbool.h>
Elyes HAOUASede8dd02019-06-23 06:57:53 +02009#include <stdlib.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +000010#include <string.h>
11
Eric Biederman03acab62004-10-14 21:25:53 +000012/**
Duncan Laurie6f88a6e2011-07-18 10:41:36 -070013 * Given a Local APIC ID, find the device structure.
14 *
15 * @param apic_id The Local APIC ID number.
16 * @return Pointer to the device structure (if found), 0 otherwise.
17 */
Martin Roth38ddbfb2019-10-23 21:41:00 -060018struct device *dev_find_lapic(unsigned int apic_id)
Duncan Laurie6f88a6e2011-07-18 10:41:36 -070019{
Aaron Durbinf0349022017-11-10 10:47:54 -070020 struct device *dev;
21 struct device *result = NULL;
Duncan Laurie6f88a6e2011-07-18 10:41:36 -070022
23 for (dev = all_devices; dev; dev = dev->next) {
24 if (dev->path.type == DEVICE_PATH_APIC &&
25 dev->path.apic.apic_id == apic_id) {
26 result = dev;
27 break;
28 }
29 }
30 return result;
31}
32
33/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +000034 * Find a device of a given vendor and type.
35 *
36 * @param vendor A PCI vendor ID (e.g. 0x8086 for Intel).
37 * @param device A PCI device ID.
Uwe Hermanne4870472010-11-04 23:23:47 +000038 * @param from Pointer to the device structure, used as a starting point in
39 * the linked list of all_devices, which can be 0 to start at the
40 * head of the list (i.e. all_devices).
Uwe Hermannc1ee4292010-10-17 19:01:48 +000041 * @return Pointer to the device struct.
Eric Biederman8ca8d762003-04-22 19:02:15 +000042 */
Uwe Hermanne4870472010-11-04 23:23:47 +000043struct device *dev_find_device(u16 vendor, u16 device, struct device *from)
Eric Biederman8ca8d762003-04-22 19:02:15 +000044{
45 if (!from)
46 from = all_devices;
47 else
48 from = from->next;
Uwe Hermanne4870472010-11-04 23:23:47 +000049
50 while (from && (from->vendor != vendor || from->device != device))
Eric Biederman8ca8d762003-04-22 19:02:15 +000051 from = from->next;
Uwe Hermanne4870472010-11-04 23:23:47 +000052
Eric Biederman8ca8d762003-04-22 19:02:15 +000053 return from;
54}
55
Uwe Hermannc1ee4292010-10-17 19:01:48 +000056/**
57 * Find a device of a given class.
58 *
59 * @param class Class of the device.
Uwe Hermanne4870472010-11-04 23:23:47 +000060 * @param from Pointer to the device structure, used as a starting point in
61 * the linked list of all_devices, which can be 0 to start at the
62 * head of the list (i.e. all_devices).
Uwe Hermannc1ee4292010-10-17 19:01:48 +000063 * @return Pointer to the device struct.
Eric Biederman8ca8d762003-04-22 19:02:15 +000064 */
65struct device *dev_find_class(unsigned int class, struct device *from)
66{
67 if (!from)
68 from = all_devices;
69 else
70 from = from->next;
Uwe Hermanne4870472010-11-04 23:23:47 +000071
Greg Watson59651692003-12-17 17:39:53 +000072 while (from && (from->class & 0xffffff00) != class)
Eric Biederman8ca8d762003-04-22 19:02:15 +000073 from = from->next;
Uwe Hermanne4870472010-11-04 23:23:47 +000074
Eric Biederman8ca8d762003-04-22 19:02:15 +000075 return from;
76}
77
Duncan Laurie5f5d9142013-06-10 09:59:17 -070078/**
79 * Encode the device path into 3 bytes for logging to CMOS.
80 *
81 * @param dev The device path to encode.
82 * @return Device path encoded into lower 3 bytes of dword.
83 */
Subrata Banik564547f2018-05-02 10:27:36 +053084u32 dev_path_encode(const struct device *dev)
Duncan Laurie5f5d9142013-06-10 09:59:17 -070085{
86 u32 ret;
87
88 if (!dev)
89 return 0;
90
91 /* Store the device type in 3rd byte. */
92 ret = dev->path.type << 16;
93
94 /* Encode the device specific path in the low word. */
95 switch (dev->path.type) {
96 case DEVICE_PATH_ROOT:
97 break;
98 case DEVICE_PATH_PCI:
99 ret |= dev->bus->secondary << 8 | dev->path.pci.devfn;
100 break;
101 case DEVICE_PATH_PNP:
102 ret |= dev->path.pnp.port << 8 | dev->path.pnp.device;
103 break;
104 case DEVICE_PATH_I2C:
Duncan Laurieb7ce5fe2016-05-07 19:49:37 -0700105 ret |= dev->path.i2c.mode_10bit << 8 | dev->path.i2c.device;
Duncan Laurie5f5d9142013-06-10 09:59:17 -0700106 break;
107 case DEVICE_PATH_APIC:
108 ret |= dev->path.apic.apic_id;
109 break;
110 case DEVICE_PATH_DOMAIN:
111 ret |= dev->path.domain.domain;
112 break;
113 case DEVICE_PATH_CPU_CLUSTER:
114 ret |= dev->path.cpu_cluster.cluster;
115 break;
116 case DEVICE_PATH_CPU:
117 ret |= dev->path.cpu.id;
118 break;
119 case DEVICE_PATH_CPU_BUS:
120 ret |= dev->path.cpu_bus.id;
121 break;
122 case DEVICE_PATH_IOAPIC:
123 ret |= dev->path.ioapic.ioapic_id;
124 break;
Duncan Laurie4650f5b2016-05-07 20:01:34 -0700125 case DEVICE_PATH_GENERIC:
126 ret |= dev->path.generic.subid << 8 | dev->path.generic.id;
127 break;
Furquan Shaikh7606c372017-02-11 10:57:23 -0800128 case DEVICE_PATH_SPI:
129 ret |= dev->path.spi.cs;
130 break;
Duncan Lauriebae9f852018-05-07 14:18:13 -0700131 case DEVICE_PATH_USB:
Karthikeyan Ramasubramanian19398242019-07-11 12:23:35 -0600132 ret |= dev->path.usb.port_type << 8 | dev->path.usb.port_id;
Duncan Lauriebae9f852018-05-07 14:18:13 -0700133 break;
Michael Niewöhnerdbb667a2020-12-11 21:26:02 +0100134 case DEVICE_PATH_GPIO:
135 ret |= dev->path.gpio.id;
136 break;
Duncan Laurie5f5d9142013-06-10 09:59:17 -0700137 case DEVICE_PATH_NONE:
Justin TerAvestca2ed9f2018-01-17 16:36:30 -0800138 case DEVICE_PATH_MMIO: /* don't care */
Duncan Laurie5f5d9142013-06-10 09:59:17 -0700139 default:
140 break;
141 }
142
143 return ret;
144}
145
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000146/*
147 * Warning: This function uses a static buffer. Don't call it more than once
148 * from the same print statement!
149 */
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200150const char *dev_path(const struct device *dev)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000151{
152 static char buffer[DEVICE_PATH_MAX];
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000153
Eric Biedermane9a271e32003-09-02 03:36:25 +0000154 buffer[0] = '\0';
155 if (!dev) {
Angel Ponsd7df3832021-08-18 08:32:45 +0200156 strcpy(buffer, "<null>");
Uwe Hermanne4870472010-11-04 23:23:47 +0000157 } else {
Elyes HAOUAS0ce41f12018-11-13 10:03:31 +0100158 switch (dev->path.type) {
Patrick Rudolph6a811842017-11-01 11:33:00 +0100159 case DEVICE_PATH_NONE:
Angel Ponsd7df3832021-08-18 08:32:45 +0200160 strcpy(buffer, "NONE");
Patrick Rudolph6a811842017-11-01 11:33:00 +0100161 break;
Eric Biederman83b991a2003-10-11 06:20:25 +0000162 case DEVICE_PATH_ROOT:
Angel Ponsd7df3832021-08-18 08:32:45 +0200163 strcpy(buffer, "Root Device");
Eric Biederman83b991a2003-10-11 06:20:25 +0000164 break;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000165 case DEVICE_PATH_PCI:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200166 snprintf(buffer, sizeof(buffer),
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100167 "PCI: %02x:%02x.%01x",
168 dev->bus->secondary,
169 PCI_SLOT(dev->path.pci.devfn),
170 PCI_FUNC(dev->path.pci.devfn));
Eric Biedermane9a271e32003-09-02 03:36:25 +0000171 break;
172 case DEVICE_PATH_PNP:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200173 snprintf(buffer, sizeof(buffer), "PNP: %04x.%01x",
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100174 dev->path.pnp.port, dev->path.pnp.device);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000175 break;
176 case DEVICE_PATH_I2C:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200177 snprintf(buffer, sizeof(buffer), "I2C: %02x:%02x",
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100178 dev->bus->secondary,
179 dev->path.i2c.device);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000180 break;
Eric Biederman03acab62004-10-14 21:25:53 +0000181 case DEVICE_PATH_APIC:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200182 snprintf(buffer, sizeof(buffer), "APIC: %02x",
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100183 dev->path.apic.apic_id);
Eric Biederman03acab62004-10-14 21:25:53 +0000184 break;
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200185 case DEVICE_PATH_IOAPIC:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200186 snprintf(buffer, sizeof(buffer), "IOAPIC: %02x",
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100187 dev->path.ioapic.ioapic_id);
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200188 break;
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800189 case DEVICE_PATH_DOMAIN:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200190 snprintf(buffer, sizeof(buffer), "DOMAIN: %04x",
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800191 dev->path.domain.domain);
Eric Biederman7003ba42004-10-16 06:20:29 +0000192 break;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800193 case DEVICE_PATH_CPU_CLUSTER:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200194 snprintf(buffer, sizeof(buffer), "CPU_CLUSTER: %01x",
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800195 dev->path.cpu_cluster.cluster);
Eric Biederman7003ba42004-10-16 06:20:29 +0000196 break;
Eric Biedermana9e632c2004-11-18 22:38:08 +0000197 case DEVICE_PATH_CPU:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200198 snprintf(buffer, sizeof(buffer),
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100199 "CPU: %02x", dev->path.cpu.id);
Eric Biedermana9e632c2004-11-18 22:38:08 +0000200 break;
201 case DEVICE_PATH_CPU_BUS:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200202 snprintf(buffer, sizeof(buffer),
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100203 "CPU_BUS: %02x", dev->path.cpu_bus.id);
Eric Biedermana9e632c2004-11-18 22:38:08 +0000204 break;
Duncan Laurie4650f5b2016-05-07 20:01:34 -0700205 case DEVICE_PATH_GENERIC:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200206 snprintf(buffer, sizeof(buffer),
Duncan Laurie4650f5b2016-05-07 20:01:34 -0700207 "GENERIC: %d.%d", dev->path.generic.id,
208 dev->path.generic.subid);
209 break;
Furquan Shaikh7606c372017-02-11 10:57:23 -0800210 case DEVICE_PATH_SPI:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200211 snprintf(buffer, sizeof(buffer), "SPI: %02x",
Furquan Shaikh7606c372017-02-11 10:57:23 -0800212 dev->path.spi.cs);
213 break;
Duncan Lauriebae9f852018-05-07 14:18:13 -0700214 case DEVICE_PATH_USB:
Elyes HAOUASb7482212018-05-16 12:58:19 +0200215 snprintf(buffer, sizeof(buffer), "USB%u port %u",
Duncan Lauriebae9f852018-05-07 14:18:13 -0700216 dev->path.usb.port_type, dev->path.usb.port_id);
217 break;
Justin TerAvestca2ed9f2018-01-17 16:36:30 -0800218 case DEVICE_PATH_MMIO:
Jacob Garberd552aca2019-07-16 12:55:00 -0600219 snprintf(buffer, sizeof(buffer), "MMIO: %08lx",
Justin TerAvestca2ed9f2018-01-17 16:36:30 -0800220 dev->path.mmio.addr);
221 break;
Michael Niewöhnerdbb667a2020-12-11 21:26:02 +0100222 case DEVICE_PATH_GPIO:
223 snprintf(buffer, sizeof(buffer), "GPIO: %d", dev->path.gpio.id);
224 break;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000225 default:
Uwe Hermanne4870472010-11-04 23:23:47 +0000226 printk(BIOS_ERR, "Unknown device path type: %d\n",
227 dev->path.type);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000228 break;
229 }
230 }
231 return buffer;
232}
233
Furquan Shaikh5b5c2332020-04-24 21:31:35 -0700234const char *dev_name(const struct device *dev)
Kyösti Mälkki7baadac2012-10-07 14:57:15 +0200235{
Kyösti Mälkki7d54eb82012-10-10 23:14:28 +0300236 if (dev->name)
237 return dev->name;
238 else if (dev->chip_ops && dev->chip_ops->name)
Kyösti Mälkki7baadac2012-10-07 14:57:15 +0200239 return dev->chip_ops->name;
240 else
241 return "unknown";
242}
243
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000244const char *bus_path(struct bus *bus)
245{
246 static char buffer[BUS_PATH_MAX];
Elyes HAOUASb7482212018-05-16 12:58:19 +0200247 snprintf(buffer, sizeof(buffer),
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100248 "%s,%d", dev_path(bus->dev), bus->link_num);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000249 return buffer;
250}
251
Eric Biederman5cd81732004-03-11 15:01:31 +0000252/**
Myles Watsonc25cc112010-05-21 14:33:48 +0000253 * Allocate 64 more resources to the free list.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000254 *
255 * @return TODO.
Myles Watsonc25cc112010-05-21 14:33:48 +0000256 */
257static int allocate_more_resources(void)
258{
259 int i;
260 struct resource *new_res_list;
Uwe Hermanne4870472010-11-04 23:23:47 +0000261
Myles Watsonc25cc112010-05-21 14:33:48 +0000262 new_res_list = malloc(64 * sizeof(*new_res_list));
263
264 if (new_res_list == NULL)
265 return 0;
266
267 memset(new_res_list, 0, 64 * sizeof(*new_res_list));
268
Uwe Hermanne4870472010-11-04 23:23:47 +0000269 for (i = 0; i < 64 - 1; i++)
Myles Watsonc25cc112010-05-21 14:33:48 +0000270 new_res_list[i].next = &new_res_list[i+1];
271
272 free_resources = new_res_list;
273 return 1;
274}
275
276/**
277 * Remove resource res from the device's list and add it to the free list.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000278 *
279 * @param dev TODO
280 * @param res TODO
281 * @param prev TODO
282 * @return TODO.
Myles Watsonc25cc112010-05-21 14:33:48 +0000283 */
Aaron Durbinf0349022017-11-10 10:47:54 -0700284static void free_resource(struct device *dev, struct resource *res,
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000285 struct resource *prev)
Myles Watsonc25cc112010-05-21 14:33:48 +0000286{
287 if (prev)
288 prev->next = res->next;
289 else
290 dev->resource_list = res->next;
Uwe Hermanne4870472010-11-04 23:23:47 +0000291
Myles Watsonc25cc112010-05-21 14:33:48 +0000292 res->next = free_resources;
293 free_resources = res;
294}
295
296/**
Eric Biederman5cd81732004-03-11 15:01:31 +0000297 * See if we have unused but allocated resource structures.
Uwe Hermanne4870472010-11-04 23:23:47 +0000298 *
Eric Biederman5cd81732004-03-11 15:01:31 +0000299 * If so remove the allocation.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000300 *
301 * @param dev The device to find the resource on.
Eric Biederman5cd81732004-03-11 15:01:31 +0000302 */
Aaron Durbinf0349022017-11-10 10:47:54 -0700303void compact_resources(struct device *dev)
Eric Biederman5cd81732004-03-11 15:01:31 +0000304{
Myles Watsonc25cc112010-05-21 14:33:48 +0000305 struct resource *res, *next, *prev = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000306
Eric Biederman5cd81732004-03-11 15:01:31 +0000307 /* Move all of the free resources to the end */
Myles Watson894a3472010-06-09 22:41:35 +0000308 for (res = dev->resource_list; res; res = next) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000309 next = res->next;
310 if (!res->flags)
311 free_resource(dev, res, prev);
312 else
313 prev = res;
Eric Biederman5cd81732004-03-11 15:01:31 +0000314 }
315}
316
317/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000318 * See if a resource structure already exists for a given index.
319 *
320 * @param dev The device to find the resource on.
321 * @param index The index of the resource on the device.
322 * @return The resource, if it already exists.
Eric Biederman5cd81732004-03-11 15:01:31 +0000323 */
Martin Roth38ddbfb2019-10-23 21:41:00 -0600324struct resource *probe_resource(const struct device *dev, unsigned int index)
Eric Biederman5cd81732004-03-11 15:01:31 +0000325{
Myles Watsonc25cc112010-05-21 14:33:48 +0000326 struct resource *res;
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000327
Eric Biederman5cd81732004-03-11 15:01:31 +0000328 /* See if there is a resource with the appropriate index */
Myles Watson894a3472010-06-09 22:41:35 +0000329 for (res = dev->resource_list; res; res = res->next) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000330 if (res->index == index)
Eric Biederman5cd81732004-03-11 15:01:31 +0000331 break;
Eric Biederman5cd81732004-03-11 15:01:31 +0000332 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000333
Myles Watsonc25cc112010-05-21 14:33:48 +0000334 return res;
Eric Biederman03acab62004-10-14 21:25:53 +0000335}
336
337/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000338 * See if a resource structure already exists for a given index and if not
339 * allocate one.
340 *
Paul Menzel20923872014-06-07 13:31:29 +0200341 * Then initialize the resource to default values.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000342 *
343 * @param dev The device to find the resource on.
344 * @param index The index of the resource on the device.
345 * @return TODO.
Eric Biederman03acab62004-10-14 21:25:53 +0000346 */
Martin Roth38ddbfb2019-10-23 21:41:00 -0600347struct resource *new_resource(struct device *dev, unsigned int index)
Eric Biederman03acab62004-10-14 21:25:53 +0000348{
Myles Watsonc25cc112010-05-21 14:33:48 +0000349 struct resource *resource, *tail;
Eric Biederman03acab62004-10-14 21:25:53 +0000350
Uwe Hermanne4870472010-11-04 23:23:47 +0000351 /* First move all of the free resources to the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000352 compact_resources(dev);
353
Uwe Hermanne4870472010-11-04 23:23:47 +0000354 /* See if there is a resource with the appropriate index. */
Eric Biederman03acab62004-10-14 21:25:53 +0000355 resource = probe_resource(dev, index);
Eric Biederman5cd81732004-03-11 15:01:31 +0000356 if (!resource) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000357 if (free_resources == NULL && !allocate_more_resources())
358 die("Couldn't allocate more resources.");
359
360 resource = free_resources;
361 free_resources = free_resources->next;
Eric Biederman5cd81732004-03-11 15:01:31 +0000362 memset(resource, 0, sizeof(*resource));
Myles Watsonc25cc112010-05-21 14:33:48 +0000363 resource->next = NULL;
364 tail = dev->resource_list;
365 if (tail) {
Frans Hendriksa9caa502021-02-01 11:44:37 +0100366 while (tail->next)
367 tail = tail->next;
Myles Watsonc25cc112010-05-21 14:33:48 +0000368 tail->next = resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000369 } else {
Myles Watsonc25cc112010-05-21 14:33:48 +0000370 dev->resource_list = resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000371 }
Eric Biederman5cd81732004-03-11 15:01:31 +0000372 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000373
374 /* Initialize the resource values. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000375 if (!(resource->flags & IORESOURCE_FIXED)) {
376 resource->flags = 0;
377 resource->base = 0;
378 }
379 resource->size = 0;
380 resource->limit = 0;
381 resource->index = index;
382 resource->align = 0;
383 resource->gran = 0;
384
385 return resource;
386}
387
Eric Biederman03acab62004-10-14 21:25:53 +0000388/**
389 * Return an existing resource structure for a given index.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000390 *
391 * @param dev The device to find the resource on.
392 * @param index The index of the resource on the device.
393 * return TODO.
Eric Biederman03acab62004-10-14 21:25:53 +0000394 */
Martin Roth38ddbfb2019-10-23 21:41:00 -0600395struct resource *find_resource(const struct device *dev, unsigned int index)
Eric Biederman03acab62004-10-14 21:25:53 +0000396{
397 struct resource *resource;
398
Uwe Hermanne4870472010-11-04 23:23:47 +0000399 /* See if there is a resource with the appropriate index. */
Eric Biederman03acab62004-10-14 21:25:53 +0000400 resource = probe_resource(dev, index);
401 if (!resource) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000402 printk(BIOS_EMERG, "%s missing resource: %02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000403 dev_path(dev), index);
Eric Biederman03acab62004-10-14 21:25:53 +0000404 die("");
405 }
406 return resource;
407}
408
Eric Biederman03acab62004-10-14 21:25:53 +0000409/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000410 * Round a number up to the next multiple of gran.
411 *
412 * @param val The starting value.
413 * @param gran Granularity we are aligning the number to.
414 * @return The aligned value.
Eric Biederman03acab62004-10-14 21:25:53 +0000415 */
416static resource_t align_up(resource_t val, unsigned long gran)
417{
418 resource_t mask;
419 mask = (1ULL << gran) - 1ULL;
420 val += mask;
421 val &= ~mask;
422 return val;
423}
424
425/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000426 * Round a number up to the previous multiple of gran.
427 *
428 * @param val The starting value.
429 * @param gran Granularity we are aligning the number to.
430 * @return The aligned value.
Eric Biederman03acab62004-10-14 21:25:53 +0000431 */
432static resource_t align_down(resource_t val, unsigned long gran)
433{
434 resource_t mask;
435 mask = (1ULL << gran) - 1ULL;
436 val &= ~mask;
437 return val;
438}
439
440/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000441 * Compute the maximum address that is part of a resource.
442 *
443 * @param resource The resource whose limit is desired.
444 * @return The end.
Eric Biederman03acab62004-10-14 21:25:53 +0000445 */
Kyösti Mälkkib2287712021-06-14 11:29:51 +0300446resource_t resource_end(const struct resource *resource)
Eric Biederman03acab62004-10-14 21:25:53 +0000447{
448 resource_t base, end;
Uwe Hermanne4870472010-11-04 23:23:47 +0000449
450 /* Get the base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000451 base = resource->base;
452
Uwe Hermanne4870472010-11-04 23:23:47 +0000453 /*
454 * For a non bridge resource granularity and alignment are the same.
Eric Biederman03acab62004-10-14 21:25:53 +0000455 * For a bridge resource align is the largest needed alignment below
Uwe Hermanne4870472010-11-04 23:23:47 +0000456 * the bridge. While the granularity is simply how many low bits of
457 * the address cannot be set.
Eric Biederman03acab62004-10-14 21:25:53 +0000458 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000459
Uwe Hermanne4870472010-11-04 23:23:47 +0000460 /* Get the end (rounded up). */
Eric Biederman03acab62004-10-14 21:25:53 +0000461 end = base + align_up(resource->size, resource->gran) - 1;
462
463 return end;
464}
465
466/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000467 * Compute the maximum legal value for resource->base.
468 *
469 * @param resource The resource whose maximum is desired.
470 * @return The maximum.
Eric Biederman03acab62004-10-14 21:25:53 +0000471 */
Kyösti Mälkkib2287712021-06-14 11:29:51 +0300472resource_t resource_max(const struct resource *resource)
Eric Biederman03acab62004-10-14 21:25:53 +0000473{
474 resource_t max;
475
476 max = align_down(resource->limit - resource->size + 1, resource->align);
477
478 return max;
479}
480
481/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000482 * Return the resource type of a resource.
483 *
484 * @param resource The resource type to decode.
485 * @return TODO.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000486 */
Kyösti Mälkkib2287712021-06-14 11:29:51 +0300487const char *resource_type(const struct resource *resource)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000488{
489 static char buffer[RESOURCE_TYPE_MAX];
Elyes HAOUASb7482212018-05-16 12:58:19 +0200490 snprintf(buffer, sizeof(buffer), "%s%s%s%s",
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100491 ((resource->flags & IORESOURCE_READONLY) ? "ro" : ""),
492 ((resource->flags & IORESOURCE_PREFETCH) ? "pref" : ""),
493 ((resource->flags == 0) ? "unused" :
494 (resource->flags & IORESOURCE_IO) ? "io" :
495 (resource->flags & IORESOURCE_DRQ) ? "drq" :
496 (resource->flags & IORESOURCE_IRQ) ? "irq" :
497 (resource->flags & IORESOURCE_MEM) ? "mem" : "??????"),
498 ((resource->flags & IORESOURCE_PCI64) ? "64" : ""));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000499 return buffer;
500}
501
502/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000503 * Print the resource that was just stored.
504 *
Martin Roth63373ed2013-07-08 16:24:19 -0600505 * @param dev The device the stored resource lives on.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000506 * @param resource The resource that was just stored.
507 * @param comment TODO
Eric Biederman03acab62004-10-14 21:25:53 +0000508 */
Kyösti Mälkkib2287712021-06-14 11:29:51 +0300509void report_resource_stored(struct device *dev, const struct resource *resource,
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000510 const char *comment)
Eric Biederman03acab62004-10-14 21:25:53 +0000511{
Uwe Hermanne4870472010-11-04 23:23:47 +0000512 char buf[10];
513 unsigned long long base, end;
514
515 if (!(resource->flags & IORESOURCE_STORED))
516 return;
517
518 base = resource->base;
519 end = resource_end(resource);
520 buf[0] = '\0';
521
John Zhao4792f8f2020-09-22 14:52:42 -0700522 if (dev->link_list && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
Elyes HAOUASb7482212018-05-16 12:58:19 +0200523 snprintf(buf, sizeof(buf),
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100524 "bus %02x ", dev->link_list->secondary);
Eric Biederman03acab62004-10-14 21:25:53 +0000525 }
Gang Chencfb90fd2022-07-02 01:24:09 +0800526 printk(BIOS_DEBUG, "%s %02lx <- [0x%016llx - 0x%016llx] size 0x%08llx "
Uwe Hermanne4870472010-11-04 23:23:47 +0000527 "gran 0x%02x %s%s%s\n", dev_path(dev), resource->index,
528 base, end, resource->size, resource->gran, buf,
529 resource_type(resource), comment);
Eric Biederman03acab62004-10-14 21:25:53 +0000530}
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000531
Uwe Hermanne4870472010-11-04 23:23:47 +0000532void search_bus_resources(struct bus *bus, unsigned long type_mask,
533 unsigned long type, resource_search_t search,
534 void *gp)
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000535{
536 struct device *curdev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000537
Myles Watson894a3472010-06-09 22:41:35 +0000538 for (curdev = bus->children; curdev; curdev = curdev->sibling) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000539 struct resource *res;
Uwe Hermanne4870472010-11-04 23:23:47 +0000540
541 /* Ignore disabled devices. */
542 if (!curdev->enabled)
543 continue;
544
Myles Watson894a3472010-06-09 22:41:35 +0000545 for (res = curdev->resource_list; res; res = res->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000546 /* If it isn't the right kind of resource ignore it. */
547 if ((res->flags & type_mask) != type)
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000548 continue;
Uwe Hermanne4870472010-11-04 23:23:47 +0000549
550 /* If it is a subtractive resource recurse. */
Myles Watsonc25cc112010-05-21 14:33:48 +0000551 if (res->flags & IORESOURCE_SUBTRACTIVE) {
Frans Hendriksa9caa502021-02-01 11:44:37 +0100552 struct bus *subbus;
Uwe Hermanne4870472010-11-04 23:23:47 +0000553 for (subbus = curdev->link_list; subbus;
554 subbus = subbus->next)
555 if (subbus->link_num
556 == IOINDEX_SUBTRACTIVE_LINK(res->index))
Myles Watson894a3472010-06-09 22:41:35 +0000557 break;
Stefan Reinauer58075552011-05-11 15:57:07 -0700558 if (!subbus) /* Why can subbus be NULL? */
559 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000560 search_bus_resources(subbus, type_mask, type,
561 search, gp);
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000562 continue;
563 }
Myles Watsonc25cc112010-05-21 14:33:48 +0000564 search(gp, curdev, res);
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000565 }
566 }
567}
568
Uwe Hermanne4870472010-11-04 23:23:47 +0000569void search_global_resources(unsigned long type_mask, unsigned long type,
570 resource_search_t search, void *gp)
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000571{
572 struct device *curdev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000573
Myles Watson894a3472010-06-09 22:41:35 +0000574 for (curdev = all_devices; curdev; curdev = curdev->next) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000575 struct resource *res;
Uwe Hermanne4870472010-11-04 23:23:47 +0000576
577 /* Ignore disabled devices. */
578 if (!curdev->enabled)
579 continue;
580
Myles Watson894a3472010-06-09 22:41:35 +0000581 for (res = curdev->resource_list; res; res = res->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000582 /* If it isn't the right kind of resource ignore it. */
583 if ((res->flags & type_mask) != type)
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000584 continue;
Uwe Hermanne4870472010-11-04 23:23:47 +0000585
586 /* If it is a subtractive resource ignore it. */
587 if (res->flags & IORESOURCE_SUBTRACTIVE)
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000588 continue;
Uwe Hermanne4870472010-11-04 23:23:47 +0000589
Shuo Liu0640c282022-08-02 01:50:36 +0800590 /* If the resource is not assigned ignore it. */
591 if (!(res->flags & IORESOURCE_ASSIGNED))
592 continue;
593
Myles Watsonc25cc112010-05-21 14:33:48 +0000594 search(gp, curdev, res);
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000595 }
596 }
597}
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000598
Aaron Durbinf0349022017-11-10 10:47:54 -0700599void dev_set_enabled(struct device *dev, int enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000600{
Uwe Hermanne4870472010-11-04 23:23:47 +0000601 if (dev->enabled == enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000602 return;
Uwe Hermanne4870472010-11-04 23:23:47 +0000603
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000604 dev->enabled = enable;
Frans Hendriksa9caa502021-02-01 11:44:37 +0100605 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000606 dev->ops->enable(dev);
Frans Hendriksa9caa502021-02-01 11:44:37 +0100607 else if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000608 dev->chip_ops->enable_dev(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000609}
610
611void disable_children(struct bus *bus)
612{
Aaron Durbinf0349022017-11-10 10:47:54 -0700613 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000614
Myles Watson894a3472010-06-09 22:41:35 +0000615 for (child = bus->children; child; child = child->sibling) {
616 struct bus *link;
Uwe Hermanne4870472010-11-04 23:23:47 +0000617 for (link = child->link_list; link; link = link->next)
Myles Watson894a3472010-06-09 22:41:35 +0000618 disable_children(link);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000619 dev_set_enabled(child, 0);
620 }
621}
Myles Watsonbb3d8122009-05-11 22:45:35 +0000622
Patrick Rudolpha6909f82017-05-22 18:30:27 +0200623/*
624 * Returns true if the device is an enabled bridge that has at least
Patrick Rudolphbd7739f2019-04-24 09:35:51 +0200625 * one enabled device on its secondary bus that is not of type NONE.
Patrick Rudolpha6909f82017-05-22 18:30:27 +0200626 */
Aaron Durbinf0349022017-11-10 10:47:54 -0700627bool dev_is_active_bridge(struct device *dev)
Patrick Rudolpha6909f82017-05-22 18:30:27 +0200628{
629 struct bus *link;
Aaron Durbinf0349022017-11-10 10:47:54 -0700630 struct device *child;
Patrick Rudolpha6909f82017-05-22 18:30:27 +0200631
632 if (!dev || !dev->enabled)
633 return 0;
634
635 if (!dev->link_list || !dev->link_list->children)
636 return 0;
637
638 for (link = dev->link_list; link; link = link->next) {
639 for (child = link->children; child; child = child->sibling) {
Patrick Rudolphbd7739f2019-04-24 09:35:51 +0200640 if (child->path.type == DEVICE_PATH_NONE)
641 continue;
642
Patrick Rudolpha6909f82017-05-22 18:30:27 +0200643 if (child->enabled)
644 return 1;
645 }
646 }
647
648 return 0;
649}
650
Jacob Garber464f4d62019-06-05 17:03:30 -0600651/**
652 * Ensure the device has a minimum number of bus links.
653 *
654 * @param dev The device to add links to.
655 * @param total_links The minimum number of links to have.
656 */
657void add_more_links(struct device *dev, unsigned int total_links)
Jacob Garberf77f7cd2019-06-05 16:32:28 -0600658{
659 struct bus *link, *last = NULL;
660 int link_num = -1;
661
662 for (link = dev->link_list; link; link = link->next) {
663 if (link_num < link->link_num)
664 link_num = link->link_num;
665 last = link;
666 }
667
668 if (last) {
669 int links = total_links - (link_num + 1);
670 if (links > 0) {
Jacob Garber464f4d62019-06-05 17:03:30 -0600671 link = malloc(links * sizeof(*link));
Jacob Garberf77f7cd2019-06-05 16:32:28 -0600672 if (!link)
673 die("Couldn't allocate more links!\n");
Jacob Garber464f4d62019-06-05 17:03:30 -0600674 memset(link, 0, links * sizeof(*link));
Jacob Garberf77f7cd2019-06-05 16:32:28 -0600675 last->next = link;
Jacob Garber464f4d62019-06-05 17:03:30 -0600676 } else {
677 /* No more links to add */
678 return;
Jacob Garberf77f7cd2019-06-05 16:32:28 -0600679 }
680 } else {
Jacob Garber464f4d62019-06-05 17:03:30 -0600681 link = malloc(total_links * sizeof(*link));
682 if (!link)
683 die("Couldn't allocate more links!\n");
684 memset(link, 0, total_links * sizeof(*link));
Jacob Garberf77f7cd2019-06-05 16:32:28 -0600685 dev->link_list = link;
686 }
687
688 for (link_num = link_num + 1; link_num < total_links; link_num++) {
689 link->link_num = link_num;
690 link->dev = dev;
691 link->next = link + 1;
692 last = link;
693 link = link->next;
694 }
695 last->next = NULL;
696}
697
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200698static void resource_tree(const struct device *root, int debug_level, int depth)
Myles Watsonbb3d8122009-05-11 22:45:35 +0000699{
Myles Watson894a3472010-06-09 22:41:35 +0000700 int i = 0;
Myles Watsonbb3d8122009-05-11 22:45:35 +0000701 struct device *child;
Myles Watson894a3472010-06-09 22:41:35 +0000702 struct bus *link;
Myles Watsonc25cc112010-05-21 14:33:48 +0000703 struct resource *res;
Myles Watsonbb3d8122009-05-11 22:45:35 +0000704 char indent[30]; /* If your tree has more levels, it's wrong. */
705
706 for (i = 0; i < depth + 1 && i < 29; i++)
707 indent[i] = ' ';
708 indent[i] = '\0';
709
Nico Huber7cc14ac2021-03-27 20:03:02 +0100710 printk(BIOS_DEBUG, "%s%s", indent, dev_path(root));
Martin Roth7f35d3a2017-07-23 16:22:25 -0600711 if (root->link_list && root->link_list->children)
Nico Huber7cc14ac2021-03-27 20:03:02 +0100712 printk(BIOS_DEBUG, " child on link 0 %s",
Martin Roth7f35d3a2017-07-23 16:22:25 -0600713 dev_path(root->link_list->children));
Nico Huber7cc14ac2021-03-27 20:03:02 +0100714 printk(BIOS_DEBUG, "\n");
Myles Watson894a3472010-06-09 22:41:35 +0000715
Myles Watsonc25cc112010-05-21 14:33:48 +0000716 for (res = root->resource_list; res; res = res->next) {
Nico Huber7cc14ac2021-03-27 20:03:02 +0100717 printk(debug_level, "%s%s resource base %llx size %llx "
Uwe Hermanne4870472010-11-04 23:23:47 +0000718 "align %d gran %d limit %llx flags %lx index %lx\n",
719 indent, dev_path(root), res->base, res->size,
720 res->align, res->gran, res->limit, res->flags,
721 res->index);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000722 }
723
Myles Watson894a3472010-06-09 22:41:35 +0000724 for (link = root->link_list; link; link = link->next) {
725 for (child = link->children; child; child = child->sibling)
Myles Watsonbb3d8122009-05-11 22:45:35 +0000726 resource_tree(child, debug_level, depth + 1);
727 }
728}
729
Elyes HAOUASe3480662018-05-06 20:32:23 +0200730void print_resource_tree(const struct device *root, int debug_level,
731 const char *msg)
Myles Watsonbb3d8122009-05-11 22:45:35 +0000732{
733 /* Bail if root is null. */
734 if (!root) {
Nico Huber7cc14ac2021-03-27 20:03:02 +0100735 printk(debug_level, "%s passed NULL for root!\n", __func__);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000736 return;
737 }
738
739 /* Bail if not printing to screen. */
Nico Huber7cc14ac2021-03-27 20:03:02 +0100740 if (!printk(debug_level, "Show resources in subtree (%s)...%s\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000741 dev_path(root), msg))
Myles Watsonbb3d8122009-05-11 22:45:35 +0000742 return;
Uwe Hermanne4870472010-11-04 23:23:47 +0000743
Myles Watsonbb3d8122009-05-11 22:45:35 +0000744 resource_tree(root, debug_level, 0);
745}
746
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200747void show_devs_tree(const struct device *dev, int debug_level, int depth)
Myles Watsonbb3d8122009-05-11 22:45:35 +0000748{
Marcelo Povoa8404dca2014-02-14 15:42:49 -0800749 char depth_str[20];
Myles Watsonbb3d8122009-05-11 22:45:35 +0000750 int i;
751 struct device *sibling;
Myles Watson894a3472010-06-09 22:41:35 +0000752 struct bus *link;
753
Myles Watsonbb3d8122009-05-11 22:45:35 +0000754 for (i = 0; i < depth; i++)
755 depth_str[i] = ' ';
756 depth_str[i] = '\0';
Uwe Hermanne4870472010-11-04 23:23:47 +0000757
Nico Huber7cc14ac2021-03-27 20:03:02 +0100758 printk(debug_level, "%s%s: enabled %d\n",
Myles Watsonc25cc112010-05-21 14:33:48 +0000759 depth_str, dev_path(dev), dev->enabled);
Uwe Hermanne4870472010-11-04 23:23:47 +0000760
Myles Watson894a3472010-06-09 22:41:35 +0000761 for (link = dev->link_list; link; link = link->next) {
762 for (sibling = link->children; sibling;
Myles Watsonbb3d8122009-05-11 22:45:35 +0000763 sibling = sibling->sibling)
Kyösti Mälkki3d3c8c32016-08-15 10:04:21 +0300764 show_devs_tree(sibling, debug_level, depth + 1);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000765 }
766}
767
768void show_all_devs_tree(int debug_level, const char *msg)
769{
770 /* Bail if not printing to screen. */
Nico Huber7cc14ac2021-03-27 20:03:02 +0100771 if (!printk(debug_level, "Show all devs in tree form... %s\n", msg))
Myles Watsonbb3d8122009-05-11 22:45:35 +0000772 return;
Kyösti Mälkki3d3c8c32016-08-15 10:04:21 +0300773 show_devs_tree(all_devices, debug_level, 0);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000774}
775
776void show_devs_subtree(struct device *root, int debug_level, const char *msg)
777{
778 /* Bail if not printing to screen. */
Nico Huber7cc14ac2021-03-27 20:03:02 +0100779 if (!printk(debug_level, "Show all devs in subtree %s... %s\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000780 dev_path(root), msg))
Myles Watsonbb3d8122009-05-11 22:45:35 +0000781 return;
Nico Huber7cc14ac2021-03-27 20:03:02 +0100782 printk(debug_level, "%s\n", msg);
Kyösti Mälkki3d3c8c32016-08-15 10:04:21 +0300783 show_devs_tree(root, debug_level, 0);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000784}
785
786void show_all_devs(int debug_level, const char *msg)
787{
788 struct device *dev;
789
790 /* Bail if not printing to screen. */
Nico Huber7cc14ac2021-03-27 20:03:02 +0100791 if (!printk(debug_level, "Show all devs... %s\n", msg))
Myles Watsonbb3d8122009-05-11 22:45:35 +0000792 return;
793 for (dev = all_devices; dev; dev = dev->next) {
Nico Huber7cc14ac2021-03-27 20:03:02 +0100794 printk(debug_level, "%s: enabled %d\n",
Myles Watsonc25cc112010-05-21 14:33:48 +0000795 dev_path(dev), dev->enabled);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000796 }
797}
798
799void show_one_resource(int debug_level, struct device *dev,
800 struct resource *resource, const char *comment)
801{
802 char buf[10];
803 unsigned long long base, end;
804 base = resource->base;
805 end = resource_end(resource);
806 buf[0] = '\0';
Uwe Hermanne4870472010-11-04 23:23:47 +0000807
Gang Chencfb90fd2022-07-02 01:24:09 +0800808 printk(debug_level, "%s %02lx <- [0x%016llx - 0x%016llx] "
Patrick Georgi51615092012-03-11 19:31:03 +0100809 "size 0x%08llx gran 0x%02x %s%s%s\n", dev_path(dev),
Uwe Hermanne4870472010-11-04 23:23:47 +0000810 resource->index, base, end, resource->size, resource->gran,
811 buf, resource_type(resource), comment);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000812}
813
Frans Hendriksa9caa502021-02-01 11:44:37 +0100814void show_all_devs_resources(int debug_level, const char *msg)
Myles Watsonbb3d8122009-05-11 22:45:35 +0000815{
816 struct device *dev;
817
Nico Huber7cc14ac2021-03-27 20:03:02 +0100818 if (!printk(debug_level, "Show all devs with resources... %s\n", msg))
Myles Watsonbb3d8122009-05-11 22:45:35 +0000819 return;
820
821 for (dev = all_devices; dev; dev = dev->next) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000822 struct resource *res;
Nico Huber7cc14ac2021-03-27 20:03:02 +0100823 printk(debug_level, "%s: enabled %d\n",
Myles Watsonc25cc112010-05-21 14:33:48 +0000824 dev_path(dev), dev->enabled);
825 for (res = dev->resource_list; res; res = res->next)
826 show_one_resource(debug_level, dev, res, "");
Myles Watsonbb3d8122009-05-11 22:45:35 +0000827 }
828}
Uwe Hermann4b42a622010-10-11 19:36:13 +0000829
Kyösti Mälkkice345962021-06-11 19:31:22 +0300830const struct resource *fixed_resource_range_idx(struct device *dev, unsigned long index,
831 uint64_t base, uint64_t size, unsigned long flags)
Uwe Hermann4b42a622010-10-11 19:36:13 +0000832{
833 struct resource *resource;
Kyösti Mälkkice345962021-06-11 19:31:22 +0300834 if (!size)
835 return NULL;
Uwe Hermann4b42a622010-10-11 19:36:13 +0000836
837 resource = new_resource(dev, index);
Kyösti Mälkkice345962021-06-11 19:31:22 +0300838 resource->base = base;
839 resource->size = size;
840 resource->flags = IORESOURCE_FIXED | IORESOURCE_ASSIGNED;
841 resource->flags |= flags;
Uwe Hermann4b42a622010-10-11 19:36:13 +0000842
Kyösti Mälkkice345962021-06-11 19:31:22 +0300843 printk(BIOS_SPEW, "dev: %s, index: 0x%lx, base: 0x%llx, size: 0x%llx\n",
844 dev_path(dev), resource->index, resource->base, resource->size);
845
846 return resource;
Kyösti Mälkki63f8c082012-07-10 13:27:26 +0300847}
848
Kyösti Mälkkid0525d42021-06-13 10:09:51 +0300849const struct resource *lower_ram_end(struct device *dev, unsigned long index, uint64_t end)
850{
851 return ram_from_to(dev, index, 0, end);
852}
853
854const struct resource *upper_ram_end(struct device *dev, unsigned long index, uint64_t end)
855{
856 if (end <= 4ull * GiB)
857 return NULL;
858
859 printk(BIOS_INFO, "Available memory above 4GB: %lluM\n", (end - 4ull * GiB) / MiB);
860
861 return ram_from_to(dev, index, 4ull * GiB, end);
862}
863
Angel Pons90be7542021-01-20 13:03:58 +0100864void mmconf_resource(struct device *dev, unsigned long index)
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200865{
Angel Pons90be7542021-01-20 13:03:58 +0100866 struct resource *resource = new_resource(dev, index);
Shelley Chen4e9bb332021-10-20 15:43:45 -0700867 resource->base = CONFIG_ECAM_MMCONF_BASE_ADDRESS;
868 resource->size = CONFIG_ECAM_MMCONF_LENGTH;
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200869 resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
870 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
871
Angel Ponsd19cc112021-07-04 11:41:31 +0200872 printk(BIOS_DEBUG, "Adding PCIe enhanced config space BAR 0x%08lx-0x%08lx.\n",
873 (unsigned long)(resource->base),
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200874 (unsigned long)(resource->base + resource->size));
875}
876
Uwe Hermann4b42a622010-10-11 19:36:13 +0000877void tolm_test(void *gp, struct device *dev, struct resource *new)
878{
879 struct resource **best_p = gp;
880 struct resource *best;
881
882 best = *best_p;
883
Furquan Shaikhafaae8a2020-05-18 16:00:53 -0700884 /*
885 * If resource is not allocated any space i.e. size is zero,
886 * then do not consider this resource in tolm calculations.
887 */
888 if (new->size == 0)
889 return;
890
Uwe Hermann4b42a622010-10-11 19:36:13 +0000891 if (!best || (best->base > new->base))
892 best = new;
893
894 *best_p = best;
895}
896
897u32 find_pci_tolm(struct bus *bus)
898{
899 struct resource *min = NULL;
900 u32 tolm;
Furquan Shaikhafaae8a2020-05-18 16:00:53 -0700901 unsigned long mask_match = IORESOURCE_MEM | IORESOURCE_ASSIGNED;
Uwe Hermann4b42a622010-10-11 19:36:13 +0000902
Furquan Shaikhafaae8a2020-05-18 16:00:53 -0700903 search_bus_resources(bus, mask_match, mask_match, tolm_test, &min);
Uwe Hermann4b42a622010-10-11 19:36:13 +0000904
905 tolm = 0xffffffffUL;
906
907 if (min && tolm > min->base)
908 tolm = min->base;
909
910 return tolm;
911}
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700912
913/* Count of enabled CPUs */
914int dev_count_cpu(void)
915{
Aaron Durbinf0349022017-11-10 10:47:54 -0700916 struct device *cpu;
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700917 int count = 0;
918
919 for (cpu = all_devices; cpu; cpu = cpu->next) {
920 if ((cpu->path.type != DEVICE_PATH_APIC) ||
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800921 (cpu->bus->dev->path.type != DEVICE_PATH_CPU_CLUSTER))
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700922 continue;
923 if (!cpu->enabled)
924 continue;
925 count++;
926 }
927
928 return count;
929}
Lee Leahya95baf92016-02-13 06:10:04 -0800930
931/* Get device path name */
932const char *dev_path_name(enum device_path_type type)
933{
934 static const char *const type_names[] = DEVICE_PATH_NAMES;
935 const char *type_name = "Unknown";
936
937 /* Translate the type value into a string */
938 if (type < ARRAY_SIZE(type_names))
939 type_name = type_names[type];
940 return type_name;
941}
Kyösti Mälkki68e6dc92021-06-14 00:40:22 +0300942
Nico Huber577c6b92022-08-15 00:08:58 +0200943bool dev_path_hotplug(const struct device *dev)
944{
945 for (dev = dev->bus->dev; dev != dev->bus->dev; dev = dev->bus->dev) {
946 if (dev->hotplug_port)
947 return true;
948 }
949 return false;
950}
951
Kyösti Mälkki68e6dc92021-06-14 00:40:22 +0300952void log_resource(const char *type, const struct device *dev, const struct resource *res,
953 const char *srcfile, const int line)
954{
955 printk(BIOS_SPEW, "%s:%d res: %s, dev: %s, index: 0x%lx, base: 0x%llx, "
956 "end: 0x%llx, size_kb: 0x%llx\n",
957 srcfile, line, type, dev_path(dev), res->index, res->base,
958 resource_end(res), res->size / KiB);
959}
Fabio Aiutoc5573d62022-09-10 14:23:38 +0200960
961bool is_cpu(const struct device *cpu)
962{
963 return cpu->path.type == DEVICE_PATH_APIC &&
964 cpu->bus->dev->path.type == DEVICE_PATH_CPU_CLUSTER;
965}
966
967bool is_enabled_cpu(const struct device *cpu)
968{
969 return is_cpu(cpu) && cpu->enabled;
970}