aboutsummaryrefslogtreecommitdiff
path: root/sys/pci/smc83c170.h
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1998-01-21 18:33:00 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1998-01-21 18:33:00 +0000
commit0aed583274aafde19ee4e59a503c3a2c53500f54 (patch)
tree7e84baeef6728bfdcb0a75697c3314924b70a0fe /sys/pci/smc83c170.h
parentd8f643d7e10314a3de63d62149a56fbe2b934def (diff)
downloadsrc-0aed583274aafde19ee4e59a503c3a2c53500f54.tar.gz
src-0aed583274aafde19ee4e59a503c3a2c53500f54.zip
Driver for the new SMC 9432TX cards.
Submitted by: Ustimenko Semen <semen@iclub.nsu.ru>
Notes
Notes: svn path=/head/; revision=32679
Diffstat (limited to 'sys/pci/smc83c170.h')
-rw-r--r--sys/pci/smc83c170.h272
1 files changed, 272 insertions, 0 deletions
diff --git a/sys/pci/smc83c170.h b/sys/pci/smc83c170.h
new file mode 100644
index 000000000000..5cfa62151e42
--- /dev/null
+++ b/sys/pci/smc83c170.h
@@ -0,0 +1,272 @@
+/*-
+ * Copyright (c) 1997 Semen Ustimenko
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ */
+
+/*
+ * smc83c170.h
+ */
+
+/*
+ * Configuration
+ */
+#define EPIC_MAX_DEVICES 4
+/*#define RX_TO_MBUF 1*/ /* IT IS BUGGY */
+/*#define EPIC_DEBUG 1*/
+#define TX_RING_SIZE 16
+#define RX_RING_SIZE 16
+
+/*
+ * Media control
+ */
+#ifndef IFF_ALTPHYS
+#define IFF_ALTPHYS IFF_LINK2
+#endif
+#define IFF_100MB IFF_ALTPHYS
+
+#ifndef IFF_FULLDUPLEX
+#define IFF_FULLDUPLEX IFF_LINK1
+#endif
+
+#ifndef IFF_NOAUTONEG
+#define IFF_NOAUTONEG IFF_LINK0
+#endif
+
+#define ETHER_MAX_FRAME_LEN (ETHER_MAX_LEN + ETHER_CRC_LEN)
+
+/* Shall be moved to ../net/if_mib.h */
+#define dot3VendorSMC 8
+#define dot3ChipSetSMC83c170 1
+
+/* PCI identification */
+#define SMC_VENDORID 0x10B8
+#define CHIPID_83C170 0x0005
+#define PCI_VENDORID(x) ((x) & 0xFFFF)
+#define PCI_CHIPID(x) (((x) >> 16) & 0xFFFF)
+
+/* PCI configuration */
+#define PCI_CFID 0x00 /* Configuration ID */
+#define PCI_CFCS 0x04 /* Configurtion Command/Status */
+#define PCI_CFRV 0x08 /* Configuration Revision */
+#define PCI_CFLT 0x0c /* Configuration Latency Timer */
+#define PCI_CBIO 0x10 /* Configuration Base IO Address */
+#define PCI_CBMA 0x14 /* Configuration Base Memory Address */
+#define PCI_CFIT 0x3c /* Configuration Interrupt */
+#define PCI_CFDA 0x40 /* Configuration Driver Area */
+
+#define PCI_CONF_WRITE(r, v) pci_conf_write(config_id, (r), (v))
+#define PCI_CONF_READ(r) pci_conf_read(config_id, (r))
+
+/* EPIC's registers */
+#define COMMAND 0x0000
+#define INTSTAT 0x0004 /* Interrupt status. See below */
+#define INTMASK 0x0008 /* Interrupt mask. See below */
+#define GENCTL 0x000C
+#define NVCTL 0x0010
+#define EECTL 0x0014 /* EEPROM control **/
+#define TEST1 0x001C /* XXXXX */
+#define CRCCNT 0x0020 /* CRC error counter */
+#define ALICNT 0x0024 /* FrameTooLang error counter */
+#define MPCNT 0x0028 /* MissedFrames error counters */
+#define MIICTL 0x0030
+#define MIIDATA 0x0034
+#define MIICFG 0x0038
+#define IPG 0x003C
+#define LAN0 0x0040 /* MAC address */
+#define LAN1 0x0044 /* MAC address */
+#define LAN2 0x0048 /* MAC address */
+#define ID_CHK 0x004C
+#define MC0 0x0050 /* Multicast filter table */
+#define MC1 0x0054 /* Multicast filter table */
+#define MC2 0x0058 /* Multicast filter table */
+#define MC3 0x005C /* Multicast filter table */
+#define RXCON 0x0060 /* Rx control register */
+#define TXCON 0x0070 /* Tx control register */
+#define TXSTAT 0x0074
+#define PRCDAR 0x0084 /* RxRing bus address */
+#define PRSTAT 0x00A4
+#define PRCPTHR 0x00B0
+#define PTCDAR 0x00C4 /* TxRing bus address */
+#define ETXTHR 0x00DC
+
+#define COMMAND_STOP_RX 0x01
+#define COMMAND_START_RX 0x02
+#define COMMAND_TXQUEUED 0x04
+#define COMMAND_RXQUEUED 0x08
+#define COMMAND_NEXTFRAME 0x10
+#define COMMAND_STOP_TDMA 0x20
+#define COMMAND_STOP_RDMA 0x40
+#define COMMAND_TXUGO 0x80
+
+/* Tx threshold */
+#define TX_FIFO_THRESH 0x80 /* 0x40 or 0x10 */
+
+/* Interrupt register bits */
+#define INTSTAT_RCC 0x00000001
+#define INTSTAT_HCC 0x00000002
+#define INTSTAT_RQE 0x00000004
+#define INTSTAT_OVW 0x00000008
+#define INTSTAT_RXE 0x00000010
+#define INTSTAT_TXC 0x00000020
+#define INTSTAT_TCC 0x00000040
+#define INTSTAT_TQE 0x00000080
+#define INTSTAT_TXU 0x00000100
+#define INTSTAT_CNT 0x00000200
+#define INTSTAT_RCT 0x00000400
+#define INTSTAT_DPE 0x00000800
+#define INTSTAT_APE 0x00001000
+#define INTSTAT_PMA 0x00002000
+#define INTSTAT_PTA 0x00004000
+#define INTSTAT_RSV 0x00008000
+#define INTSTAT_INT_ACTV 0x00010000
+#define INTSTAT_RXIDLE 0x00020000
+#define INTSTAT_TXIDLE 0x00040000
+#define INTSTAT_RCIP 0x00080000
+#define INTSTAT_TCIP 0x00100000
+#define INTSTAT_RBE 0x00200000
+#define INTSTAT_RCTS 0x00400000
+
+#define GENCTL_SOFT_RESET 0x00000001
+#define GENCTL_ENABLE_INTERRUPT 0x00000002
+#define GENCTL_SOFTWARE_INTERRUPT 0x00000004
+#define GENCTL_POWER_DOWN 0x00000008
+#define GENCTL_ONECOPY 0x00000010
+#define GENCTL_BIG_ENDIAN 0x00000020
+#define GENCTL_RECEIVE_DMA_PRIORITY 0x00000040
+#define GENCTL_TRANSMIT_DMA_PRIORITY 0x00000080
+#define GENCTL_RECEIVE_FIFO_THRESHOLD128 0x00000300
+#define GENCTL_RECEIVE_FIFO_THRESHOLD96 0x00000200
+#define GENCTL_RECEIVE_FIFO_THRESHOLD64 0x00000100
+#define GENCTL_RECEIVE_FIFO_THRESHOLD32 0x00000000
+#define GENCTL_MEMORY_READ_LINE 0x00000400
+#define GENCTL_MEMORY_READ_MULTIPLE 0x00000800
+#define GENCTL_SOFTWARE1 0x00001000
+#define GENCTL_SOFTWARE2 0x00002000
+#define GENCTL_RESET_PHY 0x00004000
+
+#define RXCON_SAVE_ERRORED_PACKETS 0x00000001
+#define RXCON_RECEIVE_RUNT_FRAMES 0x00000002
+#define RXCON_RECEIVE_BROADCAST_FRAMES 0x00000004
+#define RXCON_RECEIVE_MULTICAST_FRAMES 0x00000008
+#define RXCON_RECEIVE_INVERSE_INDIVIDUAL_ADDRESS_FRAMES 0x00000010
+#define RXCON_PROMISCUOUS_MODE 0x00000020
+#define RXCON_MONITOR_MODE 0x00000040
+#define RXCON_EARLY_RECEIVE_ENABLE 0x00000080
+#define RXCON_EXTERNAL_BUFFER_DISABLE 0x00000000
+#define RXCON_EXTERNAL_BUFFER_16K 0x00000100
+#define RXCON_EXTERNAL_BUFFER_32K 0x00000200
+#define RXCON_EXTERNAL_BUFFER_128K 0x00000300
+
+#define TXCON_EARLY_TRANSMIT_ENABLE 0x00000001
+#define TXCON_LOOPBACK_DISABLE 0x00000000
+#define TXCON_LOOPBACK_MODE_INT 0x00000002
+#define TXCON_LOOPBACK_MODE_PHY 0x00000004
+#define TXCON_LOOPBACK_MODE_FULL_DUPLEX 0x00000006
+
+/*
+ * Structures definition and Functions prototypes
+ */
+
+/* EPIC's descriptors */
+struct epic_tx_desc {
+ u_int16_t status;
+ u_int16_t txlength;
+ u_int32_t bufaddr;
+ u_int16_t buflength;
+ u_int16_t control;
+ u_int32_t next;
+};
+struct epic_rx_desc {
+ u_int16_t status;
+ u_int16_t rxlength;
+ u_int32_t bufaddr;
+ u_int32_t buflength;
+ u_int32_t next;
+};
+
+struct epic_rx_buffer {
+ struct epic_rx_desc desc; /* EPIC's descriptor */
+ caddr_t data; /* Rx buffer address */
+#if !defined(RX_TO_MBUF)
+ caddr_t pool; /* Pool, allocated for buffer */
+#else
+ struct mbuf * mbuf; /* Or mbuf structure */
+#endif
+};
+
+struct epic_tx_buffer {
+ struct epic_tx_desc desc; /* EPIC's descriptor */
+ caddr_t data; /* Tx buffer address */
+ caddr_t pool; /* Pool, allocated for buffer */
+};
+
+typedef struct {
+ int unit;
+ struct arpcom epic_ac;
+ struct epic_rx_buffer rx_buffer[RX_RING_SIZE];
+ struct epic_tx_buffer tx_buffer[TX_RING_SIZE];
+ u_int32_t rxcon;
+ u_int32_t media;
+ u_int32_t txcon;
+ u_int32_t genctl;
+ u_int32_t cur_tx;
+ u_int32_t cur_rx;
+ u_int32_t dirty_tx;
+ u_int32_t pending_txs;
+ u_int32_t iobase;
+ u_int32_t irq;
+ struct ifmib_iso_8802_3 dot3stats;
+} epic_softc_t;
+
+#define epic_if epic_ac.ac_if
+#define epic_macaddr epic_ac.ac_enaddr
+
+//extern epic_softc_t *epics[];
+//extern u_long epic_pci_count;
+
+static int epic_ifioctl(register struct ifnet *, int, caddr_t);
+static void epic_intr_normal(void *);
+static void epic_rx_done(epic_softc_t *);
+static void epic_tx_done(epic_softc_t *);
+static void epic_ifstart(struct ifnet *);
+static void epic_ifwatchdog(struct ifnet *);
+
+static char* epic_pci_probe(pcici_t, pcidi_t);
+static void epic_pci_attach(pcici_t, int);
+static void epic_update_if_media_flags(epic_softc_t *);
+static void epic_init(epic_softc_t *);
+static void epic_stop(epic_softc_t *);
+
+static void epic_init_rings(epic_softc_t *);
+
+static int epic_read_eeprom(u_int16_t,u_int16_t);
+static void epic_output_eepromw(u_int16_t, u_int16_t);
+static u_int16_t epic_input_eepromw(u_int16_t);
+static u_int8_t epic_eeprom_clock(u_int16_t,u_int8_t);
+static void epic_write_eepromreg(u_int16_t,u_int8_t);
+static u_int8_t epic_read_eepromreg(u_int16_t);
+
+static int epic_read_phy_register(u_int16_t, u_int16_t);
+static void epic_write_phy_register(u_int16_t, u_int16_t,u_int16_t);