diff options
| author | Lubomir Rintel <lkundrak@v3.sk> | 2022-11-30 13:02:38 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-01-06 00:50:32 +0100 |
| commit | 1ea17d228e582b1cfbf6f61e9da5fafef4063be8 (patch) | |
| tree | 66317c375c866f2052c59526daa6497422533a0f /include/hw/ide/internal.h | |
| parent | 9b063b7ea697d796914b3651d15c3457b7b1135c (diff) | |
| download | focaccia-qemu-1ea17d228e582b1cfbf6f61e9da5fafef4063be8.tar.gz focaccia-qemu-1ea17d228e582b1cfbf6f61e9da5fafef4063be8.zip | |
ide: Add 8-bit data mode
CompactFlash uses features 0x01 and 0x81 to enable/disable 8-bit data path. Implement them. Signed-off-by: Lubomir Rintel <lkundrak@v3.sk> Message-Id: <20221130120238.706717-1-lkundrak@v3.sk> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/ide/internal.h')
| -rw-r--r-- | include/hw/ide/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/ide/internal.h b/include/hw/ide/internal.h index b17f36df95..fc0aa81a88 100644 --- a/include/hw/ide/internal.h +++ b/include/hw/ide/internal.h @@ -402,6 +402,7 @@ struct IDEState { uint8_t select; uint8_t status; + bool io8; bool reset_reverts; /* set for lba48 access */ |