blob: d3efdd23034f060415985db82be8621eca86e7c6 [file] [log] [blame]
Eric Biederman5899fd82003-04-24 06:25:08 +00001#ifndef DEVICE_H
2#define DEVICE_H
3
Edward O'Callaghan5e196502014-06-24 17:35:02 +10004/*
5 * NOTICE: Header is ROMCC tentative.
6 * This header is incompatible with ROMCC and its inclusion leads to 'odd'
7 * build failures.
8 */
9#if !defined(__ROMCC__)
10
Eric Biederman9bdb4602003-09-01 23:17:58 +000011#include <stdint.h>
Stefan Reinauer57879c92012-07-31 16:47:25 -070012#include <stddef.h>
Kyösti Mälkkie8792be2014-02-26 15:19:04 +020013#include <rules.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000014#include <device/resource.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +000015#include <device/path.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000016
17struct device;
Kyösti Mälkkief844012013-06-25 23:17:43 +030018
19#ifndef __SIMPLE_DEVICE__
Lee Leahy6d71a432017-03-07 15:24:16 -080020typedef struct device *device_t;
Eric Biederman992cd002004-10-14 21:10:23 +000021struct pci_operations;
Eric Biedermana9e632c2004-11-18 22:38:08 +000022struct pci_bus_operations;
Duncan Laurieec009682016-06-07 15:38:14 -070023struct i2c_bus_operations;
Eric Biederman992cd002004-10-14 21:10:23 +000024struct smbus_bus_operations;
Nico Huberdd4715b2013-06-10 22:08:35 +020025struct pnp_mode_ops;
Furquan Shaikh7606c372017-02-11 10:57:23 -080026struct spi_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 {
Eric Biederman7a5416a2003-06-12 19:23:51 +000046 void (*read_resources)(device_t dev);
47 void (*set_resources)(device_t dev);
Eric Biedermane9a271e32003-09-02 03:36:25 +000048 void (*enable_resources)(device_t dev);
Eric Biederman7a5416a2003-06-12 19:23:51 +000049 void (*init)(device_t dev);
Marc Jones2a58ecd2013-10-29 17:32:00 -060050 void (*final)(device_t dev);
Kyösti Mälkki580e7222015-03-19 21:04:23 +020051 void (*scan_bus)(device_t bus);
Eric Biederman4086d162003-07-17 03:26:03 +000052 void (*enable)(device_t dev);
Patrick Georgi5869fa22012-07-20 12:29:33 +020053 void (*disable)(device_t dev);
Yinghai Lu7213d0f2004-12-03 03:39:04 +000054 void (*set_link)(device_t dev, unsigned int link);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000055 void (*reset_bus)(struct bus *bus);
Sven Schnelle164bcfd2011-08-14 20:56:34 +020056#if CONFIG_GENERATE_SMBIOS_TABLES
57 int (*get_smbios_data)(device_t dev, int *handle, unsigned long *current);
Vladimir Serbinenko6abb33c2014-08-27 23:42:45 +020058 void (*get_smbios_strings)(device_t dev, struct smbios_type11 *t);
Sven Schnelle164bcfd2011-08-14 20:56:34 +020059#endif
Vladimir Serbinenko83f81ca2014-11-09 13:30:50 +010060#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
Alexander Couzens83fc32f2015-04-12 22:28:37 +020061 unsigned long (*write_acpi_tables)(device_t dev, unsigned long start, struct acpi_rsdp *rsdp);
Alexander Couzens5eea4582015-04-12 22:18:55 +020062 void (*acpi_fill_ssdt_generator)(device_t dev);
Alexander Couzensa90dad12015-04-12 21:49:46 +020063 void (*acpi_inject_dsdt_generator)(device_t dev);
Duncan Lauried9af3ce2016-05-08 18:15:25 -070064 const char *(*acpi_name)(device_t dev);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +020065#endif
Eric Biedermana9e632c2004-11-18 22:38:08 +000066 const struct pci_operations *ops_pci;
Duncan Laurieec009682016-06-07 15:38:14 -070067 const struct i2c_bus_operations *ops_i2c_bus;
Furquan Shaikh7606c372017-02-11 10:57:23 -080068 const struct spi_bus_operations *ops_spi_bus;
Eric Biedermana9e632c2004-11-18 22:38:08 +000069 const struct smbus_bus_operations *ops_smbus_bus;
Kyösti Mälkkiaad07472013-07-04 17:17:45 +030070 const struct pci_bus_operations * (*ops_pci_bus)(device_t dev);
Nico Huberdd4715b2013-06-10 22:08:35 +020071 const struct pnp_mode_ops *ops_pnp_mode;
Eric Biederman5899fd82003-04-24 06:25:08 +000072};
Kyösti Mälkkif41cb4e2014-06-30 13:15:42 +030073
Edward O'Callaghan530355d2014-10-31 08:31:44 +110074/**
75 * Standard device operations function pointers shims.
76 */
77static inline void device_noop(struct device *dev) {}
78#define DEVICE_NOOP device_noop
79
Kyösti Mälkkief844012013-06-25 23:17:43 +030080#endif /* ! __SIMPLE_DEVICE__ */
Eric Biederman5899fd82003-04-24 06:25:08 +000081
82
Eric Biedermane9a271e32003-09-02 03:36:25 +000083struct bus {
Stefan Reinauer57879c92012-07-31 16:47:25 -070084
Lee Leahy6d71a432017-03-07 15:24:16 -080085 ROMSTAGE_CONST struct device *dev; /* This bridge device */
86 ROMSTAGE_CONST struct device *children; /* devices behind this bridge */
87 ROMSTAGE_CONST struct bus *next; /* The next bridge on this device */
Lee Leahy0ca2a062017-03-06 18:01:04 -080088 unsigned int bridge_ctrl; /* Bridge control register */
Kyösti Mälkki33452402015-02-23 06:58:26 +020089 uint16_t bridge_cmd; /* Bridge command register */
Myles Watson894a3472010-06-09 22:41:35 +000090 unsigned char link_num; /* The index of this link */
Lee Leahy84d20d02017-03-07 15:00:18 -080091 uint16_t secondary; /* secondary bus number */
Yinghai Lud4b278c2006-10-04 20:46:15 +000092 uint16_t subordinate; /* max subordinate bus number */
Eric Biedermane9a271e32003-09-02 03:36:25 +000093 unsigned char cap; /* PCi capability offset */
Kyösti Mälkki77521472015-02-22 11:38:49 +020094 uint32_t hcdn_reg; /* For HyperTransport link */
95
Lee Leahy0ca2a062017-03-06 18:01:04 -080096 unsigned int reset_needed : 1;
97 unsigned int disable_relaxed_ordering : 1;
98 unsigned int ht_link_up : 1;
Eric Biedermane9a271e32003-09-02 03:36:25 +000099};
100
Eric Biederman5899fd82003-04-24 06:25:08 +0000101/*
Eric Biederman2c018fb2003-07-21 20:13:45 +0000102 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +0000103 * combination:
104 */
105
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200106struct pci_irq_info {
107 unsigned int ioapic_irq_pin;
108 unsigned int ioapic_src_pin;
109 unsigned int ioapic_dst_id;
110 unsigned int ioapic_flags;
111};
112
Eric Biederman5899fd82003-04-24 06:25:08 +0000113struct device {
Lee Leahy6d71a432017-03-07 15:24:16 -0800114 ROMSTAGE_CONST struct bus *bus; /* bus this device is on, for bridge
Li-Ta Lo04930692004-11-25 17:37:19 +0000115 * devices, it is the up stream bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700116
Lee Leahy6d71a432017-03-07 15:24:16 -0800117 ROMSTAGE_CONST struct device *sibling; /* next device on this bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700118
Lee Leahy6d71a432017-03-07 15:24:16 -0800119 ROMSTAGE_CONST struct device *next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +0000120
Eric Biedermane9a271e32003-09-02 03:36:25 +0000121 struct device_path path;
Lee Leahy0ca2a062017-03-06 18:01:04 -0800122 unsigned int vendor;
123 unsigned int device;
Sven Schnelleb8269e22011-03-01 21:51:29 +0000124 u16 subsystem_vendor;
125 u16 subsystem_device;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000126 unsigned int class; /* 3 bytes: (base, sub, prog-if) */
Eric Biederman5899fd82003-04-24 06:25:08 +0000127 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000128 unsigned int enabled : 1; /* set if we should enable the device */
Eric Biederman992cd002004-10-14 21:10:23 +0000129 unsigned int initialized : 1; /* set if we have initialized the device */
Eric Biedermandbec2d42004-10-21 10:44:08 +0000130 unsigned int on_mainboard : 1;
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200131 struct pci_irq_info pci_irq_info[4];
Myles Watson29cc9ed2009-07-02 18:56:24 +0000132 u8 command;
Eric Biederman5899fd82003-04-24 06:25:08 +0000133
Li-Ta Lo85e76c62004-12-27 17:53:45 +0000134 /* Base registers for this device. I/O, MEM and Expansion ROM */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700135 ROMSTAGE_CONST struct resource *resource_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000136
Myles Watson29cc9ed2009-07-02 18:56:24 +0000137 /* links are (downstream) buses attached to the device, usually a leaf
Myles Watsonc25cc112010-05-21 14:33:48 +0000138 * device with no children has 0 buses attached and a bridge has 1 bus
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000139 */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700140 ROMSTAGE_CONST struct bus *link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000141
Eric Biederman5899fd82003-04-24 06:25:08 +0000142 struct device_operations *ops;
Stefan Reinauera675d492012-08-07 14:50:47 -0700143#ifndef __PRE_RAM__
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;
Stefan Reinauera675d492012-08-07 14:50:47 -0700146#endif
Stefan Reinauer57879c92012-07-31 16:47:25 -0700147 ROMSTAGE_CONST void *chip_info;
Eric Biederman5899fd82003-04-24 06:25:08 +0000148};
149
Myles Watson3fe6b702009-10-09 20:13:43 +0000150/**
151 * This is the root of the device tree. The device tree is defined in the
152 * static.c file and is generated by the config tool at compile time.
153 */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700154extern ROMSTAGE_CONST struct device dev_root;
Eric Biederman5899fd82003-04-24 06:25:08 +0000155
Kyösti Mälkkief844012013-06-25 23:17:43 +0300156#ifndef __SIMPLE_DEVICE__
157
158extern struct device *all_devices; /* list of 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
Kyösti Mälkki5f098072013-10-18 11:02:46 +0300164#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 */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000171device_t 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);
Kyösti Mälkki7baadac2012-10-07 14:57:15 +0200185const char *dev_name(device_t dev);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000186const char *dev_path(device_t dev);
Duncan Laurie5f5d9142013-06-10 09:59:17 -0700187u32 dev_path_encode(device_t dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000188const char *bus_path(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000189void dev_set_enabled(device_t dev, int enable);
190void disable_children(struct bus *bus);
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 */
Eric Biederman992cd002004-10-14 21:10:23 +0000196device_t find_dev_path(struct bus *parent, struct device_path *path);
Eric Biederman83b991a2003-10-11 06:20:25 +0000197device_t alloc_find_dev(struct bus *parent, struct device_path *path);
Lee Leahy746d4af2017-03-07 15:31:49 -0800198device_t dev_find_device(u16 vendor, u16 device, device_t from);
199device_t dev_find_class(unsigned int class, device_t from);
Subrata Banikfe204fe2016-12-06 18:06:30 +0530200device_t dev_find_path(device_t prev_match, enum device_path_type path_type);
Lee Leahy746d4af2017-03-07 15:31:49 -0800201device_t dev_find_slot(unsigned int bus, unsigned int devfn);
202device_t dev_find_slot_on_smbus(unsigned int bus, unsigned int addr);
Vladimir Serbinenkob33384a2014-02-08 18:58:39 +0100203device_t dev_find_slot_pnp(u16 port, u16 device);
Lee Leahy0ca2a062017-03-06 18:01:04 -0800204device_t dev_find_lapic(unsigned int apic_id);
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700205int dev_count_cpu(void);
arch import user (historical)98d0d302005-07-06 17:13:46 +0000206
Lee Leahy0ca2a062017-03-06 18:01:04 -0800207device_t add_cpu_device(struct bus *cpu_bus, unsigned int apic_id, int enabled);
208void set_cpu_topology(device_t cpu, unsigned int node, unsigned int package, unsigned int core, unsigned int thread);
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300209
210#define amd_cpu_topology(cpu, node, core) \
211 set_cpu_topology(cpu, node, 0, core, 0)
212
213#define intel_cpu_topology(cpu, package, core, thread) \
214 set_cpu_topology(cpu, 0, package, core, thread)
215
Myles Watsonbb3d8122009-05-11 22:45:35 +0000216/* Debug functions */
Lee Leahy6d71a432017-03-07 15:24:16 -0800217void print_resource_tree(struct device *root, int debug_level,
Myles Watsonbb3d8122009-05-11 22:45:35 +0000218 const char *msg);
Kyösti Mälkki3d3c8c32016-08-15 10:04:21 +0300219void show_devs_tree(struct device *dev, int debug_level, int depth);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000220void show_devs_subtree(struct device *root, int debug_level, const char *msg);
221void show_all_devs(int debug_level, const char *msg);
Maciej Pijankaea921852009-10-27 14:29:29 +0000222void show_all_devs_tree(int debug_level, const char *msg);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000223void show_one_resource(int debug_level, struct device *dev,
224 struct resource *resource, const char *comment);
Lee Leahy6d71a432017-03-07 15:24:16 -0800225void show_all_devs_resources(int debug_level, const char *msg);
Eric Biederman5899fd82003-04-24 06:25:08 +0000226
Stefan Reinauer14e22772010-04-27 06:56:47 +0000227/* Rounding for boundaries.
Myles Watsonbb3d8122009-05-11 22:45:35 +0000228 * Due to some chip bugs, go ahead and round IO to 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000229 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000230#define DEVICE_IO_ALIGN 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000231#define DEVICE_MEM_ALIGN 4096
232
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000233extern struct device_operations default_dev_ops_root;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000234void pci_domain_read_resources(struct device *dev);
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200235void pci_domain_scan_bus(struct device *dev);
Uwe Hermann4b42a622010-10-11 19:36:13 +0000236
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300237void fixed_mem_resource(device_t dev, unsigned long index,
238 unsigned long basek, unsigned long sizek, unsigned long type);
239
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200240void mmconf_resource_init(struct resource *res, resource_t base, int buses);
241void mmconf_resource(struct device *dev, unsigned long index);
242
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200243void scan_smbus(device_t bus);
Furquan Shaikh4e084792017-02-13 13:22:19 -0800244void scan_generic_bus(device_t bus);
Duncan Laurie4650f5b2016-05-07 20:01:34 -0700245void scan_static_bus(device_t bus);
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200246void scan_lpc_bus(device_t bus);
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300247
248/* It is the caller's responsibility to adjust regions such that ram_resource()
249 * and mmio_resource() do not overlap.
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300250 */
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300251#define ram_resource(dev, idx, basek, sizek) \
252 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_CACHEABLE)
253
Aaron Durbinc9650762013-03-22 22:03:09 -0500254#define reserved_ram_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500255 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_CACHEABLE | IORESOURCE_RESERVE)
Aaron Durbinc9650762013-03-22 22:03:09 -0500256
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300257#define bad_ram_resource(dev, idx, basek, sizek) \
Aaron Durbinc9650762013-03-22 22:03:09 -0500258 reserved_ram_resource((dev), (idx), (basek), (sizek))
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300259
260#define uma_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500261 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300262
263#define mmio_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500264 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300265
Uwe Hermann4b42a622010-10-11 19:36:13 +0000266void tolm_test(void *gp, struct device *dev, struct resource *new);
267u32 find_pci_tolm(struct bus *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300268
269#else /* vv __SIMPLE_DEVICE__ vv */
270
Lee Leahy746d4af2017-03-07 15:31:49 -0800271ROMSTAGE_CONST struct device *dev_find_slot(unsigned int bus,
Stefan Reinauer57879c92012-07-31 16:47:25 -0700272 unsigned int devfn);
Martin Roth16d953a2014-05-12 17:38:59 -0600273ROMSTAGE_CONST struct device *dev_find_next_pci_device(
274 ROMSTAGE_CONST struct device *previous_dev);
Lee Leahy746d4af2017-03-07 15:31:49 -0800275ROMSTAGE_CONST struct device *dev_find_slot_on_smbus(unsigned int bus,
Stefan Reinauer57879c92012-07-31 16:47:25 -0700276 unsigned int addr);
Lee Leahy6d71a432017-03-07 15:24:16 -0800277ROMSTAGE_CONST struct device *dev_find_slot_pnp(u16 port, u16 device);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300278
Stefan Reinauer57879c92012-07-31 16:47:25 -0700279#endif
Kyösti Mälkkief844012013-06-25 23:17:43 +0300280
Edward O'Callaghan5e196502014-06-24 17:35:02 +1000281#endif /* !defined(__ROMCC__) */
282
Eric Biederman5899fd82003-04-24 06:25:08 +0000283#endif /* DEVICE_H */