if_cs.c revision 331643
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 1997,1998 Maxim Bolotin and Oleg Sharoiko.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice unmodified, this list of conditions, and the following
12 *    disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: stable/11/sys/dev/cs/if_cs.c 331643 2018-03-27 18:52:27Z dim $");
33
34/*
35 *
36 * Device driver for Crystal Semiconductor CS8920 based ethernet
37 *   adapters. By Maxim Bolotin and Oleg Sharoiko, 27-April-1997
38 */
39
40/*
41#define	 CS_DEBUG
42 */
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/malloc.h>
47#include <sys/mbuf.h>
48#include <sys/socket.h>
49#include <sys/sockio.h>
50#include <sys/kernel.h>
51#include <sys/sysctl.h>
52#include <sys/syslog.h>
53
54#include <sys/module.h>
55#include <sys/bus.h>
56#include <machine/bus.h>
57#include <sys/rman.h>
58#include <machine/resource.h>
59
60#include <net/if.h>
61#include <net/if_var.h>
62#include <net/if_arp.h>
63#include <net/if_dl.h>
64#include <net/if_media.h>
65#include <net/if_types.h>
66#include <net/ethernet.h>
67#include <net/bpf.h>
68
69#include <dev/cs/if_csvar.h>
70#include <dev/cs/if_csreg.h>
71
72#ifdef  CS_USE_64K_DMA
73#define CS_DMA_BUFFER_SIZE 65536
74#else
75#define CS_DMA_BUFFER_SIZE 16384
76#endif
77
78static void	cs_init(void *);
79static void	cs_init_locked(struct cs_softc *);
80static int	cs_ioctl(struct ifnet *, u_long, caddr_t);
81static void	cs_start(struct ifnet *);
82static void	cs_start_locked(struct ifnet *);
83static void	cs_stop(struct cs_softc *);
84static void	cs_reset(struct cs_softc *);
85static void	cs_watchdog(void *);
86
87static int	cs_mediachange(struct ifnet *);
88static void	cs_mediastatus(struct ifnet *, struct ifmediareq *);
89static int      cs_mediaset(struct cs_softc *, int);
90
91static void	cs_write_mbufs(struct cs_softc*, struct mbuf*);
92static void	cs_xmit_buf(struct cs_softc*);
93static int	cs_get_packet(struct cs_softc*);
94static void	cs_setmode(struct cs_softc*);
95
96static int	get_eeprom_data(struct cs_softc *sc, int, int, uint16_t *);
97static int	get_eeprom_cksum(int, int, uint16_t *);
98static int	wait_eeprom_ready( struct cs_softc *);
99static void	control_dc_dc( struct cs_softc *, int );
100static int	enable_tp(struct cs_softc *);
101static int	enable_aui(struct cs_softc *);
102static int	enable_bnc(struct cs_softc *);
103static int      cs_duplex_auto(struct cs_softc *);
104
105devclass_t cs_devclass;
106driver_intr_t	csintr;
107
108/* sysctl vars */
109static SYSCTL_NODE(_hw, OID_AUTO, cs, CTLFLAG_RD, 0, "cs device parameters");
110
111int	cs_ignore_cksum_failure = 0;
112SYSCTL_INT(_hw_cs, OID_AUTO, ignore_checksum_failure, CTLFLAG_RWTUN,
113    &cs_ignore_cksum_failure, 0,
114  "ignore checksum errors in cs card EEPROM");
115
116static int	cs_recv_delay = 570;
117SYSCTL_INT(_hw_cs, OID_AUTO, recv_delay, CTLFLAG_RWTUN, &cs_recv_delay, 570, "");
118
119static int cs8900_eeint2irq[16] = {
120	 10,  11,  12,   5, 255, 255, 255, 255,
121	255, 255, 255, 255, 255, 255, 255, 255
122};
123
124static int cs8900_irq2eeint[16] = {
125	255, 255, 255, 255, 255,   3, 255, 255,
126	255,   0,   1,   2, 255, 255, 255, 255
127};
128
129static int
130get_eeprom_data(struct cs_softc *sc, int off, int len, uint16_t *buffer)
131{
132	int i;
133
134#ifdef CS_DEBUG
135	device_printf(sc->dev, "EEPROM data from %x for %x:\n", off, len);
136#endif
137	for (i=0; i < len; i++) {
138		if (wait_eeprom_ready(sc) < 0)
139			return (-1);
140		/* Send command to EEPROM to read */
141		cs_writereg(sc, PP_EECMD, (off + i) | EEPROM_READ_CMD);
142		if (wait_eeprom_ready(sc) < 0)
143			return (-1);
144		buffer[i] = cs_readreg(sc, PP_EEData);
145
146#ifdef CS_DEBUG
147		printf("%04x ",buffer[i]);
148#endif
149	}
150
151#ifdef CS_DEBUG
152	printf("\n");
153#endif
154	return (0);
155}
156
157static int
158get_eeprom_cksum(int off, int len, uint16_t *buffer)
159{
160	int i;
161	uint16_t cksum=0;
162
163	for (i = 0; i < len; i++)
164		cksum += buffer[i];
165	cksum &= 0xffff;
166	if (cksum == 0 || cs_ignore_cksum_failure)
167		return (0);
168	return (-1);
169}
170
171static int
172wait_eeprom_ready(struct cs_softc *sc)
173{
174	int i;
175
176	/*
177	 * From the CS8900A datasheet, section 3.5.2:
178	 * "Before issuing any command to the EEPROM, the host must wait
179	 * for the SIBUSY bit (Register 16, SelfST, bit 8) to clear.  After
180	 * each command has been issued, the host must wait again for SIBUSY
181	 * to clear."
182	 *
183	 * Before we issue the command, we should be !busy, so that will
184	 * be fast.  The datasheet suggests that clock out from the part
185	 * per word will be on the order of 25us, which is consistent with
186	 * the 1MHz serial clock and 16bits...  We should never hit 100,
187	 * let alone 15,000 here.  The original code did an unconditional
188	 * 30ms DELAY here.  Bad Kharma.  cs_readreg takes ~2us.
189	 */
190	for (i = 0; i < 15000; i++)	/* 30ms max */
191		if (!(cs_readreg(sc, PP_SelfST) & SI_BUSY))
192			return (0);
193	return (1);
194}
195
196static void
197control_dc_dc(struct cs_softc *sc, int on_not_off)
198{
199	unsigned int self_control = HCB1_ENBL;
200
201	if (((sc->adapter_cnf & A_CNF_DC_DC_POLARITY)!=0) ^ on_not_off)
202		self_control |= HCB1;
203	else
204		self_control &= ~HCB1;
205	cs_writereg(sc, PP_SelfCTL, self_control);
206	DELAY(500000);	/* Bad! */
207}
208
209
210static int
211cs_duplex_auto(struct cs_softc *sc)
212{
213	int i, error=0;
214
215	cs_writereg(sc, PP_AutoNegCTL,
216	    RE_NEG_NOW | ALLOW_FDX | AUTO_NEG_ENABLE);
217	for (i=0; cs_readreg(sc, PP_AutoNegST) & AUTO_NEG_BUSY; i++) {
218		if (i > 4000) {
219			device_printf(sc->dev,
220			    "full/half duplex auto negotiation timeout\n");
221			error = ETIMEDOUT;
222			break;
223		}
224		DELAY(1000);
225	}
226	return (error);
227}
228
229static int
230enable_tp(struct cs_softc *sc)
231{
232
233	cs_writereg(sc, PP_LineCTL, sc->line_ctl & ~AUI_ONLY);
234	control_dc_dc(sc, 0);
235	return (0);
236}
237
238static int
239enable_aui(struct cs_softc *sc)
240{
241
242	cs_writereg(sc, PP_LineCTL,
243	    (sc->line_ctl & ~AUTO_AUI_10BASET) | AUI_ONLY);
244	control_dc_dc(sc, 0);
245	return (0);
246}
247
248static int
249enable_bnc(struct cs_softc *sc)
250{
251
252	cs_writereg(sc, PP_LineCTL,
253	    (sc->line_ctl & ~AUTO_AUI_10BASET) | AUI_ONLY);
254	control_dc_dc(sc, 1);
255	return (0);
256}
257
258int
259cs_cs89x0_probe(device_t dev)
260{
261	int i;
262	int error;
263	rman_res_t irq, junk;
264	struct cs_softc *sc = device_get_softc(dev);
265	unsigned rev_type = 0;
266	uint16_t id;
267	char chip_revision;
268	uint16_t eeprom_buff[CHKSUM_LEN];
269	int chip_type, pp_isaint;
270
271	sc->dev = dev;
272	error = cs_alloc_port(dev, 0, CS_89x0_IO_PORTS);
273	if (error)
274		return (error);
275
276	if ((cs_inw(sc, ADD_PORT) & ADD_MASK) != ADD_SIG) {
277		/* Chip not detected. Let's try to reset it */
278		if (bootverbose)
279			device_printf(dev, "trying to reset the chip.\n");
280		cs_outw(sc, ADD_PORT, PP_SelfCTL);
281		i = cs_inw(sc, DATA_PORT);
282		cs_outw(sc, ADD_PORT, PP_SelfCTL);
283		cs_outw(sc, DATA_PORT, i | POWER_ON_RESET);
284		if ((cs_inw(sc, ADD_PORT) & ADD_MASK) != ADD_SIG)
285			return (ENXIO);
286	}
287
288	for (i = 0; i < 10000; i++) {
289		id = cs_readreg(sc, PP_ChipID);
290		if (id == CHIP_EISA_ID_SIG)
291			break;
292	}
293	if (i == 10000)
294		return (ENXIO);
295
296	rev_type = cs_readreg(sc, PRODUCT_ID_ADD);
297	chip_type = rev_type & ~REVISON_BITS;
298	chip_revision = ((rev_type & REVISON_BITS) >> 8) + 'A';
299
300	sc->chip_type = chip_type;
301
302	if (chip_type == CS8900) {
303		pp_isaint = PP_CS8900_ISAINT;
304		sc->send_cmd = TX_CS8900_AFTER_ALL;
305	} else {
306		pp_isaint = PP_CS8920_ISAINT;
307		sc->send_cmd = TX_CS8920_AFTER_ALL;
308	}
309
310	/*
311	 * Clear some fields so that fail of EEPROM will left them clean
312	 */
313	sc->auto_neg_cnf = 0;
314	sc->adapter_cnf  = 0;
315	sc->isa_config   = 0;
316
317	/*
318	 * If no interrupt specified, use what the board tells us.
319	 */
320	error = bus_get_resource(dev, SYS_RES_IRQ, 0, &irq, &junk);
321
322	/*
323	 * Get data from EEPROM
324	 */
325	if((cs_readreg(sc, PP_SelfST) & EEPROM_PRESENT) == 0) {
326		device_printf(dev, "No EEPROM, assuming defaults.\n");
327	} else if (get_eeprom_data(sc,START_EEPROM_DATA,CHKSUM_LEN, eeprom_buff)<0) {
328		device_printf(dev, "EEPROM read failed, assuming defaults.\n");
329	} else if (get_eeprom_cksum(START_EEPROM_DATA,CHKSUM_LEN, eeprom_buff)<0) {
330		device_printf(dev, "EEPROM cheksum bad, assuming defaults.\n");
331	} else {
332		sc->auto_neg_cnf = eeprom_buff[AUTO_NEG_CNF_OFFSET];
333		sc->adapter_cnf = eeprom_buff[ADAPTER_CNF_OFFSET];
334		sc->isa_config = eeprom_buff[ISA_CNF_OFFSET];
335		for (i=0; i<ETHER_ADDR_LEN/2; i++) {
336			sc->enaddr[i*2] = eeprom_buff[i];
337			sc->enaddr[i*2+1] = eeprom_buff[i] >> 8;
338		}
339		/*
340		 * If no interrupt specified, use what the
341		 * board tells us.
342		 */
343		if (error) {
344			irq = sc->isa_config & INT_NO_MASK;
345			error = 0;
346			if (chip_type == CS8900) {
347				irq = cs8900_eeint2irq[irq];
348			} else {
349				if (irq > CS8920_NO_INTS)
350					irq = 255;
351			}
352			if (irq == 255) {
353				device_printf(dev, "invalid irq in EEPROM.\n");
354				error = EINVAL;
355			}
356			if (!error)
357				bus_set_resource(dev, SYS_RES_IRQ, 0,
358				    irq, 1);
359		}
360	}
361
362	if (!error && !(sc->flags & CS_NO_IRQ)) {
363		if (chip_type == CS8900) {
364			if (irq < 16)
365				irq = cs8900_irq2eeint[irq];
366			else
367				irq = 255;
368		} else {
369			if (irq > CS8920_NO_INTS)
370				irq = 255;
371		}
372		if (irq == 255)
373			error = EINVAL;
374	}
375
376	if (error) {
377	       	device_printf(dev, "Unknown or invalid irq\n");
378		return (error);
379	}
380
381	if (!(sc->flags & CS_NO_IRQ))
382		cs_writereg(sc, pp_isaint, irq);
383
384	if (bootverbose)
385		 device_printf(dev, "CS89%c0%s rev %c media%s%s%s\n",
386			chip_type == CS8900 ? '0' : '2',
387			chip_type == CS8920M ? "M" : "",
388			chip_revision,
389			(sc->adapter_cnf & A_CNF_10B_T) ? " TP"  : "",
390			(sc->adapter_cnf & A_CNF_AUI)   ? " AUI" : "",
391			(sc->adapter_cnf & A_CNF_10B_2) ? " BNC" : "");
392
393	if ((sc->adapter_cnf & A_CNF_EXTND_10B_2) &&
394	    (sc->adapter_cnf & A_CNF_LOW_RX_SQUELCH))
395		sc->line_ctl = LOW_RX_SQUELCH;
396	else
397		sc->line_ctl = 0;
398
399	return (0);
400}
401
402/*
403 * Allocate a port resource with the given resource id.
404 */
405int
406cs_alloc_port(device_t dev, int rid, int size)
407{
408	struct cs_softc *sc = device_get_softc(dev);
409	struct resource *res;
410
411	res = bus_alloc_resource_anywhere(dev, SYS_RES_IOPORT, &rid,
412	    size, RF_ACTIVE);
413	if (res == NULL)
414		return (ENOENT);
415	sc->port_rid = rid;
416	sc->port_res = res;
417	return (0);
418}
419
420/*
421 * Allocate an irq resource with the given resource id.
422 */
423int
424cs_alloc_irq(device_t dev, int rid)
425{
426	struct cs_softc *sc = device_get_softc(dev);
427	struct resource *res;
428
429	res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE);
430	if (res == NULL)
431		return (ENOENT);
432	sc->irq_rid = rid;
433	sc->irq_res = res;
434	return (0);
435}
436
437/*
438 * Release all resources
439 */
440void
441cs_release_resources(device_t dev)
442{
443	struct cs_softc *sc = device_get_softc(dev);
444
445	if (sc->port_res) {
446		bus_release_resource(dev, SYS_RES_IOPORT,
447		    sc->port_rid, sc->port_res);
448		sc->port_res = 0;
449	}
450	if (sc->irq_res) {
451		bus_release_resource(dev, SYS_RES_IRQ,
452		    sc->irq_rid, sc->irq_res);
453		sc->irq_res = 0;
454	}
455}
456
457/*
458 * Install the interface into kernel networking data structures
459 */
460int
461cs_attach(device_t dev)
462{
463	int error, media=0;
464	struct cs_softc *sc = device_get_softc(dev);
465	struct ifnet *ifp;
466
467	sc->dev = dev;
468
469	ifp = sc->ifp = if_alloc(IFT_ETHER);
470	if (ifp == NULL) {
471		device_printf(dev, "can not if_alloc()\n");
472		cs_release_resources(dev);
473		return (ENOMEM);
474	}
475
476	mtx_init(&sc->lock, device_get_nameunit(dev), MTX_NETWORK_LOCK,
477	    MTX_DEF);
478	callout_init_mtx(&sc->timer, &sc->lock, 0);
479
480	CS_LOCK(sc);
481	cs_stop(sc);
482	CS_UNLOCK(sc);
483
484	ifp->if_softc=sc;
485	if_initname(ifp, device_get_name(dev), device_get_unit(dev));
486	ifp->if_start=cs_start;
487	ifp->if_ioctl=cs_ioctl;
488	ifp->if_init=cs_init;
489	IFQ_SET_MAXLEN(&ifp->if_snd, ifqmaxlen);
490
491	ifp->if_flags=(IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST);
492
493	/*
494	 * this code still in progress (DMA support)
495	 *
496
497	sc->recv_ring=malloc(CS_DMA_BUFFER_SIZE<<1, M_DEVBUF, M_NOWAIT);
498	if (sc->recv_ring == NULL) {
499		log(LOG_ERR,
500		"%s: Couldn't allocate memory for NIC\n", ifp->if_xname);
501		return(0);
502	}
503	if ((sc->recv_ring-(sc->recv_ring & 0x1FFFF))
504	    < (128*1024-CS_DMA_BUFFER_SIZE))
505	    sc->recv_ring+=16*1024;
506
507	*/
508
509	sc->buffer=malloc(ETHER_MAX_LEN-ETHER_CRC_LEN,M_DEVBUF,M_NOWAIT);
510	if (sc->buffer == NULL) {
511		device_printf(sc->dev, "Couldn't allocate memory for NIC\n");
512		if_free(ifp);
513		mtx_destroy(&sc->lock);
514		cs_release_resources(dev);
515		return(ENOMEM);
516	}
517
518	/*
519	 * Initialize the media structures.
520	 */
521	ifmedia_init(&sc->media, 0, cs_mediachange, cs_mediastatus);
522
523	if (sc->adapter_cnf & A_CNF_10B_T) {
524		ifmedia_add(&sc->media, IFM_ETHER|IFM_10_T, 0, NULL);
525		if (sc->chip_type != CS8900) {
526			ifmedia_add(&sc->media,
527				IFM_ETHER|IFM_10_T|IFM_FDX, 0, NULL);
528			ifmedia_add(&sc->media,
529				IFM_ETHER|IFM_10_T|IFM_HDX, 0, NULL);
530		}
531	}
532
533	if (sc->adapter_cnf & A_CNF_10B_2)
534		ifmedia_add(&sc->media, IFM_ETHER|IFM_10_2, 0, NULL);
535
536	if (sc->adapter_cnf & A_CNF_AUI)
537		ifmedia_add(&sc->media, IFM_ETHER|IFM_10_5, 0, NULL);
538
539	if (sc->adapter_cnf & A_CNF_MEDIA)
540		ifmedia_add(&sc->media, IFM_ETHER|IFM_AUTO, 0, NULL);
541
542	/* Set default media from EEPROM */
543	switch (sc->adapter_cnf & A_CNF_MEDIA_TYPE) {
544	case A_CNF_MEDIA_AUTO:  media = IFM_ETHER|IFM_AUTO; break;
545	case A_CNF_MEDIA_10B_T: media = IFM_ETHER|IFM_10_T; break;
546	case A_CNF_MEDIA_10B_2: media = IFM_ETHER|IFM_10_2; break;
547	case A_CNF_MEDIA_AUI:   media = IFM_ETHER|IFM_10_5; break;
548	default:
549		device_printf(sc->dev, "no media, assuming 10baseT\n");
550		sc->adapter_cnf |= A_CNF_10B_T;
551		ifmedia_add(&sc->media, IFM_ETHER|IFM_10_T, 0, NULL);
552		if (sc->chip_type != CS8900) {
553			ifmedia_add(&sc->media,
554			    IFM_ETHER|IFM_10_T|IFM_FDX, 0, NULL);
555			ifmedia_add(&sc->media,
556			    IFM_ETHER|IFM_10_T|IFM_HDX, 0, NULL);
557		}
558		media = IFM_ETHER | IFM_10_T;
559		break;
560	}
561	ifmedia_set(&sc->media, media);
562	cs_mediaset(sc, media);
563
564	ether_ifattach(ifp, sc->enaddr);
565
566  	error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET | INTR_MPSAFE,
567	    NULL, csintr, sc, &sc->irq_handle);
568	if (error) {
569		ether_ifdetach(ifp);
570		free(sc->buffer, M_DEVBUF);
571		if_free(ifp);
572		mtx_destroy(&sc->lock);
573		cs_release_resources(dev);
574		return (error);
575	}
576
577	return (0);
578}
579
580int
581cs_detach(device_t dev)
582{
583	struct cs_softc *sc;
584	struct ifnet *ifp;
585
586	sc = device_get_softc(dev);
587	ifp = sc->ifp;
588
589	CS_LOCK(sc);
590	cs_stop(sc);
591	CS_UNLOCK(sc);
592	callout_drain(&sc->timer);
593	ether_ifdetach(ifp);
594	bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
595	cs_release_resources(dev);
596	free(sc->buffer, M_DEVBUF);
597	if_free(ifp);
598	mtx_destroy(&sc->lock);
599	return (0);
600}
601
602/*
603 * Initialize the board
604 */
605static void
606cs_init(void *xsc)
607{
608	struct cs_softc *sc=(struct cs_softc *)xsc;
609
610	CS_LOCK(sc);
611	cs_init_locked(sc);
612	CS_UNLOCK(sc);
613}
614
615static void
616cs_init_locked(struct cs_softc *sc)
617{
618	struct ifnet *ifp = sc->ifp;
619	int i, rx_cfg;
620
621	/*
622	 * reset watchdog timer
623	 */
624	sc->tx_timeout = 0;
625	sc->buf_len = 0;
626
627	/*
628	 * Hardware initialization of cs
629	 */
630
631	/* Enable receiver and transmitter */
632	cs_writereg(sc, PP_LineCTL,
633		cs_readreg(sc, PP_LineCTL) | SERIAL_RX_ON | SERIAL_TX_ON);
634
635	/* Configure the receiver mode */
636	cs_setmode(sc);
637
638	/*
639	 * This defines what type of frames will cause interrupts
640	 * Bad frames should generate interrupts so that the driver
641	 * could track statistics of discarded packets
642	 */
643	rx_cfg = RX_OK_ENBL | RX_CRC_ERROR_ENBL | RX_RUNT_ENBL |
644		 RX_EXTRA_DATA_ENBL;
645	if (sc->isa_config & STREAM_TRANSFER)
646		rx_cfg |= RX_STREAM_ENBL;
647	cs_writereg(sc, PP_RxCFG, rx_cfg);
648	cs_writereg(sc, PP_TxCFG, TX_LOST_CRS_ENBL |
649		    TX_SQE_ERROR_ENBL | TX_OK_ENBL | TX_LATE_COL_ENBL |
650		    TX_JBR_ENBL | TX_ANY_COL_ENBL | TX_16_COL_ENBL);
651	cs_writereg(sc, PP_BufCFG, READY_FOR_TX_ENBL |
652		    RX_MISS_COUNT_OVRFLOW_ENBL | TX_COL_COUNT_OVRFLOW_ENBL |
653		    TX_UNDERRUN_ENBL /*| RX_DMA_ENBL*/);
654
655	/* Write MAC address into IA filter */
656	for (i=0; i<ETHER_ADDR_LEN/2; i++)
657		cs_writereg(sc, PP_IA + i * 2,
658		    sc->enaddr[i * 2] |
659		    (sc->enaddr[i * 2 + 1] << 8) );
660
661	/*
662	 * Now enable everything
663	 */
664/*
665#ifdef	CS_USE_64K_DMA
666	cs_writereg(sc, PP_BusCTL, ENABLE_IRQ | RX_DMA_SIZE_64K);
667#else
668	cs_writereg(sc, PP_BusCTL, ENABLE_IRQ);
669#endif
670*/
671	cs_writereg(sc, PP_BusCTL, ENABLE_IRQ);
672
673	/*
674	 * Set running and clear output active flags
675	 */
676	sc->ifp->if_drv_flags |= IFF_DRV_RUNNING;
677	sc->ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
678	callout_reset(&sc->timer, hz, cs_watchdog, sc);
679
680	/*
681	 * Start sending process
682	 */
683	cs_start_locked(ifp);
684}
685
686/*
687 * Get the packet from the board and send it to the upper layer.
688 */
689static int
690cs_get_packet(struct cs_softc *sc)
691{
692	struct ifnet *ifp = sc->ifp;
693	int status, length;
694	struct mbuf *m;
695
696#ifdef CS_DEBUG
697	int i;
698#endif
699
700	status = cs_inw(sc, RX_FRAME_PORT);
701	length = cs_inw(sc, RX_FRAME_PORT);
702
703#ifdef CS_DEBUG
704	device_printf(sc->dev, "rcvd: stat %x, len %d\n",
705		status, length);
706#endif
707
708	if (!(status & RX_OK)) {
709#ifdef CS_DEBUG
710		device_printf(sc->dev, "bad pkt stat %x\n", status);
711#endif
712		if_inc_counter(ifp, IFCOUNTER_IERRORS, 1);
713		return (-1);
714	}
715
716	MGETHDR(m, M_NOWAIT, MT_DATA);
717	if (m==NULL)
718		return (-1);
719
720	if (length > MHLEN) {
721		if (!(MCLGET(m, M_NOWAIT))) {
722			m_freem(m);
723			return (-1);
724		}
725	}
726
727	/* Initialize packet's header info */
728	m->m_pkthdr.rcvif = ifp;
729	m->m_pkthdr.len = length;
730	m->m_len = length;
731
732	/* Get the data */
733	bus_read_multi_2(sc->port_res, RX_FRAME_PORT, mtod(m, uint16_t *),
734	    (length + 1) >> 1);
735
736#ifdef CS_DEBUG
737	for (i=0;i<length;i++)
738	     printf(" %02x",(unsigned char)*((char *)(m->m_data+i)));
739	printf( "\n" );
740#endif
741
742	if (status & (RX_IA | RX_BROADCAST) ||
743	    (ifp->if_flags & IFF_MULTICAST && status & RX_HASHED)) {
744		/* Feed the packet to the upper layer */
745		(*ifp->if_input)(ifp, m);
746		if_inc_counter(ifp, IFCOUNTER_IPACKETS, 1);
747		if (length == ETHER_MAX_LEN-ETHER_CRC_LEN)
748			DELAY(cs_recv_delay);
749	} else {
750		m_freem(m);
751	}
752
753	return (0);
754}
755
756/*
757 * Handle interrupts
758 */
759void
760csintr(void *arg)
761{
762	struct cs_softc *sc = (struct cs_softc*) arg;
763	struct ifnet *ifp = sc->ifp;
764	int status;
765
766#ifdef CS_DEBUG
767	device_printf(sc->dev, "Interrupt.\n");
768#endif
769
770	CS_LOCK(sc);
771	while ((status=cs_inw(sc, ISQ_PORT))) {
772
773#ifdef CS_DEBUG
774		device_printf(sc->dev, "from ISQ: %04x\n", status);
775#endif
776
777		switch (status & ISQ_EVENT_MASK) {
778		case ISQ_RECEIVER_EVENT:
779			cs_get_packet(sc);
780			break;
781
782		case ISQ_TRANSMITTER_EVENT:
783			if (status & TX_OK)
784				if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1);
785			else
786				if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
787			ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
788			sc->tx_timeout = 0;
789			break;
790
791		case ISQ_BUFFER_EVENT:
792			if (status & READY_FOR_TX) {
793				ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
794				sc->tx_timeout = 0;
795			}
796
797			if (status & TX_UNDERRUN) {
798				ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
799				sc->tx_timeout = 0;
800				if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
801			}
802			break;
803
804		case ISQ_RX_MISS_EVENT:
805			if_inc_counter(ifp, IFCOUNTER_IERRORS, status >> 6);
806			break;
807
808		case ISQ_TX_COL_EVENT:
809			if_inc_counter(ifp, IFCOUNTER_COLLISIONS, status >> 6);
810			break;
811		}
812	}
813
814	if (!(ifp->if_drv_flags & IFF_DRV_OACTIVE)) {
815		cs_start_locked(ifp);
816	}
817	CS_UNLOCK(sc);
818}
819
820/*
821 * Save the data in buffer
822 */
823
824static void
825cs_write_mbufs( struct cs_softc *sc, struct mbuf *m )
826{
827	int len;
828	struct mbuf *mp;
829	unsigned char *data, *buf;
830
831	for (mp=m, buf=sc->buffer, sc->buf_len=0; mp != NULL; mp=mp->m_next) {
832		len = mp->m_len;
833
834		/*
835		 * Ignore empty parts
836		 */
837		if (!len)
838			continue;
839
840		/*
841		 * Find actual data address
842		 */
843		data = mtod(mp, caddr_t);
844
845		bcopy((caddr_t) data, (caddr_t) buf, len);
846		buf += len;
847		sc->buf_len += len;
848	}
849}
850
851
852static void
853cs_xmit_buf( struct cs_softc *sc )
854{
855	bus_write_multi_2(sc->port_res, TX_FRAME_PORT, (uint16_t *)sc->buffer,
856	    (sc->buf_len + 1) >> 1);
857	sc->buf_len = 0;
858}
859
860static void
861cs_start(struct ifnet *ifp)
862{
863	struct cs_softc *sc = ifp->if_softc;
864
865	CS_LOCK(sc);
866	cs_start_locked(ifp);
867	CS_UNLOCK(sc);
868}
869
870static void
871cs_start_locked(struct ifnet *ifp)
872{
873	int length;
874	struct mbuf *m, *mp;
875	struct cs_softc *sc = ifp->if_softc;
876
877	for (;;) {
878		if (sc->buf_len)
879			length = sc->buf_len;
880		else {
881			IF_DEQUEUE( &ifp->if_snd, m );
882
883			if (m==NULL) {
884				return;
885			}
886
887			for (length=0, mp=m; mp != NULL; mp=mp->m_next)
888				length += mp->m_len;
889
890			/* Skip zero-length packets */
891			if (length == 0) {
892				m_freem(m);
893				continue;
894			}
895
896			cs_write_mbufs(sc, m);
897
898			BPF_MTAP(ifp, m);
899
900			m_freem(m);
901		}
902
903		/*
904		 * Issue a SEND command
905		 */
906		cs_outw(sc, TX_CMD_PORT, sc->send_cmd);
907		cs_outw(sc, TX_LEN_PORT, length );
908
909		/*
910		 * If there's no free space in the buffer then leave
911		 * this packet for the next time: indicate output active
912		 * and return.
913		 */
914		if (!(cs_readreg(sc, PP_BusST) & READY_FOR_TX_NOW)) {
915			sc->tx_timeout = sc->buf_len;
916			ifp->if_drv_flags |= IFF_DRV_OACTIVE;
917			return;
918		}
919
920		cs_xmit_buf(sc);
921
922		/*
923		 * Set the watchdog timer in case we never hear
924		 * from board again. (I don't know about correct
925		 * value for this timeout)
926		 */
927		sc->tx_timeout = length;
928
929		ifp->if_drv_flags |= IFF_DRV_OACTIVE;
930		return;
931	}
932}
933
934/*
935 * Stop everything on the interface
936 */
937static void
938cs_stop(struct cs_softc *sc)
939{
940
941	CS_ASSERT_LOCKED(sc);
942	cs_writereg(sc, PP_RxCFG, 0);
943	cs_writereg(sc, PP_TxCFG, 0);
944	cs_writereg(sc, PP_BufCFG, 0);
945	cs_writereg(sc, PP_BusCTL, 0);
946
947	sc->ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
948	sc->tx_timeout = 0;
949	callout_stop(&sc->timer);
950}
951
952/*
953 * Reset the interface
954 */
955static void
956cs_reset(struct cs_softc *sc)
957{
958
959	CS_ASSERT_LOCKED(sc);
960	cs_stop(sc);
961	cs_init_locked(sc);
962}
963
964static uint16_t
965cs_hash_index(struct sockaddr_dl *addr)
966{
967	uint32_t crc;
968	uint16_t idx;
969	caddr_t lla;
970
971	lla = LLADDR(addr);
972	crc = ether_crc32_le(lla, ETHER_ADDR_LEN);
973	idx = crc >> 26;
974
975	return (idx);
976}
977
978static void
979cs_setmode(struct cs_softc *sc)
980{
981	int rx_ctl;
982	uint16_t af[4];
983	uint16_t port, mask, index;
984	struct ifnet *ifp = sc->ifp;
985	struct ifmultiaddr *ifma;
986
987	/* Stop the receiver while changing filters */
988	cs_writereg(sc, PP_LineCTL, cs_readreg(sc, PP_LineCTL) & ~SERIAL_RX_ON);
989
990	if (ifp->if_flags & IFF_PROMISC) {
991		/* Turn on promiscuous mode. */
992		rx_ctl = RX_OK_ACCEPT | RX_PROM_ACCEPT;
993	} else if (ifp->if_flags & IFF_MULTICAST) {
994		/* Allow receiving frames with multicast addresses */
995		rx_ctl = RX_IA_ACCEPT | RX_BROADCAST_ACCEPT |
996			 RX_OK_ACCEPT | RX_MULTCAST_ACCEPT;
997
998		/* Start with an empty filter */
999		af[0] = af[1] = af[2] = af[3] = 0x0000;
1000
1001		if (ifp->if_flags & IFF_ALLMULTI) {
1002			/* Accept all multicast frames */
1003			af[0] = af[1] = af[2] = af[3] = 0xffff;
1004		} else {
1005			/*
1006			 * Set up the filter to only accept multicast
1007			 * frames we're interested in.
1008			 */
1009			if_maddr_rlock(ifp);
1010			TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
1011				struct sockaddr_dl *dl =
1012				    (struct sockaddr_dl *)ifma->ifma_addr;
1013
1014				index = cs_hash_index(dl);
1015				port = (u_int16_t) (index >> 4);
1016				mask = (u_int16_t) (1 << (index & 0xf));
1017				af[port] |= mask;
1018			}
1019			if_maddr_runlock(ifp);
1020		}
1021
1022		cs_writereg(sc, PP_LAF + 0, af[0]);
1023		cs_writereg(sc, PP_LAF + 2, af[1]);
1024		cs_writereg(sc, PP_LAF + 4, af[2]);
1025		cs_writereg(sc, PP_LAF + 6, af[3]);
1026	} else {
1027		/*
1028		 * Receive only good frames addressed for us and
1029		 * good broadcasts.
1030		 */
1031		rx_ctl = RX_IA_ACCEPT | RX_BROADCAST_ACCEPT |
1032			 RX_OK_ACCEPT;
1033	}
1034
1035	/* Set up the filter */
1036	cs_writereg(sc, PP_RxCTL, RX_DEF_ACCEPT | rx_ctl);
1037
1038	/* Turn on receiver */
1039	cs_writereg(sc, PP_LineCTL, cs_readreg(sc, PP_LineCTL) | SERIAL_RX_ON);
1040}
1041
1042static int
1043cs_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
1044{
1045	struct cs_softc *sc=ifp->if_softc;
1046	struct ifreq *ifr = (struct ifreq *)data;
1047	int error=0;
1048
1049#ifdef CS_DEBUG
1050	if_printf(ifp, "%s command=%lx\n", __func__, command);
1051#endif
1052
1053	switch (command) {
1054	case SIOCSIFFLAGS:
1055		/*
1056		 * Switch interface state between "running" and
1057		 * "stopped", reflecting the UP flag.
1058		 */
1059		CS_LOCK(sc);
1060		if (sc->ifp->if_flags & IFF_UP) {
1061			if ((sc->ifp->if_drv_flags & IFF_DRV_RUNNING)==0) {
1062				cs_init_locked(sc);
1063			}
1064		} else {
1065			if ((sc->ifp->if_drv_flags & IFF_DRV_RUNNING)!=0) {
1066				cs_stop(sc);
1067			}
1068		}
1069		/*
1070		 * Promiscuous and/or multicast flags may have changed,
1071		 * so reprogram the multicast filter and/or receive mode.
1072		 *
1073		 * See note about multicasts in cs_setmode
1074		 */
1075		cs_setmode(sc);
1076		CS_UNLOCK(sc);
1077		break;
1078
1079	case SIOCADDMULTI:
1080	case SIOCDELMULTI:
1081	    /*
1082	     * Multicast list has changed; set the hardware filter
1083	     * accordingly.
1084	     *
1085	     * See note about multicasts in cs_setmode
1086	     */
1087	    CS_LOCK(sc);
1088	    cs_setmode(sc);
1089	    CS_UNLOCK(sc);
1090	    error = 0;
1091	    break;
1092
1093	case SIOCSIFMEDIA:
1094	case SIOCGIFMEDIA:
1095		error = ifmedia_ioctl(ifp, ifr, &sc->media, command);
1096		break;
1097
1098	default:
1099		error = ether_ioctl(ifp, command, data);
1100		break;
1101	}
1102
1103	return (error);
1104}
1105
1106/*
1107 * Device timeout/watchdog routine. Entered if the device neglects to
1108 * generate an interrupt after a transmit has been started on it.
1109 */
1110static void
1111cs_watchdog(void *arg)
1112{
1113	struct cs_softc *sc = arg;
1114	struct ifnet *ifp = sc->ifp;
1115
1116	CS_ASSERT_LOCKED(sc);
1117	if (sc->tx_timeout && --sc->tx_timeout == 0) {
1118		if_inc_counter(ifp, IFCOUNTER_OERRORS, 1);
1119		log(LOG_ERR, "%s: device timeout\n", ifp->if_xname);
1120
1121		/* Reset the interface */
1122		if (ifp->if_flags & IFF_UP)
1123			cs_reset(sc);
1124		else
1125			cs_stop(sc);
1126	}
1127	callout_reset(&sc->timer, hz, cs_watchdog, sc);
1128}
1129
1130static int
1131cs_mediachange(struct ifnet *ifp)
1132{
1133	struct cs_softc *sc = ifp->if_softc;
1134	struct ifmedia *ifm = &sc->media;
1135	int error;
1136
1137	if (IFM_TYPE(ifm->ifm_media) != IFM_ETHER)
1138		return (EINVAL);
1139
1140	CS_LOCK(sc);
1141	error = cs_mediaset(sc, ifm->ifm_media);
1142	CS_UNLOCK(sc);
1143	return (error);
1144}
1145
1146static void
1147cs_mediastatus(struct ifnet *ifp, struct ifmediareq *ifmr)
1148{
1149	int line_status;
1150	struct cs_softc *sc = ifp->if_softc;
1151
1152	CS_LOCK(sc);
1153	ifmr->ifm_active = IFM_ETHER;
1154	line_status = cs_readreg(sc, PP_LineST);
1155	if (line_status & TENBASET_ON) {
1156		ifmr->ifm_active |= IFM_10_T;
1157		if (sc->chip_type != CS8900) {
1158			if (cs_readreg(sc, PP_AutoNegST) & FDX_ACTIVE)
1159				ifmr->ifm_active |= IFM_FDX;
1160			if (cs_readreg(sc, PP_AutoNegST) & HDX_ACTIVE)
1161				ifmr->ifm_active |= IFM_HDX;
1162		}
1163		ifmr->ifm_status = IFM_AVALID;
1164		if (line_status & LINK_OK)
1165			ifmr->ifm_status |= IFM_ACTIVE;
1166	} else {
1167		if (line_status & AUI_ON) {
1168			cs_writereg(sc, PP_SelfCTL, cs_readreg(sc, PP_SelfCTL) |
1169			    HCB1_ENBL);
1170			if (((sc->adapter_cnf & A_CNF_DC_DC_POLARITY)!=0)^
1171			    (cs_readreg(sc, PP_SelfCTL) & HCB1))
1172				ifmr->ifm_active |= IFM_10_2;
1173			else
1174				ifmr->ifm_active |= IFM_10_5;
1175		}
1176	}
1177	CS_UNLOCK(sc);
1178}
1179
1180static int
1181cs_mediaset(struct cs_softc *sc, int media)
1182{
1183	int error = 0;
1184
1185	/* Stop the receiver & transmitter */
1186	cs_writereg(sc, PP_LineCTL, cs_readreg(sc, PP_LineCTL) &
1187	    ~(SERIAL_RX_ON | SERIAL_TX_ON));
1188
1189#ifdef CS_DEBUG
1190	device_printf(sc->dev, "%s media=%x\n", __func__, media);
1191#endif
1192
1193	switch (IFM_SUBTYPE(media)) {
1194	default:
1195	case IFM_AUTO:
1196		/*
1197		 * This chip makes it a little hard to support this, so treat
1198		 * it as IFM_10_T, auto duplex.
1199		 */
1200		enable_tp(sc);
1201		cs_duplex_auto(sc);
1202		break;
1203	case IFM_10_T:
1204		enable_tp(sc);
1205		if (media & IFM_FDX)
1206			cs_duplex_full(sc);
1207		else if (media & IFM_HDX)
1208			cs_duplex_half(sc);
1209		else
1210			error = cs_duplex_auto(sc);
1211		break;
1212	case IFM_10_2:
1213		enable_bnc(sc);
1214		break;
1215	case IFM_10_5:
1216		enable_aui(sc);
1217		break;
1218	}
1219
1220	/*
1221	 * Turn the transmitter & receiver back on
1222	 */
1223	cs_writereg(sc, PP_LineCTL, cs_readreg(sc, PP_LineCTL) |
1224	    SERIAL_RX_ON | SERIAL_TX_ON);
1225
1226	return (error);
1227}
1228