blob: be93f554fa3c4d26281f3cdb4b46dde479bbe54c [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;
Eric Biedermana9e632c2004-11-18 22:38:08 +000012struct pci_bus_operations;
Eric Biederman992cd002004-10-14 21:10:23 +000013struct smbus_bus_operations;
Eric Biederman7a5416a2003-06-12 19:23:51 +000014
Eric Biederman7003ba42004-10-16 06:20:29 +000015/* Chip operations */
16struct chip_operations {
Eric Biederman7003ba42004-10-16 06:20:29 +000017 void (*enable_dev)(struct device *dev);
Eric Biederman018d8dd2004-11-04 11:04:33 +000018#if CONFIG_CHIP_NAME == 1
19 char *name;
20#endif
Eric Biederman7003ba42004-10-16 06:20:29 +000021};
22
Eric Biederman018d8dd2004-11-04 11:04:33 +000023#if CONFIG_CHIP_NAME == 1
24#define CHIP_NAME(X) .name = X,
25#else
26#define CHIP_NAME(X)
27#endif
28
Eric Biederman5899fd82003-04-24 06:25:08 +000029struct device_operations {
Eric Biederman7a5416a2003-06-12 19:23:51 +000030 void (*read_resources)(device_t dev);
31 void (*set_resources)(device_t dev);
Eric Biedermane9a271e32003-09-02 03:36:25 +000032 void (*enable_resources)(device_t dev);
Eric Biederman7a5416a2003-06-12 19:23:51 +000033 void (*init)(device_t dev);
Eric Biedermana9e632c2004-11-18 22:38:08 +000034 unsigned int (*scan_bus)(device_t bus, unsigned int max);
Eric Biederman4086d162003-07-17 03:26:03 +000035 void (*enable)(device_t dev);
Yinghai Lu7213d0f2004-12-03 03:39:04 +000036 void (*set_link)(device_t dev, unsigned int link);
Eric Biedermana9e632c2004-11-18 22:38:08 +000037 const struct pci_operations *ops_pci;
38 const struct smbus_bus_operations *ops_smbus_bus;
39 const struct pci_bus_operations *ops_pci_bus;
Eric Biederman5899fd82003-04-24 06:25:08 +000040};
41
42
Eric Biedermane9a271e32003-09-02 03:36:25 +000043struct bus {
44 device_t dev; /* This bridge device */
45 device_t children; /* devices behind this bridge */
46 unsigned bridge_ctrl; /* Bridge control register */
47 unsigned char link; /* The index of this link */
48 unsigned char secondary; /* secondary bus number */
49 unsigned char subordinate; /* max subordinate bus number */
50 unsigned char cap; /* PCi capability offset */
51};
52
Eric Biederman992cd002004-10-14 21:10:23 +000053#define MAX_RESOURCES 12
Yinghai Lu7213d0f2004-12-03 03:39:04 +000054#define MAX_LINKS 8
Eric Biederman5899fd82003-04-24 06:25:08 +000055/*
Eric Biederman2c018fb2003-07-21 20:13:45 +000056 * There is one device structure for each slot-number/function-number
Eric Biederman5899fd82003-04-24 06:25:08 +000057 * combination:
58 */
59
60struct device {
Li-Ta Lo04930692004-11-25 17:37:19 +000061 struct bus * bus; /* bus this device is on, for bridge
62 * devices, it is the up stream bus */
Eric Biedermane9a271e32003-09-02 03:36:25 +000063 device_t sibling; /* next device on this bus */
64 device_t next; /* chain of all devices */
Eric Biederman5899fd82003-04-24 06:25:08 +000065
Eric Biedermane9a271e32003-09-02 03:36:25 +000066 struct device_path path;
Eric Biedermanb78c1972004-10-14 20:54:17 +000067 unsigned vendor;
68 unsigned device;
Eric Biederman5899fd82003-04-24 06:25:08 +000069 unsigned int class; /* 3 bytes: (base,sub,prog-if) */
70 unsigned int hdr_type; /* PCI header type */
Li-Ta Lo69c5a902004-04-29 20:08:54 +000071 unsigned int enabled : 1; /* set if we should enable the device */
Eric Biederman992cd002004-10-14 21:10:23 +000072 unsigned int initialized : 1; /* set if we have initialized the device */
73 unsigned int have_resources : 1; /* Set if we have read the devices resources */
Eric Biedermandbec2d42004-10-21 10:44:08 +000074 unsigned int on_mainboard : 1;
Yinghai Lu77cbb992005-01-13 03:36:38 +000075 unsigned long rom_address;
Eric Biederman5899fd82003-04-24 06:25:08 +000076
Eric Biederman5899fd82003-04-24 06:25:08 +000077 uint8_t command;
Eric Biederman5899fd82003-04-24 06:25:08 +000078
Li-Ta Lo85e76c62004-12-27 17:53:45 +000079 /* Base registers for this device. I/O, MEM and Expansion ROM */
Eric Biederman5899fd82003-04-24 06:25:08 +000080 struct resource resource[MAX_RESOURCES];
81 unsigned int resources;
Eric Biedermane9a271e32003-09-02 03:36:25 +000082
Li-Ta Lo04930692004-11-25 17:37:19 +000083 /* link are (down sream) buses attached to the device, usually a leaf
84 * device with no child have 0 bus attached and a bridge has 1 bus */
Eric Biedermane9a271e32003-09-02 03:36:25 +000085 struct bus link[MAX_LINKS];
Li-Ta Lo04930692004-11-25 17:37:19 +000086 /* number of buses attached to the device */
Eric Biedermane9a271e32003-09-02 03:36:25 +000087 unsigned int links;
88
Eric Biederman5899fd82003-04-24 06:25:08 +000089 struct device_operations *ops;
Eric Biederman7003ba42004-10-16 06:20:29 +000090 struct chip_operations *chip_ops;
Eric Biederman216525d2004-10-16 02:48:37 +000091 void *chip_info;
Eric Biederman5899fd82003-04-24 06:25:08 +000092};
93
94extern struct device dev_root; /* root bus */
95extern struct device *all_devices; /* list of all devices */
96
97
98/* Generic device interface functions */
Eric Biedermane9a271e32003-09-02 03:36:25 +000099extern device_t alloc_dev(struct bus *parent, struct device_path *path);
Eric Biederman5899fd82003-04-24 06:25:08 +0000100extern void dev_enumerate(void);
101extern void dev_configure(void);
102extern void dev_enable(void);
103extern void dev_initialize(void);
104
105/* Generic device helper functions */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000106extern void compute_allocate_resource(struct bus *bus, struct resource *bridge,
Eric Biederman5899fd82003-04-24 06:25:08 +0000107 unsigned long type_mask, unsigned long type);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000108extern void assign_resources(struct bus *bus);
109extern void enable_resources(struct device *dev);
110extern void enumerate_static_device(void);
Greg Watson23e2e182004-03-26 02:32:45 +0000111extern void enumerate_static_devices(void);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000112extern const char *dev_path(device_t dev);
Eric Biederman5899fd82003-04-24 06:25:08 +0000113
114/* Helper functions */
Eric Biederman992cd002004-10-14 21:10:23 +0000115device_t find_dev_path(struct bus *parent, struct device_path *path);
Eric Biederman83b991a2003-10-11 06:20:25 +0000116device_t alloc_find_dev(struct bus *parent, struct device_path *path);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000117device_t dev_find_device (unsigned int vendor, unsigned int device, device_t from);
118device_t dev_find_class (unsigned int class, device_t from);
119device_t dev_find_slot (unsigned int bus, unsigned int devfn);
arch import user (historical)98d0d302005-07-06 17:13:46 +0000120device_t dev_find_slot_on_smbus (unsigned int bus, unsigned int addr);
121
Eric Biederman5899fd82003-04-24 06:25:08 +0000122
123/* Rounding for boundaries.
124 * Due to some chip bugs, go ahead and roung IO to 16
125 */
126#define DEVICE_IO_ALIGN 16
127#define DEVICE_MEM_ALIGN 4096
128
Eric Biedermane9a271e32003-09-02 03:36:25 +0000129struct device_operations default_dev_ops_root;
130extern void root_dev_read_resources(device_t dev);
131extern void root_dev_set_resources(device_t dev);
Li-Ta Lo89666e42004-05-07 21:54:23 +0000132extern unsigned int scan_static_bus(device_t bus, unsigned int max);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000133extern void enable_childrens_resources(device_t dev);
Eric Biederman992cd002004-10-14 21:10:23 +0000134extern void root_dev_enable_resources(device_t dev);
135extern unsigned int root_dev_scan_bus(device_t root, unsigned int max);
136extern void root_dev_init(device_t dev);
Eric Biederman5899fd82003-04-24 06:25:08 +0000137
138#endif /* DEVICE_H */