- First stab at getting the ppc ports building and working.
[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         const struct pci_operations *ops_pci;
37         const struct smbus_bus_operations *ops_smbus_bus;
38         const struct pci_bus_operations *ops_pci_bus;
39 };
40
41
42 struct bus {
43         device_t        dev;            /* This bridge device */
44         device_t        children;       /* devices behind this bridge */
45         unsigned        bridge_ctrl;    /* Bridge control register */
46         unsigned char   link;           /* The index of this link */
47         unsigned char   secondary;      /* secondary bus number */
48         unsigned char   subordinate;    /* max subordinate bus number */
49         unsigned char   cap;            /* PCi capability offset */
50 };
51
52 #define MAX_RESOURCES 12
53 #define MAX_LINKS     4
54 /*
55  * There is one device structure for each slot-number/function-number
56  * combination:
57  */
58
59 struct device {
60         struct bus *    bus;            /* bus this device is on */
61         device_t        sibling;        /* next device on this bus */
62         device_t        next;           /* chain of all devices */
63
64         struct device_path path;
65         unsigned        vendor;
66         unsigned        device;
67         unsigned int    class;          /* 3 bytes: (base,sub,prog-if) */
68         unsigned int    hdr_type;       /* PCI header type */
69         unsigned int    enabled : 1;    /* set if we should enable the device */
70         unsigned int    initialized : 1; /* set if we have initialized the device */
71         unsigned int    have_resources : 1; /* Set if we have read the devices resources */
72         unsigned int    on_mainboard : 1;
73
74         uint8_t command;
75
76         /* Base registers for this device, can be adjusted by
77          * pcibios_fixup() as necessary.
78          */
79         struct resource resource[MAX_RESOURCES];
80         unsigned int resources;
81
82         struct bus link[MAX_LINKS];
83         unsigned int links;
84
85         unsigned long rom_address;
86         struct device_operations *ops;
87         struct chip_operations *chip_ops;
88         void *chip_info;
89 };
90
91 extern struct device    dev_root;       /* root bus */
92 extern struct device    *all_devices;   /* list of all devices */
93
94
95 /* Generic device interface functions */
96 extern device_t alloc_dev(struct bus *parent, struct device_path *path);
97 extern void dev_enumerate(void);
98 extern void dev_configure(void);
99 extern void dev_enable(void);
100 extern void dev_initialize(void);
101
102 /* Generic device helper functions */
103 extern void compute_allocate_resource(struct bus *bus, struct resource *bridge,
104         unsigned long type_mask, unsigned long type);
105 extern void assign_resources(struct bus *bus);
106 extern void enable_resources(struct device *dev);
107 extern void enumerate_static_device(void);
108 extern void enumerate_static_devices(void);
109 extern const char *dev_path(device_t dev);
110
111 /* Helper functions */
112 device_t find_dev_path(struct bus *parent, struct device_path *path);
113 device_t alloc_find_dev(struct bus *parent, struct device_path *path);
114 device_t dev_find_device (unsigned int vendor, unsigned int device, device_t from);
115 device_t dev_find_class (unsigned int class, device_t from);
116 device_t dev_find_slot (unsigned int bus, unsigned int devfn);
117
118 /* Rounding for boundaries. 
119  * Due to some chip bugs, go ahead and roung IO to 16
120  */
121 #define DEVICE_IO_ALIGN 16 
122 #define DEVICE_MEM_ALIGN 4096
123
124 struct device_operations default_dev_ops_root;
125 extern void root_dev_read_resources(device_t dev);
126 extern void root_dev_set_resources(device_t dev);
127 extern unsigned int scan_static_bus(device_t bus, unsigned int max);
128 extern void enable_childrens_resources(device_t dev);
129 extern void root_dev_enable_resources(device_t dev);
130 extern unsigned int root_dev_scan_bus(device_t root, unsigned int max);
131 extern void root_dev_init(device_t dev);
132
133 #endif /* DEVICE_H */