Sync CAM with FreeBSD using lockmgr locks instead of mutexes.
[dragonfly.git] / sys / dev / disk / aic7xxx / aic_osm_lib.h
blob0c06c756fb2c4bf22e6217daeb2e0aff624de685
1 /*
2 * FreeBSD platform specific, shared driver option settings, data structures,
3 * function declarations and includes.
5 * Copyright (c) 1994-2001 Justin T. Gibbs.
6 * Copyright (c) 2001-2003 Adaptec Inc.
7 * All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions, and the following disclaimer,
14 * without modification.
15 * 2. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
18 * Alternatively, this software may be distributed under the terms of the
19 * GNU Public License ("GPL").
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
25 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
33 * $Id: //depot/aic7xxx/freebsd/dev/aic7xxx/aic_osm_lib.h#5 $
35 * $FreeBSD: src/sys/dev/aic7xxx/aic_osm_lib.h,v 1.4 2004/11/18 20:22:31 gibbs Exp $
36 * $DragonFly: src/sys/dev/disk/aic7xxx/aic_osm_lib.h,v 1.6 2008/05/18 20:30:21 pavalos Exp $
39 /******************************** OS Includes *********************************/
40 #if __FreeBSD_version >= 500000
41 #include <sys/mutex.h>
42 #else
43 #include <sys/lock.h>
44 #endif
46 /*************************** Library Symbol Mapping ***************************/
47 #define AIC_LIB_ENTRY_CONCAT(x, prefix) prefix ## x
48 #define AIC_LIB_ENTRY_EXPAND(x, prefix) AIC_LIB_ENTRY_CONCAT(x, prefix)
49 #define AIC_LIB_ENTRY(x) AIC_LIB_ENTRY_EXPAND(x, AIC_LIB_PREFIX)
50 #define AIC_CONST_ENTRY(x) AIC_LIB_ENTRY_EXPAND(x,AIC_CONST_PREFIX)
52 #define aic_softc AIC_LIB_ENTRY(_softc)
53 #define aic_tailq AIC_LIB_ENTRY(_tailq)
54 #define aic_transinfo AIC_LIB_ENTRY(_transinfo)
55 #define aic_platform_data AIC_LIB_ENTRY(_platform_data)
56 #define aic_devinfo AIC_LIB_ENTRY(_devinfo)
57 #define aic_lock AIC_LIB_ENTRY(_lock)
58 #define aic_unlock AIC_LIB_ENTRY(_unlock)
59 #define aic_callback_t AIC_LIB_ENTRY(_callback_t)
60 #define aic_platform_freeze_devq AIC_LIB_ENTRY(_platform_freeze_devq)
61 #define aic_platform_abort_scbs AIC_LIB_ENTRY(_platform_abort_scbs)
62 #define aic_platform_timeout AIC_LIB_ENTRY(_platform_timeout)
63 #define aic_timeout AIC_LIB_ENTRY(_timeout)
64 #define aic_set_recoveryscb AIC_LIB_ENTRY(_set_recoveryscb)
65 #define aic_spawn_recovery_thread AIC_LIB_ENTRY(_spawn_recovery_thread)
66 #define aic_wakeup_recovery_thread AIC_LIB_ENTRY(_wakeup_recovery_thread)
67 #define aic_terminate_recovery_thread \
68 AIC_LIB_ENTRY(_terminate_recovery_thread)
69 #define aic_recovery_thread AIC_LIB_ENTRY(_recovery_thread)
70 #define aic_recover_commands AIC_LIB_ENTRY(_recover_commands)
72 #define AIC_RESOURCE_SHORTAGE AIC_CONST_ENTRY(_RESOURCE_SHORTAGE)
73 #define AIC_SHUTDOWN_RECOVERY AIC_CONST_ENTRY(_SHUTDOWN_RECOVERY)
75 /********************************* Byte Order *********************************/
76 #if __FreeBSD_version >= 500000
77 #define aic_htobe16(x) htobe16(x)
78 #define aic_htobe32(x) htobe32(x)
79 #define aic_htobe64(x) htobe64(x)
80 #define aic_htole16(x) htole16(x)
81 #define aic_htole32(x) htole32(x)
82 #define aic_htole64(x) htole64(x)
84 #define aic_be16toh(x) be16toh(x)
85 #define aic_be32toh(x) be32toh(x)
86 #define aic_be64toh(x) be64toh(x)
87 #define aic_le16toh(x) le16toh(x)
88 #define aic_le32toh(x) le32toh(x)
89 #define aic_le64toh(x) le64toh(x)
90 #else
91 #define aic_htobe16(x) (x)
92 #define aic_htobe32(x) (x)
93 #define aic_htobe64(x) (x)
94 #define aic_htole16(x) (x)
95 #define aic_htole32(x) (x)
96 #define aic_htole64(x) (x)
98 #define aic_be16toh(x) (x)
99 #define aic_be32toh(x) (x)
100 #define aic_be64toh(x) (x)
101 #define aic_le16toh(x) (x)
102 #define aic_le32toh(x) (x)
103 #define aic_le64toh(x) (x)
104 #endif
106 /************************* Forward Declarations *******************************/
107 typedef device_t aic_dev_softc_t;
108 typedef union ccb *aic_io_ctx_t;
109 struct aic_softc;
110 struct scb;
112 /*************************** Timer DataStructures *****************************/
113 typedef struct callout aic_timer_t;
115 /****************************** Error Recovery ********************************/
116 void aic_set_recoveryscb(struct aic_softc *aic, struct scb *scb);
117 timeout_t aic_platform_timeout;
118 int aic_spawn_recovery_thread(struct aic_softc *aic);
119 void aic_terminate_recovery_thread(struct aic_softc *aic);
121 static __inline void aic_wakeup_recovery_thread(struct aic_softc *aic);
123 static __inline void
124 aic_wakeup_recovery_thread(struct aic_softc *aic)
126 wakeup(aic);
129 /****************************** Kernel Threads ********************************/
130 #if __FreeBSD_version > 500005
131 #define aic_kthread_create(func, farg, proc_ptr, flags, stackpgs, fmtstr, arg) \
132 kthread_create(func, farg, proc_ptr, flags, stackpgs, fmtstr, arg)
133 #else
134 #define aic_kthread_create(func, farg, proc_ptr, flags, stackpgs, fmtstr, arg) \
135 kthread_create(func, farg, proc_ptr, fmtstr, arg)
136 #endif
138 /******************************* Bus Space/DMA ********************************/
140 #if __FreeBSD_version >= 501102
141 #define aic_dma_tag_create(aic, parent_tag, alignment, boundary, \
142 lowaddr, highaddr, filter, filterarg, \
143 maxsize, nsegments, maxsegsz, flags, \
144 dma_tagp) \
145 bus_dma_tag_create(parent_tag, alignment, boundary, \
146 lowaddr, highaddr, filter, filterarg, \
147 maxsize, nsegments, maxsegsz, flags, \
148 busdma_lock_mutex, &Giant, \
149 dma_tagp)
150 #else
151 #define aic_dma_tag_create(aic, parent_tag, alignment, boundary, \
152 lowaddr, highaddr, filter, filterarg, \
153 maxsize, nsegments, maxsegsz, flags, \
154 dma_tagp) \
155 bus_dma_tag_create(parent_tag, alignment, boundary, \
156 lowaddr, highaddr, filter, filterarg, \
157 maxsize, nsegments, maxsegsz, flags, \
158 dma_tagp)
159 #endif
161 #define aic_dma_tag_destroy(aic, tag) \
162 bus_dma_tag_destroy(tag)
164 #define aic_dmamem_alloc(aic, dmat, vaddr, flags, mapp) \
165 bus_dmamem_alloc(dmat, vaddr, flags, mapp)
167 #define aic_dmamem_free(aic, dmat, vaddr, map) \
168 bus_dmamem_free(dmat, vaddr, map)
170 #define aic_dmamap_create(aic, tag, flags, mapp) \
171 bus_dmamap_create(tag, flags, mapp)
173 #define aic_dmamap_destroy(aic, tag, map) \
174 bus_dmamap_destroy(tag, map)
176 #define aic_dmamap_load(aic, dmat, map, addr, buflen, callback, \
177 callback_arg, flags) \
178 bus_dmamap_load(dmat, map, addr, buflen, callback, callback_arg, flags)
180 #define aic_dmamap_unload(aic, tag, map) \
181 bus_dmamap_unload(tag, map)
183 /* XXX Need to update Bus DMA for partial map syncs */
184 #define aic_dmamap_sync(aic, dma_tag, dmamap, offset, len, op) \
185 bus_dmamap_sync(dma_tag, dmamap, op)
187 /***************************** Core Includes **********************************/
188 #include AIC_CORE_INCLUDE
190 /***************************** Timer Facilities *******************************/
191 #if __FreeBSD_version >= 500000
192 #define aic_timer_init(timer) callout_init(timer, /*mpsafe*/1)
193 #else
194 #define aic_timer_init callout_init_mp
195 #endif
196 #define aic_timer_stop callout_stop
198 static __inline void aic_timer_reset(aic_timer_t *, u_int,
199 aic_callback_t *, void *);
200 static __inline u_int aic_get_timeout(struct scb *);
201 static __inline void aic_scb_timer_reset(struct scb *, u_int);
203 static __inline void
204 aic_timer_reset(aic_timer_t *timer, u_int msec, aic_callback_t *func, void *arg)
206 uint64_t time;
208 time = msec;
209 time *= hz;
210 time /= 1000;
211 callout_reset(timer, time, func, arg);
214 static __inline u_int
215 aic_get_timeout(struct scb *scb)
217 return (scb->io_ctx->ccb_h.timeout);
220 static __inline void
221 aic_scb_timer_reset(struct scb *scb, u_int msec)
223 uint64_t time;
225 time = msec;
226 time *= hz;
227 time /= 1000;
228 callout_reset(&scb->io_timer, time, aic_platform_timeout, scb);
231 static __inline void
232 aic_scb_timer_start(struct scb *scb)
235 if (AIC_SCB_DATA(scb->aic_softc)->recovery_scbs == 0
236 && scb->io_ctx->ccb_h.timeout != CAM_TIME_INFINITY) {
237 aic_scb_timer_reset(scb, scb->io_ctx->ccb_h.timeout);
241 /************************** Transaction Operations ****************************/
242 static __inline void aic_set_transaction_status(struct scb *, uint32_t);
243 static __inline void aic_set_scsi_status(struct scb *, uint32_t);
244 static __inline uint32_t aic_get_transaction_status(struct scb *);
245 static __inline uint32_t aic_get_scsi_status(struct scb *);
246 static __inline void aic_set_transaction_tag(struct scb *, int, u_int);
247 static __inline u_long aic_get_transfer_length(struct scb *);
248 static __inline int aic_get_transfer_dir(struct scb *);
249 static __inline void aic_set_residual(struct scb *, u_long);
250 static __inline void aic_set_sense_residual(struct scb *, u_long);
251 static __inline u_long aic_get_residual(struct scb *);
252 static __inline int aic_perform_autosense(struct scb *);
253 static __inline uint32_t aic_get_sense_bufsize(struct aic_softc*, struct scb*);
254 static __inline void aic_freeze_ccb(union ccb *ccb);
255 static __inline void aic_freeze_scb(struct scb *scb);
256 static __inline void aic_platform_freeze_devq(struct aic_softc *, struct scb *);
257 static __inline int aic_platform_abort_scbs(struct aic_softc *aic, int target,
258 char channel, int lun, u_int tag,
259 role_t role, uint32_t status);
261 static __inline
262 void aic_set_transaction_status(struct scb *scb, uint32_t status)
264 scb->io_ctx->ccb_h.status &= ~CAM_STATUS_MASK;
265 scb->io_ctx->ccb_h.status |= status;
268 static __inline
269 void aic_set_scsi_status(struct scb *scb, uint32_t status)
271 scb->io_ctx->csio.scsi_status = status;
274 static __inline
275 uint32_t aic_get_transaction_status(struct scb *scb)
277 return (scb->io_ctx->ccb_h.status & CAM_STATUS_MASK);
280 static __inline
281 uint32_t aic_get_scsi_status(struct scb *scb)
283 return (scb->io_ctx->csio.scsi_status);
286 static __inline
287 void aic_set_transaction_tag(struct scb *scb, int enabled, u_int type)
289 scb->io_ctx->csio.tag_action = type;
290 if (enabled)
291 scb->io_ctx->ccb_h.flags |= CAM_TAG_ACTION_VALID;
292 else
293 scb->io_ctx->ccb_h.flags &= ~CAM_TAG_ACTION_VALID;
296 static __inline
297 u_long aic_get_transfer_length(struct scb *scb)
299 return (scb->io_ctx->csio.dxfer_len);
302 static __inline
303 int aic_get_transfer_dir(struct scb *scb)
305 return (scb->io_ctx->ccb_h.flags & CAM_DIR_MASK);
308 static __inline
309 void aic_set_residual(struct scb *scb, u_long resid)
311 scb->io_ctx->csio.resid = resid;
314 static __inline
315 void aic_set_sense_residual(struct scb *scb, u_long resid)
317 scb->io_ctx->csio.sense_resid = resid;
320 static __inline
321 u_long aic_get_residual(struct scb *scb)
323 return (scb->io_ctx->csio.resid);
326 static __inline
327 int aic_perform_autosense(struct scb *scb)
329 return (!(scb->io_ctx->ccb_h.flags & CAM_DIS_AUTOSENSE));
332 static __inline uint32_t
333 aic_get_sense_bufsize(struct aic_softc *aic, struct scb *scb)
335 return (sizeof(struct scsi_sense_data));
338 static __inline void
339 aic_freeze_ccb(union ccb *ccb)
341 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
342 ccb->ccb_h.status |= CAM_DEV_QFRZN;
343 xpt_freeze_devq(ccb->ccb_h.path, /*count*/1);
347 static __inline void
348 aic_freeze_scb(struct scb *scb)
350 aic_freeze_ccb(scb->io_ctx);
353 static __inline void
354 aic_platform_freeze_devq(struct aic_softc *aic, struct scb *scb)
356 /* Nothing to do here for FreeBSD */
359 static __inline int
360 aic_platform_abort_scbs(struct aic_softc *aic, int target,
361 char channel, int lun, u_int tag,
362 role_t role, uint32_t status)
364 /* Nothing to do here for FreeBSD */
365 return (0);
368 static __inline void
369 aic_platform_scb_free(struct aic_softc *aic, struct scb *scb)
371 /* What do we do to generically handle driver resource shortages??? */
372 if ((aic->flags & AIC_RESOURCE_SHORTAGE) != 0
373 && scb->io_ctx != NULL
374 && (scb->io_ctx->ccb_h.status & CAM_RELEASE_SIMQ) == 0) {
375 scb->io_ctx->ccb_h.status |= CAM_RELEASE_SIMQ;
376 aic->flags &= ~AIC_RESOURCE_SHORTAGE;
378 scb->io_ctx = NULL;
381 /****************************** OS Primitives *********************************/
382 #define aic_delay DELAY
384 /********************************** PCI ***************************************/
385 #ifdef AIC_PCI_CONFIG
386 static __inline uint32_t aic_pci_read_config(aic_dev_softc_t pci,
387 int reg, int width);
388 static __inline void aic_pci_write_config(aic_dev_softc_t pci,
389 int reg, uint32_t value,
390 int width);
391 static __inline int aic_get_pci_function(aic_dev_softc_t);
392 static __inline int aic_get_pci_slot(aic_dev_softc_t);
393 static __inline int aic_get_pci_bus(aic_dev_softc_t);
396 static __inline uint32_t
397 aic_pci_read_config(aic_dev_softc_t pci, int reg, int width)
399 return (pci_read_config(pci, reg, width));
402 static __inline void
403 aic_pci_write_config(aic_dev_softc_t pci, int reg, uint32_t value, int width)
405 pci_write_config(pci, reg, value, width);
408 static __inline int
409 aic_get_pci_function(aic_dev_softc_t pci)
411 return (pci_get_function(pci));
414 static __inline int
415 aic_get_pci_slot(aic_dev_softc_t pci)
417 return (pci_get_slot(pci));
420 static __inline int
421 aic_get_pci_bus(aic_dev_softc_t pci)
423 return (pci_get_bus(pci));
426 typedef enum
428 AIC_POWER_STATE_D0 = PCI_POWERSTATE_D0,
429 AIC_POWER_STATE_D1 = PCI_POWERSTATE_D1,
430 AIC_POWER_STATE_D2 = PCI_POWERSTATE_D2,
431 AIC_POWER_STATE_D3 = PCI_POWERSTATE_D3
432 } aic_power_state;
434 static __inline int aic_power_state_change(struct aic_softc *aic,
435 aic_power_state new_state);
437 static __inline int
438 aic_power_state_change(struct aic_softc *aic, aic_power_state new_state)
440 return (pci_set_powerstate(aic->dev_softc, new_state));
442 #endif