david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/isa.h

87 lines
1.7 KiB
C
Raw Normal View History

2005-03-08 19:53:11 +01:00
#ifndef ISA_H
#define ISA_H
2005-04-22 04:28:16 +02:00
#include "stdint.h"
#include "isa_ids.h"
2005-04-22 04:28:16 +02:00
#include "nic.h"
/*
* A location on an ISA bus
*
*/
struct isa_driver;
2005-04-22 04:28:16 +02:00
struct isa_loc {
unsigned int driver;
2005-04-22 04:28:16 +02:00
unsigned int probe_idx;
};
2005-03-08 19:53:11 +01:00
/*
* A physical ISA device
*
*/
struct isa_device {
2005-04-22 04:28:16 +02:00
const char *name;
struct isa_driver *driver;
uint16_t ioaddr;
2005-04-22 04:28:16 +02:00
uint16_t mfg_id;
uint16_t prod_id;
};
/*
* An individual ISA device, identified by probe address
*
*/
typedef uint16_t isa_probe_addr_t;
2005-03-08 19:53:11 +01:00
/*
* An ISA driver, with a probe address list and a probe_addr method.
* probe_addr() should return 1 if a card is physically present,
* leaving the other operations (read MAC address etc.) down to the
* main probe() routine.
*
*/
struct isa_driver {
2005-03-08 19:53:11 +01:00
const char *name;
isa_probe_addr_t *probe_addrs;
unsigned int addr_count;
int ( * probe_addr ) ( isa_probe_addr_t addr );
uint16_t mfg_id;
uint16_t prod_id;
2005-03-08 19:53:11 +01:00
};
#define __isa_driver __attribute__ (( section ( ".drivers.isa" ) ))
2005-03-08 19:53:11 +01:00
/*
* Define an ISA driver
*
*/
#define ISA_DRIVER( _name, _probe_addrs, _probe_addr, _mfg_id, _prod_id ) \
static struct isa_driver _name __isa_driver = { \
.probe_addrs = _probe_addrs, \
2005-04-14 21:10:17 +02:00
.addr_count = sizeof ( _probe_addrs ) / sizeof ( _probe_addrs[0] ), \
.probe_addr = _probe_addr, \
.mfg_id = _mfg_id, \
.prod_id = _prod_id, \
}
/*
* ISA_ROM is parsed by parserom.pl to generate Makefile rules and
* files for rom-o-matic.
*
*/
#define ISA_ROM( IMAGE, DESCRIPTION )
2005-03-08 19:53:11 +01:00
/*
* Functions in isa.c
*
*/
2005-04-22 13:56:27 +02:00
extern void isa_fill_nic ( struct nic *nic, struct isa_device *isa );
2005-04-22 04:28:16 +02:00
/*
* ISA bus global definition
*
*/
extern struct bus_driver isa_driver;
2005-03-08 19:53:11 +01:00
#endif /* ISA_H */