blob: df8fb5f6d5564e4d06bde07c46a040b2fcdb0a09 [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;
Eric Biederman7003ba42004-10-16 06:20:29 +000019};
20
Eric Biederman018d8dd2004-11-04 11:04:33 +000021#define CHIP_NAME(X) .name = X,
Eric Biederman018d8dd2004-11-04 11:04:33 +000022
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000023struct bus;
24
Eric Biederman5899fd82003-04-24 06:25:08 +000025struct device_operations {
Eric Biederman7a5416a2003-06-12 19:23:51 +000026 void (*read_resources)(device_t dev);
27 void (*set_resources)(device_t dev);
Eric Biedermane9a271e32003-09-02 03:36:25 +000028 void (*enable_resources)(device_t dev);
Eric Biederman7a5416a2003-06-12 19:23:51 +000029 void (*init)(device_t dev);
Eric Biedermana9e632c2004-11-18 22:38:08 +000030 unsigned int (*scan_bus)(device_t bus, unsigned int max);
Eric Biederman4086d162003-07-17 03:26:03 +000031 void (*enable)(device_t dev);
Yinghai Lu7213d0f2004-12-03 03:39:04 +000032 void (*set_link)(device_t dev, unsigned int link);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000033 void (*reset_bus)(struct bus *bus);
Eric Biedermana9e632c2004-11-18 22:38:08 +000034 const struct pci_operations *ops_pci;
35 const struct smbus_bus_operations *ops_smbus_bus;
36 const struct pci_bus_operations *ops_pci_bus;
Eric Biederman5899fd82003-04-24 06:25:08 +000037};
38
39
Eric Biedermane9a271e32003-09-02 03:36:25 +000040struct bus {
41 device_t dev; /* This bridge device */
42 device_t children; /* devices behind this bridge */
43 unsigned bridge_ctrl; /* Bridge control register */
44 unsigned char link; /* The index of this link */
Yinghai Lud4b278c2006-10-04 20:46:15 +000045 uint16_t secondary; /* secondary bus number */
46 uint16_t subordinate; /* max subordinate bus number */
Eric Biedermane9a271e32003-09-02 03:36:25 +000047 unsigned char cap; /* PCi capability offset */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000048 unsigned reset_needed : 1;
49 unsigned disable_relaxed_ordering : 1;
Eric Biedermane9a271e32003-09-02 03:36:25 +000050};
51
Florentin Demetrescu10aca3c2008-02-01 23:14:40 +000052#define MAX_RESOURCES 24
Yinghai Lu7213d0f2004-12-03 03:39:04 +000053#define MAX_LINKS 8
Eric Biederman5899fd82003-04-24 06:25:08 +000054/*
Eric Biederman2c018fb2003-07-21 20:13:45 +000055 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +000056 * combination:
57 */
58
59struct device {
Li-Ta Lo04930692004-11-25 17:37:19 +000060 struct bus * bus; /* bus this device is on, for bridge
61 * devices, it is the up stream bus */
Eric Biedermane9a271e32003-09-02 03:36:25 +000062 device_t sibling; /* next device on this bus */
63 device_t next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +000064
Eric Biedermane9a271e32003-09-02 03:36:25 +000065 struct device_path path;
Eric Biedermanb78c1972004-10-14 20:54:17 +000066 unsigned vendor;
67 unsigned device;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000068 unsigned int class; /* 3 bytes: (base, sub, prog-if) */
Eric Biederman5899fd82003-04-24 06:25:08 +000069 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +000070 unsigned int enabled : 1; /* set if we should enable the device */
Eric Biederman992cd002004-10-14 21:10:23 +000071 unsigned int initialized : 1; /* set if we have initialized the device */
Eric Biedermandbec2d42004-10-21 10:44:08 +000072 unsigned int on_mainboard : 1;
Eric Biederman5899fd82003-04-24 06:25:08 +000073
Myles Watson29cc9ed2009-07-02 18:56:24 +000074 u8 command;
Eric Biederman5899fd82003-04-24 06:25:08 +000075
Li-Ta Lo85e76c62004-12-27 17:53:45 +000076 /* Base registers for this device. I/O, MEM and Expansion ROM */
Eric Biederman5899fd82003-04-24 06:25:08 +000077 struct resource resource[MAX_RESOURCES];
78 unsigned int resources;
Eric Biedermane9a271e32003-09-02 03:36:25 +000079
Myles Watson29cc9ed2009-07-02 18:56:24 +000080 /* links are (downstream) buses attached to the device, usually a leaf
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000081 * device with no children have 0 buses attached and a bridge has 1 bus
82 */
Eric Biedermane9a271e32003-09-02 03:36:25 +000083 struct bus link[MAX_LINKS];
Li-Ta Lo04930692004-11-25 17:37:19 +000084 /* number of buses attached to the device */
Eric Biedermane9a271e32003-09-02 03:36:25 +000085 unsigned int links;
86
Eric Biederman5899fd82003-04-24 06:25:08 +000087 struct device_operations *ops;
Uwe Hermann312673c2009-10-27 21:49:33 +000088 const struct chip_operations *chip_ops;
Eric Biederman216525d2004-10-16 02:48:37 +000089 void *chip_info;
Eric Biederman5899fd82003-04-24 06:25:08 +000090};
91
Myles Watson3fe6b702009-10-09 20:13:43 +000092/**
93 * This is the root of the device tree. The device tree is defined in the
94 * static.c file and is generated by the config tool at compile time.
95 */
96extern struct device dev_root;
Eric Biederman5899fd82003-04-24 06:25:08 +000097extern struct device *all_devices; /* list of all devices */
98
99
100/* Generic device interface functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000101device_t alloc_dev(struct bus *parent, struct device_path *path);
102void dev_enumerate(void);
103void dev_configure(void);
104void dev_enable(void);
105void dev_initialize(void);
106void dev_optimize(void);
Eric Biederman5899fd82003-04-24 06:25:08 +0000107
108/* Generic device helper functions */
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000109int reset_bus(struct bus *bus);
110unsigned int scan_bus(struct device *bus, unsigned int max);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000111void assign_resources(struct bus *bus);
112void enable_resources(struct device *dev);
113void enumerate_static_device(void);
114void enumerate_static_devices(void);
115const char *dev_path(device_t dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000116const char *bus_path(struct bus *bus);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000117void dev_set_enabled(device_t dev, int enable);
118void disable_children(struct bus *bus);
Eric Biederman5899fd82003-04-24 06:25:08 +0000119
Myles Watsonb0259112010-03-05 18:27:19 +0000120/* Option ROM helper functions */
121void run_bios(struct device *dev, unsigned long addr);
122
Eric Biederman5899fd82003-04-24 06:25:08 +0000123/* Helper functions */
Eric Biederman992cd002004-10-14 21:10:23 +0000124device_t find_dev_path(struct bus *parent, struct device_path *path);
Eric Biederman83b991a2003-10-11 06:20:25 +0000125device_t alloc_find_dev(struct bus *parent, struct device_path *path);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000126device_t dev_find_device (unsigned int vendor, unsigned int device, device_t from);
127device_t dev_find_class (unsigned int class, device_t from);
128device_t dev_find_slot (unsigned int bus, unsigned int devfn);
arch import user (historical)98d0d302005-07-06 17:13:46 +0000129device_t dev_find_slot_on_smbus (unsigned int bus, unsigned int addr);
130
Myles Watsonbb3d8122009-05-11 22:45:35 +0000131/* Debug functions */
Myles Watsonbb3d8122009-05-11 22:45:35 +0000132void print_resource_tree(struct device * root, int debug_level,
133 const char *msg);
134void show_devs_tree(struct device *dev, int debug_level, int depth, int linknum);
135void show_devs_subtree(struct device *root, int debug_level, const char *msg);
136void show_all_devs(int debug_level, const char *msg);
Maciej Pijankaea921852009-10-27 14:29:29 +0000137void show_all_devs_tree(int debug_level, const char *msg);
Myles Watsonbb3d8122009-05-11 22:45:35 +0000138void show_one_resource(int debug_level, struct device *dev,
139 struct resource *resource, const char *comment);
140void show_all_devs_resources(int debug_level, const char* msg);
Eric Biederman5899fd82003-04-24 06:25:08 +0000141
142/* Rounding for boundaries.
Myles Watsonbb3d8122009-05-11 22:45:35 +0000143 * Due to some chip bugs, go ahead and round IO to 16
Eric Biederman5899fd82003-04-24 06:25:08 +0000144 */
145#define DEVICE_IO_ALIGN 16
146#define DEVICE_MEM_ALIGN 4096
147
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000148extern struct device_operations default_dev_ops_root;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000149void pci_domain_read_resources(struct device *dev);
150unsigned int pci_domain_scan_bus(struct device *dev, unsigned int max);
Stefan Reinauerbe7f7982009-03-13 15:42:27 +0000151void root_dev_read_resources(device_t dev);
152void root_dev_set_resources(device_t dev);
153unsigned int scan_static_bus(device_t bus, unsigned int max);
154void enable_childrens_resources(device_t dev);
155void root_dev_enable_resources(device_t dev);
156unsigned int root_dev_scan_bus(device_t root, unsigned int max);
157void root_dev_init(device_t dev);
Maciej Pijankaea921852009-10-27 14:29:29 +0000158void root_dev_reset(struct bus *bus);
Eric Biederman5899fd82003-04-24 06:25:08 +0000159#endif /* DEVICE_H */