blob: 1b2e097772a93c703cb3b3039984de78c7589b7e [file] [log] [blame]
Martin Roth239b5df2022-07-26 22:18:26 -06001/* SPDX-License-Identifier: GPL-2.0-only */
2
Eric Biederman5899fd82003-04-24 06:25:08 +00003#ifndef DEVICE_H
Aaron Durbina0dabd12018-07-25 08:49:19 -06004
Eric Biederman5899fd82003-04-24 06:25:08 +00005#define DEVICE_H
6
Arthur Heymans80c79a52023-08-24 15:12:19 +02007#include <console/console.h>
Elyes Haouas0ad21482024-04-10 14:11:05 +02008#include <device/path.h> /* IWYU pragma: export */
Elyes HAOUASe3682b62018-12-03 09:32:31 +01009#include <device/pci_type.h>
Elyes Haouas0ad21482024-04-10 14:11:05 +020010#include <device/resource.h> /* IWYU pragma: export */
Elyes HAOUASc7121442020-04-10 18:04:59 +020011#include <smbios.h>
Furquan Shaikh28e61f12021-01-06 22:40:40 -080012#include <static.h>
Arthur Heymans80c79a52023-08-24 15:12:19 +020013#include <stdlib.h>
Julius Wernera2148372019-11-13 19:50:33 -080014#include <types.h>
Aaron Durbinc30d9132017-08-07 16:55:43 -060015
Duncan Laurie36e6c6f2020-05-09 19:20:10 -070016struct fw_config;
Elyes HAOUASf9e47cc2018-12-05 11:03:36 +010017struct device;
Eric Biederman992cd002004-10-14 21:10:23 +000018struct pci_operations;
Duncan Laurieec009682016-06-07 15:38:14 -070019struct i2c_bus_operations;
Eric Biederman992cd002004-10-14 21:10:23 +000020struct smbus_bus_operations;
Nico Huberdd4715b2013-06-10 22:08:35 +020021struct pnp_mode_ops;
Furquan Shaikh7606c372017-02-11 10:57:23 -080022struct spi_bus_operations;
Duncan Lauriebae9f852018-05-07 14:18:13 -070023struct usb_bus_operations;
Michael Niewöhnerdbb667a2020-12-11 21:26:02 +010024struct gpio_operations;
Mario Scheithauer67f63e72022-11-02 15:57:10 +010025struct mdio_bus_operations;
Eric Biederman7a5416a2003-06-12 19:23:51 +000026
Eric Biederman7003ba42004-10-16 06:20:29 +000027/* Chip operations */
28struct chip_operations {
Eric Biederman7003ba42004-10-16 06:20:29 +000029 void (*enable_dev)(struct device *dev);
Nico Huberacd7d952012-07-25 10:33:05 +020030 void (*init)(void *chip_info);
Marc Jones2a58ecd2013-10-29 17:32:00 -060031 void (*final)(void *chip_info);
Nico Huberacd7d952012-07-25 10:33:05 +020032 unsigned int initialized : 1;
Marc Jones2a58ecd2013-10-29 17:32:00 -060033 unsigned int finalized : 1;
Myles Watson6e235762009-09-29 14:56:15 +000034 const char *name;
Eric Biederman7003ba42004-10-16 06:20:29 +000035};
36
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000037struct bus;
38
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +020039struct acpi_rsdp;
Vladimir Serbinenko6abb33c2014-08-27 23:42:45 +020040
Eric Biederman5899fd82003-04-24 06:25:08 +000041struct device_operations {
Aaron Durbinc30d9132017-08-07 16:55:43 -060042 void (*read_resources)(struct device *dev);
43 void (*set_resources)(struct device *dev);
44 void (*enable_resources)(struct device *dev);
45 void (*init)(struct device *dev);
46 void (*final)(struct device *dev);
47 void (*scan_bus)(struct device *bus);
48 void (*enable)(struct device *dev);
Arthur Heymansb238caa2021-02-22 18:33:08 +010049 void (*vga_disable)(struct device *dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000050 void (*reset_bus)(struct bus *bus);
Felix Heldab8a0942023-11-16 13:38:14 +010051
Aaron Durbinc30d9132017-08-07 16:55:43 -060052 int (*get_smbios_data)(struct device *dev, int *handle,
Lee Leahy6a566d72017-03-07 17:45:12 -080053 unsigned long *current);
Aaron Durbinc30d9132017-08-07 16:55:43 -060054 void (*get_smbios_strings)(struct device *dev, struct smbios_type11 *t);
Felix Heldab8a0942023-11-16 13:38:14 +010055
Furquan Shaikh0f007d82020-04-24 06:41:18 -070056 unsigned long (*write_acpi_tables)(const struct device *dev,
Aaron Durbinc30d9132017-08-07 16:55:43 -060057 unsigned long start, struct acpi_rsdp *rsdp);
Furquan Shaikh7536a392020-04-24 21:59:21 -070058 void (*acpi_fill_ssdt)(const struct device *dev);
Aaron Durbinaa090cb2017-09-13 16:01:52 -060059 const char *(*acpi_name)(const struct device *dev);
Patrick Rudolpheeb8e742019-08-20 08:20:01 +020060 /* Returns the optional _HID (Hardware ID) */
61 const char *(*acpi_hid)(const struct device *dev);
Felix Held10e478c42023-10-23 21:26:54 +020062
Eric Biedermana9e632c2004-11-18 22:38:08 +000063 const struct pci_operations *ops_pci;
Duncan Laurieec009682016-06-07 15:38:14 -070064 const struct i2c_bus_operations *ops_i2c_bus;
Furquan Shaikh7606c372017-02-11 10:57:23 -080065 const struct spi_bus_operations *ops_spi_bus;
Eric Biedermana9e632c2004-11-18 22:38:08 +000066 const struct smbus_bus_operations *ops_smbus_bus;
Nico Huberdd4715b2013-06-10 22:08:35 +020067 const struct pnp_mode_ops *ops_pnp_mode;
Michael Niewöhnerdbb667a2020-12-11 21:26:02 +010068 const struct gpio_operations *ops_gpio;
Mario Scheithauer67f63e72022-11-02 15:57:10 +010069 const struct mdio_bus_operations *ops_mdio;
Eric Biederman5899fd82003-04-24 06:25:08 +000070};
Kyösti Mälkkif41cb4e2014-06-30 13:15:42 +030071
Edward O'Callaghan530355d2014-10-31 08:31:44 +110072/**
73 * Standard device operations function pointers shims.
74 */
Nico Huber2f8ba692020-04-05 14:05:24 +020075static inline void noop_read_resources(struct device *dev) {}
76static inline void noop_set_resources(struct device *dev) {}
Edward O'Callaghan530355d2014-10-31 08:31:44 +110077
Eric Biedermane9a271e32003-09-02 03:36:25 +000078struct bus {
Aaron Durbine4d7abc2017-04-16 22:05:36 -050079 DEVTREE_CONST struct device *dev; /* This bridge device */
80 DEVTREE_CONST struct device *children; /* devices behind this bridge */
Felix Held0154fa52023-08-08 15:43:55 +020081 unsigned int bridge_ctrl; /* Bridge control register */
Kyösti Mälkki33452402015-02-23 06:58:26 +020082 uint16_t bridge_cmd; /* Bridge command register */
Felix Held0154fa52023-08-08 15:43:55 +020083 uint16_t secondary; /* secondary bus number */
84 uint16_t subordinate; /* subordinate bus number */
Arthur Heymans20d25772021-11-17 17:25:48 +010085 uint16_t max_subordinate; /* max subordinate bus number */
Felix Held3b5b66d2024-01-11 22:26:18 +010086 uint8_t segment_group; /* PCI segment group */
Kyösti Mälkki77521472015-02-22 11:38:49 +020087
Lee Leahy0ca2a062017-03-06 18:01:04 -080088 unsigned int reset_needed : 1;
Felix Held0154fa52023-08-08 15:43:55 +020089 unsigned int no_vga16 : 1; /* No support for 16-bit VGA decoding */
Eric Biedermane9a271e32003-09-02 03:36:25 +000090};
91
Eric Biederman5899fd82003-04-24 06:25:08 +000092/*
Eric Biederman2c018fb2003-07-21 20:13:45 +000093 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +000094 * combination:
95 */
96
97struct device {
Arthur Heymans7fcd4d52023-08-24 15:12:19 +020098 DEVTREE_CONST struct bus *upstream;
99 DEVTREE_CONST struct bus *downstream;
Stefan Reinauer57879c92012-07-31 16:47:25 -0700100
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500101 DEVTREE_CONST struct device *sibling; /* next device on this bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700102
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500103 DEVTREE_CONST struct device *next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +0000104
Eric Biedermane9a271e32003-09-02 03:36:25 +0000105 struct device_path path;
Lee Leahy0ca2a062017-03-06 18:01:04 -0800106 unsigned int vendor;
107 unsigned int device;
Sven Schnelleb8269e22011-03-01 21:51:29 +0000108 u16 subsystem_vendor;
109 u16 subsystem_device;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000110 unsigned int class; /* 3 bytes: (base, sub, prog-if) */
Eric Biederman5899fd82003-04-24 06:25:08 +0000111 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000112 unsigned int enabled : 1; /* set if we should enable the device */
Lee Leahy6a566d72017-03-07 17:45:12 -0800113 unsigned int initialized : 1; /* 1 if we have initialized the device */
Eric Biedermandbec2d42004-10-21 10:44:08 +0000114 unsigned int on_mainboard : 1;
Nico Huber570b1832017-08-30 13:38:50 +0200115 unsigned int disable_pcie_aspm : 1;
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +0000116 /* set if we should hide from UI */
117 unsigned int hidden : 1;
118 /* set if this device is used even in minimum PCI cases */
119 unsigned int mandatory : 1;
Nico Huber577c6b92022-08-15 00:08:58 +0200120 unsigned int hotplug_port : 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000121 u8 command;
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600122 uint16_t hotplug_buses; /* Number of hotplug buses to allocate */
Eric Biederman5899fd82003-04-24 06:25:08 +0000123
Li-Ta Lo85e76c62004-12-27 17:53:45 +0000124 /* Base registers for this device. I/O, MEM and Expansion ROM */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500125 DEVTREE_CONST struct resource *resource_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000126
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500127#if !DEVTREE_EARLY
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300128 struct device_operations *ops;
Nico Huberacd7d952012-07-25 10:33:05 +0200129 struct chip_operations *chip_ops;
Kyösti Mälkki7d54eb82012-10-10 23:14:28 +0300130 const char *name;
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200131#if CONFIG(GENERATE_SMBIOS_TABLES)
132 u8 smbios_slot_type;
133 u8 smbios_slot_data_width;
134 u8 smbios_slot_length;
135 const char *smbios_slot_designation;
Angel Pons437da712021-09-03 16:51:40 +0200136
137#if CONFIG(SMBIOS_TYPE41_PROVIDED_BY_DEVTREE)
138 /*
139 * These fields are intentionally guarded so that attempts to use
140 * the corresponding devicetree syntax without selecting the Kconfig
141 * option result in build-time errors. Smaller size is a side effect.
142 */
143 bool smbios_instance_id_valid;
144 u8 smbios_instance_id;
145 const char *smbios_refdes;
146#endif
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200147#endif
Stefan Reinauera675d492012-08-07 14:50:47 -0700148#endif
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500149 DEVTREE_CONST void *chip_info;
Duncan Laurie36e6c6f2020-05-09 19:20:10 -0700150
151 /* Zero-terminated array of fields and options to probe. */
152 DEVTREE_CONST struct fw_config *probe_list;
Eric Biederman5899fd82003-04-24 06:25:08 +0000153};
154
Myles Watson3fe6b702009-10-09 20:13:43 +0000155/**
156 * This is the root of the device tree. The device tree is defined in the
157 * static.c file and is generated by the config tool at compile time.
158 */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500159extern DEVTREE_CONST struct device dev_root;
Aaron Durbinf0349022017-11-10 10:47:54 -0700160/* list of all devices */
161extern DEVTREE_CONST struct device * DEVTREE_CONST all_devices;
Myles Watsonc25cc112010-05-21 14:33:48 +0000162extern struct resource *free_resources;
Myles Watson894a3472010-06-09 22:41:35 +0000163extern struct bus *free_links;
Eric Biederman5899fd82003-04-24 06:25:08 +0000164
165/* Generic device interface functions */
Aaron Durbinf0349022017-11-10 10:47:54 -0700166struct device *alloc_dev(struct bus *parent, struct device_path *path);
Arthur Heymans3e99ba02024-01-25 22:26:07 +0100167struct bus *alloc_bus(struct device *parent);
Nico Huberacd7d952012-07-25 10:33:05 +0200168void dev_initialize_chips(void);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000169void dev_enumerate(void);
170void dev_configure(void);
171void dev_enable(void);
172void dev_initialize(void);
Marc Jones2a58ecd2013-10-29 17:32:00 -0600173void dev_finalize(void);
174void dev_finalize_chips(void);
Subrata Baniked5c7ac2021-06-10 13:04:07 +0530175/* Function used to override device state */
176void devfn_disable(const struct bus *bus, unsigned int devfn);
Eric Biederman5899fd82003-04-24 06:25:08 +0000177
178/* Generic device helper functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000179int reset_bus(struct bus *bus);
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +0200180void scan_bridges(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000181void assign_resources(struct bus *bus);
Furquan Shaikh5b5c2332020-04-24 21:31:35 -0700182const char *dev_name(const struct device *dev);
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200183const char *dev_path(const struct device *dev);
Subrata Banik564547f2018-05-02 10:27:36 +0530184u32 dev_path_encode(const struct device *dev);
Shuo Liu271ee072024-03-29 00:42:28 +0800185const struct device *dev_get_domain(const struct device *dev);
Aaron Durbinf0349022017-11-10 10:47:54 -0700186void dev_set_enabled(struct device *dev, int enable);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000187void disable_children(struct bus *bus);
Aaron Durbinf0349022017-11-10 10:47:54 -0700188bool dev_is_active_bridge(struct device *dev);
Furquan Shaikh7f6ae792021-05-20 22:47:02 -0700189bool is_dev_enabled(const struct device *const dev);
Subrata Banikeca3e622021-06-08 00:55:04 +0530190bool is_devfn_enabled(unsigned int devfn);
Fabio Aiutoc5573d62022-09-10 14:23:38 +0200191bool is_cpu(const struct device *cpu);
192bool is_enabled_cpu(const struct device *cpu);
Fabio Aiuto4fce79f2022-09-30 11:22:09 +0200193bool is_pci(const struct device *pci);
194bool is_enabled_pci(const struct device *pci);
195bool is_pci_dev_on_bus(const struct device *pci, unsigned int bus);
Shuo Liu0f3316b2024-03-30 00:37:55 +0800196bool is_pci_bridge(const struct device *pci);
Angel Ponsa7d92662020-07-25 16:00:28 +0200197
Nico Huber577c6b92022-08-15 00:08:58 +0200198/* Returns whether there is a hotplug port on the path to the given device. */
Elyes Haouas3813ca52023-01-14 07:30:21 +0100199bool dev_path_hotplug(const struct device *);
Nico Huber577c6b92022-08-15 00:08:58 +0200200
Myles Watsonb0259112010-03-05 18:27:19 +0000201/* Option ROM helper functions */
202void run_bios(struct device *dev, unsigned long addr);
203
Eric Biederman5899fd82003-04-24 06:25:08 +0000204/* Helper functions */
Kyösti Mälkki2df1c122018-05-21 01:52:10 +0300205DEVTREE_CONST struct device *find_dev_path(
206 const struct bus *parent,
207 const struct device_path *path);
Rob Barnesa223e652020-07-23 08:25:42 -0600208DEVTREE_CONST struct device *find_dev_nested_path(
209 const struct bus *parent,
210 const struct device_path nested_path[],
211 size_t nested_path_length);
Aaron Durbinf0349022017-11-10 10:47:54 -0700212struct device *alloc_find_dev(struct bus *parent, struct device_path *path);
213struct device *dev_find_device(u16 vendor, u16 device, struct device *from);
214struct device *dev_find_class(unsigned int class, struct device *from);
Nico Huberf6a43442018-05-15 14:13:32 +0200215DEVTREE_CONST struct device *dev_find_path(
216 DEVTREE_CONST struct device *prev_match,
217 enum device_path_type path_type);
Aaron Durbinf0349022017-11-10 10:47:54 -0700218struct device *dev_find_lapic(unsigned int apic_id);
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700219int dev_count_cpu(void);
Aaron Durbinf0349022017-11-10 10:47:54 -0700220struct device *add_cpu_device(struct bus *cpu_bus, unsigned int apic_id,
221 int enabled);
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300222void mp_init_cpus(DEVTREE_CONST struct bus *cpu_bus);
223static inline void mp_cpu_bus_init(struct device *dev)
224{
Arthur Heymans45be5b32023-08-25 11:50:25 +0200225 /* Make sure the cpu cluster has a downstream bus for LAPICs to be allocated. */
Arthur Heymans3e99ba02024-01-25 22:26:07 +0100226 struct bus *bus = alloc_bus(dev);
Felix Held60e91142021-10-21 02:03:04 +0200227
Arthur Heymans3e99ba02024-01-25 22:26:07 +0100228 mp_init_cpus(bus);
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300229}
230
Myles Watsonbb3d8122009-05-11 22:45:35 +0000231/* Debug functions */
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200232void print_resource_tree(const struct device *root, int debug_level,
Myles Watsonbb3d8122009-05-11 22:45:35 +0000233 const char *msg);
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200234void show_devs_tree(const struct device *dev, int debug_level, int depth);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000235void show_devs_subtree(struct device *root, int debug_level, const char *msg);
236void show_all_devs(int debug_level, const char *msg);
Maciej Pijankaea921852009-10-27 14:29:29 +0000237void show_all_devs_tree(int debug_level, const char *msg);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000238void show_one_resource(int debug_level, struct device *dev,
239 struct resource *resource, const char *comment);
Lee Leahy6d71a432017-03-07 15:24:16 -0800240void show_all_devs_resources(int debug_level, const char *msg);
Eric Biederman5899fd82003-04-24 06:25:08 +0000241
Marc Jones5b5c52e2020-10-12 11:44:46 -0600242/* Debug macros */
Marc Jones8b522db2020-10-12 11:58:46 -0600243#if CONFIG(DEBUG_FUNC)
Marc Jones8b522db2020-10-12 11:58:46 -0600244#define DEV_FUNC_ENTER(dev) \
245 printk(BIOS_SPEW, "%s:%s:%d: ENTER (dev: %s)\n", \
246 __FILE__, __func__, __LINE__, dev_path(dev))
247
248#define DEV_FUNC_EXIT(dev) \
249 printk(BIOS_SPEW, "%s:%s:%d: EXIT (dev: %s)\n", __FILE__, \
250 __func__, __LINE__, dev_path(dev))
251#else /* DEBUG_FUNC */
252#define DEV_FUNC_ENTER(dev)
253#define DEV_FUNC_EXIT(dev)
254#endif /* DEBUG_FUNC */
255
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000256extern struct device_operations default_dev_ops_root;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000257void pci_domain_read_resources(struct device *dev);
Raul E Rangel5cb34e22020-05-04 16:41:22 -0600258void pci_domain_set_resources(struct device *dev);
Arthur Heymans0b0113f2023-08-31 17:09:28 +0200259void pci_host_bridge_scan_bus(struct device *dev);
Uwe Hermann4b42a622010-10-11 19:36:13 +0000260
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200261void mmconf_resource(struct device *dev, unsigned long index);
262
Kyösti Mälkkice345962021-06-11 19:31:22 +0300263/* These are temporary resource constructors to get us through the
264 migration away from open-coding all the IORESOURCE_FLAGS. */
265
Shuo Liu6c708d82024-04-29 18:16:30 +0800266const struct resource *resource_range_idx(struct device *dev, unsigned long index,
Kyösti Mälkkice345962021-06-11 19:31:22 +0300267 uint64_t base, uint64_t size,
268 unsigned long flags);
269
270static inline
271const struct resource *fixed_mem_range_flags(struct device *dev, unsigned long index,
272 uint64_t base, uint64_t size,
273 unsigned long flags)
274{
Shuo Liu6c708d82024-04-29 18:16:30 +0800275 return resource_range_idx(dev, index, base, size,
276 IORESOURCE_FIXED | IORESOURCE_MEM | flags);
Kyösti Mälkkice345962021-06-11 19:31:22 +0300277}
278
279static inline
280const struct resource *fixed_mem_from_to_flags(struct device *dev, unsigned long index,
281 uint64_t base, uint64_t end, unsigned long flags)
282{
283 if (end <= base)
284 return NULL;
285 return fixed_mem_range_flags(dev, index, base, end - base, flags);
286}
287
Kyösti Mälkkiad5fab22021-06-13 08:02:56 +0300288static inline
Shuo Liu6c708d82024-04-29 18:16:30 +0800289const struct resource *domain_mem_window_range(struct device *dev, unsigned long index,
290 uint64_t base, uint64_t size)
291{
292 return resource_range_idx(dev, index, base, size,
293 IORESOURCE_MEM | IORESOURCE_BRIDGE);
294}
295
296static inline
297const struct resource *domain_mem_window_from_to(struct device *dev, unsigned long index,
298 uint64_t base, uint64_t end)
299{
300 if (end <= base)
301 return NULL;
302 return domain_mem_window_range(dev, index, base, end - base);
303}
304
305
306static inline
Kyösti Mälkkid0525d42021-06-13 10:09:51 +0300307const struct resource *ram_range(struct device *dev, unsigned long index, uint64_t base,
308 uint64_t size)
309{
310 return fixed_mem_range_flags(dev, index, base, size, IORESOURCE_CACHEABLE | IORESOURCE_STORED);
311}
312
313static inline
314const struct resource *ram_from_to(struct device *dev, unsigned long index, uint64_t base,
315 uint64_t end)
316{
317 if (end <= base)
318 return NULL;
319 return ram_range(dev, index, base, end - base);
320}
321
322static inline
323const struct resource *reserved_ram_range(struct device *dev, unsigned long index,
324 uint64_t base, uint64_t size)
325{
326 return fixed_mem_range_flags(dev, index, base, size, IORESOURCE_CACHEABLE |
327 IORESOURCE_RESERVE | IORESOURCE_STORED);
328}
329
330static inline
331const struct resource *reserved_ram_from_to(struct device *dev, unsigned long index,
332 uint64_t base, uint64_t end)
333{
334 if (end <= base)
335 return NULL;
336 return reserved_ram_range(dev, index, base, end - base);
337}
338
339static inline
340const struct resource *mmio_range(struct device *dev, unsigned long index, uint64_t base,
341 uint64_t size)
342{
343 return fixed_mem_range_flags(dev, index, base, size, IORESOURCE_RESERVE | IORESOURCE_STORED);
344}
345
346static inline
347const struct resource *mmio_from_to(struct device *dev, unsigned long index, uint64_t base,
348 uint64_t end)
349{
350 if (end <= base)
351 return NULL;
352 return mmio_range(dev, index, base, end - base);
353}
354
355const struct resource *lower_ram_end(struct device *dev, unsigned long index, uint64_t end);
356const struct resource *upper_ram_end(struct device *dev, unsigned long index, uint64_t end);
357
358#define bad_ram_range(...) reserved_ram_range(__VA_ARGS__)
359#define uma_range(...) mmio_range(__VA_ARGS__)
360#define uma_from_to(...) mmio_from_to(__VA_ARGS__)
361
362static inline
Kyösti Mälkkiad5fab22021-06-13 08:02:56 +0300363const struct resource *fixed_io_range_flags(struct device *dev, unsigned long index,
364 uint16_t base, uint16_t size, unsigned long flags)
365{
Shuo Liu6c708d82024-04-29 18:16:30 +0800366 return resource_range_idx(dev, index, base, size,
367 IORESOURCE_FIXED | IORESOURCE_IO | flags);
Kyösti Mälkkiad5fab22021-06-13 08:02:56 +0300368}
369
370static inline
371const struct resource *fixed_io_from_to_flags(struct device *dev, unsigned long index,
Shuo Liubd33b6a2024-05-05 07:30:19 +0800372 uint16_t base, uint32_t end, unsigned long flags)
Kyösti Mälkkiad5fab22021-06-13 08:02:56 +0300373{
374 if (end <= base)
375 return NULL;
Shuo Liubd33b6a2024-05-05 07:30:19 +0800376 if (end > UINT16_MAX + 1)
377 return NULL;
Kyösti Mälkkiad5fab22021-06-13 08:02:56 +0300378 return fixed_io_range_flags(dev, index, base, end - base, flags);
379}
380
381static inline
382const struct resource *fixed_io_range_reserved(struct device *dev, unsigned long index,
383 uint16_t base, uint16_t size)
384{
385 return fixed_io_range_flags(dev, index, base, size, IORESOURCE_RESERVE);
386}
387
Shuo Liu6c708d82024-04-29 18:16:30 +0800388static inline
389const struct resource *domain_io_window_range(struct device *dev, unsigned long index,
390 uint16_t base, uint16_t size)
391{
392 return resource_range_idx(dev, index, base, size,
393 IORESOURCE_IO | IORESOURCE_BRIDGE);
394}
395
396static inline
397const struct resource *domain_io_window_from_to(struct device *dev, unsigned long index,
Shuo Liubd33b6a2024-05-05 07:30:19 +0800398 uint16_t base, uint32_t end)
Shuo Liu6c708d82024-04-29 18:16:30 +0800399{
400 if (end <= base)
401 return NULL;
Shuo Liubd33b6a2024-05-05 07:30:19 +0800402 if (end > UINT16_MAX + 1)
403 return NULL;
Shuo Liu6c708d82024-04-29 18:16:30 +0800404 return domain_io_window_range(dev, index, base, end - base);
405}
406
Kyösti Mälkkice345962021-06-11 19:31:22 +0300407/* Compatibility code */
408
409static inline void fixed_mem_resource_kb(struct device *dev, unsigned long index,
410 unsigned long basek, unsigned long sizek,
411 unsigned long flags)
412{
413 fixed_mem_range_flags(dev, index, ((uint64_t)basek) << 10,
414 ((uint64_t)sizek) << 10, IORESOURCE_STORED | flags);
415}
416
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300417/* It is the caller's responsibility to adjust regions such that ram_resource_kb()
418 * and mmio_resource_kb() do not overlap.
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300419 */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300420#define ram_resource_kb(dev, idx, basek, sizek) \
421 fixed_mem_resource_kb(dev, idx, basek, sizek, IORESOURCE_CACHEABLE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300422
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300423#define reserved_ram_resource_kb(dev, idx, basek, sizek) \
424 fixed_mem_resource_kb(dev, idx, basek, sizek, IORESOURCE_CACHEABLE \
Lee Leahy6a566d72017-03-07 17:45:12 -0800425 | IORESOURCE_RESERVE)
Aaron Durbinc9650762013-03-22 22:03:09 -0500426
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300427#define bad_ram_resource_kb(dev, idx, basek, sizek) \
428 reserved_ram_resource_kb((dev), (idx), (basek), (sizek))
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300429
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300430#define uma_resource_kb(dev, idx, basek, sizek) \
431 fixed_mem_resource_kb(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300432
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300433#define mmio_resource_kb(dev, idx, basek, sizek) \
434 fixed_mem_resource_kb(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300435
Uwe Hermann4b42a622010-10-11 19:36:13 +0000436void tolm_test(void *gp, struct device *dev, struct resource *new);
437u32 find_pci_tolm(struct bus *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300438
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500439DEVTREE_CONST struct device *dev_find_next_pci_device(
440 DEVTREE_CONST struct device *previous_dev);
441DEVTREE_CONST struct device *dev_find_slot_on_smbus(unsigned int bus,
Stefan Reinauer57879c92012-07-31 16:47:25 -0700442 unsigned int addr);
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500443DEVTREE_CONST struct device *dev_find_slot_pnp(u16 port, u16 device);
Aaron Durbina0dabd12018-07-25 08:49:19 -0600444DEVTREE_CONST struct device *dev_bus_each_child(const struct bus *parent,
445 DEVTREE_CONST struct device *prev_child);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300446
Kyösti Mälkkiad7674e2018-05-20 10:31:23 +0300447DEVTREE_CONST struct device *pcidev_path_behind(const struct bus *parent,
448 pci_devfn_t devfn);
449DEVTREE_CONST struct device *pcidev_path_on_root(pci_devfn_t devfn);
Kyösti Mälkkiab275f02019-07-04 07:16:59 +0300450DEVTREE_CONST struct device *pcidev_path_on_bus(unsigned int bus, pci_devfn_t devfn);
Kyösti Mälkkiad7674e2018-05-20 10:31:23 +0300451DEVTREE_CONST struct device *pcidev_on_root(uint8_t dev, uint8_t fn);
Kyösti Mälkkifffc9f32019-07-03 09:55:01 +0300452DEVTREE_CONST struct bus *pci_root_bus(void);
Furquan Shaikh7778e5c2020-04-16 08:25:58 -0700453/* Find PCI device with given D#:F# sitting behind the given PCI-to-PCI bridge device. */
454DEVTREE_CONST struct device *pcidev_path_behind_pci2pci_bridge(
455 const struct device *bridge,
456 pci_devfn_t devfn);
Kyösti Mälkkiad7674e2018-05-20 10:31:23 +0300457
Aaron Durbin55ef0d22019-09-26 12:05:27 -0600458/* To be deprecated, avoid using.
459 *
460 * Note that this function can return the incorrect device prior
461 * to PCI enumeration because the secondary field of the bus object
462 * is 0. The failing scenario is determined by the order of the
463 * devices in all_devices singly-linked list as well as the time
464 * when this function is called (secondary reflecting topology).
465 */
Kyösti Mälkkif2ac0132019-07-12 15:26:29 +0300466DEVTREE_CONST struct device *pcidev_path_on_root_debug(pci_devfn_t devfn, const char *func);
467
Kyösti Mälkki4323d262019-07-12 16:20:14 +0300468/* Robust discovery of chip_info. */
469void devtree_bug(const char *func, pci_devfn_t devfn);
470void __noreturn devtree_die(void);
471
Nico Huber7e6ee912020-10-05 11:08:44 +0200472/*
473 * Dies if `dev` or `dev->chip_info` are NULL. Returns `dev->chip_info` otherwise.
474 *
475 * Only use if missing `chip_info` is fatal and we can't boot. If it's
476 * not fatal, please handle the NULL case gracefully.
477 */
Kyösti Mälkki4323d262019-07-12 16:20:14 +0300478static inline DEVTREE_CONST void *config_of(const struct device *dev)
479{
480 if (dev && dev->chip_info)
481 return dev->chip_info;
482
483 devtree_die();
484}
485
Furquan Shaikh28e61f12021-01-06 22:40:40 -0800486/*
487 * Returns pointer to config structure of root device (B:D:F = 0:00:0) defined by
488 * sconfig in static.{h/c}.
489 */
490#define config_of_soc() __pci_0_00_0_config
Kyösti Mälkki4323d262019-07-12 16:20:14 +0300491
Patrick Rudolphf95dbce2024-01-22 15:39:46 +0100492static inline bool is_root_device(const struct device *dev)
493{
Arthur Heymans7fcd4d52023-08-24 15:12:19 +0200494 if (!dev || !dev->upstream)
Patrick Rudolphf95dbce2024-01-22 15:39:46 +0100495 return false;
496
497 return (dev->path.type == DEVICE_PATH_ROOT) ||
Arthur Heymans7fcd4d52023-08-24 15:12:19 +0200498 (dev->upstream->dev == dev);
Patrick Rudolphf95dbce2024-01-22 15:39:46 +0100499}
500
Duncan Laurie3e4a14e12020-10-18 15:04:41 -0700501void enable_static_device(struct device *dev);
Nico Huberf7ed3d42019-03-14 15:50:06 +0100502void enable_static_devices(struct device *bus);
Aaron Durbin6f1e8d22017-11-09 12:38:03 -0700503void scan_smbus(struct device *bus);
504void scan_generic_bus(struct device *bus);
Nico Hubera89c82e2017-09-14 15:40:28 +0200505void scan_static_bus(struct device *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300506
Furquan Shaikh26e2afd2021-09-16 16:27:10 -0700507/* Macro to generate `struct device *` name that points to a device with the given alias. */
508#define DEV_PTR(_alias) _dev_##_alias##_ptr
509
510/* Macro to generate weak `struct device *` definition that points to a device with the given
511 alias. */
512#define WEAK_DEV_PTR(_alias) \
513 __weak DEVTREE_CONST struct device *const DEV_PTR(_alias)
514
Eric Biederman5899fd82003-04-24 06:25:08 +0000515#endif /* DEVICE_H */