blob: 1515b45e0276a2b36d27ce1df10dbb004ff30a11 [file] [log] [blame]
Eric Biederman5899fd82003-04-24 06:25:08 +00001#ifndef DEVICE_H
2#define DEVICE_H
3
Eric Biederman9bdb4602003-09-01 23:17:58 +00004#include <stdint.h>
Eric Biederman5899fd82003-04-24 06:25:08 +00005#include <device/resource.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +00006#include <device/path.h>
Eric Biederman5899fd82003-04-24 06:25:08 +00007
Eric Biederman7003ba42004-10-16 06:20:29 +00008
Eric Biederman5899fd82003-04-24 06:25:08 +00009struct device;
Eric Biederman7a5416a2003-06-12 19:23:51 +000010typedef struct device * device_t;
Eric Biederman992cd002004-10-14 21:10:23 +000011struct pci_operations;
Eric Biedermana9e632c2004-11-18 22:38:08 +000012struct pci_bus_operations;
Eric Biederman992cd002004-10-14 21:10:23 +000013struct smbus_bus_operations;
Eric Biederman7a5416a2003-06-12 19:23:51 +000014
Eric Biederman7003ba42004-10-16 06:20:29 +000015/* Chip operations */
16struct chip_operations {
Eric Biederman7003ba42004-10-16 06:20:29 +000017 void (*enable_dev)(struct device *dev);
Myles Watson6e235762009-09-29 14:56:15 +000018 const char *name;
Sven Schnelle164bcfd2011-08-14 20:56:34 +020019#if CONFIG_GENERATE_SMBIOS_TABLES
20 int (*get_smbios_data)(device_t dev, int *handle, unsigned long *current);
21#endif
Eric Biederman7003ba42004-10-16 06:20:29 +000022};
23
Eric Biederman018d8dd2004-11-04 11:04:33 +000024#define CHIP_NAME(X) .name = X,
Eric Biederman018d8dd2004-11-04 11:04:33 +000025
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000026struct bus;
27
Eric Biederman5899fd82003-04-24 06:25:08 +000028struct device_operations {
Eric Biederman7a5416a2003-06-12 19:23:51 +000029 void (*read_resources)(device_t dev);
30 void (*set_resources)(device_t dev);
Eric Biedermane9a271e32003-09-02 03:36:25 +000031 void (*enable_resources)(device_t dev);
Eric Biederman7a5416a2003-06-12 19:23:51 +000032 void (*init)(device_t dev);
Eric Biedermana9e632c2004-11-18 22:38:08 +000033 unsigned int (*scan_bus)(device_t bus, unsigned int max);
Eric Biederman4086d162003-07-17 03:26:03 +000034 void (*enable)(device_t dev);
Patrick Georgi5869fa22012-07-20 12:29:33 +020035 void (*disable)(device_t dev);
Yinghai Lu7213d0f2004-12-03 03:39:04 +000036 void (*set_link)(device_t dev, unsigned int link);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000037 void (*reset_bus)(struct bus *bus);
Sven Schnelle164bcfd2011-08-14 20:56:34 +020038#if CONFIG_GENERATE_SMBIOS_TABLES
39 int (*get_smbios_data)(device_t dev, int *handle, unsigned long *current);
40#endif
Eric Biedermana9e632c2004-11-18 22:38:08 +000041 const struct pci_operations *ops_pci;
42 const struct smbus_bus_operations *ops_smbus_bus;
43 const struct pci_bus_operations *ops_pci_bus;
Eric Biederman5899fd82003-04-24 06:25:08 +000044};
45
46
Eric Biedermane9a271e32003-09-02 03:36:25 +000047struct bus {
48 device_t dev; /* This bridge device */
49 device_t children; /* devices behind this bridge */
Myles Watson894a3472010-06-09 22:41:35 +000050 struct bus *next; /* The next bridge on this device */
Eric Biedermane9a271e32003-09-02 03:36:25 +000051 unsigned bridge_ctrl; /* Bridge control register */
Myles Watson894a3472010-06-09 22:41:35 +000052 unsigned char link_num; /* The index of this link */
Yinghai Lud4b278c2006-10-04 20:46:15 +000053 uint16_t secondary; /* secondary bus number */
54 uint16_t subordinate; /* max subordinate bus number */
Eric Biedermane9a271e32003-09-02 03:36:25 +000055 unsigned char cap; /* PCi capability offset */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000056 unsigned reset_needed : 1;
57 unsigned disable_relaxed_ordering : 1;
Eric Biedermane9a271e32003-09-02 03:36:25 +000058};
59
Eric Biederman5899fd82003-04-24 06:25:08 +000060/*
Eric Biederman2c018fb2003-07-21 20:13:45 +000061 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +000062 * combination:
63 */
64
Sven Schnelle0fa50a12012-06-21 22:19:48 +020065struct pci_irq_info {
66 unsigned int ioapic_irq_pin;
67 unsigned int ioapic_src_pin;
68 unsigned int ioapic_dst_id;
69 unsigned int ioapic_flags;
70};
71
Eric Biederman5899fd82003-04-24 06:25:08 +000072struct device {
Li-Ta Lo04930692004-11-25 17:37:19 +000073 struct bus * bus; /* bus this device is on, for bridge
74 * devices, it is the up stream bus */
Eric Biedermane9a271e32003-09-02 03:36:25 +000075 device_t sibling; /* next device on this bus */
76 device_t next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +000077
Eric Biedermane9a271e32003-09-02 03:36:25 +000078 struct device_path path;
Eric Biedermanb78c1972004-10-14 20:54:17 +000079 unsigned vendor;
80 unsigned device;
Sven Schnelleb8269e22011-03-01 21:51:29 +000081 u16 subsystem_vendor;
82 u16 subsystem_device;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000083 unsigned int class; /* 3 bytes: (base, sub, prog-if) */
Eric Biederman5899fd82003-04-24 06:25:08 +000084 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +000085 unsigned int enabled : 1; /* set if we should enable the device */
Eric Biederman992cd002004-10-14 21:10:23 +000086 unsigned int initialized : 1; /* set if we have initialized the device */
Eric Biedermandbec2d42004-10-21 10:44:08 +000087 unsigned int on_mainboard : 1;
Sven Schnelle0fa50a12012-06-21 22:19:48 +020088 struct pci_irq_info pci_irq_info[4];
Myles Watson29cc9ed2009-07-02 18:56:24 +000089 u8 command;
Eric Biederman5899fd82003-04-24 06:25:08 +000090
Li-Ta Lo85e76c62004-12-27 17:53:45 +000091 /* Base registers for this device. I/O, MEM and Expansion ROM */
Myles Watsonc25cc112010-05-21 14:33:48 +000092 struct resource *resource_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +000093
Myles Watson29cc9ed2009-07-02 18:56:24 +000094 /* links are (downstream) buses attached to the device, usually a leaf
Myles Watsonc25cc112010-05-21 14:33:48 +000095 * device with no children has 0 buses attached and a bridge has 1 bus
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000096 */
Myles Watson894a3472010-06-09 22:41:35 +000097 struct bus *link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +000098
Eric Biederman5899fd82003-04-24 06:25:08 +000099 struct device_operations *ops;
Uwe Hermann312673c2009-10-27 21:49:33 +0000100 const struct chip_operations *chip_ops;
Eric Biederman216525d2004-10-16 02:48:37 +0000101 void *chip_info;
Eric Biederman5899fd82003-04-24 06:25:08 +0000102};
103
Myles Watson3fe6b702009-10-09 20:13:43 +0000104/**
105 * This is the root of the device tree. The device tree is defined in the
106 * static.c file and is generated by the config tool at compile time.
107 */
108extern struct device dev_root;
Eric Biederman5899fd82003-04-24 06:25:08 +0000109extern struct device *all_devices; /* list of all devices */
110
Myles Watsonc25cc112010-05-21 14:33:48 +0000111extern struct resource *free_resources;
Myles Watson894a3472010-06-09 22:41:35 +0000112extern struct bus *free_links;
Eric Biederman5899fd82003-04-24 06:25:08 +0000113
Kyösti Mälkkicc55b9b2012-07-11 07:55:21 +0300114/* IGD UMA memory */
115void setup_uma_memory(void);
116extern uint64_t uma_memory_base;
117extern uint64_t uma_memory_size;
118
Eric Biederman5899fd82003-04-24 06:25:08 +0000119/* Generic device interface functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000120device_t alloc_dev(struct bus *parent, struct device_path *path);
121void dev_enumerate(void);
122void dev_configure(void);
123void dev_enable(void);
124void dev_initialize(void);
125void dev_optimize(void);
Eric Biederman5899fd82003-04-24 06:25:08 +0000126
127/* Generic device helper functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000128int reset_bus(struct bus *bus);
129unsigned int scan_bus(struct device *bus, unsigned int max);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000130void assign_resources(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000131void enumerate_static_device(void);
132void enumerate_static_devices(void);
133const char *dev_path(device_t dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000134const char *bus_path(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000135void dev_set_enabled(device_t dev, int enable);
136void disable_children(struct bus *bus);
Eric Biederman5899fd82003-04-24 06:25:08 +0000137
Myles Watsonb0259112010-03-05 18:27:19 +0000138/* Option ROM helper functions */
139void run_bios(struct device *dev, unsigned long addr);
140
Eric Biederman5899fd82003-04-24 06:25:08 +0000141/* Helper functions */
Eric Biederman992cd002004-10-14 21:10:23 +0000142device_t find_dev_path(struct bus *parent, struct device_path *path);
Eric Biederman83b991a2003-10-11 06:20:25 +0000143device_t alloc_find_dev(struct bus *parent, struct device_path *path);
Uwe Hermanne4870472010-11-04 23:23:47 +0000144device_t dev_find_device (u16 vendor, u16 device, device_t from);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000145device_t dev_find_class (unsigned int class, device_t from);
146device_t dev_find_slot (unsigned int bus, unsigned int devfn);
arch import user (historical)98d0d302005-07-06 17:13:46 +0000147device_t dev_find_slot_on_smbus (unsigned int bus, unsigned int addr);
Duncan Laurie6f88a6e2011-07-18 10:41:36 -0700148device_t dev_find_lapic(unsigned apic_id);
Stefan Reinauerdc8448fd2012-03-30 13:52:58 -0700149int dev_count_cpu(void);
arch import user (historical)98d0d302005-07-06 17:13:46 +0000150
Myles Watsonbb3d8122009-05-11 22:45:35 +0000151/* Debug functions */
Myles Watsonbb3d8122009-05-11 22:45:35 +0000152void print_resource_tree(struct device * root, int debug_level,
153 const char *msg);
154void show_devs_tree(struct device *dev, int debug_level, int depth, int linknum);
155void show_devs_subtree(struct device *root, int debug_level, const char *msg);
156void show_all_devs(int debug_level, const char *msg);
Maciej Pijankaea921852009-10-27 14:29:29 +0000157void show_all_devs_tree(int debug_level, const char *msg);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000158void show_one_resource(int debug_level, struct device *dev,
159 struct resource *resource, const char *comment);
160void show_all_devs_resources(int debug_level, const char* msg);
Eric Biederman5899fd82003-04-24 06:25:08 +0000161
Stefan Reinauer14e22772010-04-27 06:56:47 +0000162/* Rounding for boundaries.
Myles Watsonbb3d8122009-05-11 22:45:35 +0000163 * Due to some chip bugs, go ahead and round IO to 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000164 */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000165#define DEVICE_IO_ALIGN 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000166#define DEVICE_MEM_ALIGN 4096
167
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000168extern struct device_operations default_dev_ops_root;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000169void pci_domain_read_resources(struct device *dev);
170unsigned int pci_domain_scan_bus(struct device *dev, unsigned int max);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000171unsigned int scan_static_bus(device_t bus, unsigned int max);
Uwe Hermann4b42a622010-10-11 19:36:13 +0000172
Kyösti Mälkkiecf1ed42012-07-27 08:37:12 +0300173void fixed_mem_resource(device_t dev, unsigned long index,
174 unsigned long basek, unsigned long sizek, unsigned long type);
175
176#define ram_resource(dev, idx, basek, sizek) \
177 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_CACHEABLE)
178
179#define bad_ram_resource(dev, idx, basek, sizek) \
180 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE | IORESOURCE_CACHEABLE )
181
182#define uma_resource(dev, idx, basek, sizek) \
183 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE | IORESOURCE_UMA_FB)
184
185#define mmio_resource(dev, idx, basek, sizek) \
186 fixed_mem_resource(dev, idx, basek, sizek, IORESOURCE_RESERVE)
187
Uwe Hermann4b42a622010-10-11 19:36:13 +0000188void tolm_test(void *gp, struct device *dev, struct resource *new);
189u32 find_pci_tolm(struct bus *bus);
190
Eric Biederman5899fd82003-04-24 06:25:08 +0000191#endif /* DEVICE_H */