fdc_sableio.c revision 1.1 1 /* $NetBSD: fdc_sableio.c,v 1.1 2000/12/21 20:51:56 thorpej Exp $ */
2
3 /*-
4 * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
40
41 __KERNEL_RCSID(0, "$NetBSD: fdc_sableio.c,v 1.1 2000/12/21 20:51:56 thorpej Exp $");
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/callout.h>
46 #include <sys/device.h>
47 #include <sys/buf.h>
48 #if NRND > 0
49 #include <sys/rnd.h>
50 #endif
51
52 #include <machine/bus.h>
53 #include <machine/intr.h>
54
55 #include <dev/isa/isavar.h>
56 #include <dev/isa/isadmavar.h>
57
58 #include <dev/isa/fdreg.h>
59 #include <dev/isa/fdcvar.h>
60
61 #include <dev/pci/pcivar.h>
62
63 #include <alpha/sableio/sableiovar.h>
64
65 int fdc_sableio_match(struct device *, struct cfdata *, void *);
66 void fdc_sableio_attach(struct device *, struct device *, void *);
67
68 struct fdc_sableio_softc {
69 struct fdc_softc sc_fdc; /* real "fdc" softc */
70
71 bus_space_handle_t sc_baseioh; /* base I/O handle */
72 };
73
74 struct cfattach fdc_sableio_ca = {
75 sizeof(struct fdc_sableio_softc), fdc_sableio_match, fdc_sableio_attach
76 };
77
78 int
79 fdc_sableio_match(struct device *parent, struct cfdata *match, void *aux)
80 {
81 struct sableio_attach_args *sa = aux;
82
83 /* Always present. */
84 if (strcmp(sa->sa_name, match->cf_driver->cd_name) == 0)
85 return (1);
86
87 return (0);
88 }
89
90 void
91 fdc_sableio_attach(struct device *parent, struct device *self, void *aux)
92 {
93 struct fdc_softc *fdc = (void *) self;
94 struct fdc_sableio_softc *sfdc = (void *) self;
95 struct sableio_attach_args *sa = aux;
96 const char *intrstr;
97
98 printf("\n");
99
100 fdc->sc_iot = sa->sa_iot;
101 fdc->sc_ic = sa->sa_ic;
102 fdc->sc_drq = sa->sa_drq;
103
104 if (bus_space_map(fdc->sc_iot, sa->sa_ioaddr, 6 /* FDC_NPORT */, 0,
105 &sfdc->sc_baseioh)) {
106 printf("%s: unable to map I/O space\n", fdc->sc_dev.dv_xname);
107 return;
108 }
109
110 if (bus_space_subregion(fdc->sc_iot, sfdc->sc_baseioh, 2, 4,
111 &fdc->sc_ioh)) {
112 printf("%s: unable to subregion I/O space\n",
113 fdc->sc_dev.dv_xname);
114 return;
115 }
116
117 if (bus_space_map(fdc->sc_iot, sa->sa_ioaddr + fdctl + 2, 1, 0,
118 &fdc->sc_fdctlioh)) {
119 printf("%s: unable to map CTL I/O space\n",
120 fdc->sc_dev.dv_xname);
121 return;
122 }
123
124 intrstr = pci_intr_string(sa->sa_pc, sa->sa_sableirq[0]);
125 fdc->sc_ih = pci_intr_establish(sa->sa_pc, sa->sa_sableirq[0],
126 IPL_BIO, fdcintr, fdc);
127 if (fdc->sc_ih == NULL) {
128 printf("%s: unable to establish interrupt",
129 fdc->sc_dev.dv_xname);
130 if (intrstr != NULL)
131 printf(" at %s", intrstr);
132 printf("\n");
133 return;
134 }
135 printf("%s: interrupting at %s\n", fdc->sc_dev.dv_xname, intrstr);
136
137 fdcattach(fdc);
138 }
139