2 /* $OpenBSD: if_cas.c,v 1.29 2009/11/29 16:19:38 kettenis Exp $ */
6 * Copyright (C) 2007 Mark Kettenis.
7 * Copyright (C) 2001 Eduardo Horvath.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * Driver for Sun Cassini ethernet controllers.
37 * There are basically two variants of this chip: Cassini and
38 * Cassini+. We can distinguish between the two by revision: 0x10 and
39 * up are Cassini+. The most important difference is that Cassini+
40 * has a second RX descriptor ring. Cassini+ will not work without
41 * configuring that second ring. However, since we don't use it we
42 * don't actually fill the descriptors, and only hand off the first
46 #include <sys/cdefs.h>
47 __KERNEL_RCSID(0, "$NetBSD$");
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/callout.h>
56 #include <sys/syslog.h>
57 #include <sys/malloc.h>
58 #include <sys/kernel.h>
59 #include <sys/socket.h>
60 #include <sys/ioctl.h>
61 #include <sys/errno.h>
62 #include <sys/device.h>
64 #include <machine/endian.h>
66 #include <uvm/uvm_extern.h>
69 #include <net/if_dl.h>
70 #include <net/if_media.h>
71 #include <net/if_ether.h>
74 #include <netinet/in.h>
75 #include <netinet/in_systm.h>
76 #include <netinet/in_var.h>
77 #include <netinet/ip.h>
78 #include <netinet/tcp.h>
79 #include <netinet/udp.h>
89 #include <dev/mii/mii.h>
90 #include <dev/mii/miivar.h>
91 #include <dev/mii/mii_bitbang.h>
93 #include <dev/pci/pcivar.h>
94 #include <dev/pci/pcireg.h>
95 #include <dev/pci/pcidevs.h>
97 #include <dev/pci/if_casreg.h>
98 #include <dev/pci/if_casvar.h>
100 /* XXX Should use Properties when that's fleshed out. */
102 #include <dev/ofw/openfirm.h>
105 #include <machine/promlib.h>
108 #ifndef CAS_USE_LOCAL_MAC_ADDRESS
109 #if defined (macppc) || defined (__sparc__)
110 #define CAS_USE_LOCAL_MAC_ADDRESS 0 /* use system-wide address */
112 #define CAS_USE_LOCAL_MAC_ADDRESS 1
118 static bool cas_estintr(struct cas_softc
*sc
);
119 bool cas_shutdown(device_t
, int);
120 static bool cas_suspend(device_t PMF_FN_PROTO
);
121 static bool cas_resume(device_t PMF_FN_PROTO
);
122 static int cas_detach(device_t
, int);
123 static void cas_partial_detach(struct cas_softc
*, enum cas_attach_stage
);
125 int cas_match(device_t
, cfdata_t
, void *);
126 void cas_attach(device_t
, device_t
, void *);
129 CFATTACH_DECL3_NEW(cas
, sizeof(struct cas_softc
),
130 cas_match
, cas_attach
, cas_detach
, NULL
, NULL
, NULL
,
131 DVF_DETACH_SHUTDOWN
);
133 #if CAS_USE_LOCAL_MAC_ADDRESS
134 int cas_pci_enaddr(struct cas_softc
*, struct pci_attach_args
*, uint8_t *);
137 void cas_config(struct cas_softc
*, const uint8_t *);
138 void cas_start(struct ifnet
*);
139 void cas_stop(struct ifnet
*, int);
140 int cas_ioctl(struct ifnet
*, u_long
, void *);
141 void cas_tick(void *);
142 void cas_watchdog(struct ifnet
*);
143 int cas_init(struct ifnet
*);
144 void cas_init_regs(struct cas_softc
*);
145 int cas_ringsize(int);
146 int cas_cringsize(int);
147 int cas_meminit(struct cas_softc
*);
148 void cas_mifinit(struct cas_softc
*);
149 int cas_bitwait(struct cas_softc
*, bus_space_handle_t
, int,
150 u_int32_t
, u_int32_t
);
151 void cas_reset(struct cas_softc
*);
152 int cas_reset_rx(struct cas_softc
*);
153 int cas_reset_tx(struct cas_softc
*);
154 int cas_disable_rx(struct cas_softc
*);
155 int cas_disable_tx(struct cas_softc
*);
156 void cas_rxdrain(struct cas_softc
*);
157 int cas_add_rxbuf(struct cas_softc
*, int idx
);
158 void cas_iff(struct cas_softc
*);
159 int cas_encap(struct cas_softc
*, struct mbuf
*, u_int32_t
*);
161 /* MII methods & callbacks */
162 int cas_mii_readreg(device_t
, int, int);
163 void cas_mii_writereg(device_t
, int, int, int);
164 void cas_mii_statchg(device_t
);
165 int cas_pcs_readreg(device_t
, int, int);
166 void cas_pcs_writereg(device_t
, int, int, int);
168 int cas_mediachange(struct ifnet
*);
169 void cas_mediastatus(struct ifnet
*, struct ifmediareq
*);
171 int cas_eint(struct cas_softc
*, u_int
);
172 int cas_rint(struct cas_softc
*);
173 int cas_tint(struct cas_softc
*, u_int32_t
);
174 int cas_pint(struct cas_softc
*);
175 int cas_intr(void *);
178 #define DPRINTF(sc, x) if ((sc)->sc_ethercom.ec_if.if_flags & IFF_DEBUG) \
181 #define DPRINTF(sc, x) /* nothing */
185 cas_match(device_t parent
, cfdata_t cf
, void *aux
)
187 struct pci_attach_args
*pa
= aux
;
189 if (PCI_VENDOR(pa
->pa_id
) == PCI_VENDOR_SUN
&&
190 (PCI_PRODUCT(pa
->pa_id
) == PCI_PRODUCT_SUN_CASSINI
))
193 if (PCI_VENDOR(pa
->pa_id
) == PCI_VENDOR_NS
&&
194 (PCI_PRODUCT(pa
->pa_id
) == PCI_PRODUCT_NS_SATURN
))
200 #if CAS_USE_LOCAL_MAC_ADDRESS
201 #define PROMHDR_PTR_DATA 0x18
202 #define PROMDATA_PTR_VPD 0x08
203 #define PROMDATA_DATA2 0x0a
205 static const u_int8_t cas_promhdr
[] = { 0x55, 0xaa };
206 static const u_int8_t cas_promdat
[] = {
208 PCI_VENDOR_SUN
& 0xff, PCI_VENDOR_SUN
>> 8,
209 PCI_PRODUCT_SUN_CASSINI
& 0xff, PCI_PRODUCT_SUN_CASSINI
>> 8
212 static const u_int8_t cas_promdat2
[] = {
213 0x18, 0x00, /* structure length */
214 0x00, /* structure revision */
215 0x00, /* interface revision */
216 PCI_SUBCLASS_NETWORK_ETHERNET
, /* subclass code */
217 PCI_CLASS_NETWORK
/* class code */
221 cas_pci_enaddr(struct cas_softc
*sc
, struct pci_attach_args
*pa
,
224 struct pci_vpd_largeres
*res
;
226 bus_space_handle_t romh
;
227 bus_space_tag_t romt
;
228 bus_size_t romsize
= 0;
229 u_int8_t buf
[32], *desc
;
231 int dataoff
, vpdoff
, len
;
234 if (pci_mapreg_map(pa
, PCI_MAPREG_ROM
, PCI_MAPREG_TYPE_MEM
, 0,
235 &romt
, &romh
, NULL
, &romsize
))
238 address
= pci_conf_read(pa
->pa_pc
, pa
->pa_tag
, PCI_MAPREG_START
);
239 address
|= PCI_MAPREG_ROM_ENABLE
;
240 pci_conf_write(pa
->pa_pc
, pa
->pa_tag
, PCI_MAPREG_START
, address
);
242 bus_space_read_region_1(romt
, romh
, 0, buf
, sizeof(buf
));
243 if (bcmp(buf
, cas_promhdr
, sizeof(cas_promhdr
)))
246 dataoff
= buf
[PROMHDR_PTR_DATA
] | (buf
[PROMHDR_PTR_DATA
+ 1] << 8);
250 bus_space_read_region_1(romt
, romh
, dataoff
, buf
, sizeof(buf
));
251 if (bcmp(buf
, cas_promdat
, sizeof(cas_promdat
)) ||
252 bcmp(buf
+ PROMDATA_DATA2
, cas_promdat2
, sizeof(cas_promdat2
)))
255 vpdoff
= buf
[PROMDATA_PTR_VPD
] | (buf
[PROMDATA_PTR_VPD
+ 1] << 8);
260 bus_space_read_region_1(romt
, romh
, vpdoff
, buf
, sizeof(buf
));
261 if (!PCI_VPDRES_ISLARGE(buf
[0]))
264 res
= (struct pci_vpd_largeres
*)buf
;
265 vpdoff
+= sizeof(*res
);
267 len
= ((res
->vpdres_len_msb
<< 8) + res
->vpdres_len_lsb
);
268 switch(PCI_VPDRES_LARGE_NAME(res
->vpdres_byte0
)) {
269 case PCI_VPDRES_TYPE_IDENTIFIER_STRING
:
270 /* Skip identifier string. */
274 case PCI_VPDRES_TYPE_VPD
:
276 bus_space_read_region_1(romt
, romh
, vpdoff
,
279 vpd
= (struct pci_vpd
*)buf
;
280 vpdoff
+= sizeof(*vpd
) + vpd
->vpd_len
;
281 len
-= sizeof(*vpd
) + vpd
->vpd_len
;
284 * We're looking for an "Enhanced" VPD...
286 if (vpd
->vpd_key0
!= 'Z')
289 desc
= buf
+ sizeof(*vpd
);
292 * ...which is an instance property...
299 * ...that's a byte array with the proper
300 * length for a MAC address...
302 if (desc
[0] != 'B' || desc
[1] != ETHER_ADDR_LEN
)
307 * ...named "local-mac-address".
309 if (strcmp(desc
, "local-mac-address") != 0)
311 desc
+= strlen("local-mac-address") + 1;
313 memcpy(enaddr
, enp
, ETHER_ADDR_LEN
);
324 bus_space_unmap(romt
, romh
, romsize
);
326 address
= pci_conf_read(pa
->pa_pc
, pa
->pa_tag
, PCI_MAPREG_ROM
);
327 address
&= ~PCI_MAPREG_ROM_ENABLE
;
328 pci_conf_write(pa
->pa_pc
, pa
->pa_tag
, PCI_MAPREG_ROM
, address
);
332 #endif /* CAS_USE_LOCAL_MAC_ADDRESS */
335 cas_attach(device_t parent
, device_t self
, void *aux
)
337 struct pci_attach_args
*pa
= aux
;
338 struct cas_softc
*sc
= device_private(self
);
340 uint8_t enaddr
[ETHER_ADDR_LEN
];
343 pci_devinfo(pa
->pa_id
, pa
->pa_class
, 0, devinfo
, sizeof(devinfo
));
344 sc
->sc_rev
= PCI_REVISION(pa
->pa_class
);
345 aprint_normal(": %s (rev. 0x%02x)\n", devinfo
, sc
->sc_rev
);
346 sc
->sc_dmatag
= pa
->pa_dmat
;
348 #define PCI_CAS_BASEADDR 0x10
349 if (pci_mapreg_map(pa
, PCI_CAS_BASEADDR
, PCI_MAPREG_TYPE_MEM
, 0,
350 &sc
->sc_memt
, &sc
->sc_memh
, NULL
, &sc
->sc_size
) != 0) {
351 aprint_error_dev(sc
->sc_dev
,
352 "unable to map device registers\n");
356 #if CAS_USE_LOCAL_MAC_ADDRESS
357 if (cas_pci_enaddr(sc
, pa
, enaddr
) != 0)
358 aprint_error_dev(sc
->sc_dev
, "no Ethernet address found\n");
361 prom_getether(PCITAG_NODE(pa
->pa_tag
), enaddr
);
367 node
= pcidev_to_ofdev(pa
->pa_pc
, pa
->pa_tag
);
369 aprint_error_dev(sc
->sc_dev
, "unable to locate OpenFirmware node\n");
373 OF_getprop(node
, "local-mac-address", enaddr
, sizeof(enaddr
));
376 #endif /* __sparc__ */
378 sc
->sc_burst
= 16; /* XXX */
380 sc
->sc_att_stage
= CAS_ATT_BACKEND_0
;
382 if (pci_intr_map(pa
, &sc
->sc_handle
) != 0) {
383 aprint_error_dev(sc
->sc_dev
, "unable to map interrupt\n");
384 bus_space_unmap(sc
->sc_memt
, sc
->sc_memh
, sc
->sc_size
);
387 sc
->sc_pc
= pa
->pa_pc
;
388 if (!cas_estintr(sc
)) {
389 bus_space_unmap(sc
->sc_memt
, sc
->sc_memh
, sc
->sc_size
);
390 aprint_error_dev(sc
->sc_dev
, "unable to establish interrupt\n");
394 sc
->sc_att_stage
= CAS_ATT_BACKEND_1
;
397 * call the main configure
399 cas_config(sc
, enaddr
);
401 if (pmf_device_register1(sc
->sc_dev
,
402 cas_suspend
, cas_resume
, cas_shutdown
))
403 pmf_class_network_register(sc
->sc_dev
, &sc
->sc_ethercom
.ec_if
);
405 aprint_error_dev(sc
->sc_dev
,
406 "could not establish power handlers\n");
408 sc
->sc_att_stage
= CAS_ATT_FINISHED
;
415 * Attach a Cassini interface to the system.
418 cas_config(struct cas_softc
*sc
, const uint8_t *enaddr
)
420 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
421 struct mii_data
*mii
= &sc
->sc_mii
;
422 struct mii_softc
*child
;
425 /* Make sure the chip is stopped. */
430 * Allocate the control data structures, and create and load the
433 if ((error
= bus_dmamem_alloc(sc
->sc_dmatag
,
434 sizeof(struct cas_control_data
), CAS_PAGE_SIZE
, 0, &sc
->sc_cdseg
,
435 1, &sc
->sc_cdnseg
, 0)) != 0) {
436 aprint_error_dev(sc
->sc_dev
,
437 "unable to allocate control data, error = %d\n",
439 cas_partial_detach(sc
, CAS_ATT_0
);
442 /* XXX should map this in with correct endianness */
443 if ((error
= bus_dmamem_map(sc
->sc_dmatag
, &sc
->sc_cdseg
, sc
->sc_cdnseg
,
444 sizeof(struct cas_control_data
), (void **)&sc
->sc_control_data
,
445 BUS_DMA_COHERENT
)) != 0) {
446 aprint_error_dev(sc
->sc_dev
,
447 "unable to map control data, error = %d\n", error
);
448 cas_partial_detach(sc
, CAS_ATT_1
);
451 if ((error
= bus_dmamap_create(sc
->sc_dmatag
,
452 sizeof(struct cas_control_data
), 1,
453 sizeof(struct cas_control_data
), 0, 0, &sc
->sc_cddmamap
)) != 0) {
454 aprint_error_dev(sc
->sc_dev
,
455 "unable to create control data DMA map, error = %d\n", error
);
456 cas_partial_detach(sc
, CAS_ATT_2
);
459 if ((error
= bus_dmamap_load(sc
->sc_dmatag
, sc
->sc_cddmamap
,
460 sc
->sc_control_data
, sizeof(struct cas_control_data
), NULL
,
462 aprint_error_dev(sc
->sc_dev
,
463 "unable to load control data DMA map, error = %d\n",
465 cas_partial_detach(sc
, CAS_ATT_3
);
468 memset(sc
->sc_control_data
, 0, sizeof(struct cas_control_data
));
471 * Create the receive buffer DMA maps.
473 for (i
= 0; i
< CAS_NRXDESC
; i
++) {
474 bus_dma_segment_t seg
;
478 if ((error
= bus_dmamem_alloc(sc
->sc_dmatag
, CAS_PAGE_SIZE
,
479 CAS_PAGE_SIZE
, 0, &seg
, 1, &rseg
, BUS_DMA_NOWAIT
)) != 0) {
480 aprint_error_dev(sc
->sc_dev
,
481 "unable to alloc rx DMA mem %d, error = %d\n",
483 cas_partial_detach(sc
, CAS_ATT_5
);
485 sc
->sc_rxsoft
[i
].rxs_dmaseg
= seg
;
487 if ((error
= bus_dmamem_map(sc
->sc_dmatag
, &seg
, rseg
,
488 CAS_PAGE_SIZE
, (void **)&kva
, BUS_DMA_NOWAIT
)) != 0) {
489 aprint_error_dev(sc
->sc_dev
,
490 "unable to alloc rx DMA mem %d, error = %d\n",
492 cas_partial_detach(sc
, CAS_ATT_5
);
494 sc
->sc_rxsoft
[i
].rxs_kva
= kva
;
496 if ((error
= bus_dmamap_create(sc
->sc_dmatag
, CAS_PAGE_SIZE
, 1,
497 CAS_PAGE_SIZE
, 0, 0, &sc
->sc_rxsoft
[i
].rxs_dmamap
)) != 0) {
498 aprint_error_dev(sc
->sc_dev
,
499 "unable to create rx DMA map %d, error = %d\n",
501 cas_partial_detach(sc
, CAS_ATT_5
);
504 if ((error
= bus_dmamap_load(sc
->sc_dmatag
,
505 sc
->sc_rxsoft
[i
].rxs_dmamap
, kva
, CAS_PAGE_SIZE
, NULL
,
506 BUS_DMA_NOWAIT
)) != 0) {
507 aprint_error_dev(sc
->sc_dev
,
508 "unable to load rx DMA map %d, error = %d\n",
510 cas_partial_detach(sc
, CAS_ATT_5
);
515 * Create the transmit buffer DMA maps.
517 for (i
= 0; i
< CAS_NTXDESC
; i
++) {
518 if ((error
= bus_dmamap_create(sc
->sc_dmatag
, MCLBYTES
,
519 CAS_NTXSEGS
, MCLBYTES
, 0, BUS_DMA_NOWAIT
,
520 &sc
->sc_txd
[i
].sd_map
)) != 0) {
521 aprint_error_dev(sc
->sc_dev
,
522 "unable to create tx DMA map %d, error = %d\n",
524 cas_partial_detach(sc
, CAS_ATT_6
);
526 sc
->sc_txd
[i
].sd_mbuf
= NULL
;
530 * From this point forward, the attachment cannot fail. A failure
531 * before this point releases all resources that may have been
535 /* Announce ourselves. */
536 aprint_normal_dev(sc
->sc_dev
, "Ethernet address %s\n",
537 ether_sprintf(enaddr
));
539 /* Get RX FIFO size */
540 sc
->sc_rxfifosize
= 16 * 1024;
542 /* Initialize ifnet structure. */
543 strlcpy(ifp
->if_xname
, device_xname(sc
->sc_dev
), IFNAMSIZ
);
546 IFF_BROADCAST
| IFF_SIMPLEX
| IFF_NOTRAILERS
| IFF_MULTICAST
;
547 ifp
->if_start
= cas_start
;
548 ifp
->if_ioctl
= cas_ioctl
;
549 ifp
->if_watchdog
= cas_watchdog
;
550 ifp
->if_stop
= cas_stop
;
551 ifp
->if_init
= cas_init
;
552 IFQ_SET_MAXLEN(&ifp
->if_snd
, CAS_NTXDESC
- 1);
553 IFQ_SET_READY(&ifp
->if_snd
);
555 /* Initialize ifmedia structures and MII info */
557 mii
->mii_readreg
= cas_mii_readreg
;
558 mii
->mii_writereg
= cas_mii_writereg
;
559 mii
->mii_statchg
= cas_mii_statchg
;
561 ifmedia_init(&mii
->mii_media
, 0, cas_mediachange
, cas_mediastatus
);
562 sc
->sc_ethercom
.ec_mii
= mii
;
564 bus_space_write_4(sc
->sc_memt
, sc
->sc_memh
, CAS_MII_DATAPATH_MODE
, 0);
568 if (sc
->sc_mif_config
& CAS_MIF_CONFIG_MDI1
) {
569 sc
->sc_mif_config
|= CAS_MIF_CONFIG_PHY_SEL
;
570 bus_space_write_4(sc
->sc_memt
, sc
->sc_memh
,
571 CAS_MIF_CONFIG
, sc
->sc_mif_config
);
574 mii_attach(sc
->sc_dev
, mii
, 0xffffffff, MII_PHY_ANY
,
577 child
= LIST_FIRST(&mii
->mii_phys
);
579 sc
->sc_mif_config
& (CAS_MIF_CONFIG_MDI0
|CAS_MIF_CONFIG_MDI1
)) {
581 * Try the external PCS SERDES if we didn't find any
584 bus_space_write_4(sc
->sc_memt
, sc
->sc_memh
,
585 CAS_MII_DATAPATH_MODE
, CAS_MII_DATAPATH_SERDES
);
587 bus_space_write_4(sc
->sc_memt
, sc
->sc_memh
,
588 CAS_MII_CONFIG
, CAS_MII_CONFIG_ENABLE
);
590 mii
->mii_readreg
= cas_pcs_readreg
;
591 mii
->mii_writereg
= cas_pcs_writereg
;
593 mii_attach(sc
->sc_dev
, mii
, 0xffffffff, MII_PHY_ANY
,
594 MII_OFFSET_ANY
, MIIF_NOISOLATE
);
597 child
= LIST_FIRST(&mii
->mii_phys
);
599 /* No PHY attached */
600 ifmedia_add(&sc
->sc_media
, IFM_ETHER
|IFM_MANUAL
, 0, NULL
);
601 ifmedia_set(&sc
->sc_media
, IFM_ETHER
|IFM_MANUAL
);
604 * Walk along the list of attached MII devices and
605 * establish an `MII instance' to `phy number'
606 * mapping. We'll use this mapping in media change
607 * requests to determine which phy to use to program
608 * the MIF configuration register.
610 for (; child
!= NULL
; child
= LIST_NEXT(child
, mii_list
)) {
612 * Note: we support just two PHYs: the built-in
613 * internal device and an external on the MII
616 if (child
->mii_phy
> 1 || child
->mii_inst
> 1) {
617 aprint_error_dev(sc
->sc_dev
,
618 "cannot accommodate MII device %s"
619 " at phy %d, instance %d\n",
620 device_xname(child
->mii_dev
),
621 child
->mii_phy
, child
->mii_inst
);
625 sc
->sc_phys
[child
->mii_inst
] = child
->mii_phy
;
629 * XXX - we can really do the following ONLY if the
630 * phy indeed has the auto negotiation capability!!
632 ifmedia_set(&sc
->sc_media
, IFM_ETHER
|IFM_AUTO
);
635 /* claim 802.1q capability */
636 sc
->sc_ethercom
.ec_capabilities
|= ETHERCAP_VLAN_MTU
;
638 /* Attach the interface. */
640 ether_ifattach(ifp
, enaddr
);
643 rnd_attach_source(&sc
->rnd_source
, device_xname(sc
->sc_dev
),
647 evcnt_attach_dynamic(&sc
->sc_ev_intr
, EVCNT_TYPE_INTR
,
648 NULL
, device_xname(sc
->sc_dev
), "interrupts");
650 callout_init(&sc
->sc_tick_ch
, 0);
656 cas_detach(device_t self
, int flags
)
659 struct cas_softc
*sc
= device_private(self
);
660 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
663 * Free any resources we've allocated during the failed attach
664 * attempt. Do this in reverse order and fall through.
666 switch (sc
->sc_att_stage
) {
667 case CAS_ATT_FINISHED
:
668 pmf_device_deregister(self
);
669 cas_stop(&sc
->sc_ethercom
.ec_if
, 1);
670 evcnt_detach(&sc
->sc_ev_intr
);
673 rnd_detach_source(&sc
->rnd_source
);
678 ifmedia_delete_instance(&sc
->sc_mii
.mii_media
, IFM_INST_ANY
);
680 callout_destroy(&sc
->sc_tick_ch
);
682 mii_detach(&sc
->sc_mii
, MII_PHY_ANY
, MII_OFFSET_ANY
);
688 for (i
= 0; i
< CAS_NTXDESC
; i
++) {
689 if (sc
->sc_txd
[i
].sd_map
!= NULL
)
690 bus_dmamap_destroy(sc
->sc_dmatag
,
691 sc
->sc_txd
[i
].sd_map
);
695 for (i
= 0; i
< CAS_NRXDESC
; i
++) {
696 if (sc
->sc_rxsoft
[i
].rxs_dmamap
!= NULL
)
697 bus_dmamap_unload(sc
->sc_dmatag
,
698 sc
->sc_rxsoft
[i
].rxs_dmamap
);
699 if (sc
->sc_rxsoft
[i
].rxs_dmamap
!= NULL
)
700 bus_dmamap_destroy(sc
->sc_dmatag
,
701 sc
->sc_rxsoft
[i
].rxs_dmamap
);
702 if (sc
->sc_rxsoft
[i
].rxs_kva
!= NULL
)
703 bus_dmamem_unmap(sc
->sc_dmatag
,
704 sc
->sc_rxsoft
[i
].rxs_kva
, CAS_PAGE_SIZE
);
705 /* XXX need to check that bus_dmamem_alloc suceeded
706 if (sc->sc_rxsoft[i].rxs_dmaseg != NULL)
708 bus_dmamem_free(sc
->sc_dmatag
,
709 &(sc
->sc_rxsoft
[i
].rxs_dmaseg
), 1);
711 bus_dmamap_unload(sc
->sc_dmatag
, sc
->sc_cddmamap
);
715 bus_dmamap_destroy(sc
->sc_dmatag
, sc
->sc_cddmamap
);
718 bus_dmamem_unmap(sc
->sc_dmatag
, sc
->sc_control_data
,
719 sizeof(struct cas_control_data
));
722 bus_dmamem_free(sc
->sc_dmatag
, &sc
->sc_cdseg
, sc
->sc_cdnseg
);
725 sc
->sc_att_stage
= CAS_ATT_0
;
727 case CAS_ATT_BACKEND_2
:
728 case CAS_ATT_BACKEND_1
:
729 if (sc
->sc_ih
!= NULL
) {
730 pci_intr_disestablish(sc
->sc_pc
, sc
->sc_ih
);
733 bus_space_unmap(sc
->sc_memt
, sc
->sc_memh
, sc
->sc_size
);
735 case CAS_ATT_BACKEND_0
:
742 cas_partial_detach(struct cas_softc
*sc
, enum cas_attach_stage stage
)
744 cfattach_t ca
= device_cfattach(sc
->sc_dev
);
746 sc
->sc_att_stage
= stage
;
747 (*ca
->ca_detach
)(sc
->sc_dev
, 0);
753 struct cas_softc
*sc
= arg
;
754 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
755 bus_space_tag_t t
= sc
->sc_memt
;
756 bus_space_handle_t mac
= sc
->sc_memh
;
760 /* unload collisions counters */
761 v
= bus_space_read_4(t
, mac
, CAS_MAC_EXCESS_COLL_CNT
) +
762 bus_space_read_4(t
, mac
, CAS_MAC_LATE_COLL_CNT
);
763 ifp
->if_collisions
+= v
+
764 bus_space_read_4(t
, mac
, CAS_MAC_NORM_COLL_CNT
) +
765 bus_space_read_4(t
, mac
, CAS_MAC_FIRST_COLL_CNT
);
766 ifp
->if_oerrors
+= v
;
768 /* read error counters */
770 bus_space_read_4(t
, mac
, CAS_MAC_RX_LEN_ERR_CNT
) +
771 bus_space_read_4(t
, mac
, CAS_MAC_RX_ALIGN_ERR
) +
772 bus_space_read_4(t
, mac
, CAS_MAC_RX_CRC_ERR_CNT
) +
773 bus_space_read_4(t
, mac
, CAS_MAC_RX_CODE_VIOL
);
775 /* clear the hardware counters */
776 bus_space_write_4(t
, mac
, CAS_MAC_NORM_COLL_CNT
, 0);
777 bus_space_write_4(t
, mac
, CAS_MAC_FIRST_COLL_CNT
, 0);
778 bus_space_write_4(t
, mac
, CAS_MAC_EXCESS_COLL_CNT
, 0);
779 bus_space_write_4(t
, mac
, CAS_MAC_LATE_COLL_CNT
, 0);
780 bus_space_write_4(t
, mac
, CAS_MAC_RX_LEN_ERR_CNT
, 0);
781 bus_space_write_4(t
, mac
, CAS_MAC_RX_ALIGN_ERR
, 0);
782 bus_space_write_4(t
, mac
, CAS_MAC_RX_CRC_ERR_CNT
, 0);
783 bus_space_write_4(t
, mac
, CAS_MAC_RX_CODE_VIOL
, 0);
786 mii_tick(&sc
->sc_mii
);
789 callout_reset(&sc
->sc_tick_ch
, hz
, cas_tick
, sc
);
793 cas_bitwait(struct cas_softc
*sc
, bus_space_handle_t h
, int r
,
794 u_int32_t clr
, u_int32_t set
)
799 for (i
= TRIES
; i
--; DELAY(100)) {
800 reg
= bus_space_read_4(sc
->sc_memt
, h
, r
);
801 if ((reg
& clr
) == 0 && (reg
& set
) == set
)
809 cas_reset(struct cas_softc
*sc
)
811 bus_space_tag_t t
= sc
->sc_memt
;
812 bus_space_handle_t h
= sc
->sc_memh
;
816 DPRINTF(sc
, ("%s: cas_reset\n", device_xname(sc
->sc_dev
)));
820 /* Do a full reset */
821 bus_space_write_4(t
, h
, CAS_RESET
,
822 CAS_RESET_RX
| CAS_RESET_TX
| CAS_RESET_BLOCK_PCS
);
823 if (!cas_bitwait(sc
, h
, CAS_RESET
, CAS_RESET_RX
| CAS_RESET_TX
, 0))
824 aprint_error_dev(sc
->sc_dev
, "cannot reset device\n");
832 * Drain the receive queue.
835 cas_rxdrain(struct cas_softc
*sc
)
837 /* Nothing to do yet. */
841 * Reset the whole thing.
844 cas_stop(struct ifnet
*ifp
, int disable
)
846 struct cas_softc
*sc
= (struct cas_softc
*)ifp
->if_softc
;
850 DPRINTF(sc
, ("%s: cas_stop\n", device_xname(sc
->sc_dev
)));
852 callout_stop(&sc
->sc_tick_ch
);
855 * Mark the interface down and cancel the watchdog timer.
857 ifp
->if_flags
&= ~(IFF_RUNNING
| IFF_OACTIVE
);
860 mii_down(&sc
->sc_mii
);
866 * Release any queued transmit buffers.
868 for (i
= 0; i
< CAS_NTXDESC
; i
++) {
870 if (sd
->sd_mbuf
!= NULL
) {
871 bus_dmamap_sync(sc
->sc_dmatag
, sd
->sd_map
, 0,
872 sd
->sd_map
->dm_mapsize
, BUS_DMASYNC_POSTWRITE
);
873 bus_dmamap_unload(sc
->sc_dmatag
, sd
->sd_map
);
874 m_freem(sd
->sd_mbuf
);
878 sc
->sc_tx_cnt
= sc
->sc_tx_prod
= sc
->sc_tx_cons
= 0;
889 cas_reset_rx(struct cas_softc
*sc
)
891 bus_space_tag_t t
= sc
->sc_memt
;
892 bus_space_handle_t h
= sc
->sc_memh
;
895 * Resetting while DMA is in progress can cause a bus hang, so we
899 bus_space_write_4(t
, h
, CAS_RX_CONFIG
, 0);
900 /* Wait till it finishes */
901 if (!cas_bitwait(sc
, h
, CAS_RX_CONFIG
, 1, 0))
902 aprint_error_dev(sc
->sc_dev
, "cannot disable rx dma\n");
903 /* Wait 5ms extra. */
906 /* Finally, reset the ERX */
907 bus_space_write_4(t
, h
, CAS_RESET
, CAS_RESET_RX
);
908 /* Wait till it finishes */
909 if (!cas_bitwait(sc
, h
, CAS_RESET
, CAS_RESET_RX
, 0)) {
910 aprint_error_dev(sc
->sc_dev
, "cannot reset receiver\n");
918 * Reset the transmitter
921 cas_reset_tx(struct cas_softc
*sc
)
923 bus_space_tag_t t
= sc
->sc_memt
;
924 bus_space_handle_t h
= sc
->sc_memh
;
927 * Resetting while DMA is in progress can cause a bus hang, so we
931 bus_space_write_4(t
, h
, CAS_TX_CONFIG
, 0);
932 /* Wait till it finishes */
933 if (!cas_bitwait(sc
, h
, CAS_TX_CONFIG
, 1, 0))
934 aprint_error_dev(sc
->sc_dev
, "cannot disable tx dma\n");
935 /* Wait 5ms extra. */
938 /* Finally, reset the ETX */
939 bus_space_write_4(t
, h
, CAS_RESET
, CAS_RESET_TX
);
940 /* Wait till it finishes */
941 if (!cas_bitwait(sc
, h
, CAS_RESET
, CAS_RESET_TX
, 0)) {
942 aprint_error_dev(sc
->sc_dev
, "cannot reset transmitter\n");
952 cas_disable_rx(struct cas_softc
*sc
)
954 bus_space_tag_t t
= sc
->sc_memt
;
955 bus_space_handle_t h
= sc
->sc_memh
;
958 /* Flip the enable bit */
959 cfg
= bus_space_read_4(t
, h
, CAS_MAC_RX_CONFIG
);
960 cfg
&= ~CAS_MAC_RX_ENABLE
;
961 bus_space_write_4(t
, h
, CAS_MAC_RX_CONFIG
, cfg
);
963 /* Wait for it to finish */
964 return (cas_bitwait(sc
, h
, CAS_MAC_RX_CONFIG
, CAS_MAC_RX_ENABLE
, 0));
968 * Disable transmitter.
971 cas_disable_tx(struct cas_softc
*sc
)
973 bus_space_tag_t t
= sc
->sc_memt
;
974 bus_space_handle_t h
= sc
->sc_memh
;
977 /* Flip the enable bit */
978 cfg
= bus_space_read_4(t
, h
, CAS_MAC_TX_CONFIG
);
979 cfg
&= ~CAS_MAC_TX_ENABLE
;
980 bus_space_write_4(t
, h
, CAS_MAC_TX_CONFIG
, cfg
);
982 /* Wait for it to finish */
983 return (cas_bitwait(sc
, h
, CAS_MAC_TX_CONFIG
, CAS_MAC_TX_ENABLE
, 0));
987 * Initialize interface.
990 cas_meminit(struct cas_softc
*sc
)
992 struct cas_rxsoft
*rxs
;
995 rxs
= (void *)&error
;
998 * Initialize the transmit descriptor ring.
1000 for (i
= 0; i
< CAS_NTXDESC
; i
++) {
1001 sc
->sc_txdescs
[i
].cd_flags
= 0;
1002 sc
->sc_txdescs
[i
].cd_addr
= 0;
1004 CAS_CDTXSYNC(sc
, 0, CAS_NTXDESC
,
1005 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
1008 * Initialize the receive descriptor and receive job
1011 for (i
= 0; i
< CAS_NRXDESC
; i
++)
1012 CAS_INIT_RXDESC(sc
, i
, i
);
1017 * Initialize the receive completion ring.
1019 for (i
= 0; i
< CAS_NRXCOMP
; i
++) {
1020 sc
->sc_rxcomps
[i
].cc_word
[0] = 0;
1021 sc
->sc_rxcomps
[i
].cc_word
[1] = 0;
1022 sc
->sc_rxcomps
[i
].cc_word
[2] = 0;
1023 sc
->sc_rxcomps
[i
].cc_word
[3] = CAS_DMA_WRITE(CAS_RC3_OWN
);
1024 CAS_CDRXCSYNC(sc
, i
,
1025 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
1032 cas_ringsize(int sz
)
1036 return CAS_RING_SZ_32
;
1038 return CAS_RING_SZ_64
;
1040 return CAS_RING_SZ_128
;
1042 return CAS_RING_SZ_256
;
1044 return CAS_RING_SZ_512
;
1046 return CAS_RING_SZ_1024
;
1048 return CAS_RING_SZ_2048
;
1050 return CAS_RING_SZ_4096
;
1052 return CAS_RING_SZ_8192
;
1054 aprint_error("cas: invalid Receive Descriptor ring size %d\n",
1056 return CAS_RING_SZ_32
;
1061 cas_cringsize(int sz
)
1065 for (i
= 0; i
< 9; i
++)
1066 if (sz
== (128 << i
))
1069 aprint_error("cas: invalid completion ring size %d\n", sz
);
1074 * Initialization of interface; set up initialization block
1075 * and transmit/receive descriptor rings.
1078 cas_init(struct ifnet
*ifp
)
1080 struct cas_softc
*sc
= (struct cas_softc
*)ifp
->if_softc
;
1081 bus_space_tag_t t
= sc
->sc_memt
;
1082 bus_space_handle_t h
= sc
->sc_memh
;
1084 u_int max_frame_size
;
1089 DPRINTF(sc
, ("%s: cas_init: calling stop\n", device_xname(sc
->sc_dev
)));
1091 * Initialization sequence. The numbered steps below correspond
1092 * to the sequence outlined in section 6.3.5.1 in the Ethernet
1093 * Channel Engine manual (part of the PCIO manual).
1094 * See also the STP2002-STQ document from Sun Microsystems.
1097 /* step 1 & 2. Reset the Ethernet Channel */
1100 DPRINTF(sc
, ("%s: cas_init: restarting\n", device_xname(sc
->sc_dev
)));
1102 /* Re-initialize the MIF */
1105 /* step 3. Setup data structures in host memory */
1108 /* step 4. TX MAC registers & counters */
1110 max_frame_size
= ETHER_MAX_LEN
+ ETHER_VLAN_ENCAP_LEN
;
1111 v
= (max_frame_size
) | (0x2000 << 16) /* Burst size */;
1112 bus_space_write_4(t
, h
, CAS_MAC_MAC_MAX_FRAME
, v
);
1114 /* step 5. RX MAC registers & counters */
1117 /* step 6 & 7. Program Descriptor Ring Base Addresses */
1118 KASSERT((CAS_CDTXADDR(sc
, 0) & 0x1fff) == 0);
1119 bus_space_write_4(t
, h
, CAS_TX_RING_PTR_HI
,
1120 (((uint64_t)CAS_CDTXADDR(sc
,0)) >> 32));
1121 bus_space_write_4(t
, h
, CAS_TX_RING_PTR_LO
, CAS_CDTXADDR(sc
, 0));
1123 KASSERT((CAS_CDRXADDR(sc
, 0) & 0x1fff) == 0);
1124 bus_space_write_4(t
, h
, CAS_RX_DRING_PTR_HI
,
1125 (((uint64_t)CAS_CDRXADDR(sc
,0)) >> 32));
1126 bus_space_write_4(t
, h
, CAS_RX_DRING_PTR_LO
, CAS_CDRXADDR(sc
, 0));
1128 KASSERT((CAS_CDRXCADDR(sc
, 0) & 0x1fff) == 0);
1129 bus_space_write_4(t
, h
, CAS_RX_CRING_PTR_HI
,
1130 (((uint64_t)CAS_CDRXCADDR(sc
,0)) >> 32));
1131 bus_space_write_4(t
, h
, CAS_RX_CRING_PTR_LO
, CAS_CDRXCADDR(sc
, 0));
1134 KASSERT((CAS_CDRXADDR2(sc
, 0) & 0x1fff) == 0);
1135 bus_space_write_4(t
, h
, CAS_RX_DRING_PTR_HI2
,
1136 (((uint64_t)CAS_CDRXADDR2(sc
,0)) >> 32));
1137 bus_space_write_4(t
, h
, CAS_RX_DRING_PTR_LO2
,
1138 CAS_CDRXADDR2(sc
, 0));
1141 /* step 8. Global Configuration & Interrupt Mask */
1142 bus_space_write_4(t
, h
, CAS_INTMASK
,
1143 ~(CAS_INTR_TX_INTME
|CAS_INTR_TX_EMPTY
|
1144 CAS_INTR_TX_TAG_ERR
|
1145 CAS_INTR_RX_DONE
|CAS_INTR_RX_NOBUF
|
1146 CAS_INTR_RX_TAG_ERR
|
1147 CAS_INTR_RX_COMP_FULL
|CAS_INTR_PCS
|
1148 CAS_INTR_MAC_CONTROL
|CAS_INTR_MIF
|
1150 bus_space_write_4(t
, h
, CAS_MAC_RX_MASK
,
1151 CAS_MAC_RX_DONE
|CAS_MAC_RX_FRAME_CNT
);
1152 bus_space_write_4(t
, h
, CAS_MAC_TX_MASK
, CAS_MAC_TX_XMIT_DONE
);
1153 bus_space_write_4(t
, h
, CAS_MAC_CONTROL_MASK
, 0); /* XXXX */
1155 /* step 9. ETX Configuration: use mostly default values */
1158 v
= cas_ringsize(CAS_NTXDESC
/*XXX*/) << 10;
1159 bus_space_write_4(t
, h
, CAS_TX_CONFIG
,
1160 v
|CAS_TX_CONFIG_TXDMA_EN
|(1<<24)|(1<<29));
1161 bus_space_write_4(t
, h
, CAS_TX_KICK
, 0);
1163 /* step 10. ERX Configuration */
1165 /* Encode Receive Descriptor ring size */
1166 v
= cas_ringsize(CAS_NRXDESC
) << CAS_RX_CONFIG_RXDRNG_SZ_SHIFT
;
1168 v
|= cas_ringsize(32) << CAS_RX_CONFIG_RXDRNG2_SZ_SHIFT
;
1170 /* Encode Receive Completion ring size */
1171 v
|= cas_cringsize(CAS_NRXCOMP
) << CAS_RX_CONFIG_RXCRNG_SZ_SHIFT
;
1174 bus_space_write_4(t
, h
, CAS_RX_CONFIG
,
1175 v
|(2<<CAS_RX_CONFIG_FBOFF_SHFT
)|CAS_RX_CONFIG_RXDMA_EN
);
1178 * The following value is for an OFF Threshold of about 3/4 full
1179 * and an ON Threshold of 1/4 full.
1181 bus_space_write_4(t
, h
, CAS_RX_PAUSE_THRESH
,
1182 (3 * sc
->sc_rxfifosize
/ 256) |
1183 ((sc
->sc_rxfifosize
/ 256) << 12));
1184 bus_space_write_4(t
, h
, CAS_RX_BLANKING
, (6 << 12) | 6);
1186 /* step 11. Configure Media */
1187 mii_ifmedia_change(&sc
->sc_mii
);
1189 /* step 12. RX_MAC Configuration Register */
1190 v
= bus_space_read_4(t
, h
, CAS_MAC_RX_CONFIG
);
1191 v
|= CAS_MAC_RX_ENABLE
| CAS_MAC_RX_STRIP_CRC
;
1192 bus_space_write_4(t
, h
, CAS_MAC_RX_CONFIG
, v
);
1194 /* step 14. Issue Transmit Pending command */
1196 /* step 15. Give the receiver a swift kick */
1197 bus_space_write_4(t
, h
, CAS_RX_KICK
, CAS_NRXDESC
-4);
1199 bus_space_write_4(t
, h
, CAS_RX_KICK2
, 4);
1201 /* Start the one second timer. */
1202 callout_reset(&sc
->sc_tick_ch
, hz
, cas_tick
, sc
);
1204 ifp
->if_flags
|= IFF_RUNNING
;
1205 ifp
->if_flags
&= ~IFF_OACTIVE
;
1213 cas_init_regs(struct cas_softc
*sc
)
1215 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
1216 bus_space_tag_t t
= sc
->sc_memt
;
1217 bus_space_handle_t h
= sc
->sc_memh
;
1218 const u_char
*laddr
= CLLADDR(ifp
->if_sadl
);
1221 /* These regs are not cleared on reset */
1223 if (!sc
->sc_inited
) {
1224 /* Load recommended values */
1225 bus_space_write_4(t
, h
, CAS_MAC_IPG0
, 0x00);
1226 bus_space_write_4(t
, h
, CAS_MAC_IPG1
, 0x08);
1227 bus_space_write_4(t
, h
, CAS_MAC_IPG2
, 0x04);
1229 bus_space_write_4(t
, h
, CAS_MAC_MAC_MIN_FRAME
, ETHER_MIN_LEN
);
1230 /* Max frame and max burst size */
1231 v
= ETHER_MAX_LEN
| (0x2000 << 16) /* Burst size */;
1232 bus_space_write_4(t
, h
, CAS_MAC_MAC_MAX_FRAME
, v
);
1234 bus_space_write_4(t
, h
, CAS_MAC_PREAMBLE_LEN
, 0x07);
1235 bus_space_write_4(t
, h
, CAS_MAC_JAM_SIZE
, 0x04);
1236 bus_space_write_4(t
, h
, CAS_MAC_ATTEMPT_LIMIT
, 0x10);
1237 bus_space_write_4(t
, h
, CAS_MAC_CONTROL_TYPE
, 0x8088);
1238 bus_space_write_4(t
, h
, CAS_MAC_RANDOM_SEED
,
1239 ((laddr
[5]<<8)|laddr
[4])&0x3ff);
1241 /* Secondary MAC addresses set to 0:0:0:0:0:0 */
1242 for (r
= CAS_MAC_ADDR3
; r
< CAS_MAC_ADDR42
; r
+= 4)
1243 bus_space_write_4(t
, h
, r
, 0);
1245 /* MAC control addr set to 0:1:c2:0:1:80 */
1246 bus_space_write_4(t
, h
, CAS_MAC_ADDR42
, 0x0001);
1247 bus_space_write_4(t
, h
, CAS_MAC_ADDR43
, 0xc200);
1248 bus_space_write_4(t
, h
, CAS_MAC_ADDR44
, 0x0180);
1250 /* MAC filter addr set to 0:0:0:0:0:0 */
1251 bus_space_write_4(t
, h
, CAS_MAC_ADDR_FILTER0
, 0);
1252 bus_space_write_4(t
, h
, CAS_MAC_ADDR_FILTER1
, 0);
1253 bus_space_write_4(t
, h
, CAS_MAC_ADDR_FILTER2
, 0);
1255 bus_space_write_4(t
, h
, CAS_MAC_ADR_FLT_MASK1_2
, 0);
1256 bus_space_write_4(t
, h
, CAS_MAC_ADR_FLT_MASK0
, 0);
1258 /* Hash table initialized to 0 */
1259 for (r
= CAS_MAC_HASH0
; r
<= CAS_MAC_HASH15
; r
+= 4)
1260 bus_space_write_4(t
, h
, r
, 0);
1265 /* Counters need to be zeroed */
1266 bus_space_write_4(t
, h
, CAS_MAC_NORM_COLL_CNT
, 0);
1267 bus_space_write_4(t
, h
, CAS_MAC_FIRST_COLL_CNT
, 0);
1268 bus_space_write_4(t
, h
, CAS_MAC_EXCESS_COLL_CNT
, 0);
1269 bus_space_write_4(t
, h
, CAS_MAC_LATE_COLL_CNT
, 0);
1270 bus_space_write_4(t
, h
, CAS_MAC_DEFER_TMR_CNT
, 0);
1271 bus_space_write_4(t
, h
, CAS_MAC_PEAK_ATTEMPTS
, 0);
1272 bus_space_write_4(t
, h
, CAS_MAC_RX_FRAME_COUNT
, 0);
1273 bus_space_write_4(t
, h
, CAS_MAC_RX_LEN_ERR_CNT
, 0);
1274 bus_space_write_4(t
, h
, CAS_MAC_RX_ALIGN_ERR
, 0);
1275 bus_space_write_4(t
, h
, CAS_MAC_RX_CRC_ERR_CNT
, 0);
1276 bus_space_write_4(t
, h
, CAS_MAC_RX_CODE_VIOL
, 0);
1278 /* Un-pause stuff */
1279 bus_space_write_4(t
, h
, CAS_MAC_SEND_PAUSE_CMD
, 0);
1282 * Set the station address.
1284 bus_space_write_4(t
, h
, CAS_MAC_ADDR0
, (laddr
[4]<<8) | laddr
[5]);
1285 bus_space_write_4(t
, h
, CAS_MAC_ADDR1
, (laddr
[2]<<8) | laddr
[3]);
1286 bus_space_write_4(t
, h
, CAS_MAC_ADDR2
, (laddr
[0]<<8) | laddr
[1]);
1290 * Receive interrupt.
1293 cas_rint(struct cas_softc
*sc
)
1295 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
1296 bus_space_tag_t t
= sc
->sc_memt
;
1297 bus_space_handle_t h
= sc
->sc_memh
;
1298 struct cas_rxsoft
*rxs
;
1305 for (i
= sc
->sc_rxptr
;; i
= CAS_NEXTRX(i
+ skip
)) {
1306 CAS_CDRXCSYNC(sc
, i
,
1307 BUS_DMASYNC_POSTREAD
|BUS_DMASYNC_POSTWRITE
);
1309 word
[0] = CAS_DMA_READ(sc
->sc_rxcomps
[i
].cc_word
[0]);
1310 word
[1] = CAS_DMA_READ(sc
->sc_rxcomps
[i
].cc_word
[1]);
1311 word
[2] = CAS_DMA_READ(sc
->sc_rxcomps
[i
].cc_word
[2]);
1312 word
[3] = CAS_DMA_READ(sc
->sc_rxcomps
[i
].cc_word
[3]);
1314 /* Stop if the hardware still owns the descriptor. */
1315 if ((word
[0] & CAS_RC0_TYPE
) == 0 || word
[3] & CAS_RC3_OWN
)
1318 len
= CAS_RC1_HDR_LEN(word
[1]);
1320 off
= CAS_RC1_HDR_OFF(word
[1]);
1321 idx
= CAS_RC1_HDR_IDX(word
[1]);
1322 rxs
= &sc
->sc_rxsoft
[idx
];
1324 DPRINTF(sc
, ("hdr at idx %d, off %d, len %d\n",
1327 bus_dmamap_sync(sc
->sc_dmatag
, rxs
->rxs_dmamap
, 0,
1328 rxs
->rxs_dmamap
->dm_mapsize
, BUS_DMASYNC_POSTREAD
);
1330 cp
= rxs
->rxs_kva
+ off
* 256 + ETHER_ALIGN
;
1331 m
= m_devget(cp
, len
, 0, ifp
, NULL
);
1333 if (word
[0] & CAS_RC0_RELEASE_HDR
)
1334 cas_add_rxbuf(sc
, idx
);
1340 * Pass this up to any BPF listeners, but only
1341 * pass it up the stack if its for us.
1344 bpf_mtap(ifp
->if_bpf
, m
);
1345 #endif /* NBPFILTER > 0 */
1348 m
->m_pkthdr
.csum_flags
= 0;
1349 (*ifp
->if_input
)(ifp
, m
);
1354 len
= CAS_RC0_DATA_LEN(word
[0]);
1356 off
= CAS_RC0_DATA_OFF(word
[0]);
1357 idx
= CAS_RC0_DATA_IDX(word
[0]);
1358 rxs
= &sc
->sc_rxsoft
[idx
];
1360 DPRINTF(sc
, ("data at idx %d, off %d, len %d\n",
1363 bus_dmamap_sync(sc
->sc_dmatag
, rxs
->rxs_dmamap
, 0,
1364 rxs
->rxs_dmamap
->dm_mapsize
, BUS_DMASYNC_POSTREAD
);
1366 /* XXX We should not be copying the packet here. */
1367 cp
= rxs
->rxs_kva
+ off
+ ETHER_ALIGN
;
1368 m
= m_devget(cp
, len
, 0, ifp
, NULL
);
1370 if (word
[0] & CAS_RC0_RELEASE_DATA
)
1371 cas_add_rxbuf(sc
, idx
);
1376 * Pass this up to any BPF listeners, but only
1377 * pass it up the stack if its for us.
1380 bpf_mtap(ifp
->if_bpf
, m
);
1381 #endif /* NBPFILTER > 0 */
1384 m
->m_pkthdr
.csum_flags
= 0;
1385 (*ifp
->if_input
)(ifp
, m
);
1390 if (word
[0] & CAS_RC0_SPLIT
)
1391 aprint_error_dev(sc
->sc_dev
, "split packet\n");
1393 skip
= CAS_RC0_SKIP(word
[0]);
1396 while (sc
->sc_rxptr
!= i
) {
1397 sc
->sc_rxcomps
[sc
->sc_rxptr
].cc_word
[0] = 0;
1398 sc
->sc_rxcomps
[sc
->sc_rxptr
].cc_word
[1] = 0;
1399 sc
->sc_rxcomps
[sc
->sc_rxptr
].cc_word
[2] = 0;
1400 sc
->sc_rxcomps
[sc
->sc_rxptr
].cc_word
[3] =
1401 CAS_DMA_WRITE(CAS_RC3_OWN
);
1402 CAS_CDRXCSYNC(sc
, sc
->sc_rxptr
,
1403 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
1405 sc
->sc_rxptr
= CAS_NEXTRX(sc
->sc_rxptr
);
1408 bus_space_write_4(t
, h
, CAS_RX_COMP_TAIL
, sc
->sc_rxptr
);
1410 DPRINTF(sc
, ("cas_rint: done sc->rxptr %d, complete %d\n",
1411 sc
->sc_rxptr
, bus_space_read_4(t
, h
, CAS_RX_COMPLETION
)));
1419 * Add a receive buffer to the indicated descriptor.
1422 cas_add_rxbuf(struct cas_softc
*sc
, int idx
)
1424 bus_space_tag_t t
= sc
->sc_memt
;
1425 bus_space_handle_t h
= sc
->sc_memh
;
1427 CAS_INIT_RXDESC(sc
, sc
->sc_rxdptr
, idx
);
1429 if ((sc
->sc_rxdptr
% 4) == 0)
1430 bus_space_write_4(t
, h
, CAS_RX_KICK
, sc
->sc_rxdptr
);
1432 if (++sc
->sc_rxdptr
== CAS_NRXDESC
)
1439 cas_eint(struct cas_softc
*sc
, u_int status
)
1442 if ((status
& CAS_INTR_MIF
) != 0) {
1443 DPRINTF(sc
, ("%s: link status changed\n",
1444 device_xname(sc
->sc_dev
)));
1448 snprintb(bits
, sizeof(bits
), CAS_INTR_BITS
, status
);
1449 printf("%s: status=%s\n", device_xname(sc
->sc_dev
), bits
);
1454 cas_pint(struct cas_softc
*sc
)
1456 bus_space_tag_t t
= sc
->sc_memt
;
1457 bus_space_handle_t seb
= sc
->sc_memh
;
1460 status
= bus_space_read_4(t
, seb
, CAS_MII_INTERRUP_STATUS
);
1461 status
|= bus_space_read_4(t
, seb
, CAS_MII_INTERRUP_STATUS
);
1464 printf("%s: link status changed\n", device_xname(sc
->sc_dev
));
1472 struct cas_softc
*sc
= (struct cas_softc
*)v
;
1473 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
1474 bus_space_tag_t t
= sc
->sc_memt
;
1475 bus_space_handle_t seb
= sc
->sc_memh
;
1482 sc
->sc_ev_intr
.ev_count
++;
1484 status
= bus_space_read_4(t
, seb
, CAS_STATUS
);
1486 snprintb(bits
, sizeof(bits
), CAS_INTR_BITS
, status
);
1488 DPRINTF(sc
, ("%s: cas_intr: cplt %x status %s\n",
1489 device_xname(sc
->sc_dev
), (status
>>19), bits
));
1491 if ((status
& CAS_INTR_PCS
) != 0)
1494 if ((status
& (CAS_INTR_TX_TAG_ERR
| CAS_INTR_RX_TAG_ERR
|
1495 CAS_INTR_RX_COMP_FULL
| CAS_INTR_BERR
)) != 0)
1496 r
|= cas_eint(sc
, status
);
1498 if ((status
& (CAS_INTR_TX_EMPTY
| CAS_INTR_TX_INTME
)) != 0)
1499 r
|= cas_tint(sc
, status
);
1501 if ((status
& (CAS_INTR_RX_DONE
| CAS_INTR_RX_NOBUF
)) != 0)
1504 /* We should eventually do more than just print out error stats. */
1505 if (status
& CAS_INTR_TX_MAC
) {
1506 int txstat
= bus_space_read_4(t
, seb
, CAS_MAC_TX_STATUS
);
1508 if (txstat
& ~CAS_MAC_TX_XMIT_DONE
)
1509 printf("%s: MAC tx fault, status %x\n",
1510 device_xname(sc
->sc_dev
), txstat
);
1512 if (txstat
& (CAS_MAC_TX_UNDERRUN
| CAS_MAC_TX_PKT_TOO_LONG
))
1515 if (status
& CAS_INTR_RX_MAC
) {
1516 int rxstat
= bus_space_read_4(t
, seb
, CAS_MAC_RX_STATUS
);
1518 if (rxstat
& ~CAS_MAC_RX_DONE
)
1519 printf("%s: MAC rx fault, status %x\n",
1520 device_xname(sc
->sc_dev
), rxstat
);
1523 * On some chip revisions CAS_MAC_RX_OVERFLOW happen often
1524 * due to a silicon bug so handle them silently.
1526 if (rxstat
& CAS_MAC_RX_OVERFLOW
) {
1531 else if (rxstat
& ~(CAS_MAC_RX_DONE
| CAS_MAC_RX_FRAME_CNT
))
1532 printf("%s: MAC rx fault, status %x\n",
1533 device_xname(sc
->sc_dev
), rxstat
);
1537 rnd_add_uint32(&sc
->rnd_source
, status
);
1544 cas_watchdog(struct ifnet
*ifp
)
1546 struct cas_softc
*sc
= ifp
->if_softc
;
1548 DPRINTF(sc
, ("cas_watchdog: CAS_RX_CONFIG %x CAS_MAC_RX_STATUS %x "
1549 "CAS_MAC_RX_CONFIG %x\n",
1550 bus_space_read_4(sc
->sc_memt
, sc
->sc_memh
, CAS_RX_CONFIG
),
1551 bus_space_read_4(sc
->sc_memt
, sc
->sc_memh
, CAS_MAC_RX_STATUS
),
1552 bus_space_read_4(sc
->sc_memt
, sc
->sc_memh
, CAS_MAC_RX_CONFIG
)));
1554 log(LOG_ERR
, "%s: device timeout\n", device_xname(sc
->sc_dev
));
1557 /* Try to get more packets going. */
1562 * Initialize the MII Management Interface
1565 cas_mifinit(struct cas_softc
*sc
)
1567 bus_space_tag_t t
= sc
->sc_memt
;
1568 bus_space_handle_t mif
= sc
->sc_memh
;
1570 /* Configure the MIF in frame mode */
1571 sc
->sc_mif_config
= bus_space_read_4(t
, mif
, CAS_MIF_CONFIG
);
1572 sc
->sc_mif_config
&= ~CAS_MIF_CONFIG_BB_ENA
;
1573 bus_space_write_4(t
, mif
, CAS_MIF_CONFIG
, sc
->sc_mif_config
);
1579 * The Cassini MII interface supports at least three different operating modes:
1581 * Bitbang mode is implemented using data, clock and output enable registers.
1583 * Frame mode is implemented by loading a complete frame into the frame
1584 * register and polling the valid bit for completion.
1586 * Polling mode uses the frame register but completion is indicated by
1591 cas_mii_readreg(device_t self
, int phy
, int reg
)
1593 struct cas_softc
*sc
= device_private(self
);
1594 bus_space_tag_t t
= sc
->sc_memt
;
1595 bus_space_handle_t mif
= sc
->sc_memh
;
1601 printf("cas_mii_readreg: phy %d reg %d\n", phy
, reg
);
1604 /* Construct the frame command */
1605 v
= (reg
<< CAS_MIF_REG_SHIFT
) | (phy
<< CAS_MIF_PHY_SHIFT
) |
1608 bus_space_write_4(t
, mif
, CAS_MIF_FRAME
, v
);
1609 for (n
= 0; n
< 100; n
++) {
1611 v
= bus_space_read_4(t
, mif
, CAS_MIF_FRAME
);
1612 if (v
& CAS_MIF_FRAME_TA0
)
1613 return (v
& CAS_MIF_FRAME_DATA
);
1616 printf("%s: mii_read timeout\n", device_xname(sc
->sc_dev
));
1621 cas_mii_writereg(device_t self
, int phy
, int reg
, int val
)
1623 struct cas_softc
*sc
= device_private(self
);
1624 bus_space_tag_t t
= sc
->sc_memt
;
1625 bus_space_handle_t mif
= sc
->sc_memh
;
1631 printf("cas_mii_writereg: phy %d reg %d val %x\n",
1635 /* Construct the frame command */
1636 v
= CAS_MIF_FRAME_WRITE
|
1637 (phy
<< CAS_MIF_PHY_SHIFT
) |
1638 (reg
<< CAS_MIF_REG_SHIFT
) |
1639 (val
& CAS_MIF_FRAME_DATA
);
1641 bus_space_write_4(t
, mif
, CAS_MIF_FRAME
, v
);
1642 for (n
= 0; n
< 100; n
++) {
1644 v
= bus_space_read_4(t
, mif
, CAS_MIF_FRAME
);
1645 if (v
& CAS_MIF_FRAME_TA0
)
1649 printf("%s: mii_write timeout\n", device_xname(sc
->sc_dev
));
1653 cas_mii_statchg(device_t self
)
1655 struct cas_softc
*sc
= device_private(self
);
1657 int instance
= IFM_INST(sc
->sc_media
.ifm_cur
->ifm_media
);
1659 bus_space_tag_t t
= sc
->sc_memt
;
1660 bus_space_handle_t mac
= sc
->sc_memh
;
1665 printf("cas_mii_statchg: status change: phy = %d\n",
1666 sc
->sc_phys
[instance
]);
1669 /* Set tx full duplex options */
1670 bus_space_write_4(t
, mac
, CAS_MAC_TX_CONFIG
, 0);
1671 delay(10000); /* reg must be cleared and delay before changing. */
1672 v
= CAS_MAC_TX_ENA_IPG0
|CAS_MAC_TX_NGU
|CAS_MAC_TX_NGU_LIMIT
|
1674 if ((IFM_OPTIONS(sc
->sc_mii
.mii_media_active
) & IFM_FDX
) != 0) {
1675 v
|= CAS_MAC_TX_IGN_CARRIER
|CAS_MAC_TX_IGN_COLLIS
;
1677 bus_space_write_4(t
, mac
, CAS_MAC_TX_CONFIG
, v
);
1679 /* XIF Configuration */
1680 v
= CAS_MAC_XIF_TX_MII_ENA
;
1681 v
|= CAS_MAC_XIF_LINK_LED
;
1683 /* MII needs echo disable if half duplex. */
1684 if ((IFM_OPTIONS(sc
->sc_mii
.mii_media_active
) & IFM_FDX
) != 0)
1685 /* turn on full duplex LED */
1686 v
|= CAS_MAC_XIF_FDPLX_LED
;
1688 /* half duplex -- disable echo */
1689 v
|= CAS_MAC_XIF_ECHO_DISABL
;
1691 switch (IFM_SUBTYPE(sc
->sc_mii
.mii_media_active
)) {
1692 case IFM_1000_T
: /* Gigabit using GMII interface */
1694 v
|= CAS_MAC_XIF_GMII_MODE
;
1697 v
&= ~CAS_MAC_XIF_GMII_MODE
;
1699 bus_space_write_4(t
, mac
, CAS_MAC_XIF_CONFIG
, v
);
1703 cas_pcs_readreg(device_t self
, int phy
, int reg
)
1705 struct cas_softc
*sc
= device_private(self
);
1706 bus_space_tag_t t
= sc
->sc_memt
;
1707 bus_space_handle_t pcs
= sc
->sc_memh
;
1711 printf("cas_pcs_readreg: phy %d reg %d\n", phy
, reg
);
1714 if (phy
!= CAS_PHYAD_EXTERNAL
)
1719 reg
= CAS_MII_CONTROL
;
1722 reg
= CAS_MII_STATUS
;
1728 reg
= CAS_MII_ANLPAR
;
1731 return (EXTSR_1000XFDX
|EXTSR_1000XHDX
);
1736 return bus_space_read_4(t
, pcs
, reg
);
1740 cas_pcs_writereg(device_t self
, int phy
, int reg
, int val
)
1742 struct cas_softc
*sc
= device_private(self
);
1743 bus_space_tag_t t
= sc
->sc_memt
;
1744 bus_space_handle_t pcs
= sc
->sc_memh
;
1749 printf("cas_pcs_writereg: phy %d reg %d val %x\n",
1753 if (phy
!= CAS_PHYAD_EXTERNAL
)
1756 if (reg
== MII_ANAR
)
1757 bus_space_write_4(t
, pcs
, CAS_MII_CONFIG
, 0);
1761 reset
= (val
& CAS_MII_CONTROL_RESET
);
1762 reg
= CAS_MII_CONTROL
;
1765 reg
= CAS_MII_STATUS
;
1771 reg
= CAS_MII_ANLPAR
;
1777 bus_space_write_4(t
, pcs
, reg
, val
);
1780 cas_bitwait(sc
, pcs
, CAS_MII_CONTROL
, CAS_MII_CONTROL_RESET
, 0);
1782 if (reg
== CAS_MII_ANAR
|| reset
)
1783 bus_space_write_4(t
, pcs
, CAS_MII_CONFIG
,
1784 CAS_MII_CONFIG_ENABLE
);
1788 cas_mediachange(struct ifnet
*ifp
)
1790 struct cas_softc
*sc
= ifp
->if_softc
;
1791 struct mii_data
*mii
= &sc
->sc_mii
;
1793 if (mii
->mii_instance
) {
1794 struct mii_softc
*miisc
;
1795 LIST_FOREACH(miisc
, &mii
->mii_phys
, mii_list
)
1796 mii_phy_reset(miisc
);
1799 return (mii_mediachg(&sc
->sc_mii
));
1803 cas_mediastatus(struct ifnet
*ifp
, struct ifmediareq
*ifmr
)
1805 struct cas_softc
*sc
= ifp
->if_softc
;
1807 mii_pollstat(&sc
->sc_mii
);
1808 ifmr
->ifm_active
= sc
->sc_mii
.mii_media_active
;
1809 ifmr
->ifm_status
= sc
->sc_mii
.mii_media_status
;
1813 * Process an ioctl request.
1816 cas_ioctl(struct ifnet
*ifp
, u_long cmd
, void *data
)
1818 struct cas_softc
*sc
= ifp
->if_softc
;
1823 if ((error
= ether_ioctl(ifp
, cmd
, data
)) == ENETRESET
) {
1825 if (cmd
!= SIOCADDMULTI
&& cmd
!= SIOCDELMULTI
)
1827 else if (ifp
->if_flags
& IFF_RUNNING
) {
1829 * Multicast list has changed; set the hardware filter
1836 /* Try to get things going again */
1838 if (ifp->if_flags & IFF_UP)
1846 cas_suspend(device_t self PMF_FN_ARGS
)
1848 struct cas_softc
*sc
= device_private(self
);
1850 if (sc
->sc_ih
!= NULL
) {
1851 pci_intr_disestablish(sc
->sc_pc
, sc
->sc_ih
);
1859 cas_resume(device_t self PMF_FN_ARGS
)
1861 struct cas_softc
*sc
= device_private(self
);
1863 return cas_estintr(sc
);
1867 cas_estintr(struct cas_softc
*sc
)
1869 const char *intrstr
= NULL
;
1871 intrstr
= pci_intr_string(sc
->sc_pc
, sc
->sc_handle
);
1872 sc
->sc_ih
= pci_intr_establish(sc
->sc_pc
, sc
->sc_handle
,
1873 IPL_NET
, cas_intr
, sc
);
1874 if (sc
->sc_ih
== NULL
) {
1875 aprint_error_dev(sc
->sc_dev
, "unable to establish interrupt");
1876 if (intrstr
!= NULL
)
1877 aprint_error(" at %s", intrstr
);
1882 aprint_normal_dev(sc
->sc_dev
, "interrupting at %s\n", intrstr
);
1887 cas_shutdown(device_t self
, int howto
)
1889 struct cas_softc
*sc
= device_private(self
);
1890 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
1898 cas_iff(struct cas_softc
*sc
)
1900 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
1901 struct ethercom
*ec
= &sc
->sc_ethercom
;
1902 struct ether_multi
*enm
;
1903 struct ether_multistep step
;
1904 bus_space_tag_t t
= sc
->sc_memt
;
1905 bus_space_handle_t h
= sc
->sc_memh
;
1906 u_int32_t crc
, hash
[16], rxcfg
;
1909 rxcfg
= bus_space_read_4(t
, h
, CAS_MAC_RX_CONFIG
);
1910 rxcfg
&= ~(CAS_MAC_RX_HASH_FILTER
| CAS_MAC_RX_PROMISCUOUS
|
1911 CAS_MAC_RX_PROMISC_GRP
);
1912 ifp
->if_flags
&= ~IFF_ALLMULTI
;
1914 if (ifp
->if_flags
& IFF_PROMISC
|| ec
->ec_multicnt
> 0) {
1915 ifp
->if_flags
|= IFF_ALLMULTI
;
1916 if (ifp
->if_flags
& IFF_PROMISC
)
1917 rxcfg
|= CAS_MAC_RX_PROMISCUOUS
;
1919 rxcfg
|= CAS_MAC_RX_PROMISC_GRP
;
1922 * Set up multicast address filter by passing all multicast
1923 * addresses through a crc generator, and then using the
1924 * high order 8 bits as an index into the 256 bit logical
1925 * address filter. The high order 4 bits selects the word,
1926 * while the other 4 bits select the bit within the word
1927 * (where bit 0 is the MSB).
1930 rxcfg
|= CAS_MAC_RX_HASH_FILTER
;
1932 /* Clear hash table */
1933 for (i
= 0; i
< 16; i
++)
1936 ETHER_FIRST_MULTI(step
, ec
, enm
);
1937 while (enm
!= NULL
) {
1938 crc
= ether_crc32_le(enm
->enm_addrlo
,
1941 /* Just want the 8 most significant bits. */
1944 /* Set the corresponding bit in the filter. */
1945 hash
[crc
>> 4] |= 1 << (15 - (crc
& 15));
1947 ETHER_NEXT_MULTI(step
, enm
);
1950 /* Now load the hash table into the chip (if we are using it) */
1951 for (i
= 0; i
< 16; i
++) {
1952 bus_space_write_4(t
, h
,
1953 CAS_MAC_HASH0
+ i
* (CAS_MAC_HASH1
- CAS_MAC_HASH0
),
1958 bus_space_write_4(t
, h
, CAS_MAC_RX_CONFIG
, rxcfg
);
1962 cas_encap(struct cas_softc
*sc
, struct mbuf
*mhead
, u_int32_t
*bixp
)
1965 u_int32_t cur
, frag
, i
;
1969 map
= sc
->sc_txd
[cur
].sd_map
;
1971 if (bus_dmamap_load_mbuf(sc
->sc_dmatag
, map
, mhead
,
1972 BUS_DMA_NOWAIT
) != 0) {
1976 if ((sc
->sc_tx_cnt
+ map
->dm_nsegs
) > (CAS_NTXDESC
- 2)) {
1977 bus_dmamap_unload(sc
->sc_dmatag
, map
);
1981 bus_dmamap_sync(sc
->sc_dmatag
, map
, 0, map
->dm_mapsize
,
1982 BUS_DMASYNC_PREWRITE
);
1984 for (i
= 0; i
< map
->dm_nsegs
; i
++) {
1985 sc
->sc_txdescs
[frag
].cd_addr
=
1986 CAS_DMA_WRITE(map
->dm_segs
[i
].ds_addr
);
1987 flags
= (map
->dm_segs
[i
].ds_len
& CAS_TD_BUFSIZE
) |
1988 (i
== 0 ? CAS_TD_START_OF_PACKET
: 0) |
1989 ((i
== (map
->dm_nsegs
- 1)) ? CAS_TD_END_OF_PACKET
: 0);
1990 sc
->sc_txdescs
[frag
].cd_flags
= CAS_DMA_WRITE(flags
);
1991 bus_dmamap_sync(sc
->sc_dmatag
, sc
->sc_cddmamap
,
1992 CAS_CDTXOFF(frag
), sizeof(struct cas_desc
),
1993 BUS_DMASYNC_PREWRITE
);
1995 if (++frag
== CAS_NTXDESC
)
1999 sc
->sc_tx_cnt
+= map
->dm_nsegs
;
2000 sc
->sc_txd
[*bixp
].sd_map
= sc
->sc_txd
[cur
].sd_map
;
2001 sc
->sc_txd
[cur
].sd_map
= map
;
2002 sc
->sc_txd
[cur
].sd_mbuf
= mhead
;
2004 bus_space_write_4(sc
->sc_memt
, sc
->sc_memh
, CAS_TX_KICK
, frag
);
2008 /* sync descriptors */
2014 * Transmit interrupt.
2017 cas_tint(struct cas_softc
*sc
, u_int32_t status
)
2019 struct ifnet
*ifp
= &sc
->sc_ethercom
.ec_if
;
2021 u_int32_t cons
, comp
;
2023 comp
= bus_space_read_4(sc
->sc_memt
, sc
->sc_memh
, CAS_TX_COMPLETION
);
2024 cons
= sc
->sc_tx_cons
;
2025 while (cons
!= comp
) {
2026 sd
= &sc
->sc_txd
[cons
];
2027 if (sd
->sd_mbuf
!= NULL
) {
2028 bus_dmamap_sync(sc
->sc_dmatag
, sd
->sd_map
, 0,
2029 sd
->sd_map
->dm_mapsize
, BUS_DMASYNC_POSTWRITE
);
2030 bus_dmamap_unload(sc
->sc_dmatag
, sd
->sd_map
);
2031 m_freem(sd
->sd_mbuf
);
2036 if (++cons
== CAS_NTXDESC
)
2039 sc
->sc_tx_cons
= cons
;
2041 if (sc
->sc_tx_cnt
< CAS_NTXDESC
- 2)
2042 ifp
->if_flags
&= ~IFF_OACTIVE
;
2043 if (sc
->sc_tx_cnt
== 0)
2052 cas_start(struct ifnet
*ifp
)
2054 struct cas_softc
*sc
= ifp
->if_softc
;
2058 if ((ifp
->if_flags
& (IFF_RUNNING
| IFF_OACTIVE
)) != IFF_RUNNING
)
2061 bix
= sc
->sc_tx_prod
;
2062 while (sc
->sc_txd
[bix
].sd_mbuf
== NULL
) {
2063 IFQ_POLL(&ifp
->if_snd
, m
);
2069 * If BPF is listening on this interface, let it see the
2070 * packet before we commit it to the wire.
2073 bpf_mtap(ifp
->if_bpf
, m
);
2077 * Encapsulate this packet and start it going...
2080 if (cas_encap(sc
, m
, &bix
)) {
2081 ifp
->if_flags
|= IFF_OACTIVE
;
2085 IFQ_DEQUEUE(&ifp
->if_snd
, m
);
2089 sc
->sc_tx_prod
= bix
;