2016-02-03 16:28:56 +00:00
|
|
|
#ifndef HW_I8257_H
|
|
|
|
#define HW_I8257_H
|
|
|
|
|
2018-03-08 22:39:23 +00:00
|
|
|
#include "hw/isa/isa.h"
|
|
|
|
#include "exec/ioport.h"
|
2020-09-03 20:43:22 +00:00
|
|
|
#include "qom/object.h"
|
2018-03-08 22:39:23 +00:00
|
|
|
|
2016-02-03 16:28:56 +00:00
|
|
|
#define TYPE_I8257 "i8257"
|
2020-09-16 18:25:19 +00:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(I8257State, I8257)
|
2016-02-03 16:28:56 +00:00
|
|
|
|
|
|
|
typedef struct I8257Regs {
|
|
|
|
int now[2];
|
|
|
|
uint16_t base[2];
|
|
|
|
uint8_t mode;
|
|
|
|
uint8_t page;
|
|
|
|
uint8_t pageh;
|
|
|
|
uint8_t dack;
|
|
|
|
uint8_t eop;
|
2016-03-09 11:55:26 +00:00
|
|
|
IsaDmaTransferHandler transfer_handler;
|
2016-02-03 16:28:56 +00:00
|
|
|
void *opaque;
|
|
|
|
} I8257Regs;
|
|
|
|
|
2020-09-03 20:43:22 +00:00
|
|
|
struct I8257State {
|
2016-02-03 16:28:56 +00:00
|
|
|
/* <private> */
|
|
|
|
ISADevice parent_obj;
|
|
|
|
|
|
|
|
/* <public> */
|
|
|
|
int32_t base;
|
|
|
|
int32_t page_base;
|
|
|
|
int32_t pageh_base;
|
|
|
|
int32_t dshift;
|
|
|
|
|
|
|
|
uint8_t status;
|
|
|
|
uint8_t command;
|
|
|
|
uint8_t mask;
|
|
|
|
uint8_t flip_flop;
|
|
|
|
I8257Regs regs[4];
|
|
|
|
MemoryRegion channel_io;
|
|
|
|
MemoryRegion cont_io;
|
|
|
|
|
|
|
|
QEMUBH *dma_bh;
|
|
|
|
bool dma_bh_scheduled;
|
|
|
|
int running;
|
2016-07-13 00:11:59 +00:00
|
|
|
PortioList portio_page;
|
|
|
|
PortioList portio_pageh;
|
2020-09-03 20:43:22 +00:00
|
|
|
};
|
2016-02-03 16:28:56 +00:00
|
|
|
|
2018-03-08 22:39:23 +00:00
|
|
|
void i8257_dma_init(ISABus *bus, bool high_page_enable);
|
|
|
|
|
2016-02-03 16:28:56 +00:00
|
|
|
#endif
|