nca_pcmcia.c revision 1.23 1 1.23 tsutsui /* $NetBSD: nca_pcmcia.c,v 1.23 2008/04/04 16:19:51 tsutsui Exp $ */
2 1.1 mycroft
3 1.1 mycroft /*-
4 1.11 mycroft * Copyright (c) 2000, 2004 The NetBSD Foundation, Inc.
5 1.1 mycroft * All rights reserved.
6 1.1 mycroft *
7 1.1 mycroft * This code is derived from software contributed to The NetBSD Foundation
8 1.1 mycroft * by Charles M. Hannum.
9 1.1 mycroft *
10 1.1 mycroft * Redistribution and use in source and binary forms, with or without
11 1.1 mycroft * modification, are permitted provided that the following conditions
12 1.1 mycroft * are met:
13 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
14 1.1 mycroft * notice, this list of conditions and the following disclaimer.
15 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
17 1.1 mycroft * documentation and/or other materials provided with the distribution.
18 1.1 mycroft * 3. All advertising materials mentioning features or use of this software
19 1.1 mycroft * must display the following acknowledgement:
20 1.1 mycroft * This product includes software developed by the NetBSD
21 1.1 mycroft * Foundation, Inc. and its contributors.
22 1.1 mycroft * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 mycroft * contributors may be used to endorse or promote products derived
24 1.1 mycroft * from this software without specific prior written permission.
25 1.1 mycroft *
26 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 mycroft * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 mycroft * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 mycroft * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 mycroft * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 mycroft * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 mycroft * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 mycroft * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 mycroft * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 mycroft * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 mycroft * POSSIBILITY OF SUCH DAMAGE.
37 1.1 mycroft */
38 1.5 lukem
39 1.5 lukem #include <sys/cdefs.h>
40 1.23 tsutsui __KERNEL_RCSID(0, "$NetBSD: nca_pcmcia.c,v 1.23 2008/04/04 16:19:51 tsutsui Exp $");
41 1.1 mycroft
42 1.1 mycroft #include <sys/param.h>
43 1.1 mycroft #include <sys/systm.h>
44 1.1 mycroft #include <sys/device.h>
45 1.1 mycroft #include <sys/buf.h>
46 1.1 mycroft
47 1.22 ad #include <sys/bus.h>
48 1.22 ad #include <sys/intr.h>
49 1.1 mycroft
50 1.1 mycroft #include <dev/scsipi/scsi_all.h>
51 1.1 mycroft #include <dev/scsipi/scsipi_all.h>
52 1.1 mycroft #include <dev/scsipi/scsiconf.h>
53 1.1 mycroft
54 1.1 mycroft #include <dev/pcmcia/pcmciareg.h>
55 1.1 mycroft #include <dev/pcmcia/pcmciavar.h>
56 1.1 mycroft #include <dev/pcmcia/pcmciadevs.h>
57 1.1 mycroft
58 1.1 mycroft #include <dev/ic/ncr5380reg.h>
59 1.1 mycroft #include <dev/ic/ncr5380var.h>
60 1.1 mycroft #include <dev/ic/ncr53c400reg.h>
61 1.1 mycroft
62 1.1 mycroft struct nca_pcmcia_softc {
63 1.1 mycroft struct ncr5380_softc sc_ncr5380; /* glue to MI code */
64 1.1 mycroft
65 1.1 mycroft /* PCMCIA-specific goo. */
66 1.1 mycroft struct pcmcia_function *sc_pf; /* our PCMCIA function */
67 1.1 mycroft void *sc_ih; /* interrupt handler */
68 1.11 mycroft
69 1.11 mycroft int sc_state;
70 1.11 mycroft #define NCA_PCMCIA_ATTACHED 3
71 1.1 mycroft };
72 1.1 mycroft
73 1.23 tsutsui int nca_pcmcia_match(device_t, cfdata_t, void *);
74 1.19 perry int nca_pcmcia_validate_config(struct pcmcia_config_entry *);
75 1.23 tsutsui void nca_pcmcia_attach(device_t, device_t, void *);
76 1.23 tsutsui int nca_pcmcia_detach(device_t, int);
77 1.23 tsutsui int nca_pcmcia_enable(device_t, int);
78 1.1 mycroft
79 1.23 tsutsui CFATTACH_DECL_NEW(nca_pcmcia, sizeof(struct nca_pcmcia_softc),
80 1.9 thorpej nca_pcmcia_match, nca_pcmcia_attach, nca_pcmcia_detach, NULL);
81 1.1 mycroft
82 1.1 mycroft #define MIN_DMA_LEN 128
83 1.1 mycroft
84 1.1 mycroft /* Options for disconnect/reselect, DMA, and interrupts. */
85 1.1 mycroft #define NCA_NO_DISCONNECT 0x00ff
86 1.1 mycroft #define NCA_NO_PARITY_CHK 0xff00
87 1.1 mycroft
88 1.1 mycroft const struct pcmcia_product nca_pcmcia_products[] = {
89 1.14 mycroft { PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
90 1.14 mycroft PCMCIA_CIS_INVALID },
91 1.1 mycroft };
92 1.14 mycroft const size_t nca_pcmcia_nproducts =
93 1.23 tsutsui __arraycount(nca_pcmcia_products);
94 1.1 mycroft
95 1.1 mycroft int
96 1.23 tsutsui nca_pcmcia_match(device_t parent, cfdata_t cf, void *aux)
97 1.1 mycroft {
98 1.1 mycroft struct pcmcia_attach_args *pa = aux;
99 1.1 mycroft
100 1.14 mycroft if (pcmcia_product_lookup(pa, nca_pcmcia_products, nca_pcmcia_nproducts,
101 1.14 mycroft sizeof(nca_pcmcia_products[0]), NULL))
102 1.23 tsutsui return 1;
103 1.23 tsutsui return 0;
104 1.1 mycroft }
105 1.1 mycroft
106 1.11 mycroft int
107 1.23 tsutsui nca_pcmcia_validate_config(struct pcmcia_config_entry *cfe)
108 1.11 mycroft {
109 1.23 tsutsui
110 1.11 mycroft if (cfe->iftype != PCMCIA_IFTYPE_IO ||
111 1.11 mycroft cfe->num_memspace != 0 ||
112 1.11 mycroft cfe->num_iospace != 1)
113 1.23 tsutsui return EINVAL;
114 1.23 tsutsui return 0;
115 1.11 mycroft }
116 1.11 mycroft
117 1.1 mycroft void
118 1.23 tsutsui nca_pcmcia_attach(device_t parent, device_t self, void *aux)
119 1.1 mycroft {
120 1.23 tsutsui struct nca_pcmcia_softc *esc = device_private(self);
121 1.1 mycroft struct ncr5380_softc *sc = &esc->sc_ncr5380;
122 1.1 mycroft struct pcmcia_attach_args *pa = aux;
123 1.1 mycroft struct pcmcia_config_entry *cfe;
124 1.1 mycroft struct pcmcia_function *pf = pa->pf;
125 1.1 mycroft int flags;
126 1.11 mycroft int error;
127 1.1 mycroft
128 1.23 tsutsui sc->sc_dev = self;
129 1.1 mycroft esc->sc_pf = pf;
130 1.1 mycroft
131 1.11 mycroft error = pcmcia_function_configure(pf, nca_pcmcia_validate_config);
132 1.11 mycroft if (error) {
133 1.23 tsutsui aprint_error_dev(self, "configure failed, error=%d\n", error);
134 1.11 mycroft return;
135 1.1 mycroft }
136 1.1 mycroft
137 1.11 mycroft cfe = pf->cfe;
138 1.11 mycroft sc->sc_regt = cfe->iospace[0].handle.iot;
139 1.11 mycroft sc->sc_regh = cfe->iospace[0].handle.ioh;
140 1.1 mycroft
141 1.1 mycroft /* Initialize 5380 compatible register offsets. */
142 1.1 mycroft sc->sci_r0 = C400_5380_REG_OFFSET + 0;
143 1.1 mycroft sc->sci_r1 = C400_5380_REG_OFFSET + 1;
144 1.1 mycroft sc->sci_r2 = C400_5380_REG_OFFSET + 2;
145 1.1 mycroft sc->sci_r3 = C400_5380_REG_OFFSET + 3;
146 1.1 mycroft sc->sci_r4 = C400_5380_REG_OFFSET + 4;
147 1.1 mycroft sc->sci_r5 = C400_5380_REG_OFFSET + 5;
148 1.1 mycroft sc->sci_r6 = C400_5380_REG_OFFSET + 6;
149 1.1 mycroft sc->sci_r7 = C400_5380_REG_OFFSET + 7;
150 1.3 tsutsui
151 1.3 tsutsui sc->sc_rev = NCR_VARIANT_NCR53C400;
152 1.1 mycroft
153 1.1 mycroft /*
154 1.1 mycroft * MD function pointers used by the MI code.
155 1.1 mycroft */
156 1.1 mycroft sc->sc_pio_out = ncr5380_pio_out;
157 1.1 mycroft sc->sc_pio_in = ncr5380_pio_in;
158 1.1 mycroft sc->sc_dma_alloc = NULL;
159 1.1 mycroft sc->sc_dma_free = NULL;
160 1.1 mycroft sc->sc_dma_setup = NULL;
161 1.1 mycroft sc->sc_dma_start = NULL;
162 1.1 mycroft sc->sc_dma_poll = NULL;
163 1.1 mycroft sc->sc_dma_eop = NULL;
164 1.1 mycroft sc->sc_dma_stop = NULL;
165 1.1 mycroft sc->sc_intr_on = NULL;
166 1.1 mycroft sc->sc_intr_off = NULL;
167 1.1 mycroft
168 1.1 mycroft /*
169 1.1 mycroft * Support the "options" (config file flags).
170 1.1 mycroft * Disconnect/reselect is a per-target mask.
171 1.1 mycroft * Interrupts and DMA are per-controller.
172 1.1 mycroft */
173 1.1 mycroft #if 0
174 1.1 mycroft flags = 0x0000; /* no options */
175 1.1 mycroft #else
176 1.1 mycroft flags = 0xffff; /* all options except force poll */
177 1.1 mycroft #endif
178 1.1 mycroft
179 1.1 mycroft sc->sc_no_disconnect = (flags & NCA_NO_DISCONNECT);
180 1.1 mycroft sc->sc_parity_disable = (flags & NCA_NO_PARITY_CHK) >> 8;
181 1.1 mycroft sc->sc_min_dma_len = MIN_DMA_LEN;
182 1.1 mycroft
183 1.11 mycroft error = nca_pcmcia_enable(self, 1);
184 1.12 mycroft if (error)
185 1.11 mycroft goto fail;
186 1.11 mycroft
187 1.11 mycroft sc->sc_adapter.adapt_enable = nca_pcmcia_enable;
188 1.18 mycroft sc->sc_adapter.adapt_refcnt = 1;
189 1.1 mycroft
190 1.1 mycroft ncr5380_attach(sc);
191 1.18 mycroft scsipi_adapter_delref(&sc->sc_adapter);
192 1.11 mycroft esc->sc_state = NCA_PCMCIA_ATTACHED;
193 1.1 mycroft return;
194 1.1 mycroft
195 1.11 mycroft fail:
196 1.11 mycroft pcmcia_function_unconfigure(pf);
197 1.1 mycroft }
198 1.1 mycroft
199 1.1 mycroft int
200 1.23 tsutsui nca_pcmcia_detach(device_t self, int flags)
201 1.1 mycroft {
202 1.23 tsutsui struct nca_pcmcia_softc *sc = device_private(self);
203 1.1 mycroft int error;
204 1.1 mycroft
205 1.11 mycroft if (sc->sc_state != NCA_PCMCIA_ATTACHED)
206 1.23 tsutsui return 0;
207 1.1 mycroft
208 1.11 mycroft error = ncr5380_detach(&sc->sc_ncr5380, flags);
209 1.11 mycroft if (error)
210 1.23 tsutsui return error;
211 1.1 mycroft
212 1.11 mycroft pcmcia_function_unconfigure(sc->sc_pf);
213 1.1 mycroft
214 1.23 tsutsui return 0;
215 1.1 mycroft }
216 1.1 mycroft
217 1.1 mycroft int
218 1.23 tsutsui nca_pcmcia_enable(device_t self, int onoff)
219 1.1 mycroft {
220 1.23 tsutsui struct nca_pcmcia_softc *sc = device_private(self);
221 1.12 mycroft int error;
222 1.1 mycroft
223 1.1 mycroft if (onoff) {
224 1.18 mycroft /* Establish the interrupt handler. */
225 1.18 mycroft sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_BIO,
226 1.18 mycroft ncr5380_intr, &sc->sc_ncr5380);
227 1.23 tsutsui if (sc->sc_ih == NULL)
228 1.23 tsutsui return EIO;
229 1.18 mycroft
230 1.18 mycroft error = pcmcia_function_enable(sc->sc_pf);
231 1.18 mycroft if (error) {
232 1.18 mycroft pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
233 1.18 mycroft sc->sc_ih = 0;
234 1.23 tsutsui return error;
235 1.18 mycroft }
236 1.1 mycroft
237 1.18 mycroft /* Initialize only chip. */
238 1.18 mycroft ncr5380_init(&sc->sc_ncr5380);
239 1.1 mycroft } else {
240 1.11 mycroft pcmcia_function_disable(sc->sc_pf);
241 1.11 mycroft pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
242 1.11 mycroft sc->sc_ih = 0;
243 1.1 mycroft }
244 1.1 mycroft
245 1.23 tsutsui return 0;
246 1.1 mycroft }
247