diff options
author | Niklas Cassel <niklas.cassel@wdc.com> | 2023-06-09 16:08:38 +0200 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2023-09-06 22:48:04 -0400 |
commit | c3461c6264a7c8ca15b117e91fe5da786924a784 (patch) | |
tree | 8aab9451704fdcddaf9e1c449efe69ea258ae9c8 /scripts/u2f-setup-gen.py | |
parent | c152379422a204109f34ca2b43ecc538c7d738ae (diff) | |
download | qemu-c3461c6264a7c8ca15b117e91fe5da786924a784.zip qemu-c3461c6264a7c8ca15b117e91fe5da786924a784.tar.gz qemu-c3461c6264a7c8ca15b117e91fe5da786924a784.tar.bz2 |
hw/ide/core: set ERR_STAT in unsupported command completion
Currently, the first time sending an unsupported command
(e.g. READ LOG DMA EXT) will not have ERR_STAT set in the completion.
Sending the unsupported command again, will correctly have ERR_STAT set.
When ide_cmd_permitted() returns false, it calls ide_abort_command().
ide_abort_command() first calls ide_transfer_stop(), which will call
ide_transfer_halt() and ide_cmd_done(), after that ide_abort_command()
sets ERR_STAT in status.
ide_cmd_done() for AHCI will call ahci_write_fis_d2h() which writes the
current status in the FIS, and raises an IRQ. (The status here will not
have ERR_STAT set!).
Thus, we cannot call ide_transfer_stop() before setting ERR_STAT, as
ide_transfer_stop() will result in the FIS being written and an IRQ
being raised.
The reason why it works the second time, is that ERR_STAT will still
be set from the previous command, so when writing the FIS, the
completion will correctly have ERR_STAT set.
Set ERR_STAT before writing the FIS (calling cmd_done), so that we will
raise an error IRQ correctly when receiving an unsupported command.
Signed-off-by: Niklas Cassel <niklas.cassel@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20230609140844.202795-3-nks@flawful.org
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'scripts/u2f-setup-gen.py')
0 files changed, 0 insertions, 0 deletions