/**************************************************************************
* ns83820.c: Etherboot device driver for the National Semiconductor 83820
* Written 2004 by Timothy Legge <tlegge@rogers.com>
*
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Portions of this code based on:
* ns83820.c by Benjamin LaHaise with contributions
* for Linux kernel 2.4.x.
*
* Linux Driver Version 0.20, 20020610
*
* This development of this Etherboot driver was funded by:
*
* NXTV: http://www.nxtv.com/
*
* REVISION HISTORY:
* ================
*
* v1.0 02-16-2004 timlegge Initial port of Linux driver
* v1.1 02-19-2004 timlegge More rohbust transmit and poll
*
* Indent Options: indent -kr -i8
***************************************************************************/
/* to get some global routines like printf */
#include "etherboot.h"
/* to get the interface to the body of the program */
#include "nic.h"
/* to get the PCI support functions, if this is a PCI NIC */
#include "pci.h"
#define USE_64BIT_ADDR
#endif
//#define DDEBUG
#ifdef DDEBUG
#else
#define dprintf(x)
#endif
typedef unsigned char u8;
typedef signed char s8;
typedef unsigned short u16;
typedef signed short s16;
typedef unsigned int u32;
typedef signed int s32;
/* Condensed operations for readability. */
/* NIC specific static variables go here */
/* Global parameters. See MODULE_PARM near the bottom. */
// static int ihr = 2;
static int reset_phy = 0;
#if defined(CONFIG_HIGHMEM64G) || defined(__ia64__)
#endif
#if defined(USE_64BIT_ADDR)
#else
#define TRY_DAC 0
#endif
/* tunables */
/* Must not exceed ~65000. */
/* not tunable *//* Extra 6 bytes for 64 bit alignment (divisable by 8) */
/* register defines */
/* Ramit : Here's a tip, don't do a RXD immediately followed by an RXE
* The Receive engine skips one descriptor and moves
* onto the next one!! */
/* Ramit : Dont' ever use AUTO_1000, it never works and is buggy.
* Read the Phy response and then configure the MAC accordingly */
#define kick_rx() do { \
dprintf(("kick_rx: maybe kicking\n")); \
printf("uh-oh: next_rx == next_empty???\n"); \
__kick_rx(); \
} while(0)
#ifdef USE_64BIT_ADDR
#else
#endif
#ifdef USE_64BIT_ADDR
struct ring_desc {
};
#else
struct ring_desc {
};
#endif
/* Define the TX Descriptor */
/* Create a static buffer of size REAL_RX_BUF_SIZE for each
TX Descriptor. All descriptors point to a
part of this buffer */
/* Define the TX Descriptor */
/* Create a static buffer of size REAL_RX_BUF_SIZE for each
RX Descriptor All descriptors point to a
part of this buffer */
/* Private Storage for the NIC */
struct ns83820_private {
int up;
long idle;
unsigned ihr;
int linkstate;
} nsx;
{
static char *speeds[] =
{ "10", "100", "1000", "1000(?)", "1000F" };
/* we have an optical transceiver */
dprintf(("phy_intr: tbisr=%hX, tanar=%hX, tanlpar=%hX\n",
&& (tanar & TANAR_FULL_DUP))) {
/* both of us are full duplex */
/* Light up full duplex LED */
} else if (((tanlpar & TANAR_HALF_DUP)
&& (tanar & TANAR_HALF_DUP))
|| ((tanlpar & TANAR_FULL_DUP)
&& (tanar & TANAR_HALF_DUP))
|| ((tanlpar & TANAR_HALF_DUP)
&& (tanar & TANAR_FULL_DUP))) {
/* one or both of us are half duplex */
/* Turn off full duplex LED */
}
} else {
/* we have a copper transceiver */
new_cfg =
if (cfg & CFG_SPDSTS1)
new_cfg |= CFG_MODE_1000;
else
new_cfg &= ~CFG_MODE_1000;
if (fullduplex)
if ((cfg & CFG_LNKSTS) &&
}
}
printf("link now %s mbps, %s duplex and up.\n",
} else if (newlinkstate & LINK_DOWN
printf("link now down.\n");
}
}
{
unsigned i;
ns->next_empty = 0;
for (i = 0; i < NR_RX_DESC; i++) {
}
// No need to wrap the ring
// rx_ring[i].link = virt_to_le32desc(&rx_ring[0]);
dprintf(("starting receiver\n"));
/* Okay, let it rip */
//dev->IMR_cache |= ISR_RXERR;
//dev->IMR_cache |= ISR_RXOK;
// No reason to enable interupts...
// writel(ns->IMR_cache, ns->base + IMR);
// writel(1, ns->base + IER);
kick_rx();
}
{
dprintf(("resetting chip...\n"));
do {
dprintf(("okay!\n"));
}
{
unsigned i;
dprintf(("ns83820_reset\n"));
for (i = 0; i < NR_TX_DESC; i++) {
}
ns->tx_done_idx = 0;
return;
}
{
unsigned i;
for (i = 0; i < 3; i++) {
/* Read from the perfect match memory: this is loaded by
* the chip from the EEPROM via the EELOAD self test.
*/
}
}
{
/* Support Multicast */
/* Ramit : RFCR Write Fix doc says RFEN must be 0 modify other bits */
}
{
int timed_out = 0;
long start;
int loops = 0;
for (;;) {
loops++;
break;
break;
break;
timed_out = 1;
break;
}
}
else if (timed_out)
}
/*************************************
Check Link
*************************************/
int i;
kick_rx();
for (i = 0; i < NR_RX_DESC; i++) {
// rx_ring[i].link = virt_to_le32desc(&rx_ring[i + 1]);
}
}
}
/**************************************************************************
POLL - Wait for a frame
***************************************************************************/
{
/* return true if there's an ethernet packet ready to read */
/* nic->packet should contain data on return */
/* nic->packetlen should contain length of data */
return 0;
if ( ! retrieve ) return 1;
return 0;
// rx_ring[entry].link = 0;
kick_rx();
return 1;
}
{
dprintf(("kick_tx\n"));
}
/**************************************************************************
TRANSMIT - Transmit a frame
***************************************************************************/
unsigned int t, /* Type */
unsigned int s, /* size */
const char *p)
{ /* Packet */
/* send the packet to destination */
int cur_tx = 0;
if (ISR_TXIDLE & isr)
/* point to the current txb incase multiple tx_rings are used */
s += ETH_HLEN;
s &= 0x0FFF;
while (s < ETH_ZLEN)
txb[s++] = '\0';
/* Setup the transmit descriptor */
extsts = 0;
extsts |= EXTSTS_UDPPKT;
cmdsts = cpu_to_le32(0);
}
/**************************************************************************
DISABLE - Turn off ethernet interface
***************************************************************************/
{
/* put the card in its initial state */
/* This function serves 3 purposes.
* This disables DMA and interrupts so we don't receive
* unexpected packets or interrupts from the card after
* etherboot has finished.
* This frees resources so etherboot may use
* this driver on another interface
* This allows etherboot to reinitialize the interface
* if something is something goes wrong.
*/
/* disable interrupts */
/* touch the pci bus... */
/* assumes the transmitter is already disabled and reset */
}
/**************************************************************************
IRQ - Enable, Disable, or Force interrupts
***************************************************************************/
{
switch ( action ) {
case DISABLE :
break;
case ENABLE :
break;
case FORCE :
break;
}
}
/**************************************************************************
PROBE - Look for an adapter, this routine's visible to the outside
***************************************************************************/
#define valid_link 0
{
int sz;
long addr;
int using_dac = 0;
return 0;
/* point to private storage */
// ns->base = ioremap(addr, sz);
return 0;
/* disable interrupts */
/* Must reset the ram bist before running it */
/* I love config registers */
/*dev->CFG_cache |= CFG_DATA64_EN; */
("%s: EEPROM did not enable 64 bit bus. Disabled.\n",
} else
/* When compiled with 64 bit addressing, we must always enable
* the 64 bit descriptor format.
*/
#ifdef USE_64BIT_ADDR
#endif
//FIXME: Enable section on dac or remove this
if (using_dac)
/* Big endian mode does not seem to do what the docs suggest */
/* setup optical transceiver if we have one */
/* setup auto negotiation feature advertisement */
/* start auto negotiation */
}
/* FIXME: reset_phy is defaulted to 0, should we reset anyway? */
if (reset_phy) {
}
#if 0 /* Huh? This sets the PCI latency register. Should be done via
* the PCI layer. FIXME.
*/
#endif
/* Note! The DMA burst size interacts with packet
* transmission, such that the largest packet that
* can be transmitted is 8192 - FLTH - burst size.
* If only the transmit fifo was larger...
*/
/* Ramit : 1024 DMA is not a good idea, it ends up banging
* some DELL and COMPAQ SMP systems */
/* Set Rx to full duplex, don't accept runt, errored, long or length
* range errored packets. Use 512 byte DMA.
*/
/* Ramit : 1024 DMA is not a good idea, it ends up banging
* some DELL and COMPAQ SMP systems
* Turn on ALP, only we are accpeting Jumbo Packets */
//| RXCFG_ALP
/* Disable priority queueing */
/* Enable IP checksum validation and detetion of VLAN headers.
* Note: do not set the reject options as at least the 0x102
* revision of the chip does not properly accept IP fragments
* at least for UDP.
*/
/* Ramit : Be sure to turn on RXCFG_ARP if VLAN's are enabled, since
* the MAC it calculates the packetsize AFTER stripping the VLAN
* header, and if a VLAN Tagged packet of 64 bytes is received (like
* a ping with a VLAN header) then the card, strips the 4 byte VLAN
* tag and then checks the packet size, so if RXCFG_ARP is not enabled,
* it discrards it!. These guys......
*/
/* Ramit : Enable async and sync pause frames */
// writel(0, ns->base + PCR);
/* Disable Wake On Lan */
if (using_dac) {
}
dprintf(("%s: DP83820 %d.%d: %! io=0x%hX\n",
#ifdef PHY_CODE_IS_FINISHED
#endif
/* point to NIC specific routines */
return 1;
}
};
.type = NIC_DRIVER,
.probe = ns83820_probe,
.ids = ns83820_nics,
.class = 0,
};