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/mca.h

89 lines
1.3 KiB
C
Raw Normal View History

2005-04-13 04:59:13 +02:00
/*
* MCA bus driver code
*
* Abstracted from 3c509.c.
*
*/
#ifndef MCA_H
#define MCA_H
#include "isa_ids.h"
2005-04-22 04:47:39 +02:00
#include "nic.h"
#define MCA_BUS_TYPE 3
2005-04-13 04:59:13 +02:00
/*
* MCA constants
*
*/
#define MCA_MOTHERBOARD_SETUP_REG 0x94
#define MCA_ADAPTER_SETUP_REG 0x96
2005-04-22 04:28:16 +02:00
#define MCA_MAX_SLOT_NR 0x07 /* Must be 2^n - 1 */
2005-04-13 04:59:13 +02:00
#define MCA_POS_REG(n) (0x100+(n))
/* Is there a standard that would define this? */
#define GENERIC_MCA_VENDOR ISA_VENDOR ( 'M', 'C', 'A' )
2005-04-13 04:59:13 +02:00
2005-04-22 04:28:16 +02:00
/*
* A location on an MCA bus
*
*/
struct mca_loc {
unsigned int slot;
};
2005-04-13 04:59:13 +02:00
/*
* A physical MCA device
*
*/
struct mca_device {
const char *name;
2005-04-13 04:59:13 +02:00
unsigned int slot;
unsigned char pos[8];
};
#define MCA_ID(mca) ( ( (mca)->pos[1] << 8 ) + (mca)->pos[0] )
/*
* An individual MCA device identified by ID
*
*/
struct mca_id {
const char *name;
int id;
};
/*
* An MCA driver, with a device ID (struct mca_id) table.
*
*/
struct mca_driver {
struct mca_id *ids;
unsigned int id_count;
};
/*
* Define an MCA driver
*
*/
#define MCA_DRIVER( _name, _ids ) \
static struct mca_driver _name = { \
.ids = _ids, \
.id_count = sizeof ( _ids ) / sizeof ( _ids[0] ), \
}
2005-04-13 04:59:13 +02:00
2005-04-22 04:47:39 +02:00
/*
* Functions in mca.c
*
*/
2005-04-22 13:56:27 +02:00
extern void mca_fill_nic ( struct nic *nic, struct mca_device *mca );
2005-04-22 04:47:39 +02:00
2005-04-13 04:59:13 +02:00
/*
2005-04-22 04:28:16 +02:00
* MCA bus global definition
2005-04-13 04:59:13 +02:00
*
*/
2005-04-22 04:28:16 +02:00
extern struct bus_driver mca_driver;
2005-04-13 04:59:13 +02:00
#endif