blob: c845ecd35d1d8466e1f23a9e7a6625d52ba97f08 [file] [log] [blame]
Uwe Hermannb80dbf02007-04-22 19:08:13 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermannb80dbf02007-04-22 19:08:13 +00003 *
4 * Copyright (C) 2003-2004 Linux Networx
5 * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
6 * Copyright (C) 2003 Greg Watson <jarrah@users.sourceforge.net>
7 * Copyright (C) 2004 Li-Ta Lo <ollie@lanl.gov>
8 * Copyright (C) 2005-2006 Tyan
9 * (Written by Yinghai Lu <yhlu@tyan.com> for Tyan)
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; version 2 of the License.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
Eric Biederman8ca8d762003-04-22 19:02:15 +000025#include <console/console.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000026#include <device/device.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +000027#include <device/path.h>
28#include <device/pci.h>
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +000029#include <device/resource.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +000030#include <string.h>
31
Eric Biederman03acab62004-10-14 21:25:53 +000032/**
33 * @brief See if a device structure exists for path
34 *
35 * @param bus The bus to find the device on
36 * @param path The relative path from the bus to the appropriate device
37 * @return pointer to a device structure for the device on bus at path
38 * or 0/NULL if no device is found
39 */
40device_t find_dev_path(struct bus *parent, struct device_path *path)
41{
42 device_t child;
Myles Watson894a3472010-06-09 22:41:35 +000043 for (child = parent->children; child; child = child->sibling) {
Eric Biederman03acab62004-10-14 21:25:53 +000044 if (path_eq(path, &child->path)) {
45 break;
46 }
47 }
48 return child;
49}
Eric Biedermane9a271e32003-09-02 03:36:25 +000050
51/**
Li-Ta Loe5266692004-03-23 21:28:05 +000052 * @brief See if a device structure already exists and if not allocate it
53 *
Eric Biedermane9a271e32003-09-02 03:36:25 +000054 * @param bus The bus to find the device on
55 * @param path The relative path from the bus to the appropriate device
Li-Ta Loe5266692004-03-23 21:28:05 +000056 * @return pointer to a device structure for the device on bus at path
Eric Biedermane9a271e32003-09-02 03:36:25 +000057 */
58device_t alloc_find_dev(struct bus *parent, struct device_path *path)
59{
60 device_t child;
Eric Biederman03acab62004-10-14 21:25:53 +000061 child = find_dev_path(parent, path);
62 if (!child) {
63 child = alloc_dev(parent, path);
Eric Biedermane9a271e32003-09-02 03:36:25 +000064 }
Eric Biederman03acab62004-10-14 21:25:53 +000065 return child;
Eric Biedermane9a271e32003-09-02 03:36:25 +000066}
Eric Biederman8ca8d762003-04-22 19:02:15 +000067
68/**
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000069 * @brief Given a PCI bus and a devfn number, find the device structure
70 *
Eric Biederman8ca8d762003-04-22 19:02:15 +000071 * @param bus The bus number
72 * @param devfn a device/function number
73 * @return pointer to the device structure
74 */
75struct device *dev_find_slot(unsigned int bus, unsigned int devfn)
76{
Eric Biederman83b991a2003-10-11 06:20:25 +000077 struct device *dev, *result;
Eric Biederman8ca8d762003-04-22 19:02:15 +000078
Eric Biederman83b991a2003-10-11 06:20:25 +000079 result = 0;
Eric Biedermane9a271e32003-09-02 03:36:25 +000080 for (dev = all_devices; dev; dev = dev->next) {
Eric Biederman5cd81732004-03-11 15:01:31 +000081 if ((dev->path.type == DEVICE_PATH_PCI) &&
Stefan Reinauer14e22772010-04-27 06:56:47 +000082 (dev->bus->secondary == bus) &&
Stefan Reinauer2b34db82009-02-28 20:10:20 +000083 (dev->path.pci.devfn == devfn)) {
Eric Biederman83b991a2003-10-11 06:20:25 +000084 result = dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +000085 break;
Eric Biedermane9a271e32003-09-02 03:36:25 +000086 }
87 }
Eric Biederman83b991a2003-10-11 06:20:25 +000088 return result;
Eric Biederman8ca8d762003-04-22 19:02:15 +000089}
90
arch import user (historical)98d0d302005-07-06 17:13:46 +000091/**
92 * @brief Given a smbus bus and a device number, find the device structure
93 *
94 * @param bus The bus number
Stefan Reinauer14e22772010-04-27 06:56:47 +000095 * @param addr a device number
arch import user (historical)98d0d302005-07-06 17:13:46 +000096 * @return pointer to the device structure
97 */
98struct device *dev_find_slot_on_smbus(unsigned int bus, unsigned int addr)
99{
100 struct device *dev, *result;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000101
arch import user (historical)98d0d302005-07-06 17:13:46 +0000102 result = 0;
103 for (dev = all_devices; dev; dev = dev->next) {
104 if ((dev->path.type == DEVICE_PATH_I2C) &&
Stefan Reinauer14e22772010-04-27 06:56:47 +0000105 (dev->bus->secondary == bus) &&
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000106 (dev->path.i2c.device == addr)) {
arch import user (historical)98d0d302005-07-06 17:13:46 +0000107 result = dev;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000108 break;
109 }
110 }
arch import user (historical)98d0d302005-07-06 17:13:46 +0000111 return result;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000112}
arch import user (historical)98d0d302005-07-06 17:13:46 +0000113
Eric Biederman8ca8d762003-04-22 19:02:15 +0000114/** Find a device of a given vendor and type
115 * @param vendor Vendor ID (e.g. 0x8086 for Intel)
116 * @param device Device ID
117 * @param from Pointer to the device structure, used as a starting point
Stefan Reinauer14e22772010-04-27 06:56:47 +0000118 * in the linked list of all_devices, which can be 0 to start at the
Eric Biederman8ca8d762003-04-22 19:02:15 +0000119 * head of the list (i.e. all_devices)
Stefan Reinauer14e22772010-04-27 06:56:47 +0000120 * @return Pointer to the device struct
Eric Biederman8ca8d762003-04-22 19:02:15 +0000121 */
122struct device *dev_find_device(unsigned int vendor, unsigned int device, struct device *from)
123{
124 if (!from)
125 from = all_devices;
126 else
127 from = from->next;
Eric Biederman5cd81732004-03-11 15:01:31 +0000128 while (from && (from->vendor != vendor || from->device != device)) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000129 from = from->next;
Eric Biederman5cd81732004-03-11 15:01:31 +0000130 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000131 return from;
132}
133
134/** Find a device of a given class
135 * @param class Class of the device
136 * @param from Pointer to the device structure, used as a starting point
Stefan Reinauer14e22772010-04-27 06:56:47 +0000137 * in the linked list of all_devices, which can be 0 to start at the
Eric Biederman8ca8d762003-04-22 19:02:15 +0000138 * head of the list (i.e. all_devices)
Stefan Reinauer14e22772010-04-27 06:56:47 +0000139 * @return Pointer to the device struct
Eric Biederman8ca8d762003-04-22 19:02:15 +0000140 */
141struct device *dev_find_class(unsigned int class, struct device *from)
142{
143 if (!from)
144 from = all_devices;
145 else
146 from = from->next;
Greg Watson59651692003-12-17 17:39:53 +0000147 while (from && (from->class & 0xffffff00) != class)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000148 from = from->next;
149 return from;
150}
151
Myles Watson8f6354b2009-10-29 21:27:43 +0000152/* Warning: This function uses a static buffer. Don't call it more than once
153 * from the same print statement! */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000154
155const char *dev_path(device_t dev)
156{
157 static char buffer[DEVICE_PATH_MAX];
158 buffer[0] = '\0';
159 if (!dev) {
160 memcpy(buffer, "<null>", 7);
161 }
162 else {
163 switch(dev->path.type) {
Eric Biederman83b991a2003-10-11 06:20:25 +0000164 case DEVICE_PATH_ROOT:
165 memcpy(buffer, "Root Device", 12);
166 break;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000167 case DEVICE_PATH_PCI:
Stefan Reinauer08670622009-06-30 15:17:49 +0000168#if CONFIG_PCI_BUS_SEGN_BITS
Yinghai Lu5f9624d2006-10-04 22:56:21 +0000169 sprintf(buffer, "PCI: %04x:%02x:%02x.%01x",
Stefan Reinauer14e22772010-04-27 06:56:47 +0000170 dev->bus->secondary>>8, dev->bus->secondary & 0xff,
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000171 PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));
Yinghai Lu5f9624d2006-10-04 22:56:21 +0000172#else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000173 sprintf(buffer, "PCI: %02x:%02x.%01x",
Stefan Reinauer14e22772010-04-27 06:56:47 +0000174 dev->bus->secondary,
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000175 PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));
Yinghai Lu5f9624d2006-10-04 22:56:21 +0000176#endif
Eric Biedermane9a271e32003-09-02 03:36:25 +0000177 break;
178 case DEVICE_PATH_PNP:
179 sprintf(buffer, "PNP: %04x.%01x",
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000180 dev->path.pnp.port, dev->path.pnp.device);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000181 break;
182 case DEVICE_PATH_I2C:
arch import user (historical)98d0d302005-07-06 17:13:46 +0000183 sprintf(buffer, "I2C: %02x:%02x",
184 dev->bus->secondary,
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000185 dev->path.i2c.device);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000186 break;
Eric Biederman03acab62004-10-14 21:25:53 +0000187 case DEVICE_PATH_APIC:
188 sprintf(buffer, "APIC: %02x",
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000189 dev->path.apic.apic_id);
Eric Biederman03acab62004-10-14 21:25:53 +0000190 break;
Eric Biederman7003ba42004-10-16 06:20:29 +0000191 case DEVICE_PATH_PCI_DOMAIN:
192 sprintf(buffer, "PCI_DOMAIN: %04x",
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000193 dev->path.pci_domain.domain);
Eric Biederman7003ba42004-10-16 06:20:29 +0000194 break;
195 case DEVICE_PATH_APIC_CLUSTER:
196 sprintf(buffer, "APIC_CLUSTER: %01x",
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000197 dev->path.apic_cluster.cluster);
Eric Biederman7003ba42004-10-16 06:20:29 +0000198 break;
Eric Biedermana9e632c2004-11-18 22:38:08 +0000199 case DEVICE_PATH_CPU:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000200 sprintf(buffer, "CPU: %02x", dev->path.cpu.id);
Eric Biedermana9e632c2004-11-18 22:38:08 +0000201 break;
202 case DEVICE_PATH_CPU_BUS:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000203 sprintf(buffer, "CPU_BUS: %02x", dev->path.cpu_bus.id);
Eric Biedermana9e632c2004-11-18 22:38:08 +0000204 break;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000205 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000206 printk(BIOS_ERR, "Unknown device path type: %d\n", dev->path.type);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000207 break;
208 }
209 }
210 return buffer;
211}
212
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000213const char *bus_path(struct bus *bus)
214{
215 static char buffer[BUS_PATH_MAX];
Myles Watson894a3472010-06-09 22:41:35 +0000216 sprintf(buffer, "%s,%d", dev_path(bus->dev), bus->link_num);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000217 return buffer;
218}
219
Eric Biedermane9a271e32003-09-02 03:36:25 +0000220int path_eq(struct device_path *path1, struct device_path *path2)
221{
222 int equal = 0;
223 if (path1->type == path2->type) {
224 switch(path1->type) {
225 case DEVICE_PATH_NONE:
226 break;
Eric Biederman83b991a2003-10-11 06:20:25 +0000227 case DEVICE_PATH_ROOT:
228 equal = 1;
229 break;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000230 case DEVICE_PATH_PCI:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000231 equal = (path1->pci.devfn == path2->pci.devfn);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000232 break;
233 case DEVICE_PATH_PNP:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000234 equal = (path1->pnp.port == path2->pnp.port) &&
235 (path1->pnp.device == path2->pnp.device);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000236 break;
237 case DEVICE_PATH_I2C:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000238 equal = (path1->i2c.device == path2->i2c.device);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000239 break;
Eric Biederman03acab62004-10-14 21:25:53 +0000240 case DEVICE_PATH_APIC:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000241 equal = (path1->apic.apic_id == path2->apic.apic_id);
Eric Biederman03acab62004-10-14 21:25:53 +0000242 break;
Eric Biederman7003ba42004-10-16 06:20:29 +0000243 case DEVICE_PATH_PCI_DOMAIN:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000244 equal = (path1->pci_domain.domain == path2->pci_domain.domain);
Eric Biederman7003ba42004-10-16 06:20:29 +0000245 break;
246 case DEVICE_PATH_APIC_CLUSTER:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000247 equal = (path1->apic_cluster.cluster == path2->apic_cluster.cluster);
Eric Biederman7003ba42004-10-16 06:20:29 +0000248 break;
Eric Biedermana9e632c2004-11-18 22:38:08 +0000249 case DEVICE_PATH_CPU:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000250 equal = (path1->cpu.id == path2->cpu.id);
Eric Biedermana9e632c2004-11-18 22:38:08 +0000251 break;
252 case DEVICE_PATH_CPU_BUS:
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000253 equal = (path1->cpu_bus.id == path2->cpu_bus.id);
Eric Biedermana9e632c2004-11-18 22:38:08 +0000254 break;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000255 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000256 printk(BIOS_ERR, "Uknown device type: %d\n", path1->type);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000257 break;
258 }
259 }
260 return equal;
261}
Eric Biederman5cd81732004-03-11 15:01:31 +0000262
263/**
Myles Watsonc25cc112010-05-21 14:33:48 +0000264 * Allocate 64 more resources to the free list.
265 */
266static int allocate_more_resources(void)
267{
268 int i;
269 struct resource *new_res_list;
270 new_res_list = malloc(64 * sizeof(*new_res_list));
271
272 if (new_res_list == NULL)
273 return 0;
274
275 memset(new_res_list, 0, 64 * sizeof(*new_res_list));
276
277 for (i = 0; i < 64-1; i++)
278 new_res_list[i].next = &new_res_list[i+1];
279
280 free_resources = new_res_list;
281 return 1;
282}
283
284/**
285 * Remove resource res from the device's list and add it to the free list.
286 */
287static void free_resource(device_t dev, struct resource *res, struct resource *prev)
288{
289 if (prev)
290 prev->next = res->next;
291 else
292 dev->resource_list = res->next;
293 res->next = free_resources;
294 free_resources = res;
295}
296
297/**
Eric Biederman5cd81732004-03-11 15:01:31 +0000298 * See if we have unused but allocated resource structures.
299 * If so remove the allocation.
300 * @param dev The device to find the resource on
301 */
302void compact_resources(device_t dev)
303{
Myles Watsonc25cc112010-05-21 14:33:48 +0000304 struct resource *res, *next, *prev = NULL;
Eric Biederman5cd81732004-03-11 15:01:31 +0000305 /* Move all of the free resources to the end */
Myles Watson894a3472010-06-09 22:41:35 +0000306 for (res = dev->resource_list; res; res = next) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000307 next = res->next;
308 if (!res->flags)
309 free_resource(dev, res, prev);
310 else
311 prev = res;
Eric Biederman5cd81732004-03-11 15:01:31 +0000312 }
313}
314
Eric Biederman03acab62004-10-14 21:25:53 +0000315
Eric Biederman5cd81732004-03-11 15:01:31 +0000316/**
Eric Biederman03acab62004-10-14 21:25:53 +0000317 * See if a resource structure already exists for a given index
Eric Biederman5cd81732004-03-11 15:01:31 +0000318 * @param dev The device to find the resource on
319 * @param index The index of the resource on the device.
Eric Biederman03acab62004-10-14 21:25:53 +0000320 * @return the resource if it already exists
Eric Biederman5cd81732004-03-11 15:01:31 +0000321 */
Eric Biederman03acab62004-10-14 21:25:53 +0000322struct resource *probe_resource(device_t dev, unsigned index)
Eric Biederman5cd81732004-03-11 15:01:31 +0000323{
Myles Watsonc25cc112010-05-21 14:33:48 +0000324 struct resource *res;
Eric Biederman5cd81732004-03-11 15:01:31 +0000325 /* See if there is a resource with the appropriate index */
Myles Watson894a3472010-06-09 22:41:35 +0000326 for (res = dev->resource_list; res; res = res->next) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000327 if (res->index == index)
Eric Biederman5cd81732004-03-11 15:01:31 +0000328 break;
Eric Biederman5cd81732004-03-11 15:01:31 +0000329 }
Myles Watsonc25cc112010-05-21 14:33:48 +0000330 return res;
Eric Biederman03acab62004-10-14 21:25:53 +0000331}
332
333/**
334 * See if a resource structure already exists for a given index and if
335 * not allocate one. Then initialize the initialize the resource
336 * to default values.
337 * @param dev The device to find the resource on
338 * @param index The index of the resource on the device.
339 */
340struct resource *new_resource(device_t dev, unsigned index)
341{
Myles Watsonc25cc112010-05-21 14:33:48 +0000342 struct resource *resource, *tail;
Eric Biederman03acab62004-10-14 21:25:53 +0000343
344 /* First move all of the free resources to the end */
345 compact_resources(dev);
346
347 /* See if there is a resource with the appropriate index */
348 resource = probe_resource(dev, index);
Eric Biederman5cd81732004-03-11 15:01:31 +0000349 if (!resource) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000350 if (free_resources == NULL && !allocate_more_resources())
351 die("Couldn't allocate more resources.");
352
353 resource = free_resources;
354 free_resources = free_resources->next;
Eric Biederman5cd81732004-03-11 15:01:31 +0000355 memset(resource, 0, sizeof(*resource));
Myles Watsonc25cc112010-05-21 14:33:48 +0000356 resource->next = NULL;
357 tail = dev->resource_list;
358 if (tail) {
359 while (tail->next) tail = tail->next;
360 tail->next = resource;
361 }
362 else
363 dev->resource_list = resource;
Eric Biederman5cd81732004-03-11 15:01:31 +0000364 }
365 /* Initialize the resource values */
366 if (!(resource->flags & IORESOURCE_FIXED)) {
367 resource->flags = 0;
368 resource->base = 0;
369 }
370 resource->size = 0;
371 resource->limit = 0;
372 resource->index = index;
373 resource->align = 0;
374 resource->gran = 0;
375
376 return resource;
377}
378
Eric Biederman03acab62004-10-14 21:25:53 +0000379/**
380 * Return an existing resource structure for a given index.
381 * @param dev The device to find the resource on
382 * @param index The index of the resource on the device.
383 */
384struct resource *find_resource(device_t dev, unsigned index)
385{
386 struct resource *resource;
387
388 /* See if there is a resource with the appropriate index */
389 resource = probe_resource(dev, index);
390 if (!resource) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000391 printk(BIOS_EMERG, "%s missing resource: %02x\n",
Eric Biederman03acab62004-10-14 21:25:53 +0000392 dev_path(dev), index);
393 die("");
394 }
395 return resource;
396}
397
398
399/**
400 * @brief round a number up to the next multiple of gran
401 * @param val the starting value
402 * @param gran granularity we are aligning the number to.
403 * @returns aligned value
404 */
405static resource_t align_up(resource_t val, unsigned long gran)
406{
407 resource_t mask;
408 mask = (1ULL << gran) - 1ULL;
409 val += mask;
410 val &= ~mask;
411 return val;
412}
413
414/**
415 * @brief round a number up to the previous multiple of gran
416 * @param val the starting value
417 * @param gran granularity we are aligning the number to.
418 * @returns aligned value
419 */
420static resource_t align_down(resource_t val, unsigned long gran)
421{
422 resource_t mask;
423 mask = (1ULL << gran) - 1ULL;
424 val &= ~mask;
425 return val;
426}
427
428/**
429 * @brief Compute the maximum address that is part of a resource
430 * @param resource the resource whose limit is desired
431 * @returns the end
432 */
433resource_t resource_end(struct resource *resource)
434{
435 resource_t base, end;
436 /* get the base address */
437 base = resource->base;
438
439 /* For a non bridge resource granularity and alignment are the same.
440 * For a bridge resource align is the largest needed alignment below
441 * the bridge. While the granularity is simply how many low bits of the
442 * address cannot be set.
443 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000444
Eric Biederman03acab62004-10-14 21:25:53 +0000445 /* Get the end (rounded up) */
446 end = base + align_up(resource->size, resource->gran) - 1;
447
448 return end;
449}
450
451/**
452 * @brief Compute the maximum legal value for resource->base
453 * @param resource the resource whose maximum is desired
454 * @returns the maximum
455 */
456resource_t resource_max(struct resource *resource)
457{
458 resource_t max;
459
460 max = align_down(resource->limit - resource->size + 1, resource->align);
461
462 return max;
463}
464
465/**
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000466 * @brief return the resource type of a resource
467 * @param resource the resource type to decode.
468 */
469const char *resource_type(struct resource *resource)
470{
471 static char buffer[RESOURCE_TYPE_MAX];
472 sprintf(buffer, "%s%s%s%s",
473 ((resource->flags & IORESOURCE_READONLY)? "ro": ""),
474 ((resource->flags & IORESOURCE_PREFETCH)? "pref":""),
475 ((resource->flags == 0)? "unused":
476 (resource->flags & IORESOURCE_IO)? "io":
477 (resource->flags & IORESOURCE_DRQ)? "drq":
478 (resource->flags & IORESOURCE_IRQ)? "irq":
479 (resource->flags & IORESOURCE_MEM)? "mem":"??????"),
480 ((resource->flags & IORESOURCE_PCI64)?"64":""));
481 return buffer;
482}
483
484/**
Eric Biederman03acab62004-10-14 21:25:53 +0000485 * @brief print the resource that was just stored.
486 * @param dev the device the stored resorce lives on
487 * @param resource the resource that was just stored.
488 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000489void report_resource_stored(device_t dev, struct resource *resource, const char *comment)
Eric Biederman03acab62004-10-14 21:25:53 +0000490{
491 if (resource->flags & IORESOURCE_STORED) {
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000492 char buf[10];
Eric Biederman03acab62004-10-14 21:25:53 +0000493 unsigned long long base, end;
494 base = resource->base;
495 end = resource_end(resource);
496 buf[0] = '\0';
497 if (resource->flags & IORESOURCE_PCI_BRIDGE) {
Stefan Reinauer08670622009-06-30 15:17:49 +0000498#if CONFIG_PCI_BUS_SEGN_BITS
Myles Watson894a3472010-06-09 22:41:35 +0000499 sprintf(buf, "bus %04x:%02x ", dev->bus->secondary>>8, dev->link_list->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +0000500#else
Myles Watson894a3472010-06-09 22:41:35 +0000501 sprintf(buf, "bus %02x ", dev->link_list->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +0000502#endif
Eric Biederman03acab62004-10-14 21:25:53 +0000503 }
Stefan Reinauer14e22772010-04-27 06:56:47 +0000504 printk(BIOS_DEBUG,
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000505 "%s %02lx <- [0x%010Lx - 0x%010Lx] size 0x%08Lx gran 0x%02x %s%s%s\n",
Eric Biederman03acab62004-10-14 21:25:53 +0000506 dev_path(dev),
507 resource->index,
508 base, end,
Carl-Daniel Hailfinger52bc9932007-10-16 18:21:22 +0000509 resource->size, resource->gran,
Eric Biederman03acab62004-10-14 21:25:53 +0000510 buf,
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000511 resource_type(resource),
Eric Biederman03acab62004-10-14 21:25:53 +0000512 comment);
513 }
514}
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000515
516void search_bus_resources(struct bus *bus,
517 unsigned long type_mask, unsigned long type,
518 resource_search_t search, void *gp)
519{
520 struct device *curdev;
Myles Watson894a3472010-06-09 22:41:35 +0000521 for (curdev = bus->children; curdev; curdev = curdev->sibling) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000522 struct resource *res;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000523 /* Ignore disabled devices */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000524 if (!curdev->enabled) continue;
Myles Watson894a3472010-06-09 22:41:35 +0000525 for (res = curdev->resource_list; res; res = res->next) {
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000526 /* If it isn't the right kind of resource ignore it */
Myles Watsonc25cc112010-05-21 14:33:48 +0000527 if ((res->flags & type_mask) != type) {
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000528 continue;
529 }
530 /* If it is a subtractive resource recurse */
Myles Watsonc25cc112010-05-21 14:33:48 +0000531 if (res->flags & IORESOURCE_SUBTRACTIVE) {
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000532 struct bus * subbus;
Myles Watson894a3472010-06-09 22:41:35 +0000533 for (subbus = curdev->link_list; subbus; subbus = subbus->next)
534 if (subbus->link_num == IOINDEX_SUBTRACTIVE_LINK(res->index))
535 break;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000536 search_bus_resources(subbus, type_mask, type, search, gp);
537 continue;
538 }
Myles Watsonc25cc112010-05-21 14:33:48 +0000539 search(gp, curdev, res);
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000540 }
541 }
542}
543
544void search_global_resources(
545 unsigned long type_mask, unsigned long type,
546 resource_search_t search, void *gp)
547{
548 struct device *curdev;
Myles Watson894a3472010-06-09 22:41:35 +0000549 for (curdev = all_devices; curdev; curdev = curdev->next) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000550 struct resource *res;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000551 /* Ignore disabled devices */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000552 if (!curdev->enabled) continue;
Myles Watson894a3472010-06-09 22:41:35 +0000553 for (res = curdev->resource_list; res; res = res->next) {
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000554 /* If it isn't the right kind of resource ignore it */
Myles Watsonc25cc112010-05-21 14:33:48 +0000555 if ((res->flags & type_mask) != type) {
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000556 continue;
557 }
558 /* If it is a subtractive resource ignore it */
Myles Watsonc25cc112010-05-21 14:33:48 +0000559 if (res->flags & IORESOURCE_SUBTRACTIVE) {
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000560 continue;
561 }
Myles Watsonc25cc112010-05-21 14:33:48 +0000562 search(gp, curdev, res);
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000563 }
564 }
565}
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000566
567void dev_set_enabled(device_t dev, int enable)
568{
569 if (dev->enabled == enable) {
570 return;
571 }
572 dev->enabled = enable;
573 if (dev->ops && dev->ops->enable) {
574 dev->ops->enable(dev);
575 }
576 else if (dev->chip_ops && dev->chip_ops->enable_dev) {
577 dev->chip_ops->enable_dev(dev);
578 }
579}
580
581void disable_children(struct bus *bus)
582{
583 device_t child;
Myles Watson894a3472010-06-09 22:41:35 +0000584 for (child = bus->children; child; child = child->sibling) {
585 struct bus *link;
586 for (link = child->link_list; link; link = link->next) {
587 disable_children(link);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000588 }
589 dev_set_enabled(child, 0);
590 }
591}
Myles Watsonbb3d8122009-05-11 22:45:35 +0000592
Maciej Pijankaea921852009-10-27 14:29:29 +0000593static void resource_tree(struct device *root, int debug_level, int depth)
Myles Watsonbb3d8122009-05-11 22:45:35 +0000594{
Myles Watson894a3472010-06-09 22:41:35 +0000595 int i = 0;
Myles Watsonbb3d8122009-05-11 22:45:35 +0000596 struct device *child;
Myles Watson894a3472010-06-09 22:41:35 +0000597 struct bus *link;
Myles Watsonc25cc112010-05-21 14:33:48 +0000598 struct resource *res;
Myles Watsonbb3d8122009-05-11 22:45:35 +0000599 char indent[30]; /* If your tree has more levels, it's wrong. */
600
601 for (i = 0; i < depth + 1 && i < 29; i++)
602 indent[i] = ' ';
603 indent[i] = '\0';
604
Myles Watson894a3472010-06-09 22:41:35 +0000605 do_printk(BIOS_DEBUG, "%s%s", indent, dev_path(root));
606 if (root->link_list && root->link_list->children)
607 do_printk(BIOS_DEBUG, " child on link 0 %s",
608 dev_path(root->link_list->children));
609 do_printk(BIOS_DEBUG, "\n");
610
Myles Watsonc25cc112010-05-21 14:33:48 +0000611 for (res = root->resource_list; res; res = res->next) {
Myles Watson5f067012010-06-02 21:13:44 +0000612 do_printk(debug_level,
Myles Watsonbb3d8122009-05-11 22:45:35 +0000613 "%s%s resource base %llx size %llx align %d gran %d limit %llx flags %lx index %lx\n",
Myles Watsonc25cc112010-05-21 14:33:48 +0000614 indent, dev_path(root), res->base,
615 res->size, res->align,
616 res->gran, res->limit,
617 res->flags, res->index);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000618 }
619
Myles Watson894a3472010-06-09 22:41:35 +0000620 for (link = root->link_list; link; link = link->next) {
621 for (child = link->children; child; child = child->sibling)
Myles Watsonbb3d8122009-05-11 22:45:35 +0000622 resource_tree(child, debug_level, depth + 1);
623 }
624}
625
626void print_resource_tree(struct device * root, int debug_level,
627 const char *msg)
628{
629 /* Bail if root is null. */
630 if (!root) {
631 do_printk(debug_level, "%s passed NULL for root!\n", __func__);
632 return;
633 }
634
635 /* Bail if not printing to screen. */
636 if (!do_printk(debug_level, "Show resources in subtree (%s)...%s\n",
637 dev_path(root), msg))
638 return;
639 resource_tree(root, debug_level, 0);
640}
641
642void show_devs_tree(struct device *dev, int debug_level, int depth, int linknum)
643{
644 char depth_str[20] = "";
645 int i;
646 struct device *sibling;
Myles Watson894a3472010-06-09 22:41:35 +0000647 struct bus *link;
648
Myles Watsonbb3d8122009-05-11 22:45:35 +0000649 for (i = 0; i < depth; i++)
650 depth_str[i] = ' ';
651 depth_str[i] = '\0';
Myles Watsonc25cc112010-05-21 14:33:48 +0000652 do_printk(debug_level, "%s%s: enabled %d\n",
653 depth_str, dev_path(dev), dev->enabled);
Myles Watson894a3472010-06-09 22:41:35 +0000654 for (link = dev->link_list; link; link = link->next) {
655 for (sibling = link->children; sibling;
Myles Watsonbb3d8122009-05-11 22:45:35 +0000656 sibling = sibling->sibling)
657 show_devs_tree(sibling, debug_level, depth + 1, i);
658 }
659}
660
661void show_all_devs_tree(int debug_level, const char *msg)
662{
663 /* Bail if not printing to screen. */
664 if (!do_printk(debug_level, "Show all devs in tree form...%s\n", msg))
665 return;
666 show_devs_tree(all_devices, debug_level, 0, -1);
667}
668
669void show_devs_subtree(struct device *root, int debug_level, const char *msg)
670{
671 /* Bail if not printing to screen. */
672 if (!do_printk(debug_level, "Show all devs in subtree %s...%s\n",
673 dev_path(root), msg))
674 return;
675 do_printk(debug_level, "%s\n", msg);
676 show_devs_tree(root, debug_level, 0, -1);
677}
678
679void show_all_devs(int debug_level, const char *msg)
680{
681 struct device *dev;
682
683 /* Bail if not printing to screen. */
684 if (!do_printk(debug_level, "Show all devs...%s\n", msg))
685 return;
686 for (dev = all_devices; dev; dev = dev->next) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000687 do_printk(debug_level, "%s: enabled %d\n",
688 dev_path(dev), dev->enabled);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000689 }
690}
691
692void show_one_resource(int debug_level, struct device *dev,
693 struct resource *resource, const char *comment)
694{
695 char buf[10];
696 unsigned long long base, end;
697 base = resource->base;
698 end = resource_end(resource);
699 buf[0] = '\0';
700/*
701 if (resource->flags & IORESOURCE_BRIDGE) {
Stefan Reinauer08670622009-06-30 15:17:49 +0000702#if CONFIG_PCI_BUS_SEGN_BITS
Myles Watsonbb3d8122009-05-11 22:45:35 +0000703 sprintf(buf, "bus %04x:%02x ", dev->bus->secondary >> 8,
704 dev->link[0].secondary & 0xff);
705#else
706 sprintf(buf, "bus %02x ", dev->link[0].secondary);
707#endif
708 }
709*/
710 do_printk(debug_level, "%s %02lx <- [0x%010llx - 0x%010llx] "
711 "size 0x%08Lx gran 0x%02x %s%s%s\n",
712 dev_path(dev), resource->index, base, end,
713 resource->size, resource->gran, buf,
714 resource_type(resource), comment);
715
716}
717
718void show_all_devs_resources(int debug_level, const char* msg)
719{
720 struct device *dev;
721
722 if(!do_printk(debug_level, "Show all devs with resources...%s\n", msg))
723 return;
724
725 for (dev = all_devices; dev; dev = dev->next) {
Myles Watsonc25cc112010-05-21 14:33:48 +0000726 struct resource *res;
727 do_printk(debug_level, "%s: enabled %d\n",
728 dev_path(dev), dev->enabled);
729 for (res = dev->resource_list; res; res = res->next)
730 show_one_resource(debug_level, dev, res, "");
Myles Watsonbb3d8122009-05-11 22:45:35 +0000731 }
732}