diff options
author | John Snow <jsnow@redhat.com> | 2016-01-11 14:10:42 -0500 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:28:23 -0600 |
commit | 84ff8b97adc5618674421d2f75766e4ca688b69c (patch) | |
tree | c6f7e0e38779859982ef413b7f2d9118bcaa4273 /tests/ahci-test.c | |
parent | 5d134d6218e3ea21ee176b07a444c89226f61a22 (diff) | |
download | hqemu-84ff8b97adc5618674421d2f75766e4ca688b69c.zip hqemu-84ff8b97adc5618674421d2f75766e4ca688b69c.tar.gz |
libqos/ahci: ATAPI identify
We need to say "hello!" to our ATAPI friends
in a slightly different manner.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 1452282920-21550-4-git-send-email-jsnow@redhat.com
Diffstat (limited to 'tests/ahci-test.c')
-rw-r--r-- | tests/ahci-test.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/ahci-test.c b/tests/ahci-test.c index f4945dc..8ebbd33 100644 --- a/tests/ahci-test.c +++ b/tests/ahci-test.c @@ -215,6 +215,7 @@ static AHCIQState *ahci_boot_and_enable(const char *cli, ...) va_list ap; uint16_t buff[256]; uint8_t port; + uint8_t hello; if (cli) { va_start(ap, cli); @@ -229,7 +230,12 @@ static AHCIQState *ahci_boot_and_enable(const char *cli, ...) /* Initialize test device */ port = ahci_port_select(ahci); ahci_port_clear(ahci, port); - ahci_io(ahci, port, CMD_IDENTIFY, &buff, sizeof(buff), 0); + if (is_atapi(ahci, port)) { + hello = CMD_PACKET_ID; + } else { + hello = CMD_IDENTIFY; + } + ahci_io(ahci, port, hello, &buff, sizeof(buff), 0); return ahci; } |