1 /* $NetBSD: aic79xx_osm.h,v 1.19 2009/09/05 12:50:53 tsutsui Exp $ */
4 * NetBSD platform specific driver option settings, data structures,
5 * function declarations and includes.
7 * Copyright (c) 1994-2001 Justin T. Gibbs.
8 * Copyright (c) 2001-2002 Adaptec Inc.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
20 * Alternatively, this software may be distributed under the terms of the
21 * GNU Public License ("GPL").
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
27 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * $NetBSD: aic79xx_osm.h,v 1.19 2009/09/05 12:50:53 tsutsui Exp $
37 * //depot/aic7xxx/freebsd/dev/aic7xxx/aic79xx_osm.h#19 $$NetBSD: aic79xx_osm.h,v 1.19 2009/09/05 12:50:53 tsutsui Exp $
39 * $FreeBSD: src/sys/dev/aic7xxx/aic79xx_osm.h,v 1.9 2003/05/26 21:43:29 gibbs Exp $
42 * Ported from FreeBSD by Pascal Renauld, Network Storage Solutions, Inc.
46 #ifndef _AIC79XX_NETBSD_H_
47 #define _AIC79XX_NETBSD_H_
49 #include "opt_ahd.h" /* for config options */
51 #include <sys/param.h>
52 #include <sys/kernel.h>
53 #include <sys/systm.h>
54 #include <sys/device.h>
55 #include <sys/malloc.h>
58 #include <sys/scsiio.h>
59 #include <sys/reboot.h>
60 #include <sys/kthread.h>
62 #include <dev/pci/pcireg.h>
63 #include <dev/pci/pcivar.h>
68 #include <dev/scsipi/scsi_all.h>
69 #include <dev/scsipi/scsipi_all.h>
70 #include <dev/scsipi/scsi_message.h>
71 #include <dev/scsipi/scsipi_debug.h>
72 #include <dev/scsipi/scsiconf.h>
73 #include <dev/scsipi/scsi_iu.h>
75 #include <uvm/uvm_extern.h>
77 #include <dev/ic/aic7xxx_cam.h>
79 /****************************** Platform Macros *******************************/
80 #define SIM_IS_SCSIBUS_B(ahd, sim) \
82 #define SIM_CHANNEL(ahd, sim) \
84 #define SIM_SCSI_ID(ahd, sim) \
86 #define SIM_PATH(ahd, sim) \
87 (ahd->platform_data->path)
88 #define BUILD_SCSIID(ahd, sim, target_id, our_id) \
89 ((((target_id) << TID_SHIFT) & TID) | (our_id))
92 #define SCB_GET_SIM(ahd, scb) \
93 ((ahd)->platform_data->sim)
96 #define offsetof(type, member) ((size_t)(&((type *)0)->member))
99 /************************* Forward Declarations *******************************/
100 typedef pcireg_t ahd_dev_softc_t
;
101 /***************************** Bus Space/DMA **********************************/
102 #define ahd_dma_tag_create(ahd, parent_tag, alignment, boundary, \
103 lowaddr, highaddr, filter, filterarg, \
104 maxsize, nsegments, maxsegsz, flags, \
106 bus_dma_tag_create(parent_tag, alignment, boundary, \
107 lowaddr, highaddr, filter, filterarg, \
108 maxsize, nsegments, maxsegsz, flags, \
111 #define ahd_dma_tag_destroy(ahd, tag) \
112 bus_dma_tag_destroy(tag)
114 #define ahd_dmamem_alloc(ahd, dmat, vaddr, flags, mapp) \
115 bus_dmamem_alloc(dmat, vaddr, flags, mapp)
117 #define ahd_dmamem_free(ahd, dmat, vaddr, map) \
118 bus_dmamem_free(dmat, vaddr, map)
120 #define ahd_dmamap_create(ahd, tag, flags, mapp) \
121 bus_dmamap_create(tag, flags, mapp)
123 #define ahd_dmamap_destroy(ahd, tag, map) \
124 bus_dmamap_destroy(tag, map)
126 #define ahd_dmamap_load(ahd, dmat, map, addr, buflen, callback, \
127 callback_arg, flags) \
128 bus_dmamap_load(dmat, map, addr, buflen, callback, callback_arg, flags)
130 #define ahd_dmamap_unload(ahd, tag, map) \
131 bus_dmamap_unload(tag, map)
133 /* XXX Need to update Bus DMA for partial map syncs */
134 #define ahd_dmamap_sync(ahd, dma_tag, dmamap, offset, len, op) \
135 bus_dmamap_sync(dma_tag, dmamap, offset, len, op)
137 /************************ Tunable Driver Parameters **************************/
139 * The number of DMA segments supported. The sequencer can handle any number
140 * of physically contiguous S/G entrys. To reduce the driver's memory
141 * consumption, we limit the number supported to be sufficient to handle
142 * the largest mapping supported by the kernel, MAXPHYS. Assuming the
143 * transfer is as fragmented as possible and unaligned, this turns out to
144 * be the number of paged sized transfers in MAXPHYS plus an extra element
145 * to handle any unaligned residual. The sequencer fetches SG elements
146 * in cacheline sized chucks, so make the number per-transaction an even
147 * multiple of 16 which should align us on even the largest of cacheline
150 #define AHD_NSEG (roundup(btoc(MAXPHYS) + 1, 16))
152 /* This driver supports target mode */
154 #define AHD_TARGET_MODE 1
157 /************************** Softc/SCB Platform Data ***************************/
158 struct ahd_platform_data
{
161 struct scb_platform_data
{
164 /********************************* Byte Order *********************************/
165 #define ahd_htobe16(x) htobe16(x)
166 #define ahd_htobe32(x) htobe32(x)
167 #define ahd_htobe64(x) htobe64(x)
168 #define ahd_htole16(x) htole16(x)
169 #define ahd_htole32(x) htole32(x)
170 #define ahd_htole64(x) htole64(x)
172 #define ahd_be16toh(x) be16toh(x)
173 #define ahd_be32toh(x) be32toh(x)
174 #define ahd_be64toh(x) be64toh(x)
175 #define ahd_le16toh(x) le16toh(x)
176 #define ahd_le32toh(x) le32toh(x)
177 #define ahd_le64toh(x) le64toh(x)
179 /************************** Timer DataStructures ******************************/
180 typedef struct callout ahd_timer_t
;
182 /***************************** Core Includes **********************************/
183 #if AHD_REG_PRETTY_PRINT
184 #define AIC_DEBUG_REGISTERS 1
186 #define AIC_DEBUG_REGISTERS 0
188 #include <dev/ic/aic79xxvar.h>
190 /***************************** Timer Facilities *******************************/
191 void ahd_timeout(void*);
192 #define ahd_timer_init(timer) callout_init(timer, 0)
193 #define ahd_timer_stop callout_stop
196 ahd_timer_reset(ahd_timer_t
*timer
, u_int usec
, ahd_callback_t
*func
, void *arg
)
198 callout_reset(timer
, (usec
* hz
)/1000000, func
, arg
);
202 ahd_scb_timer_reset(struct scb
*scb
, u_int usec
)
204 if (!(scb
->xs
->xs_control
& XS_CTL_POLL
)) {
205 callout_reset(&scb
->xs
->xs_callout
,
206 (usec
* hz
)/1000000, ahd_timeout
, scb
);
210 /*************************** Device Access ************************************/
211 #define ahd_inb(ahd, port) \
212 bus_space_read_1((ahd)->tags[(port) >> 8], \
213 (ahd)->bshs[(port) >> 8], (port) & 0xFF)
215 #define ahd_outb(ahd, port, value) \
216 bus_space_write_1((ahd)->tags[(port) >> 8], \
217 (ahd)->bshs[(port) >> 8], (port) & 0xFF, value)
219 #define ahd_inw_atomic(ahd, port) \
220 ahd_le16toh(bus_space_read_2((ahd)->tags[(port) >> 8], \
221 (ahd)->bshs[(port) >> 8], (port) & 0xFF))
223 #define ahd_outw_atomic(ahd, port, value) \
224 bus_space_write_2((ahd)->tags[(port) >> 8], \
225 (ahd)->bshs[(port) >> 8], \
226 (port & 0xFF), ahd_htole16(value))
228 #define ahd_outsb(ahd, port, valp, count) \
229 bus_space_write_multi_1((ahd)->tags[(port) >> 8], \
230 (ahd)->bshs[(port) >> 8], \
231 (port & 0xFF), valp, count)
233 #define ahd_insb(ahd, port, valp, count) \
234 bus_space_read_multi_1((ahd)->tags[(port) >> 8], \
235 (ahd)->bshs[(port) >> 8], \
236 (port & 0xFF), valp, count)
238 static __inline
void ahd_flush_device_writes(struct ahd_softc
*);
241 ahd_flush_device_writes(struct ahd_softc
*ahd
)
243 /* XXX Is this sufficient for all architectures??? */
244 ahd_inb(ahd
, INTSTAT
);
247 /**************************** Locking Primitives ******************************/
248 /* Lock protecting internal data structures */
249 static __inline
void ahd_lockinit(struct ahd_softc
*);
250 static __inline
void ahd_lock(struct ahd_softc
*, int *);
251 static __inline
void ahd_unlock(struct ahd_softc
*, int *);
253 /* Lock held during command completion to the upper layer */
254 static __inline
void ahd_done_lockinit(struct ahd_softc
*);
255 static __inline
void ahd_done_lock(struct ahd_softc
*, unsigned long *);
256 static __inline
void ahd_done_unlock(struct ahd_softc
*, unsigned long *);
258 /* Lock held during ahd_list manipulation and ahd softc frees */
259 static __inline
void ahd_list_lockinit(void);
260 static __inline
void ahd_list_lock(unsigned long *);
261 static __inline
void ahd_list_unlock(unsigned long *);
264 ahd_lockinit(struct ahd_softc
*ahd
)
269 ahd_lock(struct ahd_softc
*ahd
, int *flags
)
275 ahd_unlock(struct ahd_softc
*ahd
, int *flags
)
280 /* Lock held during command completion to the upper layer */
282 ahd_done_lockinit(struct ahd_softc
*ahd
)
287 ahd_done_lock(struct ahd_softc
*ahd
, unsigned long *flags
)
292 ahd_done_unlock(struct ahd_softc
*ahd
, unsigned long *flags
)
296 /* Lock held during ahd_list manipulation and ahd softc frees */
298 ahd_list_lockinit(void)
303 ahd_list_lock(unsigned long *flags
)
308 ahd_list_unlock(unsigned long *flags
)
311 /****************************** OS Primitives *********************************/
312 #define ahd_delay DELAY
314 /************************** Transaction Operations ****************************/
315 static __inline
void ahd_set_transaction_status(struct scb
*, uint32_t);
316 static __inline
void ahd_set_scsi_status(struct scb
*, uint32_t);
317 static __inline
void ahd_set_xfer_status(struct scb
*, uint32_t);
318 static __inline
uint32_t ahd_get_transaction_status(struct scb
*);
319 static __inline
uint32_t ahd_get_scsi_status(struct scb
*);
320 static __inline
void ahd_set_transaction_tag(struct scb
*, int, u_int
);
321 static __inline u_long
ahd_get_transfer_length(struct scb
*);
322 static __inline
int ahd_get_transfer_dir(struct scb
*);
323 static __inline
void ahd_set_residual(struct scb
*, u_long
);
324 static __inline
void ahd_set_sense_residual(struct scb
*, u_long
);
325 static __inline u_long
ahd_get_residual(struct scb
*);
326 static __inline
int ahd_perform_autosense(struct scb
*);
327 static __inline
uint32_t ahd_get_sense_bufsize(struct ahd_softc
*, struct scb
*);
328 static __inline
void ahd_freeze_simq(struct ahd_softc
*);
329 static __inline
void ahd_release_simq(struct ahd_softc
*);
330 static __inline
void ahd_freeze_scb(struct scb
*);
331 static __inline
void ahd_platform_freeze_devq(struct ahd_softc
*, struct scb
*);
332 static __inline
int ahd_platform_abort_scbs(struct ahd_softc
*, int,
333 char, int, u_int
, role_t
, uint32_t);
336 void ahd_set_transaction_status(struct scb
*scb
, uint32_t status
)
338 scb
->xs
->error
= status
;
342 void ahd_set_scsi_status(struct scb
*scb
, uint32_t status
)
344 scb
->xs
->xs_status
= status
;
348 void ahd_set_xfer_status(struct scb
*scb
, uint32_t status
)
350 scb
->xs
->status
= status
;
354 uint32_t ahd_get_transaction_status(struct scb
*scb
)
356 return (scb
->xs
->error
);
360 uint32_t ahd_get_scsi_status(struct scb
*scb
)
362 return (scb
->xs
->xs_status
);
366 void ahd_set_transaction_tag(struct scb
*scb
, int enabled
, u_int type
)
368 scb
->xs
->xs_tag_type
= type
;
372 u_long
ahd_get_transfer_length(struct scb
*scb
)
374 return (scb
->xs
->datalen
);
378 int ahd_get_transfer_dir(struct scb
*scb
)
380 return (scb
->xs
->xs_control
& (XS_CTL_DATA_IN
|XS_CTL_DATA_OUT
));
384 void ahd_set_residual(struct scb
*scb
, u_long resid
)
386 scb
->xs
->resid
= resid
;
391 void ahd_set_sense_residual(struct scb
*scb
, u_long resid
)
393 //scb->xs->sense.scsi_sense.extra_len = resid; /* ??? */
398 u_long
ahd_get_residual(struct scb
*scb
)
400 return (scb
->xs
->resid
);
404 int ahd_perform_autosense(struct scb
*scb
)
406 return (!(scb
->flags
& SCB_SENSE
));
409 static __inline
uint32_t
410 ahd_get_sense_bufsize(struct ahd_softc
*ahd
, struct scb
*scb
)
412 return (sizeof(struct scsi_sense_data
));
416 ahd_freeze_simq(struct ahd_softc
*ahd
)
418 /* do nothing for now */
422 ahd_release_simq(struct ahd_softc
*ahd
)
424 /* do nothing for now */
428 ahd_freeze_scb(struct scb
*scb
)
430 struct scsipi_xfer
*xs
= scb
->xs
;
432 if (!(scb
->flags
& SCB_FREEZE_QUEUE
)) {
433 scsipi_periph_freeze(xs
->xs_periph
, 1);
434 scb
->flags
|= SCB_FREEZE_QUEUE
;
439 ahd_platform_freeze_devq(struct ahd_softc
*ahd
, struct scb
*scb
)
441 /* Nothing to do here for NetBSD */
445 ahd_platform_abort_scbs(struct ahd_softc
*ahd
, int target
,
446 char channel
, int lun
, u_int tag
,
447 role_t role
, uint32_t status
)
449 /* Nothing to do here for NetBSD */
454 ahd_platform_scb_free(struct ahd_softc
*ahd
, struct scb
*scb
)
457 /* What do we do to generically handle driver resource shortages??? */
458 if ((ahd
->flags
& AHD_RESOURCE_SHORTAGE
) != 0
459 && scb
->io_ctx
!= NULL
460 && (scb
->io_ctx
->ccb_h
.status
& CAM_RELEASE_SIMQ
) == 0) {
461 scb
->io_ctx
->ccb_h
.status
|= CAM_RELEASE_SIMQ
;
462 ahd
->flags
&= ~AHD_RESOURCE_SHORTAGE
;
465 #endif /* end of modification */
468 /********************************** PCI ***************************************/
469 #if AHD_PCI_CONFIG > 0
470 static __inline
uint32_t ahd_pci_read_config(ahd_dev_softc_t
, int, int);
471 static __inline
void ahd_pci_write_config(ahd_dev_softc_t
, int,
473 static __inline
int ahd_get_pci_function(ahd_dev_softc_t
);
474 static __inline
int ahd_get_pci_slot(ahd_dev_softc_t
);
475 static __inline
int ahd_get_pci_bus(ahd_dev_softc_t
);
477 int ahd_pci_map_registers(struct ahd_softc
*);
478 int ahd_pci_map_int(struct ahd_softc
*);
480 static __inline
uint32_t
481 ahd_pci_read_config(ahd_dev_softc_t pci
, int reg
, int width
)
483 return (pci_read_config(pci
, reg
, width
));
487 ahd_pci_write_config(ahd_dev_softc_t pci
, int reg
, uint32_t value
, int width
)
489 pci_write_config(pci
, reg
, value
, width
);
493 ahd_get_pci_function(ahd_dev_softc_t pci
)
495 return (pci_get_function(pci
));
499 ahd_get_pci_slot(ahd_dev_softc_t pci
)
501 return (pci_get_slot(pci
));
506 ahd_get_pci_bus(ahd_dev_softc_t pci
)
508 return (pci_get_bus(pci
));
520 void ahd_power_state_change(struct ahd_softc
*, ahd_power_state
);
522 /******************************** VL/EISA *************************************/
523 int aic7770_map_registers(struct ahd_softc
*);
524 int aic7770_map_int(struct ahd_softc
*, int);
526 /********************************* Debug **************************************/
527 static __inline
void ahd_print_path(struct ahd_softc
*, struct scb
*);
528 static __inline
void ahd_platform_dump_card_state(struct ahd_softc
*);
530 ahd_print_path(struct ahd_softc
*ahd
, struct scb
*scb
)
532 printf("%s:", device_xname(ahd
->sc_dev
));
536 ahd_platform_dump_card_state(struct ahd_softc
*ahd
)
538 /* Nothing to do here for NetBSD */
540 /**************************** Transfer Settings *******************************/
541 void ahd_notify_xfer_settings_change(struct ahd_softc
*,
542 struct ahd_devinfo
*);
543 void ahd_platform_set_tags(struct ahd_softc
*, struct ahd_devinfo
*,
546 /************************* Initialization/Teardown ****************************/
547 int ahd_platform_alloc(struct ahd_softc
*, void *);
548 void ahd_platform_free(struct ahd_softc
*);
549 int ahd_map_int(struct ahd_softc
*);
550 int ahd_attach(struct ahd_softc
*);
551 int ahd_softc_comp(struct ahd_softc
*, struct ahd_softc
*);
552 int ahd_detach(struct ahd_softc
*, int);
553 #define ahd_platform_init(arg)
556 /****************************** Interrupts ************************************/
557 void ahd_platform_intr(void *);
558 static __inline
void ahd_platform_flushwork(struct ahd_softc
*);
560 ahd_platform_flushwork(struct ahd_softc
*ahd
)
562 /* Nothing to do here for NetBSD */
565 /************************ Misc Function Declarations **************************/
566 void ahd_done(struct ahd_softc
*, struct scb
*);
567 void ahd_send_async(struct ahd_softc
*, char, u_int
, u_int
, ac_code
, void *);
569 #endif /* _AIC79XX_NETBSD_H_ */