iPXE
Macros | Functions | Variables
natsemi.c File Reference

National Semiconductor "MacPhyter" network card driver. More...

#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <byteswap.h>
#include <ipxe/netdevice.h>
#include <ipxe/ethernet.h>
#include <ipxe/if_ether.h>
#include <ipxe/iobuf.h>
#include <ipxe/malloc.h>
#include <ipxe/pci.h>
#include <ipxe/nvs.h>
#include <ipxe/bitbash.h>
#include <ipxe/spi_bit.h>
#include <ipxe/threewire.h>
#include "natsemi.h"

Go to the source code of this file.

Macros

#define DP83815_FLAGS   ( NATSEMI_EEPROM_LITTLE_ENDIAN | NATSEMI_EEPROM_INSANE )
 Flags for DP83815. More...
 
#define DP83820_FLAGS   ( NATSEMI_64BIT | NATSEMI_1000 )
 Flags for DP83820. More...
 

Functions

 FILE_LICENCE (GPL2_OR_LATER)
 
static int natsemi_spi_read_bit (struct bit_basher *basher, unsigned int bit_id)
 Read input bit. More...
 
static void natsemi_spi_write_bit (struct bit_basher *basher, unsigned int bit_id, unsigned long data)
 Set/clear output bit. More...
 
static void natsemi_init_eeprom (struct natsemi_nic *natsemi)
 Initialise EEPROM. More...
 
static void natsemi_hwaddr_sane (struct natsemi_nic *natsemi, const uint16_t *eeprom, uint16_t *hw_addr)
 Get hardware address from sane EEPROM data. More...
 
static void natsemi_hwaddr_insane (struct natsemi_nic *natsemi, const uint16_t *eeprom, uint16_t *hw_addr)
 Get hardware address from insane EEPROM data. More...
 
static int natsemi_hwaddr (struct natsemi_nic *natsemi, void *hw_addr)
 Get hardware address from EEPROM. More...
 
static int natsemi_soft_reset (struct natsemi_nic *natsemi)
 Reset controller chip. More...
 
static int natsemi_reload_config (struct natsemi_nic *natsemi)
 Reload configuration from EEPROM. More...
 
static int natsemi_reset (struct natsemi_nic *natsemi)
 Reset hardware. More...
 
static void natsemi_check_link (struct net_device *netdev)
 Check link state. More...
 
static void natsemi_pmatch (struct natsemi_nic *natsemi, const void *mac)
 Set perfect match filter address. More...
 
static int natsemi_create_ring (struct natsemi_nic *natsemi, struct natsemi_ring *ring)
 Create descriptor ring. More...
 
static void natsemi_destroy_ring (struct natsemi_nic *natsemi, struct natsemi_ring *ring)
 Destroy descriptor ring. More...
 
static void natsemi_refill_rx (struct net_device *netdev)
 Refill receive descriptor ring. More...
 
static int natsemi_open (struct net_device *netdev)
 Open network device. More...
 
static void natsemi_close (struct net_device *netdev)
 Close network device. More...
 
static int natsemi_transmit (struct net_device *netdev, struct io_buffer *iobuf)
 Transmit packet. More...
 
static void natsemi_poll_tx (struct net_device *netdev)
 Poll for completed packets. More...
 
static void natsemi_poll_rx (struct net_device *netdev)
 Poll for received packets. More...
 
static void natsemi_poll (struct net_device *netdev)
 Poll for completed and received packets. More...
 
static void natsemi_irq (struct net_device *netdev, int enable)
 Enable or disable interrupts. More...
 
static int natsemi_probe (struct pci_device *pci)
 Probe PCI device. More...
 
static void natsemi_remove (struct pci_device *pci)
 Remove PCI device. More...
 

Variables

static const uint8_t natsemi_eeprom_bits []
 Pin mapping for SPI bit-bashing interface. More...
 
static struct bit_basher_operations natsemi_basher_ops
 SPI bit-bashing interface. More...
 
static struct net_device_operations natsemi_operations
 National Semiconductor network device operations. More...
 
static struct pci_device_id natsemi_nics []
 National Semiconductor PCI device IDs. More...
 
struct pci_driver natsemi_driver __pci_driver
 National Semiconductor PCI driver. More...
 

Detailed Description

National Semiconductor "MacPhyter" network card driver.

Based on the following datasheets:

http://www.ti.com/lit/ds/symlink/dp83820.pdf http://www.datasheets.org.uk/indexdl/Datasheet-03/DSA0041338.pdf

Definition in file natsemi.c.

Macro Definition Documentation

◆ DP83815_FLAGS

#define DP83815_FLAGS   ( NATSEMI_EEPROM_LITTLE_ENDIAN | NATSEMI_EEPROM_INSANE )

Flags for DP83815.

Definition at line 917 of file natsemi.c.

◆ DP83820_FLAGS

#define DP83820_FLAGS   ( NATSEMI_64BIT | NATSEMI_1000 )

Flags for DP83820.

Definition at line 920 of file natsemi.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER  )

◆ natsemi_spi_read_bit()

static int natsemi_spi_read_bit ( struct bit_basher basher,
unsigned int  bit_id 
)
static

Read input bit.

Parameters
basherBit-bashing interface
bit_idBit number
Return values
zeroInput is a logic 0
non-zeroInput is a logic 1

Definition at line 73 of file natsemi.c.

74  {
75  struct natsemi_nic *natsemi = container_of ( basher, struct natsemi_nic,
76  spibit.basher );
77  uint32_t mask = natsemi_eeprom_bits[bit_id];
78  uint32_t reg;
79 
81  reg = readl ( natsemi->regs + NATSEMI_MEAR );
83  return ( reg & mask );
84 }
struct bit_basher basher
Bit-bashing interface.
Definition: spi_bit.h:20
#define DBGLVL_IO
Definition: compiler.h:322
static unsigned int unsigned int reg
Definition: myson.h:162
#define NATSEMI_MEAR
EEPROM Access Register.
Definition: natsemi.h:104
#define DBG_ENABLE(level)
Definition: compiler.h:313
uint32_t readl(volatile uint32_t *io_addr)
Read 32-bit dword from memory-mapped device.
#define DBG_DISABLE(level)
Definition: compiler.h:312
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:35
struct spi_bit_basher spibit
SPI bit-bashing interface.
Definition: natsemi.h:289
unsigned int uint32_t
Definition: stdint.h:12
static const uint8_t natsemi_eeprom_bits[]
Pin mapping for SPI bit-bashing interface.
Definition: natsemi.c:58
void * regs
Registers.
Definition: natsemi.h:287
A National Semiconductor network card.
Definition: natsemi.h:283

References spi_bit_basher::basher, container_of, DBG_DISABLE, DBG_ENABLE, DBGLVL_IO, natsemi_eeprom_bits, NATSEMI_MEAR, readl(), reg, natsemi_nic::regs, and natsemi_nic::spibit.

◆ natsemi_spi_write_bit()

static void natsemi_spi_write_bit ( struct bit_basher basher,
unsigned int  bit_id,
unsigned long  data 
)
static

Set/clear output bit.

Parameters
basherBit-bashing interface
bit_idBit number
dataValue to write

Definition at line 93 of file natsemi.c.

94  {
95  struct natsemi_nic *natsemi = container_of ( basher, struct natsemi_nic,
96  spibit.basher );
97  uint32_t mask = natsemi_eeprom_bits[bit_id];
98  uint32_t reg;
99 
101  reg = readl ( natsemi->regs + NATSEMI_MEAR );
102  reg &= ~mask;
103  reg |= ( data & mask );
104  writel ( reg, natsemi->regs + NATSEMI_MEAR );
105  DBG_ENABLE ( DBGLVL_IO );
106 }
struct bit_basher basher
Bit-bashing interface.
Definition: spi_bit.h:20
#define DBGLVL_IO
Definition: compiler.h:322
static unsigned int unsigned int reg
Definition: myson.h:162
#define NATSEMI_MEAR
EEPROM Access Register.
Definition: natsemi.h:104
#define DBG_ENABLE(level)
Definition: compiler.h:313
uint32_t readl(volatile uint32_t *io_addr)
Read 32-bit dword from memory-mapped device.
#define DBG_DISABLE(level)
Definition: compiler.h:312
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:35
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
struct spi_bit_basher spibit
SPI bit-bashing interface.
Definition: natsemi.h:289
unsigned int uint32_t
Definition: stdint.h:12
static const uint8_t natsemi_eeprom_bits[]
Pin mapping for SPI bit-bashing interface.
Definition: natsemi.c:58
void * regs
Registers.
Definition: natsemi.h:287
uint8_t data[48]
Additional event data.
Definition: ena.h:22
A National Semiconductor network card.
Definition: natsemi.h:283

References spi_bit_basher::basher, container_of, data, DBG_DISABLE, DBG_ENABLE, DBGLVL_IO, natsemi_eeprom_bits, NATSEMI_MEAR, readl(), reg, natsemi_nic::regs, natsemi_nic::spibit, and writel().

◆ natsemi_init_eeprom()

static void natsemi_init_eeprom ( struct natsemi_nic natsemi)
static

Initialise EEPROM.

Parameters
natsemiNational Semiconductor device

Definition at line 119 of file natsemi.c.

119  {
120 
121  /* Initialise SPI bit-bashing interface */
122  natsemi->spibit.basher.op = &natsemi_basher_ops;
123  natsemi->spibit.bus.mode = SPI_MODE_THREEWIRE;
124  natsemi->spibit.endianness =
125  ( ( natsemi->flags & NATSEMI_EEPROM_LITTLE_ENDIAN ) ?
127  init_spi_bit_basher ( &natsemi->spibit );
128 
129  /* Initialise EEPROM device */
130  init_at93c06 ( &natsemi->eeprom, 16 );
131  natsemi->eeprom.bus = &natsemi->spibit.bus;
132 }
struct bit_basher basher
Bit-bashing interface.
Definition: spi_bit.h:20
static struct bit_basher_operations natsemi_basher_ops
SPI bit-bashing interface.
Definition: natsemi.c:109
struct bit_basher_operations * op
Bit-bashing operations.
Definition: bitbash.h:57
struct spi_device eeprom
EEPROM.
Definition: natsemi.h:291
unsigned int mode
SPI interface mode.
Definition: spi.h:136
void init_spi_bit_basher(struct spi_bit_basher *spibit)
Initialise SPI bit-bashing interface.
Definition: spi_bit.c:235
unsigned int flags
Flags.
Definition: natsemi.h:285
struct spi_bit_basher spibit
SPI bit-bashing interface.
Definition: natsemi.h:289
struct spi_bus bus
SPI bus.
Definition: spi_bit.h:18
#define SPI_BIT_BIG_ENDIAN
SPI bit basher treats data as big-endian.
Definition: spi_bit.h:56
EEPROM is little-endian.
Definition: natsemi.h:244
struct spi_bus * bus
SPI bus to which device is attached.
Definition: spi.h:90
#define SPI_BIT_LITTLE_ENDIAN
SPI bit basher treats data as little-endian.
Definition: spi_bit.h:59
#define SPI_MODE_THREEWIRE
Threewire-compatible mode.
Definition: spi.h:199
int endianness
Endianness of data.
Definition: spi_bit.h:29

References spi_bit_basher::basher, spi_bit_basher::bus, spi_device::bus, natsemi_nic::eeprom, spi_bit_basher::endianness, natsemi_nic::flags, init_spi_bit_basher(), spi_bus::mode, natsemi_basher_ops, NATSEMI_EEPROM_LITTLE_ENDIAN, bit_basher::op, SPI_BIT_BIG_ENDIAN, SPI_BIT_LITTLE_ENDIAN, SPI_MODE_THREEWIRE, and natsemi_nic::spibit.

Referenced by natsemi_probe().

◆ natsemi_hwaddr_sane()

static void natsemi_hwaddr_sane ( struct natsemi_nic natsemi,
const uint16_t eeprom,
uint16_t hw_addr 
)
static

Get hardware address from sane EEPROM data.

Parameters
natsemiNational Semiconductor device
eepromEEPROM data
hw_addrHardware address to fill in

Definition at line 141 of file natsemi.c.

142  {
143  int i;
144 
145  /* Copy MAC address from EEPROM data */
146  for ( i = ( ( ETH_ALEN / 2 ) - 1 ) ; i >= 0 ; i-- )
147  *(hw_addr++) = eeprom[ NATSEMI_EEPROM_MAC_SANE + i ];
148 
149  DBGC ( natsemi, "NATSEMI %p has sane EEPROM layout\n", natsemi );
150 }
#define DBGC(...)
Definition: compiler.h:505
eeprom
Definition: 3c90x.h:232
#define ETH_ALEN
Definition: if_ether.h:8
#define NATSEMI_EEPROM_MAC_SANE
Word offset of MAC address within sane EEPROM layout.
Definition: natsemi.h:114

References DBGC, ETH_ALEN, and NATSEMI_EEPROM_MAC_SANE.

Referenced by natsemi_hwaddr().

◆ natsemi_hwaddr_insane()

static void natsemi_hwaddr_insane ( struct natsemi_nic natsemi,
const uint16_t eeprom,
uint16_t hw_addr 
)
static

Get hardware address from insane EEPROM data.

Parameters
natsemiNational Semiconductor device
eepromEEPROM data
hw_addrHardware address to fill in

Definition at line 159 of file natsemi.c.

161  {
162  unsigned int i;
163  unsigned int offset;
164  uint16_t word;
165 
166  /* Copy MAC address from EEPROM data */
167  for ( i = 0 ; i < ( ETH_ALEN / 2 ) ; i++ ) {
169  word = ( ( le16_to_cpu ( eeprom[ offset ] ) >> 15 ) |
170  ( le16_to_cpu ( eeprom[ offset + 1 ] << 1 ) ) );
171  hw_addr[i] = cpu_to_le16 ( word );
172  }
173 
174  DBGC ( natsemi, "NATSEMI %p has insane EEPROM layout\n", natsemi );
175 }
unsigned short uint16_t
Definition: stdint.h:11
#define DBGC(...)
Definition: compiler.h:505
eeprom
Definition: 3c90x.h:232
static userptr_t size_t offset
Offset of the first segment within the content.
Definition: deflate.h:259
#define NATSEMI_EEPROM_MAC_INSANE
Word offset of MAC address within insane EEPROM layout.
Definition: natsemi.h:117
#define ETH_ALEN
Definition: if_ether.h:8
#define le16_to_cpu(value)
Definition: byteswap.h:112
#define cpu_to_le16(value)
Definition: byteswap.h:106
unsigned short word
Definition: smc9000.h:39

References cpu_to_le16, DBGC, ETH_ALEN, le16_to_cpu, NATSEMI_EEPROM_MAC_INSANE, and offset.

Referenced by natsemi_hwaddr().

◆ natsemi_hwaddr()

static int natsemi_hwaddr ( struct natsemi_nic natsemi,
void *  hw_addr 
)
static

Get hardware address from EEPROM.

Parameters
natsemiNational Semiconductor device
hw_addrHardware address to fill in
Return values
rcReturn status code

Definition at line 184 of file natsemi.c.

184  {
186  void ( * extract ) ( struct natsemi_nic *natsemi,
187  const uint16_t *eeprom, uint16_t *hw_addr );
188  int rc;
189 
190  /* Read EEPROM contents */
191  if ( ( rc = nvs_read ( &natsemi->eeprom.nvs, 0, buf,
192  sizeof ( buf ) ) ) != 0 ) {
193  DBGC ( natsemi, "NATSEMI %p could not read EEPROM: %s\n",
194  natsemi, strerror ( rc ) );
195  return rc;
196  }
197  DBGC2 ( natsemi, "NATSEMI %p EEPROM contents:\n", natsemi );
198  DBGC2_HDA ( natsemi, 0, buf, sizeof ( buf ) );
199 
200  /* Extract MAC address from EEPROM contents */
201  extract = ( ( natsemi->flags & NATSEMI_EEPROM_INSANE ) ?
203  extract ( natsemi, buf, hw_addr );
204 
205  return 0;
206 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
unsigned short uint16_t
Definition: stdint.h:11
#define DBGC(...)
Definition: compiler.h:505
#define NATSEMI_EEPROM_SIZE
Size of EEPROM (in bytes)
Definition: natsemi.h:111
static void natsemi_hwaddr_sane(struct natsemi_nic *natsemi, const uint16_t *eeprom, uint16_t *hw_addr)
Get hardware address from sane EEPROM data.
Definition: natsemi.c:141
struct spi_device eeprom
EEPROM.
Definition: natsemi.h:291
static void natsemi_hwaddr_insane(struct natsemi_nic *natsemi, const uint16_t *eeprom, uint16_t *hw_addr)
Get hardware address from insane EEPROM data.
Definition: natsemi.c:159
eeprom
Definition: 3c90x.h:232
unsigned int flags
Flags.
Definition: natsemi.h:285
#define DBGC2_HDA(...)
Definition: compiler.h:523
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
EEPROM layout is insane.
Definition: natsemi.h:246
struct nvs_device nvs
NVS device.
Definition: spi.h:88
#define DBGC2(...)
Definition: compiler.h:522
int nvs_read(struct nvs_device *nvs, unsigned int address, void *data, size_t len)
Read from non-volatile storage device.
Definition: nvs.c:75
A National Semiconductor network card.
Definition: natsemi.h:283

References DBGC, DBGC2, DBGC2_HDA, natsemi_nic::eeprom, natsemi_nic::flags, NATSEMI_EEPROM_INSANE, NATSEMI_EEPROM_SIZE, natsemi_hwaddr_insane(), natsemi_hwaddr_sane(), spi_device::nvs, nvs_read(), rc, and strerror().

Referenced by natsemi_probe().

◆ natsemi_soft_reset()

static int natsemi_soft_reset ( struct natsemi_nic natsemi)
static

Reset controller chip.

Parameters
natsemiNational Semiconductor device
Return values
rcReturn status code

Definition at line 221 of file natsemi.c.

221  {
222  unsigned int i;
223 
224  /* Initiate reset */
225  writel ( NATSEMI_CR_RST, natsemi->regs + NATSEMI_CR );
226 
227  /* Wait for reset to complete */
228  for ( i = 0 ; i < NATSEMI_RESET_MAX_WAIT_MS ; i++ ) {
229 
230  /* If reset is not complete, delay 1ms and retry */
231  if ( readl ( natsemi->regs + NATSEMI_CR ) & NATSEMI_CR_RST ) {
232  mdelay ( 1 );
233  continue;
234  }
235 
236  return 0;
237  }
238 
239  DBGC ( natsemi, "NATSEMI %p timed out waiting for reset\n", natsemi );
240  return -ETIMEDOUT;
241 }
uint32_t readl(volatile uint32_t *io_addr)
Read 32-bit dword from memory-mapped device.
#define DBGC(...)
Definition: compiler.h:505
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
#define NATSEMI_CR
Command Register.
Definition: natsemi.h:83
void * regs
Registers.
Definition: natsemi.h:287
void mdelay(unsigned long msecs)
Delay for a fixed number of milliseconds.
Definition: timer.c:78
#define NATSEMI_CR_RST
Reset.
Definition: natsemi.h:84
#define NATSEMI_RESET_MAX_WAIT_MS
Maximum time to wait for a reset, in milliseconds.
Definition: natsemi.h:91
#define ETIMEDOUT
Connection timed out.
Definition: errno.h:669

References DBGC, ETIMEDOUT, mdelay(), NATSEMI_CR, NATSEMI_CR_RST, NATSEMI_RESET_MAX_WAIT_MS, readl(), natsemi_nic::regs, and writel().

Referenced by natsemi_reset().

◆ natsemi_reload_config()

static int natsemi_reload_config ( struct natsemi_nic natsemi)
static

Reload configuration from EEPROM.

Parameters
natsemiNational Semiconductor device
Return values
rcReturn status code

Definition at line 249 of file natsemi.c.

249  {
250  unsigned int i;
251 
252  /* Initiate reload */
254 
255  /* Wait for reload to complete */
256  for ( i = 0 ; i < NATSEMI_EELOAD_MAX_WAIT_MS ; i++ ) {
257 
258  /* If reload is not complete, delay 1ms and retry */
259  if ( readl ( natsemi->regs + NATSEMI_PTSCR ) &
261  mdelay ( 1 );
262  continue;
263  }
264 
265  return 0;
266  }
267 
268  DBGC ( natsemi, "NATSEMI %p timed out waiting for configuration "
269  "reload\n", natsemi );
270  return -ETIMEDOUT;
271 }
uint32_t readl(volatile uint32_t *io_addr)
Read 32-bit dword from memory-mapped device.
#define DBGC(...)
Definition: compiler.h:505
#define NATSEMI_EELOAD_MAX_WAIT_MS
Maximum time to wait for a configuration reload, in milliseconds.
Definition: natsemi.h:124
#define NATSEMI_PTSCR_EELOAD_EN
Enable EEPROM load.
Definition: natsemi.h:121
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
#define NATSEMI_PTSCR
PCI Test Control Register.
Definition: natsemi.h:120
void * regs
Registers.
Definition: natsemi.h:287
void mdelay(unsigned long msecs)
Delay for a fixed number of milliseconds.
Definition: timer.c:78
#define ETIMEDOUT
Connection timed out.
Definition: errno.h:669

References DBGC, ETIMEDOUT, mdelay(), NATSEMI_EELOAD_MAX_WAIT_MS, NATSEMI_PTSCR, NATSEMI_PTSCR_EELOAD_EN, readl(), natsemi_nic::regs, and writel().

Referenced by natsemi_reset().

◆ natsemi_reset()

static int natsemi_reset ( struct natsemi_nic natsemi)
static

Reset hardware.

Parameters
natsemiNational Semiconductor device
Return values
rcReturn status code

Definition at line 279 of file natsemi.c.

279  {
280  uint32_t cfg;
281  int rc;
282 
283  /* Perform soft reset */
284  if ( ( rc = natsemi_soft_reset ( natsemi ) ) != 0 )
285  return rc;
286 
287  /* Reload configuration from EEPROM */
288  if ( ( rc = natsemi_reload_config ( natsemi ) ) != 0 )
289  return rc;
290 
291  /* Configure 64-bit operation, if applicable */
292  cfg = readl ( natsemi->regs + NATSEMI_CFG );
293  if ( natsemi->flags & NATSEMI_64BIT ) {
295  if ( ! ( cfg & NATSEMI_CFG_PCI64_DET ) )
297  }
298  writel ( cfg, natsemi->regs + NATSEMI_CFG );
299 
300  /* Invalidate link status cache to force an update */
301  natsemi->cfg = ~cfg;
302 
303  DBGC ( natsemi, "NATSEMI %p using configuration %08x\n",
304  natsemi, cfg );
305  return 0;
306 }
#define NATSEMI_CFG
Configuration and Media Status Register.
Definition: natsemi.h:94
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
Card supports 64-bit operation.
Definition: natsemi.h:248
uint32_t readl(volatile uint32_t *io_addr)
Read 32-bit dword from memory-mapped device.
#define DBGC(...)
Definition: compiler.h:505
static int natsemi_reload_config(struct natsemi_nic *natsemi)
Reload configuration from EEPROM.
Definition: natsemi.c:249
uint32_t cfg
Link status (cache)
Definition: natsemi.h:301
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
unsigned int flags
Flags.
Definition: natsemi.h:285
unsigned int uint32_t
Definition: stdint.h:12
void * regs
Registers.
Definition: natsemi.h:287
Definition: sis900.h:23
static int natsemi_soft_reset(struct natsemi_nic *natsemi)
Reset controller chip.
Definition: natsemi.c:221
#define NATSEMI_CFG_EXTSTS_EN
Extended status enable.
Definition: natsemi.h:101
#define NATSEMI_CFG_PCI64_DET
PCI 64-bit bus detected.
Definition: natsemi.h:98
#define NATSEMI_CFG_M64ADDR
64-bit address enable
Definition: natsemi.h:100
#define NATSEMI_CFG_DATA64_EN
64-bit data enable
Definition: natsemi.h:99

References cfg, natsemi_nic::cfg, DBGC, natsemi_nic::flags, NATSEMI_64BIT, NATSEMI_CFG, NATSEMI_CFG_DATA64_EN, NATSEMI_CFG_EXTSTS_EN, NATSEMI_CFG_M64ADDR, NATSEMI_CFG_PCI64_DET, natsemi_reload_config(), natsemi_soft_reset(), rc, readl(), natsemi_nic::regs, and writel().

Referenced by natsemi_probe(), and natsemi_remove().

◆ natsemi_check_link()

static void natsemi_check_link ( struct net_device netdev)
static

Check link state.

Parameters
netdevNetwork device

Definition at line 320 of file natsemi.c.

320  {
321  struct natsemi_nic *natsemi = netdev->priv;
322  uint32_t cfg;
323 
324  /* Read link status */
325  cfg = readl ( natsemi->regs + NATSEMI_CFG );
326 
327  /* Do nothing unless link status has changed */
328  if ( cfg == natsemi->cfg )
329  return;
330 
331  /* Set gigabit mode (if applicable) */
332  if ( natsemi->flags & NATSEMI_1000 ) {
334  if ( ! ( cfg & NATSEMI_CFG_SPDSTS1 ) )
336  writel ( cfg, natsemi->regs + NATSEMI_CFG );
337  }
338 
339  /* Update link status */
340  natsemi->cfg = cfg;
341  DBGC ( natsemi, "NATSEMI %p link status is %08x\n", natsemi, cfg );
342 
343  /* Update network device */
344  if ( cfg & NATSEMI_CFG_LNKSTS ) {
346  } else {
348  }
349 }
#define NATSEMI_CFG
Configuration and Media Status Register.
Definition: natsemi.h:94
#define NATSEMI_CFG_MODE_1000
1000 Mb/s mode control
Definition: natsemi.h:97
uint32_t readl(volatile uint32_t *io_addr)
Read 32-bit dword from memory-mapped device.
#define DBGC(...)
Definition: compiler.h:505
#define NATSEMI_CFG_SPDSTS1
Speed status bit 1.
Definition: natsemi.h:96
void netdev_link_down(struct net_device *netdev)
Mark network device as having link down.
Definition: netdevice.c:230
uint32_t cfg
Link status (cache)
Definition: natsemi.h:301
void * priv
Driver private data.
Definition: netdevice.h:431
static void netdev_link_up(struct net_device *netdev)
Mark network device as having link up.
Definition: netdevice.h:774
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
static struct net_device * netdev
Definition: gdbudp.c:52
unsigned int flags
Flags.
Definition: natsemi.h:285
unsigned int uint32_t
Definition: stdint.h:12
Card supports 1000Mbps link.
Definition: natsemi.h:250
void * regs
Registers.
Definition: natsemi.h:287
Definition: sis900.h:23
#define NATSEMI_CFG_LNKSTS
Link status.
Definition: natsemi.h:95
A National Semiconductor network card.
Definition: natsemi.h:283

References cfg, natsemi_nic::cfg, DBGC, natsemi_nic::flags, NATSEMI_1000, NATSEMI_CFG, NATSEMI_CFG_LNKSTS, NATSEMI_CFG_MODE_1000, NATSEMI_CFG_SPDSTS1, netdev, netdev_link_down(), netdev_link_up(), net_device::priv, readl(), natsemi_nic::regs, and writel().

Referenced by natsemi_open(), natsemi_poll(), and natsemi_probe().

◆ natsemi_pmatch()

static void natsemi_pmatch ( struct natsemi_nic natsemi,
const void *  mac 
)
static

Set perfect match filter address.

Parameters
natsemiNational Semiconductor device
macMAC address

Definition at line 364 of file natsemi.c.

364  {
365  const uint16_t *pmatch = mac;
366  uint32_t rfcr;
367  unsigned int rfaddr;
368  unsigned int i;
369 
370  for ( i = 0 ; i < ETH_ALEN ; i += sizeof ( *pmatch ) ) {
371 
372  /* Select receive filter register address */
373  rfaddr = ( NATSEMI_RFADDR_PMATCH_BASE + i );
374  rfcr = readl ( natsemi->regs + NATSEMI_RFCR );
376  rfcr |= NATSEMI_RFCR_RFADDR ( rfaddr );
377  writel ( rfcr, natsemi->regs + NATSEMI_RFCR );
378 
379  /* Write receive filter data */
380  writel ( ( le16_to_cpu ( *(pmatch++) ) | NATSEMI_RFDR_BMASK ),
381  natsemi->regs + NATSEMI_RFDR );
382  }
383 }
unsigned short uint16_t
Definition: stdint.h:11
uint32_t readl(volatile uint32_t *io_addr)
Read 32-bit dword from memory-mapped device.
#define NATSEMI_RFCR
Receive Filter/Match Control Register.
Definition: natsemi.h:225
#define NATSEMI_RFDR_BMASK
Byte mask.
Definition: natsemi.h:238
uint8_t mac[ETH_ALEN]
MAC address.
Definition: ena.h:24
#define NATSEMI_RFDR
Receive Filter/Match Data Register.
Definition: natsemi.h:237
Definition: sis900.h:36
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
#define NATSEMI_RFCR_RFADDR_MASK
Definition: natsemi.h:231
#define ETH_ALEN
Definition: if_ether.h:8
#define le16_to_cpu(value)
Definition: byteswap.h:112
unsigned int uint32_t
Definition: stdint.h:12
void * regs
Registers.
Definition: natsemi.h:287
#define NATSEMI_RFADDR_PMATCH_BASE
Perfect match filter address base.
Definition: natsemi.h:234
#define NATSEMI_RFCR_RFADDR(addr)
Extended address.
Definition: natsemi.h:230

References ETH_ALEN, le16_to_cpu, mac, NATSEMI_RFADDR_PMATCH_BASE, NATSEMI_RFCR, NATSEMI_RFCR_RFADDR, NATSEMI_RFCR_RFADDR_MASK, NATSEMI_RFDR, NATSEMI_RFDR_BMASK, readl(), natsemi_nic::regs, rfcr, and writel().

Referenced by natsemi_open().

◆ natsemi_create_ring()

static int natsemi_create_ring ( struct natsemi_nic natsemi,
struct natsemi_ring ring 
)
static

Create descriptor ring.

Parameters
natsemiNational Semiconductor device
ringDescriptor ring
Return values
rcReturn status code

Definition at line 392 of file natsemi.c.

393  {
394  size_t len = ( ring->count * sizeof ( ring->desc[0] ) );
395  union natsemi_descriptor *desc;
396  union natsemi_descriptor *linked_desc;
399  size_t offset;
400  unsigned int i;
401  int rc;
402 
403  /* Calculate descriptor offset */
404  offset = ( ( natsemi->flags & NATSEMI_64BIT ) ? 0 :
405  offsetof ( typeof ( desc[i].d32pad ), d32 ) );
406 
407  /* Allocate descriptor ring. Align ring on its own size to
408  * ensure that it can't possibly cross the boundary of 32-bit
409  * address space.
410  */
411  ring->desc = malloc_phys ( len, len );
412  if ( ! ring->desc ) {
413  rc = -ENOMEM;
414  goto err_alloc;
415  }
416  address = ( virt_to_bus ( ring->desc ) + offset );
417 
418  /* Check address is usable by card */
419  if ( ! natsemi_address_ok ( natsemi, address ) ) {
420  DBGC ( natsemi, "NATSEMI %p cannot support 64-bit ring "
421  "address\n", natsemi );
422  rc = -ENOTSUP;
423  goto err_64bit;
424  }
425 
426  /* Initialise descriptor ring */
427  memset ( ring->desc, 0, len );
428  for ( i = 0 ; i < ring->count ; i++ ) {
429  linked_desc = &ring->desc [ ( i + 1 ) % ring->count ];
430  link = ( virt_to_bus ( linked_desc ) + offset );
431  if ( natsemi->flags & NATSEMI_64BIT ) {
432  ring->desc[i].d64.link = cpu_to_le64 ( link );
433  } else {
434  ring->desc[i].d32pad.d32.link = cpu_to_le32 ( link );
435  }
436  }
437 
438  /* Program ring address */
439  writel ( ( address & 0xffffffffUL ), natsemi->regs + ring->reg );
440  if ( natsemi->flags & NATSEMI_64BIT ) {
441  if ( sizeof ( physaddr_t ) > sizeof ( uint32_t ) ) {
442  writel ( ( ( ( uint64_t ) address ) >> 32 ),
443  natsemi->regs + ring->reg + 4 );
444  } else {
445  writel ( 0, natsemi->regs + ring->reg + 4 );
446  }
447  }
448 
449  DBGC ( natsemi, "NATSEMI %p ring %02x is at [%08llx,%08llx)\n",
450  natsemi, ring->reg,
451  ( ( unsigned long long ) virt_to_bus ( ring->desc ) ),
452  ( ( unsigned long long ) virt_to_bus ( ring->desc ) + len ) );
453 
454  return 0;
455 
456  err_64bit:
457  free_phys ( ring->desc, len );
458  ring->desc = NULL;
459  err_alloc:
460  return rc;
461 }
struct natsemi_descriptor_32 d32
Descriptor.
Definition: natsemi.h:22
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
Card supports 64-bit operation.
Definition: natsemi.h:248
uint64_t address
Base address.
Definition: ena.h:24
uint64_t desc
Microcode descriptor list physical address.
Definition: ucode.h:12
#define DBGC(...)
Definition: compiler.h:505
unsigned long long uint64_t
Definition: stdint.h:13
static void *__malloc malloc_phys(size_t size, size_t phys_align)
Allocate memory with specified physical alignment.
Definition: malloc.h:62
#define cpu_to_le64(value)
Definition: byteswap.h:108
#define offsetof(type, field)
Get offset of a field within a structure.
Definition: stddef.h:24
#define ENOTSUP
Operation not supported.
Definition: errno.h:589
A packet descriptor.
Definition: natsemi.h:48
#define ENOMEM
Not enough space.
Definition: errno.h:534
union natsemi_descriptor * desc
Descriptors.
Definition: natsemi.h:256
static __always_inline unsigned long virt_to_bus(volatile const void *addr)
Convert virtual address to a bus address.
Definition: io.h:183
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
unsigned int count
Number of descriptors.
Definition: natsemi.h:263
static userptr_t size_t offset
Offset of the first segment within the content.
Definition: deflate.h:259
uint64_t link
Link to next descriptor.
Definition: natsemi.h:32
u32 link
Link to next descriptor.
Definition: ar9003_mac.h:68
unsigned int flags
Flags.
Definition: natsemi.h:285
unsigned int reg
Descriptor start address register.
Definition: natsemi.h:265
uint32_t link
Link to next descriptor.
Definition: natsemi.h:22
#define cpu_to_le32(value)
Definition: byteswap.h:107
struct natsemi_descriptor_64 d64
64-bit descriptor
Definition: natsemi.h:59
struct natsemi_descriptor_32 d32
Descriptor.
Definition: natsemi.h:65
unsigned int uint32_t
Definition: stdint.h:12
void * regs
Registers.
Definition: natsemi.h:287
unsigned long physaddr_t
Definition: stdint.h:20
uint32_t len
Length.
Definition: ena.h:14
static void free_phys(void *ptr, size_t size)
Free memory allocated with malloc_phys()
Definition: malloc.h:77
typeof(acpi_finder=acpi_find)
ACPI table finder.
Definition: acpi.c:45
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
void * memset(void *dest, int character, size_t len) __nonnull

References address, natsemi_ring::count, cpu_to_le32, cpu_to_le64, d32, natsemi_descriptor::d32, natsemi_descriptor::d64, DBGC, desc, natsemi_ring::desc, ENOMEM, ENOTSUP, natsemi_nic::flags, free_phys(), len, natsemi_descriptor_32::link, natsemi_descriptor_64::link, link, malloc_phys(), memset(), NATSEMI_64BIT, NULL, offset, offsetof, rc, natsemi_ring::reg, natsemi_nic::regs, typeof(), virt_to_bus(), and writel().

Referenced by natsemi_open().

◆ natsemi_destroy_ring()

static void natsemi_destroy_ring ( struct natsemi_nic natsemi,
struct natsemi_ring ring 
)
static

Destroy descriptor ring.

Parameters
natsemiNational Semiconductor device
ringDescriptor ring

Definition at line 469 of file natsemi.c.

470  {
471  size_t len = ( ring->count * sizeof ( ring->desc[0] ) );
472 
473  /* Clear ring address */
474  writel ( 0, natsemi->regs + ring->reg );
475  if ( natsemi->flags & NATSEMI_64BIT )
476  writel ( 0, natsemi->regs + ring->reg + 4 );
477 
478  /* Free descriptor ring */
479  free_phys ( ring->desc, len );
480  ring->desc = NULL;
481  ring->prod = 0;
482  ring->cons = 0;
483 }
unsigned int prod
Producer index.
Definition: natsemi.h:258
Card supports 64-bit operation.
Definition: natsemi.h:248
unsigned int cons
Consumer index.
Definition: natsemi.h:260
union natsemi_descriptor * desc
Descriptors.
Definition: natsemi.h:256
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
unsigned int count
Number of descriptors.
Definition: natsemi.h:263
unsigned int flags
Flags.
Definition: natsemi.h:285
unsigned int reg
Descriptor start address register.
Definition: natsemi.h:265
void * regs
Registers.
Definition: natsemi.h:287
uint32_t len
Length.
Definition: ena.h:14
static void free_phys(void *ptr, size_t size)
Free memory allocated with malloc_phys()
Definition: malloc.h:77
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321

References natsemi_ring::cons, natsemi_ring::count, natsemi_ring::desc, natsemi_nic::flags, free_phys(), len, NATSEMI_64BIT, NULL, natsemi_ring::prod, natsemi_ring::reg, natsemi_nic::regs, and writel().

Referenced by natsemi_close(), and natsemi_open().

◆ natsemi_refill_rx()

static void natsemi_refill_rx ( struct net_device netdev)
static

Refill receive descriptor ring.

Parameters
netdevNetwork device

Definition at line 490 of file natsemi.c.

490  {
491  struct natsemi_nic *natsemi = netdev->priv;
492  union natsemi_descriptor *rx;
493  struct io_buffer *iobuf;
494  unsigned int rx_idx;
496 
497  while ( ( natsemi->rx.prod - natsemi->rx.cons ) < NATSEMI_NUM_RX_DESC ){
498 
499  /* Allocate I/O buffer */
500  iobuf = alloc_iob ( NATSEMI_RX_MAX_LEN );
501  if ( ! iobuf ) {
502  /* Wait for next refill */
503  return;
504  }
505 
506  /* Check address is usable by card */
507  address = virt_to_bus ( iobuf->data );
508  if ( ! natsemi_address_ok ( natsemi, address ) ) {
509  DBGC ( natsemi, "NATSEMI %p cannot support 64-bit RX "
510  "buffer address\n", natsemi );
511  netdev_rx_err ( netdev, iobuf, -ENOTSUP );
512  return;
513  }
514 
515  /* Get next receive descriptor */
516  rx_idx = ( natsemi->rx.prod++ % NATSEMI_NUM_RX_DESC );
517  rx = &natsemi->rx.desc[rx_idx];
518 
519  /* Populate receive descriptor */
520  if ( natsemi->flags & NATSEMI_64BIT ) {
521  rx->d64.bufptr = cpu_to_le64 ( address );
522  } else {
523  rx->d32pad.d32.bufptr = cpu_to_le32 ( address );
524  }
525  wmb();
526  rx->common.cmdsts = cpu_to_le32 ( NATSEMI_DESC_INTR |
528  wmb();
529 
530  /* Record I/O buffer */
531  assert ( natsemi->rx_iobuf[rx_idx] == NULL );
532  natsemi->rx_iobuf[rx_idx] = iobuf;
533 
534  /* Notify card that there are descriptors available */
535  writel ( NATSEMI_CR_RXE, natsemi->regs + NATSEMI_CR );
536 
537  DBGC2 ( natsemi, "NATSEMI %p RX %d is [%llx,%llx)\n", natsemi,
538  rx_idx, ( ( unsigned long long ) address ),
539  ( ( unsigned long long ) address + NATSEMI_RX_MAX_LEN));
540  }
541 }
unsigned int prod
Producer index.
Definition: natsemi.h:258
struct natsemi_ring rx
Receive descriptor ring.
Definition: natsemi.h:296
wmb()
void netdev_rx_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Discard received packet.
Definition: netdevice.c:586
Card supports 64-bit operation.
Definition: natsemi.h:248
unsigned int cons
Consumer index.
Definition: natsemi.h:260
uint64_t address
Base address.
Definition: ena.h:24
#define DBGC(...)
Definition: compiler.h:505
#define cpu_to_le64(value)
Definition: byteswap.h:108
struct io_buffer * alloc_iob(size_t len)
Allocate I/O buffer.
Definition: iobuf.c:129
#define ENOTSUP
Operation not supported.
Definition: errno.h:589
A packet descriptor.
Definition: natsemi.h:48
union natsemi_descriptor * desc
Descriptors.
Definition: natsemi.h:256
static __always_inline unsigned long virt_to_bus(volatile const void *addr)
Convert virtual address to a bus address.
Definition: io.h:183
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
void * priv
Driver private data.
Definition: netdevice.h:431
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
static struct net_device * netdev
Definition: gdbudp.c:52
unsigned int flags
Flags.
Definition: natsemi.h:285
#define cpu_to_le32(value)
Definition: byteswap.h:107
#define NATSEMI_CR
Command Register.
Definition: natsemi.h:83
void * regs
Registers.
Definition: natsemi.h:287
unsigned long physaddr_t
Definition: stdint.h:20
#define NATSEMI_RX_MAX_LEN
Receive buffer length.
Definition: natsemi.h:195
#define DBGC2(...)
Definition: compiler.h:522
void * data
Start of data.
Definition: iobuf.h:48
u8 rx[WPA_TKIP_MIC_KEY_LEN]
MIC key for packets from the AP.
Definition: wpa.h:234
#define NATSEMI_CR_RXE
Receiver enable.
Definition: natsemi.h:87
Request descriptor interrupt.
Definition: natsemi.h:77
struct io_buffer * rx_iobuf[NATSEMI_NUM_RX_DESC]
Receive I/O buffers.
Definition: natsemi.h:298
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
A National Semiconductor network card.
Definition: natsemi.h:283
#define NATSEMI_NUM_RX_DESC
Number of receive descriptors.
Definition: natsemi.h:192
A persistent I/O buffer.
Definition: iobuf.h:33

References address, alloc_iob(), assert(), natsemi_ring::cons, cpu_to_le32, cpu_to_le64, io_buffer::data, DBGC, DBGC2, natsemi_ring::desc, ENOTSUP, natsemi_nic::flags, NATSEMI_64BIT, NATSEMI_CR, NATSEMI_CR_RXE, NATSEMI_DESC_INTR, NATSEMI_NUM_RX_DESC, NATSEMI_RX_MAX_LEN, netdev, netdev_rx_err(), NULL, net_device::priv, natsemi_ring::prod, natsemi_nic::regs, rx, natsemi_nic::rx, natsemi_nic::rx_iobuf, virt_to_bus(), wmb(), and writel().

Referenced by natsemi_open(), and natsemi_poll().

◆ natsemi_open()

static int natsemi_open ( struct net_device netdev)
static

Open network device.

Parameters
netdevNetwork device
Return values
rcReturn status code

Definition at line 549 of file natsemi.c.

549  {
550  struct natsemi_nic *natsemi = netdev->priv;
551  int rc;
552 
553  /* Set MAC address */
554  natsemi_pmatch ( natsemi, netdev->ll_addr );
555 
556  /* Create transmit descriptor ring */
557  if ( ( rc = natsemi_create_ring ( natsemi, &natsemi->tx ) ) != 0 )
558  goto err_create_tx;
559 
560  /* Set transmit configuration */
564  ( natsemi->regs + ( ( natsemi->flags & NATSEMI_64BIT ) ?
566 
567  /* Create receive descriptor ring */
568  if ( ( rc = natsemi_create_ring ( natsemi, &natsemi->rx ) ) != 0 )
569  goto err_create_rx;
570 
571  /* Set receive configuration */
574  ( natsemi->regs + ( ( natsemi->flags & NATSEMI_64BIT ) ?
576 
577  /* Set receive filter configuration */
579  NATSEMI_RFCR_AAU ), natsemi->regs + NATSEMI_RFCR );
580 
581  /* Fill receive ring */
583 
584  /* Unmask transmit and receive interrupts. (Interrupts will
585  * not be generated unless enabled via the IER.)
586  */
588  natsemi->regs + NATSEMI_IMR );
589 
590  /* Update link state */
592 
593  return 0;
594 
595  natsemi_destroy_ring ( natsemi, &natsemi->rx );
596  err_create_rx:
597  natsemi_destroy_ring ( natsemi, &natsemi->tx );
598  err_create_tx:
599  return rc;
600 }
struct natsemi_ring rx
Receive descriptor ring.
Definition: natsemi.h:296
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
Card supports 64-bit operation.
Definition: natsemi.h:248
struct natsemi_ring tx
Transmit descriptor ring.
Definition: natsemi.h:294
#define NATSEMI_TXCFG_MXDMA_DEFAULT
Max DMA burst size (encoded value)
Definition: natsemi.h:165
#define NATSEMI_IMR
Interrupt Mask Register.
Definition: natsemi.h:132
#define NATSEMI_RXCFG_ARP
Accept runt packets.
Definition: natsemi.h:202
#define NATSEMI_TXCFG_ATP
Automatic padding.
Definition: natsemi.h:154
static int natsemi_create_ring(struct natsemi_nic *natsemi, struct natsemi_ring *ring)
Create descriptor ring.
Definition: natsemi.c:392
#define NATSEMI_RFCR
Receive Filter/Match Control Register.
Definition: natsemi.h:225
#define NATSEMI_TXCFG_FLTH_DEFAULT
Fill threshold (in units of 32 bytes)
Definition: natsemi.h:172
#define NATSEMI_RXCFG_DRTH_DEFAULT
Drain threshold (in units of 8 bytes)
Definition: natsemi.h:222
#define NATSEMI_TXCFG_DRTH_DEFAULT
Drain threshold (in units of 32 bytes)
Definition: natsemi.h:183
#define NATSEMI_IRQ_TXDESC
TX descriptor.
Definition: natsemi.h:128
#define NATSEMI_TXCFG_64
Transmit configuration register (64-bit)
Definition: natsemi.h:151
#define NATSEMI_TXCFG_CSI
Carrier sense ignore.
Definition: natsemi.h:152
#define NATSEMI_RFCR_RFEN
RX filter enable.
Definition: natsemi.h:226
void * priv
Driver private data.
Definition: netdevice.h:431
#define NATSEMI_RXCFG_32
Receive configuration register (32-bit)
Definition: natsemi.h:198
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
static struct net_device * netdev
Definition: gdbudp.c:52
unsigned int flags
Flags.
Definition: natsemi.h:285
static void natsemi_refill_rx(struct net_device *netdev)
Refill receive descriptor ring.
Definition: natsemi.c:490
#define NATSEMI_RFCR_AAU
Accept all unicast.
Definition: natsemi.h:229
#define NATSEMI_RXCFG_ATX
Accept transmit packets.
Definition: natsemi.h:203
static void natsemi_check_link(struct net_device *netdev)
Check link state.
Definition: natsemi.c:320
#define NATSEMI_TXCFG_ECRETRY
Excess collision retry.
Definition: natsemi.h:155
static void natsemi_destroy_ring(struct natsemi_nic *natsemi, struct natsemi_ring *ring)
Destroy descriptor ring.
Definition: natsemi.c:469
#define NATSEMI_RXCFG_ALP
Accept long packets.
Definition: natsemi.h:204
void * regs
Registers.
Definition: natsemi.h:287
#define NATSEMI_RFCR_AAB
Accept all broadcast.
Definition: natsemi.h:227
#define NATSEMI_TXCFG_HBI
Heartbeat ignore.
Definition: natsemi.h:153
static void natsemi_pmatch(struct natsemi_nic *natsemi, const void *mac)
Set perfect match filter address.
Definition: natsemi.c:364
#define NATSEMI_TXCFG_32
Transmit configuration register (32-bit)
Definition: natsemi.h:148
#define NATSEMI_RXCFG_64
Receive configuration register (64-bit)
Definition: natsemi.h:201
#define NATSEMI_IRQ_RXDESC
RX descriptor.
Definition: natsemi.h:129
#define NATSEMI_RXCFG_MXDMA_DEFAULT
Max DMA burst size (encoded value)
Definition: natsemi.h:213
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
Definition: netdevice.h:387
#define NATSEMI_RFCR_AAM
Accept all multicast.
Definition: natsemi.h:228
A National Semiconductor network card.
Definition: natsemi.h:283

References natsemi_nic::flags, net_device::ll_addr, NATSEMI_64BIT, natsemi_check_link(), natsemi_create_ring(), natsemi_destroy_ring(), NATSEMI_IMR, NATSEMI_IRQ_RXDESC, NATSEMI_IRQ_TXDESC, natsemi_pmatch(), natsemi_refill_rx(), NATSEMI_RFCR, NATSEMI_RFCR_AAB, NATSEMI_RFCR_AAM, NATSEMI_RFCR_AAU, NATSEMI_RFCR_RFEN, NATSEMI_RXCFG_32, NATSEMI_RXCFG_64, NATSEMI_RXCFG_ALP, NATSEMI_RXCFG_ARP, NATSEMI_RXCFG_ATX, NATSEMI_RXCFG_DRTH_DEFAULT, NATSEMI_RXCFG_MXDMA_DEFAULT, NATSEMI_TXCFG_32, NATSEMI_TXCFG_64, NATSEMI_TXCFG_ATP, NATSEMI_TXCFG_CSI, NATSEMI_TXCFG_DRTH_DEFAULT, NATSEMI_TXCFG_ECRETRY, NATSEMI_TXCFG_FLTH_DEFAULT, NATSEMI_TXCFG_HBI, NATSEMI_TXCFG_MXDMA_DEFAULT, netdev, net_device::priv, rc, natsemi_nic::regs, natsemi_nic::rx, natsemi_nic::tx, and writel().

◆ natsemi_close()

static void natsemi_close ( struct net_device netdev)
static

Close network device.

Parameters
netdevNetwork device

Definition at line 607 of file natsemi.c.

607  {
608  struct natsemi_nic *natsemi = netdev->priv;
609  unsigned int i;
610 
611  /* Mask transmit and receive interrupts */
612  writel ( 0, natsemi->regs + NATSEMI_IMR );
613 
614  /* Reset and disable transmitter and receiver */
616  natsemi->regs + NATSEMI_CR );
617 
618  /* Discard any unused receive buffers */
619  for ( i = 0 ; i < NATSEMI_NUM_RX_DESC ; i++ ) {
620  if ( natsemi->rx_iobuf[i] )
621  free_iob ( natsemi->rx_iobuf[i] );
622  natsemi->rx_iobuf[i] = NULL;
623  }
624 
625  /* Destroy receive descriptor ring */
626  natsemi_destroy_ring ( natsemi, &natsemi->rx );
627 
628  /* Destroy transmit descriptor ring */
629  natsemi_destroy_ring ( natsemi, &natsemi->tx );
630 }
struct natsemi_ring rx
Receive descriptor ring.
Definition: natsemi.h:296
struct natsemi_ring tx
Transmit descriptor ring.
Definition: natsemi.h:294
#define NATSEMI_IMR
Interrupt Mask Register.
Definition: natsemi.h:132
void free_iob(struct io_buffer *iobuf)
Free I/O buffer.
Definition: iobuf.c:146
#define NATSEMI_CR_RXR
Receiver reset.
Definition: natsemi.h:85
void * priv
Driver private data.
Definition: netdevice.h:431
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
static struct net_device * netdev
Definition: gdbudp.c:52
#define NATSEMI_CR_TXR
Transmit reset.
Definition: natsemi.h:86
#define NATSEMI_CR
Command Register.
Definition: natsemi.h:83
static void natsemi_destroy_ring(struct natsemi_nic *natsemi, struct natsemi_ring *ring)
Destroy descriptor ring.
Definition: natsemi.c:469
void * regs
Registers.
Definition: natsemi.h:287
struct io_buffer * rx_iobuf[NATSEMI_NUM_RX_DESC]
Receive I/O buffers.
Definition: natsemi.h:298
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
A National Semiconductor network card.
Definition: natsemi.h:283
#define NATSEMI_NUM_RX_DESC
Number of receive descriptors.
Definition: natsemi.h:192

References free_iob(), NATSEMI_CR, NATSEMI_CR_RXR, NATSEMI_CR_TXR, natsemi_destroy_ring(), NATSEMI_IMR, NATSEMI_NUM_RX_DESC, netdev, NULL, net_device::priv, natsemi_nic::regs, natsemi_nic::rx, natsemi_nic::rx_iobuf, natsemi_nic::tx, and writel().

◆ natsemi_transmit()

static int natsemi_transmit ( struct net_device netdev,
struct io_buffer iobuf 
)
static

Transmit packet.

Parameters
netdevNetwork device
iobufI/O buffer
Return values
rcReturn status code

Definition at line 639 of file natsemi.c.

640  {
641  struct natsemi_nic *natsemi = netdev->priv;
642  union natsemi_descriptor *tx;
643  unsigned int tx_idx;
645 
646  /* Check address is usable by card */
647  address = virt_to_bus ( iobuf->data );
648  if ( ! natsemi_address_ok ( natsemi, address ) ) {
649  DBGC ( natsemi, "NATSEMI %p cannot support 64-bit TX buffer "
650  "address\n", natsemi );
651  return -ENOTSUP;
652  }
653 
654  /* Get next transmit descriptor */
655  if ( ( natsemi->tx.prod - natsemi->tx.cons ) >= NATSEMI_NUM_TX_DESC ) {
656  DBGC ( natsemi, "NATSEMI %p out of transmit descriptors\n",
657  natsemi );
658  return -ENOBUFS;
659  }
660  tx_idx = ( natsemi->tx.prod++ % NATSEMI_NUM_TX_DESC );
661  tx = &natsemi->tx.desc[tx_idx];
662 
663  /* Populate transmit descriptor */
664  if ( natsemi->flags & NATSEMI_64BIT ) {
665  tx->d64.bufptr = cpu_to_le64 ( address );
666  } else {
667  tx->d32pad.d32.bufptr = cpu_to_le32 ( address );
668  }
669  wmb();
670  tx->common.cmdsts = cpu_to_le32 ( NATSEMI_DESC_OWN | NATSEMI_DESC_INTR |
671  iob_len ( iobuf ) );
672  wmb();
673 
674  /* Notify card that there are packets ready to transmit */
675  writel ( NATSEMI_CR_TXE, natsemi->regs + NATSEMI_CR );
676 
677  DBGC2 ( natsemi, "NATSEMI %p TX %d is [%llx,%llx)\n", natsemi, tx_idx,
678  ( ( unsigned long long ) address ),
679  ( ( unsigned long long ) address + iob_len ( iobuf ) ) );
680 
681  return 0;
682 }
unsigned int prod
Producer index.
Definition: natsemi.h:258
#define NATSEMI_CR_TXE
Transmit enable.
Definition: natsemi.h:88
wmb()
Card supports 64-bit operation.
Definition: natsemi.h:248
struct natsemi_ring tx
Transmit descriptor ring.
Definition: natsemi.h:294
unsigned int cons
Consumer index.
Definition: natsemi.h:260
uint64_t address
Base address.
Definition: ena.h:24
#define DBGC(...)
Definition: compiler.h:505
#define NATSEMI_NUM_TX_DESC
Number of transmit descriptors.
Definition: natsemi.h:145
#define cpu_to_le64(value)
Definition: byteswap.h:108
#define ENOTSUP
Operation not supported.
Definition: errno.h:589
A packet descriptor.
Definition: natsemi.h:48
union natsemi_descriptor * desc
Descriptors.
Definition: natsemi.h:256
static __always_inline unsigned long virt_to_bus(volatile const void *addr)
Convert virtual address to a bus address.
Definition: io.h:183
void * priv
Driver private data.
Definition: netdevice.h:431
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
static struct net_device * netdev
Definition: gdbudp.c:52
unsigned int flags
Flags.
Definition: natsemi.h:285
#define cpu_to_le32(value)
Definition: byteswap.h:107
#define NATSEMI_CR
Command Register.
Definition: natsemi.h:83
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition: iobuf.h:155
void * regs
Registers.
Definition: natsemi.h:287
unsigned long physaddr_t
Definition: stdint.h:20
Descriptor is owned by NIC.
Definition: natsemi.h:75
#define ENOBUFS
No buffer space available.
Definition: errno.h:498
#define DBGC2(...)
Definition: compiler.h:522
void * data
Start of data.
Definition: iobuf.h:48
Request descriptor interrupt.
Definition: natsemi.h:77
A National Semiconductor network card.
Definition: natsemi.h:283
u8 tx[WPA_TKIP_MIC_KEY_LEN]
MIC key for packets to the AP.
Definition: wpa.h:237

References address, natsemi_ring::cons, cpu_to_le32, cpu_to_le64, io_buffer::data, DBGC, DBGC2, natsemi_ring::desc, ENOBUFS, ENOTSUP, natsemi_nic::flags, iob_len(), NATSEMI_64BIT, NATSEMI_CR, NATSEMI_CR_TXE, NATSEMI_DESC_INTR, NATSEMI_DESC_OWN, NATSEMI_NUM_TX_DESC, netdev, net_device::priv, natsemi_ring::prod, natsemi_nic::regs, tx, natsemi_nic::tx, virt_to_bus(), wmb(), and writel().

◆ natsemi_poll_tx()

static void natsemi_poll_tx ( struct net_device netdev)
static

Poll for completed packets.

Parameters
netdevNetwork device

Definition at line 689 of file natsemi.c.

689  {
690  struct natsemi_nic *natsemi = netdev->priv;
691  union natsemi_descriptor *tx;
692  unsigned int tx_idx;
693 
694  /* Check for completed packets */
695  while ( natsemi->tx.cons != natsemi->tx.prod ) {
696 
697  /* Get next transmit descriptor */
698  tx_idx = ( natsemi->tx.cons % NATSEMI_NUM_TX_DESC );
699  tx = &natsemi->tx.desc[tx_idx];
700 
701  /* Stop if descriptor is still in use */
702  if ( tx->common.cmdsts & cpu_to_le32 ( NATSEMI_DESC_OWN ) )
703  return;
704 
705  /* Complete TX descriptor */
706  if ( tx->common.cmdsts & cpu_to_le32 ( NATSEMI_DESC_OK ) ) {
707  DBGC2 ( natsemi, "NATSEMI %p TX %d complete\n",
708  natsemi, tx_idx );
710  } else {
711  DBGC ( natsemi, "NATSEMI %p TX %d completion error "
712  "(%08x)\n", natsemi, tx_idx,
713  le32_to_cpu ( tx->common.cmdsts ) );
715  }
716  natsemi->tx.cons++;
717  }
718 }
unsigned int prod
Producer index.
Definition: natsemi.h:258
struct natsemi_ring tx
Transmit descriptor ring.
Definition: natsemi.h:294
Packet OK.
Definition: natsemi.h:79
#define le32_to_cpu(value)
Definition: byteswap.h:113
unsigned int cons
Consumer index.
Definition: natsemi.h:260
static void netdev_tx_complete_next(struct net_device *netdev)
Complete network transmission.
Definition: netdevice.h:764
#define DBGC(...)
Definition: compiler.h:505
#define NATSEMI_NUM_TX_DESC
Number of transmit descriptors.
Definition: natsemi.h:145
void netdev_tx_complete_next_err(struct net_device *netdev, int rc)
Complete network transmission.
Definition: netdevice.c:509
A packet descriptor.
Definition: natsemi.h:48
union natsemi_descriptor * desc
Descriptors.
Definition: natsemi.h:256
void * priv
Driver private data.
Definition: netdevice.h:431
static struct net_device * netdev
Definition: gdbudp.c:52
#define cpu_to_le32(value)
Definition: byteswap.h:107
Descriptor is owned by NIC.
Definition: natsemi.h:75
#define DBGC2(...)
Definition: compiler.h:522
#define EIO
Input/output error.
Definition: errno.h:433
A National Semiconductor network card.
Definition: natsemi.h:283
u8 tx[WPA_TKIP_MIC_KEY_LEN]
MIC key for packets to the AP.
Definition: wpa.h:237

References natsemi_ring::cons, cpu_to_le32, DBGC, DBGC2, natsemi_ring::desc, EIO, le32_to_cpu, NATSEMI_DESC_OK, NATSEMI_DESC_OWN, NATSEMI_NUM_TX_DESC, netdev, netdev_tx_complete_next(), netdev_tx_complete_next_err(), net_device::priv, natsemi_ring::prod, tx, and natsemi_nic::tx.

Referenced by natsemi_poll().

◆ natsemi_poll_rx()

static void natsemi_poll_rx ( struct net_device netdev)
static

Poll for received packets.

Parameters
netdevNetwork device

Definition at line 725 of file natsemi.c.

725  {
726  struct natsemi_nic *natsemi = netdev->priv;
727  union natsemi_descriptor *rx;
728  struct io_buffer *iobuf;
729  unsigned int rx_idx;
730  size_t len;
731 
732  /* Check for received packets */
733  while ( natsemi->rx.cons != natsemi->rx.prod ) {
734 
735  /* Get next receive descriptor */
736  rx_idx = ( natsemi->rx.cons % NATSEMI_NUM_RX_DESC );
737  rx = &natsemi->rx.desc[rx_idx];
738 
739  /* Stop if descriptor is still in use */
740  if ( ! ( rx->common.cmdsts & NATSEMI_DESC_OWN ) )
741  return;
742 
743  /* Populate I/O buffer */
744  iobuf = natsemi->rx_iobuf[rx_idx];
745  natsemi->rx_iobuf[rx_idx] = NULL;
746  len = ( le32_to_cpu ( rx->common.cmdsts ) &
748  iob_put ( iobuf, len - 4 /* strip CRC */ );
749 
750  /* Hand off to network stack */
751  if ( rx->common.cmdsts & cpu_to_le32 ( NATSEMI_DESC_OK ) ) {
752  DBGC2 ( natsemi, "NATSEMI %p RX %d complete (length "
753  "%zd)\n", natsemi, rx_idx, len );
754  netdev_rx ( netdev, iobuf );
755  } else {
756  DBGC ( natsemi, "NATSEMI %p RX %d error (length %zd, "
757  "status %08x)\n", natsemi, rx_idx, len,
758  le32_to_cpu ( rx->common.cmdsts ) );
759  netdev_rx_err ( netdev, iobuf, -EIO );
760  }
761  natsemi->rx.cons++;
762  }
763 }
unsigned int prod
Producer index.
Definition: natsemi.h:258
struct natsemi_ring rx
Receive descriptor ring.
Definition: natsemi.h:296
#define iob_put(iobuf, len)
Definition: iobuf.h:120
void netdev_rx_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Discard received packet.
Definition: netdevice.c:586
Packet OK.
Definition: natsemi.h:79
#define le32_to_cpu(value)
Definition: byteswap.h:113
unsigned int cons
Consumer index.
Definition: natsemi.h:260
#define DBGC(...)
Definition: compiler.h:505
A packet descriptor.
Definition: natsemi.h:48
union natsemi_descriptor * desc
Descriptors.
Definition: natsemi.h:256
void * priv
Driver private data.
Definition: netdevice.h:431
static struct net_device * netdev
Definition: gdbudp.c:52
#define cpu_to_le32(value)
Definition: byteswap.h:107
void netdev_rx(struct net_device *netdev, struct io_buffer *iobuf)
Add packet to receive queue.
Definition: netdevice.c:548
Descriptor is owned by NIC.
Definition: natsemi.h:75
uint32_t len
Length.
Definition: ena.h:14
#define DBGC2(...)
Definition: compiler.h:522
#define EIO
Input/output error.
Definition: errno.h:433
u8 rx[WPA_TKIP_MIC_KEY_LEN]
MIC key for packets from the AP.
Definition: wpa.h:234
#define NATSEMI_DESC_SIZE_MASK
Descriptor buffer size mask.
Definition: natsemi.h:70
struct io_buffer * rx_iobuf[NATSEMI_NUM_RX_DESC]
Receive I/O buffers.
Definition: natsemi.h:298
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
A National Semiconductor network card.
Definition: natsemi.h:283
#define NATSEMI_NUM_RX_DESC
Number of receive descriptors.
Definition: natsemi.h:192
A persistent I/O buffer.
Definition: iobuf.h:33

References natsemi_ring::cons, cpu_to_le32, DBGC, DBGC2, natsemi_ring::desc, EIO, iob_put, le32_to_cpu, len, NATSEMI_DESC_OK, NATSEMI_DESC_OWN, NATSEMI_DESC_SIZE_MASK, NATSEMI_NUM_RX_DESC, netdev, netdev_rx(), netdev_rx_err(), NULL, net_device::priv, natsemi_ring::prod, rx, natsemi_nic::rx, and natsemi_nic::rx_iobuf.

Referenced by natsemi_poll().

◆ natsemi_poll()

static void natsemi_poll ( struct net_device netdev)
static

Poll for completed and received packets.

Parameters
netdevNetwork device

Definition at line 770 of file natsemi.c.

770  {
771  struct natsemi_nic *natsemi = netdev->priv;
772  uint32_t isr;
773 
774  /* Poll for link state. The PHY interrupt seems not to
775  * function as expected, and polling for the link state is
776  * only a single register read.
777  */
779 
780  /* Check for and acknowledge interrupts */
781  isr = readl ( natsemi->regs + NATSEMI_ISR );
782  if ( ! isr )
783  return;
784 
785  /* Poll for TX completions, if applicable */
786  if ( isr & NATSEMI_IRQ_TXDESC )
788 
789  /* Poll for RX completionsm, if applicable */
790  if ( isr & NATSEMI_IRQ_RXDESC )
792 
793  /* Refill RX ring */
795 }
#define NATSEMI_ISR
Interrupt Status Register.
Definition: natsemi.h:127
uint32_t readl(volatile uint32_t *io_addr)
Read 32-bit dword from memory-mapped device.
#define NATSEMI_IRQ_TXDESC
TX descriptor.
Definition: natsemi.h:128
static void natsemi_poll_rx(struct net_device *netdev)
Poll for received packets.
Definition: natsemi.c:725
void * priv
Driver private data.
Definition: netdevice.h:431
static struct net_device * netdev
Definition: gdbudp.c:52
Definition: sis900.h:26
static void natsemi_refill_rx(struct net_device *netdev)
Refill receive descriptor ring.
Definition: natsemi.c:490
static void natsemi_check_link(struct net_device *netdev)
Check link state.
Definition: natsemi.c:320
unsigned int uint32_t
Definition: stdint.h:12
static void natsemi_poll_tx(struct net_device *netdev)
Poll for completed packets.
Definition: natsemi.c:689
void * regs
Registers.
Definition: natsemi.h:287
#define NATSEMI_IRQ_RXDESC
RX descriptor.
Definition: natsemi.h:129
A National Semiconductor network card.
Definition: natsemi.h:283

References isr, natsemi_check_link(), NATSEMI_IRQ_RXDESC, NATSEMI_IRQ_TXDESC, NATSEMI_ISR, natsemi_poll_rx(), natsemi_poll_tx(), natsemi_refill_rx(), netdev, net_device::priv, readl(), and natsemi_nic::regs.

◆ natsemi_irq()

static void natsemi_irq ( struct net_device netdev,
int  enable 
)
static

Enable or disable interrupts.

Parameters
netdevNetwork device
enableInterrupts should be enabled

Definition at line 803 of file natsemi.c.

803  {
804  struct natsemi_nic *natsemi = netdev->priv;
805 
806  /* Enable or disable interrupts */
807  writel ( ( enable ? NATSEMI_IER_IE : 0 ), natsemi->regs + NATSEMI_IER );
808 }
#define NATSEMI_IER_IE
Interrupt enable.
Definition: natsemi.h:136
#define NATSEMI_IER
Interrupt Enable Register.
Definition: natsemi.h:135
void * priv
Driver private data.
Definition: netdevice.h:431
void writel(uint32_t data, volatile uint32_t *io_addr)
Write 32-bit dword to memory-mapped device.
static struct net_device * netdev
Definition: gdbudp.c:52
void * regs
Registers.
Definition: natsemi.h:287
A National Semiconductor network card.
Definition: natsemi.h:283

References NATSEMI_IER, NATSEMI_IER_IE, netdev, net_device::priv, natsemi_nic::regs, and writel().

◆ natsemi_probe()

static int natsemi_probe ( struct pci_device pci)
static

Probe PCI device.

Parameters
pciPCI device
Return values
rcReturn status code

Definition at line 832 of file natsemi.c.

832  {
833  struct net_device *netdev;
834  struct natsemi_nic *natsemi;
835  int rc;
836 
837  /* Allocate and initialise net device */
838  netdev = alloc_etherdev ( sizeof ( *natsemi ) );
839  if ( ! netdev ) {
840  rc = -ENOMEM;
841  goto err_alloc;
842  }
844  natsemi = netdev->priv;
845  pci_set_drvdata ( pci, netdev );
846  netdev->dev = &pci->dev;
847  memset ( natsemi, 0, sizeof ( *natsemi ) );
848  natsemi->flags = pci->id->driver_data;
849  natsemi_init_ring ( &natsemi->tx, NATSEMI_NUM_TX_DESC, NATSEMI_TXDP );
850  natsemi_init_ring ( &natsemi->rx, NATSEMI_NUM_RX_DESC, NATSEMI_RXDP );
851 
852  /* Fix up PCI device */
853  adjust_pci_device ( pci );
854 
855  /* Map registers */
856  natsemi->regs = pci_ioremap ( pci, pci->membase, NATSEMI_BAR_SIZE );
857  if ( ! natsemi->regs ) {
858  rc = -ENODEV;
859  goto err_ioremap;
860  }
861 
862  /* Reset the NIC */
863  if ( ( rc = natsemi_reset ( natsemi ) ) != 0 )
864  goto err_reset;
865 
866  /* Initialise EEPROM */
867  natsemi_init_eeprom ( natsemi );
868 
869  /* Read initial MAC address */
870  if ( ( rc = natsemi_hwaddr ( natsemi, netdev->hw_addr ) ) != 0 )
871  goto err_hwaddr;
872 
873  /* Register network device */
874  if ( ( rc = register_netdev ( netdev ) ) != 0 )
875  goto err_register_netdev;
876 
877  /* Set initial link state */
879 
880  return 0;
881 
883  err_register_netdev:
884  err_hwaddr:
885  natsemi_reset ( natsemi );
886  err_reset:
887  iounmap ( natsemi->regs );
888  err_ioremap:
890  netdev_put ( netdev );
891  err_alloc:
892  return rc;
893 }
unsigned long membase
Memory base.
Definition: pci.h:215
#define NATSEMI_RXDP
Receive Descriptor Pointer.
Definition: natsemi.h:186
struct natsemi_ring rx
Receive descriptor ring.
Definition: natsemi.h:296
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct natsemi_ring tx
Transmit descriptor ring.
Definition: natsemi.h:294
unsigned long driver_data
Arbitrary driver data.
Definition: pci.h:178
#define NATSEMI_NUM_TX_DESC
Number of transmit descriptors.
Definition: natsemi.h:145
static struct net_device_operations natsemi_operations
National Semiconductor network device operations.
Definition: natsemi.c:811
void adjust_pci_device(struct pci_device *pci)
Enable PCI device.
Definition: pci.c:154
struct device dev
Generic device.
Definition: pci.h:208
static void netdev_init(struct net_device *netdev, struct net_device_operations *op)
Initialise a network device.
Definition: netdevice.h:515
static void pci_set_drvdata(struct pci_device *pci, void *priv)
Set PCI driver-private data.
Definition: pci.h:359
#define NATSEMI_TXDP
Transmit Descriptor Pointer.
Definition: natsemi.h:139
#define ENOMEM
Not enough space.
Definition: errno.h:534
static void netdev_put(struct net_device *netdev)
Drop reference to network device.
Definition: netdevice.h:572
void * priv
Driver private data.
Definition: netdevice.h:431
static struct net_device * netdev
Definition: gdbudp.c:52
unsigned int flags
Flags.
Definition: natsemi.h:285
static int natsemi_hwaddr(struct natsemi_nic *natsemi, void *hw_addr)
Get hardware address from EEPROM.
Definition: natsemi.c:184
void unregister_netdev(struct net_device *netdev)
Unregister network device.
Definition: netdevice.c:941
int register_netdev(struct net_device *netdev)
Register network device.
Definition: netdevice.c:759
A network device.
Definition: netdevice.h:352
static void natsemi_check_link(struct net_device *netdev)
Check link state.
Definition: natsemi.c:320
#define ENODEV
No such device.
Definition: errno.h:509
static void netdev_nullify(struct net_device *netdev)
Stop using a network device.
Definition: netdevice.h:528
void * regs
Registers.
Definition: natsemi.h:287
struct device * dev
Underlying hardware device.
Definition: netdevice.h:364
static int natsemi_reset(struct natsemi_nic *natsemi)
Reset hardware.
Definition: natsemi.c:279
#define NATSEMI_BAR_SIZE
BAR size.
Definition: natsemi.h:17
static void natsemi_init_eeprom(struct natsemi_nic *natsemi)
Initialise EEPROM.
Definition: natsemi.c:119
struct net_device * alloc_etherdev(size_t priv_size)
Allocate Ethernet device.
Definition: ethernet.c:264
struct pci_device_id * id
Driver device ID.
Definition: pci.h:243
void iounmap(volatile const void *io_addr)
Unmap I/O address.
void * pci_ioremap(struct pci_device *pci, unsigned long bus_addr, size_t len)
Map PCI bus address as an I/O address.
uint8_t hw_addr[MAX_HW_ADDR_LEN]
Hardware address.
Definition: netdevice.h:381
A National Semiconductor network card.
Definition: natsemi.h:283
#define NATSEMI_NUM_RX_DESC
Number of receive descriptors.
Definition: natsemi.h:192
void * memset(void *dest, int character, size_t len) __nonnull

References adjust_pci_device(), alloc_etherdev(), pci_device::dev, net_device::dev, pci_device_id::driver_data, ENODEV, ENOMEM, natsemi_nic::flags, net_device::hw_addr, pci_device::id, iounmap(), pci_device::membase, memset(), NATSEMI_BAR_SIZE, natsemi_check_link(), natsemi_hwaddr(), natsemi_init_eeprom(), NATSEMI_NUM_RX_DESC, NATSEMI_NUM_TX_DESC, natsemi_operations, natsemi_reset(), NATSEMI_RXDP, NATSEMI_TXDP, netdev, netdev_init(), netdev_nullify(), netdev_put(), pci_ioremap(), pci_set_drvdata(), net_device::priv, rc, register_netdev(), natsemi_nic::regs, natsemi_nic::rx, natsemi_nic::tx, and unregister_netdev().

◆ natsemi_remove()

static void natsemi_remove ( struct pci_device pci)
static

Remove PCI device.

Parameters
pciPCI device

Definition at line 900 of file natsemi.c.

900  {
901  struct net_device *netdev = pci_get_drvdata ( pci );
902  struct natsemi_nic *natsemi = netdev->priv;
903 
904  /* Unregister network device */
906 
907  /* Reset card */
908  natsemi_reset ( natsemi );
909 
910  /* Free network device */
911  iounmap ( natsemi->regs );
913  netdev_put ( netdev );
914 }
static void netdev_put(struct net_device *netdev)
Drop reference to network device.
Definition: netdevice.h:572
void * priv
Driver private data.
Definition: netdevice.h:431
static struct net_device * netdev
Definition: gdbudp.c:52
void unregister_netdev(struct net_device *netdev)
Unregister network device.
Definition: netdevice.c:941
A network device.
Definition: netdevice.h:352
static void netdev_nullify(struct net_device *netdev)
Stop using a network device.
Definition: netdevice.h:528
void * regs
Registers.
Definition: natsemi.h:287
static int natsemi_reset(struct natsemi_nic *natsemi)
Reset hardware.
Definition: natsemi.c:279
static void * pci_get_drvdata(struct pci_device *pci)
Get PCI driver-private data.
Definition: pci.h:369
void iounmap(volatile const void *io_addr)
Unmap I/O address.
A National Semiconductor network card.
Definition: natsemi.h:283

References iounmap(), natsemi_reset(), netdev, netdev_nullify(), netdev_put(), pci_get_drvdata(), net_device::priv, natsemi_nic::regs, and unregister_netdev().

Variable Documentation

◆ natsemi_eeprom_bits

const uint8_t natsemi_eeprom_bits[]
static
Initial value:
= {
}
#define NATSEMI_MEAR_EECLK
EEPROM serial clock.
Definition: natsemi.h:106
Master Out Slave In.
Definition: spi_bit.h:37
#define NATSEMI_MEAR_EEDO
EEPROM data out.
Definition: natsemi.h:107
#define NATSEMI_MEAR_EESEL
EEPROM chip select.
Definition: natsemi.h:105
#define SPI_BIT_SS(slave)
Determine bit index for a particular slave.
Definition: spi_bit.h:50
#define NATSEMI_MEAR_EEDI
EEPROM data in.
Definition: natsemi.h:108
Master In Slave Out.
Definition: spi_bit.h:39
Serial clock.
Definition: spi_bit.h:35

Pin mapping for SPI bit-bashing interface.

Definition at line 58 of file natsemi.c.

Referenced by natsemi_spi_read_bit(), and natsemi_spi_write_bit().

◆ natsemi_basher_ops

struct bit_basher_operations natsemi_basher_ops
static
Initial value:
= {
}
static int natsemi_spi_read_bit(struct bit_basher *basher, unsigned int bit_id)
Read input bit.
Definition: natsemi.c:73
static void natsemi_spi_write_bit(struct bit_basher *basher, unsigned int bit_id, unsigned long data)
Set/clear output bit.
Definition: natsemi.c:93

SPI bit-bashing interface.

Definition at line 109 of file natsemi.c.

Referenced by natsemi_init_eeprom().

◆ natsemi_operations

struct net_device_operations natsemi_operations
static
Initial value:
= {
.open = natsemi_open,
.close = natsemi_close,
.transmit = natsemi_transmit,
.poll = natsemi_poll,
.irq = natsemi_irq,
}
static void natsemi_poll(struct net_device *netdev)
Poll for completed and received packets.
Definition: natsemi.c:770
static void natsemi_irq(struct net_device *netdev, int enable)
Enable or disable interrupts.
Definition: natsemi.c:803
static int natsemi_open(struct net_device *netdev)
Open network device.
Definition: natsemi.c:549
static int natsemi_transmit(struct net_device *netdev, struct io_buffer *iobuf)
Transmit packet.
Definition: natsemi.c:639
static void natsemi_close(struct net_device *netdev)
Close network device.
Definition: natsemi.c:607

National Semiconductor network device operations.

Definition at line 811 of file natsemi.c.

Referenced by natsemi_probe().

◆ natsemi_nics

struct pci_device_id natsemi_nics[]
static
Initial value:
= {
PCI_ROM ( 0x100b, 0x0020, "dp83815", "DP83815", DP83815_FLAGS ),
PCI_ROM ( 0x100b, 0x0022, "dp83820", "DP83820", DP83820_FLAGS ),
}
#define DP83820_FLAGS
Flags for DP83820.
Definition: natsemi.c:920
#define DP83815_FLAGS
Flags for DP83815.
Definition: natsemi.c:917
#define PCI_ROM(_vendor, _device, _name, _description, _data)
Definition: pci.h:303

National Semiconductor PCI device IDs.

Definition at line 923 of file natsemi.c.

◆ __pci_driver

struct pci_driver natsemi_driver __pci_driver
Initial value:
= {
.ids = natsemi_nics,
.id_count = ( sizeof ( natsemi_nics ) / sizeof ( natsemi_nics[0] ) ),
.probe = natsemi_probe,
}
static struct pci_device_id natsemi_nics[]
National Semiconductor PCI device IDs.
Definition: natsemi.c:923
static void natsemi_remove(struct pci_device *pci)
Remove PCI device.
Definition: natsemi.c:900
static int natsemi_probe(struct pci_device *pci)
Probe PCI device.
Definition: natsemi.c:832
static struct xen_remove_from_physmap * remove
Definition: xenmem.h:39

National Semiconductor PCI driver.

Definition at line 929 of file natsemi.c.