xref: /netbsd-src/sys/dev/isa/if_ne_isa.c (revision 5e4c038a45edbc7d63b7c2daa76e29f88b64a4e3)
1 /*	$NetBSD: if_ne_isa.c,v 1.13 2002/01/07 21:47:08 thorpej Exp $	*/
2 
3 /*-
4  * Copyright (c) 1997, 1998 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 of the Numerical Aerospace Simulation Facility,
9  * NASA Ames Research Center.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *	This product includes software developed by the NetBSD
22  *	Foundation, Inc. and its contributors.
23  * 4. Neither the name of The NetBSD Foundation nor the names of its
24  *    contributors may be used to endorse or promote products derived
25  *    from this software without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37  * POSSIBILITY OF SUCH DAMAGE.
38  */
39 
40 #include <sys/cdefs.h>
41 __KERNEL_RCSID(0, "$NetBSD: if_ne_isa.c,v 1.13 2002/01/07 21:47:08 thorpej Exp $");
42 
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/mbuf.h>
46 #include <sys/socket.h>
47 #include <sys/ioctl.h>
48 #include <sys/errno.h>
49 #include <sys/syslog.h>
50 #include <sys/select.h>
51 #include <sys/device.h>
52 
53 #include <net/if.h>
54 #include <net/if_dl.h>
55 #include <net/if_ether.h>
56 #include <net/if_media.h>
57 
58 #include <machine/intr.h>
59 #include <machine/bus.h>
60 
61 #include <dev/ic/dp8390reg.h>
62 #include <dev/ic/dp8390var.h>
63 
64 #include <dev/ic/ne2000reg.h>
65 #include <dev/ic/ne2000var.h>
66 
67 #include <dev/ic/rtl80x9reg.h>
68 #include <dev/ic/rtl80x9var.h>
69 
70 #include <dev/isa/isavar.h>
71 
72 int	ne_isa_match __P((struct device *, struct cfdata *, void *));
73 void	ne_isa_attach __P((struct device *, struct device *, void *));
74 
75 struct ne_isa_softc {
76 	struct	ne2000_softc sc_ne2000;		/* real "ne2000" softc */
77 
78 	/* ISA-specific goo. */
79 	void	*sc_ih;				/* interrupt cookie */
80 };
81 
82 struct cfattach ne_isa_ca = {
83 	sizeof(struct ne_isa_softc), ne_isa_match, ne_isa_attach
84 };
85 
86 int
87 ne_isa_match(parent, match, aux)
88 	struct device *parent;
89 	struct cfdata *match;
90 	void *aux;
91 {
92 	struct isa_attach_args *ia = aux;
93 	bus_space_tag_t nict = ia->ia_iot;
94 	bus_space_handle_t nich;
95 	bus_space_tag_t asict;
96 	bus_space_handle_t asich;
97 	int rv = 0;
98 
99 	if (ia->ia_nio < 1)
100 		return (0);
101 	if (ia->ia_nirq < 1)
102 		return (0);
103 
104 	if (ISA_DIRECT_CONFIG(ia))
105 		return (0);
106 
107 	/* Disallow wildcarded values. */
108 	if (ia->ia_io[0].ir_addr == ISACF_PORT_DEFAULT)
109 		return (0);
110 	if (ia->ia_irq[0].ir_irq == ISACF_IRQ_DEFAULT)
111 		return (0);
112 
113 	/* Make sure this is a valid NE[12]000 i/o address. */
114 	if ((ia->ia_io[0].ir_addr & 0x1f) != 0)
115 		return (0);
116 
117 	/* Map i/o space. */
118 	if (bus_space_map(nict, ia->ia_io[0].ir_addr, NE2000_NPORTS, 0, &nich))
119 		return (0);
120 
121 	asict = nict;
122 	if (bus_space_subregion(nict, nich, NE2000_ASIC_OFFSET,
123 	    NE2000_ASIC_NPORTS, &asich))
124 		goto out;
125 
126 	/* Look for an NE2000-compatible card. */
127 	rv = ne2000_detect(nict, nich, asict, asich);
128 
129 	if (rv) {
130 		ia->ia_nio = 1;
131 		ia->ia_io[0].ir_size = NE2000_NPORTS;
132 
133 		ia->ia_nirq = 1;
134 
135 		ia->ia_niomem = 0;
136 		ia->ia_ndrq = 0;
137 	}
138 
139  out:
140 	bus_space_unmap(nict, nich, NE2000_NPORTS);
141 	return (rv);
142 }
143 
144 void
145 ne_isa_attach(parent, self, aux)
146 	struct device *parent, *self;
147 	void *aux;
148 {
149 	struct ne_isa_softc *isc = (struct ne_isa_softc *)self;
150 	struct ne2000_softc *nsc = &isc->sc_ne2000;
151 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
152 	struct isa_attach_args *ia = aux;
153 	bus_space_tag_t nict = ia->ia_iot;
154 	bus_space_handle_t nich;
155 	bus_space_tag_t asict = nict;
156 	bus_space_handle_t asich;
157 	const char *typestr;
158 	int netype;
159 
160 	printf("\n");
161 
162 	/* Map i/o space. */
163 	if (bus_space_map(nict, ia->ia_io[0].ir_addr, NE2000_NPORTS,
164 	    0, &nich)) {
165 		printf("%s: can't map i/o space\n", dsc->sc_dev.dv_xname);
166 		return;
167 	}
168 
169 	if (bus_space_subregion(nict, nich, NE2000_ASIC_OFFSET,
170 	    NE2000_ASIC_NPORTS, &asich)) {
171 		printf("%s: can't subregion i/o space\n", dsc->sc_dev.dv_xname);
172 		return;
173 	}
174 
175 	dsc->sc_regt = nict;
176 	dsc->sc_regh = nich;
177 
178 	nsc->sc_asict = asict;
179 	nsc->sc_asich = asich;
180 
181 	/*
182 	 * Detect it again, so we can print some information about the
183 	 * interface.
184 	 */
185 	netype = ne2000_detect(nict, nich, asict, asich);
186 	switch (netype) {
187 	case NE2000_TYPE_NE1000:
188 		typestr = "NE1000";
189 		break;
190 
191 	case NE2000_TYPE_NE2000:
192 		typestr = "NE2000";
193 		/*
194 		 * Check for a RealTek 8019.
195 		 */
196 		bus_space_write_1(nict, nich, ED_P0_CR,
197 		    ED_CR_PAGE_0 | ED_CR_STP);
198 		if (bus_space_read_1(nict, nich, NERTL_RTL0_8019ID0) ==
199 								RTL0_8019ID0 &&
200 		    bus_space_read_1(nict, nich, NERTL_RTL0_8019ID1) ==
201 								RTL0_8019ID1) {
202 			typestr = "NE2000 (RTL8019)";
203 			dsc->sc_mediachange = rtl80x9_mediachange;
204 			dsc->sc_mediastatus = rtl80x9_mediastatus;
205 			dsc->init_card = rtl80x9_init_card;
206 			dsc->sc_media_init = rtl80x9_media_init;
207 		}
208 		break;
209 
210 	default:
211 		printf("%s: where did the card go?!\n", dsc->sc_dev.dv_xname);
212 		return;
213 	}
214 
215 	printf("%s: %s Ethernet\n", dsc->sc_dev.dv_xname, typestr);
216 
217 	/* This interface is always enabled. */
218 	dsc->sc_enabled = 1;
219 
220 	/*
221 	 * Do generic NE2000 attach.  This will read the station address
222 	 * from the EEPROM.
223 	 */
224 	ne2000_attach(nsc, NULL);
225 
226 	/* Establish the interrupt handler. */
227 	isc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
228 	    IST_EDGE, IPL_NET, dp8390_intr, dsc);
229 	if (isc->sc_ih == NULL)
230 		printf("%s: couldn't establish interrupt handler\n",
231 		    dsc->sc_dev.dv_xname);
232 }
233