Commit 386d0ce7 authored by Jeff Garzik's avatar Jeff Garzik

Merge mandrakesoft.com:/home/jgarzik/vanilla/linus-2.5

into mandrakesoft.com:/home/jgarzik/repo/net-drivers-2.5
parents afae6f7c 6502fb5d
This diff is collapsed.
...@@ -37,8 +37,8 @@ ...@@ -37,8 +37,8 @@
* Investigate using High Priority Tx Queue with skb->priority * Investigate using High Priority Tx Queue with skb->priority
* Adjust Rx FIFO threshold and Max Rx DMA burst on Rx FIFO error * Adjust Rx FIFO threshold and Max Rx DMA burst on Rx FIFO error
* Adjust Tx FIFO threshold and Max Tx DMA burst on Tx FIFO error * Adjust Tx FIFO threshold and Max Tx DMA burst on Tx FIFO error
* Implement Tx software interrupt mitigation via * Implement Tx software interrupt mitigation via
Tx descriptor bit Tx descriptor bit
* The real minimum of CP_MIN_MTU is 4 bytes. However, * The real minimum of CP_MIN_MTU is 4 bytes. However,
for this to be supported, one must(?) turn on packet padding. for this to be supported, one must(?) turn on packet padding.
......
This diff is collapsed.
...@@ -1153,9 +1153,7 @@ dgrs_probe1(struct net_device *dev) ...@@ -1153,9 +1153,7 @@ dgrs_probe1(struct net_device *dev)
*/ */
rc = dgrs_download(dev); rc = dgrs_download(dev);
if (rc) if (rc)
{ goto err_out;
return rc;
}
/* /*
* Get ether address of board * Get ether address of board
...@@ -1169,7 +1167,8 @@ dgrs_probe1(struct net_device *dev) ...@@ -1169,7 +1167,8 @@ dgrs_probe1(struct net_device *dev)
if (dev->dev_addr[0] & 1) if (dev->dev_addr[0] & 1)
{ {
printk("%s: Illegal Ethernet Address\n", dev->name); printk("%s: Illegal Ethernet Address\n", dev->name);
return (-ENXIO); rc = -ENXIO;
goto err_out;
} }
/* /*
...@@ -1178,9 +1177,10 @@ dgrs_probe1(struct net_device *dev) ...@@ -1178,9 +1177,10 @@ dgrs_probe1(struct net_device *dev)
*/ */
if (priv->plxreg) if (priv->plxreg)
OUTL(dev->base_addr + PLX_LCL2PCI_DOORBELL, 1); OUTL(dev->base_addr + PLX_LCL2PCI_DOORBELL, 1);
rc = request_irq(dev->irq, &dgrs_intr, SA_SHIRQ, "RightSwitch", dev); rc = request_irq(dev->irq, &dgrs_intr, SA_SHIRQ, "RightSwitch", dev);
if (rc) if (rc)
return (rc); goto err_out;
priv->intrcnt = 0; priv->intrcnt = 0;
for (i = jiffies + 2*HZ + HZ/2; time_after(i, jiffies); ) for (i = jiffies + 2*HZ + HZ/2; time_after(i, jiffies); )
...@@ -1191,16 +1191,22 @@ dgrs_probe1(struct net_device *dev) ...@@ -1191,16 +1191,22 @@ dgrs_probe1(struct net_device *dev)
} }
if (priv->intrcnt < 2) if (priv->intrcnt < 2)
{ {
printk("%s: Not interrupting on IRQ %d (%d)\n", printk(KERN_ERR "%s: Not interrupting on IRQ %d (%d)\n",
dev->name, dev->irq, priv->intrcnt); dev->name, dev->irq, priv->intrcnt);
return (-ENXIO); rc = -ENXIO;
goto err_free_irq;
} }
/* /*
* Register the /proc/ioports information... * Register the /proc/ioports information...
*/ */
request_region(dev->base_addr, 256, "RightSwitch"); if (!request_region(dev->base_addr, 256, "RightSwitch")) {
printk(KERN_ERR "%s: io 0x%3lX, which is busy.\n", dev->name,
dev->base_addr);
rc = -EBUSY;
goto err_free_irq;
}
/* /*
* Entry points... * Entry points...
*/ */
...@@ -1211,7 +1217,12 @@ dgrs_probe1(struct net_device *dev) ...@@ -1211,7 +1217,12 @@ dgrs_probe1(struct net_device *dev)
dev->set_multicast_list = &dgrs_set_multicast_list; dev->set_multicast_list = &dgrs_set_multicast_list;
dev->do_ioctl = &dgrs_ioctl; dev->do_ioctl = &dgrs_ioctl;
return (0); return rc;
err_free_irq:
free_irq(dev->irq, dev);
err_out:
return rc;
} }
int __init int __init
......
...@@ -75,13 +75,13 @@ static inline void netif_start_queue(struct net_device *dev) ...@@ -75,13 +75,13 @@ static inline void netif_start_queue(struct net_device *dev)
#define rr_mark_net_bh(foo) mark_bh(foo) #define rr_mark_net_bh(foo) mark_bh(foo)
#define rr_if_busy(dev) dev->tbusy #define rr_if_busy(dev) dev->tbusy
#define rr_if_running(dev) dev->start /* Currently unused. */ #define rr_if_running(dev) dev->start /* Currently unused. */
#define rr_if_down(dev) {do{dev->start = 0;}while (0);} #define rr_if_down(dev) do { dev->start = 0; } while (0)
#else #else
#define NET_BH 0 #define NET_BH 0
#define rr_mark_net_bh(foo) {do{} while(0);} #define rr_mark_net_bh(foo) do { } while(0)
#define rr_if_busy(dev) netif_queue_stopped(dev) #define rr_if_busy(dev) netif_queue_stopped(dev)
#define rr_if_running(dev) netif_running(dev) #define rr_if_running(dev) netif_running(dev)
#define rr_if_down(dev) {do{} while(0);} #define rr_if_down(dev) do { } while(0)
#endif #endif
#include "rrunner.h" #include "rrunner.h"
......
/* $Id: sgiseeq.c,v 1.17 2000/03/27 23:02:57 ralf Exp $ /*
*
* sgiseeq.c: Seeq8003 ethernet driver for SGI machines. * sgiseeq.c: Seeq8003 ethernet driver for SGI machines.
* *
* Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
*/ */
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/module.h>
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
...@@ -450,20 +450,22 @@ static int sgiseeq_open(struct net_device *dev) ...@@ -450,20 +450,22 @@ static int sgiseeq_open(struct net_device *dev)
unsigned long flags; unsigned long flags;
int err; int err;
save_flags(flags); cli(); __save_and_cli(flags);
if (request_irq(dev->irq, sgiseeq_interrupt, 0, sgiseeqstr, (void *) dev)) {
err = -EAGAIN;
if (request_irq(dev->irq, sgiseeq_interrupt, 0, sgiseeqstr, dev)) {
printk("Seeq8003: Can't get irq %d\n", dev->irq); printk("Seeq8003: Can't get irq %d\n", dev->irq);
restore_flags(flags); goto out;
return -EAGAIN;
} }
err = init_seeq(dev, sp, sregs); err = init_seeq(dev, sp, sregs);
if (err) if (err)
return err; goto out;
netif_start_queue(dev); netif_start_queue(dev);
restore_flags(flags);
return 0; out:
__restore_flags(flags);
return err;
} }
static int sgiseeq_close(struct net_device *dev) static int sgiseeq_close(struct net_device *dev)
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
*/ */
static char *version = "sun3lance.c: v1.1 11/17/1999 Sam Creasey (sammy@oh.verio.com)\n"; static char *version = "sun3lance.c: v1.2 1/12/2001 Sam Creasey (sammy@sammy.net)\n";
#include <linux/module.h> #include <linux/module.h>
...@@ -35,16 +35,24 @@ static char *version = "sun3lance.c: v1.1 11/17/1999 Sam Creasey (sammy@oh.veri ...@@ -35,16 +35,24 @@ static char *version = "sun3lance.c: v1.1 11/17/1999 Sam Creasey (sammy@oh.veri
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/ioport.h> #include <linux/ioport.h>
#include <linux/delay.h>
#include <asm/setup.h> #include <asm/setup.h>
#include <asm/irq.h> #include <asm/irq.h>
#include <asm/bitops.h> #include <asm/bitops.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/idprom.h>
#include <asm/pgtable.h> #include <asm/pgtable.h>
#include <asm/sun3mmu.h> #include <asm/pgalloc.h>
#include <asm/dvma.h> #include <asm/dvma.h>
#include <asm/idprom.h>
#include <asm/machines.h>
#ifdef CONFIG_SUN3
#include <asm/sun3mmu.h>
#else
#include <asm/sun3xprom.h>
#endif
#include <linux/netdevice.h> #include <linux/netdevice.h>
#include <linux/etherdevice.h> #include <linux/etherdevice.h>
...@@ -62,7 +70,7 @@ static char *version = "sun3lance.c: v1.1 11/17/1999 Sam Creasey (sammy@oh.veri ...@@ -62,7 +70,7 @@ static char *version = "sun3lance.c: v1.1 11/17/1999 Sam Creasey (sammy@oh.veri
* 3 = debug, print even more debug infos (packet data) * 3 = debug, print even more debug infos (packet data)
*/ */
#define LANCE_DEBUG 1 #define LANCE_DEBUG 0
#ifdef LANCE_DEBUG #ifdef LANCE_DEBUG
static int lance_debug = LANCE_DEBUG; static int lance_debug = LANCE_DEBUG;
...@@ -139,7 +147,7 @@ struct lance_memory { ...@@ -139,7 +147,7 @@ struct lance_memory {
struct lance_tx_head tx_head[TX_RING_SIZE]; struct lance_tx_head tx_head[TX_RING_SIZE];
struct lance_rx_head rx_head[RX_RING_SIZE]; struct lance_rx_head rx_head[RX_RING_SIZE];
char rx_data[RX_RING_SIZE][PKT_BUF_SZ]; char rx_data[RX_RING_SIZE][PKT_BUF_SZ];
char tx_data[RX_RING_SIZE][PKT_BUF_SZ]; char tx_data[TX_RING_SIZE][PKT_BUF_SZ];
}; };
/* The driver's private device structure */ /* The driver's private device structure */
...@@ -151,8 +159,8 @@ struct lance_private { ...@@ -151,8 +159,8 @@ struct lance_private {
int old_tx, old_rx; /* ring entry to be processed */ int old_tx, old_rx; /* ring entry to be processed */
struct net_device_stats stats; struct net_device_stats stats;
/* These two must be longs for set_bit() */ /* These two must be longs for set_bit() */
long tx_full; long tx_full;
long lock; long lock;
}; };
/* I/O register access macros */ /* I/O register access macros */
...@@ -247,15 +255,27 @@ int __init sun3lance_probe( struct net_device *dev ) ...@@ -247,15 +255,27 @@ int __init sun3lance_probe( struct net_device *dev )
{ {
static int found; static int found;
/* check that this machine has an onboard lance */
switch(idprom->id_machtype) {
case SM_SUN3|SM_3_50:
case SM_SUN3|SM_3_60:
case SM_SUN3X|SM_3_80:
/* these machines have lance */
break;
default:
return(-ENODEV);
}
if(found) if(found)
return(ENODEV); return(-ENODEV);
if (lance_probe(dev)) { if (lance_probe(dev)) {
found = 1; found = 1;
return( 0 ); return( 0 );
} }
return( ENODEV ); return( -ENODEV );
} }
static int __init lance_probe( struct net_device *dev) static int __init lance_probe( struct net_device *dev)
...@@ -269,6 +289,7 @@ static int __init lance_probe( struct net_device *dev) ...@@ -269,6 +289,7 @@ static int __init lance_probe( struct net_device *dev)
volatile unsigned short *ioaddr_probe; volatile unsigned short *ioaddr_probe;
unsigned short tmp1, tmp2; unsigned short tmp1, tmp2;
#ifdef CONFIG_SUN3
/* LANCE_OBIO can be found within the IO pmeg with some effort */ /* LANCE_OBIO can be found within the IO pmeg with some effort */
for(ioaddr = 0xfe00000; ioaddr < (0xfe00000 + for(ioaddr = 0xfe00000; ioaddr < (0xfe00000 +
SUN3_PMEG_SIZE); ioaddr += SUN3_PTE_SIZE) { SUN3_PMEG_SIZE); ioaddr += SUN3_PTE_SIZE) {
...@@ -286,6 +307,9 @@ static int __init lance_probe( struct net_device *dev) ...@@ -286,6 +307,9 @@ static int __init lance_probe( struct net_device *dev)
if(!found) if(!found)
return 0; return 0;
#else
ioaddr = SUN3X_LANCE;
#endif
/* test to see if there's really a lance here */ /* test to see if there's really a lance here */
/* (CSRO_INIT shouldn't be readable) */ /* (CSRO_INIT shouldn't be readable) */
...@@ -311,8 +335,9 @@ static int __init lance_probe( struct net_device *dev) ...@@ -311,8 +335,9 @@ static int __init lance_probe( struct net_device *dev)
return 0; return 0;
} }
lp = (struct lance_private *)dev->priv; lp = (struct lance_private *)dev->priv;
MEM = (struct lance_memory *)sun3_dvma_malloc(sizeof(struct
lance_memory)); MEM = dvma_malloc_align(sizeof(struct lance_memory), 0x10000);
lp->iobase = (volatile unsigned short *)ioaddr; lp->iobase = (volatile unsigned short *)ioaddr;
dev->base_addr = (unsigned long)ioaddr; /* informational only */ dev->base_addr = (unsigned long)ioaddr; /* informational only */
...@@ -331,7 +356,7 @@ static int __init lance_probe( struct net_device *dev) ...@@ -331,7 +356,7 @@ static int __init lance_probe( struct net_device *dev)
/* copy in the ethernet address from the prom */ /* copy in the ethernet address from the prom */
for(i = 0; i < 6 ; i++) for(i = 0; i < 6 ; i++)
dev->dev_addr[i] = idprom->id_ethaddr[i]; dev->dev_addr[i] = idprom->id_ethaddr[i];
/* tell the card it's ether address, bytes swapped */ /* tell the card it's ether address, bytes swapped */
MEM->init.hwaddr[0] = dev->dev_addr[1]; MEM->init.hwaddr[0] = dev->dev_addr[1];
MEM->init.hwaddr[1] = dev->dev_addr[0]; MEM->init.hwaddr[1] = dev->dev_addr[0];
...@@ -346,20 +371,19 @@ static int __init lance_probe( struct net_device *dev) ...@@ -346,20 +371,19 @@ static int __init lance_probe( struct net_device *dev)
MEM->init.mode = 0x0000; MEM->init.mode = 0x0000;
MEM->init.filter[0] = 0x00000000; MEM->init.filter[0] = 0x00000000;
MEM->init.filter[1] = 0x00000000; MEM->init.filter[1] = 0x00000000;
MEM->init.rdra = sun3_dvma_vtop(MEM->rx_head); MEM->init.rdra = dvma_vtob(MEM->rx_head);
MEM->init.rlen = (RX_LOG_RING_SIZE << 13) | MEM->init.rlen = (RX_LOG_RING_SIZE << 13) |
(sun3_dvma_vtop(MEM->rx_head) >> 16); (dvma_vtob(MEM->rx_head) >> 16);
MEM->init.tdra = sun3_dvma_vtop(MEM->tx_head); MEM->init.tdra = dvma_vtob(MEM->tx_head);
MEM->init.tlen = (TX_LOG_RING_SIZE << 13) | MEM->init.tlen = (TX_LOG_RING_SIZE << 13) |
(sun3_dvma_vtop(MEM->tx_head) >> 16); (dvma_vtob(MEM->tx_head) >> 16);
DPRINTK(2, ("initaddr: %08lx rx_ring: %08lx tx_ring: %08lx\n", DPRINTK(2, ("initaddr: %08lx rx_ring: %08lx tx_ring: %08lx\n",
sun3_dvma_vtop(&(MEM->init)), sun3_dvma_vtop(MEM->rx_head), dvma_vtob(&(MEM->init)), dvma_vtob(MEM->rx_head),
(sun3_dvma_vtop(MEM->tx_head)))); (dvma_vtob(MEM->tx_head))));
if (did_version++ == 0) if (did_version++ == 0)
DPRINTK( 1, ( version )); printk( version );
/* The LANCE-specific entries in the device structure. */ /* The LANCE-specific entries in the device structure. */
dev->open = &lance_open; dev->open = &lance_open;
...@@ -386,16 +410,8 @@ static int lance_open( struct net_device *dev ) ...@@ -386,16 +410,8 @@ static int lance_open( struct net_device *dev )
REGA(CSR0) = CSR0_STOP; REGA(CSR0) = CSR0_STOP;
/* tell the lance the address of its init block */
REGA(CSR1) = sun3_dvma_vtop(&(MEM->init));
REGA(CSR2) = sun3_dvma_vtop(&(MEM->init)) >> 16;
lance_init_ring(dev); lance_init_ring(dev);
/* Re-initialize the LANCE, and start it when done. */
REGA(CSR3) = CSR3_BSWP;
/* From now on, AREG is kept to point to CSR0 */ /* From now on, AREG is kept to point to CSR0 */
REGA(CSR0) = CSR0_INIT; REGA(CSR0) = CSR0_INIT;
...@@ -434,23 +450,52 @@ static void lance_init_ring( struct net_device *dev ) ...@@ -434,23 +450,52 @@ static void lance_init_ring( struct net_device *dev )
lp->old_rx = lp->old_tx = 0; lp->old_rx = lp->old_tx = 0;
for( i = 0; i < TX_RING_SIZE; i++ ) { for( i = 0; i < TX_RING_SIZE; i++ ) {
MEM->tx_head[i].base = sun3_dvma_vtop(MEM->tx_data[i]); MEM->tx_head[i].base = dvma_vtob(MEM->tx_data[i]);
MEM->tx_head[i].flag = 0; MEM->tx_head[i].flag = 0;
MEM->tx_head[i].base_hi = MEM->tx_head[i].base_hi =
(sun3_dvma_vtop(MEM->tx_data[i])) >>16; (dvma_vtob(MEM->tx_data[i])) >>16;
MEM->tx_head[i].length = 0; MEM->tx_head[i].length = 0;
MEM->tx_head[i].misc = 0; MEM->tx_head[i].misc = 0;
} }
for( i = 0; i < RX_RING_SIZE; i++ ) { for( i = 0; i < RX_RING_SIZE; i++ ) {
MEM->rx_head[i].base = sun3_dvma_vtop(MEM->rx_data[i]); MEM->rx_head[i].base = dvma_vtob(MEM->rx_data[i]);
MEM->rx_head[i].flag = TMD1_OWN_CHIP; MEM->rx_head[i].flag = RMD1_OWN_CHIP;
MEM->rx_head[i].base_hi = MEM->rx_head[i].base_hi =
(sun3_dvma_vtop(MEM->rx_data[i])) >> 16; (dvma_vtob(MEM->rx_data[i])) >> 16;
MEM->rx_head[i].buf_length = -PKT_BUF_SZ | 0xf000; MEM->rx_head[i].buf_length = -PKT_BUF_SZ | 0xf000;
MEM->rx_head[i].msg_length = 0; MEM->rx_head[i].msg_length = 0;
} }
/* tell the card it's ether address, bytes swapped */
MEM->init.hwaddr[0] = dev->dev_addr[1];
MEM->init.hwaddr[1] = dev->dev_addr[0];
MEM->init.hwaddr[2] = dev->dev_addr[3];
MEM->init.hwaddr[3] = dev->dev_addr[2];
MEM->init.hwaddr[4] = dev->dev_addr[5];
MEM->init.hwaddr[5] = dev->dev_addr[4];
MEM->init.mode = 0x0000;
MEM->init.filter[0] = 0x00000000;
MEM->init.filter[1] = 0x00000000;
MEM->init.rdra = dvma_vtob(MEM->rx_head);
MEM->init.rlen = (RX_LOG_RING_SIZE << 13) |
(dvma_vtob(MEM->rx_head) >> 16);
MEM->init.tdra = dvma_vtob(MEM->tx_head);
MEM->init.tlen = (TX_LOG_RING_SIZE << 13) |
(dvma_vtob(MEM->tx_head) >> 16);
/* tell the lance the address of its init block */
REGA(CSR1) = dvma_vtob(&(MEM->init));
REGA(CSR2) = dvma_vtob(&(MEM->init)) >> 16;
#ifdef CONFIG_SUN3X
REGA(CSR3) = CSR3_BSWP | CSR3_ACON | CSR3_BCON;
#else
REGA(CSR3) = CSR3_BSWP;
#endif
} }
...@@ -512,7 +557,7 @@ static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev ) ...@@ -512,7 +557,7 @@ static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev )
stopping the queue for a bit... */ stopping the queue for a bit... */
netif_stop_queue(dev); netif_stop_queue(dev);
if (test_and_set_bit( 0, (void*)&lp->lock ) != 0) { if (test_and_set_bit( 0, (void*)&lp->lock ) != 0) {
printk( "%s: tx queue lock!.\n", dev->name); printk( "%s: tx queue lock!.\n", dev->name);
/* don't clear dev->tbusy flag. */ /* don't clear dev->tbusy flag. */
...@@ -520,13 +565,22 @@ static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev ) ...@@ -520,13 +565,22 @@ static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev )
} }
AREG = CSR0; AREG = CSR0;
// DPRINTK( 2, ( "%s: lance_start_xmit() called, csr0 %4.4x.\n", DPRINTK( 2, ( "%s: lance_start_xmit() called, csr0 %4.4x.\n",
// dev->name, DREG )); dev->name, DREG ));
#ifdef CONFIG_SUN3X
/* this weirdness doesn't appear on sun3... */
if(!(DREG & CSR0_INIT)) {
DPRINTK( 1, ("INIT not set, reinitializing...\n"));
REGA( CSR0 ) = CSR0_STOP;
lance_init_ring(dev);
REGA( CSR0 ) = CSR0_INIT | CSR0_STRT;
}
#endif
/* Fill in a Tx ring entry */ /* Fill in a Tx ring entry */
#if 0 #if 0
if (lance_debug >= 3) { if (lance_debug >= 2) {
u_char *p; u_char *p;
int i; int i;
printk( "%s: TX pkt %d type 0x%04x from ", dev->name, printk( "%s: TX pkt %d type 0x%04x from ", dev->name,
...@@ -566,7 +620,10 @@ static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev ) ...@@ -566,7 +620,10 @@ static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev )
lp->stats.tx_bytes += skb->len; lp->stats.tx_bytes += skb->len;
/* Trigger an immediate send poll. */ /* Trigger an immediate send poll. */
REGA(CSR0) = CSR0_INEA | CSR0_TDMD; REGA(CSR0) = CSR0_INEA | CSR0_TDMD | CSR0_STRT;
AREG = CSR0;
DPRINTK( 2, ( "%s: lance_start_xmit() exiting, csr0 %4.4x.\n",
dev->name, DREG ));
dev->trans_start = jiffies; dev->trans_start = jiffies;
dev_kfree_skb( skb ); dev_kfree_skb( skb );
...@@ -597,14 +654,15 @@ static void lance_interrupt( int irq, void *dev_id, struct pt_regs *fp) ...@@ -597,14 +654,15 @@ static void lance_interrupt( int irq, void *dev_id, struct pt_regs *fp)
if (in_interrupt) if (in_interrupt)
DPRINTK( 2, ( "%s: Re-entering the interrupt handler.\n", dev->name )); DPRINTK( 2, ( "%s: Re-entering the interrupt handler.\n", dev->name ));
in_interrupt = 1; in_interrupt = 1;
still_more: still_more:
flush_cache_all();
AREG = CSR0; AREG = CSR0;
csr0 = DREG; csr0 = DREG;
/* ack interrupts */ /* ack interrupts */
DREG = csr0 & (CSR0_TINT | CSR0_RINT); DREG = csr0 & (CSR0_TINT | CSR0_RINT | CSR0_IDON);
/* clear errors */ /* clear errors */
if(csr0 & CSR0_ERR) if(csr0 & CSR0_ERR)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment