2017-09-04 01:52:29 -04:00
|
|
|
/*
|
2022-11-13 16:37:58 -05:00
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
2017-09-04 01:52:29 -04:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* This file is part of the 86Box distribution.
|
2017-09-04 01:52:29 -04:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Implementation of the SMC FDC37C663 and FDC37C665 Super
|
|
|
|
|
* I/O Chips.
|
2017-09-04 01:52:29 -04:00
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-09-04 01:52:29 -04:00
|
|
|
*
|
2023-08-14 21:51:47 +02:00
|
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
2017-10-17 01:59:09 -04:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Copyright 2016-2020 Miran Grca.
|
2017-09-04 01:52:29 -04:00
|
|
|
*/
|
2017-09-25 04:31:20 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdint.h>
|
2018-11-08 19:21:55 +01:00
|
|
|
#include <stdlib.h>
|
2017-09-25 04:31:20 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <wchar.h>
|
2020-03-29 14:24:42 +02:00
|
|
|
#include <86box/86box.h>
|
|
|
|
|
#include <86box/io.h>
|
|
|
|
|
#include <86box/timer.h>
|
|
|
|
|
#include <86box/device.h>
|
|
|
|
|
#include <86box/pci.h>
|
|
|
|
|
#include <86box/lpt.h>
|
|
|
|
|
#include <86box/serial.h>
|
|
|
|
|
#include <86box/hdc.h>
|
|
|
|
|
#include <86box/hdc_ide.h>
|
|
|
|
|
#include <86box/fdd.h>
|
|
|
|
|
#include <86box/fdc.h>
|
|
|
|
|
#include <86box/sio.h>
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2023-06-28 13:46:28 -04:00
|
|
|
typedef struct fdc37c6xx_t {
|
|
|
|
|
uint8_t max_reg;
|
|
|
|
|
uint8_t chip_id;
|
|
|
|
|
uint8_t tries;
|
|
|
|
|
uint8_t has_ide;
|
|
|
|
|
uint8_t regs[16];
|
|
|
|
|
int cur_reg;
|
|
|
|
|
int com3_addr;
|
|
|
|
|
int com4_addr;
|
2022-09-18 17:17:00 -04:00
|
|
|
fdc_t *fdc;
|
2018-11-08 19:21:55 +01:00
|
|
|
serial_t *uart[2];
|
2021-08-21 18:19:10 +02:00
|
|
|
} fdc37c6xx_t;
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
static void
|
2021-08-21 18:19:10 +02:00
|
|
|
set_com34_addr(fdc37c6xx_t *dev)
|
2017-09-04 01:52:29 -04:00
|
|
|
{
|
2018-11-08 19:21:55 +01:00
|
|
|
switch (dev->regs[1] & 0x60) {
|
2022-09-18 17:17:00 -04:00
|
|
|
case 0x00:
|
|
|
|
|
dev->com3_addr = 0x338;
|
|
|
|
|
dev->com4_addr = 0x238;
|
|
|
|
|
break;
|
|
|
|
|
case 0x20:
|
|
|
|
|
dev->com3_addr = COM3_ADDR;
|
|
|
|
|
dev->com4_addr = COM4_ADDR;
|
|
|
|
|
break;
|
|
|
|
|
case 0x40:
|
|
|
|
|
dev->com3_addr = COM3_ADDR;
|
|
|
|
|
dev->com4_addr = 0x2e0;
|
|
|
|
|
break;
|
|
|
|
|
case 0x60:
|
|
|
|
|
dev->com3_addr = 0x220;
|
|
|
|
|
dev->com4_addr = 0x228;
|
|
|
|
|
break;
|
2023-06-28 13:46:28 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2018-11-08 19:21:55 +01:00
|
|
|
}
|
2017-09-04 01:52:29 -04:00
|
|
|
}
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
static void
|
2021-08-21 18:19:10 +02:00
|
|
|
set_serial_addr(fdc37c6xx_t *dev, int port)
|
2017-09-04 01:52:29 -04:00
|
|
|
{
|
2022-09-18 17:17:00 -04:00
|
|
|
uint8_t shift = (port << 2);
|
|
|
|
|
double clock_src = 24000000.0 / 13.0;
|
2018-11-08 19:21:55 +01:00
|
|
|
|
2020-11-16 00:01:21 +01:00
|
|
|
if (dev->regs[4] & (1 << (4 + port)))
|
2022-09-18 17:17:00 -04:00
|
|
|
clock_src = 24000000.0 / 12.0;
|
2020-11-16 00:01:21 +01:00
|
|
|
|
|
|
|
|
serial_remove(dev->uart[port]);
|
2018-11-08 19:21:55 +01:00
|
|
|
if (dev->regs[2] & (4 << shift)) {
|
2022-09-18 17:17:00 -04:00
|
|
|
switch ((dev->regs[2] >> shift) & 3) {
|
|
|
|
|
case 0:
|
|
|
|
|
serial_setup(dev->uart[port], COM1_ADDR, COM1_IRQ);
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
serial_setup(dev->uart[port], COM2_ADDR, COM2_IRQ);
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
serial_setup(dev->uart[port], dev->com3_addr, COM3_IRQ);
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
serial_setup(dev->uart[port], dev->com4_addr, COM4_IRQ);
|
|
|
|
|
break;
|
2023-06-28 13:46:28 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-09-18 17:17:00 -04:00
|
|
|
}
|
2018-11-08 19:21:55 +01:00
|
|
|
}
|
2020-11-16 00:01:21 +01:00
|
|
|
|
|
|
|
|
serial_set_clock_src(dev->uart[port], clock_src);
|
2017-09-04 01:52:29 -04:00
|
|
|
}
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
static void
|
2021-08-21 18:19:10 +02:00
|
|
|
lpt1_handler(fdc37c6xx_t *dev)
|
2017-09-04 01:52:29 -04:00
|
|
|
{
|
2018-11-08 19:21:55 +01:00
|
|
|
lpt1_remove();
|
|
|
|
|
switch (dev->regs[1] & 3) {
|
2022-09-18 17:17:00 -04:00
|
|
|
case 1:
|
2024-09-09 00:43:14 -04:00
|
|
|
lpt1_setup(LPT_MDA_ADDR);
|
|
|
|
|
lpt1_irq(LPT_MDA_IRQ);
|
2022-09-18 17:17:00 -04:00
|
|
|
break;
|
|
|
|
|
case 2:
|
2024-09-09 00:43:14 -04:00
|
|
|
lpt1_setup(LPT1_ADDR);
|
|
|
|
|
lpt1_irq(LPT1_IRQ /*LPT2_IRQ*/);
|
2022-09-18 17:17:00 -04:00
|
|
|
break;
|
|
|
|
|
case 3:
|
2024-09-09 00:43:14 -04:00
|
|
|
lpt1_setup(LPT2_ADDR);
|
|
|
|
|
lpt1_irq(LPT1_IRQ /*LPT2_IRQ*/);
|
2022-09-18 17:17:00 -04:00
|
|
|
break;
|
2023-06-28 13:46:28 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2018-11-08 19:21:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2020-01-11 22:32:19 +01:00
|
|
|
static void
|
2021-08-21 18:19:10 +02:00
|
|
|
fdc_handler(fdc37c6xx_t *dev)
|
2020-01-11 22:32:19 +01:00
|
|
|
{
|
|
|
|
|
fdc_remove(dev->fdc);
|
|
|
|
|
if (dev->regs[0] & 0x10)
|
2022-09-18 17:17:00 -04:00
|
|
|
fdc_set_base(dev->fdc, (dev->regs[5] & 0x01) ? FDC_SECONDARY_ADDR : FDC_PRIMARY_ADDR);
|
2020-01-11 22:32:19 +01:00
|
|
|
}
|
|
|
|
|
|
2020-12-18 17:09:54 +01:00
|
|
|
static void
|
2021-08-21 18:19:10 +02:00
|
|
|
ide_handler(fdc37c6xx_t *dev)
|
2020-12-18 17:09:54 +01:00
|
|
|
{
|
2021-04-06 07:17:38 +02:00
|
|
|
/* TODO: Make an ide_disable(channel) and ide_enable(channel) so we can simplify this. */
|
|
|
|
|
if (dev->has_ide == 2) {
|
2022-09-18 17:17:00 -04:00
|
|
|
ide_sec_disable();
|
|
|
|
|
ide_set_base(1, (dev->regs[0x05] & 0x02) ? 0x170 : 0x1f0);
|
|
|
|
|
ide_set_side(1, (dev->regs[0x05] & 0x02) ? 0x376 : 0x3f6);
|
|
|
|
|
if (dev->regs[0x00] & 0x01)
|
|
|
|
|
ide_sec_enable();
|
2021-04-06 07:17:38 +02:00
|
|
|
} else if (dev->has_ide == 1) {
|
2022-09-18 17:17:00 -04:00
|
|
|
ide_pri_disable();
|
|
|
|
|
ide_set_base(0, (dev->regs[0x05] & 0x02) ? 0x170 : 0x1f0);
|
|
|
|
|
ide_set_side(0, (dev->regs[0x05] & 0x02) ? 0x376 : 0x3f6);
|
|
|
|
|
if (dev->regs[0x00] & 0x01)
|
|
|
|
|
ide_pri_enable();
|
2021-04-06 07:17:38 +02:00
|
|
|
}
|
2020-12-18 17:09:54 +01:00
|
|
|
}
|
|
|
|
|
|
2020-01-11 22:32:19 +01:00
|
|
|
static void
|
2021-08-21 18:19:10 +02:00
|
|
|
fdc37c6xx_write(uint16_t port, uint8_t val, void *priv)
|
2018-11-08 19:21:55 +01:00
|
|
|
{
|
2022-09-18 17:17:00 -04:00
|
|
|
fdc37c6xx_t *dev = (fdc37c6xx_t *) priv;
|
|
|
|
|
uint8_t valxor = 0;
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2020-11-16 00:01:21 +01:00
|
|
|
if (dev->tries == 2) {
|
2022-09-18 17:17:00 -04:00
|
|
|
if (port == FDC_PRIMARY_ADDR) {
|
|
|
|
|
if (val == 0xaa)
|
|
|
|
|
dev->tries = 0;
|
|
|
|
|
else
|
|
|
|
|
dev->cur_reg = val;
|
|
|
|
|
} else {
|
|
|
|
|
if (dev->cur_reg > dev->max_reg)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
valxor = val ^ dev->regs[dev->cur_reg];
|
|
|
|
|
dev->regs[dev->cur_reg] = val;
|
|
|
|
|
|
|
|
|
|
switch (dev->cur_reg) {
|
|
|
|
|
case 0:
|
|
|
|
|
if (dev->has_ide && (valxor & 0x01))
|
|
|
|
|
ide_handler(dev);
|
|
|
|
|
if (valxor & 0x10)
|
|
|
|
|
fdc_handler(dev);
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
if (valxor & 3)
|
|
|
|
|
lpt1_handler(dev);
|
|
|
|
|
if (valxor & 0x60) {
|
|
|
|
|
set_com34_addr(dev);
|
|
|
|
|
set_serial_addr(dev, 0);
|
|
|
|
|
set_serial_addr(dev, 1);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
if (valxor & 7)
|
|
|
|
|
set_serial_addr(dev, 0);
|
|
|
|
|
if (valxor & 0x70)
|
|
|
|
|
set_serial_addr(dev, 1);
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
if (valxor & 2)
|
|
|
|
|
fdc_update_enh_mode(dev->fdc, (dev->regs[3] & 2) ? 1 : 0);
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
if (valxor & 0x10)
|
|
|
|
|
set_serial_addr(dev, 0);
|
|
|
|
|
if (valxor & 0x20)
|
|
|
|
|
set_serial_addr(dev, 1);
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
|
|
|
|
if (valxor & 0x01)
|
|
|
|
|
fdc_handler(dev);
|
|
|
|
|
if (dev->has_ide && (valxor & 0x02))
|
|
|
|
|
ide_handler(dev);
|
|
|
|
|
if (valxor & 0x18)
|
|
|
|
|
fdc_update_densel_force(dev->fdc, (dev->regs[5] & 0x18) >> 3);
|
|
|
|
|
if (valxor & 0x20)
|
|
|
|
|
fdc_set_swap(dev->fdc, (dev->regs[5] & 0x20) >> 5);
|
|
|
|
|
break;
|
2023-06-28 13:46:28 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-09-18 17:17:00 -04:00
|
|
|
}
|
|
|
|
|
}
|
2022-03-11 22:04:57 -05:00
|
|
|
} else if ((port == FDC_PRIMARY_ADDR) && (val == 0x55))
|
2022-09-18 17:17:00 -04:00
|
|
|
dev->tries++;
|
2017-09-04 01:52:29 -04:00
|
|
|
}
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
static uint8_t
|
2021-08-21 18:19:10 +02:00
|
|
|
fdc37c6xx_read(uint16_t port, void *priv)
|
2017-09-04 01:52:29 -04:00
|
|
|
{
|
2023-08-21 20:24:33 -04:00
|
|
|
const fdc37c6xx_t *dev = (fdc37c6xx_t *) priv;
|
|
|
|
|
uint8_t ret = 0xff;
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2020-11-16 00:01:21 +01:00
|
|
|
if (dev->tries == 2) {
|
2022-09-18 17:17:00 -04:00
|
|
|
if (port == 0x3f1)
|
|
|
|
|
ret = dev->regs[dev->cur_reg];
|
2018-11-08 19:21:55 +01:00
|
|
|
}
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
return ret;
|
2017-09-04 01:52:29 -04:00
|
|
|
}
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
static void
|
2021-08-21 18:19:10 +02:00
|
|
|
fdc37c6xx_reset(fdc37c6xx_t *dev)
|
2017-10-26 20:37:39 +02:00
|
|
|
{
|
2018-11-08 19:21:55 +01:00
|
|
|
dev->com3_addr = 0x338;
|
|
|
|
|
dev->com4_addr = 0x238;
|
|
|
|
|
|
|
|
|
|
serial_remove(dev->uart[0]);
|
2022-03-09 21:57:51 -05:00
|
|
|
serial_setup(dev->uart[0], COM1_ADDR, COM1_IRQ);
|
2018-11-08 19:21:55 +01:00
|
|
|
|
2019-02-06 03:34:39 +01:00
|
|
|
serial_remove(dev->uart[1]);
|
2022-03-09 21:57:51 -05:00
|
|
|
serial_setup(dev->uart[1], COM2_ADDR, COM2_IRQ);
|
2018-11-08 19:21:55 +01:00
|
|
|
|
|
|
|
|
lpt1_remove();
|
2024-09-09 00:43:14 -04:00
|
|
|
lpt1_setup(LPT1_ADDR);
|
2018-11-08 19:21:55 +01:00
|
|
|
|
|
|
|
|
fdc_reset(dev->fdc);
|
2021-04-06 07:17:38 +02:00
|
|
|
fdc_remove(dev->fdc);
|
2018-11-08 19:21:55 +01:00
|
|
|
|
2020-11-16 00:01:21 +01:00
|
|
|
dev->tries = 0;
|
2018-11-08 19:21:55 +01:00
|
|
|
memset(dev->regs, 0, 16);
|
|
|
|
|
|
2021-08-21 18:19:10 +02:00
|
|
|
switch (dev->chip_id) {
|
2022-09-18 17:17:00 -04:00
|
|
|
case 0x63:
|
|
|
|
|
case 0x65:
|
|
|
|
|
dev->max_reg = 0x0f;
|
|
|
|
|
dev->regs[0x0] = 0x3b;
|
|
|
|
|
break;
|
|
|
|
|
case 0x64:
|
|
|
|
|
case 0x66:
|
|
|
|
|
dev->max_reg = 0x0f;
|
|
|
|
|
dev->regs[0x0] = 0x2b;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
dev->max_reg = (dev->chip_id >= 0x61) ? 0x03 : 0x02;
|
|
|
|
|
dev->regs[0x0] = 0x3f;
|
|
|
|
|
break;
|
2021-08-21 18:19:10 +02:00
|
|
|
}
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
dev->regs[0x1] = 0x9f;
|
|
|
|
|
dev->regs[0x2] = 0xdc;
|
|
|
|
|
dev->regs[0x3] = 0x78;
|
2021-08-21 18:19:10 +02:00
|
|
|
|
|
|
|
|
if (dev->chip_id >= 0x63) {
|
2022-09-18 17:17:00 -04:00
|
|
|
dev->regs[0x6] = 0xff;
|
|
|
|
|
dev->regs[0xd] = dev->chip_id;
|
|
|
|
|
if (dev->chip_id >= 0x65)
|
|
|
|
|
dev->regs[0xe] = 0x02;
|
|
|
|
|
else
|
|
|
|
|
dev->regs[0xe] = 0x01;
|
2021-08-21 18:19:10 +02:00
|
|
|
}
|
2020-12-18 17:09:54 +01:00
|
|
|
|
2021-08-12 11:10:16 +02:00
|
|
|
set_serial_addr(dev, 0);
|
|
|
|
|
set_serial_addr(dev, 1);
|
|
|
|
|
|
|
|
|
|
lpt1_handler(dev);
|
|
|
|
|
|
|
|
|
|
fdc_handler(dev);
|
|
|
|
|
|
2020-12-18 17:09:54 +01:00
|
|
|
if (dev->has_ide)
|
2022-09-18 17:17:00 -04:00
|
|
|
ide_handler(dev);
|
2017-10-26 20:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
static void
|
2021-08-21 18:19:10 +02:00
|
|
|
fdc37c6xx_close(void *priv)
|
2017-10-26 20:37:39 +02:00
|
|
|
{
|
2021-08-21 18:19:10 +02:00
|
|
|
fdc37c6xx_t *dev = (fdc37c6xx_t *) priv;
|
2018-11-08 19:21:55 +01:00
|
|
|
|
|
|
|
|
free(dev);
|
2017-10-26 20:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
static void *
|
2021-08-21 18:19:10 +02:00
|
|
|
fdc37c6xx_init(const device_t *info)
|
2017-10-26 20:37:39 +02:00
|
|
|
{
|
2025-01-07 00:42:06 -05:00
|
|
|
fdc37c6xx_t *dev = (fdc37c6xx_t *) calloc(1, sizeof(fdc37c6xx_t));
|
2018-01-17 18:43:36 +01:00
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
dev->fdc = device_add(&fdc_at_smc_device);
|
2017-10-26 20:37:39 +02:00
|
|
|
|
2020-12-18 17:09:54 +01:00
|
|
|
dev->chip_id = info->local & 0xff;
|
2021-04-06 07:17:38 +02:00
|
|
|
dev->has_ide = (info->local >> 8) & 0xff;
|
2020-12-18 17:09:54 +01:00
|
|
|
|
2021-08-21 18:19:10 +02:00
|
|
|
if (dev->chip_id >= 0x63) {
|
2022-09-18 17:17:00 -04:00
|
|
|
dev->uart[0] = device_add_inst(&ns16550_device, 1);
|
|
|
|
|
dev->uart[1] = device_add_inst(&ns16550_device, 2);
|
2021-08-21 18:19:10 +02:00
|
|
|
} else {
|
2022-09-18 17:17:00 -04:00
|
|
|
dev->uart[0] = device_add_inst(&ns16450_device, 1);
|
|
|
|
|
dev->uart[1] = device_add_inst(&ns16450_device, 2);
|
2021-08-21 18:19:10 +02:00
|
|
|
}
|
|
|
|
|
|
2022-03-11 22:04:57 -05:00
|
|
|
io_sethandler(FDC_PRIMARY_ADDR, 0x0002,
|
2022-09-18 17:17:00 -04:00
|
|
|
fdc37c6xx_read, NULL, NULL, fdc37c6xx_write, NULL, NULL, dev);
|
2018-01-17 18:43:36 +01:00
|
|
|
|
2021-08-21 18:19:10 +02:00
|
|
|
fdc37c6xx_reset(dev);
|
2017-09-04 01:52:29 -04:00
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
return dev;
|
2017-09-04 01:52:29 -04:00
|
|
|
}
|
2018-11-08 19:21:55 +01:00
|
|
|
|
|
|
|
|
/* The three appear to differ only in the chip ID, if I
|
|
|
|
|
understood their datasheets correctly. */
|
2021-08-21 18:19:10 +02:00
|
|
|
const device_t fdc37c651_device = {
|
2022-09-18 17:17:00 -04:00
|
|
|
.name = "SMC FDC37C651 Super I/O",
|
2022-03-13 09:57:57 -04:00
|
|
|
.internal_name = "fdc37c651",
|
2022-09-18 17:17:00 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x51,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 09:57:57 -04:00
|
|
|
.speed_changed = NULL,
|
2022-09-18 17:17:00 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2021-08-21 18:19:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const device_t fdc37c651_ide_device = {
|
2022-09-18 17:17:00 -04:00
|
|
|
.name = "SMC FDC37C651 Super I/O (With IDE)",
|
2022-03-13 09:57:57 -04:00
|
|
|
.internal_name = "fdc37c651_ide",
|
2022-09-18 17:17:00 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x151,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 09:57:57 -04:00
|
|
|
.speed_changed = NULL,
|
2022-09-18 17:17:00 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2021-08-21 18:19:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const device_t fdc37c661_device = {
|
2022-09-18 17:17:00 -04:00
|
|
|
.name = "SMC FDC37C661 Super I/O",
|
2022-03-13 09:57:57 -04:00
|
|
|
.internal_name = "fdc37c661",
|
2022-09-18 17:17:00 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x61,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 09:57:57 -04:00
|
|
|
.speed_changed = NULL,
|
2022-09-18 17:17:00 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2021-08-21 18:19:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const device_t fdc37c661_ide_device = {
|
2022-09-18 17:17:00 -04:00
|
|
|
.name = "SMC FDC37C661 Super I/O (With IDE)",
|
2022-03-13 09:57:57 -04:00
|
|
|
.internal_name = "fdc37c661_ide",
|
2022-09-18 17:17:00 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x161,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 09:57:57 -04:00
|
|
|
.speed_changed = NULL,
|
2022-09-18 17:17:00 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2021-08-21 18:19:10 +02:00
|
|
|
};
|
|
|
|
|
|
2023-07-23 16:50:12 +02:00
|
|
|
const device_t fdc37c661_ide_sec_device = {
|
|
|
|
|
.name = "SMC FDC37C661 Super I/O (With Secondary IDE)",
|
2024-02-20 07:26:44 +01:00
|
|
|
.internal_name = "fdc37c661_ide_sec",
|
2023-07-23 16:50:12 +02:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x261,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2023-07-23 16:50:12 +02:00
|
|
|
.speed_changed = NULL,
|
|
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
|
|
|
|
};
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
const device_t fdc37c663_device = {
|
2022-09-18 17:17:00 -04:00
|
|
|
.name = "SMC FDC37C663 Super I/O",
|
2022-03-13 09:57:57 -04:00
|
|
|
.internal_name = "fdc37c663",
|
2022-09-18 17:17:00 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x63,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 09:57:57 -04:00
|
|
|
.speed_changed = NULL,
|
2022-09-18 17:17:00 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2018-11-08 19:21:55 +01:00
|
|
|
};
|
|
|
|
|
|
2021-04-06 07:17:38 +02:00
|
|
|
const device_t fdc37c663_ide_device = {
|
2022-09-18 17:17:00 -04:00
|
|
|
.name = "SMC FDC37C663 Super I/O (With IDE)",
|
2022-03-13 09:57:57 -04:00
|
|
|
.internal_name = "fdc37c663_ide",
|
2022-09-18 17:17:00 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x163,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 09:57:57 -04:00
|
|
|
.speed_changed = NULL,
|
2022-09-18 17:17:00 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2021-04-06 07:17:38 +02:00
|
|
|
};
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
const device_t fdc37c665_device = {
|
2022-09-18 17:17:00 -04:00
|
|
|
.name = "SMC FDC37C665 Super I/O",
|
2022-03-13 09:57:57 -04:00
|
|
|
.internal_name = "fdc37c665",
|
2022-09-18 17:17:00 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x65,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 09:57:57 -04:00
|
|
|
.speed_changed = NULL,
|
2022-09-18 17:17:00 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2018-11-08 19:21:55 +01:00
|
|
|
};
|
|
|
|
|
|
2020-12-18 17:09:54 +01:00
|
|
|
const device_t fdc37c665_ide_device = {
|
2022-09-18 17:17:00 -04:00
|
|
|
.name = "SMC FDC37C665 Super I/O (With IDE)",
|
2022-03-13 09:57:57 -04:00
|
|
|
.internal_name = "fdc37c665_ide",
|
2022-09-18 17:17:00 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x265,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 09:57:57 -04:00
|
|
|
.speed_changed = NULL,
|
2022-09-18 17:17:00 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2020-12-18 17:09:54 +01:00
|
|
|
};
|
|
|
|
|
|
2023-01-09 16:31:36 +03:00
|
|
|
const device_t fdc37c665_ide_pri_device = {
|
|
|
|
|
.name = "SMC FDC37C665 Super I/O (With Primary IDE)",
|
|
|
|
|
.internal_name = "fdc37c665_ide_pri",
|
|
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x165,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2023-01-09 16:31:36 +03:00
|
|
|
.speed_changed = NULL,
|
|
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
|
|
|
|
};
|
|
|
|
|
|
2023-07-23 17:26:14 +02:00
|
|
|
const device_t fdc37c665_ide_sec_device = {
|
|
|
|
|
.name = "SMC FDC37C665 Super I/O (With Secondary IDE)",
|
|
|
|
|
.internal_name = "fdc37c665_ide_sec",
|
|
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x265,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2023-07-23 17:26:14 +02:00
|
|
|
.speed_changed = NULL,
|
|
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
|
|
|
|
};
|
|
|
|
|
|
2018-11-08 19:21:55 +01:00
|
|
|
const device_t fdc37c666_device = {
|
2022-09-18 17:17:00 -04:00
|
|
|
.name = "SMC FDC37C666 Super I/O",
|
2022-03-13 09:57:57 -04:00
|
|
|
.internal_name = "fdc37c666",
|
2022-09-18 17:17:00 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0x66,
|
|
|
|
|
.init = fdc37c6xx_init,
|
|
|
|
|
.close = fdc37c6xx_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 09:57:57 -04:00
|
|
|
.speed_changed = NULL,
|
2022-09-18 17:17:00 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2018-11-08 19:21:55 +01:00
|
|
|
};
|