xref: /netbsd-src/sys/arch/sun3/dev/if_le.c (revision 23c8222edbfb0f0932d88a8351d3a0cf817dfb9e)
1 /*	$NetBSD: if_le.c,v 1.46 2003/07/15 03:36:15 lukem Exp $	*/
2 
3 /*-
4  * Copyright (c) 1996 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Adam Glass and Gordon W. Ross.
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>
40 __KERNEL_RCSID(0, "$NetBSD: if_le.c,v 1.46 2003/07/15 03:36:15 lukem Exp $");
41 
42 #include "opt_inet.h"
43 #include "bpfilter.h"
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/mbuf.h>
48 #include <sys/syslog.h>
49 #include <sys/socket.h>
50 #include <sys/device.h>
51 
52 #include <net/if.h>
53 #include <net/if_ether.h>
54 #include <net/if_media.h>
55 
56 #ifdef INET
57 #include <netinet/in.h>
58 #include <netinet/if_inarp.h>
59 #endif
60 
61 #include <machine/autoconf.h>
62 #include <machine/cpu.h>
63 #include <machine/dvma.h>
64 #include <machine/idprom.h>
65 
66 #include <dev/ic/lancereg.h>
67 #include <dev/ic/lancevar.h>
68 #include <dev/ic/am7990reg.h>
69 #include <dev/ic/am7990var.h>
70 
71 #define LE_MEMSIZE	0x4000	/* 16K */
72 
73 /*
74  * LANCE registers.
75  * The real stuff is in dev/ic/am7990reg.h
76  */
77 struct lereg1 {
78 	volatile u_int16_t	ler1_rdp;	/* data port */
79 	volatile u_int16_t	ler1_rap;	/* register select port */
80 };
81 
82 /*
83  * Ethernet software status per interface.
84  * The real stuff is in dev/ic/am7990var.h
85  */
86 struct	le_softc {
87 	struct	am7990_softc sc_am7990;	/* glue to MI code */
88 
89 	struct	lereg1 *sc_r1;		/* LANCE registers */
90 };
91 
92 static int	le_match __P((struct device *, struct cfdata *, void *));
93 static void	le_attach __P((struct device *, struct device *, void *));
94 
95 CFATTACH_DECL(le, sizeof(struct le_softc),
96     le_match, le_attach, NULL, NULL);
97 
98 #if defined(_KERNEL_OPT)
99 #include "opt_ddb.h"
100 #endif
101 
102 #ifdef DDB
103 #define	integrate
104 #define hide
105 #else
106 #define	integrate	static __inline
107 #define hide		static
108 #endif
109 
110 hide void lewrcsr __P((struct lance_softc *, u_int16_t, u_int16_t));
111 hide u_int16_t lerdcsr __P((struct lance_softc *, u_int16_t));
112 
113 hide void
114 lewrcsr(sc, port, val)
115 	struct lance_softc *sc;
116 	u_int16_t port, val;
117 {
118 	register struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
119 
120 	ler1->ler1_rap = port;
121 	ler1->ler1_rdp = val;
122 }
123 
124 hide u_int16_t
125 lerdcsr(sc, port)
126 	struct lance_softc *sc;
127 	u_int16_t port;
128 {
129 	register struct lereg1 *ler1 = ((struct le_softc *)sc)->sc_r1;
130 	u_int16_t val;
131 
132 	ler1->ler1_rap = port;
133 	val = ler1->ler1_rdp;
134 	return (val);
135 }
136 
137 int
138 le_match(parent, cf, aux)
139 	struct device *parent;
140 	struct cfdata *cf;
141 	void *aux;
142 {
143 	struct confargs *ca = aux;
144 
145 	/* Make sure there is something there... */
146 	if (bus_peek(ca->ca_bustype, ca->ca_paddr, 2) == -1)
147 		return (0);
148 
149 	/* Default interrupt priority. */
150 	if (ca->ca_intpri == -1)
151 		ca->ca_intpri = 3;
152 
153 	return (1);
154 }
155 
156 void
157 le_attach(parent, self, aux)
158 	struct device *parent, *self;
159 	void *aux;
160 {
161 	struct le_softc *lesc = (struct le_softc *)self;
162 	struct lance_softc *sc = &lesc->sc_am7990.lsc;
163 	struct confargs *ca = aux;
164 
165 	lesc->sc_r1 = bus_mapin(ca->ca_bustype,
166 	    ca->ca_paddr, sizeof(struct lereg1));
167 
168 	sc->sc_memsize = LE_MEMSIZE;
169 	sc->sc_mem = dvma_malloc(sc->sc_memsize);
170 	sc->sc_addr = dvma_kvtopa(sc->sc_mem, ca->ca_bustype);
171 #ifdef	_SUN3X_
172 	sc->sc_conf3 = LE_C3_BSWP | LE_C3_ACON | LE_C3_BCON;
173 #else
174 	sc->sc_conf3 = LE_C3_BSWP;
175 #endif
176 
177 	idprom_etheraddr(sc->sc_enaddr);
178 
179 	sc->sc_copytodesc = lance_copytobuf_contig;
180 	sc->sc_copyfromdesc = lance_copyfrombuf_contig;
181 	sc->sc_copytobuf = lance_copytobuf_contig;
182 	sc->sc_copyfrombuf = lance_copyfrombuf_contig;
183 	sc->sc_zerobuf = lance_zerobuf_contig;
184 
185 	sc->sc_rdcsr = lerdcsr;
186 	sc->sc_wrcsr = lewrcsr;
187 	sc->sc_hwinit = NULL;
188 
189 	am7990_config(&lesc->sc_am7990);
190 
191 	/* Install interrupt handler. */
192 	isr_add_autovect(am7990_intr, (void *)sc, ca->ca_intpri);
193 }
194