Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6/kvm.git] / drivers / scsi / bfa / bfa_cb_ioim_macros.h
blob53a616f5f50d75881469c340e0aab80eb673b607
1 /*
2 * Copyright (c) 2005-2009 Brocade Communications Systems, Inc.
3 * All rights reserved
4 * www.brocade.com
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
18 /**
19 * bfa_cb_ioim_macros.h BFA IOIM driver interface macros.
22 #ifndef __BFA_HCB_IOIM_MACROS_H__
23 #define __BFA_HCB_IOIM_MACROS_H__
25 #include <bfa_os_inc.h>
27 * #include <linux/dma-mapping.h>
29 * #include <scsi/scsi.h> #include <scsi/scsi_cmnd.h> #include
30 * <scsi/scsi_device.h> #include <scsi/scsi_host.h>
32 #include "bfad_im_compat.h"
35 * task attribute values in FCP-2 FCP_CMND IU
37 #define SIMPLE_Q 0
38 #define HEAD_OF_Q 1
39 #define ORDERED_Q 2
40 #define ACA_Q 4
41 #define UNTAGGED 5
43 static inline lun_t
44 bfad_int_to_lun(u32 luno)
46 union {
47 u16 scsi_lun[4];
48 lun_t bfa_lun;
49 } lun;
51 lun.bfa_lun = 0;
52 lun.scsi_lun[0] = bfa_os_htons(luno);
54 return lun.bfa_lun;
57 /**
58 * Get LUN for the I/O request
60 #define bfa_cb_ioim_get_lun(__dio) \
61 bfad_int_to_lun(((struct scsi_cmnd *)__dio)->device->lun)
63 /**
64 * Get CDB for the I/O request
66 static inline u8 *
67 bfa_cb_ioim_get_cdb(struct bfad_ioim_s *dio)
69 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
71 return (u8 *) cmnd->cmnd;
74 /**
75 * Get I/O direction (read/write) for the I/O request
77 static inline enum fcp_iodir
78 bfa_cb_ioim_get_iodir(struct bfad_ioim_s *dio)
80 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
81 enum dma_data_direction dmadir;
83 dmadir = cmnd->sc_data_direction;
84 if (dmadir == DMA_TO_DEVICE)
85 return FCP_IODIR_WRITE;
86 else if (dmadir == DMA_FROM_DEVICE)
87 return FCP_IODIR_READ;
88 else
89 return FCP_IODIR_NONE;
92 /**
93 * Get IO size in bytes for the I/O request
95 static inline u32
96 bfa_cb_ioim_get_size(struct bfad_ioim_s *dio)
98 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
100 return scsi_bufflen(cmnd);
104 * Get timeout for the I/O request
106 static inline u8
107 bfa_cb_ioim_get_timeout(struct bfad_ioim_s *dio)
109 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
111 * TBD: need a timeout for scsi passthru
113 if (cmnd->device->host == NULL)
114 return 4;
116 return 0;
120 * Get Command Reference Number for the I/O request. 0 if none.
122 static inline u8
123 bfa_cb_ioim_get_crn(struct bfad_ioim_s *dio)
125 return 0;
129 * Get SAM-3 priority for the I/O request. 0 is default.
131 static inline u8
132 bfa_cb_ioim_get_priority(struct bfad_ioim_s *dio)
134 return 0;
138 * Get task attributes for the I/O request. Default is FCP_TASK_ATTR_SIMPLE(0).
140 static inline u8
141 bfa_cb_ioim_get_taskattr(struct bfad_ioim_s *dio)
143 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
144 u8 task_attr = UNTAGGED;
146 if (cmnd->device->tagged_supported) {
147 switch (cmnd->tag) {
148 case HEAD_OF_QUEUE_TAG:
149 task_attr = HEAD_OF_Q;
150 break;
151 case ORDERED_QUEUE_TAG:
152 task_attr = ORDERED_Q;
153 break;
154 default:
155 task_attr = SIMPLE_Q;
156 break;
160 return task_attr;
164 * Get CDB length in bytes for the I/O request. Default is FCP_CMND_CDB_LEN(16).
166 static inline u8
167 bfa_cb_ioim_get_cdblen(struct bfad_ioim_s *dio)
169 struct scsi_cmnd *cmnd = (struct scsi_cmnd *)dio;
171 return cmnd->cmd_len;
176 #endif /* __BFA_HCB_IOIM_MACROS_H__ */