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
|
|
|
|
|
|
|
struct device;
|
2003-06-12 21:23:51 +02:00
|
|
|
typedef struct device * device_t;
|
|
|
|
|
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);
|
|
|
|
unsigned int (*scan_bus)(device_t bus, unsigned int max);
|
2003-07-17 05:26:03 +02:00
|
|
|
void (*enable)(device_t dev);
|
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 */
|
|
|
|
unsigned char secondary; /* secondary bus number */
|
|
|
|
unsigned char subordinate; /* max subordinate bus number */
|
|
|
|
unsigned char cap; /* PCi capability offset */
|
|
|
|
};
|
|
|
|
|
2003-04-24 08:25:08 +02:00
|
|
|
#define MAX_RESOURCES 6
|
2003-09-02 05:36:25 +02:00
|
|
|
#define MAX_LINKS 3
|
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 {
|
2003-09-02 05:36:25 +02:00
|
|
|
struct bus * bus; /* bus this device is on */
|
|
|
|
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;
|
2003-04-24 08:25:08 +02:00
|
|
|
unsigned short vendor;
|
|
|
|
unsigned short device;
|
|
|
|
unsigned int class; /* 3 bytes: (base,sub,prog-if) */
|
|
|
|
unsigned int hdr_type; /* PCI header type */
|
2003-07-17 05:26:03 +02:00
|
|
|
unsigned int enable : 1; /* set if we should enable the device */
|
2003-04-24 08:25:08 +02:00
|
|
|
|
|
|
|
uint8_t command;
|
|
|
|
/*
|
|
|
|
* In theory, the irq level can be read from configuration
|
|
|
|
* space and all would be fine. However, old PCI chips don't
|
|
|
|
* support these registers and return 0 instead. For example,
|
|
|
|
* the Vision864-P rev 0 chip can uses INTA, but returns 0 in
|
|
|
|
* the interrupt line and pin registers. pci_init()
|
|
|
|
* initializes this field with the value at PCI_INTERRUPT_LINE
|
|
|
|
* and it is the job of pcibios_fixup() to change it if
|
|
|
|
* necessary. The field must not be 0 unless the device
|
|
|
|
* cannot generate interrupts at all.
|
|
|
|
*/
|
|
|
|
unsigned int irq; /* irq generated by this device */
|
|
|
|
|
|
|
|
/* Base registers for this device, can be adjusted by
|
|
|
|
* pcibios_fixup() as necessary.
|
|
|
|
*/
|
|
|
|
struct resource resource[MAX_RESOURCES];
|
|
|
|
unsigned int resources;
|
2003-09-02 05:36:25 +02:00
|
|
|
|
|
|
|
struct bus link[MAX_LINKS];
|
|
|
|
unsigned int links;
|
|
|
|
|
2003-04-24 08:25:08 +02:00
|
|
|
unsigned long rom_address;
|
|
|
|
struct device_operations *ops;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct device dev_root; /* root bus */
|
|
|
|
extern struct device *all_devices; /* list of all devices */
|
|
|
|
|
|
|
|
|
|
|
|
/* Generic device interface functions */
|
2003-09-02 05:36:25 +02:00
|
|
|
extern device_t alloc_dev(struct bus *parent, struct device_path *path);
|
2003-04-24 08:25:08 +02:00
|
|
|
extern void dev_enumerate(void);
|
|
|
|
extern void dev_configure(void);
|
|
|
|
extern void dev_enable(void);
|
|
|
|
extern void dev_initialize(void);
|
|
|
|
|
|
|
|
/* Generic device helper functions */
|
2003-09-02 05:36:25 +02:00
|
|
|
extern void compute_allocate_resource(struct bus *bus, struct resource *bridge,
|
2003-04-24 08:25:08 +02:00
|
|
|
unsigned long type_mask, unsigned long type);
|
2003-09-02 05:36:25 +02:00
|
|
|
extern void assign_resources(struct bus *bus);
|
|
|
|
extern void enable_resources(struct device *dev);
|
|
|
|
extern void enumerate_static_device(void);
|
|
|
|
extern const char *dev_path(device_t dev);
|
2003-04-24 08:25:08 +02:00
|
|
|
|
|
|
|
/* Helper functions */
|
2003-09-02 05:36:25 +02:00
|
|
|
device_t alloc_find_dev(struct bus *bus, 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);
|
2003-04-24 08:25:08 +02:00
|
|
|
|
|
|
|
/* Rounding for boundaries.
|
|
|
|
* Due to some chip bugs, go ahead and roung IO to 16
|
|
|
|
*/
|
|
|
|
#define DEVICE_IO_ALIGN 16
|
|
|
|
#define DEVICE_MEM_ALIGN 4096
|
|
|
|
|
2003-09-02 05:36:25 +02:00
|
|
|
struct device_operations default_dev_ops_root;
|
|
|
|
extern void root_dev_read_resources(device_t dev);
|
|
|
|
extern void root_dev_set_resources(device_t dev);
|
|
|
|
extern unsigned int walk_static_devices(device_t bus, unsigned int max);
|
|
|
|
extern void enable_childrens_resources(device_t dev);
|
2003-04-24 08:25:08 +02:00
|
|
|
|
|
|
|
#endif /* DEVICE_H */
|