- Moved hlt() to it's own header.
[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 struct device;
9 typedef struct device * device_t;
10
11 struct device_operations {
12         void (*read_resources)(device_t dev);
13         void (*set_resources)(device_t dev);
14         void (*enable_resources)(device_t dev);
15         void (*init)(device_t dev);
16         unsigned int (*scan_bus)(device_t  bus, unsigned int max);
17         void (*enable)(device_t dev);
18 };
19
20
21 struct bus {
22         device_t        dev;            /* This bridge device */
23         device_t        children;       /* devices behind this bridge */
24         unsigned        bridge_ctrl;    /* Bridge control register */
25         unsigned char   link;           /* The index of this link */
26         unsigned char   secondary;      /* secondary bus number */
27         unsigned char   subordinate;    /* max subordinate bus number */
28         unsigned char   cap;            /* PCi capability offset */
29 };
30
31 #define MAX_RESOURCES 8
32 #define MAX_LINKS     3
33 /*
34  * There is one device structure for each slot-number/function-number
35  * combination:
36  */
37
38 struct chip;
39 struct device {
40         struct bus *    bus;            /* bus this device is on */
41         device_t        sibling;        /* next device on this bus */
42         device_t        next;           /* chain of all devices */
43
44         struct device_path path;
45         unsigned short  vendor;
46         unsigned short  device;
47         unsigned int    class;          /* 3 bytes: (base,sub,prog-if) */
48         unsigned int    hdr_type;       /* PCI header type */
49         unsigned int    enable : 1;     /* set if we should enable the device */
50
51         uint8_t command;
52
53         /* Base registers for this device, can be adjusted by
54          * pcibios_fixup() as necessary.
55          */
56         struct resource resource[MAX_RESOURCES];
57         unsigned int resources;
58
59         struct bus link[MAX_LINKS];
60         unsigned int links;
61
62         unsigned long rom_address;
63         struct device_operations *ops;
64         struct chip *chip;
65 };
66
67 extern struct device    dev_root;       /* root bus */
68 extern struct device    *all_devices;   /* list of all devices */
69
70
71 /* Generic device interface functions */
72 extern device_t alloc_dev(struct bus *parent, struct device_path *path);
73 extern void dev_enumerate(void);
74 extern void dev_configure(void);
75 extern void dev_enable(void);
76 extern void dev_initialize(void);
77
78 /* Generic device helper functions */
79 extern void compute_allocate_resource(struct bus *bus, struct resource *bridge,
80         unsigned long type_mask, unsigned long type);
81 extern void assign_resources(struct bus *bus);
82 extern void enable_resources(struct device *dev);
83 extern void enumerate_static_device(void);
84 extern const char *dev_path(device_t dev);
85 extern void compact_resources(device_t dev);
86 extern struct resource *get_resource(device_t dev, unsigned index);
87
88 /* Helper functions */
89 device_t alloc_find_dev(struct bus *parent, struct device_path *path);
90 device_t dev_find_device (unsigned int vendor, unsigned int device, device_t from);
91 device_t dev_find_class (unsigned int class, device_t from);
92 device_t dev_find_slot (unsigned int bus, unsigned int devfn);
93
94 /* Rounding for boundaries. 
95  * Due to some chip bugs, go ahead and roung IO to 16
96  */
97 #define DEVICE_IO_ALIGN 16 
98 #define DEVICE_MEM_ALIGN 4096
99
100 struct device_operations default_dev_ops_root;
101 extern void root_dev_read_resources(device_t dev);
102 extern void root_dev_set_resources(device_t dev);
103 extern unsigned int walk_static_devices(device_t bus, unsigned int max);
104 extern void enable_childrens_resources(device_t dev);
105 extern unsigned int root_dev_scan_pci_bus(device_t root, unsigned int max);
106
107 #endif /* DEVICE_H */