summaryrefslogtreecommitdiffstats
path: root/sys/dev/vr/if_vrreg.h
diff options
context:
space:
mode:
authoryongari <yongari@FreeBSD.org>2008-03-11 04:51:22 +0000
committeryongari <yongari@FreeBSD.org>2008-03-11 04:51:22 +0000
commit554fc7905be6c98a9b144a02cb88f87b37b5ed0b (patch)
treea5e5f7a65beabdd55aff2db28042ae1afe7fb2ce /sys/dev/vr/if_vrreg.h
parent6eeba125a476a96e6baf4b1f93e2e9a14b80265a (diff)
downloadFreeBSD-src-554fc7905be6c98a9b144a02cb88f87b37b5ed0b.zip
FreeBSD-src-554fc7905be6c98a9b144a02cb88f87b37b5ed0b.tar.gz
Teach vr(4) to use bus_dma(9) and major overhauling to handle link
state change and reliable error recovery. o Moved vr_softc structure and relevant macros to header file. o Use PCIR_BAR macro to get BARs. o Implemented suspend/resume methods. o Implemented automatic Tx threshold configuration which will be activated when it suffers from Tx underrun. Also Tx underrun will try to restart only Tx path and resort to previous full-reset(both Rx/Tx) operation if restarting Tx path have failed. o Removed old bit-banging MII interface. Rhine provides simple and efficient MII interface. While I'm here show PHY address and PHY register number when its read/write operation was failed. o Define VR_MII_TIMEOUT constant and use it in MII access routines. o Always honor link up/down state reported by mii layers. The link state information is used in vr_start() to determine whether we got a valid link. o Removed vr_setcfg() which is now handled in vr_link_task(), link state taskqueue handler. When mii layer reports link state changes the taskqueue handler reprograms MAC to reflect negotiated duplex settings. Flow-control changes are not handled yet and it should be revisited when mii layer knows the notion of flow-control. o Added a new sysctl interface to get statistics of an instance of the driver.(sysctl dev.vr.0.stats=1) o Chip name was renamed to reflect the official name of the chips described in VIA Rhine I/II/III datasheet. REV_ID_3065_A -> REV_ID_VT6102_A REV_ID_3065_B -> REV_ID_VT6102_B REV_ID_3065_C -> REV_ID_VT6102_C REV_ID_3106_J -> REV_ID_VT6105_A0 REV_ID_3106_S -> REV_ID_VT6105M_A0 The following chip revisions were added. #define REV_ID_VT6105_B0 0x83 #define REV_ID_VT6105_LOM 0x8A #define REV_ID_VT6107_A0 0x8C #define REV_ID_VT6107_A1 0x8D #define REV_ID_VT6105M_B1 0x94 o Always show chip revision number in device attach. This shall help identifying revision specific issues. o Check whether EEPROM reloading is complete by inspecting the state of VR_EECSR_LOAD bit. This bit is self-cleared after the EEPROM reloading. Previously vr(4) blindly spins for 200us which may/may not enough to complete the EEPROM reload. o Removed if_mtu setup. It's done in ether_ifattach(). o Use our own callout to drive watchdog timer. o In vr_attach disable further interrupts after reset. For VT6102 or newer hardwares, diable MII state change interrupt as well because mii state handling is done by mii layer. o Add more sane register initialization for VT6102 or newer chips. - Have NIC report error instead of retrying forever. - Let hardware detect MII coding error. - Enable MODE10T mode. - Enable memory-read-multiple for VT6107. o PHY address for VT6105 or newer chips is located at fixed address 1. For older chips the PHY address is stored in VR_PHYADDR register. Armed with these information, there is no need to re-read VR_PHYADDR register in miibus handler to get PHY address. This saves one register access cycle for each MII access. o Don't reprogram VR_PHYADDR register whenever access to a register located at a PHY address is made. Rhine fmaily allows reprogramming PHY address location via VR_PHYADDR register depending on VR_MIISTAT_PHYOPT bit of VR_MIISTAT register. This used to lead numerous phantom PHYs attached to miibus during phy probe phase and driver used to limit allowable PHY address in mii register accessors for certain chip revisions. This removes one more register access cycle for each MII access. o Correctly set VLAN header length. o bus_dma(9) conversion. - Limit DMA access to be in range of 32bit address space. Hardware doesn't support DAC. - Apply descriptor ring alignment requirements(16 bytes alignment) - Apply Rx buffer address alignment requirements(4 bytes alignment) - Apply Tx buffer address alignment requirements(4 bytes alignment) for Rhine I chip. Rhine II or III has no Tx buffer address alignment restrictions, though. - Reduce number of allowable number of DMA segments to 8. - Removed the atomic(9) used in descriptor ownership managements as it's job of bus_dmamap_sync(9). With these change vr(4) should work on all platforms. o Rhine uses two separated 8bits command registers to control Tx/Rx MAC. So don't access it as a single 16bit register. o For non-strict alignment architectures vr(4) no longer require time-consuming copy operation for received frames to align IP header. This greatly improves Rx performance on i386/amd64 platforms. However the alignment is still necessary for strict-alignment platforms(e.g. sparc64). The alignment is handled in new fuction vr_fixup_rx(). o vr_rxeof() now rejects multiple-segmented(fragmented) frames as vr(4) is not ready to handle this situation. Datasheet said nothing about the reason when/why it happens. o In vr_newbuf() don't set VR_RXSTAT_FIRSTFRAG/VR_RXSTAT_LASTFRAG bits as it's set by hardware. o Don't pass checksum offload information to upper layer for fragmented frames. The hardware assisted checksum is valid only when the frame is non-fragmented IP frames. Also mark the checksum is valid for corrupted frames such that upper layers doesn't need to recompute the checksum with software routine. o Removed vr_rxeoc(). RxDMA doesn't seem to need to be idle before sending VR_CMD_RX_GO command. Previously it used to stop RxDMA first which in turn resulted in long delays in Rx error recovery. o Rewrote Tx completion handler. - Always check VR_TXSTAT_OWN bit in status word prior to inspecting other status bits in the status word. - Collision counter updates were corrected as VT3071 or newer ones use different bits to notify collisions. - Unlike other chip revisions, VT86C100A uses different bit to indicate Tx underrun. For VT3071 or newer ones, check both VR_TXSTAT_TBUFF and VR_TXSTAT_UDF bits to see whether Tx underrun was happend. In case of Tx underrun requeue the failed frame and restart stalled Tx SM. Also double Tx DMA threshold size on each failure to mitigate future Tx underruns. - Disarm watchdog timer only if we have no queued packets, otherwise don't touch watchdog timer. o Rewrote interrupt handler. - status word in Tx/Rx descriptors indicates more detailed error state required to recover from the specific error. There is no need to rely on interrupt status word to recover from Tx/Rx error except PCI bus error. Other event notifications like statistics counter overflows or link state events will be handled in main interrupt handler. - Don't touch VR_IMR register if we are in suspend mode. Touching the register may hang the hardware if we are in suspended state. Previously it seems that touching VR_IMR register in interrupt handler was to work-around panic occurred in system shutdown stage on SMP systems. I think that work-around would hide root-cause of the panic and I couldn't reproduce the panic with multiple attempts on my box. o While padding space to meet minimum frame size, zero the pad data in order to avoid possibly leaking sensitive data. o Rewrote vr_start_locked(). - Don't try to queue packets if number of available Tx descriptors are short than that of required one. o Don't reinitialize hardware whenever media configuration is changed. Media/link state changes are reported from mii layer if this happens and vr_link_task() will perform necessary changes. o Don't reinitialize hardware if only PROMISC bit was changed. Just toggle the PROMISC bit in hardware is sufficient to reflect the request. o Rearrganed the IFCAP_POLLING/IFCAP_HWCSUM handling in vr_ioctl(). o Generate Tx completion interrupts for every VR_TX_INTR_THRESH-th frames. This reduces Tx completion interrupts under heavy network loads. o Since vr(4) doesn't request Tx interrupts for every queued frames, reclaim any pending descriptors not handled in Tx completion handler before actually firing up watchdog timeouts. o Added vr_tx_stop()/vr_rx_stop() to wait for the end of active TxDMA/RxDMA cycles(draining). These routines are used in vr_stop() to ensure sane state of MAC before releasing allocated Tx/Rx buffers. vr_link_task() also takes advantage of these functions to get to idle state prior to restarting Tx/Rx. o Added vr_tx_start()/vr_rx_start() to restart Rx/Tx. By separating Rx operation from Tx operation vr(4) no longer need to full-reset the hardware in case of Tx/Rx error recovery. o Implemented WOL. o Added VT6105M specific register definitions. VT6105M has the following hardware capabilities. - Tx/Rx IP/TCP/UDP checksum offload. - VLAN hardware tag insertion/extraction. Due to lack of information for getting extracted VLAN tag in Rx path, VLAN hardware support was not implemented yet. - CAM(Content Addressable Memory) based 32 entry perfect multicast/ VLAN filtering. - 8 priority queues. o Implemented CAM based 32 entry perfect multicast filtering for VT6105M. If number of multicast entry is greater than 32, vr(4) uses traditional hash based filtering. o Reflect real Tx/Rx descriptor structure. Previously vr(4) used to embed other driver (private) data into these structure. This type of embedding make it hard to work on LP64 systems. o Removed unused vr_mii_frame structure and MII bit-baning definitions. o Added new PCI configuration registers that controls mii operation and mode selection. o Reduced number of Tx/Rx descriptors to 128 from 256. From my testing, increasing number of descriptors above than 64 didn't help increasing performance at all. Experimentations show 128 Rx descriptors seems to help a lot reducing Rx FIFO overruns under high system loads. It seems the poor Tx performance of Rhine hardwares comes from the limitation of hardware. You wouldn't satuarte the link with vr(4) no matter how fast CPU/large number of descriptors are used. o Added vr_statistics structure to hold various counter values. No regression was reported but one variant of Rhine III(VT6105M) found on RouterBOARD 44 does not work yet(Reported by Milan Obuch). I hope this would be resolved in near future. I'd like to say big thanks to Mike Tancsa who kindly donated a Rhine hardware to me. Without his enthusiastic testing and feedbacks overhauling vr(4) never have been possible. Also thanks to Masayuki Murayama who provided some good comments on the hardware's internals. This driver is result of combined effort of many users who provided many feedbacks so I'd like to say special thanks to them. Hardware donated by: Mike Tancsa (mike AT sentex dot net) Reviewed by: remko (initial version) Tested by: Mike Tancsa(x86), JoaoBR ( joao AT matik DOT com DOT br ) Marcin Wisnicki ( mwisnicki+freebsd AT gmail DOT com ) Stefan Ehmann ( shoesoft AT gmx DOT net ) Florian Smeets ( flo AT kasimir DOT com ) Phil Oleson ( oz AT nixil DOT net ) Larry Baird ( lab AT gta DOT com ) Milan Obuch ( freebsd-current AT dino DOT sk ) remko (initial version)
Diffstat (limited to 'sys/dev/vr/if_vrreg.h')
-rw-r--r--sys/dev/vr/if_vrreg.h432
1 files changed, 332 insertions, 100 deletions
diff --git a/sys/dev/vr/if_vrreg.h b/sys/dev/vr/if_vrreg.h
index d1073bd..c51dc2f 100644
--- a/sys/dev/vr/if_vrreg.h
+++ b/sys/dev/vr/if_vrreg.h
@@ -40,7 +40,9 @@
#define VR_PAR1 0x04 /* node address 2 to 6 */
#define VR_RXCFG 0x06 /* receiver config register */
#define VR_TXCFG 0x07 /* transmit config register */
-#define VR_COMMAND 0x08 /* command register */
+#define VR_CR0 0x08 /* command register 0 */
+#define VR_CR1 0x09 /* command register 1 */
+#define VR_TQW 0x0A /* tx queue wake 6105M, 8bits */
#define VR_ISR 0x0C /* interrupt/status register */
#define VR_IMR 0x0E /* interrupt mask register */
#define VR_MAR0 0x10 /* multicast hash 0 */
@@ -76,13 +78,38 @@
#define VR_EECSR 0x74
#define VR_TEST 0x75
#define VR_GPIO 0x76
-#define VR_CONFIG 0x78
+#define VR_CFGA 0x78
+#define VR_CFGB 0x79
+#define VR_CFGC 0x7A
+#define VR_CFGD 0x7B
#define VR_MPA_CNT 0x7C
#define VR_CRC_CNT 0x7E
+#define VR_MISC_CR0 0x80 /* VT6102, 8bits */
+#define VR_MISC_CR1 0x81
#define VR_STICKHW 0x83
+#define VR_MII_ISR 0x84
+#define VR_MII_IMR 0x86
+#define VR_CAMMASK 0x88 /* VT6105M, 32bits */
+#define VR_CAMCTL 0x92 /* VT6105M, 8bits */
+#define VR_CAMADDR 0x93 /* VT6105M, 8bits */
+#define VR_FLOWCR0 0x98
+#define VR_FLOWCR1 0x99
+#define VR_PAUSETIMER 0x9A /* 16bit */
+#define VR_WOLCR_SET 0xA0
+#define VR_PWRCFG_SET 0xA1
+#define VR_TESTREG_SET 0xA2
+#define VR_WOLCFG_SET 0xA3
+#define VR_WOLCR_CLR 0xA4
+#define VR_PWRCFG_CLR 0xA5
+#define VR_TESTREG_CLR 0xA6
+#define VR_WOLCFG_CLR 0xA7
+#define VR_PWRCSR_SET 0xA8
+#define VR_PWRCSR1_SET 0xA9
+#define VR_PWRCSR_CLR 0xAC
+#define VR_PWRCSR1_CLR 0xAD
/* Misc Registers */
-#define VR_MISC_CR1 0x81
+#define VR_MISCCR0_RXPAUSE 0x08
#define VR_MISCCR1_FORSRST 0x40
/*
@@ -107,10 +134,10 @@
/*
* TX config bits.
*/
-#define VR_TXCFG_RSVD0 0x01
+#define VR_TXCFG_TXTAGEN 0x01 /* 6105M */
#define VR_TXCFG_LOOPBKMODE 0x06
#define VR_TXCFG_BACKOFF 0x08
-#define VR_TXCFG_RSVD1 0x10
+#define VR_TXCFG_RXTAGCTL 0x10 /* 6105M */
#define VR_TXCFG_TX_THRESH 0xE0
#define VR_TXTHRESH_32BYTES 0x00
@@ -121,24 +148,26 @@
#define VR_TXTHRESH_768BYTES 0xA0
#define VR_TXTHRESH_1024BYTES 0xC0
#define VR_TXTHRESH_STORENFWD 0xE0
+#define VR_TXTHRESH_MIN 1 /* 64 bytes */
+#define VR_TXTHRESH_MAX 5 /* store and forward */
/*
* Command register bits.
*/
-#define VR_CMD_INIT 0x0001
-#define VR_CMD_START 0x0002
-#define VR_CMD_STOP 0x0004
-#define VR_CMD_RX_ON 0x0008
-#define VR_CMD_TX_ON 0x0010
-#define VR_CMD_TX_GO 0x0020
-#define VR_CMD_RX_GO 0x0040
-#define VR_CMD_RSVD 0x0080
-#define VR_CMD_RX_EARLY 0x0100
-#define VR_CMD_TX_EARLY 0x0200
-#define VR_CMD_FULLDUPLEX 0x0400
-#define VR_CMD_TX_NOPOLL 0x0800
-
-#define VR_CMD_RESET 0x8000
+#define VR_CR0_INIT 0x01
+#define VR_CR0_START 0x02
+#define VR_CR0_STOP 0x04
+#define VR_CR0_RX_ON 0x08
+#define VR_CR0_TX_ON 0x10
+#define VR_CR0_TX_GO 0x20
+#define VR_CR0_RX_GO 0x40
+#define VR_CR0_RSVD 0x80
+#define VR_CR1_RX_EARLY 0x01
+#define VR_CR1_TX_EARLY 0x02
+#define VR_CR1_FULLDUPLEX 0x04
+#define VR_CR1_TX_NOPOLL 0x08
+
+#define VR_CR1_RESET 0x80
/*
* Interrupt status bits.
@@ -154,14 +183,19 @@
#define VR_ISR_RX_EARLY 0x0100 /* rx early */
#define VR_ISR_LINKSTAT 0x0200 /* MII status change */
#define VR_ISR_ETI 0x0200 /* Tx early (3043/3071) */
-#define VR_ISR_UDFI 0x0200 /* Tx FIFO underflow (3065) */
+#define VR_ISR_UDFI 0x0200 /* Tx FIFO underflow (6102) */
#define VR_ISR_RX_OFLOW 0x0400 /* rx FIFO overflow */
#define VR_ISR_RX_DROPPED 0x0800
-#define VR_ISR_RX_NOBUF2 0x1000
+#define VR_ISR_RX_NOBUF2 0x1000 /* Rx descriptor running up */
#define VR_ISR_TX_ABRT2 0x2000
#define VR_ISR_LINKSTAT2 0x4000
#define VR_ISR_MAGICPACKET 0x8000
+#define VR_ISR_ERR_BITS "\20" \
+ "\3RXERR\4TXABRT\5TXUNDERRUN" \
+ "\6RXNOBUF\7BUSERR\10STATSOFLOW" \
+ "\12TXUDF\13RXOFLOW\14RXDROPPED" \
+ "\15RXNOBUF2\16TXABRT2"
/*
* Interrupt mask bits.
*/
@@ -241,40 +275,52 @@
#define VR_TEST_HBDES 0x80
/*
- * Config register bits.
- */
-#define VR_CFG_GPIO2OUTENB 0x00000001
-#define VR_CFG_GPIO2OUT 0x00000002 /* gen. purp. pin */
-#define VR_CFG_GPIO2IN 0x00000004 /* gen. purp. pin */
-#define VR_CFG_AUTOOPT 0x00000008 /* enable rx/tx autopoll */
-#define VR_CFG_MIIOPT 0x00000010
-#define VR_CFG_MMIENB 0x00000020 /* memory mapped mode enb */
-#define VR_CFG_JUMPER 0x00000040 /* PHY and oper. mode select */
-#define VR_CFG_EELOAD 0x00000080 /* enable EEPROM programming */
-#define VR_CFG_LATMENB 0x00000100 /* larency timer effect enb. */
-#define VR_CFG_MRREADWAIT 0x00000200
-#define VR_CFG_MRWRITEWAIT 0x00000400
-#define VR_CFG_RX_ARB 0x00000800
-#define VR_CFG_TX_ARB 0x00001000
-#define VR_CFG_READMULTI 0x00002000
-#define VR_CFG_TX_PACE 0x00004000
-#define VR_CFG_TX_QDIS 0x00008000
-#define VR_CFG_ROMSEL0 0x00010000
-#define VR_CFG_ROMSEL1 0x00020000
-#define VR_CFG_ROMSEL2 0x00040000
-#define VR_CFG_ROMTIMESEL 0x00080000
-#define VR_CFG_RSVD0 0x00100000
-#define VR_CFG_ROMDLY 0x00200000
-#define VR_CFG_ROMOPT 0x00400000
-#define VR_CFG_RSVD1 0x00800000
-#define VR_CFG_BACKOFFOPT 0x01000000
-#define VR_CFG_BACKOFFMOD 0x02000000
-#define VR_CFG_CAPEFFECT 0x04000000
-#define VR_CFG_BACKOFFRAND 0x08000000
-#define VR_CFG_MAGICKPACKET 0x10000000
-#define VR_CFG_PCIREADLINE 0x20000000
-#define VR_CFG_DIAG 0x40000000
-#define VR_CFG_GPIOEN 0x80000000
+ * Config A register bits.
+ */
+#define VR_CFG_GPIO2OUTENB 0x01
+#define VR_CFG_GPIO2OUT 0x02 /* gen. purp. pin */
+#define VR_CFG_GPIO2IN 0x04 /* gen. purp. pin */
+#define VR_CFG_AUTOOPT 0x08 /* enable rx/tx autopoll */
+#define VR_CFG_MIIOPT 0x10
+#define VR_CFG_MMIENB 0x20 /* memory mapped mode enb */
+#define VR_CFG_JUMPER 0x40 /* PHY and oper. mode select */
+#define VR_CFG_EELOAD 0x80 /* enable EEPROM programming */
+
+/*
+ * Config B register bits.
+ */
+#define VR_CFG_LATMENB 0x01 /* larency timer effect enb. */
+#define VR_CFG_MRREADWAIT 0x02
+#define VR_CFG_MRWRITEWAIT 0x04
+#define VR_CFG_RX_ARB 0x08
+#define VR_CFG_TX_ARB 0x10
+#define VR_CFG_READMULTI 0x20
+#define VR_CFG_TX_PACE 0x40
+#define VR_CFG_TX_QDIS 0x80
+
+/*
+ * Config C register bits.
+ */
+#define VR_CFG_ROMSEL0 0x01
+#define VR_CFG_ROMSEL1 0x02
+#define VR_CFG_ROMSEL2 0x04
+#define VR_CFG_ROMTIMESEL 0x08
+#define VR_CFG_RSVD0 0x10
+#define VR_CFG_ROMDLY 0x20
+#define VR_CFG_ROMOPT 0x40
+#define VR_CFG_RSVD1 0x80
+
+/*
+ * Config D register bits.
+ */
+#define VR_CFG_BACKOFFOPT 0x01
+#define VR_CFG_BACKOFFMOD 0x02
+#define VR_CFG_CAPEFFECT 0x04
+#define VR_CFG_BACKOFFRAND 0x08
+#define VR_CFG_MAGICKPACKET 0x10
+#define VR_CFG_PCIREADLINE 0x20
+#define VR_CFG_DIAG 0x40
+#define VR_CFG_GPIOEN 0x80
/* Sticky HW bits */
#define VR_STICKHW_DS0 0x01
@@ -324,21 +370,76 @@
#define VR_BCR1_TXTHRESHSTORENFWD 0x38
/*
+ * CAMCTL register bits. (VT6105M only)
+ */
+#define VR_CAMCTL_ENA 0x01
+#define VR_CAMCTL_VLAN 0x02
+#define VR_CAMCTL_MCAST 0x00
+#define VR_CAMCTL_WRITE 0x04
+#define VR_CAMCTL_READ 0x08
+
+#define VR_CAM_MCAST_CNT 32
+#define VR_CAM_VLAN_CNT 32
+
+/*
+ * FLOWCR1 register bits. (VT6105LOM, VT6105M only)
+ */
+#define VR_FLOWCR1_TXLO4 0x00
+#define VR_FLOWCR1_TXLO8 0x40
+#define VR_FLOWCR1_TXLO16 0x80
+#define VR_FLOWCR1_TXLO24 0xC0
+#define VR_FLOWCR1_TXHI24 0x00
+#define VR_FLOWCR1_TXHI32 0x10
+#define VR_FLOWCR1_TXHI48 0x20
+#define VR_FLOWCR1_TXHI64 0x30
+#define VR_FLOWCR1_XONXOFF 0x08
+#define VR_FLOWCR1_TXPAUSE 0x04
+#define VR_FLOWCR1_RXPAUSE 0x02
+#define VR_FLOWCR1_HDX 0x01
+
+/*
+ * WOLCR register bits. (VT6102 or higher only)
+ */
+#define VR_WOLCR_PATTERN0 0x01
+#define VR_WOLCR_PATTERN1 0x02
+#define VR_WOLCR_PATTERN2 0x04
+#define VR_WOLCR_PATTERN3 0x08
+#define VR_WOLCR_UCAST 0x10
+#define VR_WOLCR_MAGIC 0x20
+#define VR_WOLCR_LINKON 0x40
+#define VR_WOLCR_LINKOFF 0x80
+
+/*
+ * PWRCFG register bits. (VT6102 or higher only)
+ */
+#define VR_PWRCFG_WOLEN 0x01
+#define VR_PWRCFG_WOLSR 0x02
+#define VR_PWRCFG_LEGACY_WOL 0x10
+#define VR_PWRCFG_WOLTYPE_PULSE 0x20
+#define VR_PWRCFG_SMIITIME 0x80
+
+/*
+ * WOLCFG register bits. (VT6102 or higher only)
+ */
+#define VR_WOLCFG_PATTERN_PAGE 0x04 /* VT6505 B0 */
+#define VR_WOLCFG_SMIIOPT 0x04
+#define VR_WOLCFG_SMIIACC 0x08
+#define VR_WOLCFG_SAB 0x10
+#define VR_WOLCFG_SAM 0x20
+#define VR_WOLCFG_SFDX 0x40
+#define VR_WOLCFG_PMEOVR 0x80
+
+/*
* Rhine TX/RX list structure.
*/
struct vr_desc {
- u_int32_t vr_status;
- u_int32_t vr_ctl;
- u_int32_t vr_data;
- u_int32_t vr_nextphys;
- struct mbuf *vr_mbuf;
- struct vr_desc *vr_next;
- u_int32_t *vxr1;
- u_int32_t *vxr2;
+ uint32_t vr_status;
+ uint32_t vr_ctl;
+ uint32_t vr_data;
+ uint32_t vr_nextphys;
};
-
#define VR_RXSTAT_RXERR 0x00000001
#define VR_RXSTAT_CRCERR 0x00000002
#define VR_RXSTAT_FRAMEALIGNERR 0x00000004
@@ -346,6 +447,7 @@ struct vr_desc {
#define VR_RXSTAT_GIANT 0x00000010
#define VR_RXSTAT_RUNT 0x00000020
#define VR_RXSTAT_BUSERR 0x00000040
+#define VR_RXSTAT_FRAG 0x00000040 /* 6105M */
#define VR_RXSTAT_BUFFERR 0x00000080
#define VR_RXSTAT_LASTFRAG 0x00000100
#define VR_RXSTAT_FIRSTFRAG 0x00000200
@@ -359,14 +461,24 @@ struct vr_desc {
#define VR_RXSTAT_OWN 0x80000000
#define VR_RXBYTES(x) ((x & VR_RXSTAT_RXLEN) >> 16)
-#define VR_RXSTAT (VR_RXSTAT_FIRSTFRAG|VR_RXSTAT_LASTFRAG|VR_RXSTAT_OWN)
+#define VR_RXSTAT_ERR_BITS "\20" \
+ "\1RXERR\2CRCERR\3FRAMEALIGN" \
+ "\4FIFOOFLOW\5GIANT\6RUNT" \
+ "\10BUFERR"
#define VR_RXCTL_BUFLEN 0x000007FF
#define VR_RXCTL_BUFLEN_EXT 0x00007800
#define VR_RXCTL_CHAIN 0x00008000
+#define VR_RXCTL_TAG 0x00010000
+#define VR_RXCTL_UDP 0x00020000
+#define VR_RXCTL_TCP 0x00040000
+#define VR_RXCTL_IP 0x00080000
+#define VR_RXCTL_TCPUDPOK 0x00100000
+#define VR_RXCTL_IPOK 0x00200000
+#define VR_RXCTL_SNAPTAG 0x00400000
+#define VR_RXCTL_RXLERR 0x00800000 /* 6105M */
#define VR_RXCTL_RX_INTR 0x00800000
-#define VR_RXCTL_GOODIP 0x00280000
-#define VR_RXCTL_GOODTCPUDP 0x00100000
+
#define VR_RXCTL (VR_RXCTL_CHAIN|VR_RXCTL_RX_INTR)
@@ -378,6 +490,7 @@ struct vr_desc {
#define VR_TXSTAT_LATECOLL 0x00000200
#define VR_TXSTAT_CARRLOST 0x00000400
#define VR_TXSTAT_UDF 0x00000800
+#define VR_TXSTAT_TBUFF 0x00001000
#define VR_TXSTAT_BUSERR 0x00002000
#define VR_TXSTAT_JABTIMEO 0x00004000
#define VR_TXSTAT_ERRSUM 0x00008000
@@ -395,38 +508,17 @@ struct vr_desc {
#define VR_TXCTL_LASTFRAG 0x00400000
#define VR_TXCTL_FINT 0x00800000
-
-#define VR_MAXFRAGS 16
-#define VR_RX_LIST_CNT 256
-#define VR_TX_LIST_CNT 256
#define VR_MIN_FRAMELEN 60
-#define VR_FRAMELEN 1536
-#define VR_RXLEN 1524
-
-struct vr_mii_frame {
- u_int8_t mii_stdelim;
- u_int8_t mii_opcode;
- u_int8_t mii_phyaddr;
- u_int8_t mii_regaddr;
- u_int8_t mii_turnaround;
- u_int16_t mii_data;
-};
-
-/*
- * MII constants
- */
-#define VR_MII_STARTDELIM 0x01
-#define VR_MII_READOP 0x02
-#define VR_MII_WRITEOP 0x01
-#define VR_MII_TURNAROUND 0x02
#define VR_FLAG_FORCEDELAY 1
#define VR_FLAG_SCHEDDELAY 2
-#define VR_FLAG_DELAYTIMEO 3
+#define VR_FLAG_DELAYTIMEO 3
#define VR_TIMEOUT 1000
-#define ETHER_ALIGN 2
+#define VR_MII_TIMEOUT 10000
+
+#define VR_PHYADDR_MASK 0x1f
/*
* General constants that are fun to know.
@@ -471,13 +563,17 @@ struct vr_mii_frame {
#define REV_ID_VT3043_E 0x04
#define REV_ID_VT3071_A 0x20
#define REV_ID_VT3071_B 0x21
-#define REV_ID_VT3065_A 0x40
-#define REV_ID_VT3065_B 0x41
-#define REV_ID_VT3065_C 0x42
+#define REV_ID_VT6102_A 0x40
+#define REV_ID_VT6102_B 0x41
+#define REV_ID_VT6102_C 0x42
#define REV_ID_VT6102_APOLLO 0x74
-#define REV_ID_VT3106 0x80
-#define REV_ID_VT3106_J 0x80 /* 0x80-0x8F */
-#define REV_ID_VT3106_S 0x90 /* 0x90-0xA0 */
+#define REV_ID_VT6105_A0 0x80
+#define REV_ID_VT6105_B0 0x83
+#define REV_ID_VT6105_LOM 0x8A
+#define REV_ID_VT6107_A0 0x8C
+#define REV_ID_VT6107_A1 0x8D
+#define REV_ID_VT6105M_A0 0x90
+#define REV_ID_VT6105M_B1 0x94
/*
* PCI low memory base and low I/O base register, and
@@ -501,8 +597,20 @@ struct vr_mii_frame {
#define VR_PCI_MINLAT 0x0F
#define VR_PCI_RESETOPT 0x48
#define VR_PCI_EEPROM_DATA 0x4C
-#define VR_PCI_MODE 0x50
-
+#define VR_PCI_MODE0 0x50
+#define VR_PCI_MODE2 0x52
+#define VR_PCI_MODE3 0x53
+
+#define VR_MODE2_PCEROPT 0x80 /* VT6102 only */
+#define VR_MODE2_DISABT 0x40
+#define VR_MODE2_MRDPL 0x08 /* VT6107A1 and above */
+#define VR_MODE2_MODE10T 0x02
+
+#define VR_MODE3_XONOPT 0x80
+#define VR_MODE3_TPACEN 0x40
+#define VR_MODE3_BACKOPT 0x20
+#define VR_MODE3_DLTSEL 0x10
+#define VR_MODE3_MIIDMY 0x08
#define VR_MODE3_MIION 0x04
/* power management registers */
@@ -518,3 +626,127 @@ struct vr_mii_frame {
#define VR_PSTATE_D3 0x0003
#define VR_PME_EN 0x0010
#define VR_PME_STATUS 0x8000
+
+#define VR_RX_RING_CNT 128
+#define VR_TX_RING_CNT 128
+#define VR_TX_RING_SIZE sizeof(struct vr_desc) * VR_TX_RING_CNT
+#define VR_RX_RING_SIZE sizeof(struct vr_desc) * VR_RX_RING_CNT
+#define VR_RING_ALIGN sizeof(struct vr_desc)
+#define VR_RX_ALIGN sizeof(uint32_t)
+#define VR_MAXFRAGS 8
+#define VR_TX_INTR_THRESH 8
+
+#define VR_ADDR_LO(x) ((uint64_t)(x) & 0xffffffff)
+#define VR_ADDR_HI(x) ((uint64_t)(x) >> 32)
+#define VR_TX_RING_ADDR(sc, i) \
+ ((sc)->vr_rdata.vr_tx_ring_paddr + sizeof(struct vr_desc) * (i))
+#define VR_RX_RING_ADDR(sc, i) \
+ ((sc)->vr_rdata.vr_rx_ring_paddr + sizeof(struct vr_desc) * (i))
+#define VR_INC(x,y) (x) = (((x) + 1) % y)
+
+struct vr_txdesc {
+ struct mbuf *tx_m;
+ bus_dmamap_t tx_dmamap;
+};
+
+struct vr_rxdesc {
+ struct mbuf *rx_m;
+ bus_dmamap_t rx_dmamap;
+ struct vr_desc *desc;
+};
+
+struct vr_chain_data {
+ bus_dma_tag_t vr_parent_tag;
+ bus_dma_tag_t vr_tx_tag;
+ struct vr_txdesc vr_txdesc[VR_TX_RING_CNT];
+ bus_dma_tag_t vr_rx_tag;
+ struct vr_rxdesc vr_rxdesc[VR_RX_RING_CNT];
+ bus_dma_tag_t vr_tx_ring_tag;
+ bus_dma_tag_t vr_rx_ring_tag;
+ bus_dmamap_t vr_tx_ring_map;
+ bus_dmamap_t vr_rx_ring_map;
+ bus_dmamap_t vr_rx_sparemap;
+ int vr_tx_pkts;
+ int vr_tx_prod;
+ int vr_tx_cons;
+ int vr_tx_cnt;
+ int vr_rx_cons;
+};
+
+struct vr_ring_data {
+ struct vr_desc *vr_rx_ring;
+ struct vr_desc *vr_tx_ring;
+ bus_addr_t vr_rx_ring_paddr;
+ bus_addr_t vr_tx_ring_paddr;
+};
+
+struct vr_statistics {
+ uint64_t tx_ok;
+ uint64_t rx_ok;
+ uint32_t tx_errors;
+ uint32_t rx_errors;
+ uint32_t rx_no_buffers;
+ uint32_t rx_no_mbufs;
+ uint32_t rx_crc_errors;
+ uint32_t rx_alignment;
+ uint32_t rx_fifo_overflows;
+ uint32_t rx_giants;
+ uint32_t rx_runts;
+ uint32_t tx_abort;
+ uint32_t tx_collisions;
+ uint32_t tx_late_collisions;
+ uint32_t tx_underrun;
+ uint32_t bus_errors;
+ uint32_t num_restart;
+};
+
+struct vr_softc {
+ struct ifnet *vr_ifp; /* interface info */
+ device_t vr_dev;
+ struct resource *vr_res;
+ int vr_res_id;
+ int vr_res_type;
+ struct resource *vr_irq;
+ void *vr_intrhand;
+ device_t vr_miibus;
+ uint8_t vr_revid; /* Rhine chip revision */
+ uint8_t vr_flags; /* See VR_F_* below */
+#define VR_F_RESTART 0x01 /* Restart unit on next tick */
+ int vr_phyaddr;
+ int vr_if_flags;
+ struct task vr_link_task;
+ struct vr_chain_data vr_cdata;
+ struct vr_ring_data vr_rdata;
+ struct vr_statistics vr_stat;
+ struct callout vr_stat_callout;
+ struct mtx vr_mtx;
+ int vr_suspended; /* if 1, sleeping/detaching */
+ int vr_quirks;
+ int vr_link;
+ int vr_watchdog_timer;
+ int vr_txthresh;
+ int vr_detach;
+#ifdef DEVICE_POLLING
+ int rxcycles;
+#endif
+};
+
+#define VR_LOCK(_sc) mtx_lock(&(_sc)->vr_mtx)
+#define VR_UNLOCK(_sc) mtx_unlock(&(_sc)->vr_mtx)
+#define VR_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->vr_mtx, MA_OWNED)
+
+/*
+ * register space access macros
+ */
+#define CSR_WRITE_4(sc, reg, val) bus_write_4(sc->vr_res, reg, val)
+#define CSR_WRITE_2(sc, reg, val) bus_write_2(sc->vr_res, reg, val)
+#define CSR_WRITE_1(sc, reg, val) bus_write_1(sc->vr_res, reg, val)
+
+#define CSR_READ_2(sc, reg) bus_read_2(sc->vr_res, reg)
+#define CSR_READ_1(sc, reg) bus_read_1(sc->vr_res, reg)
+
+#define VR_SETBIT(sc, reg, x) CSR_WRITE_1(sc, reg, CSR_READ_1(sc, reg) | (x))
+#define VR_CLRBIT(sc, reg, x) CSR_WRITE_1(sc, reg, CSR_READ_1(sc, reg) & ~(x))
+
+#define VR_SETBIT16(sc, reg, x) CSR_WRITE_2(sc, reg, CSR_READ_2(sc, reg) | (x))
+#define VR_CLRBIT16(sc, reg, x) CSR_WRITE_2(sc, reg, CSR_READ_2(sc, reg) & ~(x))
OpenPOWER on IntegriCloud