summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/mvme5500
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-23 09:53:31 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-23 15:18:44 +0200
commit031df3914990db0336a0d386fb53558b05de467e (patch)
tree4661e22f0cdb3f9d06879f0194b77c75f62bac79 /c/src/lib/libbsp/powerpc/mvme5500
parentbsps: Move interrupt controller support to bsps (diff)
downloadrtems-031df3914990db0336a0d386fb53558b05de467e.tar.bz2
bsps: Move legacy network drivers to bsps
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/mvme5500')
-rw-r--r--c/src/lib/libbsp/powerpc/mvme5500/Makefile.am6
-rw-r--r--c/src/lib/libbsp/powerpc/mvme5500/network/if_100MHz/GT64260eth.c1574
-rw-r--r--c/src/lib/libbsp/powerpc/mvme5500/network/if_1GHz/if_wm.c1765
-rw-r--r--c/src/lib/libbsp/powerpc/mvme5500/network/if_1GHz/pci_map.c135
4 files changed, 3 insertions, 3477 deletions
diff --git a/c/src/lib/libbsp/powerpc/mvme5500/Makefile.am b/c/src/lib/libbsp/powerpc/mvme5500/Makefile.am
index 8d7e85945c..6344139e30 100644
--- a/c/src/lib/libbsp/powerpc/mvme5500/Makefile.am
+++ b/c/src/lib/libbsp/powerpc/mvme5500/Makefile.am
@@ -55,9 +55,9 @@ librtemsbsp_a_SOURCES += GT64260/GT64260TWSI.c
librtemsbsp_a_SOURCES += GT64260/MVME5500I2C.c
if HAS_NETWORKING
-librtemsbsp_a_SOURCES += network/if_100MHz/GT64260eth.c
-librtemsbsp_a_SOURCES += network/if_1GHz/if_wm.c
-librtemsbsp_a_SOURCES += network/if_1GHz/pci_map.c
+librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/mvme5500/net/if_100MHz/GT64260eth.c
+librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/mvme5500/net/if_1GHz/if_wm.c
+librtemsbsp_a_SOURCES += ../../../../../../bsps/powerpc/mvme5500/net/if_1GHz/pci_map.c
endif
rtems_crti.$(OBJEXT): ../../../../../../bsps/powerpc/shared/start/rtems_crti.S
diff --git a/c/src/lib/libbsp/powerpc/mvme5500/network/if_100MHz/GT64260eth.c b/c/src/lib/libbsp/powerpc/mvme5500/network/if_100MHz/GT64260eth.c
deleted file mode 100644
index fa1d9471dd..0000000000
--- a/c/src/lib/libbsp/powerpc/mvme5500/network/if_100MHz/GT64260eth.c
+++ /dev/null
@@ -1,1574 +0,0 @@
-/* GT64260eth.c : GT64260 10/100 Mb ethernet MAC driver
- *
- * Copyright (c) 2003,2004 Brookhaven National Laboratory
- * S. Kate Feng <feng1@bnl.gov>
- * All rights reserved
- *
- * Acknowledgements:
- * netBSD : Copyright (c) 2002 Allegro Networks, Inc., Wasabi Systems, Inc.
- * Marvell : NDA document for the discovery system controller
- *
- * Some notes from the author, S. Kate Feng :
- *
- * 1) Mvme5500 uses Eth0 (controller 0) of the GT64260 to implement
- * the 10/100 BaseT Ethernet with PCI Master Data Byte Swap\
- * control.
- * 2) Implemented hardware snoop instead of software snoop
- * to ensure SDRAM cache coherency. (Copyright : NDA item)
- * 3) Added S/W support for multi mbuf. (TODO : Let the H/W do it)
- *
- */
-
-#define __INSIDE_RTEMS_BSD_TCPIP_STACK__
-
-#define BYTE_ORDER BIG_ENDIAN
-
-#include <rtems.h>
-#include <rtems/bspIo.h> /* printk */
-#include <rtems/error.h>
-#include <rtems/rtems_bsdnet.h>
-#include <rtems/rtems_bsdnet_internal.h>
-#include <stdio.h> /* printf for statistics */
-#include <string.h>
-
-#include <libcpu/io.h> /* inp & friends */
-#include <libcpu/spr.h> /* registers.h is included here */
-#include <bsp.h>
-
-#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/mbuf.h>
-
-#include <errno.h>
-
-/* #include <sys/queue.h> */
-
-#include <sys/socket.h>
-#include <sys/sockio.h> /* SIOCADDMULTI, SIOC... */
-#include <net/if.h>
-#include <net/if_dl.h>
-#include <netinet/in.h>
-#include <netinet/if_ether.h>
-
-#ifdef INET
-#include <netinet/in_var.h>
-#endif
-
-#include <bsp/irq.h>
-#include <bsp/GT64260ethreg.h>
-#include <bsp/GT64260eth.h>
-#include <bsp/VPD.h>
-
-extern unsigned char ReadConfVPD_buff(int offset); /* in startup/bspstart.c */
-
-#define GT_ETH_TASK_NAME "Geth"
-#define PKT_BUF_SZ 1536
-#define SOFTC_ALIGN 31
-#define HASH_ALIGN 15
-
-#define TXQ_HiLmt_OFF 2
-
-/* <skf>
- * 1. printk debug is for diagnosis only, which may cause
- * unexpected result, especially if txq is under heavy load
- * because CPU is fast with a decent cache.
- */
-#define GTeth_debug 0
-#define GTeth_rx_debug 0
-
-#if 0
-#define GE_FORGOT
-#define GE_NORX
-#define GT_DEBUG
-#endif
-
-/* RTEMS event to kill the daemon */
-#define KILL_EVENT RTEMS_EVENT_1
-/* RTEMS event to (re)start the transmitter */
-#define START_TRANSMIT_EVENT RTEMS_EVENT_2
-/* RTEMS events used by the ISR */
-#define RX_EVENT RTEMS_EVENT_3
-#define TX_EVENT RTEMS_EVENT_4
-#define ERR_EVENT RTEMS_EVENT_5
-
-#define ALL_EVENTS (KILL_EVENT|START_TRANSMIT_EVENT|RX_EVENT|TX_EVENT|ERR_EVENT)
-
-enum GTeth_whack_op {
- GE_WHACK_START, GE_WHACK_RESTART,
- GE_WHACK_CHANGE, GE_WHACK_STOP
-};
-
-enum GTeth_hash_op {
- GE_HASH_ADD, GE_HASH_REMOVE,
-};
-
-#define ET_MINLEN 64 /* minimum message length */
-
-static int GTeth_ifioctl(struct ifnet *ifp, ioctl_command_t cmd, caddr_t data);
-static void GTeth_ifstart (struct ifnet *);
-static void GTeth_ifchange(struct GTeth_softc *sc);
-static void GTeth_init_rx_ring(struct GTeth_softc *sc);
-static void GT64260eth_daemon(void *arg);
-static int GT64260eth_sendpacket(struct GTeth_softc *sc,struct mbuf *m);
-static unsigned GTeth_txq_done(struct GTeth_softc *sc);
-static void GTeth_tx_cleanup(struct GTeth_softc *sc);
-static void GTeth_tx_start(struct GTeth_softc *sc);
-static void GTeth_tx_stop(struct GTeth_softc *sc);
-static void GTeth_rx_cleanup(struct GTeth_softc *sc);
-static int GT64260eth_rx(struct GTeth_softc *sc);
-static void GTeth_rx_setup(struct GTeth_softc *sc);
-static void GTeth_rxprio_setup(struct GTeth_softc *sc);
-static void GTeth_rx_stop(struct GTeth_softc *dc);
-static void GT64260eth_isr(void);
-static int GTeth_hash_compute(struct GTeth_softc *sc,unsigned char eaddr[ETHER_ADDR_LEN]);
-static int GTeth_hash_entry_op(struct GTeth_softc *sc, enum GTeth_hash_op op,
- enum GTeth_rxprio prio,unsigned char eaddr[ETHER_ADDR_LEN]);
-
-static int GTeth_hash_fill(struct GTeth_softc *sc);
-static void GTeth_hash_init(struct GTeth_softc *sc);
-
-static struct GTeth_softc *root_GT64260eth_dev = NULL;
-
-static void GT64260eth_irq_on(const rtems_irq_connect_data *irq)
-{
- struct GTeth_softc *sc;
-
- for (sc= root_GT64260eth_dev; sc; sc= sc-> next_module) {
- outl(0x30883444,ETH0_EIMR); /* MOTLoad default interrupt mask */
- return;
- }
-}
-
-static void GT64260eth_irq_off(const rtems_irq_connect_data *irq)
-{
- struct GTeth_softc *sc;
-
- for (sc= root_GT64260eth_dev; sc; sc= sc-> next_module)
- outl(0, ETH0_EIMR);
-}
-
-static int GT64260eth_irq_is_on(const rtems_irq_connect_data *irq)
-{
- return(inl(ETH0_EICR) & ETH_IR_EtherIntSum);
-}
-
-static void GT64260eth_isr(void)
-{
- struct GTeth_softc *sc = root_GT64260eth_dev;
- rtems_event_set events=0;
- uint32_t cause;
-
-
- cause = inl(ETH0_EICR);
- outl( ~cause,ETH0_EICR); /* clear the ICR */
-
- if ( (!cause) || (cause & 0x803d00)) {
- sc->intr_errsts[sc->intr_err_ptr2++]=cause;
- sc->intr_err_ptr2 %=INTR_ERR_SIZE; /* Till Straumann */
- events |= ERR_EVENT;
- }
-
- /* ETH_IR_RxBuffer_3|ETH_IR_RxError_3 */
- if (cause & 0x880000) {
- sc->stats.rxInterrupts++;
- events |= RX_EVENT;
- }
- /* If there is an error, we want to continue to next descriptor */
- /* ETH_IR_TxBufferHigh|ETH_IR_TxEndHigh|ETH_IR_TxErrorHigh */
- if (cause & 0x444) {
- sc->stats.txInterrupts++;
- events |= TX_EVENT;
- /* It seems to be unnecessary. However, it's there
- * to be on the safe side due to the datasheet.
- * So far, it does not seem to affect the network performance
- * based on the EPICS catime.
- */
- /* ETH_ESDCMR_TXDH | ETH_ESDCMR_ERD = 0x800080 */
- if ((sc->txq_nactive > 1)&& ((inl(ETH0_ESDCMR)&ETH_ESDCMR_TXDH)==0))
- outl(0x800080,ETH0_ESDCMR);
-
-
- }
- rtems_bsdnet_event_send(sc->daemonTid, events);
-}
-
-static rtems_irq_connect_data GT64260ethIrqData={
- BSP_MAIN_ETH0_IRQ,
- (rtems_irq_hdl) GT64260eth_isr,
- NULL,
- (rtems_irq_enable) GT64260eth_irq_on,
- (rtems_irq_disable) GT64260eth_irq_off,
- (rtems_irq_is_enabled) GT64260eth_irq_is_on,
-};
-
-static void GT64260eth_init_hw(struct GTeth_softc *sc)
-{
-
-#ifdef GT_DEBUG
- printk("GT64260eth_init_hw(");
-#endif
- /* Kate Feng : Turn the hardware snoop on as MOTLoad did not have
- * it on by default.
- */
- outl(RxBSnoopEn|TxBSnoopEn|RxDSnoopEn|TxDSnoopEn, GT_CUU_Eth0_AddrCtrlLow);
- outl(HashSnoopEn, GT_CUU_Eth0_AddrCtrlHigh);
-
- sc->rxq_intrbits=0;
- sc->sc_flags=0;
-
-#ifndef GE_NORX
- GTeth_rx_setup(sc);
-#endif
-
-#ifndef GE_NOTX
- GTeth_tx_start(sc);
-#endif
-
- sc->sc_pcr |= ETH_EPCR_HS_512;
- outl(sc->sc_pcr, ETH0_EPCR);
- outl(sc->sc_pcxr, ETH0_EPCXR); /* port config. extended reg. */
- outl(0, ETH0_EICR); /* interrupt cause register */
- outl(sc->sc_intrmask, ETH0_EIMR);
-#ifndef GE_NOHASH
- /* Port Hash Table Pointer Reg*/
- outl(((unsigned) sc->sc_hashtable),ETH0_EHTPR);
-#endif
-#ifndef GE_NORX
- outl(ETH_ESDCMR_ERD,ETH0_ESDCMR); /* enable Rx DMA in SDMA Command Register */
- sc->sc_flags |= GE_RXACTIVE;
-#endif
-#ifdef GT_DEBUG
- printk("SDCMR 0x%x ", inl(ETH0_ESDCMR));
-#endif
-
- /* connect the interrupt handler which should
- * take care of enabling interrupts
- */
- if (!BSP_install_rtems_irq_handler(&GT64260ethIrqData))
- printk("GT64260eth: unable to install ISR");
-
- /* The ethernet port is ready to transmit/receive */
- outl(sc->sc_pcr | ETH_EPCR_EN, ETH0_EPCR);
-
-#ifdef GT_DEBUG
- printk(")\n");
-#endif
-}
-
-static void GT64260eth_stop_hw(struct GTeth_softc *sc)
-{
-
- printk("GT64260eth_stop_hw(");
-
- /* remove our interrupt handler which will also
- * disable interrupts at the MPIC and the device
- * itself
- */
- if (!BSP_remove_rtems_irq_handler(&GT64260ethIrqData))
- printk("GT64260eth: unable to remove IRQ handler!");
-
- outl(sc->sc_pcr, ETH0_EPCR);
- outl(0, ETH0_EIMR);
-
- sc->arpcom.ac_if.if_flags &= ~IFF_RUNNING;
-#ifndef GE_NOTX
- GTeth_tx_stop(sc);
-#endif
-#ifndef GE_NORX
- GTeth_rx_stop(sc);
-#endif
- sc->sc_hashtable = NULL;
- if (GTeth_debug>0) printk(")");
-}
-
-static void GT64260eth_stop(struct GTeth_softc *sc)
-{
- if (GTeth_debug>0) printk("GT64260eth_stop(");
-
- /* The hardware is shutdown in the daemon */
- /* kill the daemon. We also must release the networking
- * semaphore or there'll be a deadlock...
- */
- rtems_bsdnet_event_send(sc->daemonTid, KILL_EVENT);
- rtems_bsdnet_semaphore_release();
-
- sc->daemonTid=0;
- /* now wait for it to die */
- rtems_semaphore_obtain(sc->daemonSync,RTEMS_WAIT,RTEMS_NO_TIMEOUT);
-
- /* reacquire the bsdnet semaphore */
- rtems_bsdnet_semaphore_obtain();
- if (GTeth_debug>0) printk(")");
-}
-
-static void GT64260eth_ifinit(void *arg)
-{
- struct GTeth_softc *sc = (struct GTeth_softc*)arg;
- int i;
-
-#ifdef GT_DEBUG
- printk("GT64260eth_ifinit(): daemon ID: 0x%08x)\n", sc->daemonTid);
-#endif
- if (sc->daemonTid) {
-#ifdef GT_DEBUG
- printk("GT64260eth: daemon already up, doing nothing\n");
-#endif
- return;
- }
-
-#ifndef GE_NOHASH
- /* Mvme5500, the user must initialize the hash table before enabling the
- * Ethernet controller
- */
- GTeth_hash_init(sc);
- GTeth_hash_fill(sc);
-#endif
-
- sc->intr_err_ptr1=0;
- sc->intr_err_ptr2=0;
- for (i=0; i< INTR_ERR_SIZE; i++) sc->intr_errsts[i]=0;
-
- /* initialize the hardware (we are holding the network semaphore at this point) */
- (void)GT64260eth_init_hw(sc);
-
- /* launch network daemon */
-
- /* NOTE:
- * in ss-20011025 (and later) any task created by 'bsdnet_newproc' is
- * wrapped by code which acquires the network semaphore...
- */
- sc->daemonTid = rtems_bsdnet_newproc(GT_ETH_TASK_NAME,4096,GT64260eth_daemon,arg);
-
- /* Tell the world that we're running */
- sc->arpcom.ac_if.if_flags |= IFF_RUNNING;
-
-}
-
-/* attach parameter tells us whether to attach or to detach the driver */
-/* Attach this instance, and then all the sub-devices */
-int rtems_GT64260eth_driver_attach(struct rtems_bsdnet_ifconfig *config, int attach)
-{
- struct GTeth_softc *sc;
- struct ifnet *ifp;
- unsigned sdcr, data;
- unsigned char hwaddr[6];
- int i, unit, phyaddr;
- void *softc_mem;
- char *name;
-
- unit = rtems_bsdnet_parse_driver_name(config, &name);
- if (unit < 0) return 0;
-
- printk("\nEthernet driver name %s unit %d \n",name, unit);
- printk("RTEMS-mvme5500 BSP Copyright (c) 2004, Brookhaven National Lab., Shuchen Kate Feng \n");
- /* Make certain elements e.g. descriptor lists are aligned. */
- softc_mem = rtems_bsdnet_malloc(sizeof(*sc) + SOFTC_ALIGN, M_FREE, M_NOWAIT);
-
- /* Check for the very unlikely case of no memory. */
- if (softc_mem == NULL)
- printk("GT64260eth: OUT OF MEMORY");
-
- sc = (void *)(((long)softc_mem + SOFTC_ALIGN) & ~SOFTC_ALIGN);
- memset(sc, 0, sizeof(*sc));
-
- if (GTeth_debug>0) printk("txq_desc[0] addr:%x, rxq_desc[0] addr:%x, sizeof sc %d\n",&sc->txq_desc[0], &sc->rxq_desc[0], sizeof(*sc));
-
- sc->sc_macno = unit-1;
-
- data = inl(ETH_EPAR);
- phyaddr = ETH_EPAR_PhyAD_GET(data, sc->sc_macno);
-
- /* try to read HW address from the device if not overridden
- * by config
- */
- if (config->hardware_address) {
- memcpy(hwaddr, config->hardware_address, ETHER_ADDR_LEN);
- } else {
- printk("Read EEPROM ");
- for (i = 0; i < 6; i++)
- hwaddr[i] = ReadConfVPD_buff(VPD_ENET0_OFFSET+i);
- }
-
-#ifdef GT_DEBUG
- printk("using MAC addr from device:");
- for (i = 0; i < ETHER_ADDR_LEN; i++) printk("%x:", hwaddr[i]);
- printk("\n");
-#endif
-
- memcpy(sc->arpcom.ac_enaddr, hwaddr, ETHER_ADDR_LEN);
-
- ifp = &sc->arpcom.ac_if;
-
- sc->sc_pcr = inl(ETH0_EPCR);
- sc->sc_pcxr = inl(ETH0_EPCXR);
- sc->sc_intrmask = inl(ETH0_EIMR) | ETH_IR_MIIPhySTC;
-
- printk("address %s\n", ether_sprintf(hwaddr));
-
-#ifdef GT_DEBUG
- printk(", pcr %x, pcxr %x ", sc->sc_pcr, sc->sc_pcxr);
-#endif
-
-
- sc->sc_pcxr |= ETH_EPCXR_PRIOrx_Override;
- sc->sc_pcxr |= (3<<6); /* highest priority only */
- sc->sc_pcxr &= ~ETH_EPCXR_RMIIEn; /* MII mode */
-
- /* Max. Frame Length (packet) allowed for reception is 1536 bytes,
- * instead of 2048 (MOTLoad default) or 64K.
- */
- sc->sc_pcxr &= ~(3 << 14);
- sc->sc_pcxr |= (ETH_EPCXR_MFL_1536 << 14);
- sc->sc_max_frame_length = PKT_BUF_SZ;
-
-
- if (sc->sc_pcr & ETH_EPCR_EN) {
- int tries = 1000;
- /* Abort transmitter and receiver and wait for them to quiese*/
- outl(ETH_ESDCMR_AR|ETH_ESDCMR_AT,ETH0_ESDCMR);
- do {
- rtems_bsp_delay(100);
- } while (tries-- > 0 && (inl(ETH0_ESDCMR) & (ETH_ESDCMR_AR|ETH_ESDCMR_AT)));
- }
-#ifdef GT_DEBUG
- printk(", phy %d (mii)\n", phyaddr);
- printk("ETH0_ESDCMR %x ", inl(ETH0_ESDCMR));
-#endif
-
- sc->sc_pcr &= ~(ETH_EPCR_EN | ETH_EPCR_RBM | ETH_EPCR_PM | ETH_EPCR_PBF);
-
-#ifdef GT_DEBUG
- printk("Now sc_pcr %x,sc_pcxr %x", sc->sc_pcr, sc->sc_pcxr);
-#endif
-
- /*
- * Now turn off the GT. If it didn't quiese, too ***ing bad.
- */
- outl(sc->sc_pcr, ETH0_EPCR);
- outl(sc->sc_intrmask, ETH0_EIMR);
- sdcr = inl(ETH0_ESDCR);
- /* Burst size is limited to 4 64bit words */
- ETH_ESDCR_BSZ_SET(sdcr, ETH_ESDCR_BSZ_4);
- sdcr |= ETH_ESDCR_RIFB;/*limit interrupt on frame boundaries, instead of buffer*/
-#if 0
- sdcr &= ~(ETH_ESDCR_BLMT|ETH_ESDCR_BLMR); /* MOTLoad defualt Big-endian */
-#endif
- outl(sdcr, ETH0_ESDCR);
-
-#ifdef GT_DEBUG
- printk("sdcr %x \n", sdcr);
-#endif
-
- if (phyaddr== -1) printk("MII auto negotiation ?");
-
- ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
-
- ifp->if_softc = sc;
-
- /* set this interface's name and unit */
- ifp->if_unit = unit;
- ifp->if_name = name;
-
- ifp->if_mtu = config->mtu ? config->mtu : ETHERMTU;
-
- ifp->if_init = GT64260eth_ifinit;
- ifp->if_ioctl = GTeth_ifioctl;
- ifp->if_start = GTeth_ifstart;
- ifp->if_output = ether_output;
-
- /* ifp->if_watchdog = GTeth_ifwatchdog;*/
-
- if (ifp->if_snd.ifq_maxlen == 0)
- ifp->if_snd.ifq_maxlen = ifqmaxlen;
-
- /* create the synchronization semaphore */
- if (RTEMS_SUCCESSFUL != rtems_semaphore_create(
- rtems_build_name('G','e','t','h'),0,0,0,&sc->daemonSync))
- printk("GT64260eth: semaphore creation failed");
-
- sc->next_module = root_GT64260eth_dev;
- root_GT64260eth_dev = sc;
-
- /* Actually attach the interface */
- if_attach(ifp);
- ether_ifattach(ifp);
-
-#ifdef GT_DEBUG
- printk("GT64260eth: Ethernet driver has been attached (handle 0x%08x,ifp 0x%08x)\n",sc, ifp);
-#endif
-
- return(1);
-}
-
-static void GT64260eth_stats(struct GTeth_softc *sc)
-{
-#if 0
- struct ifnet *ifp = &sc->arpcom.ac_if;
-
- printf(" Rx Interrupts:%-8lu\n", sc->stats.rxInterrupts);
- printf(" Receive Packets:%-8lu\n", ifp->if_ipackets);
- printf(" Receive errors:%-8lu\n", ifp->if_ierrors);
- printf(" Framing Errors:%-8lu\n", sc->stats.frame_errors);
- printf(" Crc Errors:%-8lu\n", sc->stats.crc_errors);
- printf(" Oversized Frames:%-8lu\n", sc->stats.length_errors);
- printf(" Active Rxqs:%-8u\n", sc->rxq_active);
- printf(" Tx Interrupts:%-8lu\n", sc->stats.txInterrupts);
-#endif
- printf("Multi-BuffTx Packets:%-8lu\n", sc->stats.txMultiBuffPacket);
- printf("Multi-BuffTx max len:%-8lu\n", sc->stats.txMultiMaxLen);
- printf("SingleBuffTx max len:%-8lu\n", sc->stats.txSinglMaxLen);
- printf("Multi-BuffTx maxloop:%-8lu\n", sc->stats.txMultiMaxLoop);
- printf("Tx buffer max len :%-8lu\n", sc->stats.txBuffMaxLen);
-#if 0
- printf(" Transmitt Packets:%-8lu\n", ifp->if_opackets);
- printf(" Transmitt errors:%-8lu\n", ifp->if_oerrors);
- printf(" Tx/Rx collisions:%-8lu\n", ifp->if_collisions);
- printf(" Active Txqs:%-8u\n", sc->txq_nactive);
-#endif
-}
-
-void GT64260eth_printStats(void)
-{
- GT64260eth_stats(root_GT64260eth_dev);
-}
-
-static int GTeth_ifioctl(struct ifnet *ifp, ioctl_command_t cmd, caddr_t data)
-{
- struct GTeth_softc *sc = ifp->if_softc;
- struct ifreq *ifr = (struct ifreq *) data;
-
- int error = 0;
-
-#ifdef GT_DEBUG
- printk("GTeth_ifioctl(");
-#endif
-
- switch (cmd) {
- default:
- if (GTeth_debug >0) {
- printk("etherioctl(");
- if (cmd== SIOCSIFADDR) printk("SIOCSIFADDR ");
- }
- return ether_ioctl(ifp, cmd, data);
-
- case SIOCSIFFLAGS:
- switch (ifp->if_flags & (IFF_UP|IFF_RUNNING)) {
- case IFF_RUNNING: /* not up, so we stop */
- GT64260eth_stop(sc);
- break;
- case IFF_UP: /* not running, so we start */
- GT64260eth_ifinit(sc);
- break;
- case IFF_UP|IFF_RUNNING:/* active->active, update */
- GT64260eth_stop(sc);
- GT64260eth_ifinit(sc);
- break;
- default: /* idle->idle: do nothing */
- break;
- }
- break;
- case SIO_RTEMS_SHOW_STATS:
- GT64260eth_stats (sc);
- break;
- case SIOCADDMULTI:
- case SIOCDELMULTI:
- error = (cmd == SIOCADDMULTI)
- ? ether_addmulti(ifr, &sc->arpcom)
- : ether_delmulti(ifr, &sc->arpcom);
- if (error == ENETRESET) {
- if (ifp->if_flags & IFF_RUNNING)
- GTeth_ifchange(sc);
- else
- error = 0;
- }
- break;
- case SIOCSIFMTU:
- if (ifr->ifr_mtu > ETHERMTU || ifr->ifr_mtu < ETHERMIN) {
- error = EINVAL;
- break;
- }
- ifp->if_mtu = ifr->ifr_mtu;
- break;
- }
-
-#ifdef GT_DEBUG
- printk("exit ioctl\n");
-#endif
- return error;
-}
-
-static void GTeth_ifstart(struct ifnet *ifp)
-{
- struct GTeth_softc *sc = ifp->if_softc;
-
-#ifdef GT_DEBUG
- printk("GTeth_ifstart(");
-#endif
-
- if ((ifp->if_flags & IFF_RUNNING) == 0) {
-#ifdef GT_DEBUG
- printk("IFF_RUNNING==0\n");
-#endif
- return;
- }
-
- ifp->if_flags |= IFF_OACTIVE;
- rtems_bsdnet_event_send (sc->daemonTid, START_TRANSMIT_EVENT);
-#ifdef GT_DEBUG
- printk(")\n");
-#endif
-}
-
-/* Initialize the Rx rings */
-static void GTeth_init_rx_ring(struct GTeth_softc *sc)
-{
- int i;
- volatile struct GTeth_desc *rxd;
- unsigned nxtaddr;
-
- sc->rxq_fi=0;
- sc->rxq_head_desc = &sc->rxq_desc[0];
- rxd = sc->rxq_head_desc;
-
- sc->rxq_desc_busaddr = (unsigned long) sc->rxq_head_desc;
-#ifdef GT_DEBUG
- printk("rxq_desc_busaddr %x ,&sc->rxq_desc[0] %x\n",
- sc->rxq_desc_busaddr, sc->rxq_head_desc);
-#endif
-
- nxtaddr = sc->rxq_desc_busaddr + sizeof(*rxd);
- sc->rx_buf_sz = (sc->arpcom.ac_if.if_mtu <= 1500 ? PKT_BUF_SZ : sc->arpcom.ac_if.if_mtu + 32);
- sc->rxq_active = RX_RING_SIZE;
-
- for (i = 0; i < RX_RING_SIZE; i++, rxd++, nxtaddr += sizeof(*rxd)) {
- struct mbuf *m;
-
- rxd->ed_lencnt= sc->rx_buf_sz <<16;
- rxd->ed_cmdsts = RX_CMD_F|RX_CMD_L|RX_CMD_O|RX_CMD_EI;
-
- MGETHDR(m, M_WAIT, MT_DATA);
- MCLGET(m, M_WAIT);
- m->m_pkthdr.rcvif = &sc->arpcom.ac_if;
- sc->rxq_mbuf[i] = m;
-
- /* convert mbuf pointer to data pointer of correct type */
- rxd->ed_bufptr = (unsigned) mtod(m, void *);
-
- /*
- * update the nxtptr to point to the next txd.
- */
- if (i == RX_RING_SIZE - 1)
- nxtaddr = sc->rxq_desc_busaddr;
- rxd->ed_nxtptr = nxtaddr;
-
-#ifdef GT_DEBUG
- printk("ed_lencnt %x, rx_buf_sz %x ",rxd->ed_lencnt, sc->rx_buf_sz);
- printk("ed_cmdsts %x \n",rxd->ed_cmdsts);
- printk("mbuf @ 0x%x, next desc. @ 0x%x\n",rxd->ed_bufptr,rxd->ed_nxtptr);
-#endif
- }
-}
-
-void GTeth_rxprio_setup(struct GTeth_softc *sc)
-{
-
- GTeth_init_rx_ring(sc);
-
- sc->rxq_intrbits = ETH_IR_RxBuffer|ETH_IR_RxError|ETH_IR_RxBuffer_3|ETH_IR_RxError_3;
-}
-
-static int GT64260eth_rx(struct GTeth_softc *sc)
-{
- struct ifnet *ifp = &sc->arpcom.ac_if;
- struct mbuf *m;
- int nloops=0;
-
-#ifdef GT_DEBUG
- if (GTeth_rx_debug>0) printk("GT64260eth_rx(");
-#endif
-
- while (sc->rxq_active > 0) {
- volatile struct GTeth_desc *rxd = &sc->rxq_desc[sc->rxq_fi];
- struct ether_header *eh;
- unsigned int cmdsts;
- unsigned int byteCount;
-
- cmdsts = rxd->ed_cmdsts;
-
- /*
- * Sometimes the GE "forgets" to reset the ownership bit.
- * But if the length has been rewritten, the packet is ours
- * so pretend the O bit is set.
- *
- */
- byteCount = rxd->ed_lencnt & 0xffff;
-
- if (cmdsts & RX_CMD_O) {
- if (byteCount == 0)
- return(0);
-
- /* <Kate Feng> Setting command/status to be zero seems to eliminate
- * the spurious interrupt associated with the GE_FORGOT issue.
- */
- rxd->ed_cmdsts=0;
-
-#ifdef GE_FORGOT
- /*
- * For dignosis purpose only. Not a good practice to turn it on
- */
- printk("Rxq %d %d %d\n", sc->rxq_fi, byteCount,nloops);
-#endif
- }
-
- /* GT gave the ownership back to the CPU or the length has
- * been rewritten , which means there
- * is new packet in the descriptor/buffer
- */
-
- nloops++;
- /*
- * If this is not a single buffer packet with no errors
- * or for some reason it's bigger than our frame size,
- * ignore it and go to the next packet.
- */
- if ((cmdsts & (RX_CMD_F|RX_CMD_L|RX_STS_ES)) !=
- (RX_CMD_F|RX_CMD_L) ||
- byteCount > sc->sc_max_frame_length) {
- --sc->rxq_active;
- ifp->if_ipackets++;
- ifp->if_ierrors++;
- if (cmdsts & RX_STS_OR) sc->stats.or_errors++;
- if (cmdsts & RX_STS_CE) sc->stats.crc_errors++;
- if (cmdsts & RX_STS_MFL) sc->stats.length_errors++;
- if (cmdsts & RX_STS_SF) sc->stats.frame_errors++;
- if ((cmdsts & RX_STS_LC) || (cmdsts & RX_STS_COL))
- ifp->if_collisions++;
- /* recycle the buffer */
- m->m_len=sc->rx_buf_sz;
- }
- else {
- m = sc->rxq_mbuf[sc->rxq_fi];
- m->m_len = m->m_pkthdr.len = byteCount - sizeof(struct ether_header);
- eh = mtod (m, struct ether_header *);
- m->m_data += sizeof(struct ether_header);
- ether_input (ifp, eh, m);
-
- ifp->if_ipackets++;
- ifp->if_ibytes+=byteCount;
- --sc->rxq_active;
- MGETHDR (m, M_WAIT, MT_DATA);
- MCLGET (m, M_WAIT);
- }
- m->m_pkthdr.rcvif = ifp;
- sc->rxq_mbuf[sc->rxq_fi]= m;
- /* convert mbuf pointer to data pointer of correct type */
- rxd->ed_bufptr = (unsigned) mtod(m, void*);
- rxd->ed_lencnt = (unsigned long) sc->rx_buf_sz <<16;
- rxd->ed_cmdsts = RX_CMD_F|RX_CMD_L|RX_CMD_O|RX_CMD_EI;
-
- if (++sc->rxq_fi == RX_RING_SIZE) sc->rxq_fi = 0;
-
- sc->rxq_active++;
- } /* while (sc->rxq_active > 0) */
-#ifdef GT_DEBUG
- if (GTeth_rx_debug>0) printk(")");
-#endif
- return nloops;
-}
-
-static void GTeth_rx_setup(struct GTeth_softc *sc)
-{
-
- if (GTeth_rx_debug>0) printk("GTeth_rx_setup(");
-
- GTeth_rxprio_setup(sc);
-
- if ((sc->sc_flags & GE_RXACTIVE) == 0) {
- /* First Rx Descriptor Pointer 3 */
- outl( sc->rxq_desc_busaddr, ETH0_EFRDP3);
- /* Current Rx Descriptor Pointer 3 */
- outl( sc->rxq_desc_busaddr,ETH0_ECRDP3);
-#ifdef GT_DEBUG
- printk("ETH0_EFRDP3 0x%x, ETH0_ECRDP3 0x%x \n", inl(ETH0_EFRDP3),
- inl(ETH0_ECRDP3));
-#endif
- }
- sc->sc_intrmask |= sc->rxq_intrbits;
-
- if (GTeth_rx_debug>0) printk(")\n");
-}
-
-static void GTeth_rx_cleanup(struct GTeth_softc *sc)
-{
- int i;
-
- if (GTeth_rx_debug>0) printk( "GTeth_rx_cleanup(");
-
- for (i=0; i< RX_RING_SIZE; i++) {
- if (sc->rxq_mbuf[i]) {
- m_freem(sc->rxq_mbuf[i]);
- sc->rxq_mbuf[i]=0;
- }
- }
- if (GTeth_rx_debug>0) printk(")");
-}
-
-static void GTeth_rx_stop(struct GTeth_softc *sc)
-{
- if (GTeth_rx_debug>0) printk( "GTeth_rx_stop(");
- sc->sc_flags &= ~GE_RXACTIVE;
- sc->sc_idlemask &= ~(ETH_IR_RxBits|ETH_IR_RxBuffer_3|ETH_IR_RxError_3);
- sc->sc_intrmask &= ~(ETH_IR_RxBits|ETH_IR_RxBuffer_3|ETH_IR_RxError_3);
- outl(sc->sc_intrmask, ETH0_EIMR);
- outl(ETH_ESDCMR_AR, ETH0_ESDCMR); /* abort receive */
- do {
- rtems_bsp_delay(10);
- } while (inl(ETH0_ESDCMR) & ETH_ESDCMR_AR);
- GTeth_rx_cleanup(sc);
- if (GTeth_rx_debug>0) printk(")");
-}
-
-static void GTeth_txq_free(struct GTeth_softc *sc, unsigned cmdsts)
-{
- struct ifnet *ifp = &sc->arpcom.ac_if;
- volatile struct GTeth_desc *txd = &sc->txq_desc[sc->txq_fi];
-
- /* ownership is sent back to CPU */
- if (GTeth_debug>0) printk("txq%d,active %d\n", sc->txq_fi, sc->txq_nactive);
-
- txd->ed_cmdsts &= ~TX_CMD_O; /* <skf> in case GT forgot */
-
- /* statistics */
- ifp->if_opackets++;
- ifp->if_obytes += sc->txq_mbuf[sc->txq_fi]->m_len;
- if (cmdsts & TX_STS_ES) {
- ifp->if_oerrors++;
- if ((cmdsts & TX_STS_LC) || (cmdsts & TX_STS_COL))
- ifp->if_collisions++;
- }
- /* Free the original mbuf chain */
- m_freem(sc->txq_mbuf[sc->txq_fi]);
- sc->txq_mbuf[sc->txq_fi] = 0;
- ifp->if_timer = 5;
-
- sc->txq_free++;
- if (++sc->txq_fi == TX_RING_SIZE) sc->txq_fi = 0;
- --sc->txq_nactive;
-}
-
-#if UNUSED
-static int txq_high_limit(struct GTeth_softc *sc)
-{
- /*
- * Have we [over]consumed our limit of descriptors?
- * Do we have enough free descriptors?
- */
- if ( TX_RING_SIZE == sc->txq_nactive + TXQ_HiLmt_OFF) {
- volatile struct GTeth_desc *txd2 = &sc->txq_desc[sc->txq_fi];
- unsigned cmdsts;
-
- cmdsts = txd2->ed_cmdsts;
- if (cmdsts & TX_CMD_O) { /* Ownership (1=GT 0=CPU) */
- int nextin;
-
- /*
- * Sometime the Discovery forgets to update the
- * last descriptor. See if CPU owned the descriptor
- * after it (since we know we've turned that to
- * the discovery and if CPU owned it, the Discovery
- * gave it back). If CPU does, we know the Discovery
- * gave back this one but forgot to mark it back to CPU.
- */
- nextin = (sc->txq_fi + 1) % TX_RING_SIZE;
- if (sc->txq_desc[nextin].ed_cmdsts & TX_CMD_O) {
-#if 0
- printk("Overconsuming Tx descriptors!\n");
-#endif
- return 1;
- }
- printk("Txq %d forgot\n", sc->txq_fi);
- }
- /* Txq ring is almost full, let's free the current buffer here */
-#if 0
- printk("Txq ring near full, free desc%d\n",sc->txq_fi);
-#endif
- GTeth_txq_free(sc, cmdsts);
- } /* end if ( TX_RING_SIZE == sc->txq_nactive + TXQ_HiLmt_OFF) */
- return 0;
-}
-#endif
-
-static int GT64260eth_sendpacket(struct GTeth_softc *sc,struct mbuf *m)
-{
- volatile struct GTeth_desc *txd = &sc->txq_desc[sc->txq_lo];
- unsigned intrmask = sc->sc_intrmask;
- unsigned loop=0, index= sc->txq_lo;
-
- /*
- * The end-of-list descriptor we put on last time is the starting point
- * for this packet. The GT is supposed to terminate list processing on
- * a NULL nxtptr but that currently is broken so a CPU-owned descriptor
- * must terminate the list.
- */
- intrmask = sc->sc_intrmask;
-
- if ( !(m->m_next)) {/* single buffer packet */
- sc->txq_mbuf[index]= m;
- sc->stats.txSinglMaxLen= MAX(m->m_len, sc->stats.txSinglMaxLen);
- }
- else /* multiple mbufs in this packet */
- {
- struct mbuf *mtp, *mdest;
- volatile unsigned char *pt;
- int len, y;
-
-#ifdef GT_DEBUG
- printk("multi mbufs ");
-#endif
- MGETHDR(mdest, M_WAIT, MT_DATA);
- MCLGET(mdest, M_WAIT);
- pt = (volatile unsigned char *)mdest->m_data;
- for (mtp=m,len=0;mtp;mtp=mtp->m_next) {
- loop++;
- if ( (y=(len+mtp->m_len)) > sizeof(union mcluster)) {
- /* GT64260 allows us to chain the remaining to the next
- * free descriptors.
- */
- printk("packet size %x > mcluster %x\n", y,sizeof(union mcluster));
- printk("GT64260eth : packet too large ");
- }
- memcpy((void *)pt,(char *)mtp->m_data, mtp->m_len);
- pt += mtp->m_len;
-#if 0
- printk("%d ",mtp->m_len);
-#endif
- len += mtp->m_len;
- sc->stats.txBuffMaxLen=MAX(mtp->m_len,sc->stats.txBuffMaxLen);
- }
- sc->stats.txMultiMaxLoop=MAX(loop, sc->stats.txMultiMaxLoop);
-#if 0
- printk("\n");
-#endif
- mdest->m_len=len;
- /* free old mbuf chain */
- m_freem(m);
- sc->txq_mbuf[index] = m = mdest;
- sc->stats.txMultiBuffPacket++;
- sc->stats.txMultiMaxLen= MAX(m->m_len, sc->stats.txMultiMaxLen);
- }
- if (m->m_len < ET_MINLEN) m->m_len = ET_MINLEN;
-
- txd->ed_bufptr = (unsigned) mtod(m, void*);
- txd->ed_lencnt = m->m_len << 16;
- /*txd->ed_cmdsts = TX_CMD_L|TX_CMD_GC|TX_CMD_P|TX_CMD_O|TX_CMD_F|TX_CMD_EI;*/
- txd->ed_cmdsts = 0x80c70000;
- while (txd->ed_cmdsts != 0x80c70000);
- memBar();
-
-#ifdef GT_DEBUG
- printk("len = %d, cmdsts 0x%x ", m->m_len,txd->ed_cmdsts);
-#endif
-
- /*
- * Tell the SDMA engine to "Fetch!"
- * Start Tx high.
- */
- sc->txq_nactive++;
- outl(0x800080, ETH0_ESDCMR); /* ETH_ESDCMR_TXDH| ETH_ESDCMR_ERD */
- if ( ++sc->txq_lo == TX_RING_SIZE) sc->txq_lo = 0;
- sc->txq_free--;
-
-#if 0
- /*
- * Since we have put an item into the packet queue, we now want
- * an interrupt when the transmit queue finishes processing the
- * list. But only update the mask if needs changing.
- */
- intrmask |= sc->txq_intrbits & ( ETH_IR_TxEndHigh|ETH_IR_TxBufferHigh);
- if (sc->sc_intrmask != intrmask) {
- sc->sc_intrmask = intrmask;
- outl(sc->sc_intrmask, ETH0_EIMR);
- }
-#endif
-
-#if 0
- printk("EICR= %x, EIMR= %x ", inl(ETH0_EICR), inl(ETH0_EIMR));
- printk("%s:transmit frame #%d queued in slot %d.\n",
- sc->arpcom.ac_if.if_name, sc->txq_lo, index);
- printk("pcr %x, pcxr %x DMA dcr %x cmr %x\n", inl(ETH0_EPCR), inl(ETH0_EPCXR), inl(ETH0_ESDCR), inl(ETH0_ESDCMR));
-#endif
-
- return 1;
-}
-
-static unsigned GTeth_txq_done(struct GTeth_softc *sc)
-{
- if (GTeth_debug>0) printk("Txdone(" );
-
- while (sc->txq_nactive > 0) {
- /* next to be returned to the CPU */
- volatile struct GTeth_desc *txd = &sc->txq_desc[sc->txq_fi];
- unsigned cmdsts;
-
- /* if GT64260 still owns it ....... */
- if ((cmdsts = txd->ed_cmdsts) & TX_CMD_O) {
- int nextin;
-
- /* Someone quoted :
- * "Sometimes the Discovery forgets to update the
- * ownership bit in the descriptor."
- * <skf> More correctly, the last descriptor of each
- * transmitted frame is returned to CPU ownership and
- * status is updated only after the actual transmission
- * of the packet is completed. Also, if there is an error
- * during transmission, we want to continue the
- * transmission of the next descriptor, in additions to
- * reporting the error.
- */
- /* The last descriptor */
- if (sc->txq_nactive == 1) return(0);
-
- /*
- * Sometimes the Discovery forgets to update the
- * ownership bit in the descriptor. See if CPU owned
- * the descriptor after it (since we know we've turned
- * that to the Discovery and if CPU owned it now then the
- * Discovery gave it back). If we do, we know the
- * Discovery gave back this one but forgot to mark it
- * back to CPU.
- */
- nextin = (sc->txq_fi + 1) % TX_RING_SIZE;
-
- if (sc->txq_desc[nextin].ed_cmdsts & TX_CMD_O) return(0);
- printk("Txq%d forgot\n",sc->txq_fi);
- } /* end checking GT64260eth owner */
- GTeth_txq_free(sc, cmdsts);
- } /* end while */
- if (GTeth_debug>0) printk(")\n");
- return(1);
-}
-
-static void GTeth_tx_start(struct GTeth_softc *sc)
-{
- int i;
- volatile struct GTeth_desc *txd;
- unsigned nxtaddr;
-
-#ifdef GT_DEBUG
- printk("GTeth_tx_start(");
-#endif
- sc->sc_intrmask &= ~(ETH_IR_TxEndHigh|ETH_IR_TxBufferHigh|
- ETH_IR_TxEndLow |ETH_IR_TxBufferLow);
-
- txd = &sc->txq_desc[0];
- sc->txq_desc_busaddr = (unsigned long) &sc->txq_desc[0];
-#ifdef GT_DEBUG
- printk("txq_desc_busaddr %x, &sc->txq_desc[0] %x \n",
- sc->txq_desc_busaddr,&sc->txq_desc[0]);
-#endif
-
- nxtaddr = sc->txq_desc_busaddr + sizeof(*txd);
-
- sc->txq_pendq.ifq_maxlen = 10;
- sc->txq_pendq.ifq_head= NULL;
- sc->txq_pendq.ifq_tail= NULL;
- sc->txq_nactive = 0;
- sc->txq_fi = 0;
- sc->txq_lo = 0;
- sc->txq_inptr = PKT_BUF_SZ;
- sc->txq_outptr = 0;
- sc->txq_free = TX_RING_SIZE;
-
- for (i = 0; i < TX_RING_SIZE;
- i++, txd++, nxtaddr += sizeof(*txd)) {
- sc->txq_mbuf[i]=0;
- txd->ed_bufptr = 0;
-
- /*
- * update the nxtptr to point to the next txd.
- */
- txd->ed_cmdsts = 0;
- if ( i== TX_RING_SIZE-1) nxtaddr = sc->txq_desc_busaddr;
- txd->ed_nxtptr = nxtaddr;
-#ifdef GT_DEBUG
- printk("next desc. @ 0x%x\n",txd->ed_nxtptr);
-#endif
- }
-
- sc->txq_intrbits = ETH_IR_TxEndHigh|ETH_IR_TxBufferHigh;
- sc->txq_esdcmrbits = ETH_ESDCMR_TXDH; /* Start Tx high */
- sc->txq_epsrbits = ETH_EPSR_TxHigh;
- /* offset to current tx desc ptr reg */
- sc->txq_ectdp = (caddr_t)ETH0_ECTDP1;
- /* Current Tx Desc Pointer 1 */
- outl(sc->txq_desc_busaddr,ETH0_ECTDP1);
-
-#ifdef GT_DEBUG
- printk(")\n");
-#endif
-}
-
-static void GTeth_tx_cleanup(struct GTeth_softc *sc)
-{
- int i;
-
- for (i=0; i< TX_RING_SIZE; i++) {
- if (sc->txq_mbuf[i]) {
- m_freem(sc->txq_mbuf[i]);
- sc->txq_mbuf[i]=0;
- }
- }
-}
-
-static void GTeth_tx_stop(struct GTeth_softc *sc)
-{
- /* SDMA command register : stop Tx high and low */
- outl(ETH_ESDCMR_STDH|ETH_ESDCMR_STDL, ETH0_ESDCMR);
-
- GTeth_txq_done(sc);
- sc->sc_intrmask &= ~(ETH_IR_TxEndHigh|ETH_IR_TxBufferHigh|
- ETH_IR_TxEndLow |ETH_IR_TxBufferLow);
- GTeth_tx_cleanup(sc);
-
- sc->arpcom.ac_if.if_timer = 0;
-}
-
-static void GTeth_ifchange(struct GTeth_softc *sc)
-{
- if (GTeth_debug>0) printk("GTeth_ifchange(");
- if (GTeth_debug>5) printk("(pcr=%#x,imr=%#x)",inl(ETH0_EPCR),inl(ETH0_EIMR));
- /* printk("SIOCADDMULTI (SIOCDELMULTI): is it about rx or tx ?\n");*/
- outl(sc->sc_pcr | ETH_EPCR_EN, ETH0_EPCR);
- outl(sc->sc_intrmask, ETH0_EIMR);
- GTeth_ifstart(&sc->arpcom.ac_if);
- /* Current Tx Desc Pointer 0 and 1 */
- if (GTeth_debug>5) printk("(ectdp0=%#x, ectdp1=%#x)",
- inl(ETH0_ECTDP0), inl(ETH0_ECTDP1));
- if (GTeth_debug>0) printk(")");
-}
-
-static int GTeth_hash_compute(struct GTeth_softc *sc,unsigned char eaddr[ETHER_ADDR_LEN])
-{
- unsigned w0, add0, add1;
- unsigned result;
-
- if (GTeth_debug>0) printk("GTeth_hash_compute(");
- add0 = ((unsigned) eaddr[5] << 0) |
- ((unsigned) eaddr[4] << 8) |
- ((unsigned) eaddr[3] << 16);
-
- add0 = ((add0 & 0x00f0f0f0) >> 4) | ((add0 & 0x000f0f0f) << 4);
- add0 = ((add0 & 0x00cccccc) >> 2) | ((add0 & 0x00333333) << 2);
- add0 = ((add0 & 0x00aaaaaa) >> 1) | ((add0 & 0x00555555) << 1);
-
- add1 = ((unsigned) eaddr[2] << 0) |
- ((unsigned) eaddr[1] << 8) |
- ((unsigned) eaddr[0] << 16);
-
- add1 = ((add1 & 0x00f0f0f0) >> 4) | ((add1 & 0x000f0f0f) << 4);
- add1 = ((add1 & 0x00cccccc) >> 2) | ((add1 & 0x00333333) << 2);
- add1 = ((add1 & 0x00aaaaaa) >> 1) | ((add1 & 0x00555555) << 1);
-
-#ifdef GT_DEBUG
- printk("eaddr= %s add1:%x add0:%x\n", ether_sprintf1(eaddr), add1, add0);
-#endif
-
- /*
- * hashResult is the 15 bits Hash entry address.
- * ethernetADD is a 48 bit number, which is derived from the Ethernet
- * MAC address, by nibble swapping in every byte (i.e MAC address
- * of 0x123456789abc translates to ethernetADD of 0x21436587a9cb).
- */
- if ((sc->sc_pcr & ETH_EPCR_HM) == 0) {
- /*
- * hashResult[14:0] = hashFunc0(ethernetADD[47:0])
- *
- * hashFunc0 calculates the hashResult in the following manner:
- * hashResult[ 8:0] = ethernetADD[14:8,1,0]
- * XOR ethernetADD[23:15] XOR ethernetADD[32:24]
- */
- result = (add0 & 3) | ((add0 >> 6) & ~3);
- result ^= (add0 >> 15) ^ (add1 >> 0);
- result &= 0x1ff;
- /*
- * hashResult[14:9] = ethernetADD[7:2]
- */
- result |= (add0 & ~3) << 7; /* excess bits will be masked */
-#ifdef GT_DEBUG
- printk("hash result %x ", result & 0x7fff);
-#endif
- } else {
-#define TRIBITFLIP 073516240 /* yes its in octal */
- /*
- * hashResult[14:0] = hashFunc1(ethernetADD[47:0])
- *
- * hashFunc1 calculates the hashResult in the following manner:
- * hashResult[08:00] = ethernetADD[06:14]
- * XOR ethernetADD[15:23] XOR ethernetADD[24:32]
- */
- w0 = ((add0 >> 6) ^ (add0 >> 15) ^ (add1)) & 0x1ff;
- /*
- * Now bitswap those 9 bits
- */
- result = 0;
- result |= ((TRIBITFLIP >> (((w0 >> 0) & 7) * 3)) & 7) << 6;
- result |= ((TRIBITFLIP >> (((w0 >> 3) & 7) * 3)) & 7) << 3;
- result |= ((TRIBITFLIP >> (((w0 >> 6) & 7) * 3)) & 7) << 0;
-
- /*
- * hashResult[14:09] = ethernetADD[00:05]
- */
- result |= ((TRIBITFLIP >> (((add0 >> 0) & 7) * 3)) & 7) << 12;
- result |= ((TRIBITFLIP >> (((add0 >> 3) & 7) * 3)) & 7) << 9;
-#ifdef GT_DEBUG
- printk("1(%#x)", result);
-#endif
- }
-#ifdef GT_DEBUG
- printk(")");
-#endif
-
- /* 1/2K address filtering (MOTLoad default )? ->16KB memory required
- * or 8k address filtering ? -> 256KB memory required
- */
- return result & ((sc->sc_pcr & ETH_EPCR_HS_512) ? 0x7ff : 0x7fff);
-}
-
-static int GTeth_hash_entry_op(struct GTeth_softc *sc, enum GTeth_hash_op op,
- enum GTeth_rxprio prio,unsigned char eaddr[ETHER_ADDR_LEN])
-{
- unsigned long long he;
- unsigned long long *maybe_he_p = NULL;
- int limit;
- int hash;
- int maybe_hash = 0;
-
-#ifdef GT_DEBUG
- printk("GTeth_hash_entry_op(prio %d ", prio);
-#endif
-
- hash = GTeth_hash_compute(sc, eaddr);
-
- if (sc->sc_hashtable == NULL) {
- printk("hashtable == NULL!");
- }
-#ifdef GT_DEBUG
- printk("Hash computed %x eaddr %s\n", hash,ether_sprintf1(eaddr));
-#endif
-
- /*
- * Assume we are going to insert so create the hash entry we
- * are going to insert. We also use it to match entries we
- * will be removing. The datasheet is wrong for this.
- */
- he = (((unsigned long long) eaddr[5]) << 43) |
- (((unsigned long long) eaddr[4]) << 35) |
- (((unsigned long long) eaddr[3]) << 27) |
- (((unsigned long long) eaddr[2]) << 19) |
- (((unsigned long long) eaddr[1]) << 11) |
- (((unsigned long long) eaddr[0]) << 3) |
- ((unsigned long long) HSH_PRIO_INS(prio) | HSH_V | HSH_R);
- /* he = 0x1b1acd87d08005;*/
- /*
- * The GT will search upto 12 entries for a hit, so we must mimic that.
- */
- hash &= (sc->sc_hashmask / sizeof(he));
-
-#ifdef GT_DEBUG
- if (GTeth_debug>0) {
- unsigned val1, val2;
-
- val1= he & 0xffffffff;
- val2= (he >>32) & 0xffffffff;
- printk("Hash addr value %x%x, entry %x\n",val2,val1, hash);
- }
-#endif
-
- for (limit = HSH_LIMIT; limit > 0 ; --limit) {
- /*
- * Does the GT wrap at the end, stop at the, or overrun the
- * end? Assume it wraps for now. Stash a copy of the
- * current hash entry.
- */
- unsigned long long *he_p = &sc->sc_hashtable[hash];
- unsigned long long thishe = *he_p;
-
- /*
- * If the hash entry isn't valid, that break the chain. And
- * this entry a good candidate for reuse.
- */
- if ((thishe & HSH_V) == 0) {
- maybe_he_p = he_p;
- break;
- }
-
- /*
- * If the hash entry has the same address we are looking for
- * then ... if we are removing and the skip bit is set, its
- * already been removed. if are adding and the skip bit is
- * clear, then its already added. In either return EBUSY
- * indicating the op has already been done. Otherwise flip
- * the skip bit and return 0.
- */
- if (((he ^ thishe) & HSH_ADDR_MASK) == 0) {
- if (((op == GE_HASH_REMOVE) && (thishe & HSH_S)) ||
- ((op == GE_HASH_ADD) && (thishe & HSH_S) == 0))
- return EBUSY;
- *he_p = thishe ^ HSH_S;
-
- if (GTeth_debug>0) {
- unsigned val1, val2;
-
- val1= *he_p & 0xffffffff;
- val2= (*he_p >>32) & 0xffffffff;
- printk("flip skip bit result %x%x entry %x ",val2,val1, hash);
- }
- return 0;
- }
-
- /*
- * If we haven't found a slot for the entry and this entry
- * is currently being skipped, return this entry.
- */
- if (maybe_he_p == NULL && (thishe & HSH_S)) {
- maybe_he_p = he_p;
- maybe_hash = hash;
- }
- hash = (hash + 1) & (sc->sc_hashmask / sizeof(he));
- }
-
- /*
- * If we got here, then there was no entry to remove.
- */
- if (op == GE_HASH_REMOVE) {
- printk("GT64260eth : No entry to remove\n");
- return ENOENT;
- }
-
- /*
- * If we couldn't find a slot, return an error.
- */
- if (maybe_he_p == NULL) {
- printk("GT64260eth : No slot found");
- return ENOSPC;
- }
-
- /* Update the entry.*/
- *maybe_he_p = he;
- if (GTeth_debug>0) {
- unsigned val1, val2;
-#if 0
- unsigned long *pt= sc->sc_hashtable;
- int i, loop;
-
- for (loop= 0; loop< 256; loop++) {
- printk("%d)", loop);
- for (i=0; i< 16; i++, pt++) printk("%x ",*pt);
- printk("\n");
- }
-#endif
- val1= he & 0xffffffff;
- val2= (he >>32) & 0xffffffff;
- printk("Update Hash result %x%x, table addr %x entry %x )\n",val2, val1, maybe_he_p, hash);
- }
- return 0;
-}
-
-static int GTeth_hash_fill(struct GTeth_softc *sc)
-{
- struct ether_multistep step;
- struct ether_multi *enm;
- int error;
-
-#ifdef GT_DEBUG
- printk( "GTeth_hash_fill(");
-#endif
- error = GTeth_hash_entry_op(sc,GE_HASH_ADD,GE_RXPRIO_HI,sc->arpcom.ac_enaddr);
-
- if (error) {
- if (GTeth_debug>0) printk("!");
- return error;
- }
-
- sc->sc_flags &= ~GE_ALLMULTI;
- if ((sc->arpcom.ac_if.if_flags & IFF_PROMISC) == 0)
- sc->sc_pcr &= ~ETH_EPCR_PM;
- /* see lib/include/netinet/if_ether.h */
- ETHER_FIRST_MULTI(step, &sc->arpcom, enm);
- while (enm != NULL) {
- if (memcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
- /* Frames are received regardless of their destinatin address */
- sc->sc_flags |= GE_ALLMULTI;
- sc->sc_pcr |= ETH_EPCR_PM;
- } else {
- /* Frames are only received if the destinatin address is found
- * in the hash table
- */
- error = GTeth_hash_entry_op(sc, GE_HASH_ADD,
- GE_RXPRIO_MEDLO, enm->enm_addrlo);
- if (error == ENOSPC) break;
- }
- ETHER_NEXT_MULTI(step, enm);
- }
-#ifdef GT_DEBUG
- printk(")\n");
-#endif
- return error;
-}
-
-static void GTeth_hash_init(struct GTeth_softc *sc)
-{
- void *hash_mem;
-
- if (GTeth_debug>0) printk("GTeth_hash_init(");
- /* MOTLoad defualt : 512 bytes of address filtering, which
- * requires 16KB of memory
- */
-#if 1
- hash_mem = rtems_bsdnet_malloc(HASH_DRAM_SIZE + HASH_ALIGN, M_FREE, M_NOWAIT);
- sc->sc_hashtable =(void *)(((long)hash_mem+ HASH_ALIGN) & ~HASH_ALIGN);
-#else
- /* only for test */
- hash_mem = 0x68F000;
- sc->sc_hashtable =(unsigned long long *)hash_mem;
-#endif
- sc->sc_hashmask = HASH_DRAM_SIZE - 1;
-
- memset((void *)sc->sc_hashtable, 0,HASH_DRAM_SIZE);
-#ifdef GT_DEBUG
- printk("hashtable addr:%x, mask %x)\n", sc->sc_hashtable,sc->sc_hashmask);
-#endif
-}
-
-#ifdef GT64260eth_DEBUG
-static void GT64260eth_error(struct GTeth_softc *sc)
-{
- struct ifnet *ifp = &sc->arpcom.ac_if;
- unsigned int intr_status= sc->intr_errsts[sc->intr_err_ptr1];
-
- /* read and reset the status; because this is written
- * by the ISR, we must disable interrupts here
- */
- if (intr_status) {
- printk("%s%d: ICR = 0x%x ",
- ifp->if_name, ifp->if_unit, intr_status);
-#if 1
- if (intr_status & INTR_RX_ERROR) {
- printk("Rxq error, if_ierrors %d\n",
- ifp->if_ierrors);
- }
-#endif
- /* Rx error is handled in GT64260eth_rx() */
- if (intr_status & INTR_TX_ERROR) {
- ifp->if_oerrors++;
- printk("Txq error, if_oerrors %d\n",ifp->if_oerrors);
- }
- }
- else
- printk("%s%d: Ghost interrupt ?\n",ifp->if_name,
- ifp->if_unit);
- sc->intr_errsts[sc->intr_err_ptr1++]=0;
- sc->intr_err_ptr1 %= INTR_ERR_SIZE; /* Till Straumann */
-}
-#endif
-
-/* The daemon does all of the work; RX, TX and cleaning up buffers/descriptors */
-static void GT64260eth_daemon(void *arg)
-{
- struct GTeth_softc *sc = (struct GTeth_softc*)arg;
- rtems_event_set events;
- struct mbuf *m=0;
- struct ifnet *ifp=&sc->arpcom.ac_if;
-
-#if 0
- /* see comments in GT64260eth_init(); in newer versions of
- * rtems, we hold the network semaphore at this point
- */
- rtems_semaphore_release(sc->daemonSync);
-#endif
-
- /* NOTE: our creator possibly holds the bsdnet_semaphore.
- * since that has PRIORITY_INVERSION enabled, our
- * subsequent call to bsdnet_event_receive() will
- * _not_ release it. It's still in posession of our
- * owner.
- * This is different from how killing this task
- * is handled.
- */
-
- for (;;) {
- /* sleep until there's work to be done */
- /* Note: bsdnet_event_receive() acquires
- * the global bsdnet semaphore for
- * mutual exclusion.
- */
- rtems_bsdnet_event_receive(ALL_EVENTS,
- RTEMS_WAIT | RTEMS_EVENT_ANY,
- RTEMS_NO_TIMEOUT,
- &events);
-
- if (KILL_EVENT & events) break;
-
-#ifndef GE_NORX
- if (events & RX_EVENT) GT64260eth_rx(sc);
-#endif
-#if 0
- printk("%x ", inb(ETH0_EPSR));
- if ( ((i++) % 15)==0) printk("\n");
-#endif
-
- /* clean up and try sending packets */
- do {
- if (sc->txq_nactive) GTeth_txq_done(sc);
-
- while (sc->txq_free>0) {
- if (sc->txq_free>TXQ_HiLmt_OFF) {
- m=0;
- IF_DEQUEUE(&ifp->if_snd,m);
- if (m==0) break;
- GT64260eth_sendpacket(sc, m);
- }
- else {
- GTeth_txq_done(sc);
- break;
- }
- }
- /* we leave this loop
- * - either because there's no free buffer
- * (m=0 initializer && !sc->txq_free)
- * - or there's nothing to send (IF_DEQUEUE
- * returned 0
- */
- } while (m);
-
- ifp->if_flags &= ~IFF_OACTIVE;
-
- /* Log errors and other uncommon events. */
-#ifdef GT64260eth_DEBUG
- if (events & ERR_EVENT) GT64260eth_error(sc);
-#endif
- } /* end for(;;) { rtems_bsdnet_event_receive() .....*/
-
- ifp->if_flags &= ~(IFF_RUNNING|IFF_OACTIVE);
-
- /* shut down the hardware */
- GT64260eth_stop_hw(sc);
- /* flush the output queue */
- for (;;) {
- IF_DEQUEUE(&ifp->if_snd,m);
- if (!m) break;
- m_freem(m);
- }
- /* as of 'rtems_bsdnet_event_receive()' we own the
- * networking semaphore
- */
- rtems_bsdnet_semaphore_release();
- rtems_semaphore_release(sc->daemonSync);
-
- /* Note that I dont use sc->daemonTid here -
- * theoretically, that variable could already
- * hold a newly created TID
- */
- rtems_task_delete(RTEMS_SELF);
-}
-
diff --git a/c/src/lib/libbsp/powerpc/mvme5500/network/if_1GHz/if_wm.c b/c/src/lib/libbsp/powerpc/mvme5500/network/if_1GHz/if_wm.c
deleted file mode 100644
index dc89399b6c..0000000000
--- a/c/src/lib/libbsp/powerpc/mvme5500/network/if_1GHz/if_wm.c
+++ /dev/null
@@ -1,1765 +0,0 @@
-/*
- * Copyright (c) 2004,2005 RTEMS/Mvme5500 port by S. Kate Feng <feng1@bnl.gov>
- * under the Deaprtment of Energy contract DE-AC02-98CH10886
- * Brookhaven National Laboratory, All rights reserved
- *
- * Acknowledgements:
- * netBSD : Copyright (c) 2001, 2002, 2003, 2004 Wasabi Systems, Inc.
- * Jason R. Thorpe for Wasabi Systems, Inc.
- * Intel : NDA document
- *
- * Some notes from the author, S. Kate Feng :
- *
- * 1) The error reporting routine i82544EI_error() employs two pointers
- * for the error report buffer. One for the ISR and another one for
- * the error report.
- * 2) Enable the hardware Auto-Negotiation state machine.
- * 3) Set Big Endian mode in the WMREG_CTRL so that we do not need htole32
- * because PPC is big endian mode.
- * However, the data packet structure defined in if_wmreg.h
- * should be redefined for the big endian mode.
- * 4) To ensure the cache coherence, the MOTLoad had the PCI
- * snoop control registers (0x1f00) set to "snoop to WB region" for
- * the entire 512MB of memory.
- * 5) MOTLoad default :
- * little endian mode, cache line size is 32 bytes, no checksum control,
- * hardware auto-neg. state machine disabled. PCI control "snoop
- * to WB region", MII mode (PHY) instead of TBI mode.
- * 6) We currently only use 32-bit (instead of 64-bit) DMA addressing.
- * 7) Implementation for Jumbo Frame and TCP checksum is not completed yet.
- *
- */
-
-#define __INSIDE_RTEMS_BSD_TCPIP_STACK__
-
-#define BYTE_ORDER BIG_ENDIAN
-
-#include <rtems.h>
-#include <rtems/bspIo.h> /* printk */
-#include <rtems/error.h>
-#include <rtems/rtems_bsdnet.h>
-#include <rtems/rtems_bsdnet_internal.h>
-
-#include <inttypes.h>
-#include <stdio.h> /* printf for statistics */
-#include <string.h>
-
-#include <libcpu/io.h> /* inp & friends */
-#include <libcpu/spr.h> /* registers.h is included here */
-#include <bsp.h>
-
-#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/mbuf.h>
-
-#include <errno.h>
-
-/* #include <sys/queue.h> */
-
-#include <sys/socket.h>
-#include <sys/sockio.h> /* SIOCADDMULTI, SIOC... */
-#include <net/if.h>
-#include <net/if_dl.h>
-#include <netinet/in.h>
-#include <netinet/if_ether.h>
-#include <net/ethernet.h>
-
-#ifdef INET
-#include <netinet/in_var.h>
-#endif
-
-#include <bsp/irq.h>
-#include <bsp/pci.h>
-#include <bsp/pcireg.h>
-#include <bsp/if_wmreg.h>
-
-extern int pci_mem_find(int b, int d, int f, int reg, unsigned *basep,unsigned *sizep);
-
-#define WMREG_RADV 0x282c /* Receive Interrupt Absolute Delay Timer */
-
-#define ETHERTYPE_FLOWCONTROL 0x8808 /* 802.3x flow control packet */
-
-#define i82544EI_TASK_NAME "IGHz"
-#define SOFTC_ALIGN 4095
-
-#define IF_ERR_BUFSZE 16
-
-/*#define WM_DEBUG*/
-#ifdef WM_DEBUG
-#define WM_DEBUG_LINK 0x01
-#define WM_DEBUG_TX 0x02
-#define WM_DEBUG_RX 0x04
-#define WM_DEBUG_GMII 0x08
-static int wm_debug = WM_DEBUG_TX|WM_DEBUG_RX|WM_DEBUG_LINK; /* May 7, 2009 */
-
-#define DPRINTF(x, y) if (wm_debug & (x)) printk y
-#else
-#define DPRINTF(x, y) /* nothing */
-#endif /* WM_DEBUG */
-
-/* RTEMS event to kill the daemon */
-#define KILL_EVENT RTEMS_EVENT_1
-/* RTEMS event to (re)start the transmitter */
-#define START_TRANSMIT_EVENT RTEMS_EVENT_2
-/* RTEMS events used by the ISR */
-#define RX_EVENT RTEMS_EVENT_3
-#define TX_EVENT RTEMS_EVENT_4
-#define ERR_EVENT RTEMS_EVENT_5
-#define INIT_EVENT RTEMS_EVENT_6
-
-#define ALL_EVENTS (KILL_EVENT|START_TRANSMIT_EVENT|RX_EVENT|TX_EVENT|ERR_EVENT|INIT_EVENT)
-
-/* <skf> used 64 in 4.8.0, TOD; try 4096 */
-#define NTXDESC 256
-#define NTXDESC_MASK (NTXDESC - 1)
-#define WM_NEXTTX(x) (((x) + 1) & NTXDESC_MASK)
-
-#define NRXDESC 256
-#define NRXDESC_MASK (NRXDESC - 1)
-#define WM_NEXTRX(x) (((x) + 1) & NRXDESC_MASK)
-#define WM_PREVRX(x) (((x) - 1) & NRXDESC_MASK)
-
-#define WM_CDOFF(x) offsetof(struct wm_control_data, x)
-#define WM_CDTXOFF(x) WM_CDOFF(sc_txdescs[(x)])
-#define WM_CDRXOFF(x) WM_CDOFF(sc_rxdescs[(x)])
-
-#define TXQ_HiLmt_OFF 32
-
-static uint32_t TxDescCmd;
-static unsigned BSP_1GHz_membase;
-
-/*
- * Software state per device.
- */
-struct wm_softc {
- wiseman_txdesc_t sc_txdescs[NTXDESC]; /* transmit descriptor memory */
- wiseman_rxdesc_t sc_rxdescs[NRXDESC]; /* receive descriptor memory */
- struct mbuf *txs_mbuf[NTXDESC]; /* transmit buffer memory */
- struct mbuf *rxs_mbuf[NRXDESC]; /* receive buffer memory */
- struct wm_softc *next_module;
- volatile unsigned int if_errsts[IF_ERR_BUFSZE]; /* intr_status */
- unsigned int if_err_ptr1; /* ptr used in i82544EI_error() */
- unsigned int if_err_ptr2; /* ptr used in ISR */
- int txs_firstdesc; /* first descriptor in packet */
- int txs_lastdesc; /* last descriptor in packet */
- int txs_ndesc; /* # of descriptors used */
- unsigned sc_membase; /* Memory space base address */
- unsigned sc_memsize; /* Memory space size */
-
- char dv_xname[16]; /* external name (name + unit) */
- void *sc_sdhook; /* shutdown hook */
- struct arpcom arpcom; /* rtems if structure, contains ifnet */
- int sc_flags; /* flags; see below */
- int sc_bus_speed; /* PCI/PCIX bus speed */
- int sc_flowflags; /* 802.3x flow control flags */
-
- void *sc_ih; /* interrupt cookie */
-
- int sc_ee_addrbits; /* EEPROM address bits */
- rtems_id daemonTid;
- rtems_id daemonSync; /* synchronization with the daemon */
-
- int txq_next; /* next Tx descriptor ready for transmitting */
- uint32_t txq_nactive; /* number of active TX descriptors */
- uint32_t txq_fi; /* next free Tx descriptor */
- uint32_t txq_free; /* number of free Tx jobs */
- uint32_t sc_txctx_ipcs; /* cached Tx IP cksum ctx */
- uint32_t sc_txctx_tucs; /* cached Tx TCP/UDP cksum ctx */
-
- int sc_rxptr; /* next ready Rx descriptor/queue ent */
- int sc_rxdiscard;
- int sc_rxlen;
-
- uint32_t sc_ctrl; /* prototype CTRL register */
- uint32_t sc_ctrl_ext; /* prototype CTRL_EXT register */
-
- uint32_t sc_icr; /* prototype interrupt bits */
- uint32_t sc_tctl; /* prototype TCTL register */
- uint32_t sc_rctl; /* prototype RCTL register */
- uint32_t sc_tipg; /* prototype TIPG register */
- uint32_t sc_fcrtl; /* prototype FCRTL register */
- uint32_t sc_pba; /* prototype PBA register */
-
- int sc_mchash_type; /* multicast filter offset */
-
- /* statistics */
- struct {
- volatile unsigned long rxInterrupts;
- volatile unsigned long txInterrupts;
- unsigned long linkInterrupts;
- unsigned long length_errors;
- unsigned long frame_errors;
- unsigned long crc_errors;
- unsigned long rxOvrRunInterrupts; /* Rx overrun interrupt */
- unsigned long rxSeqErr;
- unsigned long rxC_ordered;
- unsigned long ghostInterrupts;
- unsigned long linkStatusChng;
- } stats;
-};
-
-/* <skf> our memory address seen from the PCI bus should be 1:1 */
-#define htole32(x) le32toh(x)
-#define le32toh(x) CPU_swap_u32((unsigned int) x)
-#define le16toh(x) CPU_swap_u16(x)
-
-/* sc_flags */
-#define WM_F_HAS_MII 0x01 /* has MII */
-/* 82544 EI does not perform EEPROM handshake, EEPROM interface is not SPI */
-#define WM_F_EEPROM_HANDSHAKE 0x02 /* requires EEPROM handshake */
-#define WM_F_EEPROM_SPI 0x04 /* EEPROM is SPI */
-#define WM_F_IOH_VALID 0x10 /* I/O handle is valid */
-#define WM_F_BUS64 0x20 /* bus is 64-bit */
-#define WM_F_PCIX 0x40 /* bus is PCI-X */
-
-#define CSR_READ(sc,reg) in_le32((volatile uint32_t *)(sc->sc_membase+reg))
-#define CSR_WRITE(sc,reg,val) out_le32((volatile uint32_t *)(sc->sc_membase+reg), val)
-
-#define WM_CDTXADDR(sc) ( (uint32_t) &sc->sc_txdescs[0] )
-#define WM_CDRXADDR(sc) ( (uint32_t) &sc->sc_rxdescs[0] )
-
-static struct wm_softc *root_i82544EI_dev = NULL;
-
-static void i82544EI_ifstart(struct ifnet *ifp);
-static int wm_ioctl(struct ifnet *ifp, ioctl_command_t cmd,caddr_t data);
-static void i82544EI_ifinit(void *arg);
-static void wm_stop(struct ifnet *ifp, int disable);
-static void wm_gmii_mediainit(struct wm_softc *sc);
-
-static void wm_rxdrain(struct wm_softc *sc);
-static int wm_add_rxbuf(struct wm_softc *sc, int idx);
-static int wm_read_eeprom(struct wm_softc *sc,int word,int wordcnt, uint16_t *data);
-static void i82544EI_daemon(void *arg);
-static void wm_set_filter(struct wm_softc *sc);
-static void i82544EI_rx(struct wm_softc *sc);
-static void i82544EI_isr(rtems_irq_hdl_param handle);
-static void i82544EI_sendpacket(struct wm_softc *sc, struct mbuf *m);
-
-static void i82544EI_irq_on(const rtems_irq_connect_data *irq)
-{
- struct wm_softc *sc;
- unsigned int irqMask= ICR_TXDW | ICR_LSC | ICR_RXSEQ | ICR_RXDMT0 | ICR_RXO | ICR_RXT0 | ICR_RXCFG;
-
- for (sc= root_i82544EI_dev; sc; sc= sc-> next_module) {
- CSR_WRITE(sc,WMREG_IMS,(CSR_READ(sc,WMREG_IMS)| irqMask) );
- return;
- }
-}
-
-static void i82544EI_irq_off(const rtems_irq_connect_data *irq)
-{
- struct wm_softc *sc;
- unsigned int irqMask= ICR_TXDW | ICR_LSC | ICR_RXSEQ | ICR_RXDMT0 | ICR_RXO | ICR_RXT0 |ICR_RXCFG ;
-
- for (sc= root_i82544EI_dev; sc; sc= sc-> next_module) {
- CSR_WRITE(sc,WMREG_IMS, (CSR_READ(sc,WMREG_IMS) & ~irqMask) );
- return;
- }
-}
-
-static int i82544EI_irq_is_on(const rtems_irq_connect_data *irq)
-{
- return(CSR_READ(root_i82544EI_dev,WMREG_ICR) & root_i82544EI_dev->sc_icr);
-}
-
-static rtems_irq_connect_data i82544IrqData={
- BSP_GPP_82544_IRQ,
- (rtems_irq_hdl) i82544EI_isr,
- (rtems_irq_hdl_param) NULL,
- (rtems_irq_enable) i82544EI_irq_on,
- (rtems_irq_disable) i82544EI_irq_off,
- (rtems_irq_is_enabled) i82544EI_irq_is_on,
-};
-
-int rtems_i82544EI_driver_attach(struct rtems_bsdnet_ifconfig *config, int attach)
-{
- struct wm_softc *sc;
- struct ifnet *ifp;
- uint8_t enaddr[ETHER_ADDR_LEN];
- uint16_t myea[ETHER_ADDR_LEN / 2], cfg1, cfg2, swdpin;
- unsigned reg;
- int b,d,f; /* PCI bus/device/function */
- int unit;
- void *softc_mem;
- char *name;
-
- unit = rtems_bsdnet_parse_driver_name(config, &name);
- if (unit < 0) return 0;
-
- if ( !strncmp((const char *)name,"autoz",5))
- memcpy(name,"gtGHz",5);
-
- printk("\nAttaching MVME5500 1GHz NIC%d\n", unit);
- printk("RTEMS-mvme5500 BSP Copyright (c) 2004,2005,2008, Brookhaven National Lab., Shuchen Kate Feng \n");
-
- /* Make sure certain elements e.g. descriptor lists are aligned.*/
- softc_mem = rtems_bsdnet_malloc(sizeof(*sc) + SOFTC_ALIGN, M_FREE, M_NOWAIT);
-
- /* Check for the very unlikely case of no memory. */
- if (softc_mem == NULL)
- rtems_panic("i82544EI: OUT OF MEMORY");
-
- sc = (void *)(((long)softc_mem + SOFTC_ALIGN) & ~SOFTC_ALIGN);
- memset(sc, 0, sizeof(*sc));
-
- sprintf(sc->dv_xname, "%s%d", name, unit);
-
- if (pci_find_device(PCI_VENDOR_ID_INTEL,PCI_DEVICE_ID_INTEL_82544EI_COPPER,
- unit-1,&b, &d, &f))
- rtems_panic("i82544EI device ID not found\n");
-
-#ifdef WM_DEBUG
- printk("82544EI:b%d, d%d, f%d\n", b, d,f);
-#endif
-
- /* Memory-mapped acccess is required for normal operation.*/
- if ( pci_mem_find(b,d,f,PCI_MAPREG_START, &sc->sc_membase, &sc->sc_memsize))
- rtems_panic("i82544EI: unable to map memory space\n");
-
-#ifdef WM_DEBUG
- printk("Memory base addr 0x%x\n", sc->sc_membase);
-#endif
- BSP_1GHz_membase= sc->sc_membase;
-
-#ifdef WM_DEBUG
- printk("Memory base addr 0x%x\n", sc->sc_membase);
- printk("txdesc[0] addr:0x%x, rxdesc[0] addr:0x%x, sizeof sc %d\n",&sc->sc_txdescs[0], &sc->sc_rxdescs[0], sizeof(*sc));
-#endif
-
-
- sc->sc_ctrl=CSR_READ(sc,WMREG_CTRL);
- /*
- * Determine a few things about the bus we're connected to.
- */
- reg = CSR_READ(sc,WMREG_STATUS);
- if (reg & STATUS_BUS64) sc->sc_flags |= WM_F_BUS64;
- sc->sc_bus_speed = (reg & STATUS_PCI66) ? 66 : 33;
-#ifdef WM_DEBUG
- printk("%s%d: %d-bit %dMHz PCI bus\n",name, unit,
- (sc->sc_flags & WM_F_BUS64) ? 64 : 32, sc->sc_bus_speed);
-#endif
-
- /*
- * Setup some information about the EEPROM.
- */
-
- sc->sc_ee_addrbits = 6;
-
-#ifdef WM_DEBUG
- printk("%s%d: %u word (%d address bits) MicroWire EEPROM\n",
- name, unit, 1U << sc->sc_ee_addrbits,
- sc->sc_ee_addrbits);
-#endif
-
- /*
- * Read the Ethernet address from the EEPROM.
- */
- if (wm_read_eeprom(sc, EEPROM_OFF_MACADDR,
- sizeof(myea) / sizeof(myea[0]), myea))
- rtems_panic("i82544ei 1GHZ ethernet: unable to read Ethernet address");
-
- enaddr[0] = myea[0] & 0xff;
- enaddr[1] = myea[0] >> 8;
- enaddr[2] = myea[1] & 0xff;
- enaddr[3] = myea[1] >> 8;
- enaddr[4] = myea[2] & 0xff;
- enaddr[5] = myea[2] >> 8;
-
- memcpy(sc->arpcom.ac_enaddr, enaddr, ETHER_ADDR_LEN);
-#ifdef WM_DEBUG
- printk("%s: Ethernet address %s\n", sc->dv_xname,
- ether_sprintf(enaddr));
-#endif
-
- /*
- * Read the config info from the EEPROM, and set up various
- * bits in the control registers based on their contents.
- */
- if (wm_read_eeprom(sc, EEPROM_OFF_CFG1, 1, &cfg1)) {
- printk("%s: unable to read CFG1 from EEPROM\n",sc->dv_xname);
- return(0);
- }
- if (wm_read_eeprom(sc, EEPROM_OFF_CFG2, 1, &cfg2)) {
- printk("%s: unable to read CFG2 from EEPROM\n",sc->dv_xname);
- return(0);
- }
- if (wm_read_eeprom(sc, EEPROM_OFF_SWDPIN, 1, &swdpin)) {
- printk("%s: unable to read SWDPIN from EEPROM\n",sc->dv_xname);
- return(0);
- }
-
- if (cfg1 & EEPROM_CFG1_ILOS) sc->sc_ctrl |= CTRL_ILOS;
- sc->sc_ctrl|=((swdpin >> EEPROM_SWDPIN_SWDPIO_SHIFT) & 0xf) <<
- CTRL_SWDPIO_SHIFT;
- sc->sc_ctrl |= ((swdpin >> EEPROM_SWDPIN_SWDPIN_SHIFT) & 0xf) <<
- CTRL_SWDPINS_SHIFT;
-
- CSR_WRITE(sc,WMREG_CTRL, sc->sc_ctrl);
-#if 0
- CSR_WRITE(sc,WMREG_CTRL_EXT, sc->sc_ctrl_ext);
-#endif
-
- /*
- * Determine if we're TBI or GMII mode, and initialize the
- * media structures accordingly.
- */
- if ((CSR_READ(sc, WMREG_STATUS) & STATUS_TBIMODE) != 0) {
- /* 1000BASE-X : fiber (TBI mode)
- wm_tbi_mediainit(sc); */
- } else { /* 1000BASE-T : copper (internal PHY mode), for the mvme5500 */
- wm_gmii_mediainit(sc);
- }
-
- ifp = &sc->arpcom.ac_if;
- /* set this interface's name and unit */
- ifp->if_unit = unit;
- ifp->if_name = name;
- ifp->if_softc = sc;
- ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
-#ifdef RTEMS_ETHERMTU_JUMBO
- sc->arpcom.ec_capabilities |= ETHERCAP_JUMBO_MTU;
- ifp->if_mtu = config->mtu ? config->mtu : ETHERMTU_JUMBO;
-#else
- ifp->if_mtu = config->mtu ? config->mtu : ETHERMTU;
-#endif
-#ifdef RTEMS_CKSUM_OFFLOAD
- /* < skf> The following is really not related to jumbo frame
- sc->arpcom.ec_capabilities |= ETHERCAP_VLAN_MTU;*/
- ifp->if_capabilities |= IFCAP_CSUM_IPv4_Tx | IFCAP_CSUM_IPv4_Rx |
- IFCAP_CSUM_TCPv4_Tx | IFCAP_CSUM_TCPv4_Rx |
- IFCAP_CSUM_UDPv4_Tx | IFCAP_CSUM_UDPv4_Rx |
- IFCAP_CSUM_TCPv6_Tx | IFCAP_CSUM_UDPv6_Tx |
- IFCAP_TSOv4; /* TCP segmentation offload. */
-#endif
-
- ifp->if_ioctl = wm_ioctl;
- ifp->if_start = i82544EI_ifstart;
- /* ifp->if_watchdog = wm_watchdog;*/
- ifp->if_init = i82544EI_ifinit;
- if (ifp->if_snd.ifq_maxlen == 0)
- ifp->if_snd.ifq_maxlen = ifqmaxlen;
-
- ifp->if_output = ether_output;
-
- /* create the synchronization semaphore */
- if (RTEMS_SUCCESSFUL != rtems_semaphore_create(
- rtems_build_name('I','G','H','Z'),0,0,0,&sc->daemonSync))
- rtems_panic("i82544EI: semaphore creation failed");
-
- i82544IrqData.handle= (rtems_irq_hdl_param) sc;
- /* sc->next_module = root_i82544EI_dev;*/
- root_i82544EI_dev = sc;
-
- /* Attach the interface. */
- if_attach(ifp);
- ether_ifattach(ifp);
-#ifdef WM_DEBUG
- printk("82544EI: Ethernet driver has been attached (handle 0x%08x,ifp 0x%08x)\n",sc, ifp);
-#endif
-
- return(1);
-}
-
-/*
- * wm_reset:
- *
- * Reset the i82544 chip.
- */
-static void wm_reset(struct wm_softc *sc)
-{
- int i;
-
- /* Packet Buffer Allocation (PBA)
- * Writing PBA sets the receive portion of the buffer.
- * the remainder is used for the transmit buffer.
- *
- * 82544 has a Packet Buffer of 64K.
- * Default allocation : PBA=40K for Rx, leaving 24K for Tx.
- * Default for jumbo: PBA=48K for Rx, leaving 16K for Tx.
- */
- sc->sc_pba = sc->arpcom.ac_if.if_mtu > 8192 ? PBA_40K : PBA_48K;
- CSR_WRITE(sc, WMREG_PBA, sc->sc_pba);
-
- /* device reset */
- CSR_WRITE(sc, WMREG_CTRL, CTRL_RST);
- rtems_bsp_delay(10000);
-
- for (i = 0; i < 1000; i++) {
- if ((CSR_READ(sc, WMREG_CTRL) & CTRL_RST) == 0)
- break;
- rtems_bsp_delay(20);
- }
- if (CSR_READ(sc, WMREG_CTRL) & CTRL_RST)
- printk("Intel 82544 1GHz reset failed to complete\n");
-
- sc->sc_ctrl_ext = CSR_READ(sc,WMREG_CTRL_EXT);
- sc->sc_ctrl_ext |= CTRL_EXT_EE_RST;
- CSR_WRITE(sc, WMREG_CTRL_EXT, sc->sc_ctrl_ext);
- CSR_READ(sc, WMREG_STATUS);
- /* Wait for EEPROM reload */
- rtems_bsp_delay(2000);
- sc->sc_ctrl= CSR_READ(sc, WMREG_CTRL);
-}
-
-/*
- * i82544EI_ifstart: [ifnet interface function]
- *
- * Start packet transmission on the interface.
- */
-static void
-i82544EI_ifstart(struct ifnet *ifp)
-{
- struct wm_softc *sc = ifp->if_softc;
-
-#ifdef WM_DEBUG
- printk("i82544EI_ifstart(");
-#endif
-
- if ((ifp->if_flags & IFF_RUNNING) == 0) {
-#ifdef WM_DEBUG
- printk("IFF_RUNNING==0\n");
-#endif
- return;
- }
-
- ifp->if_flags |= IFF_OACTIVE;
- rtems_bsdnet_event_send (sc->daemonTid, START_TRANSMIT_EVENT);
-#ifdef WM_DEBUG
- printk(")\n");
-#endif
-}
-
-static void i82544EI_stats(struct wm_softc *sc)
-{
- struct ifnet *ifp = &sc->arpcom.ac_if;
-
- printf(" Ghost Interrupts:%-8lu\n", sc->stats.ghostInterrupts);
- printf(" Rx Interrupts:%-8lu\n", sc->stats.rxInterrupts);
- printf(" Receive Packets:%-8u\n", (unsigned)CSR_READ(sc,WMREG_GPRC));
- printf(" Receive Overrun:%-8lu\n", sc->stats.rxOvrRunInterrupts);
- printf(" Receive errors:%-8u\n", (unsigned)CSR_READ(sc,WMREG_RXERRC));
- printf(" Rx sequence error:%-8lu\n", sc->stats.rxSeqErr);
- printf(" Rx /C/ ordered:%-8lu\n", sc->stats.rxC_ordered);
- printf(" Rx Length Errors:%-8u\n", (unsigned)CSR_READ(sc,WMREG_RLEC));
- printf(" Tx Interrupts:%-8lu\n", sc->stats.txInterrupts);
- printf(" Transmitt Packets:%-8u\n", (unsigned)CSR_READ(sc,WMREG_GPTC));
- printf(" Transmitt errors:%-8lu\n", ifp->if_oerrors);
- printf(" Active Txqs:%-8lu\n", sc->txq_nactive);
- printf(" collisions:%-8u\n", (unsigned)CSR_READ(sc,WMREG_COLC));
- printf(" Crc Errors:%-8u\n", (unsigned)CSR_READ(sc,WMREG_CRCERRS));
- printf(" Link Status Change:%-8lu\n", sc->stats.linkStatusChng);
-}
-
-/*
- * wm_ioctl: [ifnet interface function]
- *
- * Handle control requests from the operator.
- */
-static int wm_ioctl(struct ifnet *ifp, ioctl_command_t cmd,caddr_t data)
-{
- struct wm_softc *sc = ifp->if_softc;
- int error=0;
-
- switch (cmd) {
- default:
- error = ether_ioctl(ifp, cmd, data);
- if (error == ENETRESET) {
- /*
- * Multicast list has changed; set the hardware filter
- * accordingly.
- */
- wm_set_filter(sc);
- error = 0;
- }
- break;
- case SIO_RTEMS_SHOW_STATS:
- i82544EI_stats(sc);
- break;
- }
-
- /* Try to get more packets going.*/
- i82544EI_ifstart(ifp);
- return (error);
-}
-
-/*
- * wm_isr:
- *
- * Interrupt service routine.
- */
-static void i82544EI_isr(rtems_irq_hdl_param handle)
-{
- volatile struct wm_softc *sc = (struct wm_softc *) handle;
- uint32_t icr;
- rtems_event_set events=0;
-
- /* Reading the WMREG_ICR clears the interrupt bits */
- icr = CSR_READ(sc,WMREG_ICR);
-
- if ( icr & (ICR_RXDMT0|ICR_RXT0)) {
- sc->stats.rxInterrupts++;
- events |= RX_EVENT;
- }
-
- if (icr & ICR_TXDW) {
- sc->stats.txInterrupts++;
- events |= TX_EVENT;
- }
- /* <SKF> Rx overrun : no available receive buffer
- * or PCI receive bandwidth inadequate.
- */
- if (icr & ICR_RXO) {
- sc->stats.rxOvrRunInterrupts++;
- events |= INIT_EVENT;
- }
- if (icr & ICR_RXSEQ) /* framing error */ {
- sc->if_errsts[sc->if_err_ptr2++]=icr;
- if ( sc->if_err_ptr2 ==IF_ERR_BUFSZE) sc->if_err_ptr2=0;
- events |= ERR_EVENT;
- sc->stats.rxSeqErr++;
- }
- if ( !icr) sc->stats.ghostInterrupts++;
-
- if (icr & ICR_LSC) sc->stats.linkStatusChng++;
- if (icr & ICR_RXCFG) sc->stats.rxC_ordered++;
-
- rtems_bsdnet_event_send(sc->daemonTid, events);
-}
-
-/*
- * i82544EI_sendpacket:
- *
- * Helper; handle transmit interrupts.
- */
-static void i82544EI_sendpacket(struct wm_softc *sc, struct mbuf *m)
-{
-
-#ifdef WM_DEBUG_TX
- printk("sendpacket(");
-#endif
-
- if ( !(m->m_next)) { /* single buffer packet */
- sc->txs_mbuf[sc->txq_next]= m;
- /* Note: we currently only use 32-bit DMA addresses. */
- sc->sc_txdescs[sc->txq_next].wtx_addr.wa_low = htole32(mtod(m, void*));
- sc->sc_txdescs[sc->txq_next].wtx_cmdlen =htole32(TxDescCmd | m->m_len);
- sc->txs_lastdesc= sc->txq_next;
- sc->txq_next = WM_NEXTTX(sc->txq_next);
- sc->txq_nactive++;
- sc->txq_free--;
- }
- else /* multiple mbufs in this packet */
- {
- struct mbuf *mtp, *mdest;
- volatile unsigned char *pt;
- int len, y, loop=0;
-
-#ifdef WM_DEBUG_TX
- printk("multi mbufs ");
-#endif
- mtp = m;
- while ( mtp) {
- MGETHDR(mdest, M_WAIT, MT_DATA);
- MCLGET(mdest, M_WAIT);
- pt = (volatile unsigned char *)mdest->m_data;
- for ( len=0;mtp;mtp=mtp->m_next) {
- loop++;
- /* Each descriptor gets a 2k (MCLBYTES) buffer, although
- * the length of each descriptor can be up to 16288 bytes.
- * For packets which fill more than one buffer ( >2k), we
- * chain them together.
- * <Kate Feng> : This effective for packets > 2K
- * The other way is effective for packets < 2K
- */
- if ( ((y=(len+mtp->m_len)) > sizeof(union mcluster))) {
- printk(" >%d, use next descriptor\n", sizeof(union mcluster));
- break;
- }
- memcpy((void *)pt,(char *)mtp->m_data, mtp->m_len);
- pt += mtp->m_len;
- len += mtp->m_len;
- } /* end for loop */
- mdest->m_len=len;
- sc->txs_mbuf[sc->txq_next] = mdest;
- /* Note: we currently only use 32-bit DMA addresses. */
- sc->sc_txdescs[sc->txq_next].wtx_addr.wa_low = htole32(mtod(mdest, void*));
- sc->sc_txdescs[sc->txq_next].wtx_cmdlen = htole32(TxDescCmd|mdest->m_len);
- sc->txs_lastdesc = sc->txq_next;
- sc->txq_next = WM_NEXTTX(sc->txq_next);
- sc->txq_nactive ++;
- if (sc->txq_free)
- sc->txq_free--;
- else
- rtems_panic("i8254EI : no more free descriptors");
- } /* end for while */
- /* free old mbuf chain */
- m_freem(m);
- m=0;
- } /* end multiple mbufs */
-
- DPRINTF(WM_DEBUG_TX,("%s: TX: desc %d: cmdlen 0x%08x\n", sc->dv_xname,
- sc->txs_lastdesc, le32toh(sc->sc_txdescs[sc->txs_lastdesc].wtx_cmdlen)));
- DPRINTF(WM_DEBUG_TX,("status 0x%08x\n",sc->sc_txdescs[sc->txq_fi].wtx_fields.wtxu_status));
-
- memBar();
-
- /* This is the location where software writes the first NEW descriptor */
- CSR_WRITE(sc,WMREG_TDT, sc->txq_next);
-
- DPRINTF(WM_DEBUG_TX,("%s: addr 0x%08x, TX: TDH %d, TDT %d\n",sc->dv_xname,
- le32toh(sc->sc_txdescs[sc->txs_lastdesc].wtx_addr.wa_low), CSR_READ(sc,WMREG_TDH),
- CSR_READ(sc,WMREG_TDT)));
-
- DPRINTF(WM_DEBUG_TX,("%s: TX: finished transmitting packet, job %d\n",
- sc->dv_xname, sc->txq_next));
-
-}
-
-static void i82544EI_txq_free(struct wm_softc *sc, uint8_t status)
-{
- struct ifnet *ifp = &sc->arpcom.ac_if;
-
- /* We might use the statistics registers instead of variables
- * to keep tack of the network statistics
- */
-
- /* statistics */
- ifp->if_opackets++;
-
- if (status & (WTX_ST_EC|WTX_ST_LC)) {
- ifp->if_oerrors++;
-
- if (status & WTX_ST_LC)
- printf("%s: late collision\n", sc->dv_xname);
- else if (status & WTX_ST_EC) {
- ifp->if_collisions += 16;
- printf("%s: excessive collisions\n", sc->dv_xname);
- }
- }
- /* Free the original mbuf chain */
- m_freem(sc->txs_mbuf[sc->txq_fi]);
- sc->txs_mbuf[sc->txq_fi] = 0;
- sc->sc_txdescs[sc->txq_fi].wtx_fields.wtxu_status=0;
-
- sc->txq_free ++;
- sc->txq_fi = WM_NEXTTX(sc->txq_fi);
- --sc->txq_nactive;
-}
-
-static void i82544EI_txq_done(struct wm_softc *sc)
-{
- uint8_t status;
-
- /*
- * Go through the Tx list and free mbufs for those
- * frames which have been transmitted.
- */
- while ( sc->txq_nactive > 0) {
- status = sc->sc_txdescs[sc->txq_fi].wtx_fields.wtxu_status;
- if ((status & WTX_ST_DD) == 0) break;
- i82544EI_txq_free(sc, status);
- DPRINTF(WM_DEBUG_TX,("%s: TX: job %d done\n",
- sc->dv_xname, sc->txq_fi));
- }
-}
-
-static void wm_init_rxdesc(struct wm_softc *sc, int x)
-{
- wiseman_rxdesc_t *__rxd = &(sc)->sc_rxdescs[(x)];
- struct mbuf *m;
-
- m = sc->rxs_mbuf[x];
-
- __rxd->wrx_addr.wa_low=htole32(mtod(m, void*));
- __rxd->wrx_addr.wa_high = 0;
- __rxd->wrx_len = 0;
- __rxd->wrx_cksum = 0;
- __rxd->wrx_status = 0;
- __rxd->wrx_errors = 0;
- __rxd->wrx_special = 0;
- /* Receive Descriptor Tail: add Rx desc. to H/W free list */
- CSR_WRITE(sc,WMREG_RDT, (x));
-}
-
-static void i82544EI_rx(struct wm_softc *sc)
-{
- struct ifnet *ifp = &sc->arpcom.ac_if;
- struct mbuf *m;
- int i, len;
- uint8_t status, errors;
- struct ether_header *eh;
-
-#ifdef WM_DEBUG
- printk("i82544EI_rx()\n");
-#endif
-
- for (i = sc->sc_rxptr;; i = WM_NEXTRX(i)) {
- DPRINTF(WM_DEBUG_RX, ("%s: RX: checking descriptor %d\n",
- sc->dv_xname, i));
-
- status = sc->sc_rxdescs[i].wrx_status;
- if ((status & WRX_ST_DD) == 0) break; /* descriptor not done */
-
- errors = sc->sc_rxdescs[i].wrx_errors;
- len = le16toh(sc->sc_rxdescs[i].wrx_len);
- m = sc->rxs_mbuf[i];
- if (sc->sc_rxdiscard) {
- printk("RX: discarding contents of descriptor %d\n", i);
- wm_init_rxdesc(sc, i);
- if (status & WRX_ST_EOP) {
- /* Reset our state. */
- printk("RX: resetting rxdiscard -> 0\n");
- sc->sc_rxdiscard = 0;
- }
- continue;
- }
-
- /*
- * If an error occurred, update stats and drop the packet.
- */
- if (errors &(WRX_ER_CE|WRX_ER_SE|WRX_ER_SEQ|WRX_ER_CXE|WRX_ER_RXE)) {
- ifp->if_ierrors++;
- if (errors & WRX_ER_SE)
- printk("%s: symbol error\n",sc->dv_xname);
- else if (errors & WRX_ER_SEQ)
- printk("%s: receive sequence error\n",sc->dv_xname);
- else if (errors & WRX_ER_CE)
- printk("%s: CRC error\n",sc->dv_xname);
- m_freem(m);
- goto give_it_back;
- }
-
- /*
- * No errors. Receive the packet.
- *
- * Note, we have configured the chip to include the
- * CRC with every packet.
- */
- m->m_len = m->m_pkthdr.len = len - sizeof(struct ether_header);
-
- DPRINTF(WM_DEBUG_RX,("%s: RX: buffer at %p len %d\n",
- sc->dv_xname, m->m_data, len));
-
-
- eh = mtod (m, struct ether_header *);
- m->m_data += sizeof(struct ether_header);
- ether_input (ifp, eh, m);
- /* Pass it on. */
- ifp->if_ipackets++;
-
- give_it_back:
- /* Add a new receive buffer to the ring.*/
- if (wm_add_rxbuf(sc, i) != 0) {
- /*
- * Failed, throw away what we've done so
- * far, and discard the rest of the packet.
- */
- printk("Failed in wm_add_rxbuf(), drop packet\n");
- ifp->if_ierrors++;
- wm_init_rxdesc(sc, i);
- if ((status & WRX_ST_EOP) == 0)
- sc->sc_rxdiscard = 1;
- m_freem(m);
- }
- } /* end for */
-
- /* Update the receive pointer. */
- sc->sc_rxptr = i;
- DPRINTF(WM_DEBUG_RX, ("%s: RX: rxptr -> %d\n", sc->dv_xname, i));
-}
-
-static int i82544EI_init_hw(struct wm_softc *sc)
-{
- struct ifnet *ifp = &sc->arpcom.ac_if;
- int i,error;
- uint8_t cksumfields;
-
-#if 0
- /* KATETODO : sc_align_tweak */
- /*
- * *_HDR_ALIGNED_P is constant 1 if __NO_STRICT_ALIGMENT is set.
- * There is a small but measurable benefit to avoiding the adjusment
- * of the descriptor so that the headers are aligned, for normal mtu,
- * on such platforms. One possibility is that the DMA itself is
- * slightly more efficient if the front of the entire packet (instead
- * of the front of the headers) is aligned.
- *
- * Note we must always set align_tweak to 0 if we are using
- * jumbo frames.
- */
-#ifdef __NO_STRICT_ALIGNMENT
- sc->sc_align_tweak = 0;
-#else
- if ((ifp->if_mtu + ETHER_HDR_LEN + ETHER_CRC_LEN) > (MCLBYTES - 2))
- sc->sc_align_tweak = 0;
- else
- sc->sc_align_tweak = 2;
-#endif /* __NO_STRICT_ALIGNMENT */
-#endif
-
- /* Cancel any pending I/O. */
- wm_stop(ifp, 0);
-
- /* update statistics before reset */
- ifp->if_collisions += CSR_READ(sc, WMREG_COLC);
- ifp->if_ierrors += CSR_READ(sc, WMREG_RXERRC);
-
- /* Reset the chip to a known state. */
- wm_reset(sc);
-
- /* Initialize the error buffer ring */
- sc->if_err_ptr1=0;
- sc->if_err_ptr2=0;
- for (i=0; i< IF_ERR_BUFSZE; i++) sc->if_errsts[i]=0;
-
- /* Initialize the transmit descriptor ring. */
- memset( (void *) sc->sc_txdescs, 0, sizeof(sc->sc_txdescs));
- sc->txq_free = NTXDESC;
- sc->txq_next = 0;
- sc->txs_lastdesc = 0;
- sc->txq_next = 0;
- sc->txq_free = NTXDESC;
- sc->txq_nactive = 0;
-
- sc->sc_txctx_ipcs = 0xffffffff;
- sc->sc_txctx_tucs = 0xffffffff;
-
- CSR_WRITE(sc,WMREG_TBDAH, 0);
- CSR_WRITE(sc,WMREG_TBDAL, WM_CDTXADDR(sc));
-#ifdef WM_DEBUG
- printk("TBDAL 0x%x, TDLEN %d\n", WM_CDTXADDR(sc), sizeof(sc->sc_txdescs));
-#endif
- CSR_WRITE(sc,WMREG_TDLEN, sizeof(sc->sc_txdescs));
- CSR_WRITE(sc,WMREG_TDH, 0);
- CSR_WRITE(sc,WMREG_TDT, 0);
- CSR_WRITE(sc,WMREG_TIDV, 0 );
- /* CSR_WRITE(sc,WMREG_TADV, 128); not for 82544 */
-
- CSR_WRITE(sc,WMREG_TXDCTL, TXDCTL_PTHRESH(0) |
- TXDCTL_HTHRESH(0) | TXDCTL_WTHRESH(0));
- CSR_WRITE(sc,WMREG_RXDCTL, RXDCTL_PTHRESH(0) |
- RXDCTL_HTHRESH(0) | RXDCTL_WTHRESH(1) | RXDCTL_GRAN );
-
- CSR_WRITE(sc,WMREG_TQSA_LO, 0);
- CSR_WRITE(sc,WMREG_TQSA_HI, 0);
-
- /*
- * Set up checksum offload parameters for
- * this packet.
- */
-#ifdef RTEMS_CKSUM_OFFLOAD
- if (m0->m_pkthdr.csum_flags & (M_CSUM_TSOv4|M_CSUM_TSOv6|
- M_CSUM_IPv4|M_CSUM_TCPv4|M_CSUM_UDPv4|
- M_CSUM_TCPv6|M_CSUM_UDPv6)) {
- if (wm_tx_offload(sc, txs, &TxDescCmd,&cksumfields) != 0) {
- /* Error message already displayed. */
- continue;
- }
- } else {
-#endif
- TxDescCmd = 0;
- cksumfields = 0;
-#ifdef RTEMS_CKSUM_OFFLOAD
- }
-#endif
-
- TxDescCmd |= WTX_CMD_EOP|WTX_CMD_IFCS|WTX_CMD_RS;
-
- /* Initialize the transmit job descriptors. */
- for (i = 0; i < NTXDESC; i++) {
- sc->txs_mbuf[i] = 0;
- sc->sc_txdescs[i].wtx_fields.wtxu_options=cksumfields;
- sc->sc_txdescs[i].wtx_addr.wa_high = 0;
- sc->sc_txdescs[i].wtx_addr.wa_low = 0;
- sc->sc_txdescs[i].wtx_cmdlen = htole32(TxDescCmd);
- }
-
- /*
- * Initialize the receive descriptor and receive job
- * descriptor rings.
- */
- memset( (void *) sc->sc_rxdescs, 0, sizeof(sc->sc_rxdescs));
- CSR_WRITE(sc,WMREG_RDBAH, 0);
- CSR_WRITE(sc,WMREG_RDBAL, WM_CDRXADDR(sc));
- CSR_WRITE(sc,WMREG_RDLEN, sizeof(sc->sc_rxdescs));
- CSR_WRITE(sc,WMREG_RDH, 0);
- CSR_WRITE(sc,WMREG_RDT, 0);
- CSR_WRITE(sc,WMREG_RDTR, 0 |RDTR_FPD);
- /* CSR_WRITE(sc, WMREG_RADV, 256); not for 82544. */
-
- for (i = 0; i < NRXDESC; i++) {
- if (sc->rxs_mbuf[i] == NULL) {
- if ((error = wm_add_rxbuf(sc, i)) != 0) {
- printk("%s%d: unable to allocate or map rx buffer"
- "%d, error = %d\n",ifp->if_name,ifp->if_unit, i, error);
- /*
- * XXX Should attempt to run with fewer receive
- * XXX buffers instead of just failing.
- */
- wm_rxdrain(sc);
- return(error);
- }
- } else {
- printk("sc->rxs_mbuf[%d] not NULL.\n", i);
- wm_init_rxdesc(sc, i);
- }
- }
- sc->sc_rxptr = 0;
- sc->sc_rxdiscard = 0;
-
- /*
- * Clear out the VLAN table -- we don't use it (yet).
- */
- CSR_WRITE(sc,WMREG_VET, 0);
- for (i = 0; i < WM_VLAN_TABSIZE; i++)
- CSR_WRITE(sc,WMREG_VFTA + (i << 2), 0);
-
-#if 0
- /* Use MOTLoad default
- *
- * Set up flow-control parameters.
- */
- CSR_WRITE(sc,WMREG_FCAL, FCAL_CONST);/* same as MOTLOAD 0x00c28001 */
- CSR_WRITE(sc,WMREG_FCAH, FCAH_CONST);/* same as MOTLOAD 0x00000100 */
- CSR_WRITE(sc,WMREG_FCT, ETHERTYPE_FLOWCONTROL);/* same as MOTLoad 0x8808 */
-
-
- /* safe,even though MOTLoad default all 0 */
- sc->sc_fcrtl = FCRTL_DFLT;
-
- CSR_WRITE(sc,WMREG_FCRTH, FCRTH_DFLT);
- CSR_WRITE(sc,WMREG_FCRTL, sc->sc_fcrtl);
- /*KATETO CSR_WRITE(sc,WMREG_FCTTV, FCTTV_DFLT);*/
- CSR_WRITE(sc,WMREG_FCTTV, 0x100);
-#endif
-
- sc->sc_ctrl &= ~CTRL_VME;
- /* TODO : not here.
- Configures flow control settings after link is established
- sc->sc_ctrl |= CTRL_TFCE | CTRL_RFCE; */
-
- /* Write the control registers. */
- CSR_WRITE(sc,WMREG_CTRL, sc->sc_ctrl);
-#if 0
- CSR_WRITE(sc,WMREG_CTRL_EXT, sc->sc_ctrl_ext);
-#endif
-
- /* MOTLoad : WMREG_RXCSUM (0x5000)= 0, no Rx checksum offloading */
-#ifdef RTEMS_CKSUM_OFFLOAD
- /*
- * Set up checksum offload parameters.
- */
- reg = CSR_READ(sc, WMREG_RXCSUM);
- reg &= ~(RXCSUM_IPOFL | RXCSUM_IPV6OFL | RXCSUM_TUOFL);
- if (ifp->if_capenable & IFCAP_CSUM_IPv4_Rx)
- reg |= RXCSUM_IPOFL;
- if (ifp->if_capenable & (IFCAP_CSUM_TCPv4_Rx | IFCAP_CSUM_UDPv4_Rx))
- reg |= RXCSUM_IPOFL | RXCSUM_TUOFL;
- if (ifp->if_capenable & (IFCAP_CSUM_TCPv6_Rx | IFCAP_CSUM_UDPv6_Rx))
- reg |= RXCSUM_IPV6OFL | RXCSUM_TUOFL;
- CSR_WRITE(sc, WMREG_RXCSUM, reg);
-#endif
-
- /*
- * Set up the interrupt registers.
- */
- CSR_WRITE(sc,WMREG_IMC, 0xffffffffU);
-
- /* Reading the WMREG_ICR clears the interrupt bits */
- CSR_READ(sc,WMREG_ICR);
-
- /* printf("WMREG_IMS 0x%x\n", CSR_READ(sc,WMREG_IMS));*/
-
- sc->sc_icr = ICR_TXDW | ICR_LSC | ICR_RXSEQ | ICR_RXCFG | ICR_RXDMT0 | ICR_RXO | ICR_RXT0;
-
- CSR_WRITE(sc,WMREG_IMS, sc->sc_icr);
-
- /* Set up the inter-packet gap. */
- CSR_WRITE(sc,WMREG_TIPG, sc->sc_tipg);
-
-#if 0 /* XXXJRT */
- /* Set the VLAN ethernetype. */
- CSR_WRITE(sc,WMREG_VET, ETHERTYPE_VLAN);
-#endif
-
- /*
- * Set up the transmit control register; we start out with
- * a collision distance suitable for FDX, but update it when
- * we resolve the media type.
- */
- sc->sc_tctl = TCTL_EN | TCTL_PSP | TCTL_CT(TX_COLLISION_THRESHOLD) |
- TCTL_COLD(TX_COLLISION_DISTANCE_FDX) |
- TCTL_RTLC /* retransmit on late collision */;
-
- /*
- * Set up the receive control register; we actually program
- * the register when we set the receive filter. Use multicast
- * address offset type 0.
- *
- * Only the i82544 has the ability to strip the incoming
- * CRC (RCTL_SECRC).
- */
- sc->sc_mchash_type = 0;
- sc->sc_rctl = RCTL_EN | RCTL_LBM_NONE | RCTL_RDMTS_1_2 | RCTL_LPE |
- RCTL_DPF | RCTL_MO(sc->sc_mchash_type)|RCTL_SECRC;
-
- if (MCLBYTES == 2048) {
- sc->sc_rctl |= RCTL_2k;
- } else {
- switch(MCLBYTES) {
- case 4096:
- sc->sc_rctl |= RCTL_BSEX | RCTL_BSEX_4k;
- break;
- case 8192:
- sc->sc_rctl |= RCTL_BSEX | RCTL_BSEX_8k;
- break;
- case 16384:
- sc->sc_rctl |= RCTL_BSEX | RCTL_BSEX_16k;
- break;
- default:
- rtems_panic("wm_init: MCLBYTES %d unsupported",
- MCLBYTES);
- break;
- }
- }
-
-#ifdef WM_DEBUG
- printk("RDBAL 0x%x,RDLEN %d, RDT %d\n",CSR_READ(sc,WMREG_RDBAL),CSR_READ(sc,WMREG_RDLEN), CSR_READ(sc,WMREG_RDT));
-#endif
-
- /* Set the receive filter. */
- wm_set_filter(sc);
-
- CSR_WRITE(sc,WMREG_TCTL, sc->sc_tctl);
-
- /* Map and establish our interrupt. */
- if (!BSP_install_rtems_irq_handler(&i82544IrqData))
- rtems_panic("1GHZ ethernet: unable to install ISR");
-
- return(0);
-}
-
-void BSP_rdTIDV(void)
-{
- printf("Reg TIDV: 0x%" PRIx32 "\n", in_le32((volatile uint32_t *) (BSP_1GHz_membase+WMREG_TIDV)));
-}
-void BSP_rdRDTR(void)
-{
- printf("Reg RDTR: 0x%" PRIx32 "\n", in_le32((volatile uint32_t *) (BSP_1GHz_membase+WMREG_RDTR)));
-}
-
-void BSP_setTIDV(int val)
-{
- out_le32((volatile uint32_t *) (BSP_1GHz_membase+WMREG_TIDV), val);
-}
-
-void BSP_setRDTR(int val)
-{
- out_le32((volatile uint32_t *) (BSP_1GHz_membase+WMREG_RDTR), val);
-}
-/*
- * i82544EI_ifinit: [ifnet interface function]
- *
- * Initialize the interface.
- */
-static void i82544EI_ifinit(void *arg)
-{
- struct wm_softc *sc = (struct wm_softc*)arg;
-
-#ifdef WM_DEBUG
- printk("i82544EI_ifinit(): daemon ID: 0x%08x)\n", sc->daemonTid);
-#endif
- if (sc->daemonTid) {
-#ifdef WM_DEBUG
- printk("i82544EI: daemon already up, doing nothing\n");
-#endif
- return;
- }
- i82544EI_init_hw(sc);
-
- sc->daemonTid = rtems_bsdnet_newproc(i82544EI_TASK_NAME,4096,i82544EI_daemon,arg);
-
- /* ...all done! */
- sc->arpcom.ac_if.if_flags |= IFF_RUNNING;
-
-#ifdef WM_DEBUG
- printk(")");
-#endif
-}
-
-/*
- * wm_txdrain:
- *
- * Drain the transmit queue.
- */
-static void wm_txdrain(struct wm_softc *sc)
-{
- int i;
-
- /* Release any queued transmit buffers. */
- for (i = 0; i < NTXDESC; i++) {
- if (sc->txs_mbuf[i] != NULL) {
- m_freem(sc->txs_mbuf[i]);
- sc->txs_mbuf[i] = NULL;
- }
- }
-}
-
-/*
- * wm_rxdrain:
- *
- * Drain the receive queue.
- */
-static void wm_rxdrain(struct wm_softc *sc)
-{
- int i;
-
- for (i = 0; i < NRXDESC; i++) {
- if (sc->rxs_mbuf[i] != NULL) {
- m_freem(sc->rxs_mbuf[i]);
- sc->rxs_mbuf[i] = NULL;
- }
- }
-}
-
-static void i82544EI_tx_stop(struct wm_softc *sc)
-{
- wm_txdrain(sc);
-}
-
-static void i82544EI_rx_stop(struct wm_softc *sc)
-{
- wm_rxdrain(sc);
-}
-
-static void i82544EI_stop_hw(struct wm_softc *sc)
-{
-#ifdef WM_DEBUG
- printk("i82544EI_stop_hw(");
-#endif
-
- /* remove our interrupt handler which will also
- * disable interrupts at the MPIC and the device
- * itself
- */
- if (!BSP_remove_rtems_irq_handler(&i82544IrqData))
- rtems_panic("i82544EI: unable to remove IRQ handler!");
-
- CSR_WRITE(sc,WMREG_IMS, 0);
-
- sc->arpcom.ac_if.if_flags &= ~IFF_RUNNING;
- i82544EI_tx_stop(sc);
- i82544EI_rx_stop(sc);
-#ifdef WM_DEBUG
- printk(")");
-#endif
-}
-
-/*
- * wm_stop: [ifnet interface function]
- *
- * Stop transmission on the interface.
- */
-static void wm_stop(struct ifnet *ifp, int disable)
-{
- struct wm_softc *sc = ifp->if_softc;
-
-#ifdef WM_DEBUG
- printk("wm_stop(");
-#endif
- /* Stop the transmit and receive processes. */
- CSR_WRITE(sc,WMREG_TCTL, 0);
- CSR_WRITE(sc,WMREG_RCTL, 0);
-
- wm_txdrain(sc);
- wm_rxdrain(sc);
-
- /* Mark the interface as down */
- ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
-#ifdef WM_DEBUG
- printk(")\n");
-#endif
-}
-
-/*
- * wm_eeprom_sendbits:
- *
- * Send a series of bits to the EEPROM.
- */
-static void wm_eeprom_sendbits(struct wm_softc *sc, uint32_t bits, int nbits)
-{
- uint32_t reg;
- int x;
-
- reg = CSR_READ(sc,WMREG_EECD);
-
- for (x = nbits; x > 0; x--) {
- if (bits & (1U << (x - 1)))
- reg |= EECD_DI;
- else
- reg &= ~EECD_DI;
- CSR_WRITE(sc,WMREG_EECD, reg);
- rtems_bsp_delay(2);
- CSR_WRITE(sc,WMREG_EECD, reg | EECD_SK);
- rtems_bsp_delay(2);
- CSR_WRITE(sc,WMREG_EECD, reg);
- rtems_bsp_delay(2);
- }
-}
-
-/*
- * wm_eeprom_recvbits:
- *
- * Receive a series of bits from the EEPROM.
- */
-static void wm_eeprom_recvbits(struct wm_softc *sc, uint32_t *valp, int nbits)
-{
- uint32_t reg, val;
- int x;
-
- reg = CSR_READ(sc,WMREG_EECD) & ~EECD_DI;
-
- val = 0;
- for (x = nbits; x > 0; x--) {
- CSR_WRITE(sc,WMREG_EECD, reg | EECD_SK);
- rtems_bsp_delay(2);
- if (CSR_READ(sc,WMREG_EECD) & EECD_DO)
- val |= (1U << (x - 1));
- CSR_WRITE(sc,WMREG_EECD, reg);
- rtems_bsp_delay(2);
- }
- *valp = val;
-}
-
-/*
- * wm_read_eeprom_uwire:
- *
- * Read a word from the EEPROM using the MicroWire protocol.
- *
- * (The 82544EI Gigabit Ethernet Controller is compatible with
- * most MicroWire interface, serial EEPROM devices.)
- */
-static int wm_read_eeprom_uwire(struct wm_softc *sc, int word, int wordcnt, uint16_t *data)
-{
- uint32_t reg, val;
- int i;
-
- for (i = 0; i < wordcnt; i++) {
- /* Clear SK and DI. */
- reg = CSR_READ(sc,WMREG_EECD) & ~(EECD_SK | EECD_DI);
- CSR_WRITE(sc,WMREG_EECD, reg);
-
- /* Set CHIP SELECT. */
- reg |= EECD_CS;
- CSR_WRITE(sc,WMREG_EECD, reg);
- rtems_bsp_delay(2);
-
- /* Shift in the READ command. */
- wm_eeprom_sendbits(sc, UWIRE_OPC_READ, 3);
-
- /* Shift in address. */
- wm_eeprom_sendbits(sc, word + i, sc->sc_ee_addrbits);
-
- /* Shift out the data. */
- wm_eeprom_recvbits(sc, &val, 16);
- data[i] = val & 0xffff;
-
- /* Clear CHIP SELECT. */
- reg = CSR_READ(sc,WMREG_EECD) & ~EECD_CS;
- CSR_WRITE(sc,WMREG_EECD, reg);
- rtems_bsp_delay(2);
- }
- return (0);
-}
-
-#if 0
-/*
- * wm_acquire_eeprom:
- *
- * Perform the EEPROM handshake required on some chips.
- */
-static int wm_acquire_eeprom(struct wm_softc *sc)
-{
- uint32_t reg;
- int x;
-
- reg = CSR_READ(sc,WMREG_EECD);
-
- /* Request EEPROM access. */
- reg |= EECD_EE_REQ;
- CSR_WRITE(sc,WMREG_EECD, reg);
-
- /* ..and wait for it to be granted. */
- for (x = 0; x < 100; x++) {
- reg = CSR_READ(sc,WMREG_EECD);
- if (reg & EECD_EE_GNT) break;
- rtems_bsp_delay(500);
- }
- if ((reg & EECD_EE_GNT) == 0) {
- printk("Could not acquire EEPROM GNT x= %d\n", x);
- reg &= ~EECD_EE_REQ;
- CSR_WRITE(sc,WMREG_EECD, reg);
- return (1);
- }
-
- return (0);
-}
-#endif
-
-/*
- * wm_read_eeprom:
- *
- * Read data from the serial EEPROM.
- * 82544EI does not Perform the EEPROM handshake
- */
-static int wm_read_eeprom(struct wm_softc *sc, int word, int wordcnt, uint16_t *data)
-{
-#if 0
- /* base on the datasheet, this does not seem to be applicable */
- if (wm_acquire_eeprom(sc))
- return(1);
-#endif
- return(wm_read_eeprom_uwire(sc, word, wordcnt, data));
-}
-
-/*
- * wm_add_rxbuf:
- *
- * Add a receive buffer to the indiciated descriptor.
- */
-static int wm_add_rxbuf(struct wm_softc *sc, int idx)
-{
- struct mbuf *m;
-
- MGETHDR(m, M_WAIT, MT_DATA);
- if (m == NULL) return (ENOBUFS);
- MCLGET(m, M_WAIT);
- if ((m->m_flags & M_EXT) == 0) {
- m_freem(m);
- return (ENOBUFS);
- }
- m->m_pkthdr.rcvif = &sc->arpcom.ac_if;
- sc->rxs_mbuf[idx] = m;
- /* m->m_len = m->m_pkthdr.len = m->m_ext.ext_size;*/
- wm_init_rxdesc(sc, idx);
-#if 0
- printk("sc->rxs_mbuf[%d]= 0x%x, mbuf @ 0x%x\n",
- idx, sc->rxs_mbuf[idx], le32toh(sc->sc_rxdescs[idx].wrx_addr.wa_low));
-#endif
- return(0);
-}
-
-/*
- * wm_set_ral:
- *
- * Set an entery in the receive address list.
- */
-static void
-wm_set_ral(struct wm_softc *sc, const uint8_t *enaddr, int idx)
-{
- uint32_t ral_lo, ral_hi;
-
- if (enaddr != NULL) {
- ral_lo = enaddr[0]|(enaddr[1] << 8)|(enaddr[2] << 16)|(enaddr[3] << 24);
- ral_hi = enaddr[4] | (enaddr[5] << 8);
- ral_hi |= RAL_AV;
- } else {
- ral_lo = 0;
- ral_hi = 0;
- }
-
- CSR_WRITE(sc,WMREG_RAL_LO(WMREG_CORDOVA_RAL_BASE, idx),ral_lo);
- CSR_WRITE(sc,WMREG_RAL_HI(WMREG_CORDOVA_RAL_BASE, idx),ral_hi);
-}
-
-/*
- * wm_mchash:
- *
- * Compute the hash of the multicast address for the 4096-bit
- * multicast filter.
- */
-static uint32_t
-wm_mchash(struct wm_softc *sc, const uint8_t *enaddr)
-{
- static const int lo_shift[4] = { 4, 3, 2, 0 };
- static const int hi_shift[4] = { 4, 5, 6, 8 };
- uint32_t hash;
-
- hash = (enaddr[4] >> lo_shift[sc->sc_mchash_type]) |
- (((uint16_t) enaddr[5]) << hi_shift[sc->sc_mchash_type]);
-
- return (hash & 0xfff);
-}
-
-/*
- * wm_set_filter: Set up the receive filter.
- */
-static void wm_set_filter(struct wm_softc *sc)
-{
- struct ifnet *ifp = &sc->arpcom.ac_if;
- struct ether_multi *enm;
- struct ether_multistep step;
- uint32_t mta_reg;
- uint32_t hash, reg, bit;
- int i;
-
-#ifdef WM_DEBUG
- printk("wm_set_filter(");
-#endif
- mta_reg = WMREG_CORDOVA_MTA;
- sc->sc_rctl &= ~(RCTL_BAM | RCTL_UPE | RCTL_MPE);
-
- if (ifp->if_flags & IFF_BROADCAST)
- sc->sc_rctl |= RCTL_BAM;
- if (ifp->if_flags & IFF_PROMISC) {
- sc->sc_rctl |= RCTL_UPE;
- goto allmulti;
- }
-
- /*
- * Set the station address in the first RAL slot, and
- * clear the remaining slots.
- */
- wm_set_ral(sc, sc->arpcom.ac_enaddr, 0);
- for (i = 1; i < WM_RAL_TABSIZE; i++)
- wm_set_ral(sc, NULL, i);
-
- /* Clear out the multicast table. */
- for (i = 0; i < WM_MC_TABSIZE; i++)
- CSR_WRITE(sc,mta_reg + (i << 2), 0);
-
- ETHER_FIRST_MULTI(step, &sc->arpcom, enm);
- while (enm != NULL) {
- if (memcmp(enm->enm_addrlo, enm->enm_addrhi, ETHER_ADDR_LEN)) {
- /*
- * We must listen to a range of multicast addresses.
- * For now, just accept all multicasts, rather than
- * trying to set only those filter bits needed to match
- * the range. (At this time, the only use of address
- * ranges is for IP multicast routing, for which the
- * range is big enough to require all bits set.)
- */
- goto allmulti;
- }
-
- hash = wm_mchash(sc, enm->enm_addrlo);
-
- reg = (hash >> 5) & 0x7f;
- bit = hash & 0x1f;
-
- hash = CSR_READ(sc,mta_reg + (reg << 2));
- hash |= 1U << bit;
-
- /* XXX Hardware bug?? */
- if ((reg & 0xe) == 1) {
- bit = CSR_READ(sc,mta_reg + ((reg - 1) << 2));
- CSR_WRITE(sc,mta_reg + (reg << 2), hash);
- CSR_WRITE(sc,mta_reg + ((reg - 1) << 2), bit);
- } else
- CSR_WRITE(sc,mta_reg + (reg << 2), hash);
-
- ETHER_NEXT_MULTI(step, enm);
- }
-
- ifp->if_flags &= ~IFF_ALLMULTI;
- goto setit;
-
- allmulti:
- ifp->if_flags |= IFF_ALLMULTI;
- sc->sc_rctl |= RCTL_MPE;
-
- setit:
- CSR_WRITE(sc,WMREG_RCTL, sc->sc_rctl);
-
-#ifdef WM_DEBUG
- printk("RCTL 0x%x)\n", CSR_READ(sc,WMREG_RCTL));
-#endif
-}
-
-static void i82544EI_error(struct wm_softc *sc)
-{
- struct ifnet *ifp = &sc->arpcom.ac_if;
- unsigned long intr_status= sc->if_errsts[sc->if_err_ptr1];
-
- /* read and reset the status; because this is written
- * by the ISR, we must disable interrupts here
- */
- if (intr_status) {
- printk("Error %s%d:", ifp->if_name, ifp->if_unit);
- if (intr_status & ICR_RXSEQ) {
- printk("Rxq framing error (ICR= %x), if_ierrors %d\n",
- intr_status, ifp->if_ierrors);
- }
- }
- else
- printk("%s%d: Ghost interrupt ?\n",ifp->if_name,ifp->if_unit);
- sc->if_errsts[sc->if_err_ptr1]=0;
- if ((++sc->if_err_ptr1)==IF_ERR_BUFSZE) sc->if_err_ptr1=0; /* Till Straumann */
-}
-
-void i82544EI_printStats(void)
-{
- i82544EI_stats(root_i82544EI_dev);
-}
-
-/* The daemon does all of the work; RX, TX and cleaning up buffers/descriptors */
-static void i82544EI_daemon(void *arg)
-{
- struct wm_softc *sc = (struct wm_softc*)arg;
- rtems_event_set events;
- struct mbuf *m=0;
- struct ifnet *ifp=&sc->arpcom.ac_if;
-
-#ifdef WM_DEBUG
- printk("i82544EI_daemon()\n");
-#endif
-
- /* NOTE: our creator possibly holds the bsdnet_semaphore.
- * since that has PRIORITY_INVERSION enabled, our
- * subsequent call to bsdnet_event_receive() will
- * _not_ release it. It's still in posession of our
- * owner.
- * This is different from how killing this task
- * is handled.
- */
-
- for (;;) {
- /* sleep until there's work to be done */
- /* Note: bsdnet_event_receive() acquires
- * the global bsdnet semaphore for
- * mutual exclusion.
- */
- rtems_bsdnet_event_receive(ALL_EVENTS,
- RTEMS_WAIT | RTEMS_EVENT_ANY,
- RTEMS_NO_TIMEOUT,
- &events);
- if (KILL_EVENT & events) break;
-
- if (events & RX_EVENT) i82544EI_rx(sc); /* in ISR instead */
-
- /* clean up and try sending packets */
- do {
- i82544EI_txq_done(sc);
-
- while (sc->txq_free>0) {
- if (sc->txq_free>TXQ_HiLmt_OFF) {
- m=0;
- IF_DEQUEUE(&ifp->if_snd,m);
- if (m==0) break;
- i82544EI_sendpacket(sc, m);
- }
- else {
- i82544EI_txq_done(sc);
- break;
- }
- }
- /* we leave this loop
- * - either because there's no free buffer
- * (m=0 initializer && !sc->txq_free)
- * - or there's nothing to send (IF_DEQUEUE
- * returned 0
- */
- } while (m);
-
- ifp->if_flags &= ~IFF_OACTIVE;
-
- /* Log errors and other uncommon events. */
- if (events & ERR_EVENT) i82544EI_error(sc);
- /* Rx overrun */
- if ( events & INIT_EVENT) {
- printk("Warnning, Rx overrun. Make sure the old mbuf was free\n");
- i82544EI_ifinit(arg);
- }
-
- } /* end for(;;) { rtems_bsdnet_event_receive() .....*/
-
- printf("out of daemon\n");
- ifp->if_flags &= ~(IFF_RUNNING|IFF_OACTIVE);
-
- /* shut down the hardware */
- i82544EI_stop_hw(sc);
- /* flush the output queue */
- for (;;) {
- IF_DEQUEUE(&ifp->if_snd,m);
- if (!m) break;
- m_freem(m);
- }
- /* as of 'rtems_bsdnet_event_receive()' we own the
- * networking semaphore
- */
- rtems_bsdnet_semaphore_release();
- rtems_semaphore_release(sc->daemonSync);
-
- /* Note that I dont use sc->daemonTid here -
- * theoretically, that variable could already
- * hold a newly created TID
- */
- rtems_task_delete(RTEMS_SELF);
-}
-
-/*
- * wm_gmii_reset:
- *
- * Reset the PHY.
- */
-static void wm_gmii_reset(struct wm_softc *sc)
-{
-
- CSR_WRITE(sc, WMREG_CTRL, sc->sc_ctrl | CTRL_PHY_RESET);
- rtems_bsp_delay(20000);
-
- CSR_WRITE(sc, WMREG_CTRL, sc->sc_ctrl);
- rtems_bsp_delay(20000);
-
-}
-
-/*
- * wm_gmii_mediainit:
- *
- * Initialize media for use on 1000BASE-T devices.
- */
-static void wm_gmii_mediainit(struct wm_softc *sc)
-{
- /* struct ifnet *ifp = &sc->arpcom.ac_if;*/
-
- /* We have MII. */
- sc->sc_flags |= WM_F_HAS_MII;
-
-#if 0
- /* <skf> May 2009 : The value that should be programmed into IPGT is 10 */
- sc->sc_tipg = TIPG_IPGT(10)+TIPG_IPGR1(8)+TIPG_IPGR2(6);
-#else
- sc->sc_tipg = TIPG_1000T_DFLT; /* 0x602008 */
-#endif
-
- /*
- * Let the chip set speed/duplex on its own based on
- * signals from the PHY.
- * XXXbouyer - I'm not sure this is right for the 80003,
- * the em driver only sets CTRL_SLU here - but it seems to work.
- */
- sc->sc_ctrl |= CTRL_SLU;
- CSR_WRITE(sc, WMREG_CTRL, sc->sc_ctrl);
-
- wm_gmii_reset(sc);
-
-#if 0
- /* Initialize our media structures and probe the GMII. */
- sc->sc_mii.mii_ifp = ifp;
-
- sc->sc_mii.mii_readreg = wm_gmii_i82544_readreg;
- sc->sc_mii.mii_writereg = wm_gmii_i82544_writereg;
- sc->sc_mii.mii_statchg = wm_gmii_statchg;
-
- ifmedia_init(&sc->sc_mii.mii_media, IFM_IMASK, wm_gmii_mediachange,
- wm_gmii_mediastatus);
-
- mii_attach(&sc->sc_dev, &sc->sc_mii, 0xffffffff, MII_PHY_ANY,
- MII_OFFSET_ANY, MIIF_DOPAUSE);
- if (LIST_FIRST(&sc->sc_mii.mii_phys) == NULL) {
- ifmedia_add(&sc->sc_mii.mii_media, IFM_ETHER|IFM_NONE, 0, NULL);
- ifmedia_set(&sc->sc_mii.mii_media, IFM_ETHER|IFM_NONE);
- } else
- ifmedia_set(&sc->sc_mii.mii_media, IFM_ETHER|IFM_AUTO);
-#endif
-}
diff --git a/c/src/lib/libbsp/powerpc/mvme5500/network/if_1GHz/pci_map.c b/c/src/lib/libbsp/powerpc/mvme5500/network/if_1GHz/pci_map.c
deleted file mode 100644
index 26b143ea1a..0000000000
--- a/c/src/lib/libbsp/powerpc/mvme5500/network/if_1GHz/pci_map.c
+++ /dev/null
@@ -1,135 +0,0 @@
-/* $NetBSD: pci_map.c,v 1.12 2002/05/30 12:06:43 drochner Exp $ */
-
-/*-
- * Copyright (c) 2004, 2005 Brookhaven National Laboratory
- * S. Kate Feng <feng1@bnl.gov>
- *
- * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
- * All rights reserved.
- *
- * This code is derived from software contributed to The NetBSD Foundation
- * by Charles M. Hannum; by William R. Studenmund; by Jason R. Thorpe.
- *
- */
-
-/*
- * PCI device mapping.
- */
-
-#include <sys/cdefs.h>
-#include <sys/param.h>
-#include <sys/systm.h>
-#include <rtems/rtems/types.h>
-
-#include <bsp/pci.h>
-#include <bsp/pcireg.h>
-
-extern int pci_get_capability(int b, int d, int f, int capid,int *offset,uint32_t *value);
-extern int pci_mem_find(int b, int d, int f, int reg, unsigned *basep,unsigned *sizep);
-extern int pci_io_find(int b, int d, int f, int reg,unsigned *basep,unsigned *sizep);
-
-int pci_io_find(int b, int d, int f, int reg,unsigned *basep,unsigned *sizep)
-{
- uint32_t address, mask;
-
- if (reg < PCI_MAPREG_START ||
-#if 0
- /*
- * Can't do this check; some devices have mapping registers
- * way out in left field.
- */
- reg >= PCI_MAPREG_END ||
-#endif
- (reg & 3))
- rtems_panic("pci_io_find: bad request");
-
- /*
- * Section 6.2.5.1, `Address Maps', tells us that:
- *
- * 1) The builtin software should have already mapped the device in a
- * reasonable way.
- *
- * 2) A device which wants 2^n bytes of memory will hardwire the bottom
- * n bits of the address to 0. As recommended, we write all 1s and see
- * what we get back.
- */
- pci_read_config_dword(b,d,f,reg, &address);
- if ( !(address & PCI_MAPREG_TYPE_IO)) return(1);
- pci_write_config_dword(b,d,f,reg, 0xffffffff);
- pci_read_config_dword(b,d,f,reg,&mask);
- pci_write_config_dword(b,d,f,reg, address);
-
- if ( (*sizep = PCI_MAPREG_IO_SIZE(mask))== 0) {
- printk("pci_io_find: void region\n");
- return(1);
- }
- *basep = PCI_MAPREG_IO_ADDR(address);
- return(0);
-}
-
-int pci_mem_find(int b, int d, int f, int reg, unsigned *basep,unsigned *sizep)
-{
- uint32_t address, mask;
-
- if (reg < PCI_MAPREG_START ||
-#if 0
- /*
- * Can't do this check; some devices have mapping registers
- * way out in left field.
- */
- reg >= PCI_MAPREG_END ||
-#endif
- (reg & 3))
- rtems_panic("pci_mem_find: bad request");
-
- pci_read_config_dword(b,d,f,reg, &address);
- if (address & PCI_MAPREG_TYPE_IO) {
- printk("pci_mem_find: expected type mem, found I/O\n");
- return(1);
- }
-
- /*
- * Section 6.2.5.1, `Address Maps', tells us that:
- *
- * 1) The builtin software should have already mapped the device in a
- * reasonable way.
- *
- * 2) A device which wants 2^n bytes of memory will hardwire the bottom
- * n bits of the address to 0. As recommended, we write all 1s and see
- * what we get back.
- */
- pci_write_config_dword(b,d,f,reg, 0xffffffff);
- pci_read_config_dword(b,d,f,reg,&mask);
- pci_write_config_dword(b,d,f,reg, address);
- if ( (*sizep = PCI_MAPREG_MEM_SIZE(mask))== 0) {
- printk("pci_io_find: void region\n");
- return (1);
- }
- *basep = PCI_MAPREG_MEM_ADDR(address);
- return(0);
-}
-
-int pci_get_capability(int b, int d, int f, int capid,int *offset,uint32_t *value)
-{
- uint32_t reg, ofs;
-
- /* i82544EI PCI_CAPLISTPTR_REG */
- pci_read_config_dword(b,d,f,PCI_CAPLISTPTR_REG, &reg);
- ofs = PCI_CAPLIST_PTR(reg);
- while (ofs != 0) {
-#ifdef DIAGNOSTIC
- if ((ofs & 3) || (ofs < 0x40))
- panic("pci_get_capability");
-#endif
- pci_read_config_dword(b,d,f,ofs, &reg);
- if (PCI_CAPLIST_CAP(reg) == capid) {
- if (offset)
- *offset = ofs;
- if (value)
- *value = reg;
- return (1);
- }
- ofs = PCI_CAPLIST_NEXT(reg);
- }
- return (0);
-}