/* SPDX-License-Identifier: GPL-2.0-or-later */ /****************************************************************************** * * (C)Copyright 1998,1999 SysKonnect, * a business unit of Schneider & Koch & Co. Datensysteme GmbH. * * The information in this file is provided "AS IS" without warranty. *
******************************************************************************/
#ifdef MULT_OEM #define OI_STAT_LAST 0 /* end of OEM data base */ #define OI_STAT_PRESENT 1 /* entry present but not empty */ #define OI_STAT_VALID 2 /* holds valid ID, but is not active */ #define OI_STAT_ACTIVE 3 /* holds valid ID, entry is active */ /* active = adapter is supported */
/* Memory representation of IDs must match representation in adapter. */ struct s_oem_ids {
u_char oi_status ; /* Stat: last, present, valid, active */
u_char oi_mark[5] ; /* "PID00" .. "PID07" .. */
u_char oi_id[4] ; /* id bytes, representation as */ /* defined by hardware, */ #ifdef PCI
u_char oi_sub_id[4] ; /* sub id bytes, representation as */ /* defined by hardware, */ #endif
} ; #endif/* MULT_OEM */
struct s_smt_hw { /* * global
*/
HW_PTR iop ; /* IO base address */ short dma ; /* DMA channel */ short irq ; /* IRQ level */ short eprom ; /* FLASH prom */
#ifdefined(PCI) short slot ; /* slot number */ short max_slots ; /* maximum number of slots */ short wdog_used ; /* TRUE if the watch dog is used */ #endif
#ifdef PCI
u_short pci_handle ; /* handle to access the BIOS func */
u_long is_imask ; /* int maske for the int source reg */
u_long phys_mem_addr ; /* physical memory address */
u_short mc_dummy ; /* work around for MC compiler bug */ /* * state of the hardware
*/
u_short hw_state ; /* started or stopped */
#define STARTED 1 #define STOPPED 0
int hw_is_64bit ; /* does we have a 64 bit adapter */ #endif
#ifdef TAG_MODE
u_long pci_fix_value ; /* value parsed by PCIFIX */ #endif
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.