blob: ced278694899da48e80f648da0bee140866a8a23 [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__
Eric Biederman7a5416a2003-06-12 19:23:51 +000020typedef struct device * device_t;
Kyösti Mälkki3f9a62e2013-06-20 20:25:21 +030021typedef u32 pci_devfn_t;
Kyösti Mälkki842f0ba2013-06-20 20:25:21 +030022typedef u32 pnp_devfn_t;
Eric Biederman992cd002004-10-14 21:10:23 +000023struct pci_operations;
Eric Biedermana9e632c2004-11-18 22:38:08 +000024struct pci_bus_operations;
Eric Biederman992cd002004-10-14 21:10:23 +000025struct smbus_bus_operations;
Nico Huberdd4715b2013-06-10 22:08:35 +020026struct pnp_mode_ops;
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
Eric Biederman5899fd82003-04-24 06:25:08 +000042struct device_operations {
Eric Biederman7a5416a2003-06-12 19:23:51 +000043 void (*read_resources)(device_t dev);
44 void (*set_resources)(device_t dev);
Eric Biedermane9a271e32003-09-02 03:36:25 +000045 void (*enable_resources)(device_t dev);
Eric Biederman7a5416a2003-06-12 19:23:51 +000046 void (*init)(device_t dev);
Marc Jones2a58ecd2013-10-29 17:32:00 -060047 void (*final)(device_t dev);
Eric Biedermana9e632c2004-11-18 22:38:08 +000048 unsigned int (*scan_bus)(device_t bus, unsigned int max);
Eric Biederman4086d162003-07-17 03:26:03 +000049 void (*enable)(device_t dev);
Patrick Georgi5869fa22012-07-20 12:29:33 +020050 void (*disable)(device_t dev);
Yinghai Lu7213d0f2004-12-03 03:39:04 +000051 void (*set_link)(device_t dev, unsigned int link);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000052 void (*reset_bus)(struct bus *bus);
Sven Schnelle164bcfd2011-08-14 20:56:34 +020053#if CONFIG_GENERATE_SMBIOS_TABLES
54 int (*get_smbios_data)(device_t dev, int *handle, unsigned long *current);
55#endif
Eric Biedermana9e632c2004-11-18 22:38:08 +000056 const struct pci_operations *ops_pci;
57 const struct smbus_bus_operations *ops_smbus_bus;
Kyösti Mälkkiaad07472013-07-04 17:17:45 +030058 const struct pci_bus_operations * (*ops_pci_bus)(device_t dev);
Nico Huberdd4715b2013-06-10 22:08:35 +020059 const struct pnp_mode_ops *ops_pnp_mode;
Eric Biederman5899fd82003-04-24 06:25:08 +000060};
Kyösti Mälkkief844012013-06-25 23:17:43 +030061#endif /* ! __SIMPLE_DEVICE__ */
Eric Biederman5899fd82003-04-24 06:25:08 +000062
63
Eric Biedermane9a271e32003-09-02 03:36:25 +000064struct bus {
Stefan Reinauer57879c92012-07-31 16:47:25 -070065
66 ROMSTAGE_CONST struct device * dev; /* This bridge device */
67 ROMSTAGE_CONST struct device * children; /* devices behind this bridge */
68 ROMSTAGE_CONST struct bus *next; /* The next bridge on this device */
Eric Biedermane9a271e32003-09-02 03:36:25 +000069 unsigned bridge_ctrl; /* Bridge control register */
Myles Watson894a3472010-06-09 22:41:35 +000070 unsigned char link_num; /* The index of this link */
Yinghai Lud4b278c2006-10-04 20:46:15 +000071 uint16_t secondary; /* secondary bus number */
72 uint16_t subordinate; /* max subordinate bus number */
Eric Biedermane9a271e32003-09-02 03:36:25 +000073 unsigned char cap; /* PCi capability offset */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000074 unsigned reset_needed : 1;
75 unsigned disable_relaxed_ordering : 1;
Eric Biedermane9a271e32003-09-02 03:36:25 +000076};
77
Eric Biederman5899fd82003-04-24 06:25:08 +000078/*
Eric Biederman2c018fb2003-07-21 20:13:45 +000079 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +000080 * combination:
81 */
82
Sven Schnelle0fa50a12012-06-21 22:19:48 +020083struct pci_irq_info {
84 unsigned int ioapic_irq_pin;
85 unsigned int ioapic_src_pin;
86 unsigned int ioapic_dst_id;
87 unsigned int ioapic_flags;
88};
89
Eric Biederman5899fd82003-04-24 06:25:08 +000090struct device {
Stefan Reinauer57879c92012-07-31 16:47:25 -070091 ROMSTAGE_CONST struct bus * bus; /* bus this device is on, for bridge
Li-Ta Lo04930692004-11-25 17:37:19 +000092 * devices, it is the up stream bus */
Stefan Reinauer57879c92012-07-31 16:47:25 -070093
94 ROMSTAGE_CONST struct device * sibling; /* next device on this bus */
95
96 ROMSTAGE_CONST struct device * next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +000097
Eric Biedermane9a271e32003-09-02 03:36:25 +000098 struct device_path path;
Eric Biedermanb78c1972004-10-14 20:54:17 +000099 unsigned vendor;
100 unsigned device;
Sven Schnelleb8269e22011-03-01 21:51:29 +0000101 u16 subsystem_vendor;
102 u16 subsystem_device;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +0000103 unsigned int class; /* 3 bytes: (base, sub, prog-if) */
Eric Biederman5899fd82003-04-24 06:25:08 +0000104 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000105 unsigned int enabled : 1; /* set if we should enable the device */
Eric Biederman992cd002004-10-14 21:10:23 +0000106 unsigned int initialized : 1; /* set if we have initialized the device */
Eric Biedermandbec2d42004-10-21 10:44:08 +0000107 unsigned int on_mainboard : 1;
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200108 struct pci_irq_info pci_irq_info[4];
Myles Watson29cc9ed2009-07-02 18:56:24 +0000109 u8 command;
Eric Biederman5899fd82003-04-24 06:25:08 +0000110
Li-Ta Lo85e76c62004-12-27 17:53:45 +0000111 /* Base registers for this device. I/O, MEM and Expansion ROM */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700112 ROMSTAGE_CONST struct resource *resource_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000113
Myles Watson29cc9ed2009-07-02 18:56:24 +0000114 /* links are (downstream) buses attached to the device, usually a leaf
Myles Watsonc25cc112010-05-21 14:33:48 +0000115 * device with no children has 0 buses attached and a bridge has 1 bus
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000116 */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700117 ROMSTAGE_CONST struct bus *link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000118
Eric Biederman5899fd82003-04-24 06:25:08 +0000119 struct device_operations *ops;
Stefan Reinauera675d492012-08-07 14:50:47 -0700120#ifndef __PRE_RAM__
Nico Huberacd7d952012-07-25 10:33:05 +0200121 struct chip_operations *chip_ops;
Kyösti Mälkki7d54eb82012-10-10 23:14:28 +0300122 const char *name;
Stefan Reinauera675d492012-08-07 14:50:47 -0700123#endif
Stefan Reinauer57879c92012-07-31 16:47:25 -0700124 ROMSTAGE_CONST void *chip_info;
Eric Biederman5899fd82003-04-24 06:25:08 +0000125};
126
Myles Watson3fe6b702009-10-09 20:13:43 +0000127/**
128 * This is the root of the device tree. The device tree is defined in the
129 * static.c file and is generated by the config tool at compile time.
130 */
Stefan Reinauer57879c92012-07-31 16:47:25 -0700131extern ROMSTAGE_CONST struct device dev_root;
Eric Biederman5899fd82003-04-24 06:25:08 +0000132
Kyösti Mälkkief844012013-06-25 23:17:43 +0300133#ifndef __SIMPLE_DEVICE__
134
135extern struct device *all_devices; /* list of all devices */
Myles Watsonc25cc112010-05-21 14:33:48 +0000136extern struct resource *free_resources;
Myles Watson894a3472010-06-09 22:41:35 +0000137extern struct bus *free_links;
Eric Biederman5899fd82003-04-24 06:25:08 +0000138
Kyösti Mälkkia93c3fe2012-10-09 22:28:56 +0300139extern const char mainboard_name[];
140
Kyösti Mälkki5f098072013-10-18 11:02:46 +0300141#if CONFIG_GFXUMA
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300142/* IGD UMA memory */
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300143extern uint64_t uma_memory_base;
144extern uint64_t uma_memory_size;
Kyösti Mälkki5f098072013-10-18 11:02:46 +0300145#endif
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300146
Eric Biederman5899fd82003-04-24 06:25:08 +0000147/* Generic device interface functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000148device_t alloc_dev(struct bus *parent, struct device_path *path);
Nico Huberacd7d952012-07-25 10:33:05 +0200149void dev_initialize_chips(void);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000150void dev_enumerate(void);
151void dev_configure(void);
152void dev_enable(void);
153void dev_initialize(void);
154void dev_optimize(void);
Marc Jones2a58ecd2013-10-29 17:32:00 -0600155void dev_finalize(void);
156void dev_finalize_chips(void);
Eric Biederman5899fd82003-04-24 06:25:08 +0000157
158/* Generic device helper functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000159int reset_bus(struct bus *bus);
160unsigned int scan_bus(struct device *bus, unsigned int max);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000161void assign_resources(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000162void enumerate_static_device(void);
163void enumerate_static_devices(void);
Kyösti Mälkki7baadac2012-10-07 14:57:15 +0200164const char *dev_name(device_t dev);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000165const char *dev_path(device_t dev);
Duncan Laurie5f5d9142013-06-10 09:59:17 -0700166u32 dev_path_encode(device_t dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000167const char *bus_path(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000168void dev_set_enabled(device_t dev, int enable);
169void disable_children(struct bus *bus);
Eric Biederman5899fd82003-04-24 06:25:08 +0000170
Myles Watsonb0259112010-03-05 18:27:19 +0000171/* Option ROM helper functions */
172void run_bios(struct device *dev, unsigned long addr);
173
Eric Biederman5899fd82003-04-24 06:25:08 +0000174/* Helper functions */
Eric Biederman992cd002004-10-14 21:10:23 +0000175device_t find_dev_path(struct bus *parent, struct device_path *path);
Eric Biederman83b991a2003-10-11 06:20:25 +0000176device_t alloc_find_dev(struct bus *parent, struct device_path *path);
Uwe Hermanne4870472010-11-04 23:23:47 +0000177device_t dev_find_device (u16 vendor, u16 device, device_t from);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000178device_t dev_find_class (unsigned int class, device_t from);
179device_t dev_find_slot (unsigned int bus, unsigned int devfn);
arch import user (historical)98d0d302005-07-06 17:13:46 +0000180device_t dev_find_slot_on_smbus (unsigned int bus, unsigned int addr);
Vladimir Serbinenkob33384a2014-02-08 18:58:39 +0100181device_t dev_find_slot_pnp(u16 port, u16 device);
Duncan Laurie6f88a6e2011-07-18 10:41:36 -0700182device_t dev_find_lapic(unsigned apic_id);
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700183int dev_count_cpu(void);
arch import user (historical)98d0d302005-07-06 17:13:46 +0000184
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300185void remap_bsp_lapic(struct bus *cpu_bus);
186device_t add_cpu_device(struct bus *cpu_bus, unsigned apic_id, int enabled);
187void set_cpu_topology(device_t cpu, unsigned node, unsigned package, unsigned core, unsigned thread);
188
189#define amd_cpu_topology(cpu, node, core) \
190 set_cpu_topology(cpu, node, 0, core, 0)
191
192#define intel_cpu_topology(cpu, package, core, thread) \
193 set_cpu_topology(cpu, 0, package, core, thread)
194
Myles Watsonbb3d8122009-05-11 22:45:35 +0000195/* Debug functions */
Myles Watsonbb3d8122009-05-11 22:45:35 +0000196void print_resource_tree(struct device * root, int debug_level,
197 const char *msg);
198void show_devs_tree(struct device *dev, int debug_level, int depth, int linknum);
199void show_devs_subtree(struct device *root, int debug_level, const char *msg);
200void show_all_devs(int debug_level, const char *msg);
Maciej Pijankaea921852009-10-27 14:29:29 +0000201void show_all_devs_tree(int debug_level, const char *msg);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000202void show_one_resource(int debug_level, struct device *dev,
203 struct resource *resource, const char *comment);
204void show_all_devs_resources(int debug_level, const char* msg);
Eric Biederman5899fd82003-04-24 06:25:08 +0000205
Stefan Reinauer14e22772010-04-27 06:56:47 +0000206/* Rounding for boundaries.
Myles Watsonbb3d8122009-05-11 22:45:35 +0000207 * Due to some chip bugs, go ahead and round IO to 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000208 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000209#define DEVICE_IO_ALIGN 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000210#define DEVICE_MEM_ALIGN 4096
211
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000212extern struct device_operations default_dev_ops_root;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000213void pci_domain_read_resources(struct device *dev);
214unsigned int pci_domain_scan_bus(struct device *dev, unsigned int max);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000215unsigned int scan_static_bus(device_t bus, unsigned int max);
Uwe Hermann4b42a622010-10-11 19:36:13 +0000216
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300217void fixed_mem_resource(device_t dev, unsigned long index,
218 unsigned long basek, unsigned long sizek, unsigned long type);
219
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300220
221/* It is the caller's responsibility to adjust regions such that ram_resource()
222 * and mmio_resource() do not overlap.
Kyösti Mälkki1ec5e742012-07-26 23:51:20 +0300223 */
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300224#define ram_resource(dev, idx, basek, sizek) \
225 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_CACHEABLE)
226
Aaron Durbinc9650762013-03-22 22:03:09 -0500227#define reserved_ram_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500228 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_CACHEABLE | IORESOURCE_RESERVE)
Aaron Durbinc9650762013-03-22 22:03:09 -0500229
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300230#define bad_ram_resource(dev, idx, basek, sizek) \
Aaron Durbinc9650762013-03-22 22:03:09 -0500231 reserved_ram_resource((dev), (idx), (basek), (sizek))
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300232
233#define uma_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500234 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300235
236#define mmio_resource(dev, idx, basek, sizek) \
Aaron Durbina7556142013-03-22 22:09:46 -0500237 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE)
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300238
Uwe Hermann4b42a622010-10-11 19:36:13 +0000239void tolm_test(void *gp, struct device *dev, struct resource *new);
240u32 find_pci_tolm(struct bus *bus);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300241
242#else /* vv __SIMPLE_DEVICE__ vv */
243
Stefan Reinauer57879c92012-07-31 16:47:25 -0700244ROMSTAGE_CONST struct device * dev_find_slot (unsigned int bus,
245 unsigned int devfn);
Martin Roth16d953a2014-05-12 17:38:59 -0600246ROMSTAGE_CONST struct device *dev_find_next_pci_device(
247 ROMSTAGE_CONST struct device *previous_dev);
Stefan Reinauer57879c92012-07-31 16:47:25 -0700248ROMSTAGE_CONST struct device * dev_find_slot_on_smbus (unsigned int bus,
249 unsigned int addr);
Kyösti Mälkkief844012013-06-25 23:17:43 +0300250
Stefan Reinauer57879c92012-07-31 16:47:25 -0700251#endif
Kyösti Mälkkief844012013-06-25 23:17:43 +0300252
Edward O'Callaghan5e196502014-06-24 17:35:02 +1000253#endif /* !defined(__ROMCC__) */
254
Eric Biederman5899fd82003-04-24 06:25:08 +0000255#endif /* DEVICE_H */