xref: /freebsd/sys/dev/ida/idareg.h (revision 95ee2897e98f5d444f26ed2334cc7c439f9c16c6)
1db57feb7SJonathan Lemon /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni  *
4ee7eb00eSJonathan Lemon  * Copyright (c) 1999,2000 Jonathan Lemon
5db57feb7SJonathan Lemon  * All rights reserved.
6db57feb7SJonathan Lemon  *
7db57feb7SJonathan Lemon  * Redistribution and use in source and binary forms, with or without
8db57feb7SJonathan Lemon  * modification, are permitted provided that the following conditions
9db57feb7SJonathan Lemon  * are met:
10db57feb7SJonathan Lemon  * 1. Redistributions of source code must retain the above copyright
11db57feb7SJonathan Lemon  *    notice, this list of conditions and the following disclaimer.
12db57feb7SJonathan Lemon  * 2. Redistributions in binary form must reproduce the above copyright
13db57feb7SJonathan Lemon  *    notice, this list of conditions and the following disclaimer in the
14db57feb7SJonathan Lemon  *    documentation and/or other materials provided with the distribution.
15db57feb7SJonathan Lemon  *
16db57feb7SJonathan Lemon  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17db57feb7SJonathan Lemon  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18db57feb7SJonathan Lemon  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19db57feb7SJonathan Lemon  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20db57feb7SJonathan Lemon  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21db57feb7SJonathan Lemon  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22db57feb7SJonathan Lemon  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23db57feb7SJonathan Lemon  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24db57feb7SJonathan Lemon  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25db57feb7SJonathan Lemon  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26db57feb7SJonathan Lemon  * SUCH DAMAGE.
27db57feb7SJonathan Lemon  */
28db57feb7SJonathan Lemon 
29db57feb7SJonathan Lemon /*
30db57feb7SJonathan Lemon  * #defines and software structures for the Compaq RAID card
31db57feb7SJonathan Lemon  */
32db57feb7SJonathan Lemon 
33db57feb7SJonathan Lemon /*
34ee7eb00eSJonathan Lemon  * board register offsets for SMART-2 controllers
35db57feb7SJonathan Lemon  */
36db57feb7SJonathan Lemon #define	R_CMD_FIFO	0x04
37db57feb7SJonathan Lemon #define	R_DONE_FIFO	0x08
38db57feb7SJonathan Lemon #define	R_INT_MASK	0x0C
39db57feb7SJonathan Lemon #define	R_STATUS	0x10
40db57feb7SJonathan Lemon #define	R_INT_PENDING	0x14
41db57feb7SJonathan Lemon 
42db57feb7SJonathan Lemon /*
43ee7eb00eSJonathan Lemon  * interrupt mask values for SMART series
44db57feb7SJonathan Lemon  */
45db57feb7SJonathan Lemon #define	INT_DISABLE	0x00
46db57feb7SJonathan Lemon #define	INT_ENABLE	0x01
47db57feb7SJonathan Lemon 
48ee7eb00eSJonathan Lemon /*
49ee7eb00eSJonathan Lemon  * board offsets for the 42xx series
50ee7eb00eSJonathan Lemon  */
51ee7eb00eSJonathan Lemon #define	R_42XX_STATUS	0x30
52ee7eb00eSJonathan Lemon #define	R_42XX_INT_MASK	0x34
53ee7eb00eSJonathan Lemon #define	R_42XX_REQUEST	0x40
54ee7eb00eSJonathan Lemon #define	R_42XX_REPLY	0x44
55ee7eb00eSJonathan Lemon 
56ee7eb00eSJonathan Lemon /*
57ee7eb00eSJonathan Lemon  * interrupt values for 42xx series
58ee7eb00eSJonathan Lemon  */
59ee7eb00eSJonathan Lemon #define	INT_ENABLE_42XX			0x00
60ee7eb00eSJonathan Lemon #define	INT_DISABLE_42XX		0x08
61ee7eb00eSJonathan Lemon #define	STATUS_42XX_INT_PENDING		0x08
62ee7eb00eSJonathan Lemon 
63db57feb7SJonathan Lemon /*
64db57feb7SJonathan Lemon  * return status codes
65db57feb7SJonathan Lemon  */
66b7279e13SMatthew N. Dodd #define	SOFT_ERROR	0x02	/* Non-fatal error. */
67b7279e13SMatthew N. Dodd #define	HARD_ERROR	0x04	/* Fatal error. */
68b7279e13SMatthew N. Dodd #define	INVALID_ERROR	0x10	/* Invalid Request Block. */
69db57feb7SJonathan Lemon #define	CMD_REJECTED	0x14
70db57feb7SJonathan Lemon 
71db57feb7SJonathan Lemon /*
72db57feb7SJonathan Lemon  * command types
73db57feb7SJonathan Lemon  */
74b7279e13SMatthew N. Dodd #define	CMD_GET_LOG_DRV_INFO	0x10	/* Identify controller */
75b7279e13SMatthew N. Dodd #define	CMD_GET_CTRL_INFO	0x11	/* Identify logical driver */
76b7279e13SMatthew N. Dodd #define	CMD_SENSE_DRV_STATUS	0x12	/* Sense logical drive status */
77b7279e13SMatthew N. Dodd #define	CMD_START_RECOVERY	0x13	/* Start recover */
78b7279e13SMatthew N. Dodd #define	CMD_GET_PHYS_DRV_INFO	0x15	/* Identify physical drive */
79b7279e13SMatthew N. Dodd #define	CMD_BLINK_DRV_LEDS	0x16	/* Blink drive tray LEDs */
80b7279e13SMatthew N. Dodd #define	CMD_SENSE_DRV_LEDS	0x17	/* Sense Blinking drive tray LEDs */
81b7279e13SMatthew N. Dodd #define	CMD_GET_LOG_DRV_EXT	0x18	/* Identify logical drive, Extended */
82b7279e13SMatthew N. Dodd #define	CMD_READ		0x20	/* Read */
83b7279e13SMatthew N. Dodd #define	CMD_WRITE		0x30	/* Write */
84b7279e13SMatthew N. Dodd #define	CMD_WRITE_MEDIA		0x31	/* Write media */
85b7279e13SMatthew N. Dodd #define	CMD_RESET_CTRL		0x40	/* Reset controller */
86014fbb87SMatthew N. Dodd #define	CMD_DIAG_PASS_THRU	0x41	/* ??? */
87b7279e13SMatthew N. Dodd #define	CMD_GET_CONFIG		0x50	/* Sense configuration */
88b7279e13SMatthew N. Dodd #define	CMD_SET_CONFIG		0x51	/* Set configuration */
89014fbb87SMatthew N. Dodd 
90014fbb87SMatthew N. Dodd #define	CMD_BYPASS_VOL_STATE	0x52	/* ??? */
91014fbb87SMatthew N. Dodd #define	CMD_SS_CREATE_VOL	0x53	/* ??? */
92014fbb87SMatthew N. Dodd #define	CMD_CHANGE_CONFIG	0x54	/* ??? */
93014fbb87SMatthew N. Dodd #define	CMD_SENSE_ORIG_CONF	0x55	/* ??? */
94014fbb87SMatthew N. Dodd #define	CMD_REORDER_LOG_DRV	0x56	/* ??? */
95014fbb87SMatthew N. Dodd 
96b7279e13SMatthew N. Dodd #define	CMD_LABEL_LOG_DRV	0x57	/* Label logical drive */
97014fbb87SMatthew N. Dodd #define	CMD_SS_TO_VOL		0x58	/* ??? */
98b7279e13SMatthew N. Dodd #define	CMD_SET_SURFACE_DELAY	0x60	/* Set surface delay */
99014fbb87SMatthew N. Dodd #define	CMD_SET_OVERHEAT_DELAY	0x61	/* ??? */
100b7279e13SMatthew N. Dodd #define	CMD_SENSE_BUS_PARAMS	0x65	/* Sense bus parameters */
101b7279e13SMatthew N. Dodd #define	CMD_SENSE_SUBSYS_INFO	0x66	/* Sense Subsystem Information */
102b7279e13SMatthew N. Dodd #define	CMD_SENSE_SURFACE_ATS	0x70	/* Sense surface analysis task status */
103b7279e13SMatthew N. Dodd #define	CMD_PASSTHROUGH		0x90	/* Pass-through operation */
104014fbb87SMatthew N. Dodd #define	CMD_PASSTHROUGH_A	0x91	/* ??? */
105b7279e13SMatthew N. Dodd #define	CMD_RESET_SCSI_DEV	0x94	/* Reset SCSI device */
106b7279e13SMatthew N. Dodd #define	CMD_PAUSE_BG_ACT	0x98	/* Pause Background Activity */
107b7279e13SMatthew N. Dodd #define	CMD_RESUME_BG_ACT	0x99	/* Resume Background Activity */
1081277c3baSJonathan Lemon #define	CMD_START_FIRMWARE	0x99	/* for integrated RAID */
109b7279e13SMatthew N. Dodd #define	CMD_SENSE_DRV_ERR_LOG	0xa6	/* Sense drive error log */
110b7279e13SMatthew N. Dodd #define	CMD_START_CPM		0xa7	/* Start controller performance monitoring */
111b7279e13SMatthew N. Dodd #define	CMD_SENSE_CP		0xa8	/* Sense controller performance */
112b7279e13SMatthew N. Dodd #define	CMD_STOP_CPM		0xa9	/* Stop controller performance monitoring */
113b7279e13SMatthew N. Dodd #define	CMD_FLUSH_CACHE		0xc2	/* Flush/disable write cache */
114014fbb87SMatthew N. Dodd #define	CMD_COLLECT_BUFFER	0xd2	/* ??? */
115b7279e13SMatthew N. Dodd #define	CMD_ACCEPT_MEDIA_EXCH	0xe0	/* Accept Media Exchange */
116db57feb7SJonathan Lemon 
117014fbb87SMatthew N. Dodd #define	CMD_FLASH_READ		0xf6	/* Read FLASH */
118014fbb87SMatthew N. Dodd #define	CMD_FLASH_WRITE		0xf7	/* Write FLASH */
119014fbb87SMatthew N. Dodd 
120b7279e13SMatthew N. Dodd /* logical drive parameter table */
121b7279e13SMatthew N. Dodd struct ida_drive_param {
1221277c3baSJonathan Lemon 	u_int16_t	ncylinders;
1231277c3baSJonathan Lemon 	u_int8_t	nheads;
1241277c3baSJonathan Lemon 	u_int8_t	signature;
1251277c3baSJonathan Lemon 	u_int8_t	psectors;
1261277c3baSJonathan Lemon 	u_int16_t	wprecomp;
1271277c3baSJonathan Lemon 	u_int8_t	max_acc;
1281277c3baSJonathan Lemon 	u_int8_t	control;
1291277c3baSJonathan Lemon 	u_int16_t	pcylinders;
1301277c3baSJonathan Lemon 	u_int8_t	ptracks;
1311277c3baSJonathan Lemon 	u_int16_t	landing_zone;
1321277c3baSJonathan Lemon 	u_int8_t	nsectors;
1331277c3baSJonathan Lemon 	u_int8_t	checksum;
1344f492bfaSAlfred Perlstein } __packed;
135db57feb7SJonathan Lemon 
136b7279e13SMatthew N. Dodd #define	IDA_RAID0	0	/* No fault tolerance. */
137b7279e13SMatthew N. Dodd #define	IDA_RAID4	1	/* Data Guard */
138b7279e13SMatthew N. Dodd #define	IDA_RAID1	2	/* Mirroring */
139b7279e13SMatthew N. Dodd #define	IDA_RAID5	3	/* Distributed Data Guard */
140b7279e13SMatthew N. Dodd 
141b7279e13SMatthew N. Dodd /*
142b7279e13SMatthew N. Dodd  * CMD_GET_LOG_DRV_INFO (0x10)
143b7279e13SMatthew N. Dodd  * Identify Logical Drive
144b7279e13SMatthew N. Dodd  */
145b7279e13SMatthew N. Dodd struct ida_drive_info {
146b7279e13SMatthew N. Dodd 	u_int16_t	secsize;	/* block size in bytes */
147b7279e13SMatthew N. Dodd 	u_int32_t	secperunit;	/* blocks available */
148b7279e13SMatthew N. Dodd 	struct ida_drive_param	dp;	/* logical drive parameter table */
149b7279e13SMatthew N. Dodd 	u_int8_t	mirror;		/* fault tolerance */
150b7279e13SMatthew N. Dodd 	u_int8_t	reserved;
151b7279e13SMatthew N. Dodd 	u_int8_t	bios_disable;
152b7279e13SMatthew N. Dodd } __packed;
153b7279e13SMatthew N. Dodd 
154b7279e13SMatthew N. Dodd /*
155b7279e13SMatthew N. Dodd  * CMD_GET_LOG_DRV_EXT (0x18)
156b7279e13SMatthew N. Dodd  * Identify Logical Drive, Extended
157b7279e13SMatthew N. Dodd  */
158b7279e13SMatthew N. Dodd struct ida_drive_info_ext {
159b7279e13SMatthew N. Dodd 	u_int16_t	secsize;	/* block size in bytes */
160b7279e13SMatthew N. Dodd 	u_int32_t	secperunit;	/* blocks available */
161b7279e13SMatthew N. Dodd 	struct ida_drive_param	dp;	/* logical drive parameter table */
162b7279e13SMatthew N. Dodd 	u_int8_t	mirror;		/* fault tolerance */
163b7279e13SMatthew N. Dodd 	u_int8_t	reserved;
164b7279e13SMatthew N. Dodd 	u_int8_t	bios_disable;
165b7279e13SMatthew N. Dodd 	u_int32_t	ld_id;		/* Logical drive identifier */
166b7279e13SMatthew N. Dodd 	u_int8_t	ld_label[64];	/* Logical drive label */
167b7279e13SMatthew N. Dodd } __packed;
168b7279e13SMatthew N. Dodd 
169b7279e13SMatthew N. Dodd /*
170b7279e13SMatthew N. Dodd  * CMD_GET_CTRL_INFO (0x11)
171b7279e13SMatthew N. Dodd  * Identify Controller
172b7279e13SMatthew N. Dodd  */
173db57feb7SJonathan Lemon struct ida_controller_info {
174b7279e13SMatthew N. Dodd 	u_int8_t	num_drvs;	/* Number of configured logical drives */
175b7279e13SMatthew N. Dodd 	u_int32_t	signature;	/* Configuration signature */
176b7279e13SMatthew N. Dodd 	u_int8_t	firm_rev[4];	/* ASCII firmware revision */
177b7279e13SMatthew N. Dodd 	u_int8_t	rom_rev[4];	/* ROM firmware revision */
178b7279e13SMatthew N. Dodd 	u_int8_t	hw_rev;		/* Revision level of the hardware */
179b7279e13SMatthew N. Dodd 	u_int32_t	bb_rev;
180b7279e13SMatthew N. Dodd 	u_int32_t	dp_map;		/* Drive present bit map */
181b7279e13SMatthew N. Dodd 	u_int32_t	ed_map;		/* External drive bit map */
182b7279e13SMatthew N. Dodd 	u_int32_t	board_id;
183b7279e13SMatthew N. Dodd 	u_int8_t	cfg_error;
184b7279e13SMatthew N. Dodd 	u_int32_t	nd_map;		/* Non-disk map */
185b7279e13SMatthew N. Dodd 	u_int8_t	bad_ram_addr;
186b7279e13SMatthew N. Dodd 	u_int8_t	cpu_rev;
187b7279e13SMatthew N. Dodd 	u_int8_t	pdpi_rev;
188b7279e13SMatthew N. Dodd 	u_int8_t	epic_rev;
189b7279e13SMatthew N. Dodd 	u_int8_t	wcxc_rev;
190b7279e13SMatthew N. Dodd 	u_int8_t	mkt_rev;	/* Marketing revision */
191b7279e13SMatthew N. Dodd 	u_int8_t	cflag;		/* Controller flags */
192b7279e13SMatthew N. Dodd #define	IDA_CI_CFLAG_7DPB	(1<<3)
193b7279e13SMatthew N. Dodd #define	IDA_CI_CFLAG_BIGMAP	(1<<7)
194b7279e13SMatthew N. Dodd 	u_int8_t	hflag;
195b7279e13SMatthew N. Dodd 	u_int8_t	expand_dis;
196b7279e13SMatthew N. Dodd 	u_int8_t	scsi_cc;	/* SCSI chip count */
197b7279e13SMatthew N. Dodd 	u_int32_t	max_req_blocks;
198b7279e13SMatthew N. Dodd 	u_int32_t	cclock;		/* Controller Clock */
199b7279e13SMatthew N. Dodd 	u_int8_t	dp_scsi;	/* Drives per SCSI bus */
200b7279e13SMatthew N. Dodd 	u_int16_t	big_dp_map[8];	/* Big drive present bit map */
201b7279e13SMatthew N. Dodd 	u_int16_t	big_ed_map[8];	/* Big external drive bit map */
202b7279e13SMatthew N. Dodd 	u_int16_t	big_nd_map[8];	/* Big non-disk map */
203b7279e13SMatthew N. Dodd 	u_int16_t	task_flags;
204b7279e13SMatthew N. Dodd 	u_int8_t	icl_bus;
205b7279e13SMatthew N. Dodd 	u_int8_t	red_modes;
206b7279e13SMatthew N. Dodd 	u_int8_t	cur_red_mode;
207b7279e13SMatthew N. Dodd 	u_int8_t	red_ctlr_stat;
208b7279e13SMatthew N. Dodd 	u_int8_t	red_fail_reason;
209b7279e13SMatthew N. Dodd 	u_int8_t	reserved[403];
2104f492bfaSAlfred Perlstein } __packed;
2111277c3baSJonathan Lemon 
212b7279e13SMatthew N. Dodd /*
213b7279e13SMatthew N. Dodd  * CMD_SENSE_DRV_STATUS (0x12)
214b7279e13SMatthew N. Dodd  * Sense logical drive status
215b7279e13SMatthew N. Dodd  */
2161277c3baSJonathan Lemon struct ida_drive_status {
2171277c3baSJonathan Lemon 	u_int8_t	status;
2181277c3baSJonathan Lemon 	u_int32_t	failure_map;
219b7279e13SMatthew N. Dodd 	u_int16_t	read_err[32];
220b7279e13SMatthew N. Dodd 	u_int16_t	write_error[32];
221b7279e13SMatthew N. Dodd 	u_int8_t	reserved0[288];
2221277c3baSJonathan Lemon 	u_int32_t	secrecover;
2231277c3baSJonathan Lemon 	u_int8_t	rebuilding;
224b7279e13SMatthew N. Dodd 	u_int16_t	remap_cnt[32];
2251277c3baSJonathan Lemon 	u_int32_t	repl_map;
2261277c3baSJonathan Lemon 	u_int32_t	spare_map;
2271277c3baSJonathan Lemon 	u_int8_t	spare_status;
2281277c3baSJonathan Lemon 	u_int8_t	spare_repl_map[32];
2291277c3baSJonathan Lemon 	u_int32_t	repl_ok_map;
2301277c3baSJonathan Lemon 	u_int8_t	media_exchange;
2311277c3baSJonathan Lemon 	u_int8_t	cache_failure;
2321277c3baSJonathan Lemon 	u_int8_t	expand_failure;
2331277c3baSJonathan Lemon 	u_int8_t	unit_flags;
2341277c3baSJonathan Lemon 	u_int16_t	big_failure_map[8];
2351277c3baSJonathan Lemon 	u_int16_t	big_remap_cnt[128];
2361277c3baSJonathan Lemon 	u_int16_t	big_repl_map[8];
2371277c3baSJonathan Lemon 	u_int16_t	big_act_spare_map[8];
2381277c3baSJonathan Lemon 	u_int8_t	big_spare_repl_map[128];
2391277c3baSJonathan Lemon 	u_int16_t	big_repl_ok_map[8];
2401277c3baSJonathan Lemon 	u_int8_t	big_rebuilding;
241b7279e13SMatthew N. Dodd 	u_int8_t	reserved1[36];
242b7279e13SMatthew N. Dodd } __packed;
243b7279e13SMatthew N. Dodd 
244b7279e13SMatthew N. Dodd /*
245b7279e13SMatthew N. Dodd  * CMD_GET_PHYS_DRV_INFO (0x15)
246b7279e13SMatthew N. Dodd  * Identify Physical Drive
247b7279e13SMatthew N. Dodd  */
248b7279e13SMatthew N. Dodd struct ida_phys_drv_info {
249b7279e13SMatthew N. Dodd 	u_int8_t	scsi_bus;	/* SCSI Bus */
250b7279e13SMatthew N. Dodd 	u_int8_t	scsi_id;	/* SCSI ID */
251b7279e13SMatthew N. Dodd 	u_int16_t	blksize;	/* block size in bytes */
252b7279e13SMatthew N. Dodd 	u_int32_t	blkcount;	/* total blocks */
253b7279e13SMatthew N. Dodd 	u_int32_t	blkreserved;	/* reserved blocks */
254b7279e13SMatthew N. Dodd 	u_int8_t	drv_model[40];	/* drive model */
255b7279e13SMatthew N. Dodd 	u_int8_t	drv_serial[40];	/* drive serial number */
256b7279e13SMatthew N. Dodd 	u_int8_t	drv_fwrev[8];	/* drive firmware revision */
257b7279e13SMatthew N. Dodd 	u_int8_t	scsi_inq;	/* SCSI inquiry bits */
258b7279e13SMatthew N. Dodd 	u_int8_t	cpq_drv_stmp;
259b7279e13SMatthew N. Dodd 	u_int8_t	last_fail;
260b7279e13SMatthew N. Dodd 	u_int8_t	pd_flags;	/* physical drive flags */
261b7279e13SMatthew N. Dodd #define	PDF_DISK_PRESENT	0x01
262b7279e13SMatthew N. Dodd #define	PDF_NONDISK_PRESENT	0x02
263b7279e13SMatthew N. Dodd #define	PDF_WIDE_ENABLED	0x04
264b7279e13SMatthew N. Dodd #define	PDF_SYNC		0x08
265b7279e13SMatthew N. Dodd #define	PDF_NARROW_TRAY		0x10
266b7279e13SMatthew N. Dodd #define	PDF_WIDEFAIL		0x20
267b7279e13SMatthew N. Dodd #define	PDF_ULTRA		0x40
268b7279e13SMatthew N. Dodd #define	PDF_ULTRA2		0x80
269b7279e13SMatthew N. Dodd 	u_int8_t	mpd_flags;	/* more physical drive flags */
270b7279e13SMatthew N. Dodd #define	MPDF_SMART_SUPPORT	0x01	/* S.M.A.R.T supported */
271b7279e13SMatthew N. Dodd #define	MPDF_SMART_ERRORS	0x02	/* S.M.A.R.T errors recorded */
272b7279e13SMatthew N. Dodd #define	MPDF_SMART_ENABLED	0x04	/* S.M.A.R.T predictive failure is enabled */
273b7279e13SMatthew N. Dodd #define	MPDF_SMART_ERR_RESET	0x08	/* S.M.A.R.T errors recorded since last reset */
274b7279e13SMatthew N. Dodd #define	MPDF_DRIVE_EXTERNAL	0x10	/* Connected to external connector. */
275b7279e13SMatthew N. Dodd #define	MPDF_DRIVE_CONF_LVOL	0x20	/* Configured as part of a logical volume */
276b7279e13SMatthew N. Dodd #define	MPDF_DRIVE_CONF_SPARE	0x40	/* Configured as a spare */
277b7279e13SMatthew N. Dodd #define	MPDF_DRIVE_WCE		0x80	/* Drive WCE set on spinup */
278b7279e13SMatthew N. Dodd 	u_int8_t	scsi_lun;
279b7279e13SMatthew N. Dodd 	u_int8_t	ympd_flags;	/* yet more physical drive flags */
280b7279e13SMatthew N. Dodd #define	YMPDF_DRIVE_WCE_SET	0x40	/* WCE currently set */
281453130d9SPedro F. Giffuni #define	YMPDF_DRIVE_WCE_CHNG	0x80	/* WCE changeable */
282b7279e13SMatthew N. Dodd 	u_int8_t	reserved;
283b7279e13SMatthew N. Dodd 	u_int32_t	spi_speed_rules;
284b7279e13SMatthew N. Dodd 	u_int8_t	phys_con[2];	/* Physical Connector */
285b7279e13SMatthew N. Dodd 	u_int8_t	phys_box;	/* Physical Box on Bus */
286b7279e13SMatthew N. Dodd 	u_int8_t	phys_bay;	/* Physical Bay in Box */
287b7279e13SMatthew N. Dodd } __packed;
288b7279e13SMatthew N. Dodd 
289b7279e13SMatthew N. Dodd /*
290b7279e13SMatthew N. Dodd  * CMD_BLINK_DRV_LEDS (0x16)
291b7279e13SMatthew N. Dodd  * Blink Drive Tray LEDs
292b7279e13SMatthew N. Dodd  *
293b7279e13SMatthew N. Dodd  * CMD_SENSE_DRV_LEDS (0x17)
294b7279e13SMatthew N. Dodd  * Sense Blinking Drive Tray LEDs
295b7279e13SMatthew N. Dodd  */
296b7279e13SMatthew N. Dodd struct ida_blink_drv_leds {
297b7279e13SMatthew N. Dodd 	u_int32_t	bd;		/* Blink duration (in 10ths sec) */
298b7279e13SMatthew N. Dodd 	u_int32_t	bte;		/* Blink time elapsed (sense only) */
299b7279e13SMatthew N. Dodd 	u_int8_t	bse[256];	/* Blink/seek enable */
300b7279e13SMatthew N. Dodd 	u_int8_t	reserved1[248];
301b7279e13SMatthew N. Dodd } __packed;
302b7279e13SMatthew N. Dodd 
303b7279e13SMatthew N. Dodd /*
304b7279e13SMatthew N. Dodd  * CMD_LABEL_LOG_DRV (0x57)
305b7279e13SMatthew N. Dodd  * Label Logical Drive
306b7279e13SMatthew N. Dodd  */
307b7279e13SMatthew N. Dodd struct ida_label_logical {
308b7279e13SMatthew N. Dodd 	u_int32_t	ld_id;		/* Logical drive identifier */
309b7279e13SMatthew N. Dodd 	u_int8_t	ld_label[64];	/* Logical drive label */
3104f492bfaSAlfred Perlstein } __packed;
311