mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
e3976af5a4
All files in this driver directory contain the following notice: See LICENSE.qla4xxx for copyright and licensing details. LICENSE.qla4xxx can be found in Documentation/scsi/. The file contains: - A copyright notice This copyright notice is redundant as all files contain the same copyright notice already - A license notice You may modify and redistribute the device driver code under the GNU General Public License (a copy of which is attached hereto as Exhibit A) published by the Free Software Foundation (version 2). - The full GPLv2 license text This can be replaced with the corresponding SPDX license identifier (GPL-2.0-only) in the source files which reference this license file. - The full GPLv2 license text A redundant copy of LICENSES/preferred/GPL-2.0 Remove the notices and add the SPDX license identifier GPL-2.0-only to the source files. Finally remove the now redundant LICENSE.qla4xxx file. Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Jilayne Lovejoy <opensource@jilayne.com> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com> Acked-by: Nilesh Javali <njavali@marvell.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
32 lines
950 B
C
32 lines
950 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* QLogic iSCSI HBA Driver
|
|
* Copyright (c) 2011 QLogic Corporation
|
|
*/
|
|
#ifndef __QL4_BSG_H
|
|
#define __QL4_BSG_H
|
|
|
|
/* BSG Vendor specific commands */
|
|
#define QLISCSI_VND_READ_FLASH 1
|
|
#define QLISCSI_VND_UPDATE_FLASH 2
|
|
#define QLISCSI_VND_GET_ACB_STATE 3
|
|
#define QLISCSI_VND_READ_NVRAM 4
|
|
#define QLISCSI_VND_UPDATE_NVRAM 5
|
|
#define QLISCSI_VND_RESTORE_DEFAULTS 6
|
|
#define QLISCSI_VND_GET_ACB 7
|
|
#define QLISCSI_VND_DIAG_TEST 8
|
|
|
|
/* QLISCSI_VND_DIAG_CMD sub code */
|
|
#define QL_DIAG_CMD_TEST_DDR_SIZE 0x2
|
|
#define QL_DIAG_CMD_TEST_DDR_RW 0x3
|
|
#define QL_DIAG_CMD_TEST_ONCHIP_MEM_RW 0x4
|
|
#define QL_DIAG_CMD_TEST_NVRAM 0x5 /* Only ISP4XXX */
|
|
#define QL_DIAG_CMD_TEST_FLASH_ROM 0x6
|
|
#define QL_DIAG_CMD_TEST_INT_LOOPBACK 0x7
|
|
#define QL_DIAG_CMD_TEST_EXT_LOOPBACK 0x8
|
|
#define QL_DIAG_CMD_TEST_DMA_XFER 0x9 /* Only ISP4XXX */
|
|
#define QL_DIAG_CMD_SELF_DDR_RW 0xC
|
|
#define QL_DIAG_CMD_SELF_ONCHIP_MEM_RW 0xD
|
|
|
|
#endif
|