blob: 7bcff80e00274ff1aa6f11ff661ec74f4bb751a6 [file] [log] [blame]
Eric Biederman5899fd82003-04-24 06:25:08 +00001#ifndef DEVICE_H
Aaron Durbina0dabd12018-07-25 08:49:19 -06002
Eric Biederman5899fd82003-04-24 06:25:08 +00003#define DEVICE_H
4
5#include <device/resource.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +00006#include <device/path.h>
Elyes HAOUASe3682b62018-12-03 09:32:31 +01007#include <device/pci_type.h>
Elyes HAOUASc7121442020-04-10 18:04:59 +02008#include <smbios.h>
Furquan Shaikh28e61f12021-01-06 22:40:40 -08009#include <static.h>
Julius Wernera2148372019-11-13 19:50:33 -080010#include <types.h>
Aaron Durbinc30d9132017-08-07 16:55:43 -060011
Duncan Laurie36e6c6f2020-05-09 19:20:10 -070012struct fw_config;
Elyes HAOUASf9e47cc2018-12-05 11:03:36 +010013struct device;
Eric Biederman992cd002004-10-14 21:10:23 +000014struct pci_operations;
Duncan Laurieec009682016-06-07 15:38:14 -070015struct i2c_bus_operations;
Eric Biederman992cd002004-10-14 21:10:23 +000016struct smbus_bus_operations;
Nico Huberdd4715b2013-06-10 22:08:35 +020017struct pnp_mode_ops;
Furquan Shaikh7606c372017-02-11 10:57:23 -080018struct spi_bus_operations;
Duncan Lauriebae9f852018-05-07 14:18:13 -070019struct usb_bus_operations;
Michael Niewöhnerdbb667a2020-12-11 21:26:02 +010020struct gpio_operations;
Eric Biederman7a5416a2003-06-12 19:23:51 +000021
Eric Biederman7003ba42004-10-16 06:20:29 +000022/* Chip operations */
23struct chip_operations {
Eric Biederman7003ba42004-10-16 06:20:29 +000024 void (*enable_dev)(struct device *dev);
Nico Huberacd7d952012-07-25 10:33:05 +020025 void (*init)(void *chip_info);
Marc Jones2a58ecd2013-10-29 17:32:00 -060026 void (*final)(void *chip_info);
Nico Huberacd7d952012-07-25 10:33:05 +020027 unsigned int initialized : 1;
Marc Jones2a58ecd2013-10-29 17:32:00 -060028 unsigned int finalized : 1;
Myles Watson6e235762009-09-29 14:56:15 +000029 const char *name;
Eric Biederman7003ba42004-10-16 06:20:29 +000030};
31
Eric Biederman018d8dd2004-11-04 11:04:33 +000032#define CHIP_NAME(X) .name = X,
Eric Biederman018d8dd2004-11-04 11:04:33 +000033
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000034struct bus;
35
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +020036struct acpi_rsdp;
Vladimir Serbinenko6abb33c2014-08-27 23:42:45 +020037
Eric Biederman5899fd82003-04-24 06:25:08 +000038struct device_operations {
Aaron Durbinc30d9132017-08-07 16:55:43 -060039 void (*read_resources)(struct device *dev);
40 void (*set_resources)(struct device *dev);
41 void (*enable_resources)(struct device *dev);
42 void (*init)(struct device *dev);
43 void (*final)(struct device *dev);
44 void (*scan_bus)(struct device *bus);
45 void (*enable)(struct device *dev);
Arthur Heymansb238caa2021-02-22 18:33:08 +010046 void (*vga_disable)(struct device *dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000047 void (*reset_bus)(struct bus *bus);
Julius Wernercd49cce2019-03-05 16:53:33 -080048#if CONFIG(GENERATE_SMBIOS_TABLES)
Aaron Durbinc30d9132017-08-07 16:55:43 -060049 int (*get_smbios_data)(struct device *dev, int *handle,
Lee Leahy6a566d72017-03-07 17:45:12 -080050 unsigned long *current);
Aaron Durbinc30d9132017-08-07 16:55:43 -060051 void (*get_smbios_strings)(struct device *dev, struct smbios_type11 *t);
Sven Schnelle164bcfd2011-08-14 20:56:34 +020052#endif
Julius Wernercd49cce2019-03-05 16:53:33 -080053#if CONFIG(HAVE_ACPI_TABLES)
Furquan Shaikh0f007d82020-04-24 06:41:18 -070054 unsigned long (*write_acpi_tables)(const struct device *dev,
Aaron Durbinc30d9132017-08-07 16:55:43 -060055 unsigned long start, struct acpi_rsdp *rsdp);
Furquan Shaikh7536a392020-04-24 21:59:21 -070056 void (*acpi_fill_ssdt)(const struct device *dev);
Furquan Shaikh338fd9a2020-04-24 22:57:05 -070057 void (*acpi_inject_dsdt)(const struct device *dev);
Aaron Durbinaa090cb2017-09-13 16:01:52 -060058 const char *(*acpi_name)(const struct device *dev);
Patrick Rudolpheeb8e742019-08-20 08:20:01 +020059 /* Returns the optional _HID (Hardware ID) */
60 const char *(*acpi_hid)(const struct device *dev);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +020061#endif
Eric Biedermana9e632c2004-11-18 22:38:08 +000062 const struct pci_operations *ops_pci;
Duncan Laurieec009682016-06-07 15:38:14 -070063 const struct i2c_bus_operations *ops_i2c_bus;
Furquan Shaikh7606c372017-02-11 10:57:23 -080064 const struct spi_bus_operations *ops_spi_bus;
Eric Biedermana9e632c2004-11-18 22:38:08 +000065 const struct smbus_bus_operations *ops_smbus_bus;
Nico Huberdd4715b2013-06-10 22:08:35 +020066 const struct pnp_mode_ops *ops_pnp_mode;
Michael Niewöhnerdbb667a2020-12-11 21:26:02 +010067 const struct gpio_operations *ops_gpio;
Eric Biederman5899fd82003-04-24 06:25:08 +000068};
Kyösti Mälkkif41cb4e2014-06-30 13:15:42 +030069
Edward O'Callaghan530355d2014-10-31 08:31:44 +110070/**
71 * Standard device operations function pointers shims.
72 */
Nico Huber2f8ba692020-04-05 14:05:24 +020073static inline void noop_read_resources(struct device *dev) {}
74static inline void noop_set_resources(struct device *dev) {}
Edward O'Callaghan530355d2014-10-31 08:31:44 +110075
Eric Biedermane9a271e32003-09-02 03:36:25 +000076struct bus {
Stefan Reinauer57879c92012-07-31 16:47:25 -070077
Aaron Durbine4d7abc2017-04-16 22:05:36 -050078 DEVTREE_CONST struct device *dev; /* This bridge device */
79 DEVTREE_CONST struct device *children; /* devices behind this bridge */
80 DEVTREE_CONST struct bus *next; /* The next bridge on this device */
Lee Leahy0ca2a062017-03-06 18:01:04 -080081 unsigned int bridge_ctrl; /* Bridge control register */
Kyösti Mälkki33452402015-02-23 06:58:26 +020082 uint16_t bridge_cmd; /* Bridge command register */
Myles Watson894a3472010-06-09 22:41:35 +000083 unsigned char link_num; /* The index of this link */
Lee Leahy84d20d02017-03-07 15:00:18 -080084 uint16_t secondary; /* secondary bus number */
Yinghai Lud4b278c2006-10-04 20:46:15 +000085 uint16_t subordinate; /* max subordinate bus number */
Eric Biedermane9a271e32003-09-02 03:36:25 +000086 unsigned char cap; /* PCi capability offset */
Kyösti Mälkki77521472015-02-22 11:38:49 +020087 uint32_t hcdn_reg; /* For HyperTransport link */
88
Lee Leahy0ca2a062017-03-06 18:01:04 -080089 unsigned int reset_needed : 1;
90 unsigned int disable_relaxed_ordering : 1;
91 unsigned int ht_link_up : 1;
Nico Huber061b9052019-09-21 15:58:23 +020092 unsigned int no_vga16 : 1; /* No support for 16-bit VGA decoding */
Eric Biedermane9a271e32003-09-02 03:36:25 +000093};
94
Eric Biederman5899fd82003-04-24 06:25:08 +000095/*
Eric Biederman2c018fb2003-07-21 20:13:45 +000096 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +000097 * combination:
98 */
99
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200100struct pci_irq_info {
101 unsigned int ioapic_irq_pin;
102 unsigned int ioapic_src_pin;
103 unsigned int ioapic_dst_id;
104 unsigned int ioapic_flags;
105};
106
Eric Biederman5899fd82003-04-24 06:25:08 +0000107struct device {
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500108 DEVTREE_CONST struct bus *bus; /* bus this device is on, for bridge
Li-Ta Lo04930692004-11-25 17:37:19 +0000109 * devices, it is the up stream bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700110
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500111 DEVTREE_CONST struct device *sibling; /* next device on this bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700112
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500113 DEVTREE_CONST struct device *next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +0000114
Eric Biedermane9a271e32003-09-02 03:36:25 +0000115 struct device_path path;
Lee Leahy0ca2a062017-03-06 18:01:04 -0800116 unsigned int vendor;
117 unsigned int device;
Sven Schnelleb8269e22011-03-01 21:51:29 +0000118 u16 subsystem_vendor;
119 u16 subsystem_device;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000120 unsigned int class; /* 3 bytes: (base, sub, prog-if) */
Eric Biederman5899fd82003-04-24 06:25:08 +0000121 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000122 unsigned int enabled : 1; /* set if we should enable the device */
Lee Leahy6a566d72017-03-07 17:45:12 -0800123 unsigned int initialized : 1; /* 1 if we have initialized the device */
Eric Biedermandbec2d42004-10-21 10:44:08 +0000124 unsigned int on_mainboard : 1;
Nico Huber570b1832017-08-30 13:38:50 +0200125 unsigned int disable_pcie_aspm : 1;
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +0000126 /* set if we should hide from UI */
127 unsigned int hidden : 1;
128 /* set if this device is used even in minimum PCI cases */
129 unsigned int mandatory : 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000130 u8 command;
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600131 uint16_t hotplug_buses; /* Number of hotplug buses to allocate */
Eric Biederman5899fd82003-04-24 06:25:08 +0000132
Li-Ta Lo85e76c62004-12-27 17:53:45 +0000133 /* Base registers for this device. I/O, MEM and Expansion ROM */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500134 DEVTREE_CONST struct resource *resource_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000135
Myles Watson29cc9ed2009-07-02 18:56:24 +0000136 /* links are (downstream) buses attached to the device, usually a leaf
Myles Watsonc25cc112010-05-21 14:33:48 +0000137 * device with no children has 0 buses attached and a bridge has 1 bus
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000138 */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500139 DEVTREE_CONST struct bus *link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000140
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500141#if !DEVTREE_EARLY
Kyösti Mälkki1557a672019-06-30 10:51:31 +0300142 struct pci_irq_info pci_irq_info[4];
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300143 struct device_operations *ops;
Nico Huberacd7d952012-07-25 10:33:05 +0200144 struct chip_operations *chip_ops;
Kyösti Mälkki7d54eb82012-10-10 23:14:28 +0300145 const char *name;
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200146#if CONFIG(GENERATE_SMBIOS_TABLES)
147 u8 smbios_slot_type;
148 u8 smbios_slot_data_width;
149 u8 smbios_slot_length;
150 const char *smbios_slot_designation;
Angel Pons437da712021-09-03 16:51:40 +0200151
152#if CONFIG(SMBIOS_TYPE41_PROVIDED_BY_DEVTREE)
153 /*
154 * These fields are intentionally guarded so that attempts to use
155 * the corresponding devicetree syntax without selecting the Kconfig
156 * option result in build-time errors. Smaller size is a side effect.
157 */
158 bool smbios_instance_id_valid;
159 u8 smbios_instance_id;
160 const char *smbios_refdes;
161#endif
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200162#endif
Stefan Reinauera675d492012-08-07 14:50:47 -0700163#endif
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500164 DEVTREE_CONST void *chip_info;
Duncan Laurie36e6c6f2020-05-09 19:20:10 -0700165
166 /* Zero-terminated array of fields and options to probe. */
167 DEVTREE_CONST struct fw_config *probe_list;
Eric Biederman5899fd82003-04-24 06:25:08 +0000168};
169
Myles Watson3fe6b702009-10-09 20:13:43 +0000170/**
171 * This is the root of the device tree. The device tree is defined in the
172 * static.c file and is generated by the config tool at compile time.
173 */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500174extern DEVTREE_CONST struct device dev_root;
Aaron Durbinf0349022017-11-10 10:47:54 -0700175/* list of all devices */
176extern DEVTREE_CONST struct device * DEVTREE_CONST all_devices;
Myles Watsonc25cc112010-05-21 14:33:48 +0000177extern struct resource *free_resources;
Myles Watson894a3472010-06-09 22:41:35 +0000178extern struct bus *free_links;
Eric Biederman5899fd82003-04-24 06:25:08 +0000179
Kyösti Mälkkia93c3fe2012-10-09 22:28:56 +0300180extern const char mainboard_name[];
181
Eric Biederman5899fd82003-04-24 06:25:08 +0000182/* Generic device interface functions */
Aaron Durbinf0349022017-11-10 10:47:54 -0700183struct device *alloc_dev(struct bus *parent, struct device_path *path);
Nico Huberacd7d952012-07-25 10:33:05 +0200184void dev_initialize_chips(void);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000185void dev_enumerate(void);
186void dev_configure(void);
187void dev_enable(void);
188void dev_initialize(void);
Marc Jones2a58ecd2013-10-29 17:32:00 -0600189void dev_finalize(void);
190void dev_finalize_chips(void);
Subrata Baniked5c7ac2021-06-10 13:04:07 +0530191/* Function used to override device state */
192void devfn_disable(const struct bus *bus, unsigned int devfn);
Eric Biederman5899fd82003-04-24 06:25:08 +0000193
194/* Generic device helper functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000195int reset_bus(struct bus *bus);
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +0200196void scan_bridges(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000197void assign_resources(struct bus *bus);
Furquan Shaikh5b5c2332020-04-24 21:31:35 -0700198const char *dev_name(const struct device *dev);
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200199const char *dev_path(const struct device *dev);
Subrata Banik564547f2018-05-02 10:27:36 +0530200u32 dev_path_encode(const struct device *dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000201const char *bus_path(struct bus *bus);
Aaron Durbinf0349022017-11-10 10:47:54 -0700202void dev_set_enabled(struct device *dev, int enable);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000203void disable_children(struct bus *bus);
Aaron Durbinf0349022017-11-10 10:47:54 -0700204bool dev_is_active_bridge(struct device *dev);
Jacob Garber464f4d62019-06-05 17:03:30 -0600205void add_more_links(struct device *dev, unsigned int total_links);
Furquan Shaikh7f6ae792021-05-20 22:47:02 -0700206bool is_dev_enabled(const struct device *const dev);
Subrata Banikeca3e622021-06-08 00:55:04 +0530207bool is_devfn_enabled(unsigned int devfn);
Angel Ponsa7d92662020-07-25 16:00:28 +0200208
Myles Watsonb0259112010-03-05 18:27:19 +0000209/* Option ROM helper functions */
210void run_bios(struct device *dev, unsigned long addr);
211
Eric Biederman5899fd82003-04-24 06:25:08 +0000212/* Helper functions */
Kyösti Mälkki2df1c122018-05-21 01:52:10 +0300213DEVTREE_CONST struct device *find_dev_path(
214 const struct bus *parent,
215 const struct device_path *path);
Rob Barnesa223e652020-07-23 08:25:42 -0600216DEVTREE_CONST struct device *find_dev_nested_path(
217 const struct bus *parent,
218 const struct device_path nested_path[],
219 size_t nested_path_length);
Aaron Durbinf0349022017-11-10 10:47:54 -0700220struct device *alloc_find_dev(struct bus *parent, struct device_path *path);
221struct device *dev_find_device(u16 vendor, u16 device, struct device *from);
222struct device *dev_find_class(unsigned int class, struct device *from);
Nico Huberf6a43442018-05-15 14:13:32 +0200223DEVTREE_CONST struct device *dev_find_path(
224 DEVTREE_CONST struct device *prev_match,
225 enum device_path_type path_type);
Aaron Durbinf0349022017-11-10 10:47:54 -0700226struct device *dev_find_lapic(unsigned int apic_id);
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700227int dev_count_cpu(void);
Aaron Durbinf0349022017-11-10 10:47:54 -0700228struct device *add_cpu_device(struct bus *cpu_bus, unsigned int apic_id,
229 int enabled);
230void set_cpu_topology(struct device *cpu, unsigned int node,
231 unsigned int package, unsigned int core, unsigned int thread);
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300232
233#define amd_cpu_topology(cpu, node, core) \
234 set_cpu_topology(cpu, node, 0, core, 0)
235
236#define intel_cpu_topology(cpu, package, core, thread) \
237 set_cpu_topology(cpu, 0, package, core, thread)
238
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300239void mp_init_cpus(DEVTREE_CONST struct bus *cpu_bus);
240static inline void mp_cpu_bus_init(struct device *dev)
241{
Felix Held60e91142021-10-21 02:03:04 +0200242 /*
243 * When no LAPIC device is specified in the devietree inside the CPU cluster device,
244 * neither a LAPIC device nor the link/bus between the CPU cluster and the LAPIC device
245 * will be present in the static device tree and the link_list struct element of the
246 * CPU cluster device will be NULL. In this case add one link, so that the
247 * alloc_find_dev calls in init_bsp and allocate_cpu_devices will be able to add a
248 * LAPIC device for the BSP and the APs on this link/bus.
249 */
250 if (!dev->link_list)
251 add_more_links(dev, 1);
252
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300253 mp_init_cpus(dev->link_list);
254}
255
Myles Watsonbb3d8122009-05-11 22:45:35 +0000256/* Debug functions */
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200257void print_resource_tree(const struct device *root, int debug_level,
Myles Watsonbb3d8122009-05-11 22:45:35 +0000258 const char *msg);
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200259void show_devs_tree(const struct device *dev, int debug_level, int depth);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000260void show_devs_subtree(struct device *root, int debug_level, const char *msg);
261void show_all_devs(int debug_level, const char *msg);
Maciej Pijankaea921852009-10-27 14:29:29 +0000262void show_all_devs_tree(int debug_level, const char *msg);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000263void show_one_resource(int debug_level, struct device *dev,
264 struct resource *resource, const char *comment);
Lee Leahy6d71a432017-03-07 15:24:16 -0800265void show_all_devs_resources(int debug_level, const char *msg);
Eric Biederman5899fd82003-04-24 06:25:08 +0000266
Marc Jones5b5c52e2020-10-12 11:44:46 -0600267/* Debug macros */
268#if CONFIG(DEBUG_RESOURCES)
269#include <console/console.h>
270#define LOG_MEM_RESOURCE(type, dev, index, base_kb, size_kb) \
271 printk(BIOS_SPEW, "%s:%d res: %s, dev: %s, index: 0x%x, base: 0x%llx, " \
272 "end: 0x%llx, size_kb: 0x%llx\n", \
273 __func__, __LINE__, type, dev_path(dev), index, (base_kb << 10), \
274 (base_kb << 10) + (size_kb << 10) - 1, size_kb)
275
276#define LOG_IO_RESOURCE(type, dev, index, base, size) \
277 printk(BIOS_SPEW, "%s:%d res: %s, dev: %s, index: 0x%x, base: 0x%llx, " \
278 "end: 0x%llx, size: 0x%llx\n", \
279 __func__, __LINE__, type, dev_path(dev), index, base, base + size - 1, size)
280#else /* DEBUG_RESOURCES*/
281#define LOG_MEM_RESOURCE(type, dev, index, base_kb, size_kb)
282#define LOG_IO_RESOURCE(type, dev, index, base, size)
283#endif /* DEBUG_RESOURCES*/
284
Marc Jones8b522db2020-10-12 11:58:46 -0600285#if CONFIG(DEBUG_FUNC)
286#include <console/console.h>
287#define DEV_FUNC_ENTER(dev) \
288 printk(BIOS_SPEW, "%s:%s:%d: ENTER (dev: %s)\n", \
289 __FILE__, __func__, __LINE__, dev_path(dev))
290
291#define DEV_FUNC_EXIT(dev) \
292 printk(BIOS_SPEW, "%s:%s:%d: EXIT (dev: %s)\n", __FILE__, \
293 __func__, __LINE__, dev_path(dev))
294#else /* DEBUG_FUNC */
295#define DEV_FUNC_ENTER(dev)
296#define DEV_FUNC_EXIT(dev)
297#endif /* DEBUG_FUNC */
298
Stefan Reinauer14e22772010-04-27 06:56:47 +0000299/* Rounding for boundaries.
Myles Watsonbb3d8122009-05-11 22:45:35 +0000300 * Due to some chip bugs, go ahead and round IO to 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000301 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000302#define DEVICE_IO_ALIGN 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000303#define DEVICE_MEM_ALIGN 4096
304
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000305extern struct device_operations default_dev_ops_root;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000306void pci_domain_read_resources(struct device *dev);
Raul E Rangel5cb34e22020-05-04 16:41:22 -0600307void pci_domain_set_resources(struct device *dev);
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200308void pci_domain_scan_bus(struct device *dev);
Uwe Hermann4b42a622010-10-11 19:36:13 +0000309
Subrata Banik217ca362019-03-15 17:18:44 +0530310void fixed_io_resource(struct device *dev, unsigned long index,
311 unsigned long base, unsigned long size);
312
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300313void fixed_mem_resource_kb(struct device *dev, unsigned long index,
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300314 unsigned long basek, unsigned long sizek, unsigned long type);
315
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200316void mmconf_resource(struct device *dev, unsigned long index);
317
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300318/* It is the caller's responsibility to adjust regions such that ram_resource_kb()
319 * and mmio_resource_kb() do not overlap.
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300320 */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300321#define ram_resource_kb(dev, idx, basek, sizek) \
322 fixed_mem_resource_kb(dev, idx, basek, sizek, IORESOURCE_CACHEABLE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300323
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300324#define reserved_ram_resource_kb(dev, idx, basek, sizek) \
325 fixed_mem_resource_kb(dev, idx, basek, sizek, IORESOURCE_CACHEABLE \
Lee Leahy6a566d72017-03-07 17:45:12 -0800326 | IORESOURCE_RESERVE)
Aaron Durbinc9650762013-03-22 22:03:09 -0500327
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300328#define bad_ram_resource_kb(dev, idx, basek, sizek) \
329 reserved_ram_resource_kb((dev), (idx), (basek), (sizek))
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300330
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300331#define uma_resource_kb(dev, idx, basek, sizek) \
332 fixed_mem_resource_kb(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300333
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300334#define mmio_resource_kb(dev, idx, basek, sizek) \
335 fixed_mem_resource_kb(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300336
Subrata Banik217ca362019-03-15 17:18:44 +0530337#define io_resource(dev, idx, base, size) \
338 fixed_io_resource(dev, idx, base, size)
339
Uwe Hermann4b42a622010-10-11 19:36:13 +0000340void tolm_test(void *gp, struct device *dev, struct resource *new);
341u32 find_pci_tolm(struct bus *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300342
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500343DEVTREE_CONST struct device *dev_find_next_pci_device(
344 DEVTREE_CONST struct device *previous_dev);
345DEVTREE_CONST struct device *dev_find_slot_on_smbus(unsigned int bus,
Stefan Reinauer57879c92012-07-31 16:47:25 -0700346 unsigned int addr);
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500347DEVTREE_CONST struct device *dev_find_slot_pnp(u16 port, u16 device);
Aaron Durbina0dabd12018-07-25 08:49:19 -0600348DEVTREE_CONST struct device *dev_bus_each_child(const struct bus *parent,
349 DEVTREE_CONST struct device *prev_child);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300350
Kyösti Mälkkiad7674e2018-05-20 10:31:23 +0300351DEVTREE_CONST struct device *pcidev_path_behind(const struct bus *parent,
352 pci_devfn_t devfn);
353DEVTREE_CONST struct device *pcidev_path_on_root(pci_devfn_t devfn);
Kyösti Mälkkiab275f02019-07-04 07:16:59 +0300354DEVTREE_CONST struct device *pcidev_path_on_bus(unsigned int bus, pci_devfn_t devfn);
Kyösti Mälkkiad7674e2018-05-20 10:31:23 +0300355DEVTREE_CONST struct device *pcidev_on_root(uint8_t dev, uint8_t fn);
Kyösti Mälkkifffc9f32019-07-03 09:55:01 +0300356DEVTREE_CONST struct bus *pci_root_bus(void);
Furquan Shaikh7778e5c2020-04-16 08:25:58 -0700357/* Find PCI device with given D#:F# sitting behind the given PCI-to-PCI bridge device. */
358DEVTREE_CONST struct device *pcidev_path_behind_pci2pci_bridge(
359 const struct device *bridge,
360 pci_devfn_t devfn);
Kyösti Mälkkiad7674e2018-05-20 10:31:23 +0300361
Aaron Durbin55ef0d22019-09-26 12:05:27 -0600362/* To be deprecated, avoid using.
363 *
364 * Note that this function can return the incorrect device prior
365 * to PCI enumeration because the secondary field of the bus object
366 * is 0. The failing scenario is determined by the order of the
367 * devices in all_devices singly-linked list as well as the time
368 * when this function is called (secondary reflecting topology).
369 */
Kyösti Mälkkif2ac0132019-07-12 15:26:29 +0300370DEVTREE_CONST struct device *pcidev_path_on_root_debug(pci_devfn_t devfn, const char *func);
371
Kyösti Mälkki4323d262019-07-12 16:20:14 +0300372/* Robust discovery of chip_info. */
373void devtree_bug(const char *func, pci_devfn_t devfn);
374void __noreturn devtree_die(void);
375
Nico Huber7e6ee912020-10-05 11:08:44 +0200376/*
377 * Dies if `dev` or `dev->chip_info` are NULL. Returns `dev->chip_info` otherwise.
378 *
379 * Only use if missing `chip_info` is fatal and we can't boot. If it's
380 * not fatal, please handle the NULL case gracefully.
381 */
Kyösti Mälkki4323d262019-07-12 16:20:14 +0300382static inline DEVTREE_CONST void *config_of(const struct device *dev)
383{
384 if (dev && dev->chip_info)
385 return dev->chip_info;
386
387 devtree_die();
388}
389
Furquan Shaikh28e61f12021-01-06 22:40:40 -0800390/*
391 * Returns pointer to config structure of root device (B:D:F = 0:00:0) defined by
392 * sconfig in static.{h/c}.
393 */
394#define config_of_soc() __pci_0_00_0_config
Kyösti Mälkki4323d262019-07-12 16:20:14 +0300395
Duncan Laurie3e4a14e12020-10-18 15:04:41 -0700396void enable_static_device(struct device *dev);
Nico Huberf7ed3d42019-03-14 15:50:06 +0100397void enable_static_devices(struct device *bus);
Aaron Durbin6f1e8d22017-11-09 12:38:03 -0700398void scan_smbus(struct device *bus);
399void scan_generic_bus(struct device *bus);
Nico Hubera89c82e2017-09-14 15:40:28 +0200400void scan_static_bus(struct device *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300401
Furquan Shaikh26e2afd2021-09-16 16:27:10 -0700402/* Macro to generate `struct device *` name that points to a device with the given alias. */
403#define DEV_PTR(_alias) _dev_##_alias##_ptr
404
405/* Macro to generate weak `struct device *` definition that points to a device with the given
406 alias. */
407#define WEAK_DEV_PTR(_alias) \
408 __weak DEVTREE_CONST struct device *const DEV_PTR(_alias)
409
Eric Biederman5899fd82003-04-24 06:25:08 +0000410#endif /* DEVICE_H */