blob: 46efbfe679724225f2996ce23c6bd7db09c7e8b5 [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>
Julius Wernera2148372019-11-13 19:50:33 -08009#include <types.h>
Aaron Durbinc30d9132017-08-07 16:55:43 -060010
Elyes HAOUASf9e47cc2018-12-05 11:03:36 +010011struct device;
Eric Biederman992cd002004-10-14 21:10:23 +000012struct pci_operations;
Duncan Laurieec009682016-06-07 15:38:14 -070013struct i2c_bus_operations;
Eric Biederman992cd002004-10-14 21:10:23 +000014struct smbus_bus_operations;
Nico Huberdd4715b2013-06-10 22:08:35 +020015struct pnp_mode_ops;
Furquan Shaikh7606c372017-02-11 10:57:23 -080016struct spi_bus_operations;
Duncan Lauriebae9f852018-05-07 14:18:13 -070017struct usb_bus_operations;
Eric Biederman7a5416a2003-06-12 19:23:51 +000018
Eric Biederman7003ba42004-10-16 06:20:29 +000019/* Chip operations */
20struct chip_operations {
Eric Biederman7003ba42004-10-16 06:20:29 +000021 void (*enable_dev)(struct device *dev);
Nico Huberacd7d952012-07-25 10:33:05 +020022 void (*init)(void *chip_info);
Marc Jones2a58ecd2013-10-29 17:32:00 -060023 void (*final)(void *chip_info);
Nico Huberacd7d952012-07-25 10:33:05 +020024 unsigned int initialized : 1;
Marc Jones2a58ecd2013-10-29 17:32:00 -060025 unsigned int finalized : 1;
Myles Watson6e235762009-09-29 14:56:15 +000026 const char *name;
Eric Biederman7003ba42004-10-16 06:20:29 +000027};
28
Eric Biederman018d8dd2004-11-04 11:04:33 +000029#define CHIP_NAME(X) .name = X,
Eric Biederman018d8dd2004-11-04 11:04:33 +000030
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000031struct bus;
32
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +020033struct acpi_rsdp;
Vladimir Serbinenko6abb33c2014-08-27 23:42:45 +020034
Eric Biederman5899fd82003-04-24 06:25:08 +000035struct device_operations {
Aaron Durbinc30d9132017-08-07 16:55:43 -060036 void (*read_resources)(struct device *dev);
37 void (*set_resources)(struct device *dev);
38 void (*enable_resources)(struct device *dev);
39 void (*init)(struct device *dev);
40 void (*final)(struct device *dev);
41 void (*scan_bus)(struct device *bus);
42 void (*enable)(struct device *dev);
43 void (*disable)(struct device *dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000044 void (*reset_bus)(struct bus *bus);
Julius Wernercd49cce2019-03-05 16:53:33 -080045#if CONFIG(GENERATE_SMBIOS_TABLES)
Aaron Durbinc30d9132017-08-07 16:55:43 -060046 int (*get_smbios_data)(struct device *dev, int *handle,
Lee Leahy6a566d72017-03-07 17:45:12 -080047 unsigned long *current);
Aaron Durbinc30d9132017-08-07 16:55:43 -060048 void (*get_smbios_strings)(struct device *dev, struct smbios_type11 *t);
Sven Schnelle164bcfd2011-08-14 20:56:34 +020049#endif
Julius Wernercd49cce2019-03-05 16:53:33 -080050#if CONFIG(HAVE_ACPI_TABLES)
Furquan Shaikh0f007d82020-04-24 06:41:18 -070051 unsigned long (*write_acpi_tables)(const struct device *dev,
Aaron Durbinc30d9132017-08-07 16:55:43 -060052 unsigned long start, struct acpi_rsdp *rsdp);
Furquan Shaikh7536a392020-04-24 21:59:21 -070053 void (*acpi_fill_ssdt)(const struct device *dev);
Furquan Shaikh338fd9a2020-04-24 22:57:05 -070054 void (*acpi_inject_dsdt)(const struct device *dev);
Aaron Durbinaa090cb2017-09-13 16:01:52 -060055 const char *(*acpi_name)(const struct device *dev);
Patrick Rudolpheeb8e742019-08-20 08:20:01 +020056 /* Returns the optional _HID (Hardware ID) */
57 const char *(*acpi_hid)(const struct device *dev);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +020058#endif
Eric Biedermana9e632c2004-11-18 22:38:08 +000059 const struct pci_operations *ops_pci;
Duncan Laurieec009682016-06-07 15:38:14 -070060 const struct i2c_bus_operations *ops_i2c_bus;
Furquan Shaikh7606c372017-02-11 10:57:23 -080061 const struct spi_bus_operations *ops_spi_bus;
Eric Biedermana9e632c2004-11-18 22:38:08 +000062 const struct smbus_bus_operations *ops_smbus_bus;
Nico Huberdd4715b2013-06-10 22:08:35 +020063 const struct pnp_mode_ops *ops_pnp_mode;
Eric Biederman5899fd82003-04-24 06:25:08 +000064};
Kyösti Mälkkif41cb4e2014-06-30 13:15:42 +030065
Edward O'Callaghan530355d2014-10-31 08:31:44 +110066/**
67 * Standard device operations function pointers shims.
68 */
Nico Huber2f8ba692020-04-05 14:05:24 +020069static inline void noop_read_resources(struct device *dev) {}
70static inline void noop_set_resources(struct device *dev) {}
Edward O'Callaghan530355d2014-10-31 08:31:44 +110071
Eric Biedermane9a271e32003-09-02 03:36:25 +000072struct bus {
Stefan Reinauer57879c92012-07-31 16:47:25 -070073
Aaron Durbine4d7abc2017-04-16 22:05:36 -050074 DEVTREE_CONST struct device *dev; /* This bridge device */
75 DEVTREE_CONST struct device *children; /* devices behind this bridge */
76 DEVTREE_CONST struct bus *next; /* The next bridge on this device */
Lee Leahy0ca2a062017-03-06 18:01:04 -080077 unsigned int bridge_ctrl; /* Bridge control register */
Kyösti Mälkki33452402015-02-23 06:58:26 +020078 uint16_t bridge_cmd; /* Bridge command register */
Myles Watson894a3472010-06-09 22:41:35 +000079 unsigned char link_num; /* The index of this link */
Lee Leahy84d20d02017-03-07 15:00:18 -080080 uint16_t secondary; /* secondary bus number */
Yinghai Lud4b278c2006-10-04 20:46:15 +000081 uint16_t subordinate; /* max subordinate bus number */
Eric Biedermane9a271e32003-09-02 03:36:25 +000082 unsigned char cap; /* PCi capability offset */
Kyösti Mälkki77521472015-02-22 11:38:49 +020083 uint32_t hcdn_reg; /* For HyperTransport link */
84
Lee Leahy0ca2a062017-03-06 18:01:04 -080085 unsigned int reset_needed : 1;
86 unsigned int disable_relaxed_ordering : 1;
87 unsigned int ht_link_up : 1;
Nico Huber061b9052019-09-21 15:58:23 +020088 unsigned int no_vga16 : 1; /* No support for 16-bit VGA decoding */
Eric Biedermane9a271e32003-09-02 03:36:25 +000089};
90
Eric Biederman5899fd82003-04-24 06:25:08 +000091/*
Eric Biederman2c018fb2003-07-21 20:13:45 +000092 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +000093 * combination:
94 */
95
Sven Schnelle0fa50a12012-06-21 22:19:48 +020096struct pci_irq_info {
97 unsigned int ioapic_irq_pin;
98 unsigned int ioapic_src_pin;
99 unsigned int ioapic_dst_id;
100 unsigned int ioapic_flags;
101};
102
Eric Biederman5899fd82003-04-24 06:25:08 +0000103struct device {
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500104 DEVTREE_CONST struct bus *bus; /* bus this device is on, for bridge
Li-Ta Lo04930692004-11-25 17:37:19 +0000105 * devices, it is the up stream bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700106
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500107 DEVTREE_CONST struct device *sibling; /* next device on this bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700108
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500109 DEVTREE_CONST struct device *next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +0000110
Eric Biedermane9a271e32003-09-02 03:36:25 +0000111 struct device_path path;
Lee Leahy0ca2a062017-03-06 18:01:04 -0800112 unsigned int vendor;
113 unsigned int device;
Sven Schnelleb8269e22011-03-01 21:51:29 +0000114 u16 subsystem_vendor;
115 u16 subsystem_device;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000116 unsigned int class; /* 3 bytes: (base, sub, prog-if) */
Eric Biederman5899fd82003-04-24 06:25:08 +0000117 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000118 unsigned int enabled : 1; /* set if we should enable the device */
Lee Leahy6a566d72017-03-07 17:45:12 -0800119 unsigned int initialized : 1; /* 1 if we have initialized the device */
Eric Biedermandbec2d42004-10-21 10:44:08 +0000120 unsigned int on_mainboard : 1;
Nico Huber570b1832017-08-30 13:38:50 +0200121 unsigned int disable_pcie_aspm : 1;
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +0000122 /* set if we should hide from UI */
123 unsigned int hidden : 1;
124 /* set if this device is used even in minimum PCI cases */
125 unsigned int mandatory : 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000126 u8 command;
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600127 uint16_t hotplug_buses; /* Number of hotplug buses to allocate */
Eric Biederman5899fd82003-04-24 06:25:08 +0000128
Li-Ta Lo85e76c62004-12-27 17:53:45 +0000129 /* Base registers for this device. I/O, MEM and Expansion ROM */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500130 DEVTREE_CONST struct resource *resource_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000131
Myles Watson29cc9ed2009-07-02 18:56:24 +0000132 /* links are (downstream) buses attached to the device, usually a leaf
Myles Watsonc25cc112010-05-21 14:33:48 +0000133 * device with no children has 0 buses attached and a bridge has 1 bus
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000134 */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500135 DEVTREE_CONST struct bus *link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000136
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500137#if !DEVTREE_EARLY
Kyösti Mälkki1557a672019-06-30 10:51:31 +0300138 struct pci_irq_info pci_irq_info[4];
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300139 struct device_operations *ops;
Nico Huberacd7d952012-07-25 10:33:05 +0200140 struct chip_operations *chip_ops;
Kyösti Mälkki7d54eb82012-10-10 23:14:28 +0300141 const char *name;
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200142#if CONFIG(GENERATE_SMBIOS_TABLES)
143 u8 smbios_slot_type;
144 u8 smbios_slot_data_width;
145 u8 smbios_slot_length;
146 const char *smbios_slot_designation;
147#endif
Stefan Reinauera675d492012-08-07 14:50:47 -0700148#endif
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500149 DEVTREE_CONST void *chip_info;
Eric Biederman5899fd82003-04-24 06:25:08 +0000150};
151
Myles Watson3fe6b702009-10-09 20:13:43 +0000152/**
153 * This is the root of the device tree. The device tree is defined in the
154 * static.c file and is generated by the config tool at compile time.
155 */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500156extern DEVTREE_CONST struct device dev_root;
Aaron Durbinf0349022017-11-10 10:47:54 -0700157/* list of all devices */
158extern DEVTREE_CONST struct device * DEVTREE_CONST all_devices;
Myles Watsonc25cc112010-05-21 14:33:48 +0000159extern struct resource *free_resources;
Myles Watson894a3472010-06-09 22:41:35 +0000160extern struct bus *free_links;
Eric Biederman5899fd82003-04-24 06:25:08 +0000161
Kyösti Mälkkia93c3fe2012-10-09 22:28:56 +0300162extern const char mainboard_name[];
163
Julius Wernercd49cce2019-03-05 16:53:33 -0800164#if CONFIG(GFXUMA)
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300165/* IGD UMA memory */
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300166extern uint64_t uma_memory_base;
167extern uint64_t uma_memory_size;
Kyösti Mälkki5f098072013-10-18 11:02:46 +0300168#endif
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300169
Eric Biederman5899fd82003-04-24 06:25:08 +0000170/* Generic device interface functions */
Aaron Durbinf0349022017-11-10 10:47:54 -0700171struct device *alloc_dev(struct bus *parent, struct device_path *path);
Nico Huberacd7d952012-07-25 10:33:05 +0200172void dev_initialize_chips(void);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000173void dev_enumerate(void);
174void dev_configure(void);
175void dev_enable(void);
176void dev_initialize(void);
177void dev_optimize(void);
Marc Jones2a58ecd2013-10-29 17:32:00 -0600178void dev_finalize(void);
179void dev_finalize_chips(void);
Eric Biederman5899fd82003-04-24 06:25:08 +0000180
181/* Generic device helper functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000182int reset_bus(struct bus *bus);
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +0200183void scan_bridges(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000184void assign_resources(struct bus *bus);
Furquan Shaikh5b5c2332020-04-24 21:31:35 -0700185const char *dev_name(const struct device *dev);
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200186const char *dev_path(const struct device *dev);
Subrata Banik564547f2018-05-02 10:27:36 +0530187u32 dev_path_encode(const struct device *dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000188const char *bus_path(struct bus *bus);
Aaron Durbinf0349022017-11-10 10:47:54 -0700189void dev_set_enabled(struct device *dev, int enable);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000190void disable_children(struct bus *bus);
Aaron Durbinf0349022017-11-10 10:47:54 -0700191bool dev_is_active_bridge(struct device *dev);
Jacob Garber464f4d62019-06-05 17:03:30 -0600192void add_more_links(struct device *dev, unsigned int total_links);
Eric Biederman5899fd82003-04-24 06:25:08 +0000193
Myles Watsonb0259112010-03-05 18:27:19 +0000194/* Option ROM helper functions */
195void run_bios(struct device *dev, unsigned long addr);
196
Eric Biederman5899fd82003-04-24 06:25:08 +0000197/* Helper functions */
Kyösti Mälkki2df1c122018-05-21 01:52:10 +0300198DEVTREE_CONST struct device *find_dev_path(
199 const struct bus *parent,
200 const struct device_path *path);
Aaron Durbinf0349022017-11-10 10:47:54 -0700201struct device *alloc_find_dev(struct bus *parent, struct device_path *path);
202struct device *dev_find_device(u16 vendor, u16 device, struct device *from);
203struct device *dev_find_class(unsigned int class, struct device *from);
Nico Huberf6a43442018-05-15 14:13:32 +0200204DEVTREE_CONST struct device *dev_find_path(
205 DEVTREE_CONST struct device *prev_match,
206 enum device_path_type path_type);
Aaron Durbinf0349022017-11-10 10:47:54 -0700207struct device *dev_find_lapic(unsigned int apic_id);
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700208int dev_count_cpu(void);
arch import user (historical)98d0d302005-07-06 17:13:46 +0000209
Furquan Shaikh1f3055a2020-04-20 17:59:50 -0700210/*
211 * Signature for matching function that is used by dev_find_matching_device_on_bus() to decide
212 * if the device being considered is the one that matches the caller's criteria. This function
213 * is supposed to return true if the provided device matches the criteria, else false.
214 */
215typedef bool (*match_device_fn)(DEVTREE_CONST struct device *dev);
216/*
217 * Returns the first device on the bus that the match_device_fn returns true for. If no such
218 * device is found, it returns NULL.
219 */
220DEVTREE_CONST struct device *dev_find_matching_device_on_bus(const struct bus *bus,
221 match_device_fn fn);
222
Aaron Durbinf0349022017-11-10 10:47:54 -0700223struct device *add_cpu_device(struct bus *cpu_bus, unsigned int apic_id,
224 int enabled);
225void set_cpu_topology(struct device *cpu, unsigned int node,
226 unsigned int package, unsigned int core, unsigned int thread);
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300227
228#define amd_cpu_topology(cpu, node, core) \
229 set_cpu_topology(cpu, node, 0, core, 0)
230
231#define intel_cpu_topology(cpu, package, core, thread) \
232 set_cpu_topology(cpu, 0, package, core, thread)
233
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300234void mp_init_cpus(DEVTREE_CONST struct bus *cpu_bus);
235static inline void mp_cpu_bus_init(struct device *dev)
236{
237 mp_init_cpus(dev->link_list);
238}
239
Myles Watsonbb3d8122009-05-11 22:45:35 +0000240/* Debug functions */
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200241void print_resource_tree(const struct device *root, int debug_level,
Myles Watsonbb3d8122009-05-11 22:45:35 +0000242 const char *msg);
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200243void show_devs_tree(const struct device *dev, int debug_level, int depth);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000244void show_devs_subtree(struct device *root, int debug_level, const char *msg);
245void show_all_devs(int debug_level, const char *msg);
Maciej Pijankaea921852009-10-27 14:29:29 +0000246void show_all_devs_tree(int debug_level, const char *msg);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000247void show_one_resource(int debug_level, struct device *dev,
248 struct resource *resource, const char *comment);
Lee Leahy6d71a432017-03-07 15:24:16 -0800249void show_all_devs_resources(int debug_level, const char *msg);
Eric Biederman5899fd82003-04-24 06:25:08 +0000250
Stefan Reinauer14e22772010-04-27 06:56:47 +0000251/* Rounding for boundaries.
Myles Watsonbb3d8122009-05-11 22:45:35 +0000252 * Due to some chip bugs, go ahead and round IO to 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000253 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000254#define DEVICE_IO_ALIGN 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000255#define DEVICE_MEM_ALIGN 4096
256
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000257extern struct device_operations default_dev_ops_root;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000258void pci_domain_read_resources(struct device *dev);
Raul E Rangel5cb34e22020-05-04 16:41:22 -0600259void pci_domain_set_resources(struct device *dev);
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200260void pci_domain_scan_bus(struct device *dev);
Uwe Hermann4b42a622010-10-11 19:36:13 +0000261
Subrata Banik217ca362019-03-15 17:18:44 +0530262void fixed_io_resource(struct device *dev, unsigned long index,
263 unsigned long base, unsigned long size);
264
Aaron Durbinf0349022017-11-10 10:47:54 -0700265void fixed_mem_resource(struct device *dev, unsigned long index,
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300266 unsigned long basek, unsigned long sizek, unsigned long type);
267
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200268void mmconf_resource_init(struct resource *res, resource_t base, int buses);
269void mmconf_resource(struct device *dev, unsigned long index);
270
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300271/* It is the caller's responsibility to adjust regions such that ram_resource()
272 * and mmio_resource() do not overlap.
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300273 */
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300274#define ram_resource(dev, idx, basek, sizek) \
275 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_CACHEABLE)
276
Aaron Durbinc9650762013-03-22 22:03:09 -0500277#define reserved_ram_resource(dev, idx, basek, sizek) \
Lee Leahy6a566d72017-03-07 17:45:12 -0800278 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_CACHEABLE \
279 | IORESOURCE_RESERVE)
Aaron Durbinc9650762013-03-22 22:03:09 -0500280
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300281#define bad_ram_resource(dev, idx, basek, sizek) \
Aaron Durbinc9650762013-03-22 22:03:09 -0500282 reserved_ram_resource((dev), (idx), (basek), (sizek))
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300283
284#define uma_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500285 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300286
287#define mmio_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500288 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300289
Subrata Banik217ca362019-03-15 17:18:44 +0530290#define io_resource(dev, idx, base, size) \
291 fixed_io_resource(dev, idx, base, size)
292
Uwe Hermann4b42a622010-10-11 19:36:13 +0000293void tolm_test(void *gp, struct device *dev, struct resource *new);
294u32 find_pci_tolm(struct bus *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300295
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500296DEVTREE_CONST struct device *dev_find_next_pci_device(
297 DEVTREE_CONST struct device *previous_dev);
298DEVTREE_CONST struct device *dev_find_slot_on_smbus(unsigned int bus,
Stefan Reinauer57879c92012-07-31 16:47:25 -0700299 unsigned int addr);
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500300DEVTREE_CONST struct device *dev_find_slot_pnp(u16 port, u16 device);
Aaron Durbina0dabd12018-07-25 08:49:19 -0600301DEVTREE_CONST struct device *dev_bus_each_child(const struct bus *parent,
302 DEVTREE_CONST struct device *prev_child);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300303
Kyösti Mälkkiad7674e2018-05-20 10:31:23 +0300304DEVTREE_CONST struct device *pcidev_path_behind(const struct bus *parent,
305 pci_devfn_t devfn);
306DEVTREE_CONST struct device *pcidev_path_on_root(pci_devfn_t devfn);
Kyösti Mälkkiab275f02019-07-04 07:16:59 +0300307DEVTREE_CONST struct device *pcidev_path_on_bus(unsigned int bus, pci_devfn_t devfn);
Kyösti Mälkkiad7674e2018-05-20 10:31:23 +0300308DEVTREE_CONST struct device *pcidev_on_root(uint8_t dev, uint8_t fn);
Kyösti Mälkkifffc9f32019-07-03 09:55:01 +0300309DEVTREE_CONST struct bus *pci_root_bus(void);
Furquan Shaikh7778e5c2020-04-16 08:25:58 -0700310/* Find PCI device with given D#:F# sitting behind the given PCI-to-PCI bridge device. */
311DEVTREE_CONST struct device *pcidev_path_behind_pci2pci_bridge(
312 const struct device *bridge,
313 pci_devfn_t devfn);
Kyösti Mälkkiad7674e2018-05-20 10:31:23 +0300314
Aaron Durbin55ef0d22019-09-26 12:05:27 -0600315/* To be deprecated, avoid using.
316 *
317 * Note that this function can return the incorrect device prior
318 * to PCI enumeration because the secondary field of the bus object
319 * is 0. The failing scenario is determined by the order of the
320 * devices in all_devices singly-linked list as well as the time
321 * when this function is called (secondary reflecting topology).
322 */
Kyösti Mälkkif2ac0132019-07-12 15:26:29 +0300323DEVTREE_CONST struct device *pcidev_path_on_root_debug(pci_devfn_t devfn, const char *func);
324
Kyösti Mälkki4323d262019-07-12 16:20:14 +0300325/* Robust discovery of chip_info. */
326void devtree_bug(const char *func, pci_devfn_t devfn);
327void __noreturn devtree_die(void);
328
329static inline DEVTREE_CONST void *config_of(const struct device *dev)
330{
331 if (dev && dev->chip_info)
332 return dev->chip_info;
333
334 devtree_die();
335}
336
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300337static inline DEVTREE_CONST void *config_of_soc(void)
Kyösti Mälkki4323d262019-07-12 16:20:14 +0300338{
Kyösti Mälkkid5f645c2019-09-28 00:20:27 +0300339 return config_of(pcidev_on_root(0, 0));
Kyösti Mälkki4323d262019-07-12 16:20:14 +0300340}
341
Nico Huberf7ed3d42019-03-14 15:50:06 +0100342void enable_static_devices(struct device *bus);
Aaron Durbin6f1e8d22017-11-09 12:38:03 -0700343void scan_smbus(struct device *bus);
344void scan_generic_bus(struct device *bus);
Nico Hubera89c82e2017-09-14 15:40:28 +0200345void scan_static_bus(struct device *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300346
Eric Biederman5899fd82003-04-24 06:25:08 +0000347#endif /* DEVICE_H */