1 /*******************************************************************************
2 * IBM Virtual SCSI Target Driver
3 * Copyright (C) 2003-2005 Dave Boutcher (boutcher@us.ibm.com) IBM Corp.
4 * Santiago Leon (santil@us.ibm.com) IBM Corp.
5 * Linda Xie (lxie@us.ibm.com) IBM Corp.
7 * Copyright (C) 2005-2011 FUJITA Tomonori <tomof@acm.org>
8 * Copyright (C) 2010 Nicholas A. Bellinger <nab@kernel.org>
9 * Copyright (C) 2016 Bryant G. Ly <bryantly@linux.vnet.ibm.com> IBM Corp.
11 * Authors: Bryant G. Ly <bryantly@linux.vnet.ibm.com>
12 * Authors: Michael Cyr <mikecyr@linux.vnet.ibm.com>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 ****************************************************************************/
26 #ifndef __H_IBMVSCSI_TGT
27 #define __H_IBMVSCSI_TGT
29 #include <linux/interrupt.h>
32 #define SYS_ID_NAME_LEN 64
33 #define PARTITION_NAMELEN 96
34 #define IBMVSCSIS_NAMELEN 32
39 #define MAX_CMD_Q_PAGES 4
40 #define CRQ_PER_PAGE (PAGE_SIZE / sizeof(struct viosrp_crq))
41 /* in terms of number of elements */
42 #define DEFAULT_CMD_Q_SIZE CRQ_PER_PAGE
43 #define MAX_CMD_Q_SIZE (DEFAULT_CMD_Q_SIZE * MAX_CMD_Q_PAGES)
45 #define SRP_VIOLATION 0x102 /* general error code */
48 * SRP buffer formats defined as of 16.a supported by this driver.
50 #define SUPPORTED_FORMATS ((SRP_DATA_DESC_DIRECT << 1) | \
51 (SRP_DATA_DESC_INDIRECT << 1))
53 #define SCSI_LUN_ADDR_METHOD_FLAT 1
56 u32 liobn
; /* Unique per vdevice */
57 u64 tce_base
; /* Physical location of the TCE table */
58 u64 tce_size
; /* Size of the TCE table in bytes */
62 u64 unit_id
; /* 64 bit will force alignment */
63 #define NUM_DMA_WINDOWS 2
66 struct dma_window window
[NUM_DMA_WINDOWS
];
68 /* root node property "ibm,partition-no" */
70 char partition_name
[PARTITION_NAMELEN
];
73 #define MAX_NUM_PORTS 1
74 #define MAX_H_COPY_RDMA (128 * 1024)
79 #define ADAPT_SUCCESS 0L
80 /* choose error codes that do not conflict with PHYP */
89 #define SRP_VERSION "16.a"
91 /* root node property ibm,partition-name */
92 char partition_name
[PARTITION_NAMELEN
];
93 /* root node property ibm,partition-no */
101 * Changing this constant changes the number of seconds to wait before
102 * considering the client will never service its queue again.
104 #define SECONDS_TO_CONSIDER_FAILED 30
106 * These constants set the polling period used to determine if the client
107 * has freed at least one element in the response queue.
109 #define WAIT_SECONDS 1
110 #define WAIT_NANO_SECONDS 5000
111 #define MAX_TIMER_POPS ((1000000 / WAIT_NANO_SECONDS) * \
112 SECONDS_TO_CONSIDER_FAILED)
114 * general purpose timer control block
115 * which can be used for multiple functions
118 struct hrtimer timer
;
120 * how long has it been since the client
121 * serviced the queue. The variable is incrmented
122 * in the service_wait_q routine and cleared
126 /* the timer is started */
132 struct viosrp_crq
*base_addr
;
133 dma_addr_t crq_token
;
134 /* used to maintain index */
136 /* current element */
141 #define SCSOLNT_RESP_SHIFT 1
142 #define UCSOLNT_RESP_SHIFT 2
144 #define SCSOLNT BIT(SCSOLNT_RESP_SHIFT)
145 #define UCSOLNT BIT(UCSOLNT_RESP_SHIFT)
149 TASK_MANAGEMENT
= 0x02,
150 /* MAD or addressed to port 0 */
159 /* tag is just to help client identify cmd, so don't translate be/le */
163 struct ibmvscsis_cmd
{
164 struct list_head list
;
165 /* Used for TCM Core operations */
166 struct se_cmd se_cmd
;
167 struct iu_entry
*iue
;
169 struct work_struct work
;
170 struct scsi_info
*adapter
;
171 struct ibmvscsis_cmd
*abort_cmd
;
172 /* Sense buffer that will be mapped into outgoing status */
173 unsigned char sense_buf
[TRANSPORT_SENSE_BUFFER
];
175 #define CMD_FAST_FAIL BIT(0)
176 #define DELAY_SEND BIT(1)
181 struct ibmvscsis_nexus
{
182 struct se_session
*se_sess
;
185 struct ibmvscsis_tport
{
186 /* SCSI protocol the tport is providing */
188 /* ASCII formatted WWPN for SRP Target port */
189 char tport_name
[IBMVSCSIS_NAMELEN
];
190 /* Returned by ibmvscsis_make_tport() */
191 struct se_wwn tport_wwn
;
192 /* Returned by ibmvscsis_make_tpg() */
193 struct se_portal_group se_tpg
;
194 /* ibmvscsis port target portal group tag for TCM */
196 /* Pointer to TCM session for I_T Nexus */
197 struct ibmvscsis_nexus
*ibmv_nexus
;
203 struct list_head list
;
206 /* commands waiting for space on repsonse queue */
207 struct list_head waiting_rsp
;
208 #define NO_QUEUE 0x00
209 #define WAIT_ENABLED 0X01
210 #define WAIT_CONNECTION 0x04
211 /* have established a connection */
212 #define CONNECTED 0x08
213 /* at least one port is processing SRP IU */
214 #define SRP_PROCESSING 0x10
215 /* remove request received */
216 #define UNCONFIGURING 0x20
217 /* disconnect by letting adapter go idle, no error */
218 #define WAIT_IDLE 0x40
219 /* disconnecting to clear an error */
220 #define ERR_DISCONNECT 0x80
221 /* disconnect to clear error state, then come back up */
222 #define ERR_DISCONNECT_RECONNECT 0x100
223 /* disconnected after clearing an error */
224 #define ERR_DISCONNECTED 0x200
225 /* A series of errors caused unexpected errors */
226 #define UNDEFINED 0x400
229 struct target_dds dds
;
231 /* list of free commands */
232 struct list_head free_cmd
;
233 /* command elements ready for scheduler */
234 struct list_head schedule_q
;
235 /* commands sent to TCM */
236 struct list_head active_q
;
238 /* ioba of map buffer */
240 /* allowable number of outstanding SRP requests */
244 /* outstanding transactions against credit limit */
247 /* allow only one outstanding mad request */
248 #define PROCESSING_MAD 0x00002
249 /* Waiting to go idle */
250 #define WAIT_FOR_IDLE 0x00004
251 /* H_REG_CRQ called */
252 #define CRQ_CLOSED 0x00010
253 /* detected that client has failed */
254 #define CLIENT_FAILED 0x00040
255 /* detected that transport event occurred */
256 #define TRANS_EVENT 0x00080
257 /* don't attempt to send anything to the client */
258 #define RESPONSE_Q_DOWN 0x00100
259 /* request made to schedule disconnect handler */
260 #define SCHEDULE_DISCONNECT 0x00400
261 /* disconnect handler is scheduled */
262 #define DISCONNECT_SCHEDULED 0x00800
263 /* remove function is sleeping */
264 #define CFG_SLEEPING 0x01000
265 /* Register for Prepare for Suspend Transport Events */
266 #define PREP_FOR_SUSPEND_ENABLED 0x02000
267 /* Prepare for Suspend event sent */
268 #define PREP_FOR_SUSPEND_PENDING 0x04000
269 /* Resume from Suspend event sent */
270 #define PREP_FOR_SUSPEND_ABORTED 0x08000
271 /* Prepare for Suspend event overwrote another CRQ entry */
272 #define PREP_FOR_SUSPEND_OVERWRITE 0x10000
275 spinlock_t intr_lock
;
276 /* information needed to manage command queue */
277 struct cmd_queue cmd_q
;
278 /* used in hcall to copy response back into srp buffer */
280 /* used in crq, to tag what iu the response is for */
284 /* control block for the response queue timer */
285 struct timer_cb rsp_q_timer
;
286 /* keep last client to enable proper accounting */
287 struct client_info client_data
;
288 /* what can this client do */
291 * The following two fields capture state and flag changes that
292 * can occur when the lock is given up. In the orginal design,
293 * the lock was held during calls into phyp;
294 * however, phyp did not meet PAPR architecture. This is
300 struct workqueue_struct
*work_q
;
301 struct completion wait_idle
;
302 struct completion unconfig
;
304 struct vio_dev
*dma_dev
;
305 struct srp_target target
;
306 struct ibmvscsis_tport tport
;
307 struct tasklet_struct work_task
;
308 struct work_struct proc_work
;
312 * Provide a constant that allows software to detect the adapter is
313 * disconnecting from the client from one of several states.
315 #define IS_DISCONNECTING (UNCONFIGURING | ERR_DISCONNECT_RECONNECT | \
319 * Provide a constant that can be used with interrupt handling that
320 * essentially lets the interrupt handler know that all requests should
323 #define DONT_PROCESS_STATE (IS_DISCONNECTING | UNDEFINED | \
324 ERR_DISCONNECTED | WAIT_IDLE)
327 * If any of these flag bits are set then do not allow the interrupt
328 * handler to schedule the off level handler.
330 #define BLOCK (DISCONNECT_SCHEDULED)
332 /* State and transition events that stop the interrupt handler */
333 #define TARGET_STOP(VSCSI) (long)(((VSCSI)->state & DONT_PROCESS_STATE) | \
334 ((VSCSI)->flags & BLOCK))
336 #define PREP_FOR_SUSPEND_FLAGS (PREP_FOR_SUSPEND_ENABLED | \
337 PREP_FOR_SUSPEND_PENDING | \
338 PREP_FOR_SUSPEND_ABORTED | \
339 PREP_FOR_SUSPEND_OVERWRITE)
341 /* flag bit that are not reset during disconnect */
342 #define PRESERVE_FLAG_FIELDS (PREP_FOR_SUSPEND_FLAGS)
344 #define vio_iu(IUE) ((union viosrp_iu *)((IUE)->sbuf->buf))
346 #define READ_CMD(cdb) (((cdb)[0] & 0x1F) == 8)
347 #define WRITE_CMD(cdb) (((cdb)[0] & 0x1F) == 0xA)
349 #ifndef H_GET_PARTNER_INFO
350 #define H_GET_PARTNER_INFO 0x0000000000000008LL
352 #ifndef H_ENABLE_PREPARE_FOR_SUSPEND
353 #define H_ENABLE_PREPARE_FOR_SUSPEND 0x000000000000001DLL
355 #ifndef H_READY_FOR_SUSPEND
356 #define H_READY_FOR_SUSPEND 0x000000000000001ELL
360 #define h_copy_rdma(l, sa, sb, da, db) \
361 plpar_hcall_norets(H_COPY_RDMA, l, sa, sb, da, db)
362 #define h_vioctl(u, o, a, u1, u2, u3, u4) \
363 plpar_hcall_norets(H_VIOCTL, u, o, a, u1, u2)
364 #define h_reg_crq(ua, tok, sz) \
365 plpar_hcall_norets(H_REG_CRQ, ua, tok, sz)
366 #define h_free_crq(ua) \
367 plpar_hcall_norets(H_FREE_CRQ, ua)
368 #define h_send_crq(ua, d1, d2) \
369 plpar_hcall_norets(H_SEND_CRQ, ua, d1, d2)