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