sym_nvram.h

来自「优龙2410linux2.6.8内核源代码」· C头文件 代码 · 共 217 行

H
217
字号
/* * Device driver for the SYMBIOS/LSILOGIC 53C8XX and 53C1010 family  * of PCI-SCSI IO processors. * * Copyright (C) 1999-2001  Gerard Roudier <groudier@free.fr> * * This driver is derived from the Linux sym53c8xx driver. * Copyright (C) 1998-2000  Gerard Roudier * * The sym53c8xx driver is derived from the ncr53c8xx driver that had been  * a port of the FreeBSD ncr driver to Linux-1.2.13. * * The original ncr driver has been written for 386bsd and FreeBSD by *         Wolfgang Stanglmeier        <wolf@cologne.de> *         Stefan Esser                <se@mi.Uni-Koeln.de> * Copyright (C) 1994  Wolfgang Stanglmeier * * Other major contributions: * * NVRAM detection and reading. * Copyright (C) 1997 Richard Waltham <dormouse@farsrobt.demon.co.uk> * *----------------------------------------------------------------------------- * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. The name of the author may not be used to endorse or promote products *    derived from this software without specific prior written permission. * * Where this Software is combined with software released under the terms of  * the GNU Public License ("GPL") and the terms of the GPL would require the  * combined work to also be released under the terms of the GPL, the terms * and conditions of this License will apply in addition to those of the * GPL with the exception of any terms or conditions of this License that * conflict with, or are expressly prohibited by, the GPL. * * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */#ifndef SYM_NVRAM_H#define SYM_NVRAM_H#include "sym_conf.h"/* *	Symbios NVRAM data format */#define SYMBIOS_NVRAM_SIZE 368#define SYMBIOS_NVRAM_ADDRESS 0x100struct Symbios_nvram {/* Header 6 bytes */	u_short type;		/* 0x0000 */	u_short byte_count;	/* excluding header/trailer */	u_short checksum;/* Controller set up 20 bytes */	u_char	v_major;	/* 0x00 */	u_char	v_minor;	/* 0x30 */	u32	boot_crc;	u_short	flags;#define SYMBIOS_SCAM_ENABLE	(1)#define SYMBIOS_PARITY_ENABLE	(1<<1)#define SYMBIOS_VERBOSE_MSGS	(1<<2)#define SYMBIOS_CHS_MAPPING	(1<<3)#define SYMBIOS_NO_NVRAM	(1<<3)	/* ??? */	u_short	flags1;#define SYMBIOS_SCAN_HI_LO	(1)	u_short	term_state;#define SYMBIOS_TERM_CANT_PROGRAM	(0)#define SYMBIOS_TERM_ENABLED		(1)#define SYMBIOS_TERM_DISABLED		(2)	u_short	rmvbl_flags;#define SYMBIOS_RMVBL_NO_SUPPORT	(0)#define SYMBIOS_RMVBL_BOOT_DEVICE	(1)#define SYMBIOS_RMVBL_MEDIA_INSTALLED	(2)	u_char	host_id;	u_char	num_hba;	/* 0x04 */	u_char	num_devices;	/* 0x10 */	u_char	max_scam_devices;	/* 0x04 */	u_char	num_valid_scam_devices;	/* 0x00 */	u_char	flags2;#define SYMBIOS_AVOID_BUS_RESET		(1<<2)/* Boot order 14 bytes * 4 */	struct Symbios_host{		u_short	type;		/* 4:8xx / 0:nok */		u_short	device_id;	/* PCI device id */		u_short	vendor_id;	/* PCI vendor id */		u_char	bus_nr;		/* PCI bus number */		u_char	device_fn;	/* PCI device/function number << 3*/		u_short	word8;		u_short	flags;#define	SYMBIOS_INIT_SCAN_AT_BOOT	(1)		u_short	io_port;	/* PCI io_port address */	} host[4];/* Targets 8 bytes * 16 */	struct Symbios_target {		u_char	flags;#define SYMBIOS_DISCONNECT_ENABLE	(1)#define SYMBIOS_SCAN_AT_BOOT_TIME	(1<<1)#define SYMBIOS_SCAN_LUNS		(1<<2)#define SYMBIOS_QUEUE_TAGS_ENABLED	(1<<3)		u_char	rsvd;		u_char	bus_width;	/* 0x08/0x10 */		u_char	sync_offset;		u_short	sync_period;	/* 4*period factor */		u_short	timeout;	} target[16];/* Scam table 8 bytes * 4 */	struct Symbios_scam {		u_short	id;		u_short	method;#define SYMBIOS_SCAM_DEFAULT_METHOD	(0)#define SYMBIOS_SCAM_DONT_ASSIGN	(1)#define SYMBIOS_SCAM_SET_SPECIFIC_ID	(2)#define SYMBIOS_SCAM_USE_ORDER_GIVEN	(3)		u_short status;#define SYMBIOS_SCAM_UNKNOWN		(0)#define SYMBIOS_SCAM_DEVICE_NOT_FOUND	(1)#define SYMBIOS_SCAM_ID_NOT_SET		(2)#define SYMBIOS_SCAM_ID_VALID		(3)		u_char	target_id;		u_char	rsvd;	} scam[4];	u_char	spare_devices[15*8];	u_char	trailer[6];		/* 0xfe 0xfe 0x00 0x00 0x00 0x00 */};typedef struct Symbios_nvram	Symbios_nvram;typedef struct Symbios_host	Symbios_host;typedef struct Symbios_target	Symbios_target;typedef struct Symbios_scam	Symbios_scam;/* *	Tekram NvRAM data format. */#define TEKRAM_NVRAM_SIZE 64#define TEKRAM_93C46_NVRAM_ADDRESS 0#define TEKRAM_24C16_NVRAM_ADDRESS 0x40struct Tekram_nvram {	struct Tekram_target {		u_char	flags;#define	TEKRAM_PARITY_CHECK		(1)#define TEKRAM_SYNC_NEGO		(1<<1)#define TEKRAM_DISCONNECT_ENABLE	(1<<2)#define	TEKRAM_START_CMD		(1<<3)#define TEKRAM_TAGGED_COMMANDS		(1<<4)#define TEKRAM_WIDE_NEGO		(1<<5)		u_char	sync_index;		u_short	word2;	} target[16];	u_char	host_id;	u_char	flags;#define TEKRAM_MORE_THAN_2_DRIVES	(1)#define TEKRAM_DRIVES_SUP_1GB		(1<<1)#define	TEKRAM_RESET_ON_POWER_ON	(1<<2)#define TEKRAM_ACTIVE_NEGATION		(1<<3)#define TEKRAM_IMMEDIATE_SEEK		(1<<4)#define	TEKRAM_SCAN_LUNS		(1<<5)#define	TEKRAM_REMOVABLE_FLAGS		(3<<6)	/* 0: disable; */						/* 1: boot device; 2:all */	u_char	boot_delay_index;	u_char	max_tags_index;	u_short	flags1;#define TEKRAM_F2_F6_ENABLED		(1)	u_short	spare[29];};typedef struct Tekram_nvram	Tekram_nvram;typedef struct Tekram_target	Tekram_target;/* *  Union of supported NVRAM formats. */struct sym_nvram {	int type;#define	SYM_SYMBIOS_NVRAM	(1)#define	SYM_TEKRAM_NVRAM	(2)#if SYM_CONF_NVRAM_SUPPORT	union {		Symbios_nvram Symbios;		Tekram_nvram Tekram;	} data;#endif};#if SYM_CONF_NVRAM_SUPPORTvoid sym_nvram_setup_host (struct sym_hcb *np, struct sym_nvram *nvram);void sym_nvram_setup_target (struct sym_hcb *np, int target, struct sym_nvram *nvp);int sym_read_nvram (struct sym_device *np, struct sym_nvram *nvp);#elsestatic inline void sym_nvram_setup_host(struct sym_hcb *np, struct sym_nvram *nvram) { }static inline void sym_nvram_setup_target(struct sym_hcb *np, struct sym_nvram *nvram) { }static inline int sym_read_nvram(struct sym_device *np, struct sym_nvram *nvp){	nvp->type = 0;	return 0;}#endif#endif /* SYM_NVRAM_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?