blob: c2f8ecefd76c55263042ac1d4758df544a60d5d7 [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
Edward O'Callaghan5e196502014-06-24 17:35:02 +10005/*
6 * NOTICE: Header is ROMCC tentative.
7 * This header is incompatible with ROMCC and its inclusion leads to 'odd'
8 * build failures.
9 */
10#if !defined(__ROMCC__)
11
Eric Biederman9bdb4602003-09-01 23:17:58 +000012#include <stdint.h>
Stefan Reinauer57879c92012-07-31 16:47:25 -070013#include <stddef.h>
Kyösti Mälkkie8792be2014-02-26 15:19:04 +020014#include <rules.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000015#include <device/resource.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +000016#include <device/path.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020017#include <arch/io.h>
Aaron Durbinc30d9132017-08-07 16:55:43 -060018
Elyes HAOUASf9e47cc2018-12-05 11:03:36 +010019struct device;
Eric Biederman992cd002004-10-14 21:10:23 +000020struct pci_operations;
Eric Biedermana9e632c2004-11-18 22:38:08 +000021struct pci_bus_operations;
Duncan Laurieec009682016-06-07 15:38:14 -070022struct i2c_bus_operations;
Eric Biederman992cd002004-10-14 21:10:23 +000023struct smbus_bus_operations;
Nico Huberdd4715b2013-06-10 22:08:35 +020024struct pnp_mode_ops;
Furquan Shaikh7606c372017-02-11 10:57:23 -080025struct spi_bus_operations;
Duncan Lauriebae9f852018-05-07 14:18:13 -070026struct usb_bus_operations;
Eric Biederman7a5416a2003-06-12 19:23:51 +000027
Eric Biederman7003ba42004-10-16 06:20:29 +000028/* Chip operations */
29struct chip_operations {
Eric Biederman7003ba42004-10-16 06:20:29 +000030 void (*enable_dev)(struct device *dev);
Nico Huberacd7d952012-07-25 10:33:05 +020031 void (*init)(void *chip_info);
Marc Jones2a58ecd2013-10-29 17:32:00 -060032 void (*final)(void *chip_info);
Nico Huberacd7d952012-07-25 10:33:05 +020033 unsigned int initialized : 1;
Marc Jones2a58ecd2013-10-29 17:32:00 -060034 unsigned int finalized : 1;
Myles Watson6e235762009-09-29 14:56:15 +000035 const char *name;
Eric Biederman7003ba42004-10-16 06:20:29 +000036};
37
Eric Biederman018d8dd2004-11-04 11:04:33 +000038#define CHIP_NAME(X) .name = X,
Eric Biederman018d8dd2004-11-04 11:04:33 +000039
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000040struct bus;
41
Vladimir Serbinenko6abb33c2014-08-27 23:42:45 +020042struct smbios_type11;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +020043struct acpi_rsdp;
Vladimir Serbinenko6abb33c2014-08-27 23:42:45 +020044
Eric Biederman5899fd82003-04-24 06:25:08 +000045struct device_operations {
Aaron Durbinc30d9132017-08-07 16:55:43 -060046 void (*read_resources)(struct device *dev);
47 void (*set_resources)(struct device *dev);
48 void (*enable_resources)(struct device *dev);
49 void (*init)(struct device *dev);
50 void (*final)(struct device *dev);
51 void (*scan_bus)(struct device *bus);
52 void (*enable)(struct device *dev);
53 void (*disable)(struct device *dev);
54 void (*set_link)(struct device *dev, unsigned int link);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000055 void (*reset_bus)(struct bus *bus);
Martin Roth96345472017-06-24 14:13:53 -060056#if IS_ENABLED(CONFIG_GENERATE_SMBIOS_TABLES)
Aaron Durbinc30d9132017-08-07 16:55:43 -060057 int (*get_smbios_data)(struct device *dev, int *handle,
Lee Leahy6a566d72017-03-07 17:45:12 -080058 unsigned long *current);
Aaron Durbinc30d9132017-08-07 16:55:43 -060059 void (*get_smbios_strings)(struct device *dev, struct smbios_type11 *t);
Sven Schnelle164bcfd2011-08-14 20:56:34 +020060#endif
Vladimir Serbinenko83f81ca2014-11-09 13:30:50 +010061#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
Aaron Durbinc30d9132017-08-07 16:55:43 -060062 unsigned long (*write_acpi_tables)(struct device *dev,
63 unsigned long start, struct acpi_rsdp *rsdp);
64 void (*acpi_fill_ssdt_generator)(struct device *dev);
65 void (*acpi_inject_dsdt_generator)(struct device *dev);
Aaron Durbinaa090cb2017-09-13 16:01:52 -060066 const char *(*acpi_name)(const struct device *dev);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +020067#endif
Eric Biedermana9e632c2004-11-18 22:38:08 +000068 const struct pci_operations *ops_pci;
Duncan Laurieec009682016-06-07 15:38:14 -070069 const struct i2c_bus_operations *ops_i2c_bus;
Furquan Shaikh7606c372017-02-11 10:57:23 -080070 const struct spi_bus_operations *ops_spi_bus;
Eric Biedermana9e632c2004-11-18 22:38:08 +000071 const struct smbus_bus_operations *ops_smbus_bus;
Aaron Durbinc30d9132017-08-07 16:55:43 -060072 const struct pci_bus_operations * (*ops_pci_bus)(struct device *dev);
Nico Huberdd4715b2013-06-10 22:08:35 +020073 const struct pnp_mode_ops *ops_pnp_mode;
Eric Biederman5899fd82003-04-24 06:25:08 +000074};
Kyösti Mälkkif41cb4e2014-06-30 13:15:42 +030075
Edward O'Callaghan530355d2014-10-31 08:31:44 +110076/**
77 * Standard device operations function pointers shims.
78 */
79static inline void device_noop(struct device *dev) {}
80#define DEVICE_NOOP device_noop
81
Eric Biedermane9a271e32003-09-02 03:36:25 +000082struct bus {
Stefan Reinauer57879c92012-07-31 16:47:25 -070083
Aaron Durbine4d7abc2017-04-16 22:05:36 -050084 DEVTREE_CONST struct device *dev; /* This bridge device */
85 DEVTREE_CONST struct device *children; /* devices behind this bridge */
86 DEVTREE_CONST struct bus *next; /* The next bridge on this device */
Lee Leahy0ca2a062017-03-06 18:01:04 -080087 unsigned int bridge_ctrl; /* Bridge control register */
Kyösti Mälkki33452402015-02-23 06:58:26 +020088 uint16_t bridge_cmd; /* Bridge command register */
Myles Watson894a3472010-06-09 22:41:35 +000089 unsigned char link_num; /* The index of this link */
Lee Leahy84d20d02017-03-07 15:00:18 -080090 uint16_t secondary; /* secondary bus number */
Yinghai Lud4b278c2006-10-04 20:46:15 +000091 uint16_t subordinate; /* max subordinate bus number */
Eric Biedermane9a271e32003-09-02 03:36:25 +000092 unsigned char cap; /* PCi capability offset */
Kyösti Mälkki77521472015-02-22 11:38:49 +020093 uint32_t hcdn_reg; /* For HyperTransport link */
94
Lee Leahy0ca2a062017-03-06 18:01:04 -080095 unsigned int reset_needed : 1;
96 unsigned int disable_relaxed_ordering : 1;
97 unsigned int ht_link_up : 1;
Eric Biedermane9a271e32003-09-02 03:36:25 +000098};
99
Eric Biederman5899fd82003-04-24 06:25:08 +0000100/*
Eric Biederman2c018fb2003-07-21 20:13:45 +0000101 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +0000102 * combination:
103 */
104
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200105struct pci_irq_info {
106 unsigned int ioapic_irq_pin;
107 unsigned int ioapic_src_pin;
108 unsigned int ioapic_dst_id;
109 unsigned int ioapic_flags;
110};
111
Eric Biederman5899fd82003-04-24 06:25:08 +0000112struct device {
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500113 DEVTREE_CONST struct bus *bus; /* bus this device is on, for bridge
Li-Ta Lo04930692004-11-25 17:37:19 +0000114 * devices, it is the up stream bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700115
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500116 DEVTREE_CONST struct device *sibling; /* next device on this bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700117
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500118 DEVTREE_CONST struct device *next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +0000119
Eric Biedermane9a271e32003-09-02 03:36:25 +0000120 struct device_path path;
Lee Leahy0ca2a062017-03-06 18:01:04 -0800121 unsigned int vendor;
122 unsigned int device;
Sven Schnelleb8269e22011-03-01 21:51:29 +0000123 u16 subsystem_vendor;
124 u16 subsystem_device;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000125 unsigned int class; /* 3 bytes: (base, sub, prog-if) */
Eric Biederman5899fd82003-04-24 06:25:08 +0000126 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000127 unsigned int enabled : 1; /* set if we should enable the device */
Lee Leahy6a566d72017-03-07 17:45:12 -0800128 unsigned int initialized : 1; /* 1 if we have initialized the device */
Eric Biedermandbec2d42004-10-21 10:44:08 +0000129 unsigned int on_mainboard : 1;
Nico Huber570b1832017-08-30 13:38:50 +0200130 unsigned int disable_pcie_aspm : 1;
Hung-Te Lin936dbe12018-09-10 10:51:26 +0800131 unsigned int hidden : 1; /* set if we should hide from UI */
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200132 struct pci_irq_info pci_irq_info[4];
Myles Watson29cc9ed2009-07-02 18:56:24 +0000133 u8 command;
Eric Biederman5899fd82003-04-24 06:25:08 +0000134
Li-Ta Lo85e76c62004-12-27 17:53:45 +0000135 /* Base registers for this device. I/O, MEM and Expansion ROM */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500136 DEVTREE_CONST struct resource *resource_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000137
Myles Watson29cc9ed2009-07-02 18:56:24 +0000138 /* links are (downstream) buses attached to the device, usually a leaf
Myles Watsonc25cc112010-05-21 14:33:48 +0000139 * device with no children has 0 buses attached and a bridge has 1 bus
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000140 */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500141 DEVTREE_CONST struct bus *link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000142
Eric Biederman5899fd82003-04-24 06:25:08 +0000143 struct device_operations *ops;
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500144#if !DEVTREE_EARLY
Nico Huberacd7d952012-07-25 10:33:05 +0200145 struct chip_operations *chip_ops;
Kyösti Mälkki7d54eb82012-10-10 23:14:28 +0300146 const char *name;
Stefan Reinauera675d492012-08-07 14:50:47 -0700147#endif
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500148 DEVTREE_CONST void *chip_info;
Eric Biederman5899fd82003-04-24 06:25:08 +0000149};
150
Myles Watson3fe6b702009-10-09 20:13:43 +0000151/**
152 * This is the root of the device tree. The device tree is defined in the
153 * static.c file and is generated by the config tool at compile time.
154 */
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500155extern DEVTREE_CONST struct device dev_root;
Aaron Durbinf0349022017-11-10 10:47:54 -0700156/* list of all devices */
157extern DEVTREE_CONST struct device * DEVTREE_CONST all_devices;
Myles Watsonc25cc112010-05-21 14:33:48 +0000158extern struct resource *free_resources;
Myles Watson894a3472010-06-09 22:41:35 +0000159extern struct bus *free_links;
Eric Biederman5899fd82003-04-24 06:25:08 +0000160
Kyösti Mälkkia93c3fe2012-10-09 22:28:56 +0300161extern const char mainboard_name[];
162
Martin Roth96345472017-06-24 14:13:53 -0600163#if IS_ENABLED(CONFIG_GFXUMA)
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300164/* IGD UMA memory */
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300165extern uint64_t uma_memory_base;
166extern uint64_t uma_memory_size;
Kyösti Mälkki5f098072013-10-18 11:02:46 +0300167#endif
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300168
Eric Biederman5899fd82003-04-24 06:25:08 +0000169/* Generic device interface functions */
Aaron Durbinf0349022017-11-10 10:47:54 -0700170struct device *alloc_dev(struct bus *parent, struct device_path *path);
Nico Huberacd7d952012-07-25 10:33:05 +0200171void dev_initialize_chips(void);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000172void dev_enumerate(void);
173void dev_configure(void);
174void dev_enable(void);
175void dev_initialize(void);
176void dev_optimize(void);
Marc Jones2a58ecd2013-10-29 17:32:00 -0600177void dev_finalize(void);
178void dev_finalize_chips(void);
Eric Biederman5899fd82003-04-24 06:25:08 +0000179
180/* Generic device helper functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000181int reset_bus(struct bus *bus);
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +0200182void scan_bridges(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000183void assign_resources(struct bus *bus);
Aaron Durbinf0349022017-11-10 10:47:54 -0700184const char *dev_name(struct device *dev);
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200185const char *dev_path(const struct device *dev);
Subrata Banik564547f2018-05-02 10:27:36 +0530186u32 dev_path_encode(const struct device *dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000187const char *bus_path(struct bus *bus);
Aaron Durbinf0349022017-11-10 10:47:54 -0700188void dev_set_enabled(struct device *dev, int enable);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000189void disable_children(struct bus *bus);
Aaron Durbinf0349022017-11-10 10:47:54 -0700190bool dev_is_active_bridge(struct device *dev);
Eric Biederman5899fd82003-04-24 06:25:08 +0000191
Myles Watsonb0259112010-03-05 18:27:19 +0000192/* Option ROM helper functions */
193void run_bios(struct device *dev, unsigned long addr);
194
Eric Biederman5899fd82003-04-24 06:25:08 +0000195/* Helper functions */
Kyösti Mälkki2df1c122018-05-21 01:52:10 +0300196DEVTREE_CONST struct device *find_dev_path(
197 const struct bus *parent,
198 const struct device_path *path);
Aaron Durbinf0349022017-11-10 10:47:54 -0700199struct device *alloc_find_dev(struct bus *parent, struct device_path *path);
200struct device *dev_find_device(u16 vendor, u16 device, struct device *from);
201struct device *dev_find_class(unsigned int class, struct device *from);
Nico Huberf6a43442018-05-15 14:13:32 +0200202DEVTREE_CONST struct device *dev_find_path(
203 DEVTREE_CONST struct device *prev_match,
204 enum device_path_type path_type);
Aaron Durbinf0349022017-11-10 10:47:54 -0700205struct device *dev_find_lapic(unsigned int apic_id);
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700206int dev_count_cpu(void);
arch import user (historical)98d0d302005-07-06 17:13:46 +0000207
Aaron Durbinf0349022017-11-10 10:47:54 -0700208struct device *add_cpu_device(struct bus *cpu_bus, unsigned int apic_id,
209 int enabled);
210void set_cpu_topology(struct device *cpu, unsigned int node,
211 unsigned int package, unsigned int core, unsigned int thread);
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300212
213#define amd_cpu_topology(cpu, node, core) \
214 set_cpu_topology(cpu, node, 0, core, 0)
215
216#define intel_cpu_topology(cpu, package, core, thread) \
217 set_cpu_topology(cpu, 0, package, core, thread)
218
Myles Watsonbb3d8122009-05-11 22:45:35 +0000219/* Debug functions */
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200220void print_resource_tree(const struct device *root, int debug_level,
Myles Watsonbb3d8122009-05-11 22:45:35 +0000221 const char *msg);
Lubomir Rintel9ba8f7c2018-04-26 00:00:22 +0200222void show_devs_tree(const struct device *dev, int debug_level, int depth);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000223void show_devs_subtree(struct device *root, int debug_level, const char *msg);
224void show_all_devs(int debug_level, const char *msg);
Maciej Pijankaea921852009-10-27 14:29:29 +0000225void show_all_devs_tree(int debug_level, const char *msg);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000226void show_one_resource(int debug_level, struct device *dev,
227 struct resource *resource, const char *comment);
Lee Leahy6d71a432017-03-07 15:24:16 -0800228void show_all_devs_resources(int debug_level, const char *msg);
Eric Biederman5899fd82003-04-24 06:25:08 +0000229
Stefan Reinauer14e22772010-04-27 06:56:47 +0000230/* Rounding for boundaries.
Myles Watsonbb3d8122009-05-11 22:45:35 +0000231 * Due to some chip bugs, go ahead and round IO to 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000232 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000233#define DEVICE_IO_ALIGN 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000234#define DEVICE_MEM_ALIGN 4096
235
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000236extern struct device_operations default_dev_ops_root;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000237void pci_domain_read_resources(struct device *dev);
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200238void pci_domain_scan_bus(struct device *dev);
Uwe Hermann4b42a622010-10-11 19:36:13 +0000239
Aaron Durbinf0349022017-11-10 10:47:54 -0700240void fixed_mem_resource(struct device *dev, unsigned long index,
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300241 unsigned long basek, unsigned long sizek, unsigned long type);
242
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200243void mmconf_resource_init(struct resource *res, resource_t base, int buses);
244void mmconf_resource(struct device *dev, unsigned long index);
245
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300246/* It is the caller's responsibility to adjust regions such that ram_resource()
247 * and mmio_resource() do not overlap.
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300248 */
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300249#define ram_resource(dev, idx, basek, sizek) \
250 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_CACHEABLE)
251
Aaron Durbinc9650762013-03-22 22:03:09 -0500252#define reserved_ram_resource(dev, idx, basek, sizek) \
Lee Leahy6a566d72017-03-07 17:45:12 -0800253 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_CACHEABLE \
254 | IORESOURCE_RESERVE)
Aaron Durbinc9650762013-03-22 22:03:09 -0500255
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300256#define bad_ram_resource(dev, idx, basek, sizek) \
Aaron Durbinc9650762013-03-22 22:03:09 -0500257 reserved_ram_resource((dev), (idx), (basek), (sizek))
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300258
259#define uma_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500260 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300261
262#define mmio_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500263 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300264
Uwe Hermann4b42a622010-10-11 19:36:13 +0000265void tolm_test(void *gp, struct device *dev, struct resource *new);
266u32 find_pci_tolm(struct bus *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300267
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500268DEVTREE_CONST struct device *dev_find_slot(unsigned int bus,
Stefan Reinauer57879c92012-07-31 16:47:25 -0700269 unsigned int devfn);
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500270DEVTREE_CONST struct device *dev_find_next_pci_device(
271 DEVTREE_CONST struct device *previous_dev);
272DEVTREE_CONST struct device *dev_find_slot_on_smbus(unsigned int bus,
Stefan Reinauer57879c92012-07-31 16:47:25 -0700273 unsigned int addr);
Aaron Durbine4d7abc2017-04-16 22:05:36 -0500274DEVTREE_CONST struct device *dev_find_slot_pnp(u16 port, u16 device);
Aaron Durbina0dabd12018-07-25 08:49:19 -0600275DEVTREE_CONST struct device *dev_bus_each_child(const struct bus *parent,
276 DEVTREE_CONST struct device *prev_child);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300277
Aaron Durbin6f1e8d22017-11-09 12:38:03 -0700278void scan_smbus(struct device *bus);
279void scan_generic_bus(struct device *bus);
280void scan_static_bus(struct device *bus);
281void scan_lpc_bus(struct device *bus);
Duncan Lauriebae9f852018-05-07 14:18:13 -0700282void scan_usb_bus(struct device *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300283
Edward O'Callaghan5e196502014-06-24 17:35:02 +1000284#endif /* !defined(__ROMCC__) */
285
Eric Biederman5899fd82003-04-24 06:25:08 +0000286#endif /* DEVICE_H */