1 /* $NetBSD: cs89x0.c,v 1.28 2009/09/22 16:44:08 tsutsui Exp $ */
4 * Copyright (c) 2004 Christopher Gilbert
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. The name of the company nor the name of the author may be used to
13 * endorse or promote products derived from this software without specific
14 * prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
20 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * Digital Equipment Corporation. All rights reserved.
33 * This software is furnished under license and may be used and
34 * copied only in accordance with the following terms and conditions.
35 * Subject to these conditions, you may download, copy, install,
36 * use, modify and distribute this software in source and/or binary
37 * form. No title or ownership is transferred hereby.
39 * 1) Any source code used, modified or distributed must reproduce
40 * and retain this copyright notice and list of conditions as
41 * they appear in the source file.
43 * 2) No right is granted to use any trade name, trademark, or logo of
44 * Digital Equipment Corporation. Neither the "Digital Equipment
45 * Corporation" name nor any trademark or logo of Digital Equipment
46 * Corporation may be used to endorse or promote products derived
47 * from this software without the prior written permission of
48 * Digital Equipment Corporation.
50 * 3) This software is provided "AS-IS" and any express or implied
51 * warranties, including but not limited to, any implied warranties
52 * of merchantability, fitness for a particular purpose, or
53 * non-infringement are disclaimed. In no event shall DIGITAL be
54 * liable for any damages whatsoever, and in particular, DIGITAL
55 * shall not be liable for special, indirect, consequential, or
56 * incidental damages or damages for lost profits, loss of
57 * revenue or loss of use, whether such damages arise in contract,
58 * negligence, tort, under statute, in equity, at law or otherwise,
59 * even if advised of the possibility of such damage.
66 ** Device Driver for the Crystal CS8900 ISA Ethernet Controller.
70 ** This module provides standard ethernet access for INET protocols
75 ** Peter Dettori SEA - Software Engineering.
81 ** MODIFICATION HISTORY (Digital):
83 ** Revision 1.27 1998/01/20 17:59:40 cgd
84 ** update for moved headers
86 ** Revision 1.26 1998/01/12 19:29:36 cgd
87 ** use arm32/isa versions of isadma code.
89 ** Revision 1.25 1997/12/12 01:35:27 cgd
90 ** convert to use new arp code (from Brini)
92 ** Revision 1.24 1997/12/10 22:31:56 cgd
93 ** trim some fat (get rid of ability to explicitly supply enet addr, since
94 ** it was never used and added a bunch of code which really doesn't belong in
95 ** an enet driver), and clean up slightly.
97 ** Revision 1.23 1997/10/06 16:42:12 cgd
100 ** Revision 1.22 1997/06/20 19:38:01 chaiken
101 ** fixes some smartcard problems
103 ** Revision 1.21 1997/06/10 02:56:20 grohn
104 ** Added call to ledNetActive
106 ** Revision 1.20 1997/06/05 00:47:06 dettori
107 ** Changed cs_process_rx_dma to reset and re-initialise the
108 ** ethernet chip when DMA gets out of sync, or mbufs
109 ** can't be allocated.
111 ** Revision 1.19 1997/06/03 03:09:58 dettori
112 ** Turn off sc_txbusy flag when a transmit underrun
115 ** Revision 1.18 1997/06/02 00:04:35 dettori
116 ** redefined the transmit table to get around the nfs_timer bug while we are
117 ** looking into it further.
119 ** Also changed interrupts from EDGE to LEVEL.
121 ** Revision 1.17 1997/05/27 23:31:01 dettori
122 ** Pulled out changes to DMAMODE defines.
124 ** Revision 1.16 1997/05/23 04:25:16 cgd
125 ** reformat log so it fits in 80cols
127 ** Revision 1.15 1997/05/23 04:22:18 cgd
128 ** remove the existing copyright notice (which Peter Dettori indicated
129 ** was incorrect, copied from an existing NetBSD file only so that the
130 ** file would have a copyright notice on it, and which he'd intended to
131 ** replace). Replace it with a Digital copyright notice, cloned from
132 ** ess.c. It's not really correct either (it indicates that the source
133 ** is Digital confidential!), but is better than nothing and more
134 ** correct than what was there before.
136 ** Revision 1.14 1997/05/23 04:12:50 cgd
137 ** use an adaptive transmit start algorithm: start by telling the chip
138 ** to start transmitting after 381 bytes have been fed to it. if that
139 ** gets transmit underruns, ramp down to 1021 bytes then "whole
140 ** packet." If successful at a given level for a while, try the next
141 ** more agressive level. This code doesn't ever try to start
142 ** transmitting after 5 bytes have been sent to the NIC, because
143 ** that underruns rather regularly. The back-off and ramp-up mechanism
144 ** could probably be tuned a little bit, but this works well enough to
145 ** support > 1MB/s transmit rates on a clear ethernet (which is about
146 ** 20-25% better than the driver had previously been getting).
148 ** Revision 1.13 1997/05/22 21:06:54 cgd
149 ** redo cs_copy_tx_frame() from scratch. It had a fatal flaw: it was blindly
150 ** casting from u_int8_t * to u_int16_t * without worrying about alignment
151 ** issues. This would cause bogus data to be spit out for mbufs with
152 ** misaligned data. For instance, it caused the following bits to appear
154 ** ... etBND 1S2C .SHA(K) R ...
155 ** 11112222333344445555
156 ** which should have appeared as:
157 ** ... NetBSD 1.2C (SHARK) ...
158 ** 11112222333344445555
159 ** Note the apparent 'rotate' of the bytes in the word, which was due to
160 ** incorrect unaligned accesses. This data corruption was the cause of
161 ** incoming telnet/rlogin hangs.
163 ** Revision 1.12 1997/05/22 01:55:32 cgd
164 ** reformat log so it fits in 80cols
166 ** Revision 1.11 1997/05/22 01:50:27 cgd
167 ** * enable input packet address checking in the BPF+IFF_PROMISCUOUS case,
168 ** so packets aimed at other hosts don't get sent to ether_input().
169 ** * Add a static const char *rcsid initialized with an RCS Id tag, so that
170 ** you can easily tell (`strings`) what version of the driver is in your
172 ** * get rid of ether_cmp(). It was inconsistently used, not necessarily
173 ** safe, and not really a performance win anyway. (It was only used when
174 ** setting up the multicast logical address filter, which is an
175 ** infrequent event. It could have been used in the IFF_PROMISCUOUS
176 ** address check above, but the benefit of it vs. memcmp would be
177 ** inconsequential, there.) Use memcmp() instead.
178 ** * restructure csStartOuput to avoid the following bugs in the case where
179 ** txWait was being set:
180 ** * it would accidentally drop the outgoing packet if told to wait
181 ** but the outgoing packet queue was empty.
182 ** * it would bpf_mtap() the outgoing packet multiple times (once for
183 ** each time it was told to wait), and would also recalculate
184 ** the length of the outgoing packet each time it was told to
186 ** While there, rename txWait to txLoop, since with the new structure of
187 ** the code, the latter name makes more sense.
189 ** Revision 1.10 1997/05/19 02:03:20 cgd
190 ** Set RX_CTL in cs_set_ladr_filt(), rather than cs_initChip(). cs_initChip()
191 ** is the only caller of cs_set_ladr_filt(), and always calls it, so this
192 ** ends up being logically the same. In cs_set_ladr_filt(), if IFF_PROMISC
193 ** is set, enable promiscuous mode (and set IFF_ALLMULTI), otherwise behave
196 ** Revision 1.9 1997/05/19 01:45:37 cgd
197 ** create a new function, cs_ether_input(), which does received-packet
198 ** BPF and ether_input processing. This code used to be in three places,
199 ** and centralizing it will make adding IFF_PROMISC support much easier.
200 ** Also, in cs_copy_tx_frame(), put it some (currently disabled) code to
201 ** do copies with bus_space_write_region_2(). It's more correct, and
202 ** potentially more efficient. That function needs to be gutted (to
203 ** deal properly with alignment issues, which it currently does wrong),
204 ** however, and the change doesn't gain much, so there's no point in
207 ** Revision 1.8 1997/05/19 01:17:10 cgd
208 ** fix a comment re: the setting of the TxConfig register. Clean up
209 ** interface counter maintenance (make it use standard idiom).
214 #include <sys/cdefs.h>
215 __KERNEL_RCSID(0, "$NetBSD: cs89x0.c,v 1.28 2009/09/22 16:44:08 tsutsui Exp $");
217 #include "opt_inet.h"
219 #include <sys/param.h>
220 #include <sys/systm.h>
221 #include <sys/mbuf.h>
222 #include <sys/syslog.h>
223 #include <sys/socket.h>
224 #include <sys/device.h>
225 #include <sys/malloc.h>
226 #include <sys/ioctl.h>
227 #include <sys/errno.h>
235 #include <net/if_ether.h>
236 #include <net/if_media.h>
238 #include <netinet/in.h>
239 #include <netinet/if_inarp.h>
242 #include "bpfilter.h"
245 #include <net/bpfdesc.h>
248 #include <uvm/uvm_extern.h>
251 #include <sys/intr.h>
253 #include <dev/ic/cs89x0reg.h>
254 #include <dev/ic/cs89x0var.h>
257 #include <shark/shark/sequoia.h>
263 #define CS_OUTPUT_LOOP_MAX 100 /* max times round notorious tx loop */
266 * FUNCTION PROTOTYPES
268 static void cs_get_default_media(struct cs_softc
*);
269 static int cs_get_params(struct cs_softc
*);
270 static int cs_get_enaddr(struct cs_softc
*);
271 static int cs_reset_chip(struct cs_softc
*);
272 static void cs_reset(struct cs_softc
*);
273 static int cs_ioctl(struct ifnet
*, u_long
, void *);
274 static void cs_initChip(struct cs_softc
*);
275 static void cs_buffer_event(struct cs_softc
*, u_int16_t
);
276 static void cs_transmit_event(struct cs_softc
*, u_int16_t
);
277 static void cs_receive_event(struct cs_softc
*, u_int16_t
);
278 static void cs_process_receive(struct cs_softc
*);
279 static void cs_process_rx_early(struct cs_softc
*);
280 static void cs_start_output(struct ifnet
*);
281 static void cs_copy_tx_frame(struct cs_softc
*, struct mbuf
*);
282 static void cs_set_ladr_filt(struct cs_softc
*, struct ethercom
*);
283 static u_int16_t
cs_hash_index(char *);
284 static void cs_counter_event(struct cs_softc
*, u_int16_t
);
286 static int cs_mediachange(struct ifnet
*);
287 static void cs_mediastatus(struct ifnet
*, struct ifmediareq
*);
289 static bool cs_shutdown(device_t
, int);
290 static int cs_enable(struct cs_softc
*);
291 static void cs_disable(struct cs_softc
*);
292 static void cs_stop(struct ifnet
*, int);
293 static int cs_scan_eeprom(struct cs_softc
*);
294 static int cs_read_pktpg_from_eeprom(struct cs_softc
*, int, u_int16_t
*);
298 * GLOBAL DECLARATIONS
304 * To get better performance, we tell the chip to start packet
305 * transmission before the whole packet is copied to the chip.
306 * However, this can fail under load. When it fails, we back off
307 * to a safer setting for a little while.
309 * txcmd is the value of txcmd used to indicate when to start transmission.
310 * better is the next 'better' state in the table.
311 * better_count is the number of output packets before transition to the
313 * worse is the next 'worse' state in the table.
315 * Transition to the next worse state happens automatically when a
316 * transmittion underrun occurs.
318 struct cs_xmit_early
{
323 } cs_xmit_early_table
[3] = {
324 { TX_CMD_START_381
, 0, INT_MAX
, 1, },
325 { TX_CMD_START_1021
, 0, 50000, 2, },
326 { TX_CMD_START_ALL
, 1, 5000, 2, },
329 int cs_default_media
[] = {
333 IFM_ETHER
|IFM_10_T
|IFM_FDX
,
335 int cs_default_nmedia
= sizeof(cs_default_media
) / sizeof(cs_default_media
[0]);
338 cs_attach(struct cs_softc
*sc
, u_int8_t
*enaddr
, int *media
,
339 int nmedia
, int defmedia
)
341 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
342 const char *chipname
, *medname
;
346 /* Start out in IO mode */
347 sc
->sc_memorymode
= FALSE
;
349 /* make sure we're right */
350 for (i
= 0; i
< 10000; i
++) {
351 reg
= CS_READ_PACKET_PAGE(sc
, PKTPG_EISA_NUM
);
352 if (reg
== EISA_NUM_CRYSTAL
) {
357 aprint_error_dev(sc
->sc_dev
, "wrong id(0x%x)\n", reg
);
358 return 1; /* XXX should panic? */
361 reg
= CS_READ_PACKET_PAGE(sc
, PKTPG_PRODUCT_ID
);
362 sc
->sc_prodid
= reg
& PROD_ID_MASK
;
363 sc
->sc_prodrev
= (reg
& PROD_REV_MASK
) >> 8;
365 switch (sc
->sc_prodid
) {
372 case PROD_ID_CS8920M
:
373 chipname
= "CS8920M";
376 panic("cs_attach: impossible");
380 * the first thing to do is check that the mbuf cluster size is
381 * greater than the MTU for an ethernet frame. The code depends on
382 * this and to port this to a OS where this was not the case would
383 * not be straightforward.
385 * we need 1 byte spare because our
386 * packet read loop can overrun.
387 * and we may need pad bytes to align ip header.
389 if (MCLBYTES
< ETHER_MAX_LEN
+ 1 +
390 ALIGN(sizeof(struct ether_header
)) - sizeof(struct ether_header
)) {
391 printf("%s: MCLBYTES too small for Ethernet frame\n",
392 device_xname(sc
->sc_dev
));
396 /* Start out not transmitting */
397 sc
->sc_txbusy
= FALSE
;
399 /* Set up early transmit threshhold */
401 sc
->sc_xe_togo
= cs_xmit_early_table
[sc
->sc_xe_ent
].better_count
;
403 /* Initialize ifnet structure. */
404 strlcpy(ifp
->if_xname
, device_xname(sc
->sc_dev
), IFNAMSIZ
);
406 ifp
->if_start
= cs_start_output
;
407 ifp
->if_init
= cs_init
;
408 ifp
->if_ioctl
= cs_ioctl
;
409 ifp
->if_stop
= cs_stop
;
410 ifp
->if_watchdog
= NULL
; /* no watchdog at this stage */
411 ifp
->if_flags
= IFF_SIMPLEX
| IFF_NOTRAILERS
|
412 IFF_BROADCAST
| IFF_MULTICAST
;
413 IFQ_SET_READY(&ifp
->if_snd
);
415 /* Initialize ifmedia structures. */
416 ifmedia_init(&sc
->sc_media
, 0, cs_mediachange
, cs_mediastatus
);
419 for (i
= 0; i
< nmedia
; i
++)
420 ifmedia_add(&sc
->sc_media
, media
[i
], 0, NULL
);
421 ifmedia_set(&sc
->sc_media
, defmedia
);
423 for (i
= 0; i
< cs_default_nmedia
; i
++)
424 ifmedia_add(&sc
->sc_media
, cs_default_media
[i
],
426 cs_get_default_media(sc
);
429 if (sc
->sc_cfgflags
& CFGFLG_PARSE_EEPROM
) {
430 if (cs_scan_eeprom(sc
) == CS_ERROR
) {
431 /* failed to scan the eeprom, pretend there isn't an eeprom */
432 aprint_error_dev(sc
->sc_dev
, "unable to scan EEPROM\n");
433 sc
->sc_cfgflags
|= CFGFLG_NOT_EEPROM
;
437 if ((sc
->sc_cfgflags
& CFGFLG_NOT_EEPROM
) == 0) {
438 /* Get parameters from the EEPROM */
439 if (cs_get_params(sc
) == CS_ERROR
) {
440 aprint_error_dev(sc
->sc_dev
,
441 "unable to get settings from EEPROM\n");
447 memcpy(sc
->sc_enaddr
, enaddr
, sizeof(sc
->sc_enaddr
));
448 else if ((sc
->sc_cfgflags
& CFGFLG_NOT_EEPROM
) == 0) {
449 /* Get and store the Ethernet address */
450 if (cs_get_enaddr(sc
) == CS_ERROR
) {
451 aprint_error_dev(sc
->sc_dev
,
452 "unable to read Ethernet address\n");
460 for (j
= 0; j
< 6; j
+= 2) {
461 v
= CS_READ_PACKET_PAGE(sc
, PKTPG_IND_ADDR
+ j
);
462 sc
->sc_enaddr
[j
+ 0] = v
;
463 sc
->sc_enaddr
[j
+ 1] = v
>> 8;
466 printf("%s: no Ethernet address!\n", device_xname(sc
->sc_dev
));
471 switch (IFM_SUBTYPE(sc
->sc_media
.ifm_cur
->ifm_media
)) {
479 if (sc
->sc_media
.ifm_cur
->ifm_media
& IFM_FDX
)
480 medname
= "UTP <full-duplex>";
485 panic("cs_attach: impossible");
487 printf("%s: %s rev. %c, address %s, media %s\n",
488 device_xname(sc
->sc_dev
),
489 chipname
, sc
->sc_prodrev
+ 'A', ether_sprintf(sc
->sc_enaddr
),
492 if (sc
->sc_dma_attach
)
493 (*sc
->sc_dma_attach
)(sc
);
495 /* Attach the interface. */
497 ether_ifattach(ifp
, sc
->sc_enaddr
);
500 rnd_attach_source(&sc
->rnd_source
, device_xname(sc
->sc_dev
),
503 sc
->sc_cfgflags
|= CFGFLG_ATTACHED
;
505 if (pmf_device_register1(sc
->sc_dev
, NULL
, NULL
, cs_shutdown
))
506 pmf_class_network_register(sc
->sc_dev
, ifp
);
508 aprint_error_dev(sc
->sc_dev
,
509 "couldn't establish power handler\n");
512 if (cs_reset_chip(sc
) == CS_ERROR
) {
513 aprint_error_dev(sc
->sc_dev
, "reset failed\n");
522 cs_detach(struct cs_softc
*sc
)
524 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
526 if (sc
->sc_cfgflags
& CFGFLG_ATTACHED
) {
528 rnd_detach_source(&sc
->rnd_source
);
532 sc
->sc_cfgflags
&= ~CFGFLG_ATTACHED
;
539 if (sc
->sc_cfgflags
& CFGFLG_DMA_MODE
) {
540 isa_dmamem_unmap(sc
->sc_ic
, sc
->sc_drq
, sc
->sc_dmabase
, sc
->sc_dmasize
);
541 isa_dmamem_free(sc
->sc_ic
, sc
->sc_drq
, sc
->sc_dmaaddr
, sc
->sc_dmasize
);
542 isa_dmamap_destroy(sc
->sc_ic
, sc
->sc_drq
);
543 sc
->sc_cfgflags
&= ~CFGFLG_DMA_MODE
;
547 pmf_device_deregister(sc
->sc_dev
);
553 cs_shutdown(device_t self
, int howto
)
557 sc
= device_private(self
);
564 cs_get_default_media(struct cs_softc
*sc
)
566 u_int16_t adp_cfg
, xmit_ctl
;
568 if (cs_verify_eeprom(sc
) == CS_ERROR
) {
569 aprint_error_dev(sc
->sc_dev
,
570 "cs_get_default_media: EEPROM missing or bad\n");
574 if (cs_read_eeprom(sc
, EEPROM_ADPTR_CFG
, &adp_cfg
) == CS_ERROR
) {
575 aprint_error_dev(sc
->sc_dev
,
576 "unable to read adapter config from EEPROM\n");
580 if (cs_read_eeprom(sc
, EEPROM_XMIT_CTL
, &xmit_ctl
) == CS_ERROR
) {
581 aprint_error_dev(sc
->sc_dev
,
582 "unable to read transmit control from EEPROM\n");
586 switch (adp_cfg
& ADPTR_CFG_MEDIA
) {
588 ifmedia_set(&sc
->sc_media
, IFM_ETHER
|IFM_10_5
);
590 case ADPTR_CFG_10BASE2
:
591 ifmedia_set(&sc
->sc_media
, IFM_ETHER
|IFM_10_2
);
593 case ADPTR_CFG_10BASET
:
595 if (xmit_ctl
& XMIT_CTL_FDX
)
596 ifmedia_set(&sc
->sc_media
, IFM_ETHER
|IFM_10_T
|IFM_FDX
);
598 ifmedia_set(&sc
->sc_media
, IFM_ETHER
|IFM_10_T
);
604 aprint_error_dev(sc
->sc_dev
,
605 "WARNING: default media setting may be inaccurate\n");
606 /* XXX Arbitrary... */
607 ifmedia_set(&sc
->sc_media
, IFM_ETHER
|IFM_10_T
);
613 * Attempt to take a complete copy of the eeprom into main memory.
614 * this will allow faster parsing of the eeprom data.
616 * Only tested against a 8920M's eeprom, but the data sheet for the
617 * 8920A indicates that is uses the same layout.
620 cs_scan_eeprom(struct cs_softc
*sc
)
625 u_int8_t checksum
= 0;
627 if (cs_verify_eeprom(sc
) == CS_ERROR
) {
628 aprint_error_dev(sc
->sc_dev
,
629 "cs_scan_params: EEPROM missing or bad\n");
634 * read the 0th word from the eeprom, it will tell us the length
635 * and if the eeprom is valid
637 cs_read_eeprom(sc
, 0, &result
);
639 /* check the eeprom signature */
640 if ((result
& 0xE000) != 0xA000) {
646 * take the eeprom size (note the read value doesn't include the header
649 eeprom_size
= (result
& 0xff) + 2;
651 sc
->eeprom_data
= malloc(eeprom_size
, M_DEVBUF
, M_WAITOK
);
652 if (sc
->eeprom_data
== NULL
) {
653 /* no memory, treat this as if there's no eeprom */
657 sc
->eeprom_size
= eeprom_size
;
659 /* read the eeprom into the buffer, also calculate the checksum */
660 for (i
= 0; i
< (eeprom_size
>> 1); i
++) {
661 cs_read_eeprom(sc
, i
, &(sc
->eeprom_data
[i
]));
662 checksum
+= (sc
->eeprom_data
[i
] & 0xff00) >> 8;
663 checksum
+= (sc
->eeprom_data
[i
] & 0x00ff);
667 * validate checksum calculation, the sum of all the bytes should be 0,
668 * as the high byte of the last word is the 2's complement of the
672 aprint_error_dev(sc
->sc_dev
, "eeprom checksum failure\n");
680 cs_read_pktpg_from_eeprom(struct cs_softc
*sc
, int pktpg
, u_int16_t
*pValue
)
684 /* Check that we have eeprom data */
685 if ((sc
->eeprom_data
== NULL
) || (sc
->eeprom_size
< 2))
689 * We only want to read the data words, the last word contains the
692 maxword
= (sc
->eeprom_size
- 2) >> 1;
694 /* start 1 word in, as the first word is the length and signature */
697 while ( x
< (maxword
)) {
703 /* read in the group header word */
704 header
= sc
->eeprom_data
[x
];
705 x
++; /* skip group header */
708 * size of group in words is in the top 4 bits, note that it
709 * is one less than the number of words
711 group_size
= header
& 0xF000;
714 * CS8900 Data sheet says this should be 0x01ff,
715 * but my cs8920 eeprom has higher offsets,
716 * perhaps the 8920 allows higher offsets, otherwise
717 * it's writing to places that it shouldn't
719 /* work out the offsets this group covers */
720 offset
= header
& 0x0FFF;
721 offset_max
= offset
+ (group_size
<< 1);
723 /* check if the pkgpg we're after is in this group */
724 if ((offset
<= pktpg
) && (pktpg
<= offset_max
)) {
725 /* the pkgpg value we want is in here */
728 eeprom_location
= ((pktpg
- offset
) >> 1) ;
730 *pValue
= sc
->eeprom_data
[x
+ eeprom_location
];
733 /* skip this group (+ 1 for first entry) */
739 * if we've fallen out here then we don't have a value in the EEPROM
740 * for this pktpg so return an error
746 cs_get_params(struct cs_softc
*sc
)
749 u_int16_t adapterConfig
;
751 if (cs_verify_eeprom(sc
) == CS_ERROR
) {
752 aprint_error_dev(sc
->sc_dev
,
753 "cs_get_params: EEPROM missing or bad\n");
757 if (sc
->sc_cfgflags
& CFGFLG_PARSE_EEPROM
) {
758 /* Get ISA configuration from the EEPROM */
759 if (cs_read_pktpg_from_eeprom(sc
, PKTPG_BUS_CTL
, &isaConfig
)
761 /* eeprom doesn't have this value, use data sheet default */
765 /* Get adapter configuration from the EEPROM */
766 if (cs_read_pktpg_from_eeprom(sc
, PKTPG_SELF_CTL
, &adapterConfig
)
768 /* eeprom doesn't have this value, use data sheet default */
769 adapterConfig
= 0x0015;
772 /* Copy the USE_SA flag */
773 if (isaConfig
& BUS_CTL_USE_SA
)
774 sc
->sc_cfgflags
|= CFGFLG_USE_SA
;
776 /* Copy the IO Channel Ready flag */
777 if (isaConfig
& BUS_CTL_IOCHRDY
)
778 sc
->sc_cfgflags
|= CFGFLG_IOCHRDY
;
780 /* Copy the DC/DC Polarity flag */
781 if (adapterConfig
& SELF_CTL_HCB1
)
782 sc
->sc_cfgflags
|= CFGFLG_DCDC_POL
;
784 /* Get ISA configuration from the EEPROM */
785 if (cs_read_eeprom(sc
, EEPROM_ISA_CFG
, &isaConfig
) == CS_ERROR
)
788 /* Get adapter configuration from the EEPROM */
789 if (cs_read_eeprom(sc
, EEPROM_ADPTR_CFG
, &adapterConfig
) == CS_ERROR
)
792 /* Copy the USE_SA flag */
793 if (isaConfig
& ISA_CFG_USE_SA
)
794 sc
->sc_cfgflags
|= CFGFLG_USE_SA
;
796 /* Copy the IO Channel Ready flag */
797 if (isaConfig
& ISA_CFG_IOCHRDY
)
798 sc
->sc_cfgflags
|= CFGFLG_IOCHRDY
;
800 /* Copy the DC/DC Polarity flag */
801 if (adapterConfig
& ADPTR_CFG_DCDC_POL
)
802 sc
->sc_cfgflags
|= CFGFLG_DCDC_POL
;
807 aprint_error_dev(sc
->sc_dev
,
808 "cs_get_params: unable to read from EEPROM\n");
813 cs_get_enaddr(struct cs_softc
*sc
)
815 uint16_t myea
[ETHER_ADDR_LEN
/ sizeof(uint16_t)];
818 if (cs_verify_eeprom(sc
) == CS_ERROR
) {
819 aprint_error_dev(sc
->sc_dev
,
820 "cs_get_enaddr: EEPROM missing or bad\n");
824 /* Get Ethernet address from the EEPROM */
825 if (sc
->sc_cfgflags
& CFGFLG_PARSE_EEPROM
) {
826 if (cs_read_pktpg_from_eeprom(sc
, PKTPG_IND_ADDR
, &myea
[0])
829 if (cs_read_pktpg_from_eeprom(sc
, PKTPG_IND_ADDR
+ 2, &myea
[1])
832 if (cs_read_pktpg_from_eeprom(sc
, PKTPG_IND_ADDR
+ 4, &myea
[2])
836 if (cs_read_eeprom(sc
, EEPROM_IND_ADDR_H
, &myea
[0]) == CS_ERROR
)
838 if (cs_read_eeprom(sc
, EEPROM_IND_ADDR_M
, &myea
[1]) == CS_ERROR
)
840 if (cs_read_eeprom(sc
, EEPROM_IND_ADDR_L
, &myea
[2]) == CS_ERROR
)
844 for (i
= 0; i
< __arraycount(myea
); i
++) {
845 sc
->sc_enaddr
[i
* 2 + 0] = myea
[i
];
846 sc
->sc_enaddr
[i
* 2 + 1] = myea
[i
] >> 8;
852 aprint_error_dev(sc
->sc_dev
,
853 "cs_get_enaddr: unable to read from EEPROM\n");
858 cs_reset_chip(struct cs_softc
*sc
)
863 /* Disable interrupts at the CPU so reset command is atomic */
867 * We are now resetting the chip
869 * A spurious interrupt is generated by the chip when it is reset. This
870 * variable informs the interrupt handler to ignore this interrupt.
872 sc
->sc_resetting
= TRUE
;
874 /* Issue a reset command to the chip */
875 CS_WRITE_PACKET_PAGE(sc
, PKTPG_SELF_CTL
, SELF_CTL_RESET
);
877 /* Re-enable interrupts at the CPU */
880 /* The chip is always in IO mode after a reset */
881 sc
->sc_memorymode
= FALSE
;
883 /* If transmission was in progress, it is not now */
884 sc
->sc_txbusy
= FALSE
;
887 * there was a delay(125); here, but it seems uneccesary 125 usec is
888 * 1/8000 of a second, not 1/8 of a second. the data sheet advises
889 * 1/10 of a second here, but the SI_BUSY and INIT_DONE loops below
890 * should be sufficient.
893 /* Transition SBHE to switch chip from 8-bit to 16-bit */
894 IO_READ_1(sc
, PORT_PKTPG_PTR
+ 0);
895 IO_READ_1(sc
, PORT_PKTPG_PTR
+ 1);
896 IO_READ_1(sc
, PORT_PKTPG_PTR
+ 0);
897 IO_READ_1(sc
, PORT_PKTPG_PTR
+ 1);
899 /* Wait until the EEPROM is not busy */
900 for (x
= 0; x
< MAXLOOP
; x
++) {
901 if (!(CS_READ_PACKET_PAGE(sc
, PKTPG_SELF_ST
) & SELF_ST_SI_BUSY
))
908 /* Wait until initialization is done */
909 for (x
= 0; x
< MAXLOOP
; x
++) {
910 if (CS_READ_PACKET_PAGE(sc
, PKTPG_SELF_ST
) & SELF_ST_INIT_DONE
)
917 /* Reset is no longer in progress */
918 sc
->sc_resetting
= FALSE
;
924 cs_verify_eeprom(struct cs_softc
*sc
)
926 u_int16_t self_status
;
928 /* Verify that the EEPROM is present and OK */
929 self_status
= CS_READ_PACKET_PAGE_IO(sc
, PKTPG_SELF_ST
);
930 if (((self_status
& SELF_ST_EEP_PRES
) &&
931 (self_status
& SELF_ST_EEP_OK
)) == 0)
938 cs_read_eeprom(struct cs_softc
*sc
, int offset
, u_int16_t
*pValue
)
942 /* Ensure that the EEPROM is not busy */
943 for (x
= 0; x
< MAXLOOP
; x
++) {
944 if (!(CS_READ_PACKET_PAGE_IO(sc
, PKTPG_SELF_ST
) &
952 /* Issue the command to read the offset within the EEPROM */
953 CS_WRITE_PACKET_PAGE_IO(sc
, PKTPG_EEPROM_CMD
,
954 offset
| EEPROM_CMD_READ
);
956 /* Wait until the command is completed */
957 for (x
= 0; x
< MAXLOOP
; x
++) {
958 if (!(CS_READ_PACKET_PAGE_IO(sc
, PKTPG_SELF_ST
) &
966 /* Get the EEPROM data from the EEPROM Data register */
967 *pValue
= CS_READ_PACKET_PAGE_IO(sc
, PKTPG_EEPROM_DATA
);
973 cs_initChip(struct cs_softc
*sc
)
980 int media
= IFM_SUBTYPE(sc
->sc_media
.ifm_cur
->ifm_media
);
982 /* Disable reception and transmission of frames */
983 CS_WRITE_PACKET_PAGE(sc
, PKTPG_LINE_CTL
,
984 CS_READ_PACKET_PAGE(sc
, PKTPG_LINE_CTL
) &
985 ~LINE_CTL_RX_ON
& ~LINE_CTL_TX_ON
);
987 /* Disable interrupt at the chip */
988 CS_WRITE_PACKET_PAGE(sc
, PKTPG_BUS_CTL
,
989 CS_READ_PACKET_PAGE(sc
, PKTPG_BUS_CTL
) & ~BUS_CTL_INT_ENBL
);
991 /* If IOCHRDY is enabled then clear the bit in the busCtl register */
992 busCtl
= CS_READ_PACKET_PAGE(sc
, PKTPG_BUS_CTL
);
993 if (sc
->sc_cfgflags
& CFGFLG_IOCHRDY
) {
994 CS_WRITE_PACKET_PAGE(sc
, PKTPG_BUS_CTL
,
995 busCtl
& ~BUS_CTL_IOCHRDY
);
997 CS_WRITE_PACKET_PAGE(sc
, PKTPG_BUS_CTL
,
998 busCtl
| BUS_CTL_IOCHRDY
);
1001 /* Set the Line Control register to match the media type */
1002 if (media
== IFM_10_T
)
1003 CS_WRITE_PACKET_PAGE(sc
, PKTPG_LINE_CTL
, LINE_CTL_10BASET
);
1005 CS_WRITE_PACKET_PAGE(sc
, PKTPG_LINE_CTL
, LINE_CTL_AUI_ONLY
);
1008 * Set the BSTATUS/HC1 pin to be used as HC1. HC1 is used to
1009 * enable the DC/DC converter
1011 selfCtl
= SELF_CTL_HC1E
;
1013 /* If the media type is 10Base2 */
1014 if (media
== IFM_10_2
) {
1016 * Enable the DC/DC converter if it has a low enable.
1018 if ((sc
->sc_cfgflags
& CFGFLG_DCDC_POL
) == 0)
1020 * Set the HCB1 bit, which causes the HC1 pin to go
1023 selfCtl
|= SELF_CTL_HCB1
;
1024 } else { /* Media type is 10BaseT or AUI */
1026 * Disable the DC/DC converter if it has a high enable.
1028 if ((sc
->sc_cfgflags
& CFGFLG_DCDC_POL
) != 0) {
1030 * Set the HCB1 bit, which causes the HC1 pin to go
1033 selfCtl
|= SELF_CTL_HCB1
;
1036 CS_WRITE_PACKET_PAGE(sc
, PKTPG_SELF_CTL
, selfCtl
);
1038 /* enable normal link pulse */
1039 if (sc
->sc_prodid
== PROD_ID_CS8920
|| sc
->sc_prodid
== PROD_ID_CS8920M
)
1040 CS_WRITE_PACKET_PAGE(sc
, PKTPG_AUTONEG_CTL
, AUTOCTL_NLP_ENABLE
);
1042 /* Enable full-duplex, if appropriate */
1043 if (sc
->sc_media
.ifm_cur
->ifm_media
& IFM_FDX
)
1044 CS_WRITE_PACKET_PAGE(sc
, PKTPG_TEST_CTL
, TEST_CTL_FDX
);
1046 /* RX_CTL set in cs_set_ladr_filt(), below */
1048 /* enable all transmission interrupts */
1049 CS_WRITE_PACKET_PAGE(sc
, PKTPG_TX_CFG
, TX_CFG_ALL_IE
);
1051 /* Accept all receive interrupts */
1052 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CFG
, RX_CFG_ALL_IE
);
1055 * Configure Operational Modes
1057 * I have turned off the BUF_CFG_RX_MISS_IE, to speed things up, this is
1058 * a better way to do it because the card has a counter which can be
1059 * read to update the RX_MISS counter. This saves many interrupts.
1061 * I have turned on the tx and rx overflow interrupts to counter using
1062 * the receive miss interrupt. This is a better estimate of errors
1063 * and requires lower system overhead.
1065 CS_WRITE_PACKET_PAGE(sc
, PKTPG_BUF_CFG
, BUF_CFG_TX_UNDR_IE
|
1068 if (sc
->sc_dma_chipinit
)
1069 (*sc
->sc_dma_chipinit
)(sc
);
1071 /* If memory mode is enabled */
1072 if (sc
->sc_cfgflags
& CFGFLG_MEM_MODE
) {
1073 /* If external logic is present for address decoding */
1074 if (CS_READ_PACKET_PAGE(sc
, PKTPG_SELF_ST
) & SELF_ST_EL_PRES
) {
1076 * Program the external logic to decode address bits
1079 CS_WRITE_PACKET_PAGE(sc
, PKTPG_EEPROM_CMD
,
1080 ((sc
->sc_pktpgaddr
& 0xffffff) >> 20) |
1085 * Write the packet page base physical address to the memory
1088 CS_WRITE_PACKET_PAGE(sc
, PKTPG_MEM_BASE
+ 0,
1089 sc
->sc_pktpgaddr
& 0xFFFF);
1090 CS_WRITE_PACKET_PAGE(sc
, PKTPG_MEM_BASE
+ 2,
1091 sc
->sc_pktpgaddr
>> 16);
1092 busCtl
= BUS_CTL_MEM_MODE
;
1094 /* tell the chip to read the addresses off the SA pins */
1095 if (sc
->sc_cfgflags
& CFGFLG_USE_SA
) {
1096 busCtl
|= BUS_CTL_USE_SA
;
1098 CS_WRITE_PACKET_PAGE(sc
, PKTPG_BUS_CTL
,
1099 CS_READ_PACKET_PAGE(sc
, PKTPG_BUS_CTL
) | busCtl
);
1101 /* We are in memory mode now! */
1102 sc
->sc_memorymode
= TRUE
;
1105 * wait here (10ms) for the chip to swap over. this is the
1106 * maximum time that this could take.
1110 /* Verify that we can read from the chip */
1111 isaId
= CS_READ_PACKET_PAGE(sc
, PKTPG_EISA_NUM
);
1114 * As a last minute sanity check before actually using mapped
1115 * memory we verify that we can read the isa number from the
1116 * chip in memory mode.
1118 if (isaId
!= EISA_NUM_CRYSTAL
) {
1119 aprint_error_dev(sc
->sc_dev
,
1120 "failed to enable memory mode\n");
1121 sc
->sc_memorymode
= FALSE
;
1124 * we are in memory mode so if we aren't using DMA,
1125 * then program the chip to interrupt early.
1127 if ((sc
->sc_cfgflags
& CFGFLG_DMA_MODE
) == 0) {
1128 CS_WRITE_PACKET_PAGE(sc
, PKTPG_BUF_CFG
,
1129 BUF_CFG_RX_DEST_IE
|
1130 BUF_CFG_RX_MISS_OVER_IE
|
1131 BUF_CFG_TX_COL_OVER_IE
);
1137 /* Put Ethernet address into the Individual Address register */
1138 for (i
= 0; i
< 6; i
+= 2) {
1139 v
= sc
->sc_enaddr
[i
+ 0] | (sc
->sc_enaddr
[i
+ 1]) << 8;
1140 CS_WRITE_PACKET_PAGE(sc
, PKTPG_IND_ADDR
+ i
, v
);
1143 if (sc
->sc_irq
!= -1) {
1144 /* Set the interrupt level in the chip */
1145 if (sc
->sc_prodid
== PROD_ID_CS8900
) {
1146 if (sc
->sc_irq
== 5) {
1147 CS_WRITE_PACKET_PAGE(sc
, PKTPG_INT_NUM
, 3);
1149 CS_WRITE_PACKET_PAGE(sc
, PKTPG_INT_NUM
, (sc
->sc_irq
) - 10);
1153 CS_WRITE_PACKET_PAGE(sc
, PKTPG_8920_INT_NUM
, sc
->sc_irq
);
1157 /* write the multicast mask to the address filter register */
1158 cs_set_ladr_filt(sc
, &sc
->sc_ethercom
);
1160 /* Enable reception and transmission of frames */
1161 CS_WRITE_PACKET_PAGE(sc
, PKTPG_LINE_CTL
,
1162 CS_READ_PACKET_PAGE(sc
, PKTPG_LINE_CTL
) |
1163 LINE_CTL_RX_ON
| LINE_CTL_TX_ON
);
1165 /* Enable interrupt at the chip */
1166 CS_WRITE_PACKET_PAGE(sc
, PKTPG_BUS_CTL
,
1167 CS_READ_PACKET_PAGE(sc
, PKTPG_BUS_CTL
) | BUS_CTL_INT_ENBL
);
1171 cs_init(struct ifnet
*ifp
)
1175 struct cs_softc
*sc
= ifp
->if_softc
;
1182 intState
= splnet();
1185 /* Mark the interface as down */
1186 sc
->sc_ethercom
.ec_if
.if_flags
&= ~(IFF_UP
| IFF_RUNNING
);
1190 /* Enable debugging */
1191 sc
->sc_ethercom
.ec_if
.if_flags
|= IFF_DEBUG
;
1194 /* Reset the chip */
1195 if ((error
= cs_reset_chip(sc
)) == CS_OK
) {
1196 /* Initialize the chip */
1199 /* Mark the interface as running */
1200 sc
->sc_ethercom
.ec_if
.if_flags
|= IFF_RUNNING
;
1201 sc
->sc_ethercom
.ec_if
.if_flags
&= ~IFF_OACTIVE
;
1202 sc
->sc_ethercom
.ec_if
.if_timer
= 0;
1204 /* Assume we have carrier until we are told otherwise. */
1207 aprint_error_dev(sc
->sc_dev
, "unable to reset chip\n");
1218 cs_set_ladr_filt(struct cs_softc
*sc
, struct ethercom
*ec
)
1220 struct ifnet
*ifp
= &ec
->ec_if
;
1221 struct ether_multi
*enm
;
1222 struct ether_multistep step
;
1224 u_int16_t port
, mask
, index
;
1227 * Set up multicast address filter by passing all multicast addresses
1228 * through a crc generator, and then using the high order 6 bits as an
1229 * index into the 64 bit logical address filter. The high order bit
1230 * selects the word, while the rest of the bits select the bit within
1233 if (ifp
->if_flags
& IFF_PROMISC
) {
1234 /* accept all valid frames. */
1235 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CTL
,
1236 RX_CTL_PROMISC_A
| RX_CTL_RX_OK_A
|
1237 RX_CTL_IND_A
| RX_CTL_BCAST_A
| RX_CTL_MCAST_A
);
1238 ifp
->if_flags
|= IFF_ALLMULTI
;
1243 * accept frames if a. crc valid, b. individual address match c.
1244 * broadcast address,and d. multicast addresses matched in the hash
1247 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CTL
,
1248 RX_CTL_RX_OK_A
| RX_CTL_IND_A
| RX_CTL_BCAST_A
| RX_CTL_MCAST_A
);
1252 * start off with all multicast flag clear, set it if we need to
1253 * later, otherwise we will leave it.
1255 ifp
->if_flags
&= ~IFF_ALLMULTI
;
1256 af
[0] = af
[1] = af
[2] = af
[3] = 0x0000;
1259 * Loop through all the multicast addresses unless we get a range of
1260 * addresses, in which case we will just accept all packets.
1261 * Justification for this is given in the next comment.
1263 ETHER_FIRST_MULTI(step
, ec
, enm
);
1264 while (enm
!= NULL
) {
1265 if (memcmp(enm
->enm_addrlo
, enm
->enm_addrhi
,
1266 sizeof enm
->enm_addrlo
)) {
1268 * We must listen to a range of multicast addresses.
1269 * For now, just accept all multicasts, rather than
1270 * trying to set only those filter bits needed to match
1271 * the range. (At this time, the only use of address
1272 * ranges is for IP multicast routing, for which the
1273 * range is big enough to require all bits set.)
1275 ifp
->if_flags
|= IFF_ALLMULTI
;
1276 af
[0] = af
[1] = af
[2] = af
[3] = 0xffff;
1280 * we have got an individual address so just set that
1283 index
= cs_hash_index(enm
->enm_addrlo
);
1285 /* Set the bit the Logical address filter. */
1286 port
= (u_int16_t
) (index
>> 4);
1287 mask
= (u_int16_t
) (1 << (index
& 0xf));
1290 ETHER_NEXT_MULTI(step
, enm
);
1294 /* now program the chip with the addresses */
1295 CS_WRITE_PACKET_PAGE(sc
, PKTPG_LOG_ADDR
+ 0, af
[0]);
1296 CS_WRITE_PACKET_PAGE(sc
, PKTPG_LOG_ADDR
+ 2, af
[1]);
1297 CS_WRITE_PACKET_PAGE(sc
, PKTPG_LOG_ADDR
+ 4, af
[2]);
1298 CS_WRITE_PACKET_PAGE(sc
, PKTPG_LOG_ADDR
+ 6, af
[3]);
1303 cs_hash_index(char *addr
)
1308 crc
= ether_crc32_le(addr
, ETHER_ADDR_LEN
);
1310 hash_code
= crc
>> 26;
1315 cs_reset(struct cs_softc
*sc
)
1318 /* Mark the interface as down */
1319 sc
->sc_ethercom
.ec_if
.if_flags
&= ~IFF_RUNNING
;
1321 /* Reset the chip */
1326 cs_ioctl(struct ifnet
*ifp
, u_long cmd
, void *data
)
1328 struct cs_softc
*sc
= ifp
->if_softc
;
1329 struct ifreq
*ifr
= data
;
1335 result
= 0; /* only set if something goes wrong */
1340 result
= ifmedia_ioctl(ifp
, ifr
, &sc
->sc_media
, cmd
);
1344 result
= ether_ioctl(ifp
, cmd
, data
);
1345 if (result
== ENETRESET
) {
1346 if (ifp
->if_flags
& IFF_RUNNING
) {
1348 * Multicast list has changed. Set the
1349 * hardware filter accordingly.
1351 cs_set_ladr_filt(sc
, &sc
->sc_ethercom
);
1364 cs_mediachange(struct ifnet
*ifp
)
1368 * Current media is already set up. Just reset the interface
1369 * to let the new value take hold.
1376 cs_mediastatus(struct ifnet
*ifp
, struct ifmediareq
*ifmr
)
1378 struct cs_softc
*sc
= ifp
->if_softc
;
1381 * The currently selected media is always the active media.
1383 ifmr
->ifm_active
= sc
->sc_media
.ifm_cur
->ifm_media
;
1385 if (ifp
->if_flags
& IFF_UP
) {
1386 /* Interface up, status is valid. */
1387 ifmr
->ifm_status
= IFM_AVALID
|
1388 (sc
->sc_carrier
? IFM_ACTIVE
: 0);
1390 else ifmr
->ifm_status
= 0;
1396 struct cs_softc
*sc
= arg
;
1402 /*printf("cs_intr %p\n", sc);*/
1403 /* Ignore any interrupts that happen while the chip is being reset */
1404 if (sc
->sc_resetting
) {
1405 printf("%s: cs_intr: reset in progress\n",
1406 device_xname(sc
->sc_dev
));
1410 /* Read an event from the Interrupt Status Queue */
1411 if (sc
->sc_memorymode
)
1412 Event
= CS_READ_PACKET_PAGE(sc
, PKTPG_ISQ
);
1414 Event
= CS_READ_PORT(sc
, PORT_ISQ
);
1416 if ((Event
& REG_NUM_MASK
) == 0 || Event
== 0xffff)
1417 return 0; /* not ours */
1423 /* Process all the events in the Interrupt Status Queue */
1424 while ((Event
& REG_NUM_MASK
) != 0 && Event
!= 0xffff) {
1425 /* Dispatch to an event handler based on the register number */
1426 switch (Event
& REG_NUM_MASK
) {
1427 case REG_NUM_RX_EVENT
:
1428 cs_receive_event(sc
, Event
);
1430 case REG_NUM_TX_EVENT
:
1431 cs_transmit_event(sc
, Event
);
1433 case REG_NUM_BUF_EVENT
:
1434 cs_buffer_event(sc
, Event
);
1436 case REG_NUM_TX_COL
:
1437 case REG_NUM_RX_MISS
:
1438 cs_counter_event(sc
, Event
);
1441 printf("%s: unknown interrupt event 0x%x\n",
1442 device_xname(sc
->sc_dev
), Event
);
1446 /* Read another event from the Interrupt Status Queue */
1447 if (sc
->sc_memorymode
)
1448 Event
= CS_READ_PACKET_PAGE(sc
, PKTPG_ISQ
);
1450 Event
= CS_READ_PORT(sc
, PORT_ISQ
);
1453 /* have handled the interrupt */
1455 rnd_add_uint32(&sc
->rnd_source
, rndEvent
);
1461 cs_counter_event(struct cs_softc
*sc
, u_int16_t cntEvent
)
1464 u_int16_t errorCount
;
1466 ifp
= &sc
->sc_ethercom
.ec_if
;
1468 switch (cntEvent
& REG_NUM_MASK
) {
1469 case REG_NUM_TX_COL
:
1471 * the count should be read before an overflow occurs.
1473 errorCount
= CS_READ_PACKET_PAGE(sc
, PKTPG_TX_COL
);
1475 * the tramsit event routine always checks the number of
1476 * collisions for any packet so we don't increment any
1477 * counters here, as they should already have been
1481 case REG_NUM_RX_MISS
:
1483 * the count should be read before an overflow occurs.
1485 errorCount
= CS_READ_PACKET_PAGE(sc
, PKTPG_RX_MISS
);
1487 * Increment the input error count, the first 6bits are the
1490 ifp
->if_ierrors
+= ((errorCount
& 0xffC0) >> 6);
1499 cs_buffer_event(struct cs_softc
*sc
, u_int16_t bufEvent
)
1503 * multiple events can be in the buffer event register at one time so
1504 * a standard switch statement will not suffice, here every event
1509 * if 128 bits have been rxed by the time we get here, the dest event
1510 * will be cleared and 128 event will be set.
1512 if ((bufEvent
& (BUF_EVENT_RX_DEST
| BUF_EVENT_RX_128
)) != 0) {
1513 cs_process_rx_early(sc
);
1516 if (bufEvent
& BUF_EVENT_RX_DMA
) {
1517 /* process the receive data */
1518 if (sc
->sc_dma_process_rx
)
1519 (*sc
->sc_dma_process_rx
)(sc
);
1522 aprint_error_dev(sc
->sc_dev
, "unexpected DMA event\n");
1525 if (bufEvent
& BUF_EVENT_TX_UNDR
) {
1528 * This can happen occasionally, and it's not worth worrying
1531 printf("%s: transmit underrun (%d -> %d)\n",
1532 device_xname(sc
->sc_dev
), sc
->sc_xe_ent
,
1533 cs_xmit_early_table
[sc
->sc_xe_ent
].worse
);
1535 sc
->sc_xe_ent
= cs_xmit_early_table
[sc
->sc_xe_ent
].worse
;
1537 cs_xmit_early_table
[sc
->sc_xe_ent
].better_count
;
1539 /* had an underrun, transmit is finished */
1540 sc
->sc_txbusy
= FALSE
;
1543 if (bufEvent
& BUF_EVENT_SW_INT
) {
1544 printf("%s: software initiated interrupt\n",
1545 device_xname(sc
->sc_dev
));
1550 cs_transmit_event(struct cs_softc
*sc
, u_int16_t txEvent
)
1552 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
1554 /* If there were any errors transmitting this frame */
1555 if (txEvent
& (TX_EVENT_LOSS_CRS
| TX_EVENT_SQE_ERR
| TX_EVENT_OUT_WIN
|
1556 TX_EVENT_JABBER
| TX_EVENT_16_COLL
)) {
1557 /* Increment the output error count */
1560 /* Note carrier loss. */
1561 if (txEvent
& TX_EVENT_LOSS_CRS
)
1564 /* If debugging is enabled then log error messages */
1565 if (ifp
->if_flags
& IFF_DEBUG
) {
1566 if (txEvent
& TX_EVENT_LOSS_CRS
) {
1567 aprint_error_dev(sc
->sc_dev
, "lost carrier\n");
1569 if (txEvent
& TX_EVENT_SQE_ERR
) {
1570 aprint_error_dev(sc
->sc_dev
, "SQE error\n");
1572 if (txEvent
& TX_EVENT_OUT_WIN
) {
1573 aprint_error_dev(sc
->sc_dev
,
1574 "out-of-window collision\n");
1576 if (txEvent
& TX_EVENT_JABBER
) {
1577 aprint_error_dev(sc
->sc_dev
, "jabber\n");
1579 if (txEvent
& TX_EVENT_16_COLL
) {
1580 aprint_error_dev(sc
->sc_dev
, "16 collisions\n");
1585 /* Transmission successful, carrier is up. */
1592 /* Add the number of collisions for this frame */
1593 if (txEvent
& TX_EVENT_16_COLL
) {
1594 ifp
->if_collisions
+= 16;
1596 ifp
->if_collisions
+= ((txEvent
& TX_EVENT_COLL_MASK
) >> 11);
1601 /* Transmission is no longer in progress */
1602 sc
->sc_txbusy
= FALSE
;
1604 /* If there is more to transmit */
1605 if (IFQ_IS_EMPTY(&ifp
->if_snd
) == 0) {
1606 /* Start the next transmission */
1607 cs_start_output(ifp
);
1612 cs_print_rx_errors(struct cs_softc
*sc
, u_int16_t rxEvent
)
1615 if (rxEvent
& RX_EVENT_RUNT
)
1616 aprint_error_dev(sc
->sc_dev
, "runt\n");
1618 if (rxEvent
& RX_EVENT_X_DATA
)
1619 aprint_error_dev(sc
->sc_dev
, "extra data\n");
1621 if (rxEvent
& RX_EVENT_CRC_ERR
) {
1622 if (rxEvent
& RX_EVENT_DRIBBLE
)
1623 aprint_error_dev(sc
->sc_dev
, "alignment error\n");
1625 aprint_error_dev(sc
->sc_dev
, "CRC error\n");
1627 if (rxEvent
& RX_EVENT_DRIBBLE
)
1628 aprint_error_dev(sc
->sc_dev
, "dribble bits\n");
1633 cs_receive_event(struct cs_softc
*sc
, u_int16_t rxEvent
)
1635 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
1637 /* If the frame was not received OK */
1638 if (!(rxEvent
& RX_EVENT_RX_OK
)) {
1639 /* Increment the input error count */
1643 * If debugging is enabled then log error messages.
1645 if (ifp
->if_flags
& IFF_DEBUG
) {
1646 if (rxEvent
!= REG_NUM_RX_EVENT
) {
1647 cs_print_rx_errors(sc
, rxEvent
);
1650 * Must read the length of all received
1653 CS_READ_PACKET_PAGE(sc
, PKTPG_RX_LENGTH
);
1655 /* Skip the received frame */
1656 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CFG
,
1657 CS_READ_PACKET_PAGE(sc
, PKTPG_RX_CFG
) |
1660 aprint_error_dev(sc
->sc_dev
, "implied skip\n");
1665 * process the received frame and pass it up to the upper
1668 cs_process_receive(sc
);
1673 cs_ether_input(struct cs_softc
*sc
, struct mbuf
*m
)
1675 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
1681 * Check if there's a BPF listener on this interface.
1682 * If so, hand off the raw packet to BPF.
1685 bpf_mtap(ifp
->if_bpf
, m
);
1688 /* Pass the packet up. */
1689 (*ifp
->if_input
)(ifp
, m
);
1693 cs_process_receive(struct cs_softc
*sc
)
1698 u_int16_t
*pBuff
, *pBuffLimit
;
1700 unsigned int frameOffset
= 0; /* XXX: gcc */
1706 ifp
= &sc
->sc_ethercom
.ec_if
;
1708 /* Received a packet; carrier is up. */
1711 if (sc
->sc_memorymode
) {
1712 /* Initialize the frame offset */
1713 frameOffset
= PKTPG_RX_LENGTH
;
1715 /* Get the length of the received frame */
1716 totlen
= CS_READ_PACKET_PAGE(sc
, frameOffset
);
1721 CS_READ_PORT(sc
, PORT_RXTX_DATA
);
1723 /* Get the length of the received frame */
1724 totlen
= CS_READ_PORT(sc
, PORT_RXTX_DATA
);
1727 if (totlen
> ETHER_MAX_LEN
) {
1728 aprint_error_dev(sc
->sc_dev
, "invalid packet length %d\n",
1731 /* skip the received frame */
1732 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CFG
,
1733 CS_READ_PACKET_PAGE(sc
, PKTPG_RX_CFG
) | RX_CFG_SKIP
);
1737 MGETHDR(m
, M_DONTWAIT
, MT_DATA
);
1739 aprint_error_dev(sc
->sc_dev
,
1740 "cs_process_receive: unable to allocate mbuf\n");
1743 * couldn't allocate an mbuf so things are not good, may as
1744 * well drop the packet I think.
1746 * have already read the length so we should be right to skip
1749 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CFG
,
1750 CS_READ_PACKET_PAGE(sc
, PKTPG_RX_CFG
) | RX_CFG_SKIP
);
1753 m
->m_pkthdr
.rcvif
= ifp
;
1754 m
->m_pkthdr
.len
= totlen
;
1756 /* number of bytes to align ip header on word boundary for ipintr */
1757 pad
= ALIGN(sizeof(struct ether_header
)) - sizeof(struct ether_header
);
1760 * alloc mbuf cluster if we need.
1761 * we need 1 byte spare because following
1762 * packet read loop can overrun.
1764 if (totlen
+ pad
+ 1 > MHLEN
) {
1765 MCLGET(m
, M_DONTWAIT
);
1766 if ((m
->m_flags
& M_EXT
) == 0) {
1767 /* couldn't allocate an mbuf cluster */
1768 aprint_error_dev(sc
->sc_dev
,
1769 "cs_process_receive: "
1770 "unable to allocate a cluster\n");
1773 /* skip the received frame */
1774 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CFG
,
1775 CS_READ_PACKET_PAGE(sc
, PKTPG_RX_CFG
) | RX_CFG_SKIP
);
1780 /* align ip header on word boundary for ipintr */
1784 pBuff
= mtod(m
, u_int16_t
*);
1786 /* now read the data from the chip */
1787 if (sc
->sc_memorymode
) {
1788 pBuffLimit
= pBuff
+ (totlen
+ 1) / 2; /* don't want to go over */
1789 while (pBuff
< pBuffLimit
) {
1790 *pBuff
++ = CS_READ_PACKET_PAGE(sc
, frameOffset
);
1795 IO_READ_MULTI_2(sc
, PORT_RXTX_DATA
, pBuff
, (totlen
+ 1)>>1);
1798 cs_ether_input(sc
, m
);
1802 cs_process_rx_early(struct cs_softc
*sc
)
1806 u_int16_t frameCount
, oldFrameCount
;
1810 unsigned int frameOffset
;
1813 ifp
= &sc
->sc_ethercom
.ec_if
;
1815 /* Initialize the frame offset */
1816 frameOffset
= PKTPG_RX_FRAME
;
1819 MGETHDR(m
, M_DONTWAIT
, MT_DATA
);
1821 aprint_error_dev(sc
->sc_dev
,
1822 "cs_process_rx_early: unable to allocate mbuf\n");
1825 * couldn't allocate an mbuf so things are not good, may as
1826 * well drop the packet I think.
1828 * have already read the length so we should be right to skip
1831 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CFG
,
1832 CS_READ_PACKET_PAGE(sc
, PKTPG_RX_CFG
) | RX_CFG_SKIP
);
1835 m
->m_pkthdr
.rcvif
= ifp
;
1837 * save processing by always using a mbuf cluster, guaranteed to fit
1840 MCLGET(m
, M_DONTWAIT
);
1841 if ((m
->m_flags
& M_EXT
) == 0) {
1842 /* couldn't allocate an mbuf cluster */
1843 aprint_error_dev(sc
->sc_dev
,
1844 "cs_process_rx_early: unable to allocate a cluster\n");
1846 /* skip the frame */
1847 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CFG
,
1848 CS_READ_PACKET_PAGE(sc
, PKTPG_RX_CFG
) | RX_CFG_SKIP
);
1852 /* align ip header on word boundary for ipintr */
1853 pad
= ALIGN(sizeof(struct ether_header
)) - sizeof(struct ether_header
);
1856 /* set up the buffer pointer to point to the data area */
1857 pBuff
= mtod(m
, u_int16_t
*);
1860 * now read the frame byte counter until we have finished reading the
1864 frameCount
= CS_READ_PACKET_PAGE(sc
, PKTPG_FRAME_BYTE_COUNT
);
1865 while ((frameCount
!= 0) && (frameCount
< MCLBYTES
)) {
1866 for (; oldFrameCount
< frameCount
; oldFrameCount
+= 2) {
1867 *pBuff
++ = CS_READ_PACKET_PAGE(sc
, frameOffset
);
1871 /* read the new count from the chip */
1872 frameCount
= CS_READ_PACKET_PAGE(sc
, PKTPG_FRAME_BYTE_COUNT
);
1875 /* update the mbuf counts */
1876 m
->m_len
= oldFrameCount
;
1877 m
->m_pkthdr
.len
= oldFrameCount
;
1879 /* now check the Rx Event register */
1880 rxEvent
= CS_READ_PACKET_PAGE(sc
, PKTPG_RX_EVENT
);
1882 if ((rxEvent
& RX_EVENT_RX_OK
) != 0) {
1884 * do an implied skip, it seems to be more reliable than a
1887 rxEvent
= CS_READ_PACKET_PAGE(sc
, PKTPG_RX_STATUS
);
1888 rxEvent
= CS_READ_PACKET_PAGE(sc
, PKTPG_RX_LENGTH
);
1891 * now read the RX_EVENT register to perform an implied skip.
1893 rxEvent
= CS_READ_PACKET_PAGE(sc
, PKTPG_RX_EVENT
);
1895 cs_ether_input(sc
, m
);
1903 cs_start_output(struct ifnet
*ifp
)
1905 struct cs_softc
*sc
;
1907 struct mbuf
*pMbufChain
;
1908 u_int16_t BusStatus
;
1915 /* check that the interface is up and running */
1916 if ((ifp
->if_flags
& (IFF_RUNNING
| IFF_OACTIVE
)) != IFF_RUNNING
) {
1920 /* Don't interrupt a transmission in progress */
1921 if (sc
->sc_txbusy
) {
1925 /* this loop will only run through once if transmission is successful */
1927 * While there are packets to transmit and a transmit is not in
1930 while (sc
->sc_txbusy
== 0 && dropout
== 0) {
1931 IFQ_DEQUEUE(&ifp
->if_snd
, pMbufChain
);
1932 if (pMbufChain
== NULL
)
1937 * If BPF is listening on this interface, let it see the packet
1938 * before we commit it to the wire.
1941 bpf_mtap(ifp
->if_bpf
, pMbufChain
);
1944 /* Find the total length of the data to transmit */
1946 for (pMbuf
= pMbufChain
; pMbuf
!= NULL
; pMbuf
= pMbuf
->m_next
)
1947 Length
+= pMbuf
->m_len
;
1951 * Request that the transmit be started after all
1952 * data has been copied
1954 * In IO mode must write to the IO port not the packet
1957 * If this is changed to start transmission after a
1958 * small amount of data has been copied you tend to
1959 * get packet missed errors i think because the ISA
1960 * bus is too slow. Or possibly the copy routine is
1961 * not streamlined enough.
1963 if (sc
->sc_memorymode
) {
1964 CS_WRITE_PACKET_PAGE(sc
, PKTPG_TX_CMD
,
1965 cs_xmit_early_table
[sc
->sc_xe_ent
].txcmd
);
1966 CS_WRITE_PACKET_PAGE(sc
, PKTPG_TX_LENGTH
, Length
);
1969 CS_WRITE_PORT(sc
, PORT_TX_CMD
,
1970 cs_xmit_early_table
[sc
->sc_xe_ent
].txcmd
);
1971 CS_WRITE_PORT(sc
, PORT_TX_LENGTH
, Length
);
1975 * Adjust early-transmit machinery.
1977 if (--sc
->sc_xe_togo
== 0) {
1979 cs_xmit_early_table
[sc
->sc_xe_ent
].better
;
1981 cs_xmit_early_table
[sc
->sc_xe_ent
].better_count
;
1984 * Read the BusStatus register which indicates
1985 * success of the request
1987 BusStatus
= CS_READ_PACKET_PAGE(sc
, PKTPG_BUS_ST
);
1990 * If there was an error in the transmit bid free the
1991 * mbuf and go on. This is presuming that mbuf is
1994 if (BusStatus
& BUS_ST_TX_BID_ERR
) {
1995 aprint_error_dev(sc
->sc_dev
,
1996 "transmit bid error (too big)");
1998 /* Discard the bad mbuf chain */
1999 m_freem(pMbufChain
);
2000 sc
->sc_ethercom
.ec_if
.if_oerrors
++;
2002 /* Loop up to transmit the next chain */
2005 if (BusStatus
& BUS_ST_RDY4TXNOW
) {
2007 * The chip is ready for transmission
2011 * Copy the frame to the chip to
2012 * start transmission
2014 cs_copy_tx_frame(sc
, pMbufChain
);
2016 /* Free the mbuf chain */
2017 m_freem(pMbufChain
);
2019 /* Transmission is now in progress */
2020 sc
->sc_txbusy
= TRUE
;
2024 * if we get here we want to try
2025 * again with the same mbuf, until
2026 * the chip lets us transmit.
2029 if (txLoop
> CS_OUTPUT_LOOP_MAX
) {
2030 /* Free the mbuf chain */
2031 m_freem(pMbufChain
);
2033 * Transmission is not in
2036 sc
->sc_txbusy
= FALSE
;
2038 * Increment the output error
2043 * exit the routine and drop
2056 cs_copy_tx_frame(struct cs_softc
*sc
, struct mbuf
*m0
)
2059 int len
, leftover
, frameoff
;
2066 /* Initialize frame pointer and data port address */
2067 frameoff
= PKTPG_TX_FRAME
;
2069 /* start out with no leftover data */
2073 /* Process the chain of mbufs */
2074 for (m
= m0
; m
!= NULL
; m
= m
->m_next
) {
2076 * Process all of the data in a single mbuf.
2078 p
= mtod(m
, u_int8_t
*);
2087 * Data left over (from mbuf or realignment).
2088 * Buffer the next byte, and write it and
2089 * the leftover data out.
2093 if (sc
->sc_memorymode
) {
2094 CS_WRITE_PACKET_PAGE(sc
, frameoff
, dbuf
);
2098 CS_WRITE_PORT(sc
, PORT_RXTX_DATA
, dbuf
);
2101 } else if ((long) p
& 1) {
2103 * Misaligned data. Buffer the next byte.
2110 * Aligned data. This is the case we like.
2112 * Write-region out as much as we can, then
2113 * buffer the remaining byte (if any).
2117 if (sc
->sc_memorymode
) {
2118 MEM_WRITE_REGION_2(sc
, frameoff
,
2119 (u_int16_t
*) p
, len
>> 1);
2123 IO_WRITE_MULTI_2(sc
,
2124 PORT_RXTX_DATA
, (u_int16_t
*)p
, len
>> 1);
2134 panic("cs_copy_tx_frame: negative len");
2137 panic("cs_copy_tx_frame: p != lim");
2141 if (sc
->sc_memorymode
) {
2142 CS_WRITE_PACKET_PAGE(sc
, frameoff
, dbuf
);
2145 CS_WRITE_PORT(sc
, PORT_RXTX_DATA
, dbuf
);
2151 cs_enable(struct cs_softc
*sc
)
2154 if (CS_IS_ENABLED(sc
) == 0) {
2155 if (sc
->sc_enable
!= NULL
) {
2158 error
= (*sc
->sc_enable
)(sc
);
2162 sc
->sc_cfgflags
|= CFGFLG_ENABLED
;
2169 cs_disable(struct cs_softc
*sc
)
2172 if (CS_IS_ENABLED(sc
)) {
2173 if (sc
->sc_disable
!= NULL
)
2174 (*sc
->sc_disable
)(sc
);
2176 sc
->sc_cfgflags
&= ~CFGFLG_ENABLED
;
2181 cs_stop(struct ifnet
*ifp
, int disable
)
2183 struct cs_softc
*sc
= ifp
->if_softc
;
2185 CS_WRITE_PACKET_PAGE(sc
, PKTPG_RX_CFG
, 0);
2186 CS_WRITE_PACKET_PAGE(sc
, PKTPG_TX_CFG
, 0);
2187 CS_WRITE_PACKET_PAGE(sc
, PKTPG_BUF_CFG
, 0);
2188 CS_WRITE_PACKET_PAGE(sc
, PKTPG_BUS_CTL
, 0);
2194 ifp
->if_flags
&= ~(IFF_RUNNING
| IFF_OACTIVE
);
2198 cs_activate(device_t self
, enum devact act
)
2200 struct cs_softc
*sc
= device_private(self
);
2203 case DVACT_DEACTIVATE
:
2204 if_deactivate(&sc
->sc_ethercom
.ec_if
);