aic79xx_osm.h revision 1.22 1 1.22 christos /* $NetBSD: aic79xx_osm.h,v 1.22 2013/04/03 14:20:02 christos Exp $ */
2 1.1 fvdl
3 1.1 fvdl /*
4 1.1 fvdl * NetBSD platform specific driver option settings, data structures,
5 1.1 fvdl * function declarations and includes.
6 1.1 fvdl *
7 1.1 fvdl * Copyright (c) 1994-2001 Justin T. Gibbs.
8 1.1 fvdl * Copyright (c) 2001-2002 Adaptec Inc.
9 1.1 fvdl * All rights reserved.
10 1.1 fvdl *
11 1.1 fvdl * Redistribution and use in source and binary forms, with or without
12 1.1 fvdl * modification, are permitted provided that the following conditions
13 1.1 fvdl * are met:
14 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
15 1.1 fvdl * notice, this list of conditions, and the following disclaimer,
16 1.1 fvdl * without modification.
17 1.1 fvdl * 2. The name of the author may not be used to endorse or promote products
18 1.1 fvdl * derived from this software without specific prior written permission.
19 1.1 fvdl *
20 1.1 fvdl * Alternatively, this software may be distributed under the terms of the
21 1.1 fvdl * GNU Public License ("GPL").
22 1.1 fvdl *
23 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24 1.1 fvdl * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 fvdl * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 fvdl * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
27 1.1 fvdl * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 fvdl * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 fvdl * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 fvdl * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 fvdl * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 fvdl * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 fvdl * SUCH DAMAGE.
34 1.1 fvdl *
35 1.22 christos * $NetBSD: aic79xx_osm.h,v 1.22 2013/04/03 14:20:02 christos Exp $
36 1.1 fvdl *
37 1.22 christos * //depot/aic7xxx/freebsd/dev/aic7xxx/aic79xx_osm.h#19 $$NetBSD: aic79xx_osm.h,v 1.22 2013/04/03 14:20:02 christos Exp $
38 1.1 fvdl *
39 1.4 thorpej * $FreeBSD: src/sys/dev/aic7xxx/aic79xx_osm.h,v 1.9 2003/05/26 21:43:29 gibbs Exp $
40 1.1 fvdl */
41 1.1 fvdl /*
42 1.1 fvdl * Ported from FreeBSD by Pascal Renauld, Network Storage Solutions, Inc.
43 1.1 fvdl * - April 2003
44 1.1 fvdl */
45 1.1 fvdl
46 1.1 fvdl #ifndef _AIC79XX_NETBSD_H_
47 1.1 fvdl #define _AIC79XX_NETBSD_H_
48 1.1 fvdl
49 1.1 fvdl #include "opt_ahd.h" /* for config options */
50 1.1 fvdl
51 1.1 fvdl #include <sys/param.h>
52 1.1 fvdl #include <sys/kernel.h>
53 1.1 fvdl #include <sys/systm.h>
54 1.1 fvdl #include <sys/device.h>
55 1.1 fvdl #include <sys/malloc.h>
56 1.1 fvdl #include <sys/buf.h>
57 1.1 fvdl #include <sys/proc.h>
58 1.1 fvdl #include <sys/scsiio.h>
59 1.1 fvdl #include <sys/reboot.h>
60 1.1 fvdl #include <sys/kthread.h>
61 1.1 fvdl
62 1.1 fvdl #include <dev/pci/pcireg.h>
63 1.1 fvdl #include <dev/pci/pcivar.h>
64 1.1 fvdl
65 1.14 ad #include <sys/bus.h>
66 1.14 ad #include <sys/intr.h>
67 1.1 fvdl
68 1.1 fvdl #include <dev/scsipi/scsi_all.h>
69 1.1 fvdl #include <dev/scsipi/scsipi_all.h>
70 1.1 fvdl #include <dev/scsipi/scsi_message.h>
71 1.1 fvdl #include <dev/scsipi/scsipi_debug.h>
72 1.1 fvdl #include <dev/scsipi/scsiconf.h>
73 1.1 fvdl #include <dev/scsipi/scsi_iu.h>
74 1.1 fvdl
75 1.16 gmcgarry #include <dev/ic/aic7xxx_cam.h>
76 1.1 fvdl
77 1.1 fvdl /****************************** Platform Macros *******************************/
78 1.1 fvdl #define SIM_IS_SCSIBUS_B(ahd, sim) \
79 1.1 fvdl (0)
80 1.1 fvdl #define SIM_CHANNEL(ahd, sim) \
81 1.1 fvdl ('A')
82 1.1 fvdl #define SIM_SCSI_ID(ahd, sim) \
83 1.1 fvdl (ahd->our_id)
84 1.1 fvdl #define SIM_PATH(ahd, sim) \
85 1.1 fvdl (ahd->platform_data->path)
86 1.1 fvdl #define BUILD_SCSIID(ahd, sim, target_id, our_id) \
87 1.18 tsutsui ((((target_id) << TID_SHIFT) & TID) | (our_id))
88 1.7 perry
89 1.1 fvdl
90 1.1 fvdl #define SCB_GET_SIM(ahd, scb) \
91 1.1 fvdl ((ahd)->platform_data->sim)
92 1.1 fvdl
93 1.1 fvdl #ifndef offsetof
94 1.1 fvdl #define offsetof(type, member) ((size_t)(&((type *)0)->member))
95 1.1 fvdl #endif
96 1.1 fvdl
97 1.1 fvdl /************************* Forward Declarations *******************************/
98 1.1 fvdl typedef pcireg_t ahd_dev_softc_t;
99 1.1 fvdl /***************************** Bus Space/DMA **********************************/
100 1.1 fvdl #define ahd_dma_tag_create(ahd, parent_tag, alignment, boundary, \
101 1.1 fvdl lowaddr, highaddr, filter, filterarg, \
102 1.1 fvdl maxsize, nsegments, maxsegsz, flags, \
103 1.1 fvdl dma_tagp) \
104 1.1 fvdl bus_dma_tag_create(parent_tag, alignment, boundary, \
105 1.1 fvdl lowaddr, highaddr, filter, filterarg, \
106 1.1 fvdl maxsize, nsegments, maxsegsz, flags, \
107 1.1 fvdl dma_tagp)
108 1.1 fvdl
109 1.1 fvdl #define ahd_dma_tag_destroy(ahd, tag) \
110 1.1 fvdl bus_dma_tag_destroy(tag)
111 1.1 fvdl
112 1.1 fvdl #define ahd_dmamem_alloc(ahd, dmat, vaddr, flags, mapp) \
113 1.1 fvdl bus_dmamem_alloc(dmat, vaddr, flags, mapp)
114 1.1 fvdl
115 1.1 fvdl #define ahd_dmamem_free(ahd, dmat, vaddr, map) \
116 1.1 fvdl bus_dmamem_free(dmat, vaddr, map)
117 1.1 fvdl
118 1.1 fvdl #define ahd_dmamap_create(ahd, tag, flags, mapp) \
119 1.1 fvdl bus_dmamap_create(tag, flags, mapp)
120 1.1 fvdl
121 1.1 fvdl #define ahd_dmamap_destroy(ahd, tag, map) \
122 1.1 fvdl bus_dmamap_destroy(tag, map)
123 1.1 fvdl
124 1.1 fvdl #define ahd_dmamap_load(ahd, dmat, map, addr, buflen, callback, \
125 1.1 fvdl callback_arg, flags) \
126 1.1 fvdl bus_dmamap_load(dmat, map, addr, buflen, callback, callback_arg, flags)
127 1.1 fvdl
128 1.1 fvdl #define ahd_dmamap_unload(ahd, tag, map) \
129 1.1 fvdl bus_dmamap_unload(tag, map)
130 1.1 fvdl
131 1.1 fvdl /* XXX Need to update Bus DMA for partial map syncs */
132 1.22 christos #define ahd_dmamap_sync(ahd, dma_tag, dmamap, offset, len, op) \
133 1.22 christos do { \
134 1.22 christos if (((op) & (BUS_DMASYNC_PREWRITE|BUS_DMASYNC_POSTREAD)) != 0)\
135 1.22 christos if ((offset) >= (dmamap)->dm_mapsize) { \
136 1.22 christos printf("%s, %d: %s: %x >= %x[%x]\n", __FILE__, \
137 1.22 christos __LINE__, __func__, (int)(offset), \
138 1.22 christos (int)(dmamap)->dm_mapsize, (int)(len)); \
139 1.22 christos return; \
140 1.22 christos } \
141 1.22 christos bus_dmamap_sync(dma_tag, dmamap, offset, len, op); \
142 1.22 christos } while (/*CONSTCOND*/0)
143 1.22 christos #define ahd_dmamap_sync1(ahd, dma_tag, dmamap, offset, len, op) \
144 1.22 christos do { \
145 1.22 christos if (((op) & (BUS_DMASYNC_PREWRITE|BUS_DMASYNC_POSTREAD)) != 0)\
146 1.22 christos if ((offset) >= (dmamap)->dm_mapsize) { \
147 1.22 christos printf("%s, %d: %s: %x >= %x[%x]\n", __FILE__, \
148 1.22 christos __LINE__, __func__, (int)(offset), \
149 1.22 christos (int)(dmamap)->dm_mapsize, (int)(len)); \
150 1.22 christos return 0; \
151 1.22 christos } \
152 1.22 christos bus_dmamap_sync(dma_tag, dmamap, offset, len, op); \
153 1.22 christos } while (/*CONSTCOND*/0)
154 1.1 fvdl
155 1.1 fvdl /************************ Tunable Driver Parameters **************************/
156 1.1 fvdl /*
157 1.2 wiz * The number of DMA segments supported. The sequencer can handle any number
158 1.1 fvdl * of physically contiguous S/G entrys. To reduce the driver's memory
159 1.1 fvdl * consumption, we limit the number supported to be sufficient to handle
160 1.1 fvdl * the largest mapping supported by the kernel, MAXPHYS. Assuming the
161 1.1 fvdl * transfer is as fragmented as possible and unaligned, this turns out to
162 1.1 fvdl * be the number of paged sized transfers in MAXPHYS plus an extra element
163 1.1 fvdl * to handle any unaligned residual. The sequencer fetches SG elements
164 1.1 fvdl * in cacheline sized chucks, so make the number per-transaction an even
165 1.1 fvdl * multiple of 16 which should align us on even the largest of cacheline
166 1.7 perry * boundaries.
167 1.1 fvdl */
168 1.1 fvdl #define AHD_NSEG (roundup(btoc(MAXPHYS) + 1, 16))
169 1.1 fvdl
170 1.1 fvdl /* This driver supports target mode */
171 1.1 fvdl #if NOT_YET
172 1.1 fvdl #define AHD_TARGET_MODE 1
173 1.1 fvdl #endif
174 1.1 fvdl
175 1.1 fvdl /************************** Softc/SCB Platform Data ***************************/
176 1.1 fvdl struct ahd_platform_data {
177 1.1 fvdl };
178 1.1 fvdl
179 1.1 fvdl struct scb_platform_data {
180 1.1 fvdl };
181 1.1 fvdl
182 1.1 fvdl /********************************* Byte Order *********************************/
183 1.1 fvdl #define ahd_htobe16(x) htobe16(x)
184 1.1 fvdl #define ahd_htobe32(x) htobe32(x)
185 1.1 fvdl #define ahd_htobe64(x) htobe64(x)
186 1.1 fvdl #define ahd_htole16(x) htole16(x)
187 1.1 fvdl #define ahd_htole32(x) htole32(x)
188 1.1 fvdl #define ahd_htole64(x) htole64(x)
189 1.1 fvdl
190 1.1 fvdl #define ahd_be16toh(x) be16toh(x)
191 1.1 fvdl #define ahd_be32toh(x) be32toh(x)
192 1.1 fvdl #define ahd_be64toh(x) be64toh(x)
193 1.1 fvdl #define ahd_le16toh(x) le16toh(x)
194 1.1 fvdl #define ahd_le32toh(x) le32toh(x)
195 1.1 fvdl #define ahd_le64toh(x) le64toh(x)
196 1.1 fvdl
197 1.1 fvdl /************************** Timer DataStructures ******************************/
198 1.1 fvdl typedef struct callout ahd_timer_t;
199 1.1 fvdl
200 1.1 fvdl /***************************** Core Includes **********************************/
201 1.1 fvdl #if AHD_REG_PRETTY_PRINT
202 1.1 fvdl #define AIC_DEBUG_REGISTERS 1
203 1.1 fvdl #else
204 1.1 fvdl #define AIC_DEBUG_REGISTERS 0
205 1.1 fvdl #endif
206 1.1 fvdl #include <dev/ic/aic79xxvar.h>
207 1.1 fvdl
208 1.1 fvdl /***************************** Timer Facilities *******************************/
209 1.1 fvdl void ahd_timeout(void*);
210 1.13 ad #define ahd_timer_init(timer) callout_init(timer, 0)
211 1.1 fvdl #define ahd_timer_stop callout_stop
212 1.1 fvdl
213 1.10 perry static __inline void
214 1.1 fvdl ahd_timer_reset(ahd_timer_t *timer, u_int usec, ahd_callback_t *func, void *arg)
215 1.1 fvdl {
216 1.1 fvdl callout_reset(timer, (usec * hz)/1000000, func, arg);
217 1.1 fvdl }
218 1.1 fvdl
219 1.10 perry static __inline void
220 1.1 fvdl ahd_scb_timer_reset(struct scb *scb, u_int usec)
221 1.1 fvdl {
222 1.1 fvdl if (!(scb->xs->xs_control & XS_CTL_POLL)) {
223 1.1 fvdl callout_reset(&scb->xs->xs_callout,
224 1.1 fvdl (usec * hz)/1000000, ahd_timeout, scb);
225 1.1 fvdl }
226 1.1 fvdl }
227 1.1 fvdl
228 1.1 fvdl /*************************** Device Access ************************************/
229 1.1 fvdl #define ahd_inb(ahd, port) \
230 1.1 fvdl bus_space_read_1((ahd)->tags[(port) >> 8], \
231 1.1 fvdl (ahd)->bshs[(port) >> 8], (port) & 0xFF)
232 1.1 fvdl
233 1.1 fvdl #define ahd_outb(ahd, port, value) \
234 1.1 fvdl bus_space_write_1((ahd)->tags[(port) >> 8], \
235 1.1 fvdl (ahd)->bshs[(port) >> 8], (port) & 0xFF, value)
236 1.1 fvdl
237 1.1 fvdl #define ahd_inw_atomic(ahd, port) \
238 1.1 fvdl ahd_le16toh(bus_space_read_2((ahd)->tags[(port) >> 8], \
239 1.1 fvdl (ahd)->bshs[(port) >> 8], (port) & 0xFF))
240 1.1 fvdl
241 1.1 fvdl #define ahd_outw_atomic(ahd, port, value) \
242 1.1 fvdl bus_space_write_2((ahd)->tags[(port) >> 8], \
243 1.1 fvdl (ahd)->bshs[(port) >> 8], \
244 1.1 fvdl (port & 0xFF), ahd_htole16(value))
245 1.1 fvdl
246 1.1 fvdl #define ahd_outsb(ahd, port, valp, count) \
247 1.1 fvdl bus_space_write_multi_1((ahd)->tags[(port) >> 8], \
248 1.1 fvdl (ahd)->bshs[(port) >> 8], \
249 1.1 fvdl (port & 0xFF), valp, count)
250 1.1 fvdl
251 1.1 fvdl #define ahd_insb(ahd, port, valp, count) \
252 1.1 fvdl bus_space_read_multi_1((ahd)->tags[(port) >> 8], \
253 1.1 fvdl (ahd)->bshs[(port) >> 8], \
254 1.1 fvdl (port & 0xFF), valp, count)
255 1.1 fvdl
256 1.10 perry static __inline void ahd_flush_device_writes(struct ahd_softc *);
257 1.1 fvdl
258 1.10 perry static __inline void
259 1.1 fvdl ahd_flush_device_writes(struct ahd_softc *ahd)
260 1.1 fvdl {
261 1.1 fvdl /* XXX Is this sufficient for all architectures??? */
262 1.1 fvdl ahd_inb(ahd, INTSTAT);
263 1.1 fvdl }
264 1.1 fvdl
265 1.1 fvdl /**************************** Locking Primitives ******************************/
266 1.1 fvdl /* Lock protecting internal data structures */
267 1.10 perry static __inline void ahd_lockinit(struct ahd_softc *);
268 1.10 perry static __inline void ahd_lock(struct ahd_softc *, int *);
269 1.10 perry static __inline void ahd_unlock(struct ahd_softc *, int *);
270 1.1 fvdl
271 1.5 wiz /* Lock held during command completion to the upper layer */
272 1.10 perry static __inline void ahd_done_lockinit(struct ahd_softc *);
273 1.10 perry static __inline void ahd_done_lock(struct ahd_softc *, unsigned long *);
274 1.10 perry static __inline void ahd_done_unlock(struct ahd_softc *, unsigned long *);
275 1.1 fvdl
276 1.1 fvdl /* Lock held during ahd_list manipulation and ahd softc frees */
277 1.10 perry static __inline void ahd_list_lockinit(void);
278 1.10 perry static __inline void ahd_list_lock(unsigned long *);
279 1.10 perry static __inline void ahd_list_unlock(unsigned long *);
280 1.1 fvdl
281 1.10 perry static __inline void
282 1.12 christos ahd_lockinit(struct ahd_softc *ahd)
283 1.1 fvdl {
284 1.1 fvdl }
285 1.1 fvdl
286 1.10 perry static __inline void
287 1.12 christos ahd_lock(struct ahd_softc *ahd, int *flags)
288 1.1 fvdl {
289 1.7 perry *flags = splbio();
290 1.1 fvdl }
291 1.1 fvdl
292 1.10 perry static __inline void
293 1.12 christos ahd_unlock(struct ahd_softc *ahd, int *flags)
294 1.1 fvdl {
295 1.1 fvdl splx(*flags);
296 1.1 fvdl }
297 1.1 fvdl
298 1.5 wiz /* Lock held during command completion to the upper layer */
299 1.10 perry static __inline void
300 1.12 christos ahd_done_lockinit(struct ahd_softc *ahd)
301 1.1 fvdl {
302 1.1 fvdl }
303 1.1 fvdl
304 1.10 perry static __inline void
305 1.12 christos ahd_done_lock(struct ahd_softc *ahd, unsigned long *flags)
306 1.1 fvdl {
307 1.1 fvdl }
308 1.1 fvdl
309 1.10 perry static __inline void
310 1.12 christos ahd_done_unlock(struct ahd_softc *ahd, unsigned long *flags)
311 1.1 fvdl {
312 1.1 fvdl }
313 1.1 fvdl
314 1.1 fvdl /* Lock held during ahd_list manipulation and ahd softc frees */
315 1.10 perry static __inline void
316 1.4 thorpej ahd_list_lockinit(void)
317 1.1 fvdl {
318 1.1 fvdl }
319 1.1 fvdl
320 1.10 perry static __inline void
321 1.12 christos ahd_list_lock(unsigned long *flags)
322 1.1 fvdl {
323 1.1 fvdl }
324 1.1 fvdl
325 1.10 perry static __inline void
326 1.12 christos ahd_list_unlock(unsigned long *flags)
327 1.1 fvdl {
328 1.1 fvdl }
329 1.1 fvdl /****************************** OS Primitives *********************************/
330 1.1 fvdl #define ahd_delay DELAY
331 1.1 fvdl
332 1.1 fvdl /************************** Transaction Operations ****************************/
333 1.10 perry static __inline void ahd_set_transaction_status(struct scb *, uint32_t);
334 1.10 perry static __inline void ahd_set_scsi_status(struct scb *, uint32_t);
335 1.10 perry static __inline void ahd_set_xfer_status(struct scb *, uint32_t);
336 1.10 perry static __inline uint32_t ahd_get_transaction_status(struct scb *);
337 1.10 perry static __inline uint32_t ahd_get_scsi_status(struct scb *);
338 1.10 perry static __inline void ahd_set_transaction_tag(struct scb *, int, u_int);
339 1.10 perry static __inline u_long ahd_get_transfer_length(struct scb *);
340 1.10 perry static __inline int ahd_get_transfer_dir(struct scb *);
341 1.10 perry static __inline void ahd_set_residual(struct scb *, u_long);
342 1.10 perry static __inline void ahd_set_sense_residual(struct scb *, u_long);
343 1.10 perry static __inline u_long ahd_get_residual(struct scb *);
344 1.10 perry static __inline int ahd_perform_autosense(struct scb *);
345 1.10 perry static __inline uint32_t ahd_get_sense_bufsize(struct ahd_softc*, struct scb*);
346 1.10 perry static __inline void ahd_freeze_simq(struct ahd_softc *);
347 1.10 perry static __inline void ahd_release_simq(struct ahd_softc *);
348 1.10 perry static __inline void ahd_freeze_scb(struct scb *);
349 1.10 perry static __inline void ahd_platform_freeze_devq(struct ahd_softc *, struct scb *);
350 1.10 perry static __inline int ahd_platform_abort_scbs(struct ahd_softc *, int,
351 1.3 itojun char, int, u_int, role_t, uint32_t);
352 1.1 fvdl
353 1.10 perry static __inline
354 1.1 fvdl void ahd_set_transaction_status(struct scb *scb, uint32_t status)
355 1.1 fvdl {
356 1.1 fvdl scb->xs->error = status;
357 1.1 fvdl }
358 1.1 fvdl
359 1.10 perry static __inline
360 1.1 fvdl void ahd_set_scsi_status(struct scb *scb, uint32_t status)
361 1.1 fvdl {
362 1.1 fvdl scb->xs->xs_status = status;
363 1.1 fvdl }
364 1.1 fvdl
365 1.10 perry static __inline
366 1.1 fvdl void ahd_set_xfer_status(struct scb *scb, uint32_t status)
367 1.1 fvdl {
368 1.1 fvdl scb->xs->status = status;
369 1.1 fvdl }
370 1.1 fvdl
371 1.10 perry static __inline
372 1.1 fvdl uint32_t ahd_get_transaction_status(struct scb *scb)
373 1.1 fvdl {
374 1.1 fvdl return (scb->xs->error);
375 1.1 fvdl }
376 1.1 fvdl
377 1.10 perry static __inline
378 1.1 fvdl uint32_t ahd_get_scsi_status(struct scb *scb)
379 1.1 fvdl {
380 1.1 fvdl return (scb->xs->xs_status);
381 1.1 fvdl }
382 1.1 fvdl
383 1.10 perry static __inline
384 1.12 christos void ahd_set_transaction_tag(struct scb *scb, int enabled, u_int type)
385 1.1 fvdl {
386 1.1 fvdl scb->xs->xs_tag_type = type;
387 1.1 fvdl }
388 1.1 fvdl
389 1.10 perry static __inline
390 1.1 fvdl u_long ahd_get_transfer_length(struct scb *scb)
391 1.1 fvdl {
392 1.1 fvdl return (scb->xs->datalen);
393 1.1 fvdl }
394 1.1 fvdl
395 1.10 perry static __inline
396 1.1 fvdl int ahd_get_transfer_dir(struct scb *scb)
397 1.1 fvdl {
398 1.1 fvdl return (scb->xs->xs_control & (XS_CTL_DATA_IN|XS_CTL_DATA_OUT));
399 1.1 fvdl }
400 1.1 fvdl
401 1.10 perry static __inline
402 1.1 fvdl void ahd_set_residual(struct scb *scb, u_long resid)
403 1.1 fvdl {
404 1.1 fvdl scb->xs->resid = resid;
405 1.1 fvdl }
406 1.1 fvdl
407 1.1 fvdl
408 1.10 perry static __inline
409 1.12 christos void ahd_set_sense_residual(struct scb *scb, u_long resid)
410 1.1 fvdl {
411 1.18 tsutsui //scb->xs->sense.scsi_sense.extra_len = resid; /* ??? */
412 1.1 fvdl }
413 1.1 fvdl
414 1.1 fvdl
415 1.10 perry static __inline
416 1.1 fvdl u_long ahd_get_residual(struct scb *scb)
417 1.1 fvdl {
418 1.1 fvdl return (scb->xs->resid);
419 1.1 fvdl }
420 1.1 fvdl
421 1.10 perry static __inline
422 1.1 fvdl int ahd_perform_autosense(struct scb *scb)
423 1.1 fvdl {
424 1.1 fvdl return (!(scb->flags & SCB_SENSE));
425 1.1 fvdl }
426 1.1 fvdl
427 1.10 perry static __inline uint32_t
428 1.12 christos ahd_get_sense_bufsize(struct ahd_softc *ahd, struct scb *scb)
429 1.1 fvdl {
430 1.6 thorpej return (sizeof(struct scsi_sense_data));
431 1.1 fvdl }
432 1.1 fvdl
433 1.10 perry static __inline void
434 1.12 christos ahd_freeze_simq(struct ahd_softc *ahd)
435 1.1 fvdl {
436 1.1 fvdl /* do nothing for now */
437 1.1 fvdl }
438 1.1 fvdl
439 1.10 perry static __inline void
440 1.12 christos ahd_release_simq(struct ahd_softc *ahd)
441 1.1 fvdl {
442 1.1 fvdl /* do nothing for now */
443 1.1 fvdl }
444 1.1 fvdl
445 1.10 perry static __inline void
446 1.1 fvdl ahd_freeze_scb(struct scb *scb)
447 1.1 fvdl {
448 1.18 tsutsui struct scsipi_xfer *xs = scb->xs;
449 1.1 fvdl
450 1.1 fvdl if (!(scb->flags & SCB_FREEZE_QUEUE)) {
451 1.1 fvdl scsipi_periph_freeze(xs->xs_periph, 1);
452 1.1 fvdl scb->flags |= SCB_FREEZE_QUEUE;
453 1.1 fvdl }
454 1.1 fvdl }
455 1.1 fvdl
456 1.10 perry static __inline void
457 1.12 christos ahd_platform_freeze_devq(struct ahd_softc *ahd, struct scb *scb)
458 1.1 fvdl {
459 1.1 fvdl /* Nothing to do here for NetBSD */
460 1.1 fvdl }
461 1.1 fvdl
462 1.10 perry static __inline int
463 1.12 christos ahd_platform_abort_scbs(struct ahd_softc *ahd, int target,
464 1.12 christos char channel, int lun, u_int tag,
465 1.12 christos role_t role, uint32_t status)
466 1.1 fvdl {
467 1.1 fvdl /* Nothing to do here for NetBSD */
468 1.1 fvdl return (0);
469 1.1 fvdl }
470 1.1 fvdl
471 1.10 perry static __inline void
472 1.12 christos ahd_platform_scb_free(struct ahd_softc *ahd, struct scb *scb)
473 1.1 fvdl {
474 1.11 christos #ifdef __FreeBSD__
475 1.1 fvdl /* What do we do to generically handle driver resource shortages??? */
476 1.1 fvdl if ((ahd->flags & AHD_RESOURCE_SHORTAGE) != 0
477 1.1 fvdl && scb->io_ctx != NULL
478 1.1 fvdl && (scb->io_ctx->ccb_h.status & CAM_RELEASE_SIMQ) == 0) {
479 1.1 fvdl scb->io_ctx->ccb_h.status |= CAM_RELEASE_SIMQ;
480 1.1 fvdl ahd->flags &= ~AHD_RESOURCE_SHORTAGE;
481 1.1 fvdl }
482 1.1 fvdl scb->io_ctx = NULL;
483 1.1 fvdl #endif /* end of modification */
484 1.1 fvdl }
485 1.1 fvdl
486 1.1 fvdl /********************************** PCI ***************************************/
487 1.1 fvdl #if AHD_PCI_CONFIG > 0
488 1.10 perry static __inline uint32_t ahd_pci_read_config(ahd_dev_softc_t, int, int);
489 1.10 perry static __inline void ahd_pci_write_config(ahd_dev_softc_t, int,
490 1.3 itojun uint32_t, int);
491 1.10 perry static __inline int ahd_get_pci_function(ahd_dev_softc_t);
492 1.10 perry static __inline int ahd_get_pci_slot(ahd_dev_softc_t);
493 1.10 perry static __inline int ahd_get_pci_bus(ahd_dev_softc_t);
494 1.1 fvdl
495 1.3 itojun int ahd_pci_map_registers(struct ahd_softc *);
496 1.3 itojun int ahd_pci_map_int(struct ahd_softc *);
497 1.1 fvdl
498 1.10 perry static __inline uint32_t
499 1.1 fvdl ahd_pci_read_config(ahd_dev_softc_t pci, int reg, int width)
500 1.1 fvdl {
501 1.1 fvdl return (pci_read_config(pci, reg, width));
502 1.1 fvdl }
503 1.1 fvdl
504 1.10 perry static __inline void
505 1.1 fvdl ahd_pci_write_config(ahd_dev_softc_t pci, int reg, uint32_t value, int width)
506 1.1 fvdl {
507 1.1 fvdl pci_write_config(pci, reg, value, width);
508 1.1 fvdl }
509 1.1 fvdl
510 1.10 perry static __inline int
511 1.1 fvdl ahd_get_pci_function(ahd_dev_softc_t pci)
512 1.1 fvdl {
513 1.1 fvdl return (pci_get_function(pci));
514 1.1 fvdl }
515 1.1 fvdl
516 1.10 perry static __inline int
517 1.1 fvdl ahd_get_pci_slot(ahd_dev_softc_t pci)
518 1.1 fvdl {
519 1.1 fvdl return (pci_get_slot(pci));
520 1.1 fvdl }
521 1.1 fvdl
522 1.1 fvdl
523 1.10 perry static __inline int
524 1.1 fvdl ahd_get_pci_bus(ahd_dev_softc_t pci)
525 1.1 fvdl {
526 1.1 fvdl return (pci_get_bus(pci));
527 1.1 fvdl }
528 1.1 fvdl #endif
529 1.1 fvdl
530 1.1 fvdl typedef enum
531 1.1 fvdl {
532 1.1 fvdl AHD_POWER_STATE_D0,
533 1.1 fvdl AHD_POWER_STATE_D1,
534 1.1 fvdl AHD_POWER_STATE_D2,
535 1.1 fvdl AHD_POWER_STATE_D3
536 1.1 fvdl } ahd_power_state;
537 1.1 fvdl
538 1.3 itojun void ahd_power_state_change(struct ahd_softc *, ahd_power_state);
539 1.1 fvdl
540 1.1 fvdl /******************************** VL/EISA *************************************/
541 1.3 itojun int aic7770_map_registers(struct ahd_softc *);
542 1.3 itojun int aic7770_map_int(struct ahd_softc *, int);
543 1.1 fvdl
544 1.1 fvdl /********************************* Debug **************************************/
545 1.10 perry static __inline void ahd_print_path(struct ahd_softc *, struct scb *);
546 1.10 perry static __inline void ahd_platform_dump_card_state(struct ahd_softc *);
547 1.10 perry static __inline void
548 1.12 christos ahd_print_path(struct ahd_softc *ahd, struct scb *scb)
549 1.1 fvdl {
550 1.20 tsutsui printf("%s:", device_xname(ahd->sc_dev));
551 1.1 fvdl }
552 1.1 fvdl
553 1.10 perry static __inline void
554 1.12 christos ahd_platform_dump_card_state(struct ahd_softc *ahd)
555 1.1 fvdl {
556 1.1 fvdl /* Nothing to do here for NetBSD */
557 1.1 fvdl }
558 1.1 fvdl /**************************** Transfer Settings *******************************/
559 1.1 fvdl void ahd_notify_xfer_settings_change(struct ahd_softc *,
560 1.1 fvdl struct ahd_devinfo *);
561 1.1 fvdl void ahd_platform_set_tags(struct ahd_softc *, struct ahd_devinfo *,
562 1.1 fvdl ahd_queue_alg);
563 1.1 fvdl
564 1.1 fvdl /************************* Initialization/Teardown ****************************/
565 1.3 itojun int ahd_platform_alloc(struct ahd_softc *, void *);
566 1.3 itojun void ahd_platform_free(struct ahd_softc *);
567 1.3 itojun int ahd_map_int(struct ahd_softc *);
568 1.1 fvdl int ahd_attach(struct ahd_softc *);
569 1.3 itojun int ahd_softc_comp(struct ahd_softc *, struct ahd_softc *);
570 1.19 tsutsui int ahd_detach(struct ahd_softc *, int);
571 1.1 fvdl #define ahd_platform_init(arg)
572 1.1 fvdl
573 1.1 fvdl
574 1.1 fvdl /****************************** Interrupts ************************************/
575 1.1 fvdl void ahd_platform_intr(void *);
576 1.10 perry static __inline void ahd_platform_flushwork(struct ahd_softc *);
577 1.10 perry static __inline void
578 1.12 christos ahd_platform_flushwork(struct ahd_softc *ahd)
579 1.1 fvdl {
580 1.1 fvdl /* Nothing to do here for NetBSD */
581 1.1 fvdl }
582 1.1 fvdl
583 1.1 fvdl /************************ Misc Function Declarations **************************/
584 1.3 itojun void ahd_done(struct ahd_softc *, struct scb *);
585 1.16 gmcgarry void ahd_send_async(struct ahd_softc *, char, u_int, u_int, ac_code, void *);
586 1.1 fvdl
587 1.1 fvdl #endif /* _AIC79XX_NETBSD_H_ */
588