if_le_dec.c revision 1.7 1 /* $NetBSD: if_le_dec.c,v 1.7 1997/06/16 03:46:35 jonathan Exp $ */
2
3 /*-
4 * Copyright (c) 1995 Charles M. Hannum. All rights reserved.
5 * Copyright (c) 1992, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * Ralph Campbell and Rick Macklem.
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 University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * @(#)if_le.c 8.2 (Berkeley) 11/16/93
40 */
41
42 #include "bpfilter.h"
43
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/mbuf.h>
47 #include <sys/syslog.h>
48 #include <sys/socket.h>
49 #include <sys/device.h>
50
51 #include <net/if.h>
52 #include <net/if_ether.h>
53 #include <net/if_media.h>
54
55 #ifdef INET
56 #include <netinet/in.h>
57 #include <netinet/if_inarp.h>
58 #endif
59
60 #include <dev/ic/am7990reg.h>
61 #include <dev/ic/am7990var.h>
62
63 #include <dev/tc/if_levar.h>
64 #include <dev/tc/tcvar.h>
65
66 #include <machine/bus.h>
67
68 /* access LANCE registers */
69 void le_dec_writereg __P((volatile u_short *regptr, u_short val));
70 #define LERDWR(cntl, src, dst) { (dst) = (src); tc_mb(); }
71 #define LEWREG(src, dst) le_dec_writereg(&(dst), (src))
72
73 hide void le_dec_wrcsr __P((struct am7990_softc *, u_int16_t, u_int16_t));
74 hide u_int16_t le_dec_rdcsr __P((struct am7990_softc *, u_int16_t));
75
76 void
77 dec_le_common_attach(sc, eap)
78 struct am7990_softc *sc;
79 u_char *eap;
80 {
81 int i;
82
83 sc->sc_rdcsr = le_dec_rdcsr;
84 sc->sc_wrcsr = le_dec_wrcsr;
85 sc->sc_hwinit = NULL;
86
87 sc->sc_conf3 = 0;
88 sc->sc_addr = 0;
89 sc->sc_memsize = 65536;
90
91 /*
92 * Get the ethernet address out of rom
93 */
94 for (i = 0; i < sizeof(sc->sc_enaddr); i++) {
95 sc->sc_enaddr[i] = *eap;
96 eap += 4;
97 }
98
99 am7990_config(sc);
100 }
101
102 hide void
103 le_dec_wrcsr(sc, port, val)
104 struct am7990_softc *sc;
105 u_int16_t port, val;
106 {
107 struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
108
109 LEWREG(port, ler1->ler1_rap);
110 LERDWR(port, val, ler1->ler1_rdp);
111 }
112
113 hide u_int16_t
114 le_dec_rdcsr(sc, port)
115 struct am7990_softc *sc;
116 u_int16_t port;
117 {
118 struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
119 u_int16_t val;
120
121 LEWREG(port, ler1->ler1_rap);
122 LERDWR(0, ler1->ler1_rdp, val);
123 return (val);
124 }
125
126 /*
127 * Write a lance register port, reading it back to ensure success. This seems
128 * to be necessary during initialization, since the chip appears to be a bit
129 * pokey sometimes.
130 */
131 void
132 le_dec_writereg(regptr, val)
133 register volatile u_short *regptr;
134 register u_short val;
135 {
136 register int i = 0;
137
138 while (*regptr != val) {
139 *regptr = val;
140 tc_mb();
141 if (++i > 10000) {
142 printf("le: Reg did not settle (to x%x): x%x\n", val,
143 *regptr);
144 return;
145 }
146 DELAY(100);
147 }
148 }
149
150 /*
151 * Routines for accessing the transmit and receive buffers are provided
152 * by am7990.c, because of the LE_NEED_BUF_* macros defined above.
153 * Unfortunately, CPU addressing of these buffers is done in one of
154 * 3 ways:
155 * - contiguous (for the 3max and turbochannel option card)
156 * - gap2, which means shorts (2 bytes) interspersed with short (2 byte)
157 * spaces (for the pmax)
158 * - gap16, which means 16bytes interspersed with 16byte spaces
159 * for buffers which must begin on a 32byte boundary (for 3min, maxine,
160 * and alpha)
161 * The buffer offset is the logical byte offset, assuming contiguous storage.
162 */
163