2003-07-19 06:28:22 +02:00
|
|
|
#ifndef DEVICE_PNP_H
|
|
|
|
#define DEVICE_PNP_H
|
|
|
|
|
2004-03-11 16:01:31 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <device/device.h>
|
|
|
|
#include <device/pnp_def.h>
|
|
|
|
|
2010-10-18 02:00:57 +02:00
|
|
|
/* Primitive PNP resource manipulation */
|
|
|
|
void pnp_write_config(device_t dev, u8 reg, u8 value);
|
|
|
|
u8 pnp_read_config(device_t dev, u8 reg);
|
|
|
|
void pnp_set_logical_device(device_t dev);
|
|
|
|
void pnp_set_enable(device_t dev, int enable);
|
|
|
|
int pnp_read_enable(device_t dev);
|
|
|
|
void pnp_set_iobase(device_t dev, u8 index, u16 iobase);
|
|
|
|
void pnp_set_irq(device_t dev, u8 index, u8 irq);
|
|
|
|
void pnp_set_drq(device_t dev, u8 index, u8 drq);
|
2004-03-11 16:01:31 +01:00
|
|
|
|
|
|
|
/* PNP device operations */
|
|
|
|
void pnp_read_resources(device_t dev);
|
|
|
|
void pnp_set_resources(device_t dev);
|
|
|
|
void pnp_enable_resources(device_t dev);
|
|
|
|
void pnp_enable(device_t dev);
|
|
|
|
|
2009-03-13 16:42:27 +01:00
|
|
|
extern struct device_operations pnp_ops;
|
2004-03-11 16:01:31 +01:00
|
|
|
|
|
|
|
/* PNP helper operations */
|
|
|
|
|
|
|
|
struct io_info {
|
|
|
|
unsigned mask, set;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pnp_info {
|
|
|
|
struct device_operations *ops;
|
2010-12-05 23:36:14 +01:00
|
|
|
unsigned int function; /* Must be at least 16 bits (virtual LDNs)! */
|
2010-10-18 02:00:57 +02:00
|
|
|
unsigned int flags;
|
2010-02-22 07:09:43 +01:00
|
|
|
#define PNP_IO0 0x001
|
|
|
|
#define PNP_IO1 0x002
|
|
|
|
#define PNP_IO2 0x004
|
|
|
|
#define PNP_IO3 0x008
|
|
|
|
#define PNP_IRQ0 0x010
|
|
|
|
#define PNP_IRQ1 0x020
|
|
|
|
#define PNP_DRQ0 0x040
|
|
|
|
#define PNP_DRQ1 0x080
|
|
|
|
#define PNP_EN 0x100
|
|
|
|
#define PNP_MSC0 0x200
|
|
|
|
#define PNP_MSC1 0x400
|
2004-10-14 22:54:17 +02:00
|
|
|
struct io_info io0, io1, io2, io3;
|
2004-03-11 16:01:31 +01:00
|
|
|
};
|
|
|
|
struct resource *pnp_get_resource(device_t dev, unsigned index);
|
2004-10-16 08:20:29 +02:00
|
|
|
void pnp_enable_devices(struct device *dev, struct device_operations *ops,
|
2010-10-18 02:00:57 +02:00
|
|
|
unsigned int functions, struct pnp_info *info);
|
2003-07-19 06:28:22 +02:00
|
|
|
|
|
|
|
#endif /* DEVICE_PNP_H */
|