aha_mca.c revision 1.1 1 /* $NetBSD: aha_mca.c,v 1.1 2000/05/11 15:42:04 jdolecek Exp $ */
2
3 /*
4 * Copyright (c) 2000 The NetBSD Foundation, Inc.
5 * Copyright (c) 1996-1999 Scott D. Telford.
6 * Copyright (c) 1994, 1996 Charles M. Hannum. All rights reserved.
7 * Portions:
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by Charles M. Hannum.
20 * 4. The name of the author may not be used to endorse or promote products
21 * derived from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */
34
35 /*
36 * Originally written by Julian Elischer (julian (at) tfs.com)
37 * for TRW Financial Systems for use under the MACH(2.5) operating system.
38 *
39 * TRW Financial Systems, in accordance with their agreement with Carnegie
40 * Mellon University, makes this software available to CMU to distribute
41 * or use in any manner that they see fit as long as this message is kept with
42 * the software. For this reason TFS also grants any other persons or
43 * organisations permission to use or modify this software.
44 *
45 * TFS supplies this software to be publicly redistributed
46 * on the understanding that TFS is not responsible for the correct
47 * functioning of this software in any circumstances.
48 */
49
50 /*
51 * AHA-1640 MCA bus code by Scott Telford
52 */
53
54 #include <sys/param.h>
55 #include <sys/types.h>
56 #include <sys/systm.h>
57 #include <sys/device.h>
58
59 #include <machine/bus.h>
60 #include <machine/intr.h>
61
62 #include <dev/scsipi/scsi_all.h>
63 #include <dev/scsipi/scsipi_all.h>
64 #include <dev/scsipi/scsiconf.h>
65
66 #include <dev/isa/isavar.h>
67 #include <dev/isa/isadmavar.h>
68
69 #include <dev/ic/ahareg.h>
70 #include <dev/ic/ahavar.h>
71
72 #include <dev/mca/mcareg.h>
73 #include <dev/mca/mcavar.h>
74 #include <dev/mca/mcadevs.h>
75
76 #define AHA_ISA_IOSIZE 4
77
78 int aha_mca_probe __P((struct device *, struct cfdata *, void *));
79 void aha_mca_attach __P((struct device *, struct device *, void *));
80
81 struct cfattach aha_mca_ca = {
82 sizeof(struct aha_softc), aha_mca_probe, aha_mca_attach
83 };
84
85
86 int
87 aha_mca_probe(parent, match, aux)
88 struct device *parent;
89 struct cfdata *match;
90 void *aux;
91 {
92 register struct mca_attach_args *ma = aux;
93
94 switch(ma->ma_id) {
95 case MCA_PRODUCT_AHA1640:
96 return 1;
97 }
98
99 return 0;
100 }
101
102
103 /*
104 * Attach all the sub-devices we can find
105 */
106 void
107 aha_mca_attach(parent, self, aux)
108 struct device *parent, *self;
109 void *aux;
110 {
111 struct mca_attach_args *ma = aux;
112 struct aha_softc *sc = (void *)self;
113 bus_space_tag_t iot = ma->ma_iot;
114 bus_space_handle_t ioh;
115 struct aha_probe_data apd;
116 mca_chipset_tag_t mc = ma->ma_mc;
117 bus_addr_t iobase;
118
119 printf("\n");
120
121 iobase=((ma->ma_pos[3] & 0x03) << 8) + 0x30 +
122 ((ma->ma_pos[3] & 0x40) >> 4);
123
124 if (bus_space_map(iot, iobase, AHA_ISA_IOSIZE, 0, &ioh)) {
125 printf("%s: can't map i/o space\n", sc->sc_dev.dv_xname);
126 return;
127 }
128
129 sc->sc_iot = iot;
130 sc->sc_ioh = ioh;
131 sc->sc_dmat = ma->ma_dmat;
132
133 apd.sc_irq=(ma->ma_pos[4] & 0x7) + 8;
134 apd.sc_drq=ma->ma_pos[5] & 0xf;
135 apd.sc_scsi_dev=(ma->ma_pos[4] & 0xe0) >> 5;
136
137 #ifdef notyet
138 if (apd.sc_drq != -1)
139 isa_dmacascade(mc, apd.sc_drq);
140 #endif
141
142 sc->sc_ih = mca_intr_establish(mc, apd.sc_irq, IPL_BIO, aha_intr, sc);
143 if (sc->sc_ih == NULL) {
144 printf("%s: couldn't establish interrupt\n",
145 sc->sc_dev.dv_xname);
146 return;
147 }
148
149 aha_attach(sc, &apd);
150 }
151