2017-05-05 01:49:42 +02:00
|
|
|
/*
|
2018-03-19 01:02:04 +01:00
|
|
|
* VARCem Virtual ARchaeological Computer EMulator.
|
|
|
|
|
* An emulator of (mostly) x86-based PC systems and devices,
|
|
|
|
|
* using the ISA,EISA,VLB,MCA and PCI system buses, roughly
|
|
|
|
|
* spanning the era between 1981 and 1995.
|
2017-05-09 22:09:55 -04:00
|
|
|
*
|
2018-03-19 01:02:04 +01:00
|
|
|
* This file is part of the VARCem Project.
|
2017-05-09 22:09:55 -04:00
|
|
|
*
|
2018-01-28 03:15:01 +01:00
|
|
|
* Implementation of the following network controllers:
|
2018-01-28 12:15:57 +01:00
|
|
|
* - Novell NE1000 (ISA 8-bit);
|
2018-01-28 03:15:01 +01:00
|
|
|
* - Novell NE2000 (ISA 16-bit);
|
2018-08-11 17:48:51 +02:00
|
|
|
* - Novell NE/2 compatible (NetWorth Inc. Ethernext/MC) (MCA 16-bit);
|
2018-01-28 03:15:01 +01:00
|
|
|
* - Realtek RTL8019AS (ISA 16-bit, PnP);
|
|
|
|
|
* - Realtek RTL8029AS (PCI).
|
2017-05-09 22:09:55 -04:00
|
|
|
*
|
2018-10-20 17:13:01 +02:00
|
|
|
* Version: @(#)net_ne2000.c 1.0.11 2018/10/20
|
2017-05-09 22:09:55 -04:00
|
|
|
*
|
2018-03-19 01:02:04 +01:00
|
|
|
* Based on @(#)ne2k.cc v1.56.2.1 2004/02/02 22:37:22 cbothamy
|
2017-05-09 22:09:55 -04:00
|
|
|
*
|
|
|
|
|
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
|
2018-03-19 01:02:04 +01:00
|
|
|
* TheCollector1995, <mariogplayer@gmail.com>
|
2018-01-13 22:56:13 +01:00
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
2018-03-19 01:02:04 +01:00
|
|
|
* Peter Grehan, <grehan@iprg.nokia.com>
|
2017-11-24 02:23:00 -05:00
|
|
|
*
|
2018-02-02 00:14:17 +01:00
|
|
|
* Copyright 2017,2018 Fred N. van Kempen.
|
2018-03-19 01:02:04 +01:00
|
|
|
* Copyright 2016-2018 Miran Grca.
|
|
|
|
|
* Portions Copyright (C) 2002 MandrakeSoft S.A.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* 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.
|
|
|
|
|
* 59 Temple Place - Suite 330
|
|
|
|
|
* Boston, MA 02111-1307
|
|
|
|
|
* USA.
|
2017-05-09 22:09:55 -04:00
|
|
|
*/
|
2016-06-26 00:34:39 +02:00
|
|
|
#include <stdio.h>
|
2017-09-25 04:31:20 -04:00
|
|
|
#include <stdint.h>
|
2016-06-26 00:34:39 +02:00
|
|
|
#include <string.h>
|
2017-09-25 04:31:20 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include <wchar.h>
|
2016-06-26 00:34:39 +02:00
|
|
|
#include <time.h>
|
2017-12-10 02:53:10 -05:00
|
|
|
#define HAVE_STDARG_H
|
2020-02-29 19:12:23 +01:00
|
|
|
#include "86box.h"
|
|
|
|
|
#include "86box_io.h"
|
|
|
|
|
#include "mem.h"
|
|
|
|
|
#include "rom.h"
|
|
|
|
|
#include "mca.h"
|
|
|
|
|
#include "pci.h"
|
|
|
|
|
#include "pic.h"
|
|
|
|
|
#include "random.h"
|
|
|
|
|
#include "device.h"
|
2017-05-06 17:48:33 +02:00
|
|
|
#include "network.h"
|
2018-07-15 01:41:53 +02:00
|
|
|
#include "net_dp8390.h"
|
2017-05-06 17:48:33 +02:00
|
|
|
#include "net_ne2000.h"
|
2017-05-09 22:09:55 -04:00
|
|
|
#include "bswap.h"
|
2017-05-24 00:27:42 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
|
2018-01-28 03:15:01 +01:00
|
|
|
enum {
|
|
|
|
|
PNP_PHASE_WAIT_FOR_KEY = 0,
|
|
|
|
|
PNP_PHASE_CONFIG,
|
|
|
|
|
PNP_PHASE_ISOLATION,
|
|
|
|
|
PNP_PHASE_SLEEP
|
|
|
|
|
};
|
|
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
/* ROM BIOS file paths. */
|
|
|
|
|
#define ROM_PATH_NE1000 L"roms/network/ne1000/ne1000.rom"
|
|
|
|
|
#define ROM_PATH_NE2000 L"roms/network/ne2000/ne2000.rom"
|
2018-01-28 03:15:01 +01:00
|
|
|
#define ROM_PATH_RTL8019 L"roms/network/rtl8019as/rtl8019as.rom"
|
2017-05-26 13:12:31 -04:00
|
|
|
#define ROM_PATH_RTL8029 L"roms/network/rtl8029as/rtl8029as.rom"
|
|
|
|
|
|
|
|
|
|
/* PCI info. */
|
2018-01-28 03:15:01 +01:00
|
|
|
#define PNP_VENDID 0x4a8c /* Realtek, Inc */
|
2017-05-26 13:12:31 -04:00
|
|
|
#define PCI_VENDID 0x10ec /* Realtek, Inc */
|
2018-01-28 03:15:01 +01:00
|
|
|
#define PNP_DEVID 0x8019 /* RTL8029AS */
|
2017-05-26 13:12:31 -04:00
|
|
|
#define PCI_DEVID 0x8029 /* RTL8029AS */
|
|
|
|
|
#define PCI_REGSIZE 256 /* size of PCI space */
|
|
|
|
|
|
|
|
|
|
|
2018-01-28 03:15:01 +01:00
|
|
|
uint8_t pnp_init_key[32] = { 0x6A, 0xB5, 0xDA, 0xED, 0xF6, 0xFB, 0x7D, 0xBE,
|
|
|
|
|
0xDF, 0x6F, 0x37, 0x1B, 0x0D, 0x86, 0xC3, 0x61,
|
|
|
|
|
0xB0, 0x58, 0x2C, 0x16, 0x8B, 0x45, 0xA2, 0xD1,
|
|
|
|
|
0xE8, 0x74, 0x3A, 0x9D, 0xCE, 0xE7, 0x73, 0x39 };
|
|
|
|
|
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
typedef struct {
|
2018-10-19 00:37:25 +02:00
|
|
|
dp8390_t *dp8390;
|
|
|
|
|
const char *name;
|
2017-05-12 17:33:28 -04:00
|
|
|
int board;
|
2018-07-19 16:01:31 +02:00
|
|
|
int is_pci, is_mca, is_8bit;
|
2017-05-09 22:09:55 -04:00
|
|
|
uint32_t base_address;
|
|
|
|
|
int base_irq;
|
2017-05-12 05:05:20 -04:00
|
|
|
uint32_t bios_addr,
|
|
|
|
|
bios_size,
|
|
|
|
|
bios_mask;
|
2018-10-19 00:37:25 +02:00
|
|
|
int card; /* PCI card slot */
|
|
|
|
|
int has_bios, pad;
|
2018-01-28 03:15:01 +01:00
|
|
|
uint8_t pnp_regs[256];
|
|
|
|
|
uint8_t pnp_res_data[256];
|
2017-05-12 17:33:28 -04:00
|
|
|
bar_t pci_bar[2];
|
2017-05-26 13:12:31 -04:00
|
|
|
uint8_t pci_regs[PCI_REGSIZE];
|
2017-05-12 17:33:28 -04:00
|
|
|
uint8_t eeprom[128]; /* for RTL8029AS */
|
2017-05-09 22:09:55 -04:00
|
|
|
rom_t bios_rom;
|
2018-01-28 03:15:01 +01:00
|
|
|
uint8_t pnp_phase;
|
|
|
|
|
uint8_t pnp_magic_count;
|
|
|
|
|
uint8_t pnp_address;
|
|
|
|
|
uint8_t pnp_res_pos;
|
|
|
|
|
uint8_t pnp_csn;
|
|
|
|
|
uint8_t pnp_activate;
|
|
|
|
|
uint8_t pnp_io_check;
|
|
|
|
|
uint8_t pnp_csnsav;
|
|
|
|
|
uint8_t pnp_id_checksum;
|
|
|
|
|
uint8_t pnp_serial_read_pos;
|
|
|
|
|
uint8_t pnp_serial_read_pair;
|
|
|
|
|
uint8_t pnp_serial_read;
|
2018-10-19 00:37:25 +02:00
|
|
|
uint8_t maclocal[6]; /* configured MAC (local) address */
|
|
|
|
|
uint16_t pnp_read;
|
|
|
|
|
uint64_t pnp_id;
|
2018-01-28 03:15:01 +01:00
|
|
|
|
|
|
|
|
/* RTL8019AS/RTL8029AS registers */
|
2018-01-13 22:56:13 +01:00
|
|
|
uint8_t config0, config2, config3;
|
|
|
|
|
uint8_t _9346cr;
|
2018-10-19 00:37:25 +02:00
|
|
|
uint32_t pad0;
|
2016-06-26 00:34:39 +02:00
|
|
|
|
2018-10-19 00:37:25 +02:00
|
|
|
/* POS registers, MCA boards only */
|
|
|
|
|
uint8_t pos_regs[8];
|
|
|
|
|
} nic_t;
|
2017-05-08 18:27:42 -04:00
|
|
|
|
2016-08-15 02:26:54 +02:00
|
|
|
|
2018-07-19 16:01:31 +02:00
|
|
|
#ifdef ENABLE_NIC_LOG
|
|
|
|
|
int nic_do_log = ENABLE_NIC_LOG;
|
2017-05-06 17:48:33 +02:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
|
|
|
|
nelog(int lvl, const char *fmt, ...)
|
2016-08-15 02:26:54 +02:00
|
|
|
{
|
2017-05-09 22:09:55 -04:00
|
|
|
va_list ap;
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2017-05-12 05:05:20 -04:00
|
|
|
if (nic_do_log >= lvl) {
|
2017-05-09 22:09:55 -04:00
|
|
|
va_start(ap, fmt);
|
2017-12-10 02:53:10 -05:00
|
|
|
pclog_ex(fmt, ap);
|
2017-05-09 22:09:55 -04:00
|
|
|
va_end(ap);
|
|
|
|
|
}
|
2017-05-10 04:36:19 +02:00
|
|
|
}
|
2018-10-19 00:37:25 +02:00
|
|
|
#else
|
|
|
|
|
#define nelog(lvl, fmt, ...)
|
|
|
|
|
#endif
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-06-02 02:22:38 +02:00
|
|
|
static void
|
2018-10-19 00:37:25 +02:00
|
|
|
nic_interrupt(void *priv, int set)
|
2017-06-02 02:22:38 +02:00
|
|
|
{
|
2018-10-19 00:37:25 +02:00
|
|
|
nic_t *dev = (nic_t *) priv;
|
|
|
|
|
|
2018-10-02 22:54:28 +02:00
|
|
|
if (dev->is_pci) {
|
2017-06-01 21:49:57 -04:00
|
|
|
if (set)
|
2017-09-04 05:15:12 +02:00
|
|
|
pci_set_irq(dev->card, PCI_INTA);
|
2017-06-01 21:49:57 -04:00
|
|
|
else
|
2017-09-04 05:15:12 +02:00
|
|
|
pci_clear_irq(dev->card, PCI_INTA);
|
2017-06-01 21:49:57 -04:00
|
|
|
} else {
|
|
|
|
|
if (set)
|
|
|
|
|
picint(1<<dev->base_irq);
|
|
|
|
|
else
|
|
|
|
|
picintc(1<<dev->base_irq);
|
2017-06-02 02:22:38 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-05-05 01:49:42 +02:00
|
|
|
/* reset - restore state to power-up, cancelling all i/o */
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-26 13:12:31 -04:00
|
|
|
nic_reset(void *priv)
|
2016-06-26 00:34:39 +02:00
|
|
|
{
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_t *dev = (nic_t *)priv;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(1, "%s: reset\n", dev->name);
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2018-10-19 00:37:25 +02:00
|
|
|
dp8390_reset(dev->dp8390);
|
2016-06-26 00:34:39 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-13 03:32:38 +02:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
static void
|
|
|
|
|
nic_soft_reset(void *priv)
|
|
|
|
|
{
|
|
|
|
|
nic_t *dev = (nic_t *)priv;
|
|
|
|
|
|
2018-10-19 00:37:25 +02:00
|
|
|
dp8390_soft_reset(dev->dp8390);
|
2016-06-26 00:34:39 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
/*
|
|
|
|
|
* Access the ASIC I/O space.
|
|
|
|
|
*
|
|
|
|
|
* This is the high 16 bytes of i/o space (the lower 16 bytes
|
|
|
|
|
* is for the DS8390). Only two locations are used: offset 0,
|
|
|
|
|
* which is used for data transfer, and offset 0x0f, which is
|
|
|
|
|
* used to reset the device.
|
|
|
|
|
*
|
|
|
|
|
* The data transfer port is used to as 'external' DMA to the
|
|
|
|
|
* DS8390. The chip has to have the DMA registers set up, and
|
|
|
|
|
* after that, insw/outsw instructions can be used to move
|
|
|
|
|
* the appropriate number of bytes to/from the device.
|
|
|
|
|
*/
|
2017-05-09 22:09:55 -04:00
|
|
|
static uint32_t
|
2017-05-12 05:05:20 -04:00
|
|
|
asic_read(nic_t *dev, uint32_t off, unsigned int len)
|
2016-06-26 00:34:39 +02:00
|
|
|
{
|
2017-05-09 22:09:55 -04:00
|
|
|
uint32_t retval = 0;
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-12 05:05:20 -04:00
|
|
|
switch(off) {
|
|
|
|
|
case 0x00: /* Data register */
|
2017-05-09 22:09:55 -04:00
|
|
|
/* A read remote-DMA command must have been issued,
|
|
|
|
|
and the source-address and length registers must
|
|
|
|
|
have been initialised. */
|
2018-10-19 00:37:25 +02:00
|
|
|
if (len > dev->dp8390->remote_bytes) {
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: DMA read underrun iolen=%d remote_bytes=%d\n",
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->name, len, dev->dp8390->remote_bytes);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: DMA read: addr=%4x remote_bytes=%d\n",
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->name, dev->dp8390->remote_dma,dev->dp8390->remote_bytes);
|
|
|
|
|
retval = dp8390_chipmem_read(dev->dp8390, dev->dp8390->remote_dma, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
|
|
|
|
|
/* The 8390 bumps the address and decreases the byte count
|
|
|
|
|
by the selected word size after every access, not by
|
|
|
|
|
the amount of data requested by the host (io_len). */
|
|
|
|
|
if (len == 4) {
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->dp8390->remote_dma += len;
|
2017-05-09 22:09:55 -04:00
|
|
|
} else {
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->dp8390->remote_dma += (dev->dp8390->DCR.wdsize + 1);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2018-10-19 00:37:25 +02:00
|
|
|
if (dev->dp8390->remote_dma == dev->dp8390->page_stop << 8) {
|
|
|
|
|
dev->dp8390->remote_dma = dev->dp8390->page_start << 8;
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
/* keep s.remote_bytes from underflowing */
|
2018-10-19 00:37:25 +02:00
|
|
|
if (dev->dp8390->remote_bytes > dev->dp8390->DCR.wdsize) {
|
2017-05-09 22:09:55 -04:00
|
|
|
if (len == 4) {
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->dp8390->remote_bytes -= len;
|
2017-05-09 22:09:55 -04:00
|
|
|
} else {
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->dp8390->remote_bytes -= (dev->dp8390->DCR.wdsize + 1);
|
2017-02-07 02:19:48 +01:00
|
|
|
}
|
2017-05-09 22:09:55 -04:00
|
|
|
} else {
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->dp8390->remote_bytes = 0;
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
/* If all bytes have been written, signal remote-DMA complete */
|
2018-10-19 00:37:25 +02:00
|
|
|
if (dev->dp8390->remote_bytes == 0) {
|
|
|
|
|
dev->dp8390->ISR.rdma_done = 1;
|
|
|
|
|
if (dev->dp8390->IMR.rdma_inte)
|
2017-06-02 02:22:38 +02:00
|
|
|
nic_interrupt(dev, 1);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
|
|
|
|
break;
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-12 05:05:20 -04:00
|
|
|
case 0x0f: /* Reset register */
|
2017-05-26 13:12:31 -04:00
|
|
|
nic_soft_reset(dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
default:
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: ASIC read invalid address %04x\n",
|
2017-05-12 05:05:20 -04:00
|
|
|
dev->name, (unsigned)off);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
|
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
return(retval);
|
2016-06-26 00:34:39 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
asic_write(nic_t *dev, uint32_t off, uint32_t val, unsigned len)
|
2016-06-26 00:34:39 +02:00
|
|
|
{
|
2017-05-26 13:12:31 -04:00
|
|
|
nelog(3, "%s: ASIC write addr=0x%02x, value=0x%04x\n",
|
2017-05-12 05:05:20 -04:00
|
|
|
dev->name, (unsigned)off, (unsigned) val);
|
2017-10-07 00:46:54 -04:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
switch(off) {
|
2017-05-12 05:05:20 -04:00
|
|
|
case 0x00: /* Data register - see asic_read for a description */
|
2018-10-19 00:37:25 +02:00
|
|
|
if ((len > 1) && (dev->dp8390->DCR.wdsize == 0)) {
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: DMA write length %d on byte mode operation\n",
|
2017-05-12 05:05:20 -04:00
|
|
|
dev->name, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
|
|
|
|
}
|
2018-10-19 00:37:25 +02:00
|
|
|
if (dev->dp8390->remote_bytes == 0)
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: DMA write, byte count 0\n", dev->name);
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2018-10-19 00:37:25 +02:00
|
|
|
dp8390_chipmem_write(dev->dp8390, dev->dp8390->remote_dma, val, len);
|
2017-10-07 00:46:54 -04:00
|
|
|
if (len == 4)
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->dp8390->remote_dma += len;
|
|
|
|
|
else
|
|
|
|
|
dev->dp8390->remote_dma += (dev->dp8390->DCR.wdsize + 1);
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2018-10-19 00:37:25 +02:00
|
|
|
if (dev->dp8390->remote_dma == dev->dp8390->page_stop << 8)
|
|
|
|
|
dev->dp8390->remote_dma = dev->dp8390->page_start << 8;
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-10-07 00:46:54 -04:00
|
|
|
if (len == 4)
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->dp8390->remote_bytes -= len;
|
|
|
|
|
else
|
|
|
|
|
dev->dp8390->remote_bytes -= (dev->dp8390->DCR.wdsize + 1);
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2018-10-20 17:13:01 +02:00
|
|
|
if (dev->dp8390->remote_bytes > dev->dp8390->mem_size)
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->dp8390->remote_bytes = 0;
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
/* If all bytes have been written, signal remote-DMA complete */
|
2018-10-19 00:37:25 +02:00
|
|
|
if (dev->dp8390->remote_bytes == 0) {
|
|
|
|
|
dev->dp8390->ISR.rdma_done = 1;
|
|
|
|
|
if (dev->dp8390->IMR.rdma_inte)
|
2017-06-02 02:22:38 +02:00
|
|
|
nic_interrupt(dev, 1);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
|
|
|
|
break;
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-12 05:05:20 -04:00
|
|
|
case 0x0f: /* Reset register */
|
2017-05-09 22:09:55 -04:00
|
|
|
/* end of reset pulse */
|
2018-08-11 17:48:51 +02:00
|
|
|
break;
|
2018-07-19 16:01:31 +02:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
default: /* this is invalid, but happens under win95 device detection */
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: ASIC write invalid address %04x, ignoring\n",
|
2017-05-12 05:05:20 -04:00
|
|
|
dev->name, (unsigned)off);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
|
|
|
|
}
|
2016-06-26 00:34:39 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
/* Writes to this page are illegal. */
|
2017-05-09 22:09:55 -04:00
|
|
|
static uint32_t
|
2017-05-12 05:05:20 -04:00
|
|
|
page3_read(nic_t *dev, uint32_t off, unsigned int len)
|
|
|
|
|
{
|
2018-01-28 03:15:01 +01:00
|
|
|
if (dev->board >= NE2K_RTL8019AS) switch(off) {
|
2018-01-13 22:56:13 +01:00
|
|
|
case 0x1: /* 9346CR */
|
|
|
|
|
return(dev->_9346cr);
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
case 0x3: /* CONFIG0 */
|
2018-01-13 22:56:13 +01:00
|
|
|
return(0x00); /* Cable not BNC */
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
case 0x5: /* CONFIG2 */
|
2018-01-13 22:56:13 +01:00
|
|
|
return(dev->config2 & 0xe0);
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
case 0x6: /* CONFIG3 */
|
2018-01-13 22:56:13 +01:00
|
|
|
return(dev->config3 & 0x46);
|
|
|
|
|
|
2018-01-28 03:15:01 +01:00
|
|
|
case 0x8: /* CSNSAV */
|
|
|
|
|
return((dev->board == NE2K_RTL8019AS) ? dev->pnp_csnsav : 0x00);
|
|
|
|
|
|
2018-01-13 22:56:13 +01:00
|
|
|
case 0xe: /* 8029ASID0 */
|
|
|
|
|
return(0x29);
|
|
|
|
|
|
|
|
|
|
case 0xf: /* 8029ASID1 */
|
|
|
|
|
return(0x08);
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: Page3 read register 0x%02x attempted\n", dev->name, off);
|
2017-05-09 22:09:55 -04:00
|
|
|
return(0x00);
|
|
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
page3_write(nic_t *dev, uint32_t off, uint32_t val, unsigned len)
|
2017-05-09 22:09:55 -04:00
|
|
|
{
|
2018-01-28 03:15:01 +01:00
|
|
|
if (dev->board >= NE2K_RTL8019AS) {
|
2018-01-13 22:56:13 +01:00
|
|
|
nelog(3, "%s: Page2 write to register 0x%02x, len=%u, value=0x%04x\n",
|
|
|
|
|
dev->name, off, len, val);
|
|
|
|
|
|
|
|
|
|
switch(off) {
|
|
|
|
|
case 0x01: /* 9346CR */
|
|
|
|
|
dev->_9346cr = (val & 0xfe);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x05: /* CONFIG2 */
|
|
|
|
|
dev->config2 = (val & 0xe0);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x06: /* CONFIG3 */
|
|
|
|
|
dev->config3 = (val & 0x46);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x09: /* HLTCLK */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
nelog(3, "%s: Page3 write to reserved register 0x%02x\n",
|
|
|
|
|
dev->name, off);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
nelog(3, "%s: Page3 write register 0x%02x attempted\n", dev->name, off);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static uint32_t
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_read(nic_t *dev, uint32_t addr, unsigned len)
|
2016-08-13 03:32:38 +02:00
|
|
|
{
|
2017-05-09 22:09:55 -04:00
|
|
|
uint32_t retval = 0;
|
|
|
|
|
int off = addr - dev->base_address;
|
|
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: read addr %x, len %d\n", dev->name, addr, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2018-10-19 00:37:25 +02:00
|
|
|
if (off >= 0x10)
|
|
|
|
|
retval = asic_read(dev, off - 0x10, len);
|
|
|
|
|
else if (off == 0x00)
|
|
|
|
|
retval = dp8390_read_cr(dev->dp8390);
|
|
|
|
|
else switch(dev->dp8390->CR.pgsel) {
|
2017-05-09 22:09:55 -04:00
|
|
|
case 0x00:
|
2018-10-19 00:37:25 +02:00
|
|
|
retval = dp8390_page0_read(dev->dp8390, off, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
|
|
|
|
case 0x01:
|
2018-10-19 00:37:25 +02:00
|
|
|
retval = dp8390_page1_read(dev->dp8390, off, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
|
|
|
|
case 0x02:
|
2018-10-19 00:37:25 +02:00
|
|
|
retval = dp8390_page2_read(dev->dp8390, off, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
|
|
|
|
case 0x03:
|
|
|
|
|
retval = page3_read(dev, off, len);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: unknown value of pgsel in read - %d\n",
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->name, dev->dp8390->CR.pgsel);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
2018-10-19 00:37:25 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
return(retval);
|
2016-08-13 03:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static uint8_t
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_readb(uint16_t addr, void *priv)
|
2017-05-09 22:09:55 -04:00
|
|
|
{
|
2017-05-12 05:05:20 -04:00
|
|
|
return(nic_read((nic_t *)priv, addr, 1));
|
2016-08-13 03:32:38 +02:00
|
|
|
}
|
2016-06-26 00:34:39 +02:00
|
|
|
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static uint16_t
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_readw(uint16_t addr, void *priv)
|
2016-08-13 03:32:38 +02:00
|
|
|
{
|
2018-10-19 00:37:25 +02:00
|
|
|
return(nic_read((nic_t *)priv, addr, 2));
|
2016-08-13 03:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static uint32_t
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_readl(uint16_t addr, void *priv)
|
2017-05-09 22:09:55 -04:00
|
|
|
{
|
2017-05-12 05:05:20 -04:00
|
|
|
return(nic_read((nic_t *)priv, addr, 4));
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_write(nic_t *dev, uint32_t addr, uint32_t val, unsigned len)
|
2017-05-09 22:09:55 -04:00
|
|
|
{
|
|
|
|
|
int off = addr - dev->base_address;
|
|
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: write addr %x, value %x len %d\n", dev->name, addr, val, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2018-10-19 00:37:25 +02:00
|
|
|
/* The high 16 bytes of i/o space are for the ne2000 asic -
|
|
|
|
|
the low 16 bytes are for the DS8390, with the current
|
|
|
|
|
page being selected by the PS0,PS1 registers in the
|
|
|
|
|
command register */
|
|
|
|
|
if (off >= 0x10)
|
|
|
|
|
asic_write(dev, off - 0x10, val, len);
|
|
|
|
|
else if (off == 0x00)
|
|
|
|
|
dp8390_write_cr(dev->dp8390, val);
|
|
|
|
|
else switch(dev->dp8390->CR.pgsel) {
|
2017-05-09 22:09:55 -04:00
|
|
|
case 0x00:
|
2018-10-19 00:37:25 +02:00
|
|
|
dp8390_page0_write(dev->dp8390, off, val, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
|
|
|
|
case 0x01:
|
2018-10-19 00:37:25 +02:00
|
|
|
dp8390_page1_write(dev->dp8390, off, val, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
|
|
|
|
case 0x02:
|
2018-10-19 00:37:25 +02:00
|
|
|
dp8390_page2_write(dev->dp8390, off, val, len);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
|
|
|
|
case 0x03:
|
|
|
|
|
page3_write(dev, off, val, len);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(3, "%s: unknown value of pgsel in write - %d\n",
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->name, dev->dp8390->CR.pgsel);
|
2017-05-09 22:09:55 -04:00
|
|
|
break;
|
2018-07-19 16:01:31 +02:00
|
|
|
}
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_writeb(uint16_t addr, uint8_t val, void *priv)
|
2017-05-09 22:09:55 -04:00
|
|
|
{
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_write((nic_t *)priv, addr, val, 1);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_writew(uint16_t addr, uint16_t val, void *priv)
|
2017-05-09 22:09:55 -04:00
|
|
|
{
|
2018-10-19 00:37:25 +02:00
|
|
|
nic_write((nic_t *)priv, addr, val, 2);
|
2016-08-13 03:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_writel(uint16_t addr, uint32_t val, void *priv)
|
2016-08-13 03:32:38 +02:00
|
|
|
{
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_write((nic_t *)priv, addr, val, 4);
|
2016-08-13 03:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2018-01-28 03:15:01 +01:00
|
|
|
static void nic_iocheckset(nic_t *dev, uint16_t addr);
|
|
|
|
|
static void nic_iocheckremove(nic_t *dev, uint16_t addr);
|
|
|
|
|
static void nic_ioset(nic_t *dev, uint16_t addr);
|
|
|
|
|
static void nic_ioremove(nic_t *dev, uint16_t addr);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static uint8_t
|
|
|
|
|
nic_pnp_io_check_readb(uint16_t addr, void *priv)
|
|
|
|
|
{
|
|
|
|
|
nic_t *dev = (nic_t *) priv;
|
|
|
|
|
|
|
|
|
|
return((dev->pnp_io_check & 0x01) ? 0x55 : 0xAA);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static uint8_t
|
|
|
|
|
nic_pnp_readb(uint16_t addr, void *priv)
|
|
|
|
|
{
|
|
|
|
|
nic_t *dev = (nic_t *) priv;
|
|
|
|
|
uint8_t bit, next_shift;
|
|
|
|
|
uint8_t ret = 0xFF;
|
|
|
|
|
|
|
|
|
|
/* Plug and Play Registers */
|
|
|
|
|
switch(dev->pnp_address) {
|
|
|
|
|
/* Card Control Registers */
|
|
|
|
|
case 0x01: /* Serial Isolation */
|
|
|
|
|
if (dev->pnp_phase != PNP_PHASE_ISOLATION) {
|
|
|
|
|
ret = 0x00;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (dev->pnp_serial_read_pair) {
|
|
|
|
|
dev->pnp_serial_read <<= 1;
|
|
|
|
|
/* TODO: Support for multiple PnP devices.
|
|
|
|
|
if (pnp_get_bus_data() != dev->pnp_serial_read)
|
|
|
|
|
dev->pnp_phase = PNP_PHASE_SLEEP;
|
|
|
|
|
} else {
|
|
|
|
|
*/
|
|
|
|
|
if (!dev->pnp_serial_read_pos) {
|
|
|
|
|
dev->pnp_res_pos = 0x1B;
|
|
|
|
|
dev->pnp_phase = PNP_PHASE_CONFIG;
|
|
|
|
|
nelog(1, "\nASSIGN CSN phase\n");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (dev->pnp_serial_read_pos < 64) {
|
|
|
|
|
bit = (dev->pnp_id >> dev->pnp_serial_read_pos) & 0x01;
|
|
|
|
|
next_shift = (!!(dev->pnp_id_checksum & 0x02) ^ !!(dev->pnp_id_checksum & 0x01) ^ bit) & 0x01;
|
|
|
|
|
dev->pnp_id_checksum >>= 1;
|
|
|
|
|
dev->pnp_id_checksum |= (next_shift << 7);
|
|
|
|
|
} else {
|
|
|
|
|
if (dev->pnp_serial_read_pos == 64)
|
|
|
|
|
dev->eeprom[0x1A] = dev->pnp_id_checksum;
|
|
|
|
|
bit = (dev->pnp_id_checksum >> (dev->pnp_serial_read_pos & 0x07)) & 0x01;
|
|
|
|
|
}
|
|
|
|
|
dev->pnp_serial_read = bit ? 0x55 : 0x00;
|
|
|
|
|
dev->pnp_serial_read_pos = (dev->pnp_serial_read_pos + 1) % 72;
|
|
|
|
|
}
|
|
|
|
|
dev->pnp_serial_read_pair ^= 1;
|
|
|
|
|
ret = dev->pnp_serial_read;
|
|
|
|
|
break;
|
|
|
|
|
case 0x04: /* Resource Data */
|
|
|
|
|
ret = dev->eeprom[dev->pnp_res_pos];
|
|
|
|
|
dev->pnp_res_pos++;
|
|
|
|
|
break;
|
|
|
|
|
case 0x05: /* Status */
|
|
|
|
|
ret = 0x01;
|
|
|
|
|
break;
|
|
|
|
|
case 0x06: /* Card Select Number (CSN) */
|
|
|
|
|
nelog(1, "Card Select Number (CSN)\n");
|
|
|
|
|
ret = dev->pnp_csn;
|
|
|
|
|
break;
|
|
|
|
|
case 0x07: /* Logical Device Number */
|
|
|
|
|
nelog(1, "Logical Device Number\n");
|
|
|
|
|
ret = 0x00;
|
|
|
|
|
break;
|
|
|
|
|
case 0x30: /* Activate */
|
|
|
|
|
nelog(1, "Activate\n");
|
|
|
|
|
ret = dev->pnp_activate;
|
|
|
|
|
break;
|
|
|
|
|
case 0x31: /* I/O Range Check */
|
|
|
|
|
nelog(1, "I/O Range Check\n");
|
|
|
|
|
ret = dev->pnp_io_check;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* Logical Device Configuration Registers */
|
|
|
|
|
/* Memory Configuration Registers
|
|
|
|
|
We currently force them to stay 0x00 because we currently do not
|
|
|
|
|
support a RTL8019AS BIOS. */
|
|
|
|
|
case 0x40: /* BROM base address bits[23:16] */
|
|
|
|
|
case 0x41: /* BROM base address bits[15:0] */
|
|
|
|
|
case 0x42: /* Memory Control */
|
|
|
|
|
ret = 0x00;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* I/O Configuration Registers */
|
|
|
|
|
case 0x60: /* I/O base address bits[15:8] */
|
|
|
|
|
ret = (dev->base_address >> 8);
|
|
|
|
|
break;
|
|
|
|
|
case 0x61: /* I/O base address bits[7:0] */
|
|
|
|
|
ret = (dev->base_address & 0xFF);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* Interrupt Configuration Registers */
|
|
|
|
|
case 0x70: /* IRQ level */
|
|
|
|
|
ret = dev->base_irq;
|
|
|
|
|
break;
|
|
|
|
|
case 0x71: /* IRQ type */
|
|
|
|
|
ret = 0x02; /* high, edge */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* DMA Configuration Registers */
|
|
|
|
|
case 0x74: /* DMA channel select 0 */
|
|
|
|
|
case 0x75: /* DMA channel select 1 */
|
|
|
|
|
ret = 0x04; /* indicating no DMA channel is needed */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* Vendor Defined Registers */
|
|
|
|
|
case 0xF0: /* CONFIG0 */
|
|
|
|
|
case 0xF1: /* CONFIG1 */
|
|
|
|
|
ret = 0x00;
|
|
|
|
|
break;
|
|
|
|
|
case 0xF2: /* CONFIG2 */
|
|
|
|
|
ret = (dev->config2 & 0xe0);
|
|
|
|
|
break;
|
|
|
|
|
case 0xF3: /* CONFIG3 */
|
|
|
|
|
ret = (dev->config3 & 0x46);
|
|
|
|
|
break;
|
|
|
|
|
case 0xF5: /* CSNSAV */
|
|
|
|
|
ret = (dev->pnp_csnsav);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nelog(1, "nic_pnp_readb(%04X) = %02X\n", addr, ret);
|
|
|
|
|
return(ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void nic_pnp_io_set(nic_t *dev, uint16_t read_addr);
|
|
|
|
|
static void nic_pnp_io_remove(nic_t *dev);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nic_pnp_writeb(uint16_t addr, uint8_t val, void *priv)
|
|
|
|
|
{
|
|
|
|
|
nic_t *dev = (nic_t *) priv;
|
|
|
|
|
uint16_t new_addr = 0;
|
|
|
|
|
|
|
|
|
|
nelog(1, "nic_pnp_writeb(%04X, %02X)\n", addr, val);
|
|
|
|
|
|
|
|
|
|
/* Plug and Play Registers */
|
|
|
|
|
switch(dev->pnp_address) {
|
|
|
|
|
/* Card Control Registers */
|
|
|
|
|
case 0x00: /* Set RD_DATA port */
|
|
|
|
|
new_addr = val;
|
|
|
|
|
new_addr <<= 2;
|
|
|
|
|
new_addr |= 3;
|
|
|
|
|
nic_pnp_io_remove(dev);
|
|
|
|
|
nic_pnp_io_set(dev, new_addr);
|
|
|
|
|
nelog(1, "PnP read data address now: %04X\n", new_addr);
|
|
|
|
|
break;
|
|
|
|
|
case 0x02: /* Config Control */
|
|
|
|
|
if (val & 0x01) {
|
|
|
|
|
/* Reset command */
|
|
|
|
|
nic_pnp_io_remove(dev);
|
|
|
|
|
memset(dev->pnp_regs, 0, 256);
|
|
|
|
|
nelog(1, "All logical devices reset\n");
|
|
|
|
|
}
|
|
|
|
|
if (val & 0x02) {
|
|
|
|
|
/* Wait for Key command */
|
|
|
|
|
dev->pnp_phase = PNP_PHASE_WAIT_FOR_KEY;
|
|
|
|
|
nelog(1, "WAIT FOR KEY phase\n");
|
|
|
|
|
}
|
|
|
|
|
if (val & 0x04) {
|
|
|
|
|
/* PnP Reset CSN command */
|
|
|
|
|
dev->pnp_csn = dev->pnp_csnsav = 0;
|
|
|
|
|
nelog(1, "CSN reset\n");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 0x03: /* Wake[CSN] */
|
|
|
|
|
nelog(1, "Wake[%02X]\n", val);
|
|
|
|
|
if (val == dev->pnp_csn) {
|
|
|
|
|
dev->pnp_res_pos = 0x12;
|
|
|
|
|
dev->pnp_id_checksum = 0x6A;
|
|
|
|
|
if (dev->pnp_phase == PNP_PHASE_SLEEP) {
|
|
|
|
|
dev->pnp_phase = val ? PNP_PHASE_CONFIG : PNP_PHASE_ISOLATION;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if ((dev->pnp_phase == PNP_PHASE_CONFIG) || (dev->pnp_phase == PNP_PHASE_ISOLATION))
|
|
|
|
|
dev->pnp_phase = PNP_PHASE_SLEEP;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 0x06: /* Card Select Number (CSN) */
|
|
|
|
|
dev->pnp_csn = dev->pnp_csnsav = val;
|
|
|
|
|
dev->pnp_phase = PNP_PHASE_CONFIG;
|
|
|
|
|
nelog(1, "CSN set to %02X\n", dev->pnp_csn);
|
|
|
|
|
break;
|
|
|
|
|
case 0x30: /* Activate */
|
|
|
|
|
if ((dev->pnp_activate ^ val) & 0x01) {
|
|
|
|
|
nic_ioremove(dev, dev->base_address);
|
|
|
|
|
if (val & 0x01)
|
|
|
|
|
nic_ioset(dev, dev->base_address);
|
|
|
|
|
|
|
|
|
|
nelog(1, "I/O range %sabled\n", val & 0x02 ? "en" : "dis");
|
|
|
|
|
}
|
|
|
|
|
dev->pnp_activate = val;
|
|
|
|
|
break;
|
|
|
|
|
case 0x31: /* I/O Range Check */
|
|
|
|
|
if ((dev->pnp_io_check ^ val) & 0x02) {
|
|
|
|
|
nic_iocheckremove(dev, dev->base_address);
|
|
|
|
|
if (val & 0x02)
|
|
|
|
|
nic_iocheckset(dev, dev->base_address);
|
|
|
|
|
|
|
|
|
|
nelog(1, "I/O range check %sabled\n", val & 0x02 ? "en" : "dis");
|
|
|
|
|
}
|
|
|
|
|
dev->pnp_io_check = val;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* Logical Device Configuration Registers */
|
|
|
|
|
/* Memory Configuration Registers
|
|
|
|
|
We currently force them to stay 0x00 because we currently do not
|
|
|
|
|
support a RTL8019AS BIOS. */
|
|
|
|
|
|
|
|
|
|
/* I/O Configuration Registers */
|
|
|
|
|
case 0x60: /* I/O base address bits[15:8] */
|
|
|
|
|
if ((dev->pnp_activate & 0x01) || (dev->pnp_io_check & 0x02))
|
|
|
|
|
nic_ioremove(dev, dev->base_address);
|
|
|
|
|
dev->base_address &= 0x00ff;
|
|
|
|
|
dev->base_address |= (((uint16_t) val) << 8);
|
|
|
|
|
if ((dev->pnp_activate & 0x01) || (dev->pnp_io_check & 0x02))
|
|
|
|
|
nic_ioset(dev, dev->base_address);
|
|
|
|
|
nelog(1, "Base address now: %04X\n", dev->base_address);
|
|
|
|
|
break;
|
|
|
|
|
case 0x61: /* I/O base address bits[7:0] */
|
|
|
|
|
if ((dev->pnp_activate & 0x01) || (dev->pnp_io_check & 0x02))
|
|
|
|
|
nic_ioremove(dev, dev->base_address);
|
|
|
|
|
dev->base_address &= 0xff00;
|
|
|
|
|
dev->base_address |= val;
|
|
|
|
|
if ((dev->pnp_activate & 0x01) || (dev->pnp_io_check & 0x02))
|
|
|
|
|
nic_ioset(dev, dev->base_address);
|
|
|
|
|
nelog(1, "Base address now: %04X\n", dev->base_address);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* Interrupt Configuration Registers */
|
|
|
|
|
case 0x70: /* IRQ level */
|
|
|
|
|
dev->base_irq = val;
|
|
|
|
|
nelog(1, "IRQ now: %02i\n", dev->base_irq);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* Vendor Defined Registers */
|
|
|
|
|
case 0xF6: /* Vendor Control */
|
|
|
|
|
dev->pnp_csn = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nic_pnp_io_set(nic_t *dev, uint16_t read_addr)
|
|
|
|
|
{
|
|
|
|
|
if ((read_addr >= 0x0200) && (read_addr <= 0x03FF)) {
|
|
|
|
|
io_sethandler(read_addr, 1,
|
|
|
|
|
nic_pnp_readb, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, dev);
|
|
|
|
|
}
|
|
|
|
|
dev->pnp_read = read_addr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nic_pnp_io_remove(nic_t *dev)
|
|
|
|
|
{
|
2018-02-02 00:14:17 +01:00
|
|
|
if ((dev->pnp_read >= 0x0200) && (dev->pnp_read <= 0x03FF)) {
|
|
|
|
|
io_removehandler(dev->pnp_read, 1,
|
|
|
|
|
nic_pnp_readb, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, dev);
|
|
|
|
|
}
|
2018-01-28 03:15:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nic_pnp_address_writeb(uint16_t addr, uint8_t val, void *priv)
|
|
|
|
|
{
|
|
|
|
|
nic_t *dev = (nic_t *) priv;
|
|
|
|
|
|
|
|
|
|
/* nelog(1, "nic_pnp_address_writeb(%04X, %02X)\n", addr, val); */
|
|
|
|
|
|
|
|
|
|
switch(dev->pnp_phase) {
|
|
|
|
|
case PNP_PHASE_WAIT_FOR_KEY:
|
|
|
|
|
if (val == pnp_init_key[dev->pnp_magic_count]) {
|
|
|
|
|
dev->pnp_magic_count = (dev->pnp_magic_count + 1) & 0x1f;
|
2018-02-02 00:14:17 +01:00
|
|
|
if (!dev->pnp_magic_count)
|
2018-01-28 03:15:01 +01:00
|
|
|
dev->pnp_phase = PNP_PHASE_SLEEP;
|
|
|
|
|
} else
|
|
|
|
|
dev->pnp_magic_count = 0;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
dev->pnp_address = val;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nic_iocheckset(nic_t *dev, uint16_t addr)
|
|
|
|
|
{
|
|
|
|
|
io_sethandler(addr, 32,
|
|
|
|
|
nic_pnp_io_check_readb, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, dev);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nic_iocheckremove(nic_t *dev, uint16_t addr)
|
|
|
|
|
{
|
|
|
|
|
io_removehandler(addr, 32,
|
|
|
|
|
nic_pnp_io_check_readb, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, dev);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_ioset(nic_t *dev, uint16_t addr)
|
2017-05-09 22:09:55 -04:00
|
|
|
{
|
2018-08-11 17:48:51 +02:00
|
|
|
if (dev->is_pci) {
|
2018-07-19 16:01:31 +02:00
|
|
|
io_sethandler(addr, 16,
|
|
|
|
|
nic_readb, nic_readw, nic_readl,
|
|
|
|
|
nic_writeb, nic_writew, nic_writel, dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
io_sethandler(addr+16, 16,
|
2018-07-19 16:01:31 +02:00
|
|
|
nic_readb, nic_readw, nic_readl,
|
|
|
|
|
nic_writeb, nic_writew, nic_writel, dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
io_sethandler(addr+0x1f, 1,
|
2018-07-19 16:01:31 +02:00
|
|
|
nic_readb, nic_readw, nic_readl,
|
|
|
|
|
nic_writeb, nic_writew, nic_writel, dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
} else {
|
|
|
|
|
io_sethandler(addr, 16,
|
2018-07-19 16:01:31 +02:00
|
|
|
nic_readb, NULL, NULL,
|
|
|
|
|
nic_writeb, NULL, NULL, dev);
|
2018-01-28 03:15:01 +01:00
|
|
|
if (dev->is_8bit) {
|
|
|
|
|
io_sethandler(addr+16, 16,
|
2018-07-19 16:01:31 +02:00
|
|
|
nic_readb, NULL, NULL,
|
|
|
|
|
nic_writeb, NULL, NULL, dev);
|
2018-01-28 03:15:01 +01:00
|
|
|
} else {
|
|
|
|
|
io_sethandler(addr+16, 16,
|
2018-07-19 16:01:31 +02:00
|
|
|
nic_readb, nic_readw, NULL,
|
|
|
|
|
nic_writeb, nic_writew, NULL, dev);
|
2018-01-28 03:15:01 +01:00
|
|
|
}
|
2017-05-09 22:09:55 -04:00
|
|
|
io_sethandler(addr+0x1f, 1,
|
2018-07-19 16:01:31 +02:00
|
|
|
nic_readb, NULL, NULL,
|
|
|
|
|
nic_writeb, NULL, NULL, dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2016-08-13 03:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
|
|
|
|
|
static void
|
2018-01-28 03:15:01 +01:00
|
|
|
nic_ioremove(nic_t *dev, uint16_t addr)
|
2016-08-13 03:32:38 +02:00
|
|
|
{
|
2018-08-11 17:48:51 +02:00
|
|
|
if (dev->is_pci) {
|
2017-05-09 22:09:55 -04:00
|
|
|
io_removehandler(addr, 16,
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_readb, nic_readw, nic_readl,
|
|
|
|
|
nic_writeb, nic_writew, nic_writel, dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
io_removehandler(addr+16, 16,
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_readb, nic_readw, nic_readl,
|
|
|
|
|
nic_writeb, nic_writew, nic_writel, dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
io_removehandler(addr+0x1f, 1,
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_readb, nic_readw, nic_readl,
|
|
|
|
|
nic_writeb, nic_writew, nic_writel, dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
} else {
|
|
|
|
|
io_removehandler(addr, 16,
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_readb, NULL, NULL,
|
|
|
|
|
nic_writeb, NULL, NULL, dev);
|
2018-01-28 03:15:01 +01:00
|
|
|
if (dev->is_8bit) {
|
|
|
|
|
io_removehandler(addr+16, 16,
|
|
|
|
|
nic_readb, NULL, NULL,
|
|
|
|
|
nic_writeb, NULL, NULL, dev);
|
|
|
|
|
} else {
|
|
|
|
|
io_removehandler(addr+16, 16,
|
|
|
|
|
nic_readb, nic_readw, NULL,
|
|
|
|
|
nic_writeb, nic_writew, NULL, dev);
|
|
|
|
|
}
|
2017-05-09 22:09:55 -04:00
|
|
|
io_removehandler(addr+0x1f, 1,
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_readb, NULL, NULL,
|
|
|
|
|
nic_writeb, NULL, NULL, dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2016-08-13 03:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_update_bios(nic_t *dev)
|
2016-08-13 03:32:38 +02:00
|
|
|
{
|
2017-05-09 22:09:55 -04:00
|
|
|
int reg_bios_enable;
|
|
|
|
|
|
|
|
|
|
reg_bios_enable = 1;
|
2017-08-17 23:16:26 +02:00
|
|
|
|
2017-10-07 00:46:54 -04:00
|
|
|
if (! dev->has_bios) return;
|
2017-08-17 23:16:26 +02:00
|
|
|
|
2018-10-02 22:54:28 +02:00
|
|
|
if (dev->is_pci)
|
2017-08-17 23:16:26 +02:00
|
|
|
reg_bios_enable = dev->pci_bar[1].addr_regs[0] & 0x01;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
|
|
|
|
/* PCI BIOS stuff, just enable_disable. */
|
2017-08-17 23:16:26 +02:00
|
|
|
if (reg_bios_enable) {
|
2017-05-24 00:27:42 -04:00
|
|
|
mem_mapping_set_addr(&dev->bios_rom.mapping,
|
|
|
|
|
dev->bios_addr, dev->bios_size);
|
|
|
|
|
nelog(1, "%s: BIOS now at: %06X\n", dev->name, dev->bios_addr);
|
2017-05-09 22:09:55 -04:00
|
|
|
} else {
|
2017-05-26 13:12:31 -04:00
|
|
|
nelog(1, "%s: BIOS disabled\n", dev->name);
|
2017-05-09 22:09:55 -04:00
|
|
|
mem_mapping_disable(&dev->bios_rom.mapping);
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-05 01:49:42 +02:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static uint8_t
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_pci_read(int func, int addr, void *priv)
|
2017-05-09 22:09:55 -04:00
|
|
|
{
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_t *dev = (nic_t *)priv;
|
2017-05-26 13:12:31 -04:00
|
|
|
uint8_t ret = 0x00;
|
2017-05-12 05:05:20 -04:00
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
switch(addr) {
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x00: /* PCI_VID_LO */
|
|
|
|
|
case 0x01: /* PCI_VID_HI */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x02: /* PCI_DID_LO */
|
|
|
|
|
case 0x03: /* PCI_DID_HI */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x04: /* PCI_COMMAND_LO */
|
|
|
|
|
case 0x05: /* PCI_COMMAND_HI */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x06: /* PCI_STATUS_LO */
|
|
|
|
|
case 0x07: /* PCI_STATUS_HI */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x08: /* PCI_REVID */
|
|
|
|
|
ret = 0x00; /* Rev. 00 */
|
|
|
|
|
break;
|
|
|
|
|
case 0x09: /* PCI_PIFR */
|
|
|
|
|
ret = 0x00; /* Rev. 00 */
|
|
|
|
|
break;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x0A: /* PCI_SCR */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0B: /* PCI_BCR */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x10: /* PCI_BAR 7:5 */
|
2017-08-29 22:58:21 +02:00
|
|
|
ret = (dev->pci_bar[0].addr_regs[0] & 0xe0) | 0x01;
|
2017-05-26 13:12:31 -04:00
|
|
|
break;
|
|
|
|
|
case 0x11: /* PCI_BAR 15:8 */
|
|
|
|
|
ret = dev->pci_bar[0].addr_regs[1];
|
|
|
|
|
break;
|
|
|
|
|
case 0x12: /* PCI_BAR 23:16 */
|
|
|
|
|
ret = dev->pci_bar[0].addr_regs[2];
|
|
|
|
|
break;
|
|
|
|
|
case 0x13: /* PCI_BAR 31:24 */
|
|
|
|
|
ret = dev->pci_bar[0].addr_regs[3];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x2C: /* PCI_SVID_LO */
|
|
|
|
|
case 0x2D: /* PCI_SVID_HI */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x2E: /* PCI_SID_LO */
|
|
|
|
|
case 0x2F: /* PCI_SID_HI */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x30: /* PCI_ROMBAR */
|
|
|
|
|
ret = dev->pci_bar[1].addr_regs[0] & 0x01;
|
|
|
|
|
break;
|
|
|
|
|
case 0x31: /* PCI_ROMBAR 15:11 */
|
2017-08-28 06:50:13 +02:00
|
|
|
ret = dev->pci_bar[1].addr_regs[1] & 0x80;
|
2017-05-26 13:12:31 -04:00
|
|
|
break;
|
|
|
|
|
case 0x32: /* PCI_ROMBAR 23:16 */
|
|
|
|
|
ret = dev->pci_bar[1].addr_regs[2];
|
|
|
|
|
break;
|
|
|
|
|
case 0x33: /* PCI_ROMBAR 31:24 */
|
|
|
|
|
ret = dev->pci_bar[1].addr_regs[3];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x3C: /* PCI_ILR */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x3D: /* PCI_IPR */
|
|
|
|
|
ret = dev->pci_regs[addr];
|
|
|
|
|
break;
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
|
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
nelog(2, "%s: PCI_Read(%d, %04x) = %02x\n", dev->name, func, addr, ret);
|
|
|
|
|
|
|
|
|
|
return(ret);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
2017-02-07 02:19:48 +01:00
|
|
|
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_pci_write(int func, int addr, uint8_t val, void *priv)
|
2017-05-09 22:09:55 -04:00
|
|
|
{
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_t *dev = (nic_t *)priv;
|
2017-06-19 22:18:35 +02:00
|
|
|
uint8_t valxor;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
nelog(2, "%s: PCI_Write(%d, %04x, %02x)\n", dev->name, func, addr, val);
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
switch(addr) {
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x04: /* PCI_COMMAND_LO */
|
2017-08-28 06:50:13 +02:00
|
|
|
valxor = (val & 0x03) ^ dev->pci_regs[addr];
|
2017-06-19 22:18:35 +02:00
|
|
|
if (valxor & PCI_COMMAND_IO)
|
|
|
|
|
{
|
|
|
|
|
nic_ioremove(dev, dev->base_address);
|
|
|
|
|
if ((dev->base_address != 0) && (val & PCI_COMMAND_IO))
|
|
|
|
|
{
|
|
|
|
|
nic_ioset(dev, dev->base_address);
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-08-28 06:50:13 +02:00
|
|
|
dev->pci_regs[addr] = val & 0x03;
|
2017-05-26 13:12:31 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x10: /* PCI_BAR */
|
2017-08-28 06:50:13 +02:00
|
|
|
val &= 0xe0; /* 0xe0 acc to RTL DS */
|
2017-05-26 13:12:31 -04:00
|
|
|
val |= 0x01; /* re-enable IOIN bit */
|
|
|
|
|
/*FALLTHROUGH*/
|
|
|
|
|
|
2017-06-16 06:44:11 +02:00
|
|
|
case 0x11: /* PCI_BAR */
|
|
|
|
|
case 0x12: /* PCI_BAR */
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x13: /* PCI_BAR */
|
|
|
|
|
/* Remove old I/O. */
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_ioremove(dev, dev->base_address);
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
/* Set new I/O as per PCI request. */
|
2017-05-12 17:33:28 -04:00
|
|
|
dev->pci_bar[0].addr_regs[addr & 3] = val;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
|
|
|
|
/* Then let's calculate the new I/O base. */
|
2017-05-26 13:12:31 -04:00
|
|
|
dev->base_address = dev->pci_bar[0].addr & 0xffe0;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
|
|
|
|
/* Log the new base. */
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(1, "%s: PCI: new I/O base is %04X\n",
|
2017-05-12 05:05:20 -04:00
|
|
|
dev->name, dev->base_address);
|
2017-05-09 22:09:55 -04:00
|
|
|
/* We're done, so get out of the here. */
|
2017-06-19 22:18:35 +02:00
|
|
|
if (dev->pci_regs[4] & PCI_COMMAND_IO)
|
|
|
|
|
{
|
|
|
|
|
if (dev->base_address != 0)
|
|
|
|
|
{
|
|
|
|
|
nic_ioset(dev, dev->base_address);
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-26 13:12:31 -04:00
|
|
|
break;
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x30: /* PCI_ROMBAR */
|
|
|
|
|
case 0x31: /* PCI_ROMBAR */
|
|
|
|
|
case 0x32: /* PCI_ROMBAR */
|
|
|
|
|
case 0x33: /* PCI_ROMBAR */
|
2017-05-12 17:33:28 -04:00
|
|
|
dev->pci_bar[1].addr_regs[addr & 3] = val;
|
2017-08-28 06:50:13 +02:00
|
|
|
/* dev->pci_bar[1].addr_regs[1] &= dev->bios_mask; */
|
|
|
|
|
dev->pci_bar[1].addr &= 0xffff8001;
|
2017-05-24 00:27:42 -04:00
|
|
|
dev->bios_addr = dev->pci_bar[1].addr;
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_update_bios(dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
return;
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
case 0x3C: /* PCI_ILR */
|
2017-06-04 02:59:30 +02:00
|
|
|
nelog(1, "%s: IRQ now: %i\n", dev->name, val);
|
|
|
|
|
dev->base_irq = val;
|
2017-05-26 13:12:31 -04:00
|
|
|
dev->pci_regs[addr] = dev->base_irq;
|
2017-05-09 22:09:55 -04:00
|
|
|
return;
|
2017-05-26 13:12:31 -04:00
|
|
|
}
|
2016-06-26 00:34:39 +02:00
|
|
|
}
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
|
|
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_rom_init(nic_t *dev, wchar_t *s)
|
2016-06-26 00:34:39 +02:00
|
|
|
{
|
2017-05-09 22:09:55 -04:00
|
|
|
uint32_t temp;
|
2017-05-26 13:12:31 -04:00
|
|
|
FILE *f;
|
2016-06-26 00:34:39 +02:00
|
|
|
|
2017-10-07 00:46:54 -04:00
|
|
|
if (s == NULL) return;
|
|
|
|
|
|
|
|
|
|
if (dev->bios_addr == 0) return;
|
|
|
|
|
|
|
|
|
|
if ((f = rom_fopen(s, L"rb")) != NULL) {
|
|
|
|
|
fseek(f, 0L, SEEK_END);
|
|
|
|
|
temp = ftell(f);
|
|
|
|
|
fclose(f);
|
|
|
|
|
dev->bios_size = 0x10000;
|
|
|
|
|
if (temp <= 0x8000)
|
|
|
|
|
dev->bios_size = 0x8000;
|
|
|
|
|
if (temp <= 0x4000)
|
|
|
|
|
dev->bios_size = 0x4000;
|
|
|
|
|
if (temp <= 0x2000)
|
|
|
|
|
dev->bios_size = 0x2000;
|
|
|
|
|
dev->bios_mask = (dev->bios_size >> 8) & 0xff;
|
|
|
|
|
dev->bios_mask = (0x100 - dev->bios_mask) & 0xff;
|
|
|
|
|
} else {
|
|
|
|
|
dev->bios_addr = 0x00000;
|
|
|
|
|
dev->bios_size = 0;
|
2017-06-16 06:44:11 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-07 00:46:54 -04:00
|
|
|
/* Create a memory mapping for the space. */
|
|
|
|
|
rom_init(&dev->bios_rom, s, dev->bios_addr,
|
|
|
|
|
dev->bios_size, dev->bios_size-1, 0, MEM_MAPPING_EXTERNAL);
|
2017-05-17 21:56:31 +02:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
nelog(1, "%s: BIOS configured at %06lX (size %ld)\n",
|
|
|
|
|
dev->name, dev->bios_addr, dev->bios_size);
|
2017-05-17 21:56:31 +02:00
|
|
|
}
|
|
|
|
|
|
2018-07-19 16:01:31 +02:00
|
|
|
static uint8_t
|
|
|
|
|
nic_mca_read(int port, void *priv)
|
|
|
|
|
{
|
|
|
|
|
nic_t *dev = (nic_t *)priv;
|
|
|
|
|
|
|
|
|
|
return(dev->pos_regs[port & 7]);
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-11 17:48:51 +02:00
|
|
|
#define MCA_611F_IO_PORTS { 0x300, 0x340, 0x320, 0x360, 0x1300, 0x1340, \
|
|
|
|
|
0x1320, 0x1360 }
|
2018-07-19 16:01:31 +02:00
|
|
|
|
2018-08-11 17:48:51 +02:00
|
|
|
#define MCA_611F_IRQS { 2, 3, 4, 5, 10, 11, 12, 15 }
|
2018-07-19 16:01:31 +02:00
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nic_mca_write(int port, uint8_t val, void *priv)
|
|
|
|
|
{
|
|
|
|
|
nic_t *dev = (nic_t *)priv;
|
2018-10-19 00:37:25 +02:00
|
|
|
uint16_t base[] = MCA_611F_IO_PORTS;
|
|
|
|
|
int8_t irq[] = MCA_611F_IRQS;
|
2018-07-19 16:01:31 +02:00
|
|
|
|
|
|
|
|
/* MCA does not write registers below 0x0100. */
|
|
|
|
|
if (port < 0x0102) return;
|
|
|
|
|
|
|
|
|
|
/* Save the MCA register value. */
|
|
|
|
|
dev->pos_regs[port & 7] = val;
|
|
|
|
|
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
nic_ioremove(dev, dev->base_address);
|
|
|
|
|
|
2018-07-19 16:01:31 +02:00
|
|
|
/* This is always necessary so that the old handler doesn't remain. */
|
|
|
|
|
/* Get the new assigned I/O base address. */
|
2018-08-11 17:48:51 +02:00
|
|
|
dev->base_address = base[(dev->pos_regs[2] & 0xE0) >> 4];
|
2018-07-19 16:01:31 +02:00
|
|
|
|
|
|
|
|
/* Save the new IRQ values. */
|
2018-08-11 17:48:51 +02:00
|
|
|
dev->base_irq = irq[(dev->pos_regs[2] & 0xE) >> 1];
|
2018-07-19 16:01:31 +02:00
|
|
|
|
|
|
|
|
dev->bios_addr = 0x0000;
|
|
|
|
|
dev->has_bios = 0;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The PS/2 Model 80 BIOS always enables a card if it finds one,
|
|
|
|
|
* even if no resources were assigned yet (because we only added
|
|
|
|
|
* the card, but have not run AutoConfig yet...)
|
|
|
|
|
*
|
|
|
|
|
* So, remove current address, if any.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Initialize the device if fully configured. */
|
|
|
|
|
if (dev->pos_regs[2] & 0x01) {
|
|
|
|
|
/* Card enabled; register (new) I/O handler. */
|
|
|
|
|
|
|
|
|
|
nic_ioset(dev, dev->base_address);
|
2018-08-11 17:48:51 +02:00
|
|
|
|
|
|
|
|
nic_reset(dev);
|
|
|
|
|
|
|
|
|
|
nelog(2, "EtherNext/MC: Port=%04x, IRQ=%d\n", dev->base_address, dev->base_irq);
|
|
|
|
|
|
2018-07-19 16:01:31 +02:00
|
|
|
}
|
|
|
|
|
}
|
2017-05-17 21:56:31 +02:00
|
|
|
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
|
|
|
|
|
static uint8_t
|
|
|
|
|
nic_mca_feedb(void *priv)
|
|
|
|
|
{
|
|
|
|
|
nic_t *dev = (nic_t *)priv;
|
|
|
|
|
|
|
|
|
|
return (dev->pos_regs[2] & 0x01);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
static void *
|
2018-03-19 01:02:04 +01:00
|
|
|
nic_init(const device_t *info)
|
2016-08-13 03:32:38 +02:00
|
|
|
{
|
2017-05-12 05:05:20 -04:00
|
|
|
uint32_t mac;
|
2017-05-26 13:12:31 -04:00
|
|
|
wchar_t *rom;
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_t *dev;
|
2017-10-20 07:00:48 +02:00
|
|
|
#ifdef ENABLE_NIC_LOG
|
2017-05-26 13:12:31 -04:00
|
|
|
int i;
|
2017-10-20 07:00:48 +02:00
|
|
|
#endif
|
2018-03-19 01:02:04 +01:00
|
|
|
int c;
|
|
|
|
|
char *ansi_id = "REALTEK PLUG & PLAY ETHERNET CARD";
|
|
|
|
|
uint64_t *eeprom_pnp_id;
|
2017-05-26 13:12:31 -04:00
|
|
|
|
|
|
|
|
/* Get the desired debug level. */
|
2017-10-19 21:30:31 -04:00
|
|
|
#ifdef ENABLE_NIC_LOG
|
2017-05-26 13:12:31 -04:00
|
|
|
i = device_get_config_int("debug");
|
|
|
|
|
if (i > 0) nic_do_log = i;
|
2017-10-19 21:30:31 -04:00
|
|
|
#endif
|
2017-05-12 05:05:20 -04:00
|
|
|
|
|
|
|
|
dev = malloc(sizeof(nic_t));
|
|
|
|
|
memset(dev, 0x00, sizeof(nic_t));
|
2017-12-10 02:53:10 -05:00
|
|
|
dev->name = info->name;
|
2017-10-07 22:18:30 -04:00
|
|
|
dev->board = info->local;
|
2017-06-16 06:44:11 +02:00
|
|
|
rom = NULL;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2018-01-28 03:15:01 +01:00
|
|
|
if (dev->board >= NE2K_RTL8019AS) {
|
2017-05-09 22:09:55 -04:00
|
|
|
dev->base_address = 0x340;
|
2018-01-28 03:15:01 +01:00
|
|
|
dev->base_irq = 12;
|
|
|
|
|
if (dev->board == NE2K_RTL8029AS) {
|
|
|
|
|
dev->bios_addr = 0xD0000;
|
|
|
|
|
dev->has_bios = device_get_config_int("bios");
|
|
|
|
|
} else {
|
|
|
|
|
dev->bios_addr = 0x00000;
|
|
|
|
|
dev->has_bios = 0;
|
|
|
|
|
}
|
2017-05-26 13:12:31 -04:00
|
|
|
} else {
|
2018-08-11 17:48:51 +02:00
|
|
|
if (dev->board != NE2K_ETHERNEXT_MC) {
|
2018-07-19 16:01:31 +02:00
|
|
|
dev->base_address = device_get_config_hex16("base");
|
|
|
|
|
dev->base_irq = device_get_config_int("irq");
|
|
|
|
|
if (dev->board == NE2K_NE2000) {
|
|
|
|
|
dev->bios_addr = device_get_config_hex20("bios_addr");
|
|
|
|
|
dev->has_bios = !!dev->bios_addr;
|
|
|
|
|
} else {
|
|
|
|
|
dev->bios_addr = 0x00000;
|
|
|
|
|
dev->has_bios = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
mca_add(nic_mca_read, nic_mca_write, nic_mca_feedb, dev);
|
2018-01-28 03:15:01 +01:00
|
|
|
}
|
2017-05-26 13:12:31 -04:00
|
|
|
}
|
2017-05-12 05:05:20 -04:00
|
|
|
|
2017-05-18 01:57:16 -04:00
|
|
|
/* See if we have a local MAC address configured. */
|
2017-05-27 03:53:32 +02:00
|
|
|
mac = device_get_config_mac("mac", -1);
|
2017-05-17 21:56:31 +02:00
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
/* Set up our BIA. */
|
2017-05-12 05:05:20 -04:00
|
|
|
if (mac & 0xff000000) {
|
2017-05-26 13:12:31 -04:00
|
|
|
/* Generate new local MAC. */
|
2017-09-04 01:52:29 -04:00
|
|
|
dev->maclocal[3] = random_generate();
|
|
|
|
|
dev->maclocal[4] = random_generate();
|
|
|
|
|
dev->maclocal[5] = random_generate();
|
2017-05-26 13:12:31 -04:00
|
|
|
mac = (((int) dev->maclocal[3]) << 16);
|
|
|
|
|
mac |= (((int) dev->maclocal[4]) << 8);
|
|
|
|
|
mac |= ((int) dev->maclocal[5]);
|
2017-05-27 03:53:32 +02:00
|
|
|
device_set_config_mac("mac", mac);
|
2017-05-12 05:05:20 -04:00
|
|
|
} else {
|
2017-05-18 01:57:16 -04:00
|
|
|
dev->maclocal[3] = (mac>>16) & 0xff;
|
|
|
|
|
dev->maclocal[4] = (mac>>8) & 0xff;
|
2017-05-26 13:12:31 -04:00
|
|
|
dev->maclocal[5] = (mac & 0xff);
|
2017-05-12 05:05:20 -04:00
|
|
|
}
|
2018-10-19 00:37:25 +02:00
|
|
|
|
|
|
|
|
dev->dp8390 = device_add(&dp8390_device);
|
|
|
|
|
dev->dp8390->priv = dev;
|
|
|
|
|
dev->dp8390->interrupt = nic_interrupt;
|
|
|
|
|
|
|
|
|
|
memcpy(dev->dp8390->physaddr, dev->maclocal, sizeof(dev->maclocal));
|
2017-05-12 05:05:20 -04:00
|
|
|
|
2018-08-11 17:48:51 +02:00
|
|
|
nelog(2, "%s: I/O=%04x, IRQ=%d, MAC=%02x:%02x:%02x:%02x:%02x:%02x\n",
|
2017-05-12 05:05:20 -04:00
|
|
|
dev->name, dev->base_address, dev->base_irq,
|
2018-10-19 00:37:25 +02:00
|
|
|
dev->dp8390->physaddr[0], dev->dp8390->physaddr[1], dev->dp8390->physaddr[2],
|
|
|
|
|
dev->dp8390->physaddr[3], dev->dp8390->physaddr[4], dev->dp8390->physaddr[5]);
|
|
|
|
|
|
|
|
|
|
switch(dev->board) {
|
|
|
|
|
case NE2K_NE1000:
|
|
|
|
|
dev->is_8bit = 1;
|
|
|
|
|
dp8390_set_defaults(dev->dp8390, DP8390_FLAG_CHECK_CR | DP8390_FLAG_CLEAR_IRQ);
|
2018-10-20 17:13:01 +02:00
|
|
|
dp8390_mem_alloc(dev->dp8390, 0x2000, 0x2000);
|
2018-10-19 00:37:25 +02:00
|
|
|
/*FALLTHROUGH*/
|
|
|
|
|
|
|
|
|
|
case NE2K_NE2000:
|
|
|
|
|
dev->maclocal[0] = 0x00; /* 00:00:D8 (Novell OID) */
|
|
|
|
|
dev->maclocal[1] = 0x00;
|
|
|
|
|
dev->maclocal[2] = 0xD8;
|
|
|
|
|
rom = (dev->board == NE2K_NE1000) ? NULL : ROM_PATH_NE2000;
|
2018-10-20 17:13:01 +02:00
|
|
|
dp8390_set_defaults(dev->dp8390, DP8390_FLAG_EVEN_MAC | DP8390_FLAG_CHECK_CR |
|
2018-10-19 00:37:25 +02:00
|
|
|
DP8390_FLAG_CLEAR_IRQ);
|
2018-10-20 17:13:01 +02:00
|
|
|
dp8390_mem_alloc(dev->dp8390, 0x4000, 0x4000);
|
2018-10-19 00:37:25 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case NE2K_ETHERNEXT_MC:
|
|
|
|
|
dev->maclocal[0] = 0x00; /* 00:00:D8 (Networth Inc. OID) */
|
|
|
|
|
dev->maclocal[1] = 0x00;
|
|
|
|
|
dev->maclocal[2] = 0x79;
|
|
|
|
|
dev->pos_regs[0] = 0x1F;
|
|
|
|
|
dev->pos_regs[1] = 0x61;
|
|
|
|
|
rom = NULL;
|
2018-10-20 17:13:01 +02:00
|
|
|
dp8390_set_defaults(dev->dp8390, DP8390_FLAG_EVEN_MAC | DP8390_FLAG_CHECK_CR |
|
2018-10-19 00:37:25 +02:00
|
|
|
DP8390_FLAG_CLEAR_IRQ);
|
2018-10-20 17:13:01 +02:00
|
|
|
dp8390_mem_alloc(dev->dp8390, 0x4000, 0x4000);
|
2018-10-19 00:37:25 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case NE2K_RTL8019AS:
|
|
|
|
|
case NE2K_RTL8029AS:
|
|
|
|
|
dev->is_pci = (dev->board == NE2K_RTL8029AS) ? 1 : 0;
|
|
|
|
|
dev->maclocal[0] = 0x00; /* 00:E0:4C (Realtek OID) */
|
|
|
|
|
dev->maclocal[1] = 0xE0;
|
|
|
|
|
dev->maclocal[2] = 0x4C;
|
|
|
|
|
rom = (dev->board == NE2K_RTL8019AS) ? ROM_PATH_RTL8019 : ROM_PATH_RTL8029;
|
|
|
|
|
if (dev->is_pci)
|
2018-10-20 17:13:01 +02:00
|
|
|
dp8390_set_defaults(dev->dp8390, DP8390_FLAG_EVEN_MAC);
|
2018-10-19 00:37:25 +02:00
|
|
|
else
|
2018-10-20 17:13:01 +02:00
|
|
|
dp8390_set_defaults(dev->dp8390, DP8390_FLAG_EVEN_MAC | DP8390_FLAG_CLEAR_IRQ);
|
2018-10-19 00:37:25 +02:00
|
|
|
dp8390_set_id(dev->dp8390, 0x50, (dev->board == NE2K_RTL8019AS) ? 0x70 : 0x43);
|
2018-10-20 17:13:01 +02:00
|
|
|
dp8390_mem_alloc(dev->dp8390, 0x4000, 0x8000);
|
2018-10-19 00:37:25 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Make this device known to the I/O system.
|
|
|
|
|
* PnP and PCI devices start with address spaces inactive.
|
|
|
|
|
*/
|
|
|
|
|
if (dev->board < NE2K_RTL8019AS && dev->board != NE2K_ETHERNEXT_MC)
|
|
|
|
|
nic_ioset(dev, dev->base_address);
|
|
|
|
|
|
|
|
|
|
/* Set up our BIOS ROM space, if any. */
|
|
|
|
|
nic_rom_init(dev, rom);
|
2017-05-12 05:05:20 -04:00
|
|
|
|
2018-01-28 03:15:01 +01:00
|
|
|
if (dev->board >= NE2K_RTL8019AS) {
|
|
|
|
|
if (dev->is_pci) {
|
|
|
|
|
/*
|
|
|
|
|
* Configure the PCI space registers.
|
|
|
|
|
*
|
|
|
|
|
* We do this here, so the I/O routines are generic.
|
|
|
|
|
*/
|
|
|
|
|
memset(dev->pci_regs, 0, PCI_REGSIZE);
|
|
|
|
|
|
|
|
|
|
dev->pci_regs[0x00] = (PCI_VENDID&0xff);
|
|
|
|
|
dev->pci_regs[0x01] = (PCI_VENDID>>8);
|
|
|
|
|
dev->pci_regs[0x02] = (PCI_DEVID&0xff);
|
|
|
|
|
dev->pci_regs[0x03] = (PCI_DEVID>>8);
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
dev->pci_regs[0x04] = 0x03; /* IOEN */
|
2018-01-28 03:15:01 +01:00
|
|
|
dev->pci_regs[0x05] = 0x00;
|
2018-03-19 01:02:04 +01:00
|
|
|
dev->pci_regs[0x07] = 0x02; /* DST0, medium devsel */
|
2018-01-28 03:15:01 +01:00
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
dev->pci_regs[0x09] = 0x00; /* PIFR */
|
2018-01-28 03:15:01 +01:00
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
dev->pci_regs[0x0B] = 0x02; /* BCR: Network Controller */
|
|
|
|
|
dev->pci_regs[0x0A] = 0x00; /* SCR: Ethernet */
|
2018-01-28 03:15:01 +01:00
|
|
|
|
|
|
|
|
dev->pci_regs[0x2C] = (PCI_VENDID&0xff);
|
|
|
|
|
dev->pci_regs[0x2D] = (PCI_VENDID>>8);
|
|
|
|
|
dev->pci_regs[0x2E] = (PCI_DEVID&0xff);
|
|
|
|
|
dev->pci_regs[0x2F] = (PCI_DEVID>>8);
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
dev->pci_regs[0x3D] = PCI_INTA; /* PCI_IPR */
|
2018-01-28 03:15:01 +01:00
|
|
|
|
|
|
|
|
/* Enable our address space in PCI. */
|
|
|
|
|
dev->pci_bar[0].addr_regs[0] = 0x01;
|
|
|
|
|
|
|
|
|
|
/* Enable our BIOS space in PCI, if needed. */
|
|
|
|
|
if (dev->bios_addr > 0) {
|
|
|
|
|
dev->pci_bar[1].addr = 0xFFFF8000;
|
|
|
|
|
dev->pci_bar[1].addr_regs[1] = dev->bios_mask;
|
|
|
|
|
} else {
|
|
|
|
|
dev->pci_bar[1].addr = 0;
|
|
|
|
|
dev->bios_size = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mem_mapping_disable(&dev->bios_rom.mapping);
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
/* Add device to the PCI bus, keep its slot number. */
|
|
|
|
|
dev->card = pci_add_card(PCI_ADD_NORMAL,
|
|
|
|
|
nic_pci_read, nic_pci_write, dev);
|
2018-01-28 03:15:01 +01:00
|
|
|
} else {
|
|
|
|
|
io_sethandler(0x0279, 1,
|
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
|
nic_pnp_address_writeb, NULL, NULL, dev);
|
|
|
|
|
|
|
|
|
|
dev->pnp_id = PNP_DEVID;
|
|
|
|
|
dev->pnp_id <<= 32LL;
|
|
|
|
|
dev->pnp_id |= PNP_VENDID;
|
|
|
|
|
dev->pnp_phase = PNP_PHASE_WAIT_FOR_KEY;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize the RTL8029 EEPROM. */
|
|
|
|
|
memset(dev->eeprom, 0x00, sizeof(dev->eeprom));
|
|
|
|
|
|
|
|
|
|
if (dev->board == NE2K_RTL8029AS) {
|
|
|
|
|
memcpy(&dev->eeprom[0x02], dev->maclocal, 6);
|
|
|
|
|
|
|
|
|
|
dev->eeprom[0x76] =
|
|
|
|
|
dev->eeprom[0x7A] =
|
|
|
|
|
dev->eeprom[0x7E] = (PCI_DEVID&0xff);
|
|
|
|
|
dev->eeprom[0x77] =
|
|
|
|
|
dev->eeprom[0x7B] =
|
|
|
|
|
dev->eeprom[0x7F] = (dev->board == NE2K_RTL8019AS) ? (PNP_DEVID>>8) : (PCI_DEVID>>8);
|
|
|
|
|
dev->eeprom[0x78] =
|
|
|
|
|
dev->eeprom[0x7C] = (PCI_VENDID&0xff);
|
|
|
|
|
dev->eeprom[0x79] =
|
|
|
|
|
dev->eeprom[0x7D] = (PCI_VENDID>>8);
|
|
|
|
|
} else {
|
|
|
|
|
eeprom_pnp_id = (uint64_t *) &dev->eeprom[0x12];
|
|
|
|
|
*eeprom_pnp_id = dev->pnp_id;
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
/* TAG: Plug and Play Version Number. */
|
|
|
|
|
dev->eeprom[0x1B] = 0x0A; /* Item byte */
|
|
|
|
|
dev->eeprom[0x1C] = 0x10; /* PnP version */
|
|
|
|
|
dev->eeprom[0x1D] = 0x10; /* Vendor version */
|
|
|
|
|
|
|
|
|
|
/* TAG: ANSI Identifier String. */
|
|
|
|
|
dev->eeprom[0x1E] = 0x82; /* Item byte */
|
|
|
|
|
dev->eeprom[0x1F] = 0x22; /* Length bits 7-0 */
|
|
|
|
|
dev->eeprom[0x20] = 0x00; /* Length bits 15-8 */
|
|
|
|
|
memcpy(&dev->eeprom[0x21], ansi_id, 0x22);
|
|
|
|
|
|
|
|
|
|
/* TAG: Logical Device ID. */
|
|
|
|
|
dev->eeprom[0x43] = 0x16; /* Item byte */
|
|
|
|
|
dev->eeprom[0x44] = 0x4A; /* Logical device ID0 */
|
|
|
|
|
dev->eeprom[0x45] = 0x8C; /* Logical device ID1 */
|
|
|
|
|
dev->eeprom[0x46] = 0x80; /* Logical device ID2 */
|
|
|
|
|
dev->eeprom[0x47] = 0x19; /* Logical device ID3 */
|
|
|
|
|
dev->eeprom[0x48] = 0x02; /* Flag0 (02=BROM/disabled) */
|
|
|
|
|
dev->eeprom[0x49] = 0x00; /* Flag 1 */
|
|
|
|
|
|
|
|
|
|
/* TAG: Compatible Device ID (NE2000) */
|
|
|
|
|
dev->eeprom[0x4A] = 0x1C; /* Item byte */
|
|
|
|
|
dev->eeprom[0x4B] = 0x41; /* Compatible ID0 */
|
|
|
|
|
dev->eeprom[0x4C] = 0xD0; /* Compatible ID1 */
|
|
|
|
|
dev->eeprom[0x4D] = 0x80; /* Compatible ID2 */
|
|
|
|
|
dev->eeprom[0x4E] = 0xD6; /* Compatible ID3 */
|
|
|
|
|
|
|
|
|
|
/* TAG: I/O Format */
|
|
|
|
|
dev->eeprom[0x4F] = 0x47; /* Item byte */
|
|
|
|
|
dev->eeprom[0x50] = 0x00; /* I/O information */
|
|
|
|
|
dev->eeprom[0x51] = 0x20; /* Min. I/O base bits 7-0 */
|
|
|
|
|
dev->eeprom[0x52] = 0x02; /* Min. I/O base bits 15-8 */
|
|
|
|
|
dev->eeprom[0x53] = 0x80; /* Max. I/O base bits 7-0 */
|
|
|
|
|
dev->eeprom[0x54] = 0x03; /* Max. I/O base bits 15-8 */
|
|
|
|
|
dev->eeprom[0x55] = 0x20; /* Base alignment */
|
|
|
|
|
dev->eeprom[0x56] = 0x20; /* Range length */
|
|
|
|
|
|
|
|
|
|
/* TAG: IRQ Format. */
|
|
|
|
|
dev->eeprom[0x57] = 0x23; /* Item byte */
|
|
|
|
|
dev->eeprom[0x58] = 0x38; /* IRQ mask bits 7-0 */
|
|
|
|
|
dev->eeprom[0x59] = 0x9E; /* IRQ mask bits 15-8 */
|
|
|
|
|
dev->eeprom[0x5A] = 0x01; /* IRQ information */
|
|
|
|
|
|
|
|
|
|
/* TAG: END Tag */
|
|
|
|
|
dev->eeprom[0x5B] = 0x79; /* Item byte */
|
|
|
|
|
for (c = 0x1b; c < 0x5c; c++) /* Checksum (2's compl) */
|
2018-01-28 03:15:01 +01:00
|
|
|
dev->eeprom[0x5C] += dev->eeprom[c];
|
|
|
|
|
dev->eeprom[0x5C] = -dev->eeprom[0x5C];
|
|
|
|
|
|
2018-02-02 00:14:17 +01:00
|
|
|
io_sethandler(0x0A79, 1,
|
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
|
nic_pnp_writeb, NULL, NULL, dev);
|
2018-01-28 03:15:01 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-19 00:37:25 +02:00
|
|
|
if (dev->board != NE2K_ETHERNEXT_MC)
|
|
|
|
|
/* Reset the board. */
|
|
|
|
|
nic_reset(dev);
|
2017-05-26 13:12:31 -04:00
|
|
|
|
2017-10-29 04:20:20 -05:00
|
|
|
/* Attach ourselves to the network module. */
|
2020-02-29 19:12:23 +01:00
|
|
|
network_attach(dev->dp8390, dev->dp8390->physaddr, dp8390_rx, NULL);
|
2017-02-07 02:19:48 +01:00
|
|
|
|
2017-05-26 13:12:31 -04:00
|
|
|
nelog(1, "%s: %s attached IO=0x%X IRQ=%d\n", dev->name,
|
2017-05-24 00:27:42 -04:00
|
|
|
dev->is_pci?"PCI":"ISA", dev->base_address, dev->base_irq);
|
2017-05-09 22:09:55 -04:00
|
|
|
|
|
|
|
|
return(dev);
|
2017-02-07 02:19:48 +01:00
|
|
|
}
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
|
|
|
|
|
static void
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_close(void *priv)
|
2017-02-07 02:19:48 +01:00
|
|
|
{
|
2017-05-12 05:05:20 -04:00
|
|
|
nic_t *dev = (nic_t *)priv;
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2017-05-24 00:27:42 -04:00
|
|
|
nelog(1, "%s: closed\n", dev->name);
|
2017-08-24 02:35:04 -04:00
|
|
|
|
|
|
|
|
free(dev);
|
2017-05-09 22:09:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
static const device_config_t ne1000_config[] =
|
2017-05-12 05:05:20 -04:00
|
|
|
{
|
|
|
|
|
{
|
2017-05-27 03:53:32 +02:00
|
|
|
"base", "Address", CONFIG_HEX16, "", 0x300,
|
2017-05-12 05:05:20 -04:00
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
"0x280", 0x280
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"0x300", 0x300
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"0x320", 0x320
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"0x340", 0x340
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"0x360", 0x360
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"0x380", 0x380
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
""
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"irq", "IRQ", CONFIG_SELECTION, "", 3,
|
|
|
|
|
{
|
2018-02-09 22:49:31 +01:00
|
|
|
{
|
|
|
|
|
"IRQ 2", 2
|
|
|
|
|
},
|
2017-05-12 05:05:20 -04:00
|
|
|
{
|
|
|
|
|
"IRQ 3", 3
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"IRQ 5", 5
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"IRQ 7", 7
|
|
|
|
|
},
|
2018-07-19 16:01:31 +02:00
|
|
|
{
|
|
|
|
|
"IRQ 10", 10
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"IRQ 11", 11
|
|
|
|
|
},
|
2017-05-12 05:05:20 -04:00
|
|
|
{
|
|
|
|
|
""
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-05-17 21:56:31 +02:00
|
|
|
{
|
|
|
|
|
"mac", "MAC Address", CONFIG_MAC, "", -1
|
|
|
|
|
},
|
2017-05-12 05:05:20 -04:00
|
|
|
{
|
|
|
|
|
"", "", -1
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
static const device_config_t ne2000_config[] =
|
2016-06-26 00:34:39 +02:00
|
|
|
{
|
2017-02-07 02:19:48 +01:00
|
|
|
{
|
2017-05-27 03:53:32 +02:00
|
|
|
"base", "Address", CONFIG_HEX16, "", 0x300,
|
2017-02-07 02:19:48 +01:00
|
|
|
{
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"0x280", 0x280
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"0x300", 0x300
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"0x320", 0x320
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"0x340", 0x340
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"0x360", 0x360
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"0x380", 0x380
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
""
|
2017-02-07 02:19:48 +01:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"irq", "IRQ", CONFIG_SELECTION, "", 10,
|
2017-02-07 02:19:48 +01:00
|
|
|
{
|
2018-02-09 22:49:31 +01:00
|
|
|
{
|
|
|
|
|
"IRQ 2", 2
|
|
|
|
|
},
|
2017-02-07 02:19:48 +01:00
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"IRQ 3", 3
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"IRQ 5", 5
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"IRQ 7", 7
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"IRQ 10", 10
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"IRQ 11", 11
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
""
|
2017-02-07 02:19:48 +01:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-05-17 21:56:31 +02:00
|
|
|
{
|
|
|
|
|
"mac", "MAC Address", CONFIG_MAC, "", -1
|
|
|
|
|
},
|
2017-02-07 02:19:48 +01:00
|
|
|
{
|
2017-05-27 03:53:32 +02:00
|
|
|
"bios_addr", "BIOS address", CONFIG_HEX20, "", 0,
|
2017-05-24 00:27:42 -04:00
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
"Disabled", 0x00000
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"D000", 0xD0000
|
|
|
|
|
},
|
|
|
|
|
{
|
2017-06-01 21:49:57 -04:00
|
|
|
"D800", 0xD8000
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"C800", 0xC8000
|
2017-05-24 00:27:42 -04:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
""
|
|
|
|
|
}
|
|
|
|
|
},
|
2017-02-07 02:19:48 +01:00
|
|
|
},
|
|
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"", "", -1
|
2017-02-07 02:19:48 +01:00
|
|
|
}
|
2016-06-26 00:34:39 +02:00
|
|
|
};
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
static const device_config_t rtl8019as_config[] =
|
2018-01-28 03:15:01 +01:00
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
"mac", "MAC Address", CONFIG_MAC, "", -1
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"", "", -1
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
static const device_config_t rtl8029as_config[] =
|
2016-06-26 00:34:39 +02:00
|
|
|
{
|
2017-06-01 21:49:57 -04:00
|
|
|
{
|
2017-10-08 05:38:45 +02:00
|
|
|
"bios", "Enable BIOS", CONFIG_BINARY, "", 0
|
2017-06-01 21:49:57 -04:00
|
|
|
},
|
2017-05-17 21:56:31 +02:00
|
|
|
{
|
|
|
|
|
"mac", "MAC Address", CONFIG_MAC, "", -1
|
|
|
|
|
},
|
2017-02-07 02:19:48 +01:00
|
|
|
{
|
2017-05-05 01:49:42 +02:00
|
|
|
"", "", -1
|
2017-02-07 02:19:48 +01:00
|
|
|
}
|
2016-06-26 00:34:39 +02:00
|
|
|
};
|
|
|
|
|
|
2018-07-19 16:01:31 +02:00
|
|
|
static const device_config_t mca_mac_config[] =
|
|
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
"mac", "MAC Address", CONFIG_MAC, "", -1
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"", "", -1
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
const device_t ne1000_device = {
|
2017-05-12 05:05:20 -04:00
|
|
|
"Novell NE1000",
|
2018-01-28 03:15:01 +01:00
|
|
|
DEVICE_ISA,
|
2017-10-07 00:46:54 -04:00
|
|
|
NE2K_NE1000,
|
2017-10-07 22:18:30 -04:00
|
|
|
nic_init, nic_close, NULL,
|
2018-04-26 13:33:29 +02:00
|
|
|
NULL, NULL, NULL,
|
2017-05-12 05:05:20 -04:00
|
|
|
ne1000_config
|
2016-06-26 00:34:39 +02:00
|
|
|
};
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
const device_t ne2000_device = {
|
2017-05-12 05:05:20 -04:00
|
|
|
"Novell NE2000",
|
2018-01-28 03:15:01 +01:00
|
|
|
DEVICE_ISA | DEVICE_AT,
|
2017-10-07 00:46:54 -04:00
|
|
|
NE2K_NE2000,
|
2017-10-07 22:18:30 -04:00
|
|
|
nic_init, nic_close, NULL,
|
2018-04-26 13:33:29 +02:00
|
|
|
NULL, NULL, NULL,
|
2017-05-12 05:05:20 -04:00
|
|
|
ne2000_config
|
|
|
|
|
};
|
2017-05-09 22:09:55 -04:00
|
|
|
|
2018-08-11 17:48:51 +02:00
|
|
|
const device_t ethernext_mc_device = {
|
|
|
|
|
"NetWorth EtherNext/MC",
|
2018-07-19 16:01:31 +02:00
|
|
|
DEVICE_MCA,
|
2018-08-11 17:48:51 +02:00
|
|
|
NE2K_ETHERNEXT_MC,
|
2018-07-19 16:01:31 +02:00
|
|
|
nic_init, nic_close, NULL,
|
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
|
mca_mac_config
|
|
|
|
|
};
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
const device_t rtl8019as_device = {
|
2018-01-28 03:15:01 +01:00
|
|
|
"Realtek RTL8019AS",
|
|
|
|
|
DEVICE_ISA | DEVICE_AT,
|
|
|
|
|
NE2K_RTL8019AS,
|
|
|
|
|
nic_init, nic_close, NULL,
|
2018-04-26 13:33:29 +02:00
|
|
|
NULL, NULL, NULL,
|
2018-01-28 03:15:01 +01:00
|
|
|
rtl8019as_config
|
|
|
|
|
};
|
|
|
|
|
|
2018-03-19 01:02:04 +01:00
|
|
|
const device_t rtl8029as_device = {
|
2017-05-12 05:05:20 -04:00
|
|
|
"Realtek RTL8029AS",
|
2017-10-08 05:38:45 +02:00
|
|
|
DEVICE_PCI,
|
2017-10-07 00:46:54 -04:00
|
|
|
NE2K_RTL8029AS,
|
2017-10-07 22:18:30 -04:00
|
|
|
nic_init, nic_close, NULL,
|
2018-04-26 13:33:29 +02:00
|
|
|
NULL, NULL, NULL,
|
2017-05-12 05:05:20 -04:00
|
|
|
rtl8029as_config
|
|
|
|
|
};
|