1d1afd9ff7
The real SuperI/O chips emulated by QEMU allow for relocating and enabling or disabling their SuperI/O functions via software. So far this is not implemented. Prepare for that by adding isa_parallel_set_{enabled,iobase}. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Message-Id: <20240114123911.4877-10-shentey@gmail.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
36 lines
748 B
C
36 lines
748 B
C
/*
|
|
* QEMU ISA Parallel PORT emulation
|
|
*
|
|
* Copyright (c) 2003-2005 Fabrice Bellard
|
|
* Copyright (c) 2007 Marko Kohtala
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef HW_PARALLEL_ISA_H
|
|
#define HW_PARALLEL_ISA_H
|
|
|
|
#include "parallel.h"
|
|
|
|
#include "exec/ioport.h"
|
|
#include "hw/isa/isa.h"
|
|
#include "qom/object.h"
|
|
|
|
#define TYPE_ISA_PARALLEL "isa-parallel"
|
|
OBJECT_DECLARE_SIMPLE_TYPE(ISAParallelState, ISA_PARALLEL)
|
|
|
|
struct ISAParallelState {
|
|
ISADevice parent_obj;
|
|
|
|
uint32_t index;
|
|
uint32_t iobase;
|
|
uint32_t isairq;
|
|
ParallelState state;
|
|
PortioList portio_list;
|
|
};
|
|
|
|
void isa_parallel_set_iobase(ISADevice *parallel, hwaddr iobase);
|
|
void isa_parallel_set_enabled(ISADevice *parallel, bool enabled);
|
|
|
|
#endif /* HW_PARALLEL_ISA_H */
|