ctl_private.h revision 275493
1/*-
2 * Copyright (c) 2003, 2004, 2005, 2008 Silicon Graphics International Corp.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions, and the following disclaimer,
10 *    without modification.
11 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12 *    substantially similar to the "NO WARRANTY" disclaimer below
13 *    ("Disclaimer") and any redistribution must be conditioned upon
14 *    including a substantially similar Disclaimer requirement for further
15 *    binary redistribution.
16 *
17 * NO WARRANTY
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGES.
29 *
30 * $Id: //depot/users/kenm/FreeBSD-test2/sys/cam/ctl/ctl_private.h#7 $
31 * $FreeBSD: stable/10/sys/cam/ctl/ctl_private.h 275493 2014-12-05 07:23:25Z mav $
32 */
33/*
34 * CAM Target Layer driver private data structures/definitions.
35 *
36 * Author: Ken Merry <ken@FreeBSD.org>
37 */
38
39#ifndef	_CTL_PRIVATE_H_
40#define	_CTL_PRIVATE_H_
41
42/*
43 * SCSI vendor and product names.
44 */
45#define	CTL_VENDOR		"FREEBSD "
46#define	CTL_DIRECT_PRODUCT	"CTLDISK         "
47#define	CTL_PROCESSOR_PRODUCT	"CTLPROCESSOR    "
48#define	CTL_UNKNOWN_PRODUCT	"CTLDEVICE       "
49
50struct ctl_fe_ioctl_startstop_info {
51	struct cv			sem;
52	struct ctl_hard_startstop_info	hs_info;
53};
54
55struct ctl_fe_ioctl_bbrread_info {
56	struct cv			sem;
57	struct ctl_bbrread_info		*bbr_info;
58	int				wakeup_done;
59	struct mtx			*lock;
60};
61
62typedef enum {
63	CTL_IOCTL_INPROG,
64	CTL_IOCTL_DATAMOVE,
65	CTL_IOCTL_DONE
66} ctl_fe_ioctl_state;
67
68struct ctl_fe_ioctl_params {
69	struct cv		sem;
70	struct mtx		ioctl_mtx;
71	ctl_fe_ioctl_state	state;
72};
73
74#define	CTL_POOL_ENTRIES_INTERNAL	200
75#define	CTL_POOL_ENTRIES_EMERGENCY	300
76#define CTL_POOL_ENTRIES_OTHER_SC   200
77
78typedef enum {
79	CTL_POOL_INTERNAL,
80	CTL_POOL_FETD,
81	CTL_POOL_EMERGENCY,
82	CTL_POOL_4OTHERSC
83} ctl_pool_type;
84
85typedef enum {
86	CTL_POOL_FLAG_NONE	= 0x00,
87	CTL_POOL_FLAG_INVALID	= 0x01
88} ctl_pool_flags;
89
90struct ctl_io_pool {
91	ctl_pool_type			type;
92	ctl_pool_flags			flags;
93	uint32_t			id;
94	struct ctl_softc		*ctl_softc;
95	uint32_t			refcount;
96	uint64_t			total_allocated;
97	uint64_t			total_freed;
98	int32_t				total_ctl_io;
99	int32_t				free_ctl_io;
100	STAILQ_HEAD(, ctl_io_hdr)	free_queue;
101	STAILQ_ENTRY(ctl_io_pool)	links;
102};
103
104typedef enum {
105	CTL_IOCTL_FLAG_NONE	= 0x00,
106	CTL_IOCTL_FLAG_ENABLED	= 0x01
107} ctl_ioctl_flags;
108
109struct ctl_ioctl_info {
110	ctl_ioctl_flags		flags;
111	uint32_t		cur_tag_num;
112	struct ctl_port		port;
113	char			port_name[24];
114};
115
116typedef enum {
117	CTL_SER_BLOCK,
118	CTL_SER_BLOCKOPT,
119	CTL_SER_EXTENT,
120	CTL_SER_EXTENTOPT,
121	CTL_SER_PASS,
122	CTL_SER_SKIP
123} ctl_serialize_action;
124
125typedef enum {
126	CTL_ACTION_BLOCK,
127	CTL_ACTION_OVERLAP,
128	CTL_ACTION_OVERLAP_TAG,
129	CTL_ACTION_PASS,
130	CTL_ACTION_SKIP,
131	CTL_ACTION_ERROR
132} ctl_action;
133
134/*
135 * WARNING:  Keep the bottom nibble here free, we OR in the data direction
136 * flags for each command.
137 *
138 * Note:  "OK_ON_ALL_LUNS" == we don't have to have a lun configured
139 *        "OK_ON_BOTH"     == we have to have a lun configured
140 *        "SA5"            == command has 5-bit service action at byte 1
141 */
142typedef enum {
143	CTL_CMD_FLAG_NONE		= 0x0000,
144	CTL_CMD_FLAG_NO_SENSE		= 0x0010,
145	CTL_CMD_FLAG_OK_ON_ALL_LUNS	= 0x0020,
146	CTL_CMD_FLAG_ALLOW_ON_RESV	= 0x0040,
147	CTL_CMD_FLAG_ALLOW_ON_PR_WRESV	= 0x0080,
148	CTL_CMD_FLAG_OK_ON_PROC		= 0x0100,
149	CTL_CMD_FLAG_OK_ON_SLUN		= 0x0200,
150	CTL_CMD_FLAG_OK_ON_BOTH		= 0x0300,
151	CTL_CMD_FLAG_OK_ON_STOPPED	= 0x0400,
152	CTL_CMD_FLAG_OK_ON_INOPERABLE	= 0x0800,
153	CTL_CMD_FLAG_OK_ON_OFFLINE	= 0x1000,
154	CTL_CMD_FLAG_OK_ON_SECONDARY	= 0x2000,
155	CTL_CMD_FLAG_ALLOW_ON_PR_RESV	= 0x4000,
156	CTL_CMD_FLAG_SA5		= 0x8000
157} ctl_cmd_flags;
158
159typedef enum {
160	CTL_SERIDX_TUR	= 0,
161	CTL_SERIDX_READ,
162	CTL_SERIDX_WRITE,
163	CTL_SERIDX_UNMAP,
164	CTL_SERIDX_MD_SNS,
165	CTL_SERIDX_MD_SEL,
166	CTL_SERIDX_RQ_SNS,
167	CTL_SERIDX_INQ,
168	CTL_SERIDX_RD_CAP,
169	CTL_SERIDX_RES,
170	CTL_SERIDX_LOG_SNS,
171	CTL_SERIDX_FORMAT,
172	CTL_SERIDX_START,
173	/* TBD: others to be filled in as needed */
174	CTL_SERIDX_COUNT, /* LAST, not a normal code, provides # codes */
175	CTL_SERIDX_INVLD = CTL_SERIDX_COUNT
176} ctl_seridx;
177
178typedef int	ctl_opfunc(struct ctl_scsiio *ctsio);
179
180struct ctl_cmd_entry {
181	ctl_opfunc		*execute;
182	ctl_seridx		seridx;
183	ctl_cmd_flags		flags;
184	ctl_lun_error_pattern	pattern;
185	uint8_t			length;		/* CDB length */
186	uint8_t			usage[15];	/* Mask of allowed CDB bits
187						 * after the opcode byte. */
188};
189
190typedef enum {
191	CTL_LUN_NONE		= 0x000,
192	CTL_LUN_CONTROL		= 0x001,
193	CTL_LUN_RESERVED	= 0x002,
194	CTL_LUN_INVALID		= 0x004,
195	CTL_LUN_DISABLED	= 0x008,
196	CTL_LUN_MALLOCED	= 0x010,
197	CTL_LUN_STOPPED		= 0x020,
198	CTL_LUN_INOPERABLE	= 0x040,
199	CTL_LUN_OFFLINE		= 0x080,
200	CTL_LUN_PR_RESERVED	= 0x100,
201	CTL_LUN_PRIMARY_SC	= 0x200,
202	CTL_LUN_SENSE_DESC	= 0x400,
203	CTL_LUN_READONLY	= 0x800
204} ctl_lun_flags;
205
206typedef enum {
207	CTLBLOCK_FLAG_NONE	= 0x00,
208	CTLBLOCK_FLAG_INVALID	= 0x01
209} ctlblock_flags;
210
211union ctl_softcs {
212	struct ctl_softc	*ctl_softc;
213	struct ctlblock_softc	*ctlblock_softc;
214};
215
216/*
217 * Mode page defaults.
218 */
219#if 0
220/*
221 * These values make Solaris trim off some of the capacity.
222 */
223#define	CTL_DEFAULT_SECTORS_PER_TRACK	63
224#define	CTL_DEFAULT_HEADS		255
225/*
226 * These values seem to work okay.
227 */
228#define	CTL_DEFAULT_SECTORS_PER_TRACK	63
229#define	CTL_DEFAULT_HEADS		16
230/*
231 * These values work reasonably well.
232 */
233#define	CTL_DEFAULT_SECTORS_PER_TRACK	512
234#define	CTL_DEFAULT_HEADS		64
235#endif
236
237/*
238 * Solaris is somewhat picky about how many heads and sectors per track you
239 * have defined in mode pages 3 and 4.  These values seem to cause Solaris
240 * to get the capacity more or less right when you run the format tool.
241 * They still have problems when dealing with devices larger than 1TB,
242 * but there isn't anything we can do about that.
243 *
244 * For smaller LUN sizes, this ends up causing the number of cylinders to
245 * work out to 0.  Solaris actually recognizes that and comes up with its
246 * own bogus geometry to fit the actual capacity of the drive.  They really
247 * should just give up on geometry and stick to the read capacity
248 * information alone for modern disk drives.
249 *
250 * One thing worth mentioning about Solaris' mkfs command is that it
251 * doesn't like sectors per track values larger than 256.  512 seems to
252 * work okay for format, but causes problems when you try to make a
253 * filesystem.
254 *
255 * Another caveat about these values:  the product of these two values
256 * really should be a power of 2.  This is because of the simplistic
257 * shift-based calculation that we have to use on the i386 platform to
258 * calculate the number of cylinders here.  (If you use a divide, you end
259 * up calling __udivdi3(), which is a hardware FP call on the PC.  On the
260 * XScale, it is done in software, so you can do that from inside the
261 * kernel.)
262 *
263 * So for the current values (256 S/T, 128 H), we get 32768, which works
264 * very nicely for calculating cylinders.
265 *
266 * If you want to change these values so that their product is no longer a
267 * power of 2, re-visit the calculation in ctl_init_page_index().  You may
268 * need to make it a bit more complicated to get the number of cylinders
269 * right.
270 */
271#define	CTL_DEFAULT_SECTORS_PER_TRACK	256
272#define	CTL_DEFAULT_HEADS		128
273
274#define	CTL_DEFAULT_ROTATION_RATE	SVPD_NON_ROTATING
275
276struct ctl_page_index;
277
278typedef int	ctl_modesen_handler(struct ctl_scsiio *ctsio,
279				    struct ctl_page_index *page_index,
280				    int pc);
281typedef int	ctl_modesel_handler(struct ctl_scsiio *ctsio,
282				    struct ctl_page_index *page_index,
283				    uint8_t *page_ptr);
284
285typedef enum {
286	CTL_PAGE_FLAG_NONE	 = 0x00,
287	CTL_PAGE_FLAG_DISK_ONLY	 = 0x01
288} ctl_page_flags;
289
290struct ctl_page_index {
291	uint8_t			page_code;
292	uint8_t			subpage;
293	uint16_t		page_len;
294	uint8_t			*page_data;
295	ctl_page_flags		page_flags;
296	ctl_modesen_handler	*sense_handler;
297	ctl_modesel_handler	*select_handler;
298};
299
300#define	CTL_PAGE_CURRENT	0x00
301#define	CTL_PAGE_CHANGEABLE	0x01
302#define	CTL_PAGE_DEFAULT	0x02
303#define	CTL_PAGE_SAVED		0x03
304
305#define CTL_NUM_LBP_PARAMS	4
306#define CTL_NUM_LBP_THRESH	4
307#define CTL_LBP_EXPONENT	11	/* 2048 sectors */
308#define CTL_LBP_PERIOD		10	/* 10 seconds */
309#define CTL_LBP_UA_PERIOD	300	/* 5 minutes */
310
311struct ctl_logical_block_provisioning_page {
312	struct scsi_logical_block_provisioning_page	main;
313	struct scsi_logical_block_provisioning_page_descr descr[CTL_NUM_LBP_THRESH];
314};
315
316static const struct ctl_page_index page_index_template[] = {
317	{SMS_RW_ERROR_RECOVERY_PAGE, 0, sizeof(struct scsi_da_rw_recovery_page), NULL,
318	 CTL_PAGE_FLAG_DISK_ONLY, NULL, NULL},
319	{SMS_FORMAT_DEVICE_PAGE, 0, sizeof(struct scsi_format_page), NULL,
320	 CTL_PAGE_FLAG_DISK_ONLY, NULL, NULL},
321	{SMS_RIGID_DISK_PAGE, 0, sizeof(struct scsi_rigid_disk_page), NULL,
322	 CTL_PAGE_FLAG_DISK_ONLY, NULL, NULL},
323	{SMS_CACHING_PAGE, 0, sizeof(struct scsi_caching_page), NULL,
324	 CTL_PAGE_FLAG_DISK_ONLY, NULL, ctl_caching_sp_handler},
325	{SMS_CONTROL_MODE_PAGE, 0, sizeof(struct scsi_control_page), NULL,
326	 CTL_PAGE_FLAG_NONE, NULL, ctl_control_page_handler},
327	{SMS_INFO_EXCEPTIONS_PAGE, 0, sizeof(struct scsi_info_exceptions_page), NULL,
328	 CTL_PAGE_FLAG_NONE, NULL, NULL},
329	{SMS_INFO_EXCEPTIONS_PAGE | SMPH_SPF, 0x02,
330	 sizeof(struct ctl_logical_block_provisioning_page), NULL,
331	 CTL_PAGE_FLAG_DISK_ONLY, NULL, NULL},
332	{SMS_VENDOR_SPECIFIC_PAGE | SMPH_SPF, DBGCNF_SUBPAGE_CODE,
333	 sizeof(struct copan_debugconf_subpage), NULL, CTL_PAGE_FLAG_NONE,
334	 ctl_debugconf_sp_sense_handler, ctl_debugconf_sp_select_handler},
335};
336
337#define	CTL_NUM_MODE_PAGES sizeof(page_index_template)/   \
338			   sizeof(page_index_template[0])
339
340struct ctl_mode_pages {
341	struct scsi_da_rw_recovery_page	rw_er_page[4];
342	struct scsi_format_page		format_page[4];
343	struct scsi_rigid_disk_page	rigid_disk_page[4];
344	struct scsi_caching_page	caching_page[4];
345	struct scsi_control_page	control_page[4];
346	struct scsi_info_exceptions_page ie_page[4];
347	struct ctl_logical_block_provisioning_page lbp_page[4];
348	struct copan_debugconf_subpage	debugconf_subpage[4];
349	struct ctl_page_index		index[CTL_NUM_MODE_PAGES];
350};
351
352static const struct ctl_page_index log_page_index_template[] = {
353	{SLS_SUPPORTED_PAGES_PAGE, 0, 0, NULL,
354	 CTL_PAGE_FLAG_NONE, NULL, NULL},
355	{SLS_SUPPORTED_PAGES_PAGE, SLS_SUPPORTED_SUBPAGES_SUBPAGE, 0, NULL,
356	 CTL_PAGE_FLAG_NONE, NULL, NULL},
357	{SLS_LOGICAL_BLOCK_PROVISIONING, 0, 0, NULL,
358	 CTL_PAGE_FLAG_NONE, ctl_lbp_log_sense_handler, NULL},
359};
360
361#define	CTL_NUM_LOG_PAGES sizeof(log_page_index_template)/   \
362			  sizeof(log_page_index_template[0])
363
364struct ctl_log_pages {
365	uint8_t				pages_page[CTL_NUM_LOG_PAGES];
366	uint8_t				subpages_page[CTL_NUM_LOG_PAGES * 2];
367	uint8_t				lbp_page[12*CTL_NUM_LBP_PARAMS];
368	struct ctl_page_index		index[CTL_NUM_LOG_PAGES];
369};
370
371struct ctl_lun_delay_info {
372	ctl_delay_type		datamove_type;
373	uint32_t		datamove_delay;
374	ctl_delay_type		done_type;
375	uint32_t		done_delay;
376};
377
378typedef enum {
379	CTL_ERR_INJ_NONE	= 0x00,
380	CTL_ERR_INJ_ABORTED	= 0x01
381} ctl_err_inject_flags;
382
383typedef enum {
384	CTL_PR_FLAG_NONE	= 0x00,
385	CTL_PR_FLAG_REGISTERED	= 0x01,
386	CTL_PR_FLAG_ACTIVE_RES	= 0x02
387} ctl_per_res_flags;
388
389#define CTL_PR_ALL_REGISTRANTS  0xFFFFFFFF
390#define CTL_PR_NO_RESERVATION   0xFFFFFFF0
391
392struct ctl_devid {
393	int		len;
394	uint8_t		data[];
395};
396
397/*
398 * For report target port groups.
399 */
400#define NUM_TARGET_PORT_GROUPS	2
401
402#define CTL_WRITE_BUFFER_SIZE	262144
403
404struct tpc_list;
405struct ctl_lun {
406	struct mtx			lun_lock;
407	struct ctl_id			target;
408	uint64_t			lun;
409	ctl_lun_flags			flags;
410	STAILQ_HEAD(,ctl_error_desc)	error_list;
411	uint64_t			error_serial;
412	struct ctl_softc		*ctl_softc;
413	struct ctl_be_lun		*be_lun;
414	struct ctl_backend_driver	*backend;
415	int				io_count;
416	struct ctl_lun_delay_info	delay_info;
417	int				sync_interval;
418	int				sync_count;
419	TAILQ_HEAD(ctl_ooaq, ctl_io_hdr)  ooa_queue;
420	TAILQ_HEAD(ctl_blockq,ctl_io_hdr) blocked_queue;
421	STAILQ_ENTRY(ctl_lun)		links;
422	STAILQ_ENTRY(ctl_lun)		run_links;
423#ifdef CTL_WITH_CA
424	uint32_t			have_ca[CTL_MAX_INITIATORS >> 5];
425	struct scsi_sense_data		pending_sense[CTL_MAX_INITIATORS];
426#endif
427	ctl_ua_type			pending_ua[CTL_MAX_INITIATORS];
428	time_t				lasttpt;
429	struct ctl_mode_pages		mode_pages;
430	struct ctl_log_pages		log_pages;
431	struct ctl_lun_io_stats		stats;
432	uint32_t			res_idx;
433	unsigned int			PRGeneration;
434	uint64_t			pr_keys[2*CTL_MAX_INITIATORS];
435	int				pr_key_count;
436	uint32_t			pr_res_idx;
437	uint8_t				res_type;
438	uint8_t				*write_buffer;
439	struct ctl_devid		*lun_devid;
440	TAILQ_HEAD(tpc_lists, tpc_list) tpc_lists;
441};
442
443typedef enum {
444	CTL_FLAG_REAL_SYNC	= 0x02,
445	CTL_FLAG_ACTIVE_SHELF	= 0x04
446} ctl_gen_flags;
447
448#define CTL_MAX_THREADS		16
449
450struct ctl_thread {
451	struct mtx_padalign queue_lock;
452	struct ctl_softc	*ctl_softc;
453	struct thread		*thread;
454	STAILQ_HEAD(, ctl_io_hdr) incoming_queue;
455	STAILQ_HEAD(, ctl_io_hdr) rtr_queue;
456	STAILQ_HEAD(, ctl_io_hdr) done_queue;
457	STAILQ_HEAD(, ctl_io_hdr) isc_queue;
458};
459
460struct tpc_token;
461struct ctl_softc {
462	struct mtx ctl_lock;
463	struct cdev *dev;
464	int open_count;
465	struct ctl_id target;
466	int num_disks;
467	int num_luns;
468	ctl_gen_flags flags;
469	ctl_ha_mode ha_mode;
470	int ha_id;
471	int ha_state;
472	int is_single;
473	int port_offset;
474	int inquiry_pq_no_lun;
475	struct sysctl_ctx_list sysctl_ctx;
476	struct sysctl_oid *sysctl_tree;
477	struct ctl_ioctl_info ioctl_info;
478	struct ctl_io_pool *internal_pool;
479	struct ctl_io_pool *emergency_pool;
480	struct ctl_io_pool *othersc_pool;
481	struct proc *ctl_proc;
482	int targ_online;
483	uint32_t ctl_lun_mask[(CTL_MAX_LUNS + 31) / 32];
484	struct ctl_lun *ctl_luns[CTL_MAX_LUNS];
485	uint32_t ctl_port_mask[(CTL_MAX_PORTS + 31) / 32];
486	STAILQ_HEAD(, ctl_lun) lun_list;
487	STAILQ_HEAD(, ctl_be_lun) pending_lun_queue;
488	uint32_t num_frontends;
489	STAILQ_HEAD(, ctl_frontend) fe_list;
490	uint32_t num_ports;
491	STAILQ_HEAD(, ctl_port) port_list;
492	struct ctl_port *ctl_ports[CTL_MAX_PORTS];
493	uint32_t num_backends;
494	STAILQ_HEAD(, ctl_backend_driver) be_list;
495	struct mtx pool_lock;
496	uint32_t num_pools;
497	uint32_t cur_pool_id;
498	STAILQ_HEAD(, ctl_io_pool) io_pools;
499	struct ctl_thread threads[CTL_MAX_THREADS];
500	TAILQ_HEAD(tpc_tokens, tpc_token) tpc_tokens;
501	struct callout tpc_timeout;
502};
503
504#ifdef _KERNEL
505
506extern const struct ctl_cmd_entry ctl_cmd_table[256];
507
508uint32_t ctl_get_initindex(struct ctl_nexus *nexus);
509uint32_t ctl_get_resindex(struct ctl_nexus *nexus);
510uint32_t ctl_port_idx(int port_num);
511int ctl_pool_create(struct ctl_softc *ctl_softc, ctl_pool_type pool_type,
512		    uint32_t total_ctl_io, struct ctl_io_pool **npool);
513void ctl_pool_free(struct ctl_io_pool *pool);
514int ctl_scsi_release(struct ctl_scsiio *ctsio);
515int ctl_scsi_reserve(struct ctl_scsiio *ctsio);
516int ctl_start_stop(struct ctl_scsiio *ctsio);
517int ctl_sync_cache(struct ctl_scsiio *ctsio);
518int ctl_format(struct ctl_scsiio *ctsio);
519int ctl_read_buffer(struct ctl_scsiio *ctsio);
520int ctl_write_buffer(struct ctl_scsiio *ctsio);
521int ctl_write_same(struct ctl_scsiio *ctsio);
522int ctl_unmap(struct ctl_scsiio *ctsio);
523int ctl_mode_select(struct ctl_scsiio *ctsio);
524int ctl_mode_sense(struct ctl_scsiio *ctsio);
525int ctl_log_sense(struct ctl_scsiio *ctsio);
526int ctl_read_capacity(struct ctl_scsiio *ctsio);
527int ctl_read_capacity_16(struct ctl_scsiio *ctsio);
528int ctl_read_defect(struct ctl_scsiio *ctsio);
529int ctl_read_write(struct ctl_scsiio *ctsio);
530int ctl_cnw(struct ctl_scsiio *ctsio);
531int ctl_report_luns(struct ctl_scsiio *ctsio);
532int ctl_request_sense(struct ctl_scsiio *ctsio);
533int ctl_tur(struct ctl_scsiio *ctsio);
534int ctl_verify(struct ctl_scsiio *ctsio);
535int ctl_inquiry(struct ctl_scsiio *ctsio);
536int ctl_persistent_reserve_in(struct ctl_scsiio *ctsio);
537int ctl_persistent_reserve_out(struct ctl_scsiio *ctsio);
538int ctl_report_tagret_port_groups(struct ctl_scsiio *ctsio);
539int ctl_report_supported_opcodes(struct ctl_scsiio *ctsio);
540int ctl_report_supported_tmf(struct ctl_scsiio *ctsio);
541int ctl_report_timestamp(struct ctl_scsiio *ctsio);
542int ctl_isc(struct ctl_scsiio *ctsio);
543
544void ctl_tpc_init(struct ctl_softc *softc);
545void ctl_tpc_shutdown(struct ctl_softc *softc);
546void ctl_tpc_lun_init(struct ctl_lun *lun);
547void ctl_tpc_lun_shutdown(struct ctl_lun *lun);
548int ctl_inquiry_evpd_tpc(struct ctl_scsiio *ctsio, int alloc_len);
549int ctl_receive_copy_status_lid1(struct ctl_scsiio *ctsio);
550int ctl_receive_copy_failure_details(struct ctl_scsiio *ctsio);
551int ctl_receive_copy_status_lid4(struct ctl_scsiio *ctsio);
552int ctl_receive_copy_operating_parameters(struct ctl_scsiio *ctsio);
553int ctl_extended_copy_lid1(struct ctl_scsiio *ctsio);
554int ctl_extended_copy_lid4(struct ctl_scsiio *ctsio);
555int ctl_copy_operation_abort(struct ctl_scsiio *ctsio);
556int ctl_populate_token(struct ctl_scsiio *ctsio);
557int ctl_write_using_token(struct ctl_scsiio *ctsio);
558int ctl_receive_rod_token_information(struct ctl_scsiio *ctsio);
559int ctl_report_all_rod_tokens(struct ctl_scsiio *ctsio);
560
561#endif	/* _KERNEL */
562
563#endif	/* _CTL_PRIVATE_H_ */
564
565/*
566 * vim: ts=8
567 */
568