i2c mux support
[coreboot.git] / src / include / device / device.h
1 #ifndef DEVICE_H
2 #define DEVICE_H
3
4 #include <stdint.h>
5 #include <device/resource.h>
6 #include <device/path.h>
7
8
9 struct device;
10 typedef struct device * device_t;
11 struct pci_operations;
12 struct pci_bus_operations;
13 struct smbus_bus_operations;
14
15 /* Chip operations */
16 struct chip_operations {
17         void (*enable_dev)(struct device *dev);
18 #if CONFIG_CHIP_NAME == 1
19         char *name;
20 #endif
21 };
22
23 #if CONFIG_CHIP_NAME == 1
24 #define CHIP_NAME(X) .name = X,
25 #else
26 #define CHIP_NAME(X)
27 #endif
28
29 struct device_operations {
30         void (*read_resources)(device_t dev);
31         void (*set_resources)(device_t dev);
32         void (*enable_resources)(device_t dev);
33         void (*init)(device_t dev);
34         unsigned int (*scan_bus)(device_t bus, unsigned int max);
35         void (*enable)(device_t dev);
36         void (*set_link)(device_t dev, unsigned int link);
37         const struct pci_operations *ops_pci;
38         const struct smbus_bus_operations *ops_smbus_bus;
39         const struct pci_bus_operations *ops_pci_bus;
40 };
41
42
43 struct bus {
44         device_t        dev;            /* This bridge device */
45         device_t        children;       /* devices behind this bridge */
46         unsigned        bridge_ctrl;    /* Bridge control register */
47         unsigned char   link;           /* The index of this link */
48         unsigned char   secondary;      /* secondary bus number */
49         unsigned char   subordinate;    /* max subordinate bus number */
50         unsigned char   cap;            /* PCi capability offset */
51 };
52
53 #define MAX_RESOURCES 12
54 #define MAX_LINKS    8 
55 /*
56  * There is one device structure for each slot-number/function-number
57  * combination:
58  */
59
60 struct device {
61         struct bus *    bus;            /* bus this device is on, for bridge
62                                          * devices, it is the up stream bus */
63         device_t        sibling;        /* next device on this bus */
64         device_t        next;           /* chain of all devices */
65
66         struct device_path path;
67         unsigned        vendor;
68         unsigned        device;
69         unsigned int    class;          /* 3 bytes: (base,sub,prog-if) */
70         unsigned int    hdr_type;       /* PCI header type */
71         unsigned int    enabled : 1;    /* set if we should enable the device */
72         unsigned int    initialized : 1; /* set if we have initialized the device */
73         unsigned int    have_resources : 1; /* Set if we have read the devices resources */
74         unsigned int    on_mainboard : 1;
75
76         uint8_t command;
77
78         /* Base registers for this device, can be adjusted by
79          * pcibios_fixup() as necessary.
80          */
81         struct resource resource[MAX_RESOURCES];
82         unsigned int resources;
83
84         /* link are (down sream) buses attached to the device, usually a leaf
85          * device with no child have 0 bus attached and a bridge has 1 bus */
86         struct bus link[MAX_LINKS];
87         /* number of buses attached to the device */
88         unsigned int links;
89
90         unsigned long rom_address;
91         struct device_operations *ops;
92         struct chip_operations *chip_ops;
93         void *chip_info;
94 };
95
96 extern struct device    dev_root;       /* root bus */
97 extern struct device    *all_devices;   /* list of all devices */
98
99
100 /* Generic device interface functions */
101 extern device_t alloc_dev(struct bus *parent, struct device_path *path);
102 extern void dev_enumerate(void);
103 extern void dev_configure(void);
104 extern void dev_enable(void);
105 extern void dev_initialize(void);
106
107 /* Generic device helper functions */
108 extern void compute_allocate_resource(struct bus *bus, struct resource *bridge,
109         unsigned long type_mask, unsigned long type);
110 extern void assign_resources(struct bus *bus);
111 extern void enable_resources(struct device *dev);
112 extern void enumerate_static_device(void);
113 extern void enumerate_static_devices(void);
114 extern const char *dev_path(device_t dev);
115
116 /* Helper functions */
117 device_t find_dev_path(struct bus *parent, struct device_path *path);
118 device_t alloc_find_dev(struct bus *parent, struct device_path *path);
119 device_t dev_find_device (unsigned int vendor, unsigned int device, device_t from);
120 device_t dev_find_class (unsigned int class, device_t from);
121 device_t dev_find_slot (unsigned int bus, unsigned int devfn);
122
123 /* Rounding for boundaries. 
124  * Due to some chip bugs, go ahead and roung IO to 16
125  */
126 #define DEVICE_IO_ALIGN 16 
127 #define DEVICE_MEM_ALIGN 4096
128
129 struct device_operations default_dev_ops_root;
130 extern void root_dev_read_resources(device_t dev);
131 extern void root_dev_set_resources(device_t dev);
132 extern unsigned int scan_static_bus(device_t bus, unsigned int max);
133 extern void enable_childrens_resources(device_t dev);
134 extern void root_dev_enable_resources(device_t dev);
135 extern unsigned int root_dev_scan_bus(device_t root, unsigned int max);
136 extern void root_dev_init(device_t dev);
137
138 #endif /* DEVICE_H */