wdcvar.h revision 1.4 1 1.4 kenh /* $NetBSD: wdcvar.h,v 1.4 1998/09/10 19:24:45 kenh Exp $ */
2 1.1 cgd
3 1.3 mycroft /*-
4 1.3 mycroft * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 1.3 mycroft * All rights reserved.
6 1.1 cgd *
7 1.3 mycroft * This code is derived from software contributed to The NetBSD Foundation
8 1.3 mycroft * by Charles M. Hannum, by Onno van der Linden and by Manuel Bouyer.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.3 mycroft * This product includes software developed by the NetBSD
21 1.3 mycroft * Foundation, Inc. and its contributors.
22 1.3 mycroft * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.3 mycroft * contributors may be used to endorse or promote products derived
24 1.3 mycroft * from this software without specific prior written permission.
25 1.1 cgd *
26 1.3 mycroft * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.3 mycroft * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.3 mycroft * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.3 mycroft * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.3 mycroft * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.3 mycroft * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.3 mycroft * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.3 mycroft * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.3 mycroft * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.3 mycroft * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.3 mycroft * POSSIBILITY OF SUCH DAMAGE.
37 1.1 cgd */
38 1.1 cgd
39 1.1 cgd struct wdc_attachment_data {
40 1.1 cgd /* manadatory fields */
41 1.1 cgd int cap;
42 1.4 kenh int flags;
43 1.1 cgd bus_space_tag_t iot;
44 1.1 cgd bus_space_handle_t ioh;
45 1.1 cgd bus_space_tag_t auxiot;
46 1.1 cgd bus_space_handle_t auxioh;
47 1.1 cgd /*
48 1.1 cgd * XXX data access (normal and 32-bit) may need to be
49 1.1 cgd * done via a separate iot/ioh on some systems. Let's
50 1.1 cgd * wait and see if that's the case before implementing
51 1.1 cgd * it.
52 1.1 cgd */
53 1.1 cgd
54 1.1 cgd /* if WDC_CAPABILITY_DMA set in 'cap' */
55 1.1 cgd void *dma_arg;
56 1.1 cgd void (*dma_setup) __P((void *));
57 1.1 cgd void (*dma_start) __P((void *, void *, size_t,
58 1.1 cgd int));
59 1.1 cgd void (*dma_finish) __P((void *));
60 1.2 leo
61 1.2 leo /* if WDC_CAPABILITY_HWLOCK set in 'cap' */
62 1.2 leo int (*claim_hw) __P((void *, int));
63 1.2 leo void (*free_hw) __P((void *));
64 1.1 cgd };
65 1.1 cgd
66 1.1 cgd /* Capabilities supported by the controller */
67 1.1 cgd #define WDC_CAPABILITY_DATA32 0x01 /* 32-bit data access */
68 1.1 cgd #define WDC_CAPABILITY_DMA 0x02 /* DMA */
69 1.2 leo #define WDC_CAPABILITY_HWLOCK 0x04 /* Needs to lock HW */
70 1.4 kenh
71 1.4 kenh /* Flags passed from the attach routine to the wdc driver */
72 1.4 kenh #define WDC_NO_EXTRA_RESETS 0x01 /* Only reset once at attach */
73 1.1 cgd
74 1.1 cgd struct wdc_softc {
75 1.1 cgd struct device sc_dev;
76 1.1 cgd const struct wdc_attachment_data *sc_adp;
77 1.1 cgd
78 1.1 cgd struct wd_link *d_link[2];
79 1.1 cgd struct scsipi_link *ab_link;
80 1.1 cgd
81 1.1 cgd TAILQ_HEAD(xferhead, wdc_xfer) sc_xfer;
82 1.1 cgd int sc_flags;
83 1.1 cgd #define WDCF_ACTIVE 0x01 /* controller is active */
84 1.1 cgd #define WDCF_SINGLE 0x02 /* sector at a time mode */
85 1.1 cgd #define WDCF_ERROR 0x04 /* processing a disk error */
86 1.1 cgd #define WDCF_WANTED 0x08 /* XXX locking for wd_get_parms() */
87 1.1 cgd #define WDCF_IRQ_WAIT 0x10 /* controller is waiting for irq */
88 1.1 cgd #define WDCF_ONESLAVE 0x20 /* ctrl. has one ATAPI slave attached */
89 1.1 cgd int sc_errors; /* errors during current transfer */
90 1.1 cgd u_char sc_status; /* copy of status register */
91 1.1 cgd u_char sc_error; /* copy of error register */
92 1.1 cgd u_char sc_drives_mask; /* bitmask for drives present/absent */
93 1.1 cgd };
94 1.1 cgd
95 1.1 cgd #define sc_cap sc_adp->cap
96 1.1 cgd #define sc_iot sc_adp->iot
97 1.1 cgd #define sc_ioh sc_adp->ioh
98 1.1 cgd #define sc_auxiot sc_adp->auxiot
99 1.1 cgd #define sc_auxioh sc_adp->auxioh
100 1.1 cgd #define sc_dma_arg sc_adp->dma_arg
101 1.1 cgd #define sc_dma_setup sc_adp->dma_setup
102 1.1 cgd #define sc_dma_start sc_adp->dma_start
103 1.1 cgd #define sc_dma_finish sc_adp->dma_finish
104 1.2 leo #define sc_claim_hw sc_adp->claim_hw
105 1.2 leo #define sc_free_hw sc_adp->free_hw
106 1.1 cgd
107 1.1 cgd void wdcattach(struct wdc_softc *, const struct wdc_attachment_data *);
108 1.1 cgd int wdcintr(void *);
109 1.1 cgd int wdcprobe(const struct wdc_attachment_data *);
110