mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
intel-hda: update irq status on WAKEEN changes.
When the guest updates the WAKEEN register we must re-calculate the IRQ status. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
parent
af93485cde
commit
6a0d02f5be
1 changed files with 6 additions and 0 deletions
|
@ -508,6 +508,11 @@ static void intel_hda_set_g_ctl(IntelHDAState *d, const IntelHDAReg *reg, uint32
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void intel_hda_set_wake_en(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
|
||||||
|
{
|
||||||
|
intel_hda_update_irq(d);
|
||||||
|
}
|
||||||
|
|
||||||
static void intel_hda_set_state_sts(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
|
static void intel_hda_set_state_sts(IntelHDAState *d, const IntelHDAReg *reg, uint32_t old)
|
||||||
{
|
{
|
||||||
intel_hda_update_irq(d);
|
intel_hda_update_irq(d);
|
||||||
|
@ -630,6 +635,7 @@ static const struct IntelHDAReg regtab[] = {
|
||||||
.size = 2,
|
.size = 2,
|
||||||
.wmask = 0x3fff,
|
.wmask = 0x3fff,
|
||||||
.offset = offsetof(IntelHDAState, wake_en),
|
.offset = offsetof(IntelHDAState, wake_en),
|
||||||
|
.whandler = intel_hda_set_wake_en,
|
||||||
},
|
},
|
||||||
[ ICH6_REG_STATESTS ] = {
|
[ ICH6_REG_STATESTS ] = {
|
||||||
.name = "STATESTS",
|
.name = "STATESTS",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue