1 /*- 2 * Copyright (c) 2001 Michael Smith 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 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 29 /* 30 * CISS adapter driver datastructures 31 */ 32 33 /************************************************************************ 34 * Tunable parameters 35 */ 36 37 /* 38 * There is no guaranteed upper bound on the number of concurrent 39 * commands an adapter may claim to support. Cap it at a reasonable 40 * value. 41 */ 42 #define CISS_MAX_REQUESTS 256 43 44 /* 45 * Maximum number of logical drives we support. 46 */ 47 #define CISS_MAX_LOGICAL 15 48 49 /* 50 * Interrupt reduction can be controlled by tuning the interrupt 51 * coalesce delay and count paramters. The delay (in microseconds) 52 * defers delivery of interrupts to increase the chance of there being 53 * more than one completed command ready when the interrupt is 54 * delivered. The count expedites the delivery of the interrupt when 55 * the given number of commands are ready. 56 * 57 * If the delay is set to 0, interrupts are delivered immediately. 58 */ 59 #define CISS_INTERRUPT_COALESCE_DELAY 1000 60 #define CISS_INTERRUPT_COALESCE_COUNT 16 61 62 /* 63 * Heartbeat routine timeout in seconds. Note that since event 64 * handling is performed on a callback basis, we don't need this to 65 * run very often. 66 */ 67 #define CISS_HEARTBEAT_RATE 10 68 69 /* 70 * Maximum number of events we will queue for a monitoring utility. 71 */ 72 #define CISS_MAX_EVENTS 32 73 74 /************************************************************************ 75 * Command queue statistics 76 */ 77 78 #define CISSQ_FREE 0 79 #define CISSQ_BUSY 1 80 #define CISSQ_COMPLETE 2 81 #define CISSQ_COUNT 3 82 83 struct ciss_qstat 84 { 85 u_int32_t q_length; 86 u_int32_t q_max; 87 }; 88 89 /************************************************************************ 90 * Driver version. Only really significant to the ACU interface. 91 */ 92 #define CISS_DRIVER_VERSION 20011009 93 94 /************************************************************************ 95 * Driver data structures 96 */ 97 98 /* 99 * Each command issued to the adapter is managed by a request 100 * structure. 101 */ 102 struct ciss_request 103 { 104 TAILQ_ENTRY(ciss_request) cr_link; 105 int cr_onq; /* which queue we are on */ 106 107 struct ciss_softc *cr_sc; /* controller softc */ 108 void *cr_data; /* data buffer */ 109 u_int32_t cr_length; /* data length */ 110 bus_dmamap_t cr_datamap; /* DMA map for data */ 111 int cr_tag; 112 int cr_flags; 113 #define CISS_REQ_MAPPED (1<<0) /* data mapped */ 114 #define CISS_REQ_SLEEP (1<<1) /* submitter sleeping */ 115 #define CISS_REQ_POLL (1<<2) /* submitter polling */ 116 #define CISS_REQ_DATAOUT (1<<3) /* data host->adapter */ 117 #define CISS_REQ_DATAIN (1<<4) /* data adapter->host */ 118 119 void (* cr_complete)(struct ciss_request *); 120 void *cr_private; 121 }; 122 123 /* 124 * The adapter command structure is defined with a zero-length 125 * scatter/gather list size. In practise, we want space for a 126 * scatter-gather list, and we also want to avoid having commands 127 * cross page boundaries. 128 * 129 * Note that 512 bytes yields 28 scatter/gather entries, or the 130 * ability to map (26 * PAGE_SIZE) + 2 bytes of data. On x86, this is 131 * 104kB. 256 bytes would only yield 12 entries, giving a mere 40kB, 132 * too small. 133 */ 134 135 #define CISS_COMMAND_ALLOC_SIZE 512 /* XXX tune to get sensible s/g list length */ 136 #define CISS_COMMAND_SG_LENGTH ((CISS_COMMAND_ALLOC_SIZE - sizeof(struct ciss_command)) \ 137 / sizeof(struct ciss_sg_entry)) 138 139 /* 140 * Per-logical-drive data. 141 */ 142 struct ciss_ldrive 143 { 144 union ciss_device_address cl_address; 145 146 int cl_status; 147 #define CISS_LD_NONEXISTENT 0 148 #define CISS_LD_ONLINE 1 149 #define CISS_LD_OFFLINE 2 150 151 struct ciss_bmic_id_ldrive *cl_ldrive; 152 struct ciss_bmic_id_lstatus *cl_lstatus; 153 154 char cl_name[16]; /* device name */ 155 }; 156 157 /* 158 * Per-adapter data 159 */ 160 struct ciss_softc 161 { 162 /* bus connections */ 163 device_t ciss_dev; /* bus attachment */ 164 dev_t ciss_dev_t; /* control device */ 165 166 struct resource *ciss_regs_resource; /* register interface window */ 167 int ciss_regs_rid; /* resource ID */ 168 bus_space_handle_t ciss_regs_bhandle; /* bus space handle */ 169 bus_space_tag_t ciss_regs_btag; /* bus space tag */ 170 171 struct resource *ciss_cfg_resource; /* config struct interface window */ 172 int ciss_cfg_rid; /* resource ID */ 173 struct ciss_config_table *ciss_cfg; /* config table in adapter memory */ 174 struct ciss_bmic_id_table *ciss_id; /* ID table in host memory */ 175 u_int32_t ciss_heartbeat; /* last heartbeat value */ 176 int ciss_heart_attack; /* number of times we have seen this value */ 177 178 struct resource *ciss_irq_resource; /* interrupt */ 179 int ciss_irq_rid; /* resource ID */ 180 void *ciss_intr; /* interrupt handle */ 181 182 bus_dma_tag_t ciss_parent_dmat; /* parent DMA tag */ 183 bus_dma_tag_t ciss_buffer_dmat; /* data buffer/command DMA tag */ 184 185 u_int32_t ciss_interrupt_mask; /* controller interrupt mask bits */ 186 187 int ciss_max_requests; 188 struct ciss_request ciss_request[CISS_MAX_REQUESTS]; /* requests */ 189 void *ciss_command; /* command structures */ 190 bus_dma_tag_t ciss_command_dmat; /* command DMA tag */ 191 bus_dmamap_t ciss_command_map; /* command DMA map */ 192 u_int32_t ciss_command_phys; /* command array base address */ 193 TAILQ_HEAD(,ciss_request) ciss_free; /* requests available for reuse */ 194 TAILQ_HEAD(,ciss_request) ciss_busy; /* requests in the adapter */ 195 TAILQ_HEAD(,ciss_request) ciss_complete; /* requests which have been returned by the adapter */ 196 197 struct callout_handle ciss_periodic; /* periodic event handling */ 198 struct ciss_request *ciss_periodic_notify; /* notify callback request */ 199 200 struct ciss_notify ciss_notify[CISS_MAX_EVENTS]; 201 int ciss_notify_head; /* saved-event ringbuffer */ 202 int ciss_notify_tail; 203 204 struct ciss_ldrive ciss_logical[CISS_MAX_LOGICAL]; 205 206 struct cam_devq *ciss_cam_devq; 207 struct cam_sim *ciss_cam_sim; 208 struct cam_path *ciss_cam_path; 209 210 int ciss_flags; 211 #define CISS_FLAG_NOTIFY_OK (1<<0) /* notify command running OK */ 212 #define CISS_FLAG_CONTROL_OPEN (1<<1) /* control device is open */ 213 #define CISS_FLAG_ABORTING (1<<2) /* driver is going away */ 214 #define CISS_FLAG_RUNNING (1<<3) /* driver is running (interrupts usable) */ 215 216 #define CISS_FLAG_FAKE_SYNCH (1<<16) /* needs SYNCHRONISE_CACHE faked */ 217 #define CISS_FLAG_BMIC_ABORT (1<<17) /* use BMIC command to abort Notify on Event */ 218 219 struct ciss_qstat ciss_qstat[CISSQ_COUNT]; /* queue statistics */ 220 }; 221 222 /* 223 * Given a request tag, find the corresponding command in virtual or 224 * physical space. 225 * 226 * The arithmetic here is due to the allocation of ciss_command structures 227 * inside CISS_COMMAND_ALLOC_SIZE blocks. See the comment at the definition 228 * of CISS_COMMAND_ALLOC_SIZE above. 229 */ 230 #define CISS_FIND_COMMAND(cr) \ 231 (struct ciss_command *)((u_int8_t *)(cr)->cr_sc->ciss_command + \ 232 ((cr)->cr_tag * CISS_COMMAND_ALLOC_SIZE)) 233 #define CISS_FIND_COMMANDPHYS(cr) ((cr)->cr_sc->ciss_command_phys + \ 234 ((cr)->cr_tag * CISS_COMMAND_ALLOC_SIZE)) 235 236 /************************************************************************ 237 * Debugging/diagnostic output. 238 */ 239 240 /* 241 * Debugging levels: 242 * 0 - quiet, only emit warnings 243 * 1 - talkative, log major events, but nothing on the I/O path 244 * 2 - noisy, log events on the I/O path 245 * 3 - extremely noisy, log items in loops 246 */ 247 #ifdef CISS_DEBUG 248 # define debug(level, fmt, args...) \ 249 do { \ 250 if (level <= CISS_DEBUG) printf("%s: " fmt "\n", __FUNCTION__ , ##args); \ 251 } while(0) 252 # define debug_called(level) \ 253 do { \ 254 if (level <= CISS_DEBUG) printf(__FUNCTION__ ": called\n"); \ 255 } while(0) 256 # define debug_struct(s) printf(" SIZE %s: %d\n", #s, sizeof(struct s)) 257 # define debug_union(s) printf(" SIZE %s: %d\n", #s, sizeof(union s)) 258 # define debug_type(s) printf(" SIZE %s: %d\n", #s, sizeof(s)) 259 # define debug_field(s, f) printf(" OFFSET %s.%s: %d\n", #s, #f, ((int)&(((struct s *)0)->f))) 260 # define debug_const(c) printf(" CONST %s %d/0x%x\n", #c, c, c); 261 #else 262 # define debug(level, fmt, args...) 263 # define debug_called(level) 264 # define debug_struct(s) 265 # define debug_union(s) 266 # define debug_type(s) 267 # define debug_field(s, f) 268 # define debug_const(c) 269 #endif 270 271 #define ciss_printf(sc, fmt, args...) device_printf(sc->ciss_dev, fmt , ##args) 272 273 /************************************************************************ 274 * Queue primitives 275 */ 276 277 #define CISSQ_ADD(sc, qname) \ 278 do { \ 279 struct ciss_qstat *qs = &(sc)->ciss_qstat[qname]; \ 280 \ 281 qs->q_length++; \ 282 if (qs->q_length > qs->q_max) \ 283 qs->q_max = qs->q_length; \ 284 } while(0) 285 286 #define CISSQ_REMOVE(sc, qname) (sc)->ciss_qstat[qname].q_length-- 287 #define CISSQ_INIT(sc, qname) \ 288 do { \ 289 sc->ciss_qstat[qname].q_length = 0; \ 290 sc->ciss_qstat[qname].q_max = 0; \ 291 } while(0) 292 293 294 #define CISSQ_REQUEST_QUEUE(name, index) \ 295 static __inline void \ 296 ciss_initq_ ## name (struct ciss_softc *sc) \ 297 { \ 298 TAILQ_INIT(&sc->ciss_ ## name); \ 299 CISSQ_INIT(sc, index); \ 300 } \ 301 static __inline void \ 302 ciss_enqueue_ ## name (struct ciss_request *cr) \ 303 { \ 304 int s; \ 305 \ 306 s = splcam(); \ 307 TAILQ_INSERT_TAIL(&cr->cr_sc->ciss_ ## name, cr, cr_link); \ 308 CISSQ_ADD(cr->cr_sc, index); \ 309 cr->cr_onq = index; \ 310 splx(s); \ 311 } \ 312 static __inline void \ 313 ciss_requeue_ ## name (struct ciss_request *cr) \ 314 { \ 315 int s; \ 316 \ 317 s = splcam(); \ 318 TAILQ_INSERT_HEAD(&cr->cr_sc->ciss_ ## name, cr, cr_link); \ 319 CISSQ_ADD(cr->cr_sc, index); \ 320 cr->cr_onq = index; \ 321 splx(s); \ 322 } \ 323 static __inline struct ciss_request * \ 324 ciss_dequeue_ ## name (struct ciss_softc *sc) \ 325 { \ 326 struct ciss_request *cr; \ 327 int s; \ 328 \ 329 s = splcam(); \ 330 if ((cr = TAILQ_FIRST(&sc->ciss_ ## name)) != NULL) { \ 331 TAILQ_REMOVE(&sc->ciss_ ## name, cr, cr_link); \ 332 CISSQ_REMOVE(sc, index); \ 333 cr->cr_onq = -1; \ 334 } \ 335 splx(s); \ 336 return(cr); \ 337 } \ 338 static __inline int \ 339 ciss_remove_ ## name (struct ciss_request *cr) \ 340 { \ 341 int s, error; \ 342 \ 343 s = splcam(); \ 344 if (cr->cr_onq != index) { \ 345 printf("request on queue %d (expected %d)\n", cr->cr_onq, index);\ 346 error = 1; \ 347 } else { \ 348 TAILQ_REMOVE(&cr->cr_sc->ciss_ ## name, cr, cr_link); \ 349 CISSQ_REMOVE(cr->cr_sc, index); \ 350 cr->cr_onq = -1; \ 351 error = 0; \ 352 } \ 353 splx(s); \ 354 return(error); \ 355 } \ 356 struct hack 357 358 CISSQ_REQUEST_QUEUE(free, CISSQ_FREE); 359 CISSQ_REQUEST_QUEUE(busy, CISSQ_BUSY); 360 CISSQ_REQUEST_QUEUE(complete, CISSQ_COMPLETE); 361 362 /******************************************************************************** 363 * space-fill a character string 364 */ 365 static __inline void 366 padstr(char *targ, const char *src, int len) 367 { 368 while (len-- > 0) { 369 if (*src != 0) { 370 *targ++ = *src++; 371 } else { 372 *targ++ = ' '; 373 } 374 } 375 } 376