mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
hw/char/parallel-isa: Implement relocation and enabling/disabling for TYPE_ISA_PARALLEL
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>
This commit is contained in:
parent
7812dbc54c
commit
1d1afd9ff7
2 changed files with 17 additions and 0 deletions
|
@ -29,4 +29,7 @@ struct ISAParallelState {
|
|||
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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue