blob: 4e7f81494ea45e098403d41a585bef9b3a6aa1d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ipr.h -- driver for IBM Power Linux RAID adapters
3 *
4 * Written By: Brian King <brking@us.ibm.com>, IBM Corporation
5 *
6 * Copyright (C) 2003, 2004 IBM Corporation
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
Alan Coxfa195af2008-10-27 15:16:36 +000022 * Alan Cox <alan@lxorguk.ukuu.org.uk> - Removed several careless u32/dma_addr_t errors
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * that broke 64bit platforms.
24 */
25
26#ifndef _IPR_H
27#define _IPR_H
28
29#include <linux/types.h>
30#include <linux/completion.h>
Brian King35a39692006-09-25 12:39:20 -050031#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/list.h>
33#include <linux/kref.h>
34#include <scsi/scsi.h>
35#include <scsi/scsi_cmnd.h>
36
37/*
38 * Literals
39 */
Wayne Boyerd7b46272010-02-19 13:24:38 -080040#define IPR_DRIVER_VERSION "2.5.0"
41#define IPR_DRIVER_DATE "(February 11, 2010)"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * IPR_MAX_CMD_PER_LUN: This defines the maximum number of outstanding
45 * ops per device for devices not running tagged command queuing.
46 * This can be adjusted at runtime through sysfs device attributes.
47 */
48#define IPR_MAX_CMD_PER_LUN 6
Brian Kingb5145d22006-08-02 14:57:36 -050049#define IPR_MAX_CMD_PER_ATA_LUN 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*
52 * IPR_NUM_BASE_CMD_BLKS: This defines the maximum number of
53 * ops the mid-layer can send to the adapter.
54 */
55#define IPR_NUM_BASE_CMD_BLKS 100
56
Brian King60e74862006-11-21 10:28:10 -060057#define PCI_DEVICE_ID_IBM_OBSIDIAN_E 0x0339
Wayne Boyerd7b46272010-02-19 13:24:38 -080058
59#define PCI_DEVICE_ID_IBM_CROC_FPGA_E2 0x033D
60#define PCI_DEVICE_ID_IBM_CROC_ASIC_E2 0x034A
Brian King60e74862006-11-21 10:28:10 -060061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define IPR_SUBS_DEV_ID_2780 0x0264
63#define IPR_SUBS_DEV_ID_5702 0x0266
64#define IPR_SUBS_DEV_ID_5703 0x0278
65#define IPR_SUBS_DEV_ID_572E 0x028D
66#define IPR_SUBS_DEV_ID_573E 0x02D3
67#define IPR_SUBS_DEV_ID_573D 0x02D4
68#define IPR_SUBS_DEV_ID_571A 0x02C0
69#define IPR_SUBS_DEV_ID_571B 0x02BE
70#define IPR_SUBS_DEV_ID_571E 0x02BF
brking@us.ibm.com86f51432005-11-01 17:02:42 -060071#define IPR_SUBS_DEV_ID_571F 0x02D5
72#define IPR_SUBS_DEV_ID_572A 0x02C1
73#define IPR_SUBS_DEV_ID_572B 0x02C2
Brian King60e74862006-11-21 10:28:10 -060074#define IPR_SUBS_DEV_ID_572F 0x02C3
Brian King185eb312007-03-29 12:42:53 -050075#define IPR_SUBS_DEV_ID_574E 0x030A
brking@us.ibm.com86f51432005-11-01 17:02:42 -060076#define IPR_SUBS_DEV_ID_575B 0x030D
Brian King60e74862006-11-21 10:28:10 -060077#define IPR_SUBS_DEV_ID_575C 0x0338
Brian King185eb312007-03-29 12:42:53 -050078#define IPR_SUBS_DEV_ID_57B3 0x033A
Brian King60e74862006-11-21 10:28:10 -060079#define IPR_SUBS_DEV_ID_57B7 0x0360
80#define IPR_SUBS_DEV_ID_57B8 0x02C2
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Wayne Boyerd7b46272010-02-19 13:24:38 -080082#define IPR_SUBS_DEV_ID_57B4 0x033B
83#define IPR_SUBS_DEV_ID_57B2 0x035F
84#define IPR_SUBS_DEV_ID_57C6 0x0357
85
86#define IPR_SUBS_DEV_ID_57B5 0x033C
87#define IPR_SUBS_DEV_ID_57CE 0x035E
88#define IPR_SUBS_DEV_ID_57B1 0x0355
89
90#define IPR_SUBS_DEV_ID_574D 0x0356
91#define IPR_SUBS_DEV_ID_575D 0x035D
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define IPR_NAME "ipr"
94
95/*
96 * Return codes
97 */
98#define IPR_RC_JOB_CONTINUE 1
99#define IPR_RC_JOB_RETURN 2
100
101/*
102 * IOASCs
103 */
104#define IPR_IOASC_NR_INIT_CMD_REQUIRED 0x02040200
Brian King65f56472007-04-26 16:00:12 -0500105#define IPR_IOASC_NR_IOA_RESET_REQUIRED 0x02048000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define IPR_IOASC_SYNC_REQUIRED 0x023f0000
107#define IPR_IOASC_MED_DO_NOT_REALLOC 0x03110C00
108#define IPR_IOASC_HW_SEL_TIMEOUT 0x04050000
109#define IPR_IOASC_HW_DEV_BUS_STATUS 0x04448500
110#define IPR_IOASC_IOASC_MASK 0xFFFFFF00
111#define IPR_IOASC_SCSI_STATUS_MASK 0x000000FF
brking@us.ibm.comdfed8232005-11-01 17:02:55 -0600112#define IPR_IOASC_IR_INVALID_REQ_TYPE_OR_PKT 0x05240000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define IPR_IOASC_IR_RESOURCE_HANDLE 0x05250000
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600114#define IPR_IOASC_IR_NO_CMDS_TO_2ND_IOA 0x05258100
115#define IPR_IOASA_IR_DUAL_IOA_DISABLED 0x052C8000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#define IPR_IOASC_BUS_WAS_RESET 0x06290000
117#define IPR_IOASC_BUS_WAS_RESET_BY_OTHER 0x06298000
118#define IPR_IOASC_ABORTED_CMD_TERM_BY_HOST 0x0B5A0000
119
120#define IPR_FIRST_DRIVER_IOASC 0x10000000
121#define IPR_IOASC_IOA_WAS_RESET 0x10000001
122#define IPR_IOASC_PCI_ACCESS_ERROR 0x10000002
123
Brian King5469cb52007-03-29 12:42:40 -0500124/* Driver data flags */
125#define IPR_USE_LONG_TRANSOP_TIMEOUT 0x00000001
Brian King463fc692007-05-07 17:09:05 -0500126#define IPR_USE_PCI_WARM_RESET 0x00000002
Brian King5469cb52007-03-29 12:42:40 -0500127
Brian Kingac719ab2006-11-21 10:28:42 -0600128#define IPR_DEFAULT_MAX_ERROR_DUMP 984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#define IPR_NUM_LOG_HCAMS 2
130#define IPR_NUM_CFG_CHG_HCAMS 2
131#define IPR_NUM_HCAMS (IPR_NUM_LOG_HCAMS + IPR_NUM_CFG_CHG_HCAMS)
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800132
133#define IPR_MAX_SIS64_TARGETS_PER_BUS 1024
134#define IPR_MAX_SIS64_LUNS_PER_TARGET 0xffffffff
135
brking@us.ibm.comd71a8b02005-11-01 17:02:49 -0600136#define IPR_MAX_NUM_TARGETS_PER_BUS 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define IPR_MAX_NUM_LUNS_PER_TARGET 256
138#define IPR_MAX_NUM_VSET_LUNS_PER_TARGET 8
139#define IPR_VSET_BUS 0xff
140#define IPR_IOA_BUS 0xff
141#define IPR_IOA_TARGET 0xff
142#define IPR_IOA_LUN 0xff
Brian Kingb5145d22006-08-02 14:57:36 -0500143#define IPR_MAX_NUM_BUSES 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#define IPR_MAX_BUS_TO_SCAN IPR_MAX_NUM_BUSES
145
146#define IPR_NUM_RESET_RELOAD_RETRIES 3
147
148/* We need resources for HCAMS, IOA reset, IOA bringdown, and ERP */
149#define IPR_NUM_INTERNAL_CMD_BLKS (IPR_NUM_HCAMS + \
Wayne Boyerf72919e2010-02-19 13:24:21 -0800150 ((IPR_NUM_RESET_RELOAD_RETRIES + 1) * 2) + 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152#define IPR_MAX_COMMANDS IPR_NUM_BASE_CMD_BLKS
153#define IPR_NUM_CMD_BLKS (IPR_NUM_BASE_CMD_BLKS + \
154 IPR_NUM_INTERNAL_CMD_BLKS)
155
156#define IPR_MAX_PHYSICAL_DEVS 192
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800157#define IPR_DEFAULT_SIS64_DEVS 1024
158#define IPR_MAX_SIS64_DEVS 4096
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160#define IPR_MAX_SGLIST 64
161#define IPR_IOA_MAX_SECTORS 32767
162#define IPR_VSET_MAX_SECTORS 512
163#define IPR_MAX_CDB_LEN 16
Wayne Boyer3feeb89d2009-10-20 11:09:00 -0700164#define IPR_MAX_HRRQ_RETRIES 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166#define IPR_DEFAULT_BUS_WIDTH 16
167#define IPR_80MBs_SCSI_RATE ((80 * 10) / (IPR_DEFAULT_BUS_WIDTH / 8))
168#define IPR_U160_SCSI_RATE ((160 * 10) / (IPR_DEFAULT_BUS_WIDTH / 8))
169#define IPR_U320_SCSI_RATE ((320 * 10) / (IPR_DEFAULT_BUS_WIDTH / 8))
170#define IPR_MAX_SCSI_RATE(width) ((320 * 10) / ((width) / 8))
171
172#define IPR_IOA_RES_HANDLE 0xffffffff
Brian King1121b792006-03-29 09:37:16 -0600173#define IPR_INVALID_RES_HANDLE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#define IPR_IOA_RES_ADDR 0x00ffffff
175
176/*
177 * Adapter Commands
178 */
179#define IPR_QUERY_RSRC_STATE 0xC2
180#define IPR_RESET_DEVICE 0xC3
181#define IPR_RESET_TYPE_SELECT 0x80
182#define IPR_LUN_RESET 0x40
183#define IPR_TARGET_RESET 0x20
184#define IPR_BUS_RESET 0x10
Brian Kingb5145d22006-08-02 14:57:36 -0500185#define IPR_ATA_PHY_RESET 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define IPR_ID_HOST_RR_Q 0xC4
187#define IPR_QUERY_IOA_CONFIG 0xC5
188#define IPR_CANCEL_ALL_REQUESTS 0xCE
189#define IPR_HOST_CONTROLLED_ASYNC 0xCF
190#define IPR_HCAM_CDB_OP_CODE_CONFIG_CHANGE 0x01
191#define IPR_HCAM_CDB_OP_CODE_LOG_DATA 0x02
192#define IPR_SET_SUPPORTED_DEVICES 0xFB
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800193#define IPR_SET_ALL_SUPPORTED_DEVICES 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194#define IPR_IOA_SHUTDOWN 0xF7
195#define IPR_WR_BUF_DOWNLOAD_AND_SAVE 0x05
196
197/*
198 * Timeouts
199 */
200#define IPR_SHUTDOWN_TIMEOUT (ipr_fastfail ? 60 * HZ : 10 * 60 * HZ)
201#define IPR_VSET_RW_TIMEOUT (ipr_fastfail ? 30 * HZ : 2 * 60 * HZ)
202#define IPR_ABBREV_SHUTDOWN_TIMEOUT (10 * HZ)
Brian Kingac09c342007-04-26 16:00:16 -0500203#define IPR_DUAL_IOA_ABBR_SHUTDOWN_TO (2 * 60 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#define IPR_DEVICE_RESET_TIMEOUT (ipr_fastfail ? 10 * HZ : 30 * HZ)
205#define IPR_CANCEL_ALL_TIMEOUT (ipr_fastfail ? 10 * HZ : 30 * HZ)
206#define IPR_ABORT_TASK_TIMEOUT (ipr_fastfail ? 10 * HZ : 30 * HZ)
207#define IPR_INTERNAL_TIMEOUT (ipr_fastfail ? 10 * HZ : 30 * HZ)
208#define IPR_WRITE_BUFFER_TIMEOUT (10 * 60 * HZ)
209#define IPR_SET_SUP_DEVICE_TIMEOUT (2 * 60 * HZ)
210#define IPR_REQUEST_SENSE_TIMEOUT (10 * HZ)
211#define IPR_OPERATIONAL_TIMEOUT (5 * 60)
Brian King5469cb52007-03-29 12:42:40 -0500212#define IPR_LONG_OPERATIONAL_TIMEOUT (12 * 60)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#define IPR_WAIT_FOR_RESET_TIMEOUT (2 * HZ)
214#define IPR_CHECK_FOR_RESET_TIMEOUT (HZ / 10)
215#define IPR_WAIT_FOR_BIST_TIMEOUT (2 * HZ)
Brian King463fc692007-05-07 17:09:05 -0500216#define IPR_PCI_RESET_TIMEOUT (HZ / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#define IPR_DUMP_TIMEOUT (15 * HZ)
218
219/*
220 * SCSI Literals
221 */
222#define IPR_VENDOR_ID_LEN 8
223#define IPR_PROD_ID_LEN 16
224#define IPR_SERIAL_NUM_LEN 8
225
226/*
227 * Hardware literals
228 */
229#define IPR_FMT2_MBX_ADDR_MASK 0x0fffffff
230#define IPR_FMT2_MBX_BAR_SEL_MASK 0xf0000000
231#define IPR_FMT2_MKR_BAR_SEL_SHIFT 28
232#define IPR_GET_FMT2_BAR_SEL(mbx) \
233(((mbx) & IPR_FMT2_MBX_BAR_SEL_MASK) >> IPR_FMT2_MKR_BAR_SEL_SHIFT)
234#define IPR_SDT_FMT2_BAR0_SEL 0x0
235#define IPR_SDT_FMT2_BAR1_SEL 0x1
236#define IPR_SDT_FMT2_BAR2_SEL 0x2
237#define IPR_SDT_FMT2_BAR3_SEL 0x3
238#define IPR_SDT_FMT2_BAR4_SEL 0x4
239#define IPR_SDT_FMT2_BAR5_SEL 0x5
240#define IPR_SDT_FMT2_EXP_ROM_SEL 0x8
241#define IPR_FMT2_SDT_READY_TO_USE 0xC4D4E3F2
Wayne Boyerdcbad002010-02-19 13:24:14 -0800242#define IPR_FMT3_SDT_READY_TO_USE 0xC4D4E3F3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243#define IPR_DOORBELL 0x82800000
brking@us.ibm.com3d1d0da2005-11-01 17:01:54 -0600244#define IPR_RUNTIME_RESET 0x40000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Wayne Boyer214777b2010-02-19 13:24:26 -0800246#define IPR_IPL_INIT_MIN_STAGE_TIME 5
Wayne Boyer438b0332010-05-10 09:13:00 -0700247#define IPR_IPL_INIT_DEFAULT_STAGE_TIME 15
Wayne Boyer214777b2010-02-19 13:24:26 -0800248#define IPR_IPL_INIT_STAGE_UNKNOWN 0x0
249#define IPR_IPL_INIT_STAGE_TRANSOP 0xB0000000
250#define IPR_IPL_INIT_STAGE_MASK 0xff000000
251#define IPR_IPL_INIT_STAGE_TIME_MASK 0x0000ffff
252#define IPR_PCII_IPL_STAGE_CHANGE (0x80000000 >> 0)
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254#define IPR_PCII_IOA_TRANS_TO_OPER (0x80000000 >> 0)
255#define IPR_PCII_IOARCB_XFER_FAILED (0x80000000 >> 3)
256#define IPR_PCII_IOA_UNIT_CHECKED (0x80000000 >> 4)
257#define IPR_PCII_NO_HOST_RRQ (0x80000000 >> 5)
258#define IPR_PCII_CRITICAL_OPERATION (0x80000000 >> 6)
259#define IPR_PCII_IO_DEBUG_ACKNOWLEDGE (0x80000000 >> 7)
260#define IPR_PCII_IOARRIN_LOST (0x80000000 >> 27)
261#define IPR_PCII_MMIO_ERROR (0x80000000 >> 28)
262#define IPR_PCII_PROC_ERR_STATE (0x80000000 >> 29)
263#define IPR_PCII_HRRQ_UPDATED (0x80000000 >> 30)
264#define IPR_PCII_CORE_ISSUED_RST_REQ (0x80000000 >> 31)
265
266#define IPR_PCII_ERROR_INTERRUPTS \
267(IPR_PCII_IOARCB_XFER_FAILED | IPR_PCII_IOA_UNIT_CHECKED | \
268IPR_PCII_NO_HOST_RRQ | IPR_PCII_IOARRIN_LOST | IPR_PCII_MMIO_ERROR)
269
270#define IPR_PCII_OPER_INTERRUPTS \
271(IPR_PCII_ERROR_INTERRUPTS | IPR_PCII_HRRQ_UPDATED | IPR_PCII_IOA_TRANS_TO_OPER)
272
273#define IPR_UPROCI_RESET_ALERT (0x80000000 >> 7)
274#define IPR_UPROCI_IO_DEBUG_ALERT (0x80000000 >> 9)
275
276#define IPR_LDUMP_MAX_LONG_ACK_DELAY_IN_USEC 200000 /* 200 ms */
277#define IPR_LDUMP_MAX_SHORT_ACK_DELAY_IN_USEC 200000 /* 200 ms */
278
279/*
280 * Dump literals
281 */
282#define IPR_MAX_IOA_DUMP_SIZE (4 * 1024 * 1024)
283#define IPR_NUM_SDT_ENTRIES 511
284#define IPR_MAX_NUM_DUMP_PAGES ((IPR_MAX_IOA_DUMP_SIZE / PAGE_SIZE) + 1)
285
286/*
287 * Misc literals
288 */
289#define IPR_NUM_IOADL_ENTRIES IPR_MAX_SGLIST
290
291/*
292 * Adapter interface types
293 */
294
295struct ipr_res_addr {
296 u8 reserved;
297 u8 bus;
298 u8 target;
299 u8 lun;
300#define IPR_GET_PHYS_LOC(res_addr) \
301 (((res_addr).bus << 16) | ((res_addr).target << 8) | (res_addr).lun)
302}__attribute__((packed, aligned (4)));
303
304struct ipr_std_inq_vpids {
305 u8 vendor_id[IPR_VENDOR_ID_LEN];
306 u8 product_id[IPR_PROD_ID_LEN];
307}__attribute__((packed));
308
brking@us.ibm.comcfc32132005-11-01 17:00:18 -0600309struct ipr_vpd {
310 struct ipr_std_inq_vpids vpids;
311 u8 sn[IPR_SERIAL_NUM_LEN];
312}__attribute__((packed));
313
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -0600314struct ipr_ext_vpd {
315 struct ipr_vpd vpd;
316 __be32 wwid[2];
317}__attribute__((packed));
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319struct ipr_std_inq_data {
320 u8 peri_qual_dev_type;
321#define IPR_STD_INQ_PERI_QUAL(peri) ((peri) >> 5)
322#define IPR_STD_INQ_PERI_DEV_TYPE(peri) ((peri) & 0x1F)
323
324 u8 removeable_medium_rsvd;
325#define IPR_STD_INQ_REMOVEABLE_MEDIUM 0x80
326
327#define IPR_IS_DASD_DEVICE(std_inq) \
328((IPR_STD_INQ_PERI_DEV_TYPE((std_inq).peri_qual_dev_type) == TYPE_DISK) && \
329!(((std_inq).removeable_medium_rsvd) & IPR_STD_INQ_REMOVEABLE_MEDIUM))
330
331#define IPR_IS_SES_DEVICE(std_inq) \
332(IPR_STD_INQ_PERI_DEV_TYPE((std_inq).peri_qual_dev_type) == TYPE_ENCLOSURE)
333
334 u8 version;
335 u8 aen_naca_fmt;
336 u8 additional_len;
337 u8 sccs_rsvd;
338 u8 bq_enc_multi;
339 u8 sync_cmdq_flags;
340
341 struct ipr_std_inq_vpids vpids;
342
343 u8 ros_rsvd_ram_rsvd[4];
344
345 u8 serial_num[IPR_SERIAL_NUM_LEN];
346}__attribute__ ((packed));
347
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800348#define IPR_RES_TYPE_AF_DASD 0x00
349#define IPR_RES_TYPE_GENERIC_SCSI 0x01
350#define IPR_RES_TYPE_VOLUME_SET 0x02
351#define IPR_RES_TYPE_REMOTE_AF_DASD 0x03
352#define IPR_RES_TYPE_GENERIC_ATA 0x04
353#define IPR_RES_TYPE_ARRAY 0x05
354#define IPR_RES_TYPE_IOAFP 0xff
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356struct ipr_config_table_entry {
Brian Kingb5145d22006-08-02 14:57:36 -0500357 u8 proto;
358#define IPR_PROTO_SATA 0x02
359#define IPR_PROTO_SATA_ATAPI 0x03
360#define IPR_PROTO_SAS_STP 0x06
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800361#define IPR_PROTO_SAS_STP_ATAPI 0x07
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 u8 array_id;
363 u8 flags;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800364#define IPR_IS_IOA_RESOURCE 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 u8 rsvd_subtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800367#define IPR_QUEUEING_MODEL(res) ((((res)->flags) & 0x70) >> 4)
368#define IPR_QUEUE_FROZEN_MODEL 0
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -0600369#define IPR_QUEUE_NACA_MODEL 1
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 struct ipr_res_addr res_addr;
372 __be32 res_handle;
373 __be32 reserved4[2];
374 struct ipr_std_inq_data std_inq_data;
375}__attribute__ ((packed, aligned (4)));
376
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800377struct ipr_config_table_entry64 {
378 u8 res_type;
379 u8 proto;
380 u8 vset_num;
381 u8 array_id;
382 __be16 flags;
383 __be16 res_flags;
384#define IPR_QUEUEING_MODEL64(res) ((((res)->res_flags) & 0x7000) >> 12)
385 __be32 res_handle;
386 u8 dev_id_type;
387 u8 reserved[3];
388 __be64 dev_id;
389 __be64 lun;
390 __be64 lun_wwn[2];
391#define IPR_MAX_RES_PATH_LENGTH 24
392 __be64 res_path;
393 struct ipr_std_inq_data std_inq_data;
394 u8 reserved2[4];
395 __be64 reserved3[2]; // description text
396 u8 reserved4[8];
397}__attribute__ ((packed, aligned (8)));
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399struct ipr_config_table_hdr {
400 u8 num_entries;
401 u8 flags;
402#define IPR_UCODE_DOWNLOAD_REQ 0x10
403 __be16 reserved;
404}__attribute__((packed, aligned (4)));
405
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800406struct ipr_config_table_hdr64 {
407 __be16 num_entries;
408 __be16 reserved;
409 u8 flags;
410 u8 reserved2[11];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}__attribute__((packed, aligned (4)));
412
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800413struct ipr_config_table {
414 struct ipr_config_table_hdr hdr;
415 struct ipr_config_table_entry dev[0];
416}__attribute__((packed, aligned (4)));
417
418struct ipr_config_table64 {
419 struct ipr_config_table_hdr64 hdr64;
420 struct ipr_config_table_entry64 dev[0];
421}__attribute__((packed, aligned (8)));
422
423struct ipr_config_table_entry_wrapper {
424 union {
425 struct ipr_config_table_entry *cfgte;
426 struct ipr_config_table_entry64 *cfgte64;
427 } u;
428};
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430struct ipr_hostrcb_cfg_ch_not {
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -0800431 union {
432 struct ipr_config_table_entry cfgte;
433 struct ipr_config_table_entry64 cfgte64;
434 } u;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 u8 reserved[936];
436}__attribute__((packed, aligned (4)));
437
438struct ipr_supported_device {
439 __be16 data_length;
440 u8 reserved;
441 u8 num_records;
442 struct ipr_std_inq_vpids vpids;
443 u8 reserved2[16];
444}__attribute__((packed, aligned (4)));
445
446/* Command packet structure */
447struct ipr_cmd_pkt {
448 __be16 reserved; /* Reserved by IOA */
449 u8 request_type;
450#define IPR_RQTYPE_SCSICDB 0x00
451#define IPR_RQTYPE_IOACMD 0x01
452#define IPR_RQTYPE_HCAM 0x02
Brian Kingb5145d22006-08-02 14:57:36 -0500453#define IPR_RQTYPE_ATA_PASSTHRU 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Wayne Boyera32c0552010-02-19 13:23:36 -0800455 u8 reserved2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 u8 flags_hi;
458#define IPR_FLAGS_HI_WRITE_NOT_READ 0x80
459#define IPR_FLAGS_HI_NO_ULEN_CHK 0x20
460#define IPR_FLAGS_HI_SYNC_OVERRIDE 0x10
461#define IPR_FLAGS_HI_SYNC_COMPLETE 0x08
462#define IPR_FLAGS_HI_NO_LINK_DESC 0x04
463
464 u8 flags_lo;
465#define IPR_FLAGS_LO_ALIGNED_BFR 0x20
466#define IPR_FLAGS_LO_DELAY_AFTER_RST 0x10
467#define IPR_FLAGS_LO_UNTAGGED_TASK 0x00
468#define IPR_FLAGS_LO_SIMPLE_TASK 0x02
469#define IPR_FLAGS_LO_ORDERED_TASK 0x04
470#define IPR_FLAGS_LO_HEAD_OF_Q_TASK 0x06
471#define IPR_FLAGS_LO_ACA_TASK 0x08
472
473 u8 cdb[16];
474 __be16 timeout;
475}__attribute__ ((packed, aligned(4)));
476
Wayne Boyera32c0552010-02-19 13:23:36 -0800477struct ipr_ioarcb_ata_regs { /* 22 bytes */
Brian Kingb5145d22006-08-02 14:57:36 -0500478 u8 flags;
479#define IPR_ATA_FLAG_PACKET_CMD 0x80
480#define IPR_ATA_FLAG_XFER_TYPE_DMA 0x40
481#define IPR_ATA_FLAG_STATUS_ON_GOOD_COMPLETION 0x20
482 u8 reserved[3];
483
484 __be16 data;
485 u8 feature;
486 u8 nsect;
487 u8 lbal;
488 u8 lbam;
489 u8 lbah;
490 u8 device;
491 u8 command;
492 u8 reserved2[3];
493 u8 hob_feature;
494 u8 hob_nsect;
495 u8 hob_lbal;
496 u8 hob_lbam;
497 u8 hob_lbah;
498 u8 ctl;
499}__attribute__ ((packed, aligned(4)));
500
Brian King51b1c7e2007-03-29 12:43:50 -0500501struct ipr_ioadl_desc {
502 __be32 flags_and_data_len;
503#define IPR_IOADL_FLAGS_MASK 0xff000000
504#define IPR_IOADL_GET_FLAGS(x) (be32_to_cpu(x) & IPR_IOADL_FLAGS_MASK)
505#define IPR_IOADL_DATA_LEN_MASK 0x00ffffff
506#define IPR_IOADL_GET_DATA_LEN(x) (be32_to_cpu(x) & IPR_IOADL_DATA_LEN_MASK)
507#define IPR_IOADL_FLAGS_READ 0x48000000
508#define IPR_IOADL_FLAGS_READ_LAST 0x49000000
509#define IPR_IOADL_FLAGS_WRITE 0x68000000
510#define IPR_IOADL_FLAGS_WRITE_LAST 0x69000000
511#define IPR_IOADL_FLAGS_LAST 0x01000000
512
513 __be32 address;
514}__attribute__((packed, aligned (8)));
515
Wayne Boyera32c0552010-02-19 13:23:36 -0800516struct ipr_ioadl64_desc {
517 __be32 flags;
518 __be32 data_len;
519 __be64 address;
520}__attribute__((packed, aligned (16)));
521
522struct ipr_ata64_ioadl {
523 struct ipr_ioarcb_ata_regs regs;
524 u16 reserved[5];
525 struct ipr_ioadl64_desc ioadl64[IPR_NUM_IOADL_ENTRIES];
526}__attribute__((packed, aligned (16)));
527
Brian Kingb5145d22006-08-02 14:57:36 -0500528struct ipr_ioarcb_add_data {
529 union {
530 struct ipr_ioarcb_ata_regs regs;
Brian King51b1c7e2007-03-29 12:43:50 -0500531 struct ipr_ioadl_desc ioadl[5];
Brian Kingb5145d22006-08-02 14:57:36 -0500532 __be32 add_cmd_parms[10];
Wayne Boyera32c0552010-02-19 13:23:36 -0800533 } u;
534}__attribute__ ((packed, aligned (4)));
535
536struct ipr_ioarcb_sis64_add_addr_ecb {
537 __be64 ioasa_host_pci_addr;
538 __be64 data_ioadl_addr;
539 __be64 reserved;
540 __be32 ext_control_buf[4];
541}__attribute__((packed, aligned (8)));
Brian Kingb5145d22006-08-02 14:57:36 -0500542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/* IOA Request Control Block 128 bytes */
544struct ipr_ioarcb {
Wayne Boyera32c0552010-02-19 13:23:36 -0800545 union {
546 __be32 ioarcb_host_pci_addr;
547 __be64 ioarcb_host_pci_addr64;
548 } a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 __be32 res_handle;
550 __be32 host_response_handle;
551 __be32 reserved1;
552 __be32 reserved2;
553 __be32 reserved3;
554
Wayne Boyera32c0552010-02-19 13:23:36 -0800555 __be32 data_transfer_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 __be32 read_data_transfer_length;
557 __be32 write_ioadl_addr;
Wayne Boyera32c0552010-02-19 13:23:36 -0800558 __be32 ioadl_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 __be32 read_ioadl_addr;
560 __be32 read_ioadl_len;
561
562 __be32 ioasa_host_pci_addr;
563 __be16 ioasa_len;
564 __be16 reserved4;
565
566 struct ipr_cmd_pkt cmd_pkt;
567
Wayne Boyera32c0552010-02-19 13:23:36 -0800568 __be16 add_cmd_parms_offset;
569 __be16 add_cmd_parms_len;
570
571 union {
572 struct ipr_ioarcb_add_data add_data;
573 struct ipr_ioarcb_sis64_add_addr_ecb sis64_addr_data;
574 } u;
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}__attribute__((packed, aligned (4)));
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578struct ipr_ioasa_vset {
579 __be32 failing_lba_hi;
580 __be32 failing_lba_lo;
brking@us.ibm.comc8f74892005-11-01 17:02:08 -0600581 __be32 reserved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}__attribute__((packed, aligned (4)));
583
584struct ipr_ioasa_af_dasd {
585 __be32 failing_lba;
brking@us.ibm.comc8f74892005-11-01 17:02:08 -0600586 __be32 reserved[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}__attribute__((packed, aligned (4)));
588
589struct ipr_ioasa_gpdd {
590 u8 end_state;
591 u8 bus_phase;
592 __be16 reserved;
brking@us.ibm.comc8f74892005-11-01 17:02:08 -0600593 __be32 ioa_data[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}__attribute__((packed, aligned (4)));
595
Brian Kingb5145d22006-08-02 14:57:36 -0500596struct ipr_ioasa_gata {
597 u8 error;
598 u8 nsect; /* Interrupt reason */
599 u8 lbal;
600 u8 lbam;
601 u8 lbah;
602 u8 device;
603 u8 status;
604 u8 alt_status; /* ATA CTL */
605 u8 hob_nsect;
606 u8 hob_lbal;
607 u8 hob_lbam;
608 u8 hob_lbah;
609}__attribute__((packed, aligned (4)));
610
brking@us.ibm.comc8f74892005-11-01 17:02:08 -0600611struct ipr_auto_sense {
612 __be16 auto_sense_len;
613 __be16 ioa_data_len;
614 __be32 data[SCSI_SENSE_BUFFERSIZE/sizeof(__be32)];
615};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617struct ipr_ioasa {
618 __be32 ioasc;
619#define IPR_IOASC_SENSE_KEY(ioasc) ((ioasc) >> 24)
620#define IPR_IOASC_SENSE_CODE(ioasc) (((ioasc) & 0x00ff0000) >> 16)
621#define IPR_IOASC_SENSE_QUAL(ioasc) (((ioasc) & 0x0000ff00) >> 8)
622#define IPR_IOASC_SENSE_STATUS(ioasc) ((ioasc) & 0x000000ff)
623
624 __be16 ret_stat_len; /* Length of the returned IOASA */
625
626 __be16 avail_stat_len; /* Total Length of status available. */
627
628 __be32 residual_data_len; /* number of bytes in the host data */
629 /* buffers that were not used by the IOARCB command. */
630
631 __be32 ilid;
632#define IPR_NO_ILID 0
633#define IPR_DRIVER_ILID 0xffffffff
634
635 __be32 fd_ioasc;
636
637 __be32 fd_phys_locator;
638
639 __be32 fd_res_handle;
640
641 __be32 ioasc_specific; /* status code specific field */
brking@us.ibm.comc8f74892005-11-01 17:02:08 -0600642#define IPR_ADDITIONAL_STATUS_FMT 0x80000000
643#define IPR_AUTOSENSE_VALID 0x40000000
Brian Kingb5145d22006-08-02 14:57:36 -0500644#define IPR_ATA_DEVICE_WAS_RESET 0x20000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645#define IPR_IOASC_SPECIFIC_MASK 0x00ffffff
646#define IPR_FIELD_POINTER_VALID (0x80000000 >> 8)
647#define IPR_FIELD_POINTER_MASK 0x0000ffff
648
649 union {
650 struct ipr_ioasa_vset vset;
651 struct ipr_ioasa_af_dasd dasd;
652 struct ipr_ioasa_gpdd gpdd;
Brian Kingb5145d22006-08-02 14:57:36 -0500653 struct ipr_ioasa_gata gata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 } u;
brking@us.ibm.comc8f74892005-11-01 17:02:08 -0600655
656 struct ipr_auto_sense auto_sense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}__attribute__((packed, aligned (4)));
658
659struct ipr_mode_parm_hdr {
660 u8 length;
661 u8 medium_type;
662 u8 device_spec_parms;
663 u8 block_desc_len;
664}__attribute__((packed));
665
666struct ipr_mode_pages {
667 struct ipr_mode_parm_hdr hdr;
668 u8 data[255 - sizeof(struct ipr_mode_parm_hdr)];
669}__attribute__((packed));
670
671struct ipr_mode_page_hdr {
672 u8 ps_page_code;
673#define IPR_MODE_PAGE_PS 0x80
674#define IPR_GET_MODE_PAGE_CODE(hdr) ((hdr)->ps_page_code & 0x3F)
675 u8 page_length;
676}__attribute__ ((packed));
677
678struct ipr_dev_bus_entry {
679 struct ipr_res_addr res_addr;
680 u8 flags;
681#define IPR_SCSI_ATTR_ENABLE_QAS 0x80
682#define IPR_SCSI_ATTR_DISABLE_QAS 0x40
683#define IPR_SCSI_ATTR_QAS_MASK 0xC0
684#define IPR_SCSI_ATTR_ENABLE_TM 0x20
685#define IPR_SCSI_ATTR_NO_TERM_PWR 0x10
686#define IPR_SCSI_ATTR_TM_SUPPORTED 0x08
687#define IPR_SCSI_ATTR_LVD_TO_SE_NOT_ALLOWED 0x04
688
689 u8 scsi_id;
690 u8 bus_width;
691 u8 extended_reset_delay;
692#define IPR_EXTENDED_RESET_DELAY 7
693
694 __be32 max_xfer_rate;
695
696 u8 spinup_delay;
697 u8 reserved3;
698 __be16 reserved4;
699}__attribute__((packed, aligned (4)));
700
701struct ipr_mode_page28 {
702 struct ipr_mode_page_hdr hdr;
703 u8 num_entries;
704 u8 entry_length;
705 struct ipr_dev_bus_entry bus[0];
706}__attribute__((packed));
707
Brian Kingac09c342007-04-26 16:00:16 -0500708struct ipr_mode_page24 {
709 struct ipr_mode_page_hdr hdr;
710 u8 flags;
711#define IPR_ENABLE_DUAL_IOA_AF 0x80
712}__attribute__((packed));
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714struct ipr_ioa_vpd {
715 struct ipr_std_inq_data std_inq_data;
716 u8 ascii_part_num[12];
717 u8 reserved[40];
718 u8 ascii_plant_code[4];
719}__attribute__((packed));
720
721struct ipr_inquiry_page3 {
722 u8 peri_qual_dev_type;
723 u8 page_code;
724 u8 reserved1;
725 u8 page_length;
726 u8 ascii_len;
727 u8 reserved2[3];
728 u8 load_id[4];
729 u8 major_release;
730 u8 card_type;
731 u8 minor_release[2];
732 u8 ptf_number[4];
733 u8 patch_number[4];
734}__attribute__((packed));
735
Brian Kingac09c342007-04-26 16:00:16 -0500736struct ipr_inquiry_cap {
737 u8 peri_qual_dev_type;
738 u8 page_code;
739 u8 reserved1;
740 u8 page_length;
741 u8 ascii_len;
742 u8 reserved2;
743 u8 sis_version[2];
744 u8 cap;
745#define IPR_CAP_DUAL_IOA_RAID 0x80
746 u8 reserved3[15];
747}__attribute__((packed));
748
brking@us.ibm.com62275042005-11-01 17:01:14 -0600749#define IPR_INQUIRY_PAGE0_ENTRIES 20
750struct ipr_inquiry_page0 {
751 u8 peri_qual_dev_type;
752 u8 page_code;
753 u8 reserved1;
754 u8 len;
755 u8 page[IPR_INQUIRY_PAGE0_ENTRIES];
756}__attribute__((packed));
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758struct ipr_hostrcb_device_data_entry {
brking@us.ibm.comcfc32132005-11-01 17:00:18 -0600759 struct ipr_vpd vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 struct ipr_res_addr dev_res_addr;
brking@us.ibm.comcfc32132005-11-01 17:00:18 -0600761 struct ipr_vpd new_vpd;
762 struct ipr_vpd ioa_last_with_dev_vpd;
763 struct ipr_vpd cfc_last_with_dev_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 __be32 ioa_data[5];
765}__attribute__((packed, aligned (4)));
766
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -0600767struct ipr_hostrcb_device_data_entry_enhanced {
768 struct ipr_ext_vpd vpd;
769 u8 ccin[4];
770 struct ipr_res_addr dev_res_addr;
771 struct ipr_ext_vpd new_vpd;
772 u8 new_ccin[4];
773 struct ipr_ext_vpd ioa_last_with_dev_vpd;
774 struct ipr_ext_vpd cfc_last_with_dev_vpd;
775}__attribute__((packed, aligned (4)));
776
Wayne Boyer4565e372010-02-19 13:24:07 -0800777struct ipr_hostrcb64_device_data_entry_enhanced {
778 struct ipr_ext_vpd vpd;
779 u8 ccin[4];
780 u8 res_path[8];
781 struct ipr_ext_vpd new_vpd;
782 u8 new_ccin[4];
783 struct ipr_ext_vpd ioa_last_with_dev_vpd;
784 struct ipr_ext_vpd cfc_last_with_dev_vpd;
785}__attribute__((packed, aligned (4)));
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787struct ipr_hostrcb_array_data_entry {
brking@us.ibm.comcfc32132005-11-01 17:00:18 -0600788 struct ipr_vpd vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 struct ipr_res_addr expected_dev_res_addr;
790 struct ipr_res_addr dev_res_addr;
791}__attribute__((packed, aligned (4)));
792
Wayne Boyer4565e372010-02-19 13:24:07 -0800793struct ipr_hostrcb64_array_data_entry {
794 struct ipr_ext_vpd vpd;
795 u8 ccin[4];
796 u8 expected_res_path[8];
797 u8 res_path[8];
798}__attribute__((packed, aligned (4)));
799
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -0600800struct ipr_hostrcb_array_data_entry_enhanced {
801 struct ipr_ext_vpd vpd;
802 u8 ccin[4];
803 struct ipr_res_addr expected_dev_res_addr;
804 struct ipr_res_addr dev_res_addr;
805}__attribute__((packed, aligned (4)));
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807struct ipr_hostrcb_type_ff_error {
Wayne Boyer438b0332010-05-10 09:13:00 -0700808 __be32 ioa_data[758];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}__attribute__((packed, aligned (4)));
810
811struct ipr_hostrcb_type_01_error {
812 __be32 seek_counter;
813 __be32 read_counter;
814 u8 sense_data[32];
815 __be32 ioa_data[236];
816}__attribute__((packed, aligned (4)));
817
818struct ipr_hostrcb_type_02_error {
brking@us.ibm.comcfc32132005-11-01 17:00:18 -0600819 struct ipr_vpd ioa_vpd;
820 struct ipr_vpd cfc_vpd;
821 struct ipr_vpd ioa_last_attached_to_cfc_vpd;
822 struct ipr_vpd cfc_last_attached_to_ioa_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 __be32 ioa_data[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}__attribute__((packed, aligned (4)));
825
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -0600826struct ipr_hostrcb_type_12_error {
827 struct ipr_ext_vpd ioa_vpd;
828 struct ipr_ext_vpd cfc_vpd;
829 struct ipr_ext_vpd ioa_last_attached_to_cfc_vpd;
830 struct ipr_ext_vpd cfc_last_attached_to_ioa_vpd;
831 __be32 ioa_data[3];
832}__attribute__((packed, aligned (4)));
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834struct ipr_hostrcb_type_03_error {
brking@us.ibm.comcfc32132005-11-01 17:00:18 -0600835 struct ipr_vpd ioa_vpd;
836 struct ipr_vpd cfc_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 __be32 errors_detected;
838 __be32 errors_logged;
839 u8 ioa_data[12];
brking@us.ibm.comcfc32132005-11-01 17:00:18 -0600840 struct ipr_hostrcb_device_data_entry dev[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}__attribute__((packed, aligned (4)));
842
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -0600843struct ipr_hostrcb_type_13_error {
844 struct ipr_ext_vpd ioa_vpd;
845 struct ipr_ext_vpd cfc_vpd;
846 __be32 errors_detected;
847 __be32 errors_logged;
848 struct ipr_hostrcb_device_data_entry_enhanced dev[3];
849}__attribute__((packed, aligned (4)));
850
Wayne Boyer4565e372010-02-19 13:24:07 -0800851struct ipr_hostrcb_type_23_error {
852 struct ipr_ext_vpd ioa_vpd;
853 struct ipr_ext_vpd cfc_vpd;
854 __be32 errors_detected;
855 __be32 errors_logged;
856 struct ipr_hostrcb64_device_data_entry_enhanced dev[3];
857}__attribute__((packed, aligned (4)));
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859struct ipr_hostrcb_type_04_error {
brking@us.ibm.comcfc32132005-11-01 17:00:18 -0600860 struct ipr_vpd ioa_vpd;
861 struct ipr_vpd cfc_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 u8 ioa_data[12];
863 struct ipr_hostrcb_array_data_entry array_member[10];
864 __be32 exposed_mode_adn;
865 __be32 array_id;
brking@us.ibm.comcfc32132005-11-01 17:00:18 -0600866 struct ipr_vpd incomp_dev_vpd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 __be32 ioa_data2;
868 struct ipr_hostrcb_array_data_entry array_member2[8];
869 struct ipr_res_addr last_func_vset_res_addr;
870 u8 vset_serial_num[IPR_SERIAL_NUM_LEN];
871 u8 protection_level[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}__attribute__((packed, aligned (4)));
873
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -0600874struct ipr_hostrcb_type_14_error {
875 struct ipr_ext_vpd ioa_vpd;
876 struct ipr_ext_vpd cfc_vpd;
877 __be32 exposed_mode_adn;
878 __be32 array_id;
879 struct ipr_res_addr last_func_vset_res_addr;
880 u8 vset_serial_num[IPR_SERIAL_NUM_LEN];
881 u8 protection_level[8];
882 __be32 num_entries;
883 struct ipr_hostrcb_array_data_entry_enhanced array_member[18];
884}__attribute__((packed, aligned (4)));
885
Wayne Boyer4565e372010-02-19 13:24:07 -0800886struct ipr_hostrcb_type_24_error {
887 struct ipr_ext_vpd ioa_vpd;
888 struct ipr_ext_vpd cfc_vpd;
889 u8 reserved[2];
890 u8 exposed_mode_adn;
891#define IPR_INVALID_ARRAY_DEV_NUM 0xff
892 u8 array_id;
893 u8 last_res_path[8];
894 u8 protection_level[8];
895 struct ipr_ext_vpd array_vpd;
896 u8 description[16];
897 u8 reserved2[3];
898 u8 num_entries;
899 struct ipr_hostrcb64_array_data_entry array_member[32];
900}__attribute__((packed, aligned (4)));
901
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -0600902struct ipr_hostrcb_type_07_error {
903 u8 failure_reason[64];
904 struct ipr_vpd vpd;
905 u32 data[222];
906}__attribute__((packed, aligned (4)));
907
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -0600908struct ipr_hostrcb_type_17_error {
909 u8 failure_reason[64];
910 struct ipr_ext_vpd vpd;
911 u32 data[476];
912}__attribute__((packed, aligned (4)));
913
Brian King49dc6a12006-11-21 10:28:35 -0600914struct ipr_hostrcb_config_element {
915 u8 type_status;
916#define IPR_PATH_CFG_TYPE_MASK 0xF0
917#define IPR_PATH_CFG_NOT_EXIST 0x00
918#define IPR_PATH_CFG_IOA_PORT 0x10
919#define IPR_PATH_CFG_EXP_PORT 0x20
920#define IPR_PATH_CFG_DEVICE_PORT 0x30
921#define IPR_PATH_CFG_DEVICE_LUN 0x40
922
923#define IPR_PATH_CFG_STATUS_MASK 0x0F
924#define IPR_PATH_CFG_NO_PROB 0x00
925#define IPR_PATH_CFG_DEGRADED 0x01
926#define IPR_PATH_CFG_FAILED 0x02
927#define IPR_PATH_CFG_SUSPECT 0x03
928#define IPR_PATH_NOT_DETECTED 0x04
929#define IPR_PATH_INCORRECT_CONN 0x05
930
931 u8 cascaded_expander;
932 u8 phy;
933 u8 link_rate;
934#define IPR_PHY_LINK_RATE_MASK 0x0F
935
936 __be32 wwid[2];
937}__attribute__((packed, aligned (4)));
938
Wayne Boyer4565e372010-02-19 13:24:07 -0800939struct ipr_hostrcb64_config_element {
940 __be16 length;
941 u8 descriptor_id;
942#define IPR_DESCRIPTOR_MASK 0xC0
943#define IPR_DESCRIPTOR_SIS64 0x00
944
945 u8 reserved;
946 u8 type_status;
947
948 u8 reserved2[2];
949 u8 link_rate;
950
951 u8 res_path[8];
952 __be32 wwid[2];
953}__attribute__((packed, aligned (8)));
954
Brian King49dc6a12006-11-21 10:28:35 -0600955struct ipr_hostrcb_fabric_desc {
956 __be16 length;
957 u8 ioa_port;
958 u8 cascaded_expander;
959 u8 phy;
960 u8 path_state;
961#define IPR_PATH_ACTIVE_MASK 0xC0
962#define IPR_PATH_NO_INFO 0x00
963#define IPR_PATH_ACTIVE 0x40
964#define IPR_PATH_NOT_ACTIVE 0x80
965
966#define IPR_PATH_STATE_MASK 0x0F
967#define IPR_PATH_STATE_NO_INFO 0x00
968#define IPR_PATH_HEALTHY 0x01
969#define IPR_PATH_DEGRADED 0x02
970#define IPR_PATH_FAILED 0x03
971
972 __be16 num_entries;
973 struct ipr_hostrcb_config_element elem[1];
974}__attribute__((packed, aligned (4)));
975
Wayne Boyer4565e372010-02-19 13:24:07 -0800976struct ipr_hostrcb64_fabric_desc {
977 __be16 length;
978 u8 descriptor_id;
979
980 u8 reserved;
981 u8 path_state;
982
983 u8 reserved2[2];
984 u8 res_path[8];
985 u8 reserved3[6];
986 __be16 num_entries;
987 struct ipr_hostrcb64_config_element elem[1];
988}__attribute__((packed, aligned (8)));
989
Brian King49dc6a12006-11-21 10:28:35 -0600990#define for_each_fabric_cfg(fabric, cfg) \
991 for (cfg = (fabric)->elem; \
992 cfg < ((fabric)->elem + be16_to_cpu((fabric)->num_entries)); \
993 cfg++)
994
995struct ipr_hostrcb_type_20_error {
996 u8 failure_reason[64];
997 u8 reserved[3];
998 u8 num_entries;
999 struct ipr_hostrcb_fabric_desc desc[1];
1000}__attribute__((packed, aligned (4)));
1001
Wayne Boyer4565e372010-02-19 13:24:07 -08001002struct ipr_hostrcb_type_30_error {
1003 u8 failure_reason[64];
1004 u8 reserved[3];
1005 u8 num_entries;
1006 struct ipr_hostrcb64_fabric_desc desc[1];
1007}__attribute__((packed, aligned (4)));
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009struct ipr_hostrcb_error {
Wayne Boyer4565e372010-02-19 13:24:07 -08001010 __be32 fd_ioasc;
1011 struct ipr_res_addr fd_res_addr;
1012 __be32 fd_res_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 __be32 prc;
1014 union {
1015 struct ipr_hostrcb_type_ff_error type_ff_error;
1016 struct ipr_hostrcb_type_01_error type_01_error;
1017 struct ipr_hostrcb_type_02_error type_02_error;
1018 struct ipr_hostrcb_type_03_error type_03_error;
1019 struct ipr_hostrcb_type_04_error type_04_error;
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001020 struct ipr_hostrcb_type_07_error type_07_error;
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001021 struct ipr_hostrcb_type_12_error type_12_error;
1022 struct ipr_hostrcb_type_13_error type_13_error;
1023 struct ipr_hostrcb_type_14_error type_14_error;
1024 struct ipr_hostrcb_type_17_error type_17_error;
Brian King49dc6a12006-11-21 10:28:35 -06001025 struct ipr_hostrcb_type_20_error type_20_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 } u;
1027}__attribute__((packed, aligned (4)));
1028
Wayne Boyer4565e372010-02-19 13:24:07 -08001029struct ipr_hostrcb64_error {
1030 __be32 fd_ioasc;
1031 __be32 ioa_fw_level;
1032 __be32 fd_res_handle;
1033 __be32 prc;
1034 __be64 fd_dev_id;
1035 __be64 fd_lun;
1036 u8 fd_res_path[8];
1037 __be64 time_stamp;
1038 u8 reserved[2];
1039 union {
1040 struct ipr_hostrcb_type_ff_error type_ff_error;
1041 struct ipr_hostrcb_type_12_error type_12_error;
1042 struct ipr_hostrcb_type_17_error type_17_error;
1043 struct ipr_hostrcb_type_23_error type_23_error;
1044 struct ipr_hostrcb_type_24_error type_24_error;
1045 struct ipr_hostrcb_type_30_error type_30_error;
1046 } u;
1047}__attribute__((packed, aligned (8)));
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049struct ipr_hostrcb_raw {
1050 __be32 data[sizeof(struct ipr_hostrcb_error)/sizeof(__be32)];
1051}__attribute__((packed, aligned (4)));
1052
1053struct ipr_hcam {
1054 u8 op_code;
1055#define IPR_HOST_RCB_OP_CODE_CONFIG_CHANGE 0xE1
1056#define IPR_HOST_RCB_OP_CODE_LOG_DATA 0xE2
1057
1058 u8 notify_type;
1059#define IPR_HOST_RCB_NOTIF_TYPE_EXISTING_CHANGED 0x00
1060#define IPR_HOST_RCB_NOTIF_TYPE_NEW_ENTRY 0x01
1061#define IPR_HOST_RCB_NOTIF_TYPE_REM_ENTRY 0x02
1062#define IPR_HOST_RCB_NOTIF_TYPE_ERROR_LOG_ENTRY 0x10
1063#define IPR_HOST_RCB_NOTIF_TYPE_INFORMATION_ENTRY 0x11
1064
1065 u8 notifications_lost;
1066#define IPR_HOST_RCB_NO_NOTIFICATIONS_LOST 0
1067#define IPR_HOST_RCB_NOTIFICATIONS_LOST 0x80
1068
1069 u8 flags;
1070#define IPR_HOSTRCB_INTERNAL_OPER 0x80
1071#define IPR_HOSTRCB_ERR_RESP_SENT 0x40
1072
1073 u8 overlay_id;
1074#define IPR_HOST_RCB_OVERLAY_ID_1 0x01
1075#define IPR_HOST_RCB_OVERLAY_ID_2 0x02
1076#define IPR_HOST_RCB_OVERLAY_ID_3 0x03
1077#define IPR_HOST_RCB_OVERLAY_ID_4 0x04
1078#define IPR_HOST_RCB_OVERLAY_ID_6 0x06
brking@us.ibm.comb0df54b2005-11-01 17:01:47 -06001079#define IPR_HOST_RCB_OVERLAY_ID_7 0x07
brking@us.ibm.comee0f05b2005-11-01 17:02:15 -06001080#define IPR_HOST_RCB_OVERLAY_ID_12 0x12
1081#define IPR_HOST_RCB_OVERLAY_ID_13 0x13
1082#define IPR_HOST_RCB_OVERLAY_ID_14 0x14
1083#define IPR_HOST_RCB_OVERLAY_ID_16 0x16
1084#define IPR_HOST_RCB_OVERLAY_ID_17 0x17
Brian King49dc6a12006-11-21 10:28:35 -06001085#define IPR_HOST_RCB_OVERLAY_ID_20 0x20
Wayne Boyer4565e372010-02-19 13:24:07 -08001086#define IPR_HOST_RCB_OVERLAY_ID_23 0x23
1087#define IPR_HOST_RCB_OVERLAY_ID_24 0x24
1088#define IPR_HOST_RCB_OVERLAY_ID_26 0x26
1089#define IPR_HOST_RCB_OVERLAY_ID_30 0x30
1090#define IPR_HOST_RCB_OVERLAY_ID_DEFAULT 0xFF
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 u8 reserved1[3];
1093 __be32 ilid;
1094 __be32 time_since_last_ioa_reset;
1095 __be32 reserved2;
1096 __be32 length;
1097
1098 union {
1099 struct ipr_hostrcb_error error;
Wayne Boyer4565e372010-02-19 13:24:07 -08001100 struct ipr_hostrcb64_error error64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 struct ipr_hostrcb_cfg_ch_not ccn;
1102 struct ipr_hostrcb_raw raw;
1103 } u;
1104}__attribute__((packed, aligned (4)));
1105
1106struct ipr_hostrcb {
1107 struct ipr_hcam hcam;
1108 dma_addr_t hostrcb_dma;
1109 struct list_head queue;
Brian King49dc6a12006-11-21 10:28:35 -06001110 struct ipr_ioa_cfg *ioa_cfg;
Wayne Boyer4565e372010-02-19 13:24:07 -08001111 char rp_buffer[IPR_MAX_RES_PATH_LENGTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112};
1113
1114/* IPR smart dump table structures */
1115struct ipr_sdt_entry {
Wayne Boyerdcbad002010-02-19 13:24:14 -08001116 __be32 start_token;
1117 __be32 end_token;
1118 u8 reserved[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 u8 flags;
1121#define IPR_SDT_ENDIAN 0x80
1122#define IPR_SDT_VALID_ENTRY 0x20
1123
1124 u8 resv;
1125 __be16 priority;
1126}__attribute__((packed, aligned (4)));
1127
1128struct ipr_sdt_header {
1129 __be32 state;
1130 __be32 num_entries;
1131 __be32 num_entries_used;
1132 __be32 dump_size;
1133}__attribute__((packed, aligned (4)));
1134
1135struct ipr_sdt {
1136 struct ipr_sdt_header hdr;
1137 struct ipr_sdt_entry entry[IPR_NUM_SDT_ENTRIES];
1138}__attribute__((packed, aligned (4)));
1139
1140struct ipr_uc_sdt {
1141 struct ipr_sdt_header hdr;
1142 struct ipr_sdt_entry entry[1];
1143}__attribute__((packed, aligned (4)));
1144
1145/*
1146 * Driver types
1147 */
1148struct ipr_bus_attributes {
1149 u8 bus;
1150 u8 qas_enabled;
1151 u8 bus_width;
1152 u8 reserved;
1153 u32 max_xfer_rate;
1154};
1155
Brian King35a39692006-09-25 12:39:20 -05001156struct ipr_sata_port {
1157 struct ipr_ioa_cfg *ioa_cfg;
1158 struct ata_port *ap;
1159 struct ipr_resource_entry *res;
1160 struct ipr_ioasa_gata ioasa;
1161};
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163struct ipr_resource_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 u8 needs_sync_complete:1;
1165 u8 in_erp:1;
1166 u8 add_to_ml:1;
1167 u8 del_from_ml:1;
1168 u8 resetting_device:1;
1169
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001170 u32 bus; /* AKA channel */
1171 u32 target; /* AKA id */
1172 u32 lun;
1173#define IPR_ARRAY_VIRTUAL_BUS 0x1
1174#define IPR_VSET_VIRTUAL_BUS 0x2
1175#define IPR_IOAFP_VIRTUAL_BUS 0x3
1176
1177#define IPR_GET_RES_PHYS_LOC(res) \
1178 (((res)->bus << 24) | ((res)->target << 8) | (res)->lun)
1179
1180 u8 ata_class;
1181
1182 u8 flags;
1183 __be16 res_flags;
1184
1185 __be32 type;
1186
1187 u8 qmodel;
1188 struct ipr_std_inq_data std_inq_data;
1189
1190 __be32 res_handle;
1191 __be64 dev_id;
1192 struct scsi_lun dev_lun;
1193 u8 res_path[8];
1194
1195 struct ipr_ioa_cfg *ioa_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct scsi_device *sdev;
Brian King35a39692006-09-25 12:39:20 -05001197 struct ipr_sata_port *sata_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 struct list_head queue;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001199}; /* struct ipr_resource_entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201struct ipr_resource_hdr {
1202 u16 num_entries;
1203 u16 reserved;
1204};
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206struct ipr_misc_cbs {
1207 struct ipr_ioa_vpd ioa_vpd;
brking@us.ibm.com62275042005-11-01 17:01:14 -06001208 struct ipr_inquiry_page0 page0_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 struct ipr_inquiry_page3 page3_data;
Brian Kingac09c342007-04-26 16:00:16 -05001210 struct ipr_inquiry_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 struct ipr_mode_pages mode_pages;
1212 struct ipr_supported_device supp_dev;
1213};
1214
1215struct ipr_interrupt_offsets {
1216 unsigned long set_interrupt_mask_reg;
1217 unsigned long clr_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001218 unsigned long clr_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 unsigned long sense_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001220 unsigned long sense_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 unsigned long clr_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001222 unsigned long clr_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 unsigned long sense_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001225 unsigned long sense_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 unsigned long ioarrin_reg;
1227 unsigned long sense_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001228 unsigned long sense_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 unsigned long set_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001230 unsigned long set_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 unsigned long clr_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001232 unsigned long clr_uproc_interrupt_reg32;
1233
1234 unsigned long init_feedback_reg;
Wayne Boyerdcbad002010-02-19 13:24:14 -08001235
1236 unsigned long dump_addr_reg;
1237 unsigned long dump_data_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238};
1239
1240struct ipr_interrupts {
1241 void __iomem *set_interrupt_mask_reg;
1242 void __iomem *clr_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001243 void __iomem *clr_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 void __iomem *sense_interrupt_mask_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001245 void __iomem *sense_interrupt_mask_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 void __iomem *clr_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001247 void __iomem *clr_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 void __iomem *sense_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001250 void __iomem *sense_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 void __iomem *ioarrin_reg;
1252 void __iomem *sense_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001253 void __iomem *sense_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 void __iomem *set_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001255 void __iomem *set_uproc_interrupt_reg32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 void __iomem *clr_uproc_interrupt_reg;
Wayne Boyer214777b2010-02-19 13:24:26 -08001257 void __iomem *clr_uproc_interrupt_reg32;
1258
1259 void __iomem *init_feedback_reg;
Wayne Boyerdcbad002010-02-19 13:24:14 -08001260
1261 void __iomem *dump_addr_reg;
1262 void __iomem *dump_data_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263};
1264
1265struct ipr_chip_cfg_t {
1266 u32 mailbox;
1267 u8 cache_line_size;
1268 struct ipr_interrupt_offsets regs;
1269};
1270
1271struct ipr_chip_t {
1272 u16 vendor;
1273 u16 device;
Wayne Boyer1be7bd82009-06-17 09:55:35 -07001274 u16 intr_type;
1275#define IPR_USE_LSI 0x00
1276#define IPR_USE_MSI 0x01
Wayne Boyera32c0552010-02-19 13:23:36 -08001277 u16 sis_type;
1278#define IPR_SIS32 0x00
1279#define IPR_SIS64 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 const struct ipr_chip_cfg_t *cfg;
1281};
1282
1283enum ipr_shutdown_type {
1284 IPR_SHUTDOWN_NORMAL = 0x00,
1285 IPR_SHUTDOWN_PREPARE_FOR_NORMAL = 0x40,
1286 IPR_SHUTDOWN_ABBREV = 0x80,
1287 IPR_SHUTDOWN_NONE = 0x100
1288};
1289
1290struct ipr_trace_entry {
1291 u32 time;
1292
1293 u8 op_code;
Brian King35a39692006-09-25 12:39:20 -05001294 u8 ata_op_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 u8 type;
1296#define IPR_TRACE_START 0x00
1297#define IPR_TRACE_FINISH 0xff
Brian King35a39692006-09-25 12:39:20 -05001298 u8 cmd_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 __be32 res_handle;
1301 union {
1302 u32 ioasc;
1303 u32 add_data;
1304 u32 res_addr;
1305 } u;
1306};
1307
1308struct ipr_sglist {
1309 u32 order;
1310 u32 num_sg;
brking@us.ibm.com12baa422005-11-01 17:01:27 -06001311 u32 num_dma_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 u32 buffer_len;
1313 struct scatterlist scatterlist[1];
1314};
1315
1316enum ipr_sdt_state {
1317 INACTIVE,
1318 WAIT_FOR_DUMP,
1319 GET_DUMP,
1320 ABORT_DUMP,
1321 DUMP_OBTAINED
1322};
1323
1324/* Per-controller data */
1325struct ipr_ioa_cfg {
1326 char eye_catcher[8];
1327#define IPR_EYECATCHER "iprcfg"
1328
1329 struct list_head queue;
1330
1331 u8 allow_interrupts:1;
1332 u8 in_reset_reload:1;
1333 u8 in_ioa_bringdown:1;
1334 u8 ioa_unit_checked:1;
1335 u8 ioa_is_dead:1;
1336 u8 dump_taken:1;
1337 u8 allow_cmds:1;
1338 u8 allow_ml_add_del:1;
brking@us.ibm.comce155cc2005-11-17 09:35:12 -06001339 u8 needs_hard_reset:1;
Brian Kingac09c342007-04-26 16:00:16 -05001340 u8 dual_raid:1;
Brian King463fc692007-05-07 17:09:05 -05001341 u8 needs_warm_reset:1;
Wayne Boyer95fecd92009-06-16 15:13:28 -07001342 u8 msi_received:1;
Wayne Boyera32c0552010-02-19 13:23:36 -08001343 u8 sis64:1;
Brian King463fc692007-05-07 17:09:05 -05001344
1345 u8 revid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001347 /*
1348 * Bitmaps for SIS64 generated target values
1349 */
1350 unsigned long *target_ids;
1351 unsigned long *array_ids;
1352 unsigned long *vset_ids;
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 u16 type; /* CCIN of the card */
1355
1356 u8 log_level;
1357#define IPR_MAX_LOG_LEVEL 4
1358#define IPR_DEFAULT_LOG_LEVEL 2
1359
1360#define IPR_NUM_TRACE_INDEX_BITS 8
1361#define IPR_NUM_TRACE_ENTRIES (1 << IPR_NUM_TRACE_INDEX_BITS)
1362#define IPR_TRACE_SIZE (sizeof(struct ipr_trace_entry) * IPR_NUM_TRACE_ENTRIES)
1363 char trace_start[8];
1364#define IPR_TRACE_START_LABEL "trace"
1365 struct ipr_trace_entry *trace;
1366 u32 trace_index:IPR_NUM_TRACE_INDEX_BITS;
1367
1368 /*
1369 * Queue for free command blocks
1370 */
1371 char ipr_free_label[8];
1372#define IPR_FREEQ_LABEL "free-q"
1373 struct list_head free_q;
1374
1375 /*
1376 * Queue for command blocks outstanding to the adapter
1377 */
1378 char ipr_pending_label[8];
1379#define IPR_PENDQ_LABEL "pend-q"
1380 struct list_head pending_q;
1381
1382 char cfg_table_start[8];
1383#define IPR_CFG_TBL_START "cfg"
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001384 union {
1385 struct ipr_config_table *cfg_table;
1386 struct ipr_config_table64 *cfg_table64;
1387 } u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 dma_addr_t cfg_table_dma;
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001389 u32 cfg_table_size;
1390 u32 max_devs_supported;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 char resource_table_label[8];
1393#define IPR_RES_TABLE_LABEL "res_tbl"
1394 struct ipr_resource_entry *res_entries;
1395 struct list_head free_res_q;
1396 struct list_head used_res_q;
1397
1398 char ipr_hcam_label[8];
1399#define IPR_HCAM_LABEL "hcams"
1400 struct ipr_hostrcb *hostrcb[IPR_NUM_HCAMS];
1401 dma_addr_t hostrcb_dma[IPR_NUM_HCAMS];
1402 struct list_head hostrcb_free_q;
1403 struct list_head hostrcb_pending_q;
1404
1405 __be32 *host_rrq;
1406 dma_addr_t host_rrq_dma;
1407#define IPR_HRRQ_REQ_RESP_HANDLE_MASK 0xfffffffc
1408#define IPR_HRRQ_RESP_BIT_SET 0x00000002
1409#define IPR_HRRQ_TOGGLE_BIT 0x00000001
1410#define IPR_HRRQ_REQ_RESP_HANDLE_SHIFT 2
1411 volatile __be32 *hrrq_start;
1412 volatile __be32 *hrrq_end;
1413 volatile __be32 *hrrq_curr;
1414 volatile u32 toggle_bit;
1415
1416 struct ipr_bus_attributes bus_attr[IPR_MAX_NUM_BUSES];
1417
Brian King5469cb52007-03-29 12:42:40 -05001418 unsigned int transop_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 const struct ipr_chip_cfg_t *chip_cfg;
Wayne Boyer1be7bd82009-06-17 09:55:35 -07001420 const struct ipr_chip_t *ipr_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 void __iomem *hdw_dma_regs; /* iomapped PCI memory space */
1423 unsigned long hdw_dma_regs_pci; /* raw PCI memory space */
1424 void __iomem *ioa_mailbox;
1425 struct ipr_interrupts regs;
1426
1427 u16 saved_pcix_cmd_reg;
1428 u16 reset_retries;
1429
1430 u32 errors_logged;
brking@us.ibm.com3d1d0da2005-11-01 17:01:54 -06001431 u32 doorbell;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 struct Scsi_Host *host;
1434 struct pci_dev *pdev;
1435 struct ipr_sglist *ucode_sglist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 u8 saved_mode_page_len;
1437
1438 struct work_struct work_q;
1439
1440 wait_queue_head_t reset_wait_q;
Wayne Boyer95fecd92009-06-16 15:13:28 -07001441 wait_queue_head_t msi_wait_q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 struct ipr_dump *dump;
1444 enum ipr_sdt_state sdt_state;
1445
1446 struct ipr_misc_cbs *vpd_cbs;
1447 dma_addr_t vpd_cbs_dma;
1448
1449 struct pci_pool *ipr_cmd_pool;
1450
1451 struct ipr_cmnd *reset_cmd;
Brian King463fc692007-05-07 17:09:05 -05001452 int (*reset) (struct ipr_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Brian King35a39692006-09-25 12:39:20 -05001454 struct ata_host ata_host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 char ipr_cmd_label[8];
Brian King0124ca92009-07-30 10:58:51 -05001456#define IPR_CMD_LABEL "ipr_cmd"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 struct ipr_cmnd *ipr_cmnd_list[IPR_NUM_CMD_BLKS];
Wayne Boyera32c0552010-02-19 13:23:36 -08001458 dma_addr_t ipr_cmnd_list_dma[IPR_NUM_CMD_BLKS];
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001459}; /* struct ipr_ioa_cfg */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461struct ipr_cmnd {
1462 struct ipr_ioarcb ioarcb;
Wayne Boyera32c0552010-02-19 13:23:36 -08001463 union {
1464 struct ipr_ioadl_desc ioadl[IPR_NUM_IOADL_ENTRIES];
1465 struct ipr_ioadl64_desc ioadl64[IPR_NUM_IOADL_ENTRIES];
1466 struct ipr_ata64_ioadl ata_ioadl;
1467 } i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 struct ipr_ioasa ioasa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 struct list_head queue;
1470 struct scsi_cmnd *scsi_cmd;
Brian King35a39692006-09-25 12:39:20 -05001471 struct ata_queued_cmd *qc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 struct completion completion;
1473 struct timer_list timer;
1474 void (*done) (struct ipr_cmnd *);
1475 int (*job_step) (struct ipr_cmnd *);
brking@us.ibm.comdfed8232005-11-01 17:02:55 -06001476 int (*job_step_failed) (struct ipr_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 u16 cmd_index;
1478 u8 sense_buffer[SCSI_SENSE_BUFFERSIZE];
1479 dma_addr_t sense_buffer_dma;
1480 unsigned short dma_use_sg;
Wayne Boyera32c0552010-02-19 13:23:36 -08001481 dma_addr_t dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 struct ipr_cmnd *sibling;
1483 union {
1484 enum ipr_shutdown_type shutdown_type;
1485 struct ipr_hostrcb *hostrcb;
1486 unsigned long time_left;
1487 unsigned long scratch;
1488 struct ipr_resource_entry *res;
1489 struct scsi_device *sdev;
1490 } u;
1491
1492 struct ipr_ioa_cfg *ioa_cfg;
1493};
1494
1495struct ipr_ses_table_entry {
1496 char product_id[17];
1497 char compare_product_id_byte[17];
1498 u32 max_bus_speed_limit; /* MB/sec limit for this backplane */
1499};
1500
1501struct ipr_dump_header {
1502 u32 eye_catcher;
1503#define IPR_DUMP_EYE_CATCHER 0xC5D4E3F2
1504 u32 len;
1505 u32 num_entries;
1506 u32 first_entry_offset;
1507 u32 status;
1508#define IPR_DUMP_STATUS_SUCCESS 0
1509#define IPR_DUMP_STATUS_QUAL_SUCCESS 2
1510#define IPR_DUMP_STATUS_FAILED 0xffffffff
1511 u32 os;
1512#define IPR_DUMP_OS_LINUX 0x4C4E5558
1513 u32 driver_name;
1514#define IPR_DUMP_DRIVER_NAME 0x49505232
1515}__attribute__((packed, aligned (4)));
1516
1517struct ipr_dump_entry_header {
1518 u32 eye_catcher;
1519#define IPR_DUMP_EYE_CATCHER 0xC5D4E3F2
1520 u32 len;
1521 u32 num_elems;
1522 u32 offset;
1523 u32 data_type;
1524#define IPR_DUMP_DATA_TYPE_ASCII 0x41534349
1525#define IPR_DUMP_DATA_TYPE_BINARY 0x42494E41
1526 u32 id;
1527#define IPR_DUMP_IOA_DUMP_ID 0x494F4131
1528#define IPR_DUMP_LOCATION_ID 0x4C4F4341
1529#define IPR_DUMP_TRACE_ID 0x54524143
1530#define IPR_DUMP_DRIVER_VERSION_ID 0x44525652
1531#define IPR_DUMP_DRIVER_TYPE_ID 0x54595045
1532#define IPR_DUMP_IOA_CTRL_BLK 0x494F4342
1533#define IPR_DUMP_PEND_OPS 0x414F5053
1534 u32 status;
1535}__attribute__((packed, aligned (4)));
1536
1537struct ipr_dump_location_entry {
1538 struct ipr_dump_entry_header hdr;
Kay Sievers71610f52008-12-03 22:41:36 +01001539 u8 location[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}__attribute__((packed));
1541
1542struct ipr_dump_trace_entry {
1543 struct ipr_dump_entry_header hdr;
1544 u32 trace[IPR_TRACE_SIZE / sizeof(u32)];
1545}__attribute__((packed, aligned (4)));
1546
1547struct ipr_dump_version_entry {
1548 struct ipr_dump_entry_header hdr;
1549 u8 version[sizeof(IPR_DRIVER_VERSION)];
1550};
1551
1552struct ipr_dump_ioa_type_entry {
1553 struct ipr_dump_entry_header hdr;
1554 u32 type;
1555 u32 fw_version;
1556};
1557
1558struct ipr_driver_dump {
1559 struct ipr_dump_header hdr;
1560 struct ipr_dump_version_entry version_entry;
1561 struct ipr_dump_location_entry location_entry;
1562 struct ipr_dump_ioa_type_entry ioa_type_entry;
1563 struct ipr_dump_trace_entry trace_entry;
1564}__attribute__((packed));
1565
1566struct ipr_ioa_dump {
1567 struct ipr_dump_entry_header hdr;
1568 struct ipr_sdt sdt;
1569 __be32 *ioa_data[IPR_MAX_NUM_DUMP_PAGES];
1570 u32 reserved;
1571 u32 next_page_index;
1572 u32 page_offset;
1573 u32 format;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}__attribute__((packed, aligned (4)));
1575
1576struct ipr_dump {
1577 struct kref kref;
1578 struct ipr_ioa_cfg *ioa_cfg;
1579 struct ipr_driver_dump driver_dump;
1580 struct ipr_ioa_dump ioa_dump;
1581};
1582
1583struct ipr_error_table_t {
1584 u32 ioasc;
1585 int log_ioasa;
1586 int log_hcam;
1587 char *error;
1588};
1589
1590struct ipr_software_inq_lid_info {
1591 __be32 load_id;
1592 __be32 timestamp[3];
1593}__attribute__((packed, aligned (4)));
1594
1595struct ipr_ucode_image_header {
1596 __be32 header_length;
1597 __be32 lid_table_offset;
1598 u8 major_release;
1599 u8 card_type;
1600 u8 minor_release[2];
1601 u8 reserved[20];
1602 char eyecatcher[16];
1603 __be32 num_lids;
1604 struct ipr_software_inq_lid_info lid[1];
1605}__attribute__((packed, aligned (4)));
1606
1607/*
1608 * Macros
1609 */
brking@us.ibm.comd3c74872005-11-01 17:01:34 -06001610#define IPR_DBG_CMD(CMD) if (ipr_debug) { CMD; }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612#ifdef CONFIG_SCSI_IPR_TRACE
1613#define ipr_create_trace_file(kobj, attr) sysfs_create_bin_file(kobj, attr)
1614#define ipr_remove_trace_file(kobj, attr) sysfs_remove_bin_file(kobj, attr)
1615#else
1616#define ipr_create_trace_file(kobj, attr) 0
1617#define ipr_remove_trace_file(kobj, attr) do { } while(0)
1618#endif
1619
1620#ifdef CONFIG_SCSI_IPR_DUMP
1621#define ipr_create_dump_file(kobj, attr) sysfs_create_bin_file(kobj, attr)
1622#define ipr_remove_dump_file(kobj, attr) sysfs_remove_bin_file(kobj, attr)
1623#else
1624#define ipr_create_dump_file(kobj, attr) 0
1625#define ipr_remove_dump_file(kobj, attr) do { } while(0)
1626#endif
1627
1628/*
1629 * Error logging macros
1630 */
1631#define ipr_err(...) printk(KERN_ERR IPR_NAME ": "__VA_ARGS__)
1632#define ipr_info(...) printk(KERN_INFO IPR_NAME ": "__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633#define ipr_dbg(...) IPR_DBG_CMD(printk(KERN_INFO IPR_NAME ": "__VA_ARGS__))
1634
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001635#define ipr_res_printk(level, ioa_cfg, bus, target, lun, fmt, ...) \
1636 printk(level IPR_NAME ": %d:%d:%d:%d: " fmt, (ioa_cfg)->host->host_no, \
1637 bus, target, lun, ##__VA_ARGS__)
1638
1639#define ipr_res_err(ioa_cfg, res, fmt, ...) \
1640 ipr_res_printk(KERN_ERR, ioa_cfg, (res)->bus, (res)->target, (res)->lun, fmt, ##__VA_ARGS__)
1641
Brian Kingfb3ed3c2006-03-29 09:37:37 -06001642#define ipr_ra_printk(level, ioa_cfg, ra, fmt, ...) \
1643 printk(level IPR_NAME ": %d:%d:%d:%d: " fmt, (ioa_cfg)->host->host_no, \
1644 (ra).bus, (ra).target, (ra).lun, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Brian Kingfb3ed3c2006-03-29 09:37:37 -06001646#define ipr_ra_err(ioa_cfg, ra, fmt, ...) \
1647 ipr_ra_printk(KERN_ERR, ioa_cfg, ra, fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
brking@us.ibm.comfa15b1f2005-11-01 17:00:27 -06001649#define ipr_phys_res_err(ioa_cfg, res, fmt, ...) \
1650{ \
1651 if ((res).bus >= IPR_MAX_NUM_BUSES) { \
1652 ipr_err(fmt": unknown\n", ##__VA_ARGS__); \
1653 } else { \
1654 ipr_err(fmt": %d:%d:%d:%d\n", \
1655 ##__VA_ARGS__, (ioa_cfg)->host->host_no, \
1656 (res).bus, (res).target, (res).lun); \
1657 } \
1658}
1659
Brian King49dc6a12006-11-21 10:28:35 -06001660#define ipr_hcam_err(hostrcb, fmt, ...) \
Wayne Boyer4565e372010-02-19 13:24:07 -08001661{ \
1662 if (ipr_is_device(hostrcb)) { \
1663 if ((hostrcb)->ioa_cfg->sis64) { \
1664 printk(KERN_ERR IPR_NAME ": %s: " fmt, \
1665 ipr_format_resource_path(&hostrcb->hcam.u.error64.fd_res_path[0], \
1666 &hostrcb->rp_buffer[0]), \
1667 __VA_ARGS__); \
1668 } else { \
1669 ipr_ra_err((hostrcb)->ioa_cfg, \
1670 (hostrcb)->hcam.u.error.fd_res_addr, \
1671 fmt, __VA_ARGS__); \
1672 } \
1673 } else { \
1674 dev_err(&(hostrcb)->ioa_cfg->pdev->dev, fmt, __VA_ARGS__); \
1675 } \
Brian King49dc6a12006-11-21 10:28:35 -06001676}
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678#define ipr_trace ipr_dbg("%s: %s: Line: %d\n",\
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001679 __FILE__, __func__, __LINE__)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001681#define ENTER IPR_DBG_CMD(printk(KERN_INFO IPR_NAME": Entering %s\n", __func__))
1682#define LEAVE IPR_DBG_CMD(printk(KERN_INFO IPR_NAME": Leaving %s\n", __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684#define ipr_err_separator \
1685ipr_err("----------------------------------------------------------\n")
1686
1687
1688/*
1689 * Inlines
1690 */
1691
1692/**
1693 * ipr_is_ioa_resource - Determine if a resource is the IOA
1694 * @res: resource entry struct
1695 *
1696 * Return value:
1697 * 1 if IOA / 0 if not IOA
1698 **/
1699static inline int ipr_is_ioa_resource(struct ipr_resource_entry *res)
1700{
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001701 return res->type == IPR_RES_TYPE_IOAFP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
1703
1704/**
1705 * ipr_is_af_dasd_device - Determine if a resource is an AF DASD
1706 * @res: resource entry struct
1707 *
1708 * Return value:
1709 * 1 if AF DASD / 0 if not AF DASD
1710 **/
1711static inline int ipr_is_af_dasd_device(struct ipr_resource_entry *res)
1712{
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001713 return res->type == IPR_RES_TYPE_AF_DASD ||
1714 res->type == IPR_RES_TYPE_REMOTE_AF_DASD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
1717/**
1718 * ipr_is_vset_device - Determine if a resource is a VSET
1719 * @res: resource entry struct
1720 *
1721 * Return value:
1722 * 1 if VSET / 0 if not VSET
1723 **/
1724static inline int ipr_is_vset_device(struct ipr_resource_entry *res)
1725{
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001726 return res->type == IPR_RES_TYPE_VOLUME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727}
1728
1729/**
1730 * ipr_is_gscsi - Determine if a resource is a generic scsi resource
1731 * @res: resource entry struct
1732 *
1733 * Return value:
1734 * 1 if GSCSI / 0 if not GSCSI
1735 **/
1736static inline int ipr_is_gscsi(struct ipr_resource_entry *res)
1737{
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001738 return res->type == IPR_RES_TYPE_GENERIC_SCSI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
1741/**
Brian Kinge4fbf442006-03-29 09:37:22 -06001742 * ipr_is_scsi_disk - Determine if a resource is a SCSI disk
1743 * @res: resource entry struct
1744 *
1745 * Return value:
1746 * 1 if SCSI disk / 0 if not SCSI disk
1747 **/
1748static inline int ipr_is_scsi_disk(struct ipr_resource_entry *res)
1749{
1750 if (ipr_is_af_dasd_device(res) ||
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001751 (ipr_is_gscsi(res) && IPR_IS_DASD_DEVICE(res->std_inq_data)))
Brian Kinge4fbf442006-03-29 09:37:22 -06001752 return 1;
1753 else
1754 return 0;
1755}
1756
1757/**
Brian Kingb5145d22006-08-02 14:57:36 -05001758 * ipr_is_gata - Determine if a resource is a generic ATA resource
1759 * @res: resource entry struct
1760 *
1761 * Return value:
1762 * 1 if GATA / 0 if not GATA
1763 **/
1764static inline int ipr_is_gata(struct ipr_resource_entry *res)
1765{
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001766 return res->type == IPR_RES_TYPE_GENERIC_ATA;
Brian Kingb5145d22006-08-02 14:57:36 -05001767}
1768
1769/**
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06001770 * ipr_is_naca_model - Determine if a resource is using NACA queueing model
1771 * @res: resource entry struct
1772 *
1773 * Return value:
1774 * 1 if NACA queueing model / 0 if not NACA queueing model
1775 **/
1776static inline int ipr_is_naca_model(struct ipr_resource_entry *res)
1777{
Wayne Boyer3e7ebdf2010-02-19 13:23:59 -08001778 if (ipr_is_gscsi(res) && res->qmodel == IPR_QUEUE_NACA_MODEL)
brking@us.ibm.comee0a90f2005-11-01 17:02:22 -06001779 return 1;
1780 return 0;
1781}
1782
1783/**
Wayne Boyer4565e372010-02-19 13:24:07 -08001784 * ipr_is_device - Determine if the hostrcb structure is related to a device
1785 * @hostrcb: host resource control blocks struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 *
1787 * Return value:
1788 * 1 if AF / 0 if not AF
1789 **/
Wayne Boyer4565e372010-02-19 13:24:07 -08001790static inline int ipr_is_device(struct ipr_hostrcb *hostrcb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
Wayne Boyer4565e372010-02-19 13:24:07 -08001792 struct ipr_res_addr *res_addr;
1793 u8 *res_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Wayne Boyer4565e372010-02-19 13:24:07 -08001795 if (hostrcb->ioa_cfg->sis64) {
1796 res_path = &hostrcb->hcam.u.error64.fd_res_path[0];
1797 if ((res_path[0] == 0x00 || res_path[0] == 0x80 ||
1798 res_path[0] == 0x81) && res_path[2] != 0xFF)
1799 return 1;
1800 } else {
1801 res_addr = &hostrcb->hcam.u.error.fd_res_addr;
1802
1803 if ((res_addr->bus < IPR_MAX_NUM_BUSES) &&
1804 (res_addr->target < (IPR_MAX_NUM_TARGETS_PER_BUS - 1)))
1805 return 1;
1806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return 0;
1808}
1809
1810/**
1811 * ipr_sdt_is_fmt2 - Determine if a SDT address is in format 2
1812 * @sdt_word: SDT address
1813 *
1814 * Return value:
1815 * 1 if format 2 / 0 if not
1816 **/
1817static inline int ipr_sdt_is_fmt2(u32 sdt_word)
1818{
1819 u32 bar_sel = IPR_GET_FMT2_BAR_SEL(sdt_word);
1820
1821 switch (bar_sel) {
1822 case IPR_SDT_FMT2_BAR0_SEL:
1823 case IPR_SDT_FMT2_BAR1_SEL:
1824 case IPR_SDT_FMT2_BAR2_SEL:
1825 case IPR_SDT_FMT2_BAR3_SEL:
1826 case IPR_SDT_FMT2_BAR4_SEL:
1827 case IPR_SDT_FMT2_BAR5_SEL:
1828 case IPR_SDT_FMT2_EXP_ROM_SEL:
1829 return 1;
1830 };
1831
1832 return 0;
1833}
1834
1835#endif