mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
Merge remote-tracking branch 'kwolf/for-anthony' into staging
This commit is contained in:
commit
c8af89af96
18 changed files with 254 additions and 177 deletions
|
@ -499,10 +499,7 @@ static void ahci_reset_port(AHCIState *s, int port)
|
|||
ide_bus_reset(&d->port);
|
||||
ide_state->ncq_queues = AHCI_MAX_CMDS;
|
||||
|
||||
pr->irq_stat = 0;
|
||||
pr->irq_mask = 0;
|
||||
pr->scr_stat = 0;
|
||||
pr->scr_ctl = 0;
|
||||
pr->scr_err = 0;
|
||||
pr->scr_act = 0;
|
||||
d->busy_slot = -1;
|
||||
|
@ -1159,12 +1156,17 @@ void ahci_uninit(AHCIState *s)
|
|||
void ahci_reset(void *opaque)
|
||||
{
|
||||
struct AHCIPCIState *d = opaque;
|
||||
AHCIPortRegs *pr;
|
||||
int i;
|
||||
|
||||
d->ahci.control_regs.irqstatus = 0;
|
||||
d->ahci.control_regs.ghc = 0;
|
||||
|
||||
for (i = 0; i < d->ahci.ports; i++) {
|
||||
pr = &d->ahci.dev[i].port_regs;
|
||||
pr->irq_stat = 0;
|
||||
pr->irq_mask = 0;
|
||||
pr->scr_ctl = 0;
|
||||
ahci_reset_port(&d->ahci, i);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue