Files
86Box/src/video/vid_ati68860_ramdac.c

322 lines
11 KiB
C
Raw Normal View History

/*
2023-01-06 15:36:05 -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.
*
2023-01-06 15:36:05 -05:00
* This file is part of the 86Box distribution.
*
2023-01-06 15:36:05 -05:00
* ATI 68860 RAMDAC emulation (for Mach64)
*
2023-01-06 15:36:05 -05:00
* ATI 68860/68880 Truecolor DACs:
* REG08 (R/W):
* bit 0-? Always 2 ??
*
2023-01-06 15:36:05 -05:00
* REG0A (R/W):
* bit 0-? Always 1Dh ??
*
2023-01-06 15:36:05 -05:00
* REG0B (R/W): (GMR ?)
* bit 0-7 Mode. 82h: 4bpp, 83h: 8bpp,
* A0h: 15bpp, A1h: 16bpp, C0h: 24bpp,
* E3h: 32bpp (80h for VGA modes ?)
2022-02-20 02:26:27 -05:00
*
2023-01-06 15:36:05 -05:00
* REG0C (R/W): Device Setup Register A
* bit 0 Controls 6/8bit DAC. 0: 8bit DAC/LUT, 1: 6bit DAC/LUT
* 2-3 Depends on Video memory (= VRAM width ?) .
* 1: Less than 1Mb, 2: 1Mb, 3: > 1Mb
* 5-6 Always set ?
* 7 If set can remove "snow" in some cases
* (A860_Delay_L ?) ??
*
2020-03-25 00:46:02 +02:00
*
*
2023-01-06 15:36:29 -05:00
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
2023-01-06 15:36:05 -05:00
* Miran Grca, <mgrca8@gmail.com>
*
2023-01-06 15:36:05 -05:00
* Copyright 2008-2018 Sarah Walker.
* Copyright 2016-2018 Miran Grca.
*/
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include <86box/86box.h>
#include <86box/device.h>
#include <86box/mem.h>
#include <86box/rom.h>
#include <86box/timer.h>
#include <86box/video.h>
#include <86box/vid_8514a.h>
#include <86box/vid_svga.h>
#include <86box/vid_svga_render.h>
2023-06-09 23:46:54 -04:00
#include <86box/plat_unused.h>
2022-08-31 19:19:29 -04:00
typedef struct ati68860_ramdac_t {
2020-02-29 19:12:23 +01:00
uint8_t regs[16];
void (*render)(struct svga_t *svga);
2023-06-09 23:46:54 -04:00
int dac_addr;
int dac_pos;
int dac_r;
int dac_g;
2022-08-31 19:19:29 -04:00
PALETTE pal;
2020-02-29 19:12:23 +01:00
uint32_t pallook[2];
int ramdac_type;
} ati68860_ramdac_t;
void
2023-08-11 20:32:56 -04:00
ati68860_ramdac_out(uint16_t addr, uint8_t val, void *priv, svga_t *svga)
{
2023-08-11 20:32:56 -04:00
ati68860_ramdac_t *ramdac = (ati68860_ramdac_t *) priv;
const ibm8514_t *dev = (ibm8514_t *) svga->dev8514;
2020-02-29 19:12:23 +01:00
switch (addr) {
2022-08-31 19:19:29 -04:00
case 0:
svga_out((dev && (dev->on[0] || dev->on[1])) ? 0x2ec : 0x3c8, val, svga);
2022-08-31 19:19:29 -04:00
break;
case 1:
svga_out((dev && (dev->on[0] || dev->on[1])) ? 0x2ed : 0x3c9, val, svga);
2022-08-31 19:19:29 -04:00
break;
case 2:
svga_out((dev && (dev->on[0] || dev->on[1])) ? 0x2ea : 0x3c6, val, svga);
2022-08-31 19:19:29 -04:00
break;
case 3:
svga_out((dev && (dev->on[0] || dev->on[1])) ? 0x2eb : 0x3c7, val, svga);
2022-08-31 19:19:29 -04:00
break;
default:
ramdac->regs[addr & 0xf] = val;
switch (addr & 0xf) {
case 0x4:
ramdac->dac_addr = val;
ramdac->dac_pos = 0;
break;
case 0x5:
switch (ramdac->dac_pos) {
case 0:
ramdac->dac_r = val;
ramdac->dac_pos++;
break;
case 1:
ramdac->dac_g = val;
ramdac->dac_pos++;
break;
case 2:
if (ramdac->dac_addr > 1)
break;
ramdac->pal[ramdac->dac_addr].r = ramdac->dac_r;
ramdac->pal[ramdac->dac_addr].g = ramdac->dac_g;
ramdac->pal[ramdac->dac_addr].b = val;
if (ramdac->ramdac_type == RAMDAC_8BIT)
ramdac->pallook[ramdac->dac_addr] = makecol32(ramdac->pal[ramdac->dac_addr].r,
ramdac->pal[ramdac->dac_addr].g,
ramdac->pal[ramdac->dac_addr].b);
else
ramdac->pallook[ramdac->dac_addr] = makecol32(video_6to8[ramdac->pal[ramdac->dac_addr].r & 0x3f],
video_6to8[ramdac->pal[ramdac->dac_addr].g & 0x3f],
video_6to8[ramdac->pal[ramdac->dac_addr].b & 0x3f]);
ramdac->dac_pos = 0;
ramdac->dac_addr = (ramdac->dac_addr + 1) & 255;
break;
2023-06-09 23:46:54 -04:00
default:
break;
2022-08-31 19:19:29 -04:00
}
break;
case 0xb:
switch (val) {
case 0x82:
ramdac->render = svga_render_4bpp_highres;
break;
case 0x83:
/*FIXME*/
ramdac->render = svga_render_8bpp_clone_highres;
2022-08-31 19:19:29 -04:00
break;
case 0xa0:
case 0xb0:
ramdac->render = svga_render_15bpp_highres;
break;
case 0xa1:
case 0xb1:
ramdac->render = svga_render_16bpp_highres;
break;
case 0xc0:
case 0xd0:
ramdac->render = svga_render_24bpp_highres;
break;
case 0xe2:
case 0xf7:
ramdac->render = svga_render_32bpp_highres;
break;
case 0xe3:
ramdac->render = svga_render_ABGR8888_highres;
break;
case 0xf2:
ramdac->render = svga_render_RGBA8888_highres;
break;
default:
/*FIXME*/
ramdac->render = svga_render_8bpp_clone_highres;
2022-08-31 19:19:29 -04:00
break;
}
break;
case 0xc:
svga_set_ramdac_type(svga, (val & 1) ? RAMDAC_6BIT : RAMDAC_8BIT);
break;
2023-06-09 23:46:54 -04:00
default:
break;
2022-08-31 19:19:29 -04:00
}
break;
}
}
uint8_t
2023-08-11 20:32:56 -04:00
ati68860_ramdac_in(uint16_t addr, void *priv, svga_t *svga)
{
2023-08-11 20:32:56 -04:00
const ati68860_ramdac_t *ramdac = (ati68860_ramdac_t *) priv;
const ibm8514_t *dev = (ibm8514_t *) svga->dev8514;
2023-08-11 20:32:56 -04:00
uint8_t temp = 0;
switch (addr) {
2022-08-31 19:19:29 -04:00
case 0:
temp = svga_in((dev && (dev->on[0] || dev->on[1])) ? 0x2ec : 0x3c8, svga);
2022-08-31 19:19:29 -04:00
break;
case 1:
temp = svga_in((dev && (dev->on[0] || dev->on[1])) ? 0x2ed : 0x3c9, svga);
2022-08-31 19:19:29 -04:00
break;
case 2:
temp = svga_in((dev && (dev->on[0] || dev->on[1])) ? 0x2ea : 0x3c6, svga);
2022-08-31 19:19:29 -04:00
break;
case 3:
temp = svga_in((dev && (dev->on[0] || dev->on[1])) ? 0x2eb : 0x3c7, svga);
2022-08-31 19:19:29 -04:00
break;
case 4:
case 8:
temp = 2;
break;
case 6:
case 0xa:
temp = 0x1d;
break;
case 0xf:
temp = 0xd0;
break;
default:
temp = ramdac->regs[addr & 0xf];
break;
}
return temp;
}
void
2023-08-11 20:32:56 -04:00
ati68860_set_ramdac_type(void *priv, int type)
{
2023-08-11 20:32:56 -04:00
ati68860_ramdac_t *ramdac = (ati68860_ramdac_t *) priv;
if (ramdac->ramdac_type != type) {
2022-08-31 19:19:29 -04:00
ramdac->ramdac_type = type;
2023-06-01 18:32:25 -04:00
for (uint8_t c = 0; c < 2; c++) {
2022-08-31 19:19:29 -04:00
if (ramdac->ramdac_type == RAMDAC_8BIT)
ramdac->pallook[c] = makecol32(ramdac->pal[c].r, ramdac->pal[c].g,
ramdac->pal[c].b);
else
ramdac->pallook[c] = makecol32(video_6to8[ramdac->pal[c].r & 0x3f], video_6to8[ramdac->pal[c].g & 0x3f],
video_6to8[ramdac->pal[c].b & 0x3f]);
}
}
}
static void *
2023-06-09 23:46:54 -04:00
ati68860_ramdac_init(UNUSED(const device_t *info))
{
ati68860_ramdac_t *ramdac = (ati68860_ramdac_t *) malloc(sizeof(ati68860_ramdac_t));
memset(ramdac, 0, sizeof(ati68860_ramdac_t));
/*FIXME*/
ramdac->render = svga_render_8bpp_clone_highres;
return ramdac;
}
2020-02-29 19:12:23 +01:00
void
2023-08-11 20:32:56 -04:00
ati68860_ramdac_set_render(void *priv, svga_t *svga)
2020-02-29 19:12:23 +01:00
{
2023-08-11 20:32:56 -04:00
ati68860_ramdac_t *ramdac = (ati68860_ramdac_t *) priv;
2020-02-29 19:12:23 +01:00
svga->render = ramdac->render;
}
void
2023-08-11 20:32:56 -04:00
ati68860_ramdac_set_pallook(void *priv, int i, uint32_t col)
2020-02-29 19:12:23 +01:00
{
2023-08-11 20:32:56 -04:00
ati68860_ramdac_t *ramdac = (ati68860_ramdac_t *) priv;
2020-02-29 19:12:23 +01:00
ramdac->pallook[i] = col;
}
void
ati68860_hwcursor_draw(svga_t *svga, int displine)
{
2023-08-11 20:32:56 -04:00
const ati68860_ramdac_t *ramdac = (ati68860_ramdac_t *) svga->ramdac;
int offset;
uint8_t dat;
uint32_t col0 = ramdac->pallook[0];
uint32_t col1 = ramdac->pallook[1];
2020-02-29 19:12:23 +01:00
2020-05-29 20:23:33 +02:00
offset = svga->dac_hwcursor_latch.xoff;
2023-06-05 00:41:00 -04:00
for (uint32_t x = 0; x < 64 - svga->dac_hwcursor_latch.xoff; x += 4) {
2022-08-31 19:19:29 -04:00
dat = svga->vram[svga->dac_hwcursor_latch.addr + (offset >> 2)];
if (!(dat & 2))
buffer32->line[displine][svga->dac_hwcursor_latch.x + x + svga->x_add] = (dat & 1) ? col1 : col0;
else if ((dat & 3) == 3)
buffer32->line[displine][svga->dac_hwcursor_latch.x + x + svga->x_add] ^= 0xFFFFFF;
dat >>= 2;
if (!(dat & 2))
buffer32->line[displine][svga->dac_hwcursor_latch.x + x + svga->x_add + 1] = (dat & 1) ? col1 : col0;
else if ((dat & 3) == 3)
buffer32->line[displine][svga->dac_hwcursor_latch.x + x + svga->x_add + 1] ^= 0xFFFFFF;
dat >>= 2;
if (!(dat & 2))
buffer32->line[displine][svga->dac_hwcursor_latch.x + x + svga->x_add + 2] = (dat & 1) ? col1 : col0;
else if ((dat & 3) == 3)
buffer32->line[displine][svga->dac_hwcursor_latch.x + x + svga->x_add + 2] ^= 0xFFFFFF;
dat >>= 2;
if (!(dat & 2))
buffer32->line[displine][svga->dac_hwcursor_latch.x + x + svga->x_add + 3] = (dat & 1) ? col1 : col0;
else if ((dat & 3) == 3)
buffer32->line[displine][svga->dac_hwcursor_latch.x + x + svga->x_add + 3] ^= 0xFFFFFF;
dat >>= 2;
offset += 4;
2020-02-29 19:12:23 +01:00
}
2020-05-29 20:23:33 +02:00
svga->dac_hwcursor_latch.addr += 16;
2020-02-29 19:12:23 +01:00
}
static void
ati68860_ramdac_close(void *priv)
{
ati68860_ramdac_t *ramdac = (ati68860_ramdac_t *) priv;
if (ramdac)
2022-08-31 19:19:29 -04:00
free(ramdac);
}
2022-03-13 21:43:45 -04:00
const device_t ati68860_ramdac_device = {
2022-08-31 19:19:29 -04:00
.name = "ATI-68860 RAMDAC",
2022-03-13 21:43:45 -04:00
.internal_name = "ati68860_ramdac",
2022-08-31 19:19:29 -04:00
.flags = 0,
.local = 0,
.init = ati68860_ramdac_init,
.close = ati68860_ramdac_close,
.reset = NULL,
2022-03-13 21:43:45 -04:00
{ .available = NULL },
.speed_changed = NULL,
2022-08-31 19:19:29 -04:00
.force_redraw = NULL,
.config = NULL
};