diff options
| author | Bernhard Beschow <shentey@gmail.com> | 2024-01-14 13:39:06 +0100 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2024-02-14 06:09:32 -0500 |
| commit | f165cdf102bb93c255c63b77617ba371d73344e0 (patch) | |
| tree | 12797f4bb3b1feae2c39caa99f53e4561a44f449 /system/ioport.c | |
| parent | ad2b652341f4257e2fb7ebf3834724f91173a07a (diff) | |
| download | focaccia-qemu-f165cdf102bb93c255c63b77617ba371d73344e0.tar.gz focaccia-qemu-f165cdf102bb93c255c63b77617ba371d73344e0.zip | |
exec/ioport: Add portio_list_set_enabled()
Some SuperI/O devices such as the VIA south bridges or the PC87312 controller allow to enable or disable their SuperI/O functions. Add a convenience function for implementing this in the VIA south bridges. The naming of the functions is inspired by its memory_region_set_enabled() pendant. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Message-Id: <20240114123911.4877-7-shentey@gmail.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'system/ioport.c')
| -rw-r--r-- | system/ioport.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/system/ioport.c b/system/ioport.c index 000e0ee1af..fd551d0375 100644 --- a/system/ioport.c +++ b/system/ioport.c @@ -324,6 +324,15 @@ void portio_list_del(PortioList *piolist) } } +void portio_list_set_enabled(PortioList *piolist, bool enabled) +{ + unsigned i; + + for (i = 0; i < piolist->nr; ++i) { + memory_region_set_enabled(piolist->regions[i], enabled); + } +} + void portio_list_set_address(PortioList *piolist, uint32_t addr) { MemoryRegionPortioList *mrpio; |