xref: /openbsd/sys/dev/ic/aic79xx_openbsd.h (revision a6445c1d)
1 /*	$OpenBSD: aic79xx_openbsd.h,v 1.18 2014/09/14 14:17:24 jsg Exp $	*/
2 
3 /*
4  * Copyright (c) 2004 Milos Urbanek, Kenneth R. Westerback & Marco Peereboom
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
20  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  */
29 
30 /*
31  * FreeBSD platform specific driver option settings, data structures,
32  * function declarations and includes.
33  *
34  * Copyright (c) 1994-2001 Justin T. Gibbs.
35  * Copyright (c) 2001-2002 Adaptec Inc.
36  * All rights reserved.
37  *
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  * 1. Redistributions of source code must retain the above copyright
42  *    notice, this list of conditions, and the following disclaimer,
43  *    without modification.
44  * 2. The name of the author may not be used to endorse or promote products
45  *    derived from this software without specific prior written permission.
46  *
47  * Alternatively, this software may be distributed under the terms of the
48  * GNU Public License ("GPL").
49  *
50  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
51  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
54  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60  * SUCH DAMAGE.
61  *
62  * $FreeBSD: src/sys/dev/aic7xxx/aic79xx_osm.h,v 1.13 2003/12/17 00:02:09 gibbs Exp $
63  *
64  */
65 
66 #ifndef _AIC79XX_OPENBSD_H_
67 #define _AIC79XX_OPENBSD_H_
68 
69 #include "pci.h"		/* for config options */
70 
71 #include <sys/param.h>
72 #include <sys/kernel.h>
73 #include <sys/systm.h>
74 #include <sys/device.h>
75 #include <sys/malloc.h>
76 #include <sys/buf.h>
77 #include <sys/queue.h>
78 
79 #define AIC_PCI_CONFIG 1
80 #include <dev/pci/pcireg.h>
81 #include <dev/pci/pcivar.h>
82 
83 #include <machine/bus.h>
84 #include <machine/intr.h>
85 
86 #include <scsi/scsi_all.h>
87 #include <scsi/scsi_message.h>
88 #include <scsi/scsi_debug.h>
89 #include <scsi/scsiconf.h>
90 
91 #include <uvm/uvm_extern.h>
92 
93 #ifdef DEBUG
94 #define bootverbose     1
95 #else
96 #define bootverbose     0
97 #endif
98 /****************************** Platform Macros *******************************/
99 #define	SCSI_IS_SCSIBUS_B(ahd, sc_link)	\
100 	(0)
101 #define	SCSI_CHANNEL(ahd, sc_link)	\
102 	('A')
103 #define	SCSI_SCSI_ID(ahd, sc_link)	\
104 	(ahd->our_id)
105 #define BUILD_SCSIID(ahd, sc_link, target_id, our_id) \
106 	((((target_id) << TID_SHIFT) & TID) | (our_id))
107 
108 #ifndef offsetof
109 #define offsetof(type, member)  ((size_t)(&((type *)0)->member))
110 #endif
111 
112 /************************* Forward Declarations *******************************/
113 typedef struct pci_attach_args * ahd_dev_softc_t;
114 
115 /***************************** Bus Space/DMA **********************************/
116 
117 /* XXX Need to update Bus DMA for partial map syncs */
118 #define ahd_dmamap_sync(ahc, dma_tag, dmamap, offset, len, op)		\
119 	bus_dmamap_sync(dma_tag, dmamap, offset, len, op)
120 
121 /************************ Tunable Driver Parameters  **************************/
122 /*
123  * The number of dma segments supported.  The sequencer can handle any number
124  * of physically contiguous S/G entries.  To reduce the driver's memory
125  * consumption, we limit the number supported to be sufficient to handle
126  * the largest mapping supported by the kernel, MAXPHYS.  Assuming the
127  * transfer is as fragmented as possible and unaligned, this turns out to
128  * be the number of paged sized transfers in MAXPHYS plus an extra element
129  * to handle any unaligned residual.  The sequencer fetches SG elements
130  * in cacheline sized chucks, so make the number per-transaction an even
131  * multiple of 16 which should align us on even the largest of cacheline
132  * boundaries.
133  */
134 #define AHD_NSEG (roundup(atop(MAXPHYS) + 1, 16))
135 
136 /* This driver supports target mode */
137 // #define AHD_TARGET_MODE 1
138 
139 /************************** Softc/SCB Platform Data ***************************/
140 struct ahd_platform_data {
141 };
142 
143 struct scb_platform_data {
144 };
145 
146 /************************** Timer DataStructures ******************************/
147 typedef struct timeout aic_timer_t;
148 
149 /***************************** Core Includes **********************************/
150 
151 #if AHD_REG_PRETTY_PRINT
152 #define AIC_DEBUG_REGISTERS 1
153 #else
154 #define AIC_DEBUG_REGISTERS 0
155 #endif
156 #include <dev/ic/aic79xx.h>
157 
158 /***************************** Timer Facilities *******************************/
159 void ahd_timeout(void*);
160 void aic_timer_reset(aic_timer_t *, u_int, ahd_callback_t *, void *);
161 void aic_scb_timer_reset(struct scb *, u_int);
162 
163 #define aic_timer_stop timeout_del
164 #define aic_get_timeout(scb) ((scb)->xs->timeout)
165 /*************************** Device Access ************************************/
166 #define ahd_inb(ahd, port)					\
167 	bus_space_read_1((ahd)->tags[(port) >> 8],		\
168 			 (ahd)->bshs[(port) >> 8], (port) & 0xFF)
169 
170 #define ahd_outb(ahd, port, value)				\
171 	bus_space_write_1((ahd)->tags[(port) >> 8],		\
172 			  (ahd)->bshs[(port) >> 8], (port) & 0xFF, value)
173 
174 #define ahd_inw_atomic(ahd, port)				\
175 	aic_le16toh(bus_space_read_2((ahd)->tags[(port) >> 8],	\
176 				     (ahd)->bshs[(port) >> 8], (port) & 0xFF))
177 
178 #define ahd_outw_atomic(ahd, port, value)			\
179 	bus_space_write_2((ahd)->tags[(port) >> 8],		\
180 			  (ahd)->bshs[(port) >> 8],		\
181 			  (port & 0xFF), aic_htole16(value))
182 
183 #define ahd_outsb(ahd, port, valp, count)			\
184 	bus_space_write_multi_1((ahd)->tags[(port) >> 8],	\
185 				(ahd)->bshs[(port) >> 8],	\
186 				(port & 0xFF), valp, count)
187 
188 #define ahd_insb(ahd, port, valp, count)			\
189 	bus_space_read_multi_1((ahd)->tags[(port) >> 8],	\
190 			       (ahd)->bshs[(port) >> 8],	\
191 			       (port & 0xFF), valp, count)
192 
193 void ahd_flush_device_writes(struct ahd_softc *);
194 
195 /**************************** Locking Primitives ******************************/
196 /* Lock protecting internal data structures */
197 #define ahd_lockinit(ahd)
198 #define ahd_lock(ahd, flags) *(flags) = splbio()
199 #define ahd_unlock(ahd, flags) splx(*(flags))
200 
201 /* Lock held during command completion to the upper layer */
202 #define ahd_done_lockinit(ahd)
203 #define ahd_done_lock(ahd, flags)
204 #define ahd_done_unlock(ahd, flags)
205 
206 /* Lock held during ahd_list manipulation and ahd softc frees */
207 #define ahd_list_lockinit(x)
208 #define ahd_list_lock(flags) *(flags) = splbio()
209 #define ahd_list_unlock(flags) splx(*(flags))
210 
211 /****************************** OS Primitives *********************************/
212 #define scsi_4btoul(b)	(_4btol(b))
213 
214 /************************** Transaction Operations ****************************/
215 #define aic_set_transaction_status(scb, status) (scb)->xs->error = (status)
216 #define aic_set_scsi_status(scb, status) (scb)->xs->xs_status = (status)
217 #define aic_set_transaction_tag(scb, enabled, type)
218 #define aic_set_residual(scb, residual) (scb)->xs->resid = (residual)
219 #define aic_set_sense_residual(scb, residual) (scb)->xs->resid = (residual)
220 
221 #define aic_get_transaction_status(scb) \
222 	(((scb)->xs->flags & ITSDONE) ? CAM_REQ_CMP : (scb)->xs->error)
223 #define aic_get_scsi_status(scb) ((scb)->xs->status)
224 #define aic_get_transfer_length(scb) ((scb)->xs->datalen)
225 #define aic_get_transfer_dir(scb) \
226 	((scb)->xs->flags & (SCSI_DATA_IN | SCSI_DATA_OUT))
227 #define aic_get_residual(scb) ((scb)->xs->resid)
228 #define aic_get_sense_bufsize(ahd, scb) (sizeof(struct scsi_sense_data))
229 
230 #define aic_perform_autosense(scb) (1)
231 
232 #define aic_freeze_simq(ahd)
233 #define aic_release_simq(ahd)
234 #define aic_freeze_scb(scb)
235 #define ahd_platform_freeze_devq(ahd, scb)
236 #define ahd_platform_abort_scbs(ahd, target, channel, lun, tag, role, status)
237 
238 void aic_platform_scb_free(struct ahd_softc *, struct scb *);
239 
240 /********************************** PCI ***************************************/
241 /*#if AHD_PCI_CONFIG > 0*/
242 #define aic_get_pci_function(pci) ((pci)->pa_function)
243 #define aic_get_pci_slot(pci) ((pci)->pa_device)
244 #define aic_get_pci_bus(pci) ((pci)->pa_bus)
245 
246 int			ahd_pci_map_registers(struct ahd_softc *);
247 int			ahd_pci_map_int(struct ahd_softc *);
248 /*#endif*/
249 
250 typedef enum
251 {
252 	AHD_POWER_STATE_D0,
253 	AHD_POWER_STATE_D1,
254 	AHD_POWER_STATE_D2,
255 	AHD_POWER_STATE_D3
256 } ahd_power_state;
257 
258 void ahd_power_state_change(struct ahd_softc *, ahd_power_state);
259 
260 /********************************* Debug **************************************/
261 void	ahd_print_path(struct ahd_softc *, struct scb *);
262 void	ahd_platform_dump_card_state(struct ahd_softc *ahd);
263 
264 /**************************** Transfer Settings *******************************/
265 void	  ahd_notify_xfer_settings_change(struct ahd_softc *,
266 					  struct ahd_devinfo *);
267 void	  ahd_platform_set_tags(struct ahd_softc *, struct ahd_devinfo *,
268 				ahd_queue_alg);
269 
270 /************************* Initialization/Teardown ****************************/
271 int	  ahd_platform_alloc(struct ahd_softc *, void *);
272 void	  ahd_platform_free(struct ahd_softc *);
273 int	  ahd_attach(struct ahd_softc *);
274 int	  ahd_softc_comp(struct ahd_softc *lahd, struct ahd_softc *rahd);
275 int	  ahd_detach(struct device *, int);
276 
277 #define	ahd_platform_init(ahd)
278 
279 /****************************** Interrupts ************************************/
280 int			ahd_platform_intr(void *);
281 void	ahd_platform_flushwork(struct ahd_softc *ahd);
282 /************************ Misc Function Declarations **************************/
283 void	  ahd_done(struct ahd_softc *, struct scb *);
284 void	  ahd_send_async(struct ahd_softc *, char /*channel*/,
285 			 u_int /*target*/, u_int /*lun*/, ac_code, void *arg);
286 #endif  /* _AIC79XX_OPENBSD_H_ */
287