|
iPXE
|
Go to the source code of this file.
Data Structures | |
| struct | mca_device_id |
| An MCA device ID list entry. More... | |
| struct | mca_device |
| An MCA device. More... | |
| struct | mca_driver |
| An MCA driver. More... | |
Macros | |
| #define | MCA_H |
| #define | MCA_MOTHERBOARD_SETUP_REG 0x94 |
| #define | MCA_ADAPTER_SETUP_REG 0x96 |
| #define | MCA_MAX_SLOT_NR 0x07 /* Must be 2^n - 1 */ |
| #define | MCA_POS_REG(n) |
| #define | GENERIC_MCA_VENDOR ISA_VENDOR ( 'M', 'C', 'A' ) |
| #define | MCA_ID(mca) |
| #define | MCA_DRIVERS __table ( struct mca_driver, "mca_drivers" ) |
| MCA driver table. | |
| #define | __mca_driver __table_entry ( MCA_DRIVERS, 01 ) |
| Declare an MCA driver. | |
Functions | |
| FILE_LICENCE (GPL2_OR_LATER_OR_UBDL) | |
| static void | mca_set_drvdata (struct mca_device *mca, void *priv) |
| Set MCA driver-private data. | |
| static void * | mca_get_drvdata (struct mca_device *mca) |
| Get MCA driver-private data. | |
| #define MCA_MOTHERBOARD_SETUP_REG 0x94 |
Definition at line 21 of file mca.h.
Referenced by mcabus_probe().
| #define MCA_ADAPTER_SETUP_REG 0x96 |
Definition at line 22 of file mca.h.
Referenced by mcabus_probe().
| #define MCA_MAX_SLOT_NR 0x07 /* Must be 2^n - 1 */ |
Definition at line 23 of file mca.h.
Referenced by mcabus_probe().
| #define MCA_POS_REG | ( | n | ) |
| #define GENERIC_MCA_VENDOR ISA_VENDOR ( 'M', 'C', 'A' ) |
Definition at line 27 of file mca.h.
Referenced by mcabus_probe().
| #define MCA_ID | ( | mca | ) |
Definition at line 55 of file mca.h.
Referenced by mca_probe(), mcabus_probe(), and t529_probe().
| #define MCA_DRIVERS __table ( struct mca_driver, "mca_drivers" ) |
| #define __mca_driver __table_entry ( MCA_DRIVERS, 01 ) |
| FILE_LICENCE | ( | GPL2_OR_LATER_OR_UBDL | ) |
|
inlinestatic |
Set MCA driver-private data.
| mca | MCA device |
| priv | Private data |
Definition at line 92 of file mca.h.
References mca_device::priv, and priv.
Referenced by legacy_mca_set_drvdata().
|
inlinestatic |
Get MCA driver-private data.
| mca | MCA device |
| priv | Private data |
Definition at line 102 of file mca.h.
References mca_device::priv.
Referenced by legacy_mca_get_drvdata().