blob: cd232c72c138bc7da04eb97e8dff2b218bd0fc50 [file] [log] [blame]
Eric Biederman5899fd82003-04-24 06:25:08 +00001#ifndef DEVICE_H
2#define DEVICE_H
3
Eric Biederman9bdb4602003-09-01 23:17:58 +00004#include <stdint.h>
Eric Biederman5899fd82003-04-24 06:25:08 +00005#include <device/resource.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +00006#include <device/path.h>
Eric Biederman5899fd82003-04-24 06:25:08 +00007
Eric Biederman7003ba42004-10-16 06:20:29 +00008
Eric Biederman5899fd82003-04-24 06:25:08 +00009struct device;
Eric Biederman7a5416a2003-06-12 19:23:51 +000010typedef struct device * device_t;
Eric Biederman992cd002004-10-14 21:10:23 +000011struct pci_operations;
12struct smbus_bus_operations;
Eric Biederman7a5416a2003-06-12 19:23:51 +000013
Eric Biederman7003ba42004-10-16 06:20:29 +000014/* Chip operations */
15struct chip_operations {
Eric Biederman7003ba42004-10-16 06:20:29 +000016 void (*enable_dev)(struct device *dev);
17};
18
Eric Biederman5899fd82003-04-24 06:25:08 +000019struct device_operations {
Eric Biederman7a5416a2003-06-12 19:23:51 +000020 void (*read_resources)(device_t dev);
21 void (*set_resources)(device_t dev);
Eric Biedermane9a271e32003-09-02 03:36:25 +000022 void (*enable_resources)(device_t dev);
Eric Biederman7a5416a2003-06-12 19:23:51 +000023 void (*init)(device_t dev);
24 unsigned int (*scan_bus)(device_t bus, unsigned int max);
Eric Biederman4086d162003-07-17 03:26:03 +000025 void (*enable)(device_t dev);
Eric Biederman992cd002004-10-14 21:10:23 +000026 struct pci_operations *ops_pci;
27 struct smbus_bus_operations *ops_smbus_bus;
Eric Biederman5899fd82003-04-24 06:25:08 +000028};
29
30
Eric Biedermane9a271e32003-09-02 03:36:25 +000031struct bus {
32 device_t dev; /* This bridge device */
33 device_t children; /* devices behind this bridge */
34 unsigned bridge_ctrl; /* Bridge control register */
35 unsigned char link; /* The index of this link */
36 unsigned char secondary; /* secondary bus number */
37 unsigned char subordinate; /* max subordinate bus number */
38 unsigned char cap; /* PCi capability offset */
39};
40
Eric Biederman992cd002004-10-14 21:10:23 +000041#define MAX_RESOURCES 12
Eric Biederman04da1d32004-10-16 19:58:35 +000042#define MAX_LINKS 4
Eric Biederman5899fd82003-04-24 06:25:08 +000043/*
Eric Biederman2c018fb2003-07-21 20:13:45 +000044 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +000045 * combination:
46 */
47
48struct device {
Eric Biedermane9a271e32003-09-02 03:36:25 +000049 struct bus * bus; /* bus this device is on */
50 device_t sibling; /* next device on this bus */
51 device_t next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +000052
Eric Biedermane9a271e32003-09-02 03:36:25 +000053 struct device_path path;
Eric Biedermanb78c1972004-10-14 20:54:17 +000054 unsigned vendor;
55 unsigned device;
Eric Biederman5899fd82003-04-24 06:25:08 +000056 unsigned int class; /* 3 bytes: (base,sub,prog-if) */
57 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +000058 unsigned int enabled : 1; /* set if we should enable the device */
Eric Biederman992cd002004-10-14 21:10:23 +000059 unsigned int initialized : 1; /* set if we have initialized the device */
60 unsigned int have_resources : 1; /* Set if we have read the devices resources */
Eric Biedermandbec2d42004-10-21 10:44:08 +000061 unsigned int on_mainboard : 1;
Eric Biederman5899fd82003-04-24 06:25:08 +000062
Eric Biederman5899fd82003-04-24 06:25:08 +000063 uint8_t command;
Eric Biederman5899fd82003-04-24 06:25:08 +000064
65 /* Base registers for this device, can be adjusted by
66 * pcibios_fixup() as necessary.
67 */
68 struct resource resource[MAX_RESOURCES];
69 unsigned int resources;
Eric Biedermane9a271e32003-09-02 03:36:25 +000070
71 struct bus link[MAX_LINKS];
72 unsigned int links;
73
Eric Biederman5899fd82003-04-24 06:25:08 +000074 unsigned long rom_address;
75 struct device_operations *ops;
Eric Biederman7003ba42004-10-16 06:20:29 +000076 struct chip_operations *chip_ops;
Eric Biederman216525d2004-10-16 02:48:37 +000077 void *chip_info;
Eric Biederman5899fd82003-04-24 06:25:08 +000078};
79
80extern struct device dev_root; /* root bus */
81extern struct device *all_devices; /* list of all devices */
82
83
84/* Generic device interface functions */
Eric Biedermane9a271e32003-09-02 03:36:25 +000085extern device_t alloc_dev(struct bus *parent, struct device_path *path);
Eric Biederman5899fd82003-04-24 06:25:08 +000086extern void dev_enumerate(void);
87extern void dev_configure(void);
88extern void dev_enable(void);
89extern void dev_initialize(void);
90
91/* Generic device helper functions */
Eric Biedermane9a271e32003-09-02 03:36:25 +000092extern void compute_allocate_resource(struct bus *bus, struct resource *bridge,
Eric Biederman5899fd82003-04-24 06:25:08 +000093 unsigned long type_mask, unsigned long type);
Eric Biedermane9a271e32003-09-02 03:36:25 +000094extern void assign_resources(struct bus *bus);
95extern void enable_resources(struct device *dev);
96extern void enumerate_static_device(void);
Greg Watson23e2e182004-03-26 02:32:45 +000097extern void enumerate_static_devices(void);
Eric Biedermane9a271e32003-09-02 03:36:25 +000098extern const char *dev_path(device_t dev);
Eric Biederman5899fd82003-04-24 06:25:08 +000099
100/* Helper functions */
Eric Biederman992cd002004-10-14 21:10:23 +0000101device_t find_dev_path(struct bus *parent, struct device_path *path);
Eric Biederman83b991a2003-10-11 06:20:25 +0000102device_t alloc_find_dev(struct bus *parent, struct device_path *path);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000103device_t dev_find_device (unsigned int vendor, unsigned int device, device_t from);
104device_t dev_find_class (unsigned int class, device_t from);
105device_t dev_find_slot (unsigned int bus, unsigned int devfn);
Eric Biederman5899fd82003-04-24 06:25:08 +0000106
107/* Rounding for boundaries.
108 * Due to some chip bugs, go ahead and roung IO to 16
109 */
110#define DEVICE_IO_ALIGN 16
111#define DEVICE_MEM_ALIGN 4096
112
Eric Biedermane9a271e32003-09-02 03:36:25 +0000113struct device_operations default_dev_ops_root;
114extern void root_dev_read_resources(device_t dev);
115extern void root_dev_set_resources(device_t dev);
Li-Ta Lo89666e42004-05-07 21:54:23 +0000116extern unsigned int scan_static_bus(device_t bus, unsigned int max);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000117extern void enable_childrens_resources(device_t dev);
Eric Biederman992cd002004-10-14 21:10:23 +0000118extern void root_dev_enable_resources(device_t dev);
119extern unsigned int root_dev_scan_bus(device_t root, unsigned int max);
120extern void root_dev_init(device_t dev);
Eric Biederman5899fd82003-04-24 06:25:08 +0000121
122#endif /* DEVICE_H */