1 /* $NetBSD: mb86960var.h,v 1.36 2008/04/12 06:37:51 tsutsui Exp $ */
4 * All Rights Reserved, Copyright (C) Fujitsu Limited 1995
6 * This software may be used, modified, copied, distributed, and sold, in
7 * both source and binary form provided that the above copyright, these
8 * terms and the following disclaimer are retained. The name of the author
9 * and/or the contributor may not be used to endorse or promote products
10 * derived from this software without specific prior written permission.
12 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND THE CONTRIBUTOR ``AS IS'' AND
13 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
14 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
15 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR THE CONTRIBUTOR BE LIABLE
16 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
17 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
18 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION.
19 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
20 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
21 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * Portions copyright (C) 1993, David Greenman. This software may be used,
27 * modified, copied, distributed, and sold, in both source and binary form
28 * provided that the above copyright and these terms are retained. Under no
29 * circumstances is the author responsible for the proper functioning of this
30 * software, nor does the author assume any responsibility for damages
31 * incurred with its use.
35 * Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards.
36 * Contributed by M.S. <seki@sysrap.cs.fujitsu.co.jp>
38 * This version is intended to be a generic template for various
39 * MB86960A/MB86965A based Ethernet cards. It currently supports
40 * Fujitsu FMV-180 series (i.e., FMV-181 and FMV-182) and Allied-
41 * Telesis AT1700 series and RE2000 series. There are some
42 * unnecessary hooks embedded, which are primarily intended to support
43 * other types of Ethernet cards, but the author is not sure whether
54 * Default settings for fe driver specific options.
55 * They can be set in config file by "options" statements.
60 * 0: No debug at all. All debug specific codes are stripped off.
61 * 1: Silent. No debug messages are logged except emergent ones.
62 * 2: Brief. Lair events and/or important information are logged.
63 * 3: Detailed. Logs all information which *may* be useful for debugging.
64 * 4: Trace. All actions in the driver is logged. Super verbose.
71 * Delay padding of short transmission packets to minimum Ethernet size.
72 * This may or may not gain performance. An EXPERIMENTAL option.
74 #ifndef FE_DELAYED_PADDING
75 #define FE_DELAYED_PADDING 0
79 * Transmit just one packet per a "send" command to 86960.
80 * This option is intended for performance test. An EXPERIMENTAL option.
82 #ifndef FE_SINGLE_TRANSMISSION
83 #define FE_SINGLE_TRANSMISSION 0
87 * Device configuration flags.
91 #define FE_FLAGS_DLCR6_VALUE 0x007F
93 /* Force DLCR6 override. */
94 #define FE_FLAGS_OVERRIDE_DLCR6 0x0080
97 * Supported hardware (Ethernet card) types
98 * This information is currently used only for debugging
101 /* For cards which are successfully probed but not identified. */
104 /* Fujitsu FMV-180 series. */
112 /* Allied-Telesis AT1700 series and RE2000 series. */
119 /* PCMCIA by Fujitsu. */
125 * fe_softc: per line info and status
127 struct mb86960_softc
{
129 struct ethercom sc_ec
; /* ethernet common */
130 struct ifmedia sc_media
; /* supported media information */
132 bus_space_tag_t sc_bst
; /* bus space */
133 bus_space_handle_t sc_bsh
;
135 /* Set by probe() and not modified in later phases. */
136 uint32_t sc_flags
; /* controller quirks */
137 #define FE_FLAGS_MB86960 0x0001 /* DLCR7 is differnt on MB86960 */
138 #define FE_FLAGS_SBW_BYTE 0x0002 /* byte access mode for system bus */
139 #define FE_FLAGS_SRAM_150ns 0x0004 /* The board has slow SRAM */
141 uint8_t proto_dlcr4
; /* DLCR4 prototype. */
142 uint8_t proto_dlcr5
; /* DLCR5 prototype. */
143 uint8_t proto_dlcr6
; /* DLCR6 prototype. */
144 uint8_t proto_dlcr7
; /* DLCR7 prototype. */
145 uint8_t proto_bmpr13
; /* BMPR13 prototype. */
147 /* Vendor specific hooks. */
148 void (*init_card
)(struct mb86960_softc
*);
149 void (*stop_card
)(struct mb86960_softc
*);
151 /* Transmission buffer management. */
152 int txb_size
; /* total bytes in TX buffer */
153 int txb_free
; /* free bytes in TX buffer */
154 int txb_count
; /* number of packets in TX buffer */
155 int txb_sched
; /* number of scheduled packets */
156 int txb_padding
; /* number of delayed padding bytes */
158 /* Multicast address filter management. */
159 int filter_change
; /* MARs must be changed ASAP. */
160 uint8_t filter
[FE_FILTER_LEN
]; /* new filter value. */
162 uint8_t sc_enaddr
[ETHER_ADDR_LEN
];
165 rndsource_element_t rnd_source
;
168 uint32_t sc_stat
; /* driver status */
169 #define FE_STAT_ENABLED 0x0001 /* power enabled on interface */
170 #define FE_STAT_ATTACHED 0x0002 /* attach has succeeded */
172 int (*sc_enable
)(struct mb86960_softc
*);
173 void (*sc_disable
)(struct mb86960_softc
*);
175 int (*sc_mediachange
)(struct mb86960_softc
*);
176 void (*sc_mediastatus
)(struct mb86960_softc
*, struct ifmediareq
*);
180 * Fe driver specific constants which relate to 86960/86965.
183 /* Interrupt masks. */
184 #define FE_TMASK (FE_D2_COLL16 | FE_D2_TXDONE)
185 #define FE_RMASK (FE_D3_OVRFLO | FE_D3_CRCERR | \
186 FE_D3_ALGERR | FE_D3_SRTPKT | FE_D3_PKTRDY)
188 /* Maximum number of iterrations for a receive interrupt. */
189 #define FE_MAX_RECV_COUNT ((65536 - 2048 * 2) / 64)
190 /* Maximum size of SRAM is 65536,
191 * minimum size of transmission buffer in fe is 2x2KB,
192 * and minimum amount of received packet including headers
193 * added by the chip is 64 bytes.
194 * Hence FE_MAX_RECV_COUNT is the upper limit for number
195 * of packets in the receive buffer. */
197 void mb86960_attach(struct mb86960_softc
*, uint8_t *);
198 void mb86960_config(struct mb86960_softc
*, int *, int, int);
199 int mb86960_intr(void *);
200 int mb86960_enable(struct mb86960_softc
*);
201 void mb86960_disable(struct mb86960_softc
*);
202 int mb86960_activate(device_t
, enum devact
);
203 int mb86960_detach(struct mb86960_softc
*);
204 void mb86965_read_eeprom(bus_space_tag_t
, bus_space_handle_t
, uint8_t *);