.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
---|
1 | 2 | /****************************************************************************** |
---|
2 | 3 | * QLOGIC LINUX SOFTWARE |
---|
3 | 4 | * |
---|
4 | 5 | * QLogic ISP1280 (Ultra2) /12160 (Ultra3) SCSI driver |
---|
5 | 6 | * Copyright (C) 2000 Qlogic Corporation |
---|
6 | 7 | * (www.qlogic.com) |
---|
7 | | -* |
---|
8 | | -* This program is free software; you can redistribute it and/or modify it |
---|
9 | | -* under the terms of the GNU General Public License as published by the |
---|
10 | | -* Free Software Foundation; either version 2, or (at your option) any |
---|
11 | | -* later version. |
---|
12 | | -* |
---|
13 | | -* This program is distributed in the hope that it will be useful, but |
---|
14 | | -* WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | | -* General Public License for more details. |
---|
17 | 8 | * |
---|
18 | 9 | ******************************************************************************/ |
---|
19 | 10 | |
---|
.. | .. |
---|
286 | 277 | #define MBC_MAILBOX_REGISTER_TEST 6 /* Wrap incoming mailboxes */ |
---|
287 | 278 | #define MBC_VERIFY_CHECKSUM 7 /* Verify checksum */ |
---|
288 | 279 | #define MBC_ABOUT_FIRMWARE 8 /* Get firmware revision */ |
---|
| 280 | +#define MBC_LOAD_RAM_A64_ROM 9 /* Load RAM 64bit ROM version */ |
---|
| 281 | +#define MBC_DUMP_RAM_A64_ROM 0x0a /* Dump RAM 64bit ROM version */ |
---|
289 | 282 | #define MBC_INIT_REQUEST_QUEUE 0x10 /* Initialize request queue */ |
---|
290 | 283 | #define MBC_INIT_RESPONSE_QUEUE 0x11 /* Initialize response queue */ |
---|
291 | 284 | #define MBC_EXECUTE_IOCB 0x12 /* Execute IOCB command */ |
---|
.. | .. |
---|
1064 | 1057 | uint32_t reset_active:1; /* 3 */ |
---|
1065 | 1058 | uint32_t abort_isp_active:1; /* 4 */ |
---|
1066 | 1059 | uint32_t disable_risc_code_load:1; /* 5 */ |
---|
1067 | | -#ifdef __ia64__ |
---|
1068 | | - uint32_t use_pci_vchannel:1; |
---|
1069 | | -#endif |
---|
1070 | 1060 | } flags; |
---|
1071 | 1061 | |
---|
1072 | 1062 | struct nvram nvram; |
---|