2003-04-24 08:25:08 +02:00
|
|
|
#ifndef DEVICE_H
|
|
|
|
#define DEVICE_H
|
|
|
|
|
2003-09-02 01:17:58 +02:00
|
|
|
#include <stdint.h>
|
2003-04-24 08:25:08 +02:00
|
|
|
#include <device/resource.h>
|
2003-09-02 05:36:25 +02:00
|
|
|
#include <device/path.h>
|
2003-04-24 08:25:08 +02:00
|
|
|
|
2004-10-16 08:20:29 +02:00
|
|
|
|
2003-04-24 08:25:08 +02:00
|
|
|
struct device;
|
2003-06-12 21:23:51 +02:00
|
|
|
typedef struct device * device_t;
|
2004-10-14 23:10:23 +02:00
|
|
|
struct pci_operations;
|
2004-11-18 23:38:08 +01:00
|
|
|
struct pci_bus_operations;
|
2004-10-14 23:10:23 +02:00
|
|
|
struct smbus_bus_operations;
|
2003-06-12 21:23:51 +02:00
|
|
|
|
2004-10-16 08:20:29 +02:00
|
|
|
/* Chip operations */
|
|
|
|
struct chip_operations {
|
|
|
|
void (*enable_dev)(struct device *dev);
|
2009-09-29 16:56:15 +02:00
|
|
|
const char *name;
|
2004-10-16 08:20:29 +02:00
|
|
|
};
|
|
|
|
|
2004-11-04 12:04:33 +01:00
|
|
|
#define CHIP_NAME(X) .name = X,
|
|
|
|
|
2005-07-08 04:49:49 +02:00
|
|
|
struct bus;
|
|
|
|
|
2003-04-24 08:25:08 +02:00
|
|
|
struct device_operations {
|
2003-06-12 21:23:51 +02:00
|
|
|
void (*read_resources)(device_t dev);
|
|
|
|
void (*set_resources)(device_t dev);
|
2003-09-02 05:36:25 +02:00
|
|
|
void (*enable_resources)(device_t dev);
|
2003-06-12 21:23:51 +02:00
|
|
|
void (*init)(device_t dev);
|
2004-11-18 23:38:08 +01:00
|
|
|
unsigned int (*scan_bus)(device_t bus, unsigned int max);
|
2003-07-17 05:26:03 +02:00
|
|
|
void (*enable)(device_t dev);
|
2004-12-03 04:39:04 +01:00
|
|
|
void (*set_link)(device_t dev, unsigned int link);
|
2005-07-08 04:49:49 +02:00
|
|
|
void (*reset_bus)(struct bus *bus);
|
2004-11-18 23:38:08 +01:00
|
|
|
const struct pci_operations *ops_pci;
|
|
|
|
const struct smbus_bus_operations *ops_smbus_bus;
|
|
|
|
const struct pci_bus_operations *ops_pci_bus;
|
2003-04-24 08:25:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-09-02 05:36:25 +02:00
|
|
|
struct bus {
|
|
|
|
device_t dev; /* This bridge device */
|
|
|
|
device_t children; /* devices behind this bridge */
|
|
|
|
unsigned bridge_ctrl; /* Bridge control register */
|
|
|
|
unsigned char link; /* The index of this link */
|
2006-10-04 22:46:15 +02:00
|
|
|
uint16_t secondary; /* secondary bus number */
|
|
|
|
uint16_t subordinate; /* max subordinate bus number */
|
2003-09-02 05:36:25 +02:00
|
|
|
unsigned char cap; /* PCi capability offset */
|
2005-07-08 04:49:49 +02:00
|
|
|
unsigned reset_needed : 1;
|
|
|
|
unsigned disable_relaxed_ordering : 1;
|
2003-09-02 05:36:25 +02:00
|
|
|
};
|
|
|
|
|
2008-02-02 00:14:40 +01:00
|
|
|
#define MAX_RESOURCES 24
|
2004-12-03 04:39:04 +01:00
|
|
|
#define MAX_LINKS 8
|
2003-04-24 08:25:08 +02:00
|
|
|
/*
|
2003-07-21 22:13:45 +02:00
|
|
|
* There is one device structure for each slot-number/function-number
|
2003-04-24 08:25:08 +02:00
|
|
|
* combination:
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct device {
|
2004-11-25 18:37:19 +01:00
|
|
|
struct bus * bus; /* bus this device is on, for bridge
|
|
|
|
* devices, it is the up stream bus */
|
2003-09-02 05:36:25 +02:00
|
|
|
device_t sibling; /* next device on this bus */
|
|
|
|
device_t next; /* chain of all devices */
|
2003-04-24 08:25:08 +02:00
|
|
|
|
2003-09-02 05:36:25 +02:00
|
|
|
struct device_path path;
|
2004-10-14 22:54:17 +02:00
|
|
|
unsigned vendor;
|
|
|
|
unsigned device;
|
2008-10-29 05:46:52 +01:00
|
|
|
unsigned int class; /* 3 bytes: (base, sub, prog-if) */
|
2003-04-24 08:25:08 +02:00
|
|
|
unsigned int hdr_type; /* PCI header type */
|
2004-04-29 22:08:54 +02:00
|
|
|
unsigned int enabled : 1; /* set if we should enable the device */
|
2004-10-14 23:10:23 +02:00
|
|
|
unsigned int initialized : 1; /* set if we have initialized the device */
|
2004-10-21 12:44:08 +02:00
|
|
|
unsigned int on_mainboard : 1;
|
2005-01-13 04:36:38 +01:00
|
|
|
unsigned long rom_address;
|
2003-04-24 08:25:08 +02:00
|
|
|
|
2009-07-02 20:56:24 +02:00
|
|
|
u8 command;
|
2003-04-24 08:25:08 +02:00
|
|
|
|
2004-12-27 18:53:45 +01:00
|
|
|
/* Base registers for this device. I/O, MEM and Expansion ROM */
|
2003-04-24 08:25:08 +02:00
|
|
|
struct resource resource[MAX_RESOURCES];
|
|
|
|
unsigned int resources;
|
2003-09-02 05:36:25 +02:00
|
|
|
|
2009-07-02 20:56:24 +02:00
|
|
|
/* links are (downstream) buses attached to the device, usually a leaf
|
2005-07-08 04:49:49 +02:00
|
|
|
* device with no children have 0 buses attached and a bridge has 1 bus
|
|
|
|
*/
|
2003-09-02 05:36:25 +02:00
|
|
|
struct bus link[MAX_LINKS];
|
2004-11-25 18:37:19 +01:00
|
|
|
/* number of buses attached to the device */
|
2003-09-02 05:36:25 +02:00
|
|
|
unsigned int links;
|
|
|
|
|
2003-04-24 08:25:08 +02:00
|
|
|
struct device_operations *ops;
|
2004-10-16 08:20:29 +02:00
|
|
|
struct chip_operations *chip_ops;
|
2004-10-16 04:48:37 +02:00
|
|
|
void *chip_info;
|
2003-04-24 08:25:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct device dev_root; /* root bus */
|
|
|
|
extern struct device *all_devices; /* list of all devices */
|
|
|
|
|
|
|
|
|
|
|
|
/* Generic device interface functions */
|
2009-03-13 16:42:27 +01:00
|
|
|
device_t alloc_dev(struct bus *parent, struct device_path *path);
|
|
|
|
void dev_enumerate(void);
|
|
|
|
void dev_configure(void);
|
|
|
|
void dev_enable(void);
|
|
|
|
void dev_initialize(void);
|
|
|
|
void dev_optimize(void);
|
2003-04-24 08:25:08 +02:00
|
|
|
|
|
|
|
/* Generic device helper functions */
|
2009-03-13 16:42:27 +01:00
|
|
|
int reset_bus(struct bus *bus);
|
|
|
|
unsigned int scan_bus(struct device *bus, unsigned int max);
|
|
|
|
void assign_resources(struct bus *bus);
|
|
|
|
void enable_resources(struct device *dev);
|
|
|
|
void enumerate_static_device(void);
|
|
|
|
void enumerate_static_devices(void);
|
|
|
|
const char *dev_path(device_t dev);
|
2005-07-08 04:49:49 +02:00
|
|
|
const char *bus_path(struct bus *bus);
|
2009-03-13 16:42:27 +01:00
|
|
|
void dev_set_enabled(device_t dev, int enable);
|
|
|
|
void disable_children(struct bus *bus);
|
2003-04-24 08:25:08 +02:00
|
|
|
|
|
|
|
/* Helper functions */
|
2004-10-14 23:10:23 +02:00
|
|
|
device_t find_dev_path(struct bus *parent, struct device_path *path);
|
2003-10-11 08:20:25 +02:00
|
|
|
device_t alloc_find_dev(struct bus *parent, struct device_path *path);
|
2003-06-12 21:23:51 +02:00
|
|
|
device_t dev_find_device (unsigned int vendor, unsigned int device, device_t from);
|
|
|
|
device_t dev_find_class (unsigned int class, device_t from);
|
|
|
|
device_t dev_find_slot (unsigned int bus, unsigned int devfn);
|
2005-07-06 19:13:46 +02:00
|
|
|
device_t dev_find_slot_on_smbus (unsigned int bus, unsigned int addr);
|
|
|
|
|
2009-05-12 00:45:35 +02:00
|
|
|
/* Debug functions */
|
|
|
|
void print_resource_tree(struct device * root, int debug_level,
|
|
|
|
const char *msg);
|
|
|
|
void show_devs_tree(struct device *dev, int debug_level, int depth, int linknum);
|
|
|
|
void show_devs_subtree(struct device *root, int debug_level, const char *msg);
|
|
|
|
void show_all_devs(int debug_level, const char *msg);
|
|
|
|
void show_one_resource(int debug_level, struct device *dev,
|
|
|
|
struct resource *resource, const char *comment);
|
|
|
|
void show_all_devs_resources(int debug_level, const char* msg);
|
2003-04-24 08:25:08 +02:00
|
|
|
|
|
|
|
/* Rounding for boundaries.
|
2009-05-12 00:45:35 +02:00
|
|
|
* Due to some chip bugs, go ahead and round IO to 16
|
2003-04-24 08:25:08 +02:00
|
|
|
*/
|
|
|
|
#define DEVICE_IO_ALIGN 16
|
|
|
|
#define DEVICE_MEM_ALIGN 4096
|
|
|
|
|
2009-03-13 16:42:27 +01:00
|
|
|
extern struct device_operations default_dev_ops_root;
|
2009-07-02 20:56:24 +02:00
|
|
|
void pci_domain_read_resources(struct device *dev);
|
|
|
|
unsigned int pci_domain_scan_bus(struct device *dev, unsigned int max);
|
2009-03-13 16:42:27 +01:00
|
|
|
void root_dev_read_resources(device_t dev);
|
|
|
|
void root_dev_set_resources(device_t dev);
|
|
|
|
unsigned int scan_static_bus(device_t bus, unsigned int max);
|
|
|
|
void enable_childrens_resources(device_t dev);
|
|
|
|
void root_dev_enable_resources(device_t dev);
|
|
|
|
unsigned int root_dev_scan_bus(device_t root, unsigned int max);
|
|
|
|
void root_dev_init(device_t dev);
|
2003-04-24 08:25:08 +02:00
|
|
|
#endif /* DEVICE_H */
|