blob: fb1f691190ff04bed8bb2a70b4c99f654a7dfa64 [file] [log] [blame]
Myles Watson29cc9ed2009-07-02 18:56:24 +00001#ifndef DEVICE_RESOURCE_H
2#define DEVICE_RESOURCE_H
Eric Biederman5899fd82003-04-24 06:25:08 +00003
Eric Biederman992cd002004-10-14 21:10:23 +00004#include <stdint.h>
Stefan Reinauer57879c92012-07-31 16:47:25 -07005#include <stddef.h>
Eric Biederman5899fd82003-04-24 06:25:08 +00006
7#define IORESOURCE_BITS 0x000000ff /* Bus-specific bits */
8
9#define IORESOURCE_IO 0x00000100 /* Resource type */
10#define IORESOURCE_MEM 0x00000200
11#define IORESOURCE_IRQ 0x00000400
Eric Biedermane9a271e32003-09-02 03:36:25 +000012#define IORESOURCE_DRQ 0x00000800
Eric Biederman5899fd82003-04-24 06:25:08 +000013
Lee Leahy6a566d72017-03-07 17:45:12 -080014#define IORESOURCE_TYPE_MASK (IORESOURCE_IO | IORESOURCE_MEM \
15 | IORESOURCE_IRQ | IORESOURCE_DRQ)
Kyösti Mälkkifdc0a902015-03-26 20:04:38 +020016
Eric Biederman5899fd82003-04-24 06:25:08 +000017#define IORESOURCE_PREFETCH 0x00001000 /* No side effects */
18#define IORESOURCE_READONLY 0x00002000
19#define IORESOURCE_CACHEABLE 0x00004000
20#define IORESOURCE_RANGELENGTH 0x00008000
21#define IORESOURCE_SHADOWABLE 0x00010000
22#define IORESOURCE_BUS_HAS_VGA 0x00020000
Lee Leahy6a566d72017-03-07 17:45:12 -080023/* This resource filters all of the unclaimed transactions to the bus below. */
24#define IORESOURCE_SUBTRACTIVE 0x00040000
25/* The IO resource has a bus below it. */
26#define IORESOURCE_BRIDGE 0x00080000
Furquan Shaikh1bb05ef302020-05-15 17:33:52 -070027/* This is a request to allocate resource about 4G boundary. */
28#define IORESOURCE_ABOVE_4G 0x00100000
Lee Leahy6a566d72017-03-07 17:45:12 -080029/* The resource needs to be reserved in the coreboot table */
30#define IORESOURCE_RESERVE 0x10000000
31/* The IO resource assignment has been stored in the device */
32#define IORESOURCE_STORED 0x20000000
33/* An IO resource that has been assigned a value */
34#define IORESOURCE_ASSIGNED 0x40000000
35/* An IO resource the allocator must not change */
36#define IORESOURCE_FIXED 0x80000000
Eric Biederman5899fd82003-04-24 06:25:08 +000037
Kyösti Mälkkid2245bb2012-08-27 09:09:23 +030038/* PCI specific resource bits (IORESOURCE_BITS) */
Tim Wawrzynczak8c93fed2022-01-13 16:45:07 -070039#define IORESOURCE_PCI64 (1<<0) /* 64bit long pci resource */
40#define IORESOURCE_PCI_BRIDGE (1<<1) /* A bridge pci resource */
41#define IORESOURCE_PCIE_RESIZABLE_BAR (1<<2) /* A Resizable BAR */
Eric Biederman5899fd82003-04-24 06:25:08 +000042
Myles Watson29cc9ed2009-07-02 18:56:24 +000043typedef u64 resource_t;
Eric Biederman5899fd82003-04-24 06:25:08 +000044struct resource {
Eric Biederman992cd002004-10-14 21:10:23 +000045 resource_t base; /* Base address of the resource */
46 resource_t size; /* Size of the resource */
47 resource_t limit; /* Largest valid value base + size -1 */
Aaron Durbine4d7abc2017-04-16 22:05:36 -050048 DEVTREE_CONST struct resource *next; /* Next resource in the list */
Eric Biederman5899fd82003-04-24 06:25:08 +000049 unsigned long flags; /* Descriptions of the kind of resource */
50 unsigned long index; /* Bus specific per device resource id */
Li-Ta Loe3c79ed2004-03-19 00:08:48 +000051 unsigned char align; /* Required alignment (log 2) of the resource */
52 unsigned char gran; /* Granularity (log 2) of the resource */
Eric Biederman5899fd82003-04-24 06:25:08 +000053 /* Alignment must be >= the granularity of the resource */
54};
55
Myles Watson29cc9ed2009-07-02 18:56:24 +000056/* Macros to generate index values for resources */
Lee Leahyae3fd342017-03-07 12:55:23 -080057#define IOINDEX_SUBTRACTIVE(IDX, LINK) (0x10000000 + ((IDX) << 8) + LINK)
Eric Biederman992cd002004-10-14 21:10:23 +000058#define IOINDEX_SUBTRACTIVE_LINK(IDX) (IDX & 0xff)
59
Lee Leahyae3fd342017-03-07 12:55:23 -080060#define IOINDEX(IDX, LINK) (((LINK) << 16) + IDX)
Lee Leahy91d1e762017-03-07 14:31:19 -080061#define IOINDEX_LINK(IDX) ((IDX & 0xf0000) >> 16)
Myles Watson29cc9ed2009-07-02 18:56:24 +000062#define IOINDEX_IDX(IDX) (IDX & 0xffff)
63
Eric Biederman992cd002004-10-14 21:10:23 +000064/* Generic resource helper functions */
65struct device;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +000066struct bus;
Kyösti Mälkkib2287712021-06-14 11:29:51 +030067void compact_resources(struct device *dev);
68struct resource *probe_resource(const struct device *dev, unsigned int index);
69struct resource *new_resource(struct device *dev, unsigned int index);
70struct resource *find_resource(const struct device *dev, unsigned int index);
71resource_t resource_end(const struct resource *resource);
72resource_t resource_max(const struct resource *resource);
73void report_resource_stored(struct device *dev, const struct resource *resource,
74 const char *comment);
Eric Biederman992cd002004-10-14 21:10:23 +000075
Kyösti Mälkkib2287712021-06-14 11:29:51 +030076typedef void (*resource_search_t)(void *gp, struct device *dev, struct resource *res);
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +000077
Kyösti Mälkkib2287712021-06-14 11:29:51 +030078void search_bus_resources(struct bus *bus, unsigned long type_mask, unsigned long type,
79 resource_search_t search, void *gp);
80
81void search_global_resources(unsigned long type_mask, unsigned long type,
82 resource_search_t search, void *gp);
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +000083
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000084#define RESOURCE_TYPE_MAX 20
Kyösti Mälkkib2287712021-06-14 11:29:51 +030085const char *resource_type(const struct resource *resource);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000086
Kyösti Mälkkib2287712021-06-14 11:29:51 +030087static inline void *res2mmio(const struct resource *res, unsigned long offset,
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080088 unsigned long mask)
89{
90 return (void *)(uintptr_t)((res->base + offset) & ~mask);
91}
92
Furquan Shaikh69395742020-05-15 15:43:15 -070093/*
94 * Pick largest resource on the bus using the given mask and type.
95 * Params:
96 * bus = Bus from which the resource needs to picked from.
97 * result_res = If NULL, there was no previous resource picked on this bus, else it points to
98 * the last picked resource.
99 * type_mask = Mask to be applied when searching for resource
100 * type = Expected type for the resource
101 *
102 * Returns:
103 * If resource is found, returns the device and sets result_rest to point to the resource. Else
104 * returns NULL.
105 */
106const struct device *largest_resource(struct bus *bus, struct resource **result_res,
107 unsigned long type_mask, unsigned long type);
108
Furquan Shaikh69395742020-05-15 15:43:15 -0700109/* Compute and allocate resources. This is the main resource allocator entry point. */
110void allocate_resources(const struct device *root);
111
Myles Watson29cc9ed2009-07-02 18:56:24 +0000112#endif /* DEVICE_RESOURCE_H */