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