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