2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-25 01:05:47 +03:00
|
|
|
// $Id$
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2009-12-04 22:50:29 +03:00
|
|
|
// Copyright (C) 2001-2009 The Bochs Project
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library 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
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
2009-02-08 12:05:52 +03:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// Peter Grehan (grehan@iprg.nokia.com) coded all of this
|
|
|
|
// NE2000/ether stuff.
|
|
|
|
|
|
|
|
//
|
|
|
|
// An implementation of an ne2000 ISA ethernet adapter. This part uses
|
|
|
|
// a National Semiconductor DS-8390 ethernet MAC chip, with some h/w
|
|
|
|
// to provide a windowed memory region for the chip and a MAC address.
|
|
|
|
//
|
|
|
|
|
2006-03-07 21:16:41 +03:00
|
|
|
#ifndef BX_IODEV_NE2K
|
|
|
|
#define BX_IODEV_NE2K
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if BX_USE_NE2K_SMF
|
|
|
|
# define BX_NE2K_SMF static
|
2002-11-19 21:56:39 +03:00
|
|
|
# define BX_NE2K_THIS theNE2kDevice->
|
2004-06-27 22:23:00 +04:00
|
|
|
# define BX_NE2K_THIS_PTR theNE2kDevice
|
2001-04-10 05:04:59 +04:00
|
|
|
#else
|
|
|
|
# define BX_NE2K_SMF
|
|
|
|
# define BX_NE2K_THIS this->
|
2004-06-27 22:23:00 +04:00
|
|
|
# define BX_NE2K_THIS_PTR this
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 11:49:25 +04:00
|
|
|
#define BX_NE2K_MEMSIZ (32*1024)
|
2001-04-10 05:04:59 +04:00
|
|
|
#define BX_NE2K_MEMSTART (16*1024)
|
|
|
|
#define BX_NE2K_MEMEND (BX_NE2K_MEMSTART + BX_NE2K_MEMSIZ)
|
|
|
|
|
2004-09-05 14:30:19 +04:00
|
|
|
class eth_pktmover_c;
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
typedef struct {
|
|
|
|
//
|
|
|
|
// ne2k register state
|
2008-01-27 01:24:03 +03:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// Page 0
|
|
|
|
//
|
|
|
|
// Command Register - 00h read/write
|
|
|
|
struct {
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool stop; // STP - Software Reset command
|
|
|
|
bx_bool start; // START - start the NIC
|
|
|
|
bx_bool tx_packet; // TXP - initiate packet transmission
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit8u rdma_cmd; // RD0,RD1,RD2 - Remote DMA command
|
|
|
|
Bit8u pgsel; // PS0,PS1 - Page select
|
|
|
|
} CR;
|
|
|
|
// Interrupt Status Register - 07h read/write
|
2008-01-27 01:24:03 +03:00
|
|
|
struct {
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool pkt_rx; // PRX - packet received with no errors
|
|
|
|
bx_bool pkt_tx; // PTX - packet transmitted with no errors
|
|
|
|
bx_bool rx_err; // RXE - packet received with 1 or more errors
|
|
|
|
bx_bool tx_err; // TXE - packet tx'd " " " " "
|
|
|
|
bx_bool overwrite; // OVW - rx buffer resources exhausted
|
|
|
|
bx_bool cnt_oflow; // CNT - network tally counter MSB's set
|
|
|
|
bx_bool rdma_done; // RDC - remote DMA complete
|
|
|
|
bx_bool reset; // RST - reset status
|
2001-04-10 05:04:59 +04:00
|
|
|
} ISR;
|
|
|
|
// Interrupt Mask Register - 0fh write
|
|
|
|
struct {
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool rx_inte; // PRXE - packet rx interrupt enable
|
|
|
|
bx_bool tx_inte; // PTXE - packet tx interrput enable
|
|
|
|
bx_bool rxerr_inte; // RXEE - rx error interrupt enable
|
|
|
|
bx_bool txerr_inte; // TXEE - tx error interrupt enable
|
|
|
|
bx_bool overw_inte; // OVWE - overwrite warn int enable
|
|
|
|
bx_bool cofl_inte; // CNTE - counter o'flow int enable
|
|
|
|
bx_bool rdma_inte; // RDCE - remote DMA complete int enable
|
|
|
|
bx_bool reserved; // D7 - reserved
|
2001-04-10 05:04:59 +04:00
|
|
|
} IMR;
|
|
|
|
// Data Configuration Register - 0eh write
|
|
|
|
struct {
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool wdsize; // WTS - 8/16-bit select
|
|
|
|
bx_bool endian; // BOS - byte-order select
|
|
|
|
bx_bool longaddr; // LAS - long-address select
|
|
|
|
bx_bool loop; // LS - loopback select
|
|
|
|
bx_bool auto_rx; // AR - auto-remove rx packets with remote DMA
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit8u fifo_size; // FT0,FT1 - fifo threshold
|
|
|
|
} DCR;
|
|
|
|
// Transmit Configuration Register - 0dh write
|
|
|
|
struct {
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool crc_disable; // CRC - inhibit tx CRC
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit8u loop_cntl; // LB0,LB1 - loopback control
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool ext_stoptx; // ATD - allow tx disable by external mcast
|
|
|
|
bx_bool coll_prio; // OFST - backoff algorithm select
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit8u reserved; // D5,D6,D7 - reserved
|
|
|
|
} TCR;
|
|
|
|
// Transmit Status Register - 04h read
|
|
|
|
struct {
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool tx_ok; // PTX - tx complete without error
|
|
|
|
bx_bool reserved; // D1 - reserved
|
|
|
|
bx_bool collided; // COL - tx collided >= 1 times
|
|
|
|
bx_bool aborted; // ABT - aborted due to excessive collisions
|
|
|
|
bx_bool no_carrier; // CRS - carrier-sense lost
|
|
|
|
bx_bool fifo_ur; // FU - FIFO underrun
|
|
|
|
bx_bool cd_hbeat; // CDH - no tx cd-heartbeat from transceiver
|
|
|
|
bx_bool ow_coll; // OWC - out-of-window collision
|
2001-04-10 05:04:59 +04:00
|
|
|
} TSR;
|
|
|
|
// Receive Configuration Register - 0ch write
|
|
|
|
struct {
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool errors_ok; // SEP - accept pkts with rx errors
|
|
|
|
bx_bool runts_ok; // AR - accept < 64-byte runts
|
|
|
|
bx_bool broadcast; // AB - accept eth broadcast address
|
|
|
|
bx_bool multicast; // AM - check mcast hash array
|
|
|
|
bx_bool promisc; // PRO - accept all packets
|
|
|
|
bx_bool monitor; // MON - check pkts, but don't rx
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit8u reserved; // D6,D7 - reserved
|
|
|
|
} RCR;
|
|
|
|
// Receive Status Register - 0ch read
|
|
|
|
struct {
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool rx_ok; // PRX - rx complete without error
|
|
|
|
bx_bool bad_crc; // CRC - Bad CRC detected
|
|
|
|
bx_bool bad_falign; // FAE - frame alignment error
|
|
|
|
bx_bool fifo_or; // FO - FIFO overrun
|
|
|
|
bx_bool rx_missed; // MPA - missed packet error
|
|
|
|
bx_bool rx_mbit; // PHY - unicast or mcast/bcast address match
|
|
|
|
bx_bool rx_disabled; // DIS - set when in monitor mode
|
|
|
|
bx_bool deferred; // DFR - collision active
|
2001-04-10 05:04:59 +04:00
|
|
|
} RSR;
|
|
|
|
|
|
|
|
Bit16u local_dma; // 01,02h read ; current local DMA addr
|
|
|
|
Bit8u page_start; // 01h write ; page start register
|
|
|
|
Bit8u page_stop; // 02h write ; page stop register
|
|
|
|
Bit8u bound_ptr; // 03h read/write ; boundary pointer
|
|
|
|
Bit8u tx_page_start; // 04h write ; transmit page start register
|
|
|
|
Bit8u num_coll; // 05h read ; number-of-collisions register
|
|
|
|
Bit16u tx_bytes; // 05,06h write ; transmit byte-count register
|
|
|
|
Bit8u fifo; // 06h read ; FIFO
|
|
|
|
Bit16u remote_dma; // 08,09h read ; current remote DMA addr
|
|
|
|
Bit16u remote_start; // 08,09h write ; remote start address register
|
|
|
|
Bit16u remote_bytes; // 0a,0bh write ; remote byte-count register
|
|
|
|
Bit8u tallycnt_0; // 0dh read ; tally counter 0 (frame align errors)
|
|
|
|
Bit8u tallycnt_1; // 0eh read ; tally counter 1 (CRC errors)
|
|
|
|
Bit8u tallycnt_2; // 0fh read ; tally counter 2 (missed pkt errors)
|
|
|
|
|
|
|
|
//
|
|
|
|
// Page 1
|
|
|
|
//
|
|
|
|
// Command Register 00h (repeated)
|
|
|
|
//
|
|
|
|
Bit8u physaddr[6]; // 01-06h read/write ; MAC address
|
|
|
|
Bit8u curr_page; // 07h read/write ; current page register
|
|
|
|
Bit8u mchash[8]; // 08-0fh read/write ; multicast hash array
|
|
|
|
|
|
|
|
//
|
|
|
|
// Page 2 - diagnostic use only
|
2008-01-27 01:24:03 +03:00
|
|
|
//
|
2001-04-10 05:04:59 +04:00
|
|
|
// Command Register 00h (repeated)
|
|
|
|
//
|
|
|
|
// Page Start Register 01h read (repeated)
|
|
|
|
// Page Stop Register 02h read (repeated)
|
|
|
|
// Current Local DMA Address 01,02h write (repeated)
|
|
|
|
// Transmit Page start address 04h read (repeated)
|
|
|
|
// Receive Configuration Register 0ch read (repeated)
|
|
|
|
// Transmit Configuration Register 0dh read (repeated)
|
|
|
|
// Data Configuration Register 0eh read (repeated)
|
|
|
|
// Interrupt Mask Register 0fh read (repeated)
|
|
|
|
//
|
|
|
|
Bit8u rempkt_ptr; // 03h read/write ; remote next-packet pointer
|
|
|
|
Bit8u localpkt_ptr; // 05h read/write ; local next-packet pointer
|
|
|
|
Bit16u address_cnt; // 06,07h read/write ; address counter
|
|
|
|
|
|
|
|
//
|
|
|
|
// Page 3 - should never be modified.
|
|
|
|
//
|
|
|
|
|
|
|
|
// Novell ASIC state
|
|
|
|
Bit8u macaddr[32]; // ASIC ROM'd MAC address, even bytes
|
|
|
|
Bit8u mem[BX_NE2K_MEMSIZ]; // on-chip packet memory
|
|
|
|
|
|
|
|
// ne2k internal state
|
2006-05-01 22:24:47 +04:00
|
|
|
Bit32u base_address;
|
|
|
|
int base_irq;
|
|
|
|
int tx_timer_index;
|
|
|
|
bx_bool tx_timer_active;
|
2011-12-28 15:51:42 +04:00
|
|
|
int statusbar_id;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-06-27 22:23:00 +04:00
|
|
|
// pci stuff
|
|
|
|
bx_bool pci_enabled;
|
2004-08-06 19:49:55 +04:00
|
|
|
#if BX_SUPPORT_PCI
|
2004-07-04 21:10:05 +04:00
|
|
|
Bit8u devfunc;
|
2004-06-27 22:23:00 +04:00
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
} bx_ne2k_t;
|
|
|
|
|
2006-03-08 22:28:37 +03:00
|
|
|
class bx_ne2k_c : public bx_ne2k_stub_c
|
|
|
|
#if BX_SUPPORT_PCI
|
|
|
|
, public bx_pci_device_stub_c
|
|
|
|
#endif
|
|
|
|
{
|
2001-04-10 05:04:59 +04:00
|
|
|
public:
|
2006-03-08 00:11:20 +03:00
|
|
|
bx_ne2k_c();
|
|
|
|
virtual ~bx_ne2k_c();
|
2002-11-19 21:56:39 +03:00
|
|
|
virtual void init(void);
|
|
|
|
virtual void reset(unsigned type);
|
|
|
|
virtual void print_info (FILE *file, int page, int reg, int nodups);
|
2006-05-27 19:54:49 +04:00
|
|
|
virtual void register_state(void);
|
|
|
|
#if BX_SUPPORT_PCI
|
|
|
|
virtual void after_restore_state(void);
|
|
|
|
#endif
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2006-03-08 22:28:37 +03:00
|
|
|
#if BX_SUPPORT_PCI
|
|
|
|
virtual Bit32u pci_read_handler(Bit8u address, unsigned io_len);
|
|
|
|
virtual void pci_write_handler(Bit8u address, Bit32u value, unsigned io_len);
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
private:
|
|
|
|
bx_ne2k_t s;
|
|
|
|
|
|
|
|
eth_pktmover_c *ethdev;
|
|
|
|
|
|
|
|
BX_NE2K_SMF Bit32u read_cr(void);
|
|
|
|
BX_NE2K_SMF void write_cr(Bit32u value);
|
2004-07-02 02:18:20 +04:00
|
|
|
BX_NE2K_SMF void set_irq_level(bx_bool level);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2003-03-03 02:59:12 +03:00
|
|
|
BX_NE2K_SMF Bit32u chipmem_read(Bit32u address, unsigned io_len) BX_CPP_AttrRegparmN(2);
|
|
|
|
BX_NE2K_SMF Bit32u asic_read(Bit32u offset, unsigned io_len) BX_CPP_AttrRegparmN(2);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_NE2K_SMF Bit32u page0_read(Bit32u offset, unsigned io_len);
|
|
|
|
BX_NE2K_SMF Bit32u page1_read(Bit32u offset, unsigned io_len);
|
|
|
|
BX_NE2K_SMF Bit32u page2_read(Bit32u offset, unsigned io_len);
|
|
|
|
BX_NE2K_SMF Bit32u page3_read(Bit32u offset, unsigned io_len);
|
|
|
|
|
2003-03-03 02:59:12 +03:00
|
|
|
BX_NE2K_SMF void chipmem_write(Bit32u address, Bit32u value, unsigned io_len) BX_CPP_AttrRegparmN(3);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_NE2K_SMF void asic_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
BX_NE2K_SMF void page0_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
BX_NE2K_SMF void page1_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
BX_NE2K_SMF void page2_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
BX_NE2K_SMF void page3_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
|
|
|
|
static void tx_timer_handler(void *);
|
|
|
|
BX_NE2K_SMF void tx_timer(void);
|
|
|
|
|
2011-12-17 12:22:33 +04:00
|
|
|
static Bit32u rx_status_handler(void *arg);
|
|
|
|
BX_NE2K_SMF Bit32u rx_status(void);
|
2001-04-10 05:04:59 +04:00
|
|
|
static void rx_handler(void *arg, const void *buf, unsigned len);
|
|
|
|
BX_NE2K_SMF unsigned mcast_index(const void *dst);
|
|
|
|
BX_NE2K_SMF void rx_frame(const void *buf, unsigned io_len);
|
|
|
|
|
2011-12-19 00:26:14 +04:00
|
|
|
#if BX_SUPPORT_PCI
|
|
|
|
BX_NE2K_SMF bx_bool mem_read_handler(bx_phy_address addr, unsigned len, void *data, void *param);
|
|
|
|
BX_NE2K_SMF bx_bool mem_write_handler(bx_phy_address addr, unsigned len, void *data, void *param);
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
static Bit32u read_handler(void *this_ptr, Bit32u address, unsigned io_len);
|
|
|
|
static void write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
#if !BX_USE_NE2K_SMF
|
|
|
|
Bit32u read(Bit32u address, unsigned io_len);
|
|
|
|
void write(Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
#endif
|
|
|
|
};
|
2006-03-07 21:16:41 +03:00
|
|
|
|
|
|
|
#endif
|