1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* $OpenBSD: twevar.h,v 1.1 2000/09/15 16:56:13 mickey Exp $ */
/*
* Copyright (c) 2000 Michael Shalayeff
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Michael Shalayeff.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
struct twe_softc;
struct twe_ccb {
struct twe_softc *ccb_sc;
struct twe_cmd *ccb_cmd;
struct scsi_xfer *ccb_xs;
paddr_t ccb_cmdpa;
TAILQ_ENTRY(twe_ccb) ccb_link;
enum {
TWE_CCB_FREE, TWE_CCB_READY, TWE_CCB_QUEUED, TWE_CCB_PREQUEUED
} ccb_state;
int ccb_length;
void *ccb_data;
void *ccb_realdata;
bus_dmamap_t ccb_dmamap;
};
typedef TAILQ_HEAD(twe_queue_head, twe_ccb) twe_queue_head;
struct twe_softc {
struct device sc_dev;
void *sc_ih;
struct scsi_link sc_link;
bus_space_tag_t iot;
bus_space_handle_t ioh;
bus_dma_tag_t dmat;
void *sc_cmds;
bus_dmamap_t sc_cmdmap;
struct twe_ccb sc_ccbs[TWE_MAXCMDS];
twe_queue_head sc_free_ccb;
twe_queue_head sc_ccbq;
twe_queue_head sc_ccb2q;
struct timeout sc_enqueue_tmo;
struct {
int hd_present;
int hd_devtype;
int hd_lock;
int hd_secs;
int hd_heads;
int hd_size;
} sc_hdr[TWE_MAX_UNITS];
};
/* XXX These have to become spinlocks in case of SMP */
#define TWE_LOCK_TWE(sc) splbio()
#define TWE_UNLOCK_TWE(sc, lock) splx(lock)
typedef int twe_lock_t;
void tweminphys __P((struct buf *bp));
int twe_attach __P((struct twe_softc *));
int twe_intr __P((void *));
|