1 | /* $Id: DevATA.cpp 99739 2023-05-11 01:01:08Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox storage devices: ATA/ATAPI controller device (disk and cdrom).
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 |
|
---|
29 | /*********************************************************************************************************************************
|
---|
30 | * Header Files *
|
---|
31 | *********************************************************************************************************************************/
|
---|
32 | #define LOG_GROUP LOG_GROUP_DEV_IDE
|
---|
33 | #include <VBox/vmm/pdmdev.h>
|
---|
34 | #include <VBox/vmm/pdmstorageifs.h>
|
---|
35 | #include <iprt/assert.h>
|
---|
36 | #include <iprt/string.h>
|
---|
37 | #ifdef IN_RING3
|
---|
38 | # include <iprt/mem.h>
|
---|
39 | # include <iprt/mp.h>
|
---|
40 | # include <iprt/semaphore.h>
|
---|
41 | # include <iprt/thread.h>
|
---|
42 | # include <iprt/time.h>
|
---|
43 | # include <iprt/uuid.h>
|
---|
44 | #endif /* IN_RING3 */
|
---|
45 | #include <iprt/critsect.h>
|
---|
46 | #include <iprt/asm.h>
|
---|
47 | #include <VBox/vmm/stam.h>
|
---|
48 | #include <VBox/vmm/mm.h>
|
---|
49 | #include <VBox/vmm/pgm.h>
|
---|
50 |
|
---|
51 | #include <VBox/sup.h>
|
---|
52 | #include <VBox/AssertGuest.h>
|
---|
53 | #include <VBox/scsi.h>
|
---|
54 | #include <VBox/scsiinline.h>
|
---|
55 | #include <VBox/ata.h>
|
---|
56 |
|
---|
57 | #include "ATAPIPassthrough.h"
|
---|
58 | #include "VBoxDD.h"
|
---|
59 |
|
---|
60 |
|
---|
61 | /*********************************************************************************************************************************
|
---|
62 | * Defined Constants And Macros *
|
---|
63 | *********************************************************************************************************************************/
|
---|
64 | /** Temporary instrumentation for tracking down potential virtual disk
|
---|
65 | * write performance issues. */
|
---|
66 | #undef VBOX_INSTRUMENT_DMA_WRITES
|
---|
67 |
|
---|
68 | /** @name The SSM saved state versions.
|
---|
69 | * @{
|
---|
70 | */
|
---|
71 | /** The current saved state version. */
|
---|
72 | #define ATA_SAVED_STATE_VERSION 21
|
---|
73 | /** Saved state version without iCurLBA for ATA commands. */
|
---|
74 | #define ATA_SAVED_STATE_VERSION_WITHOUT_ATA_ILBA 20
|
---|
75 | /** The saved state version used by VirtualBox 3.0.
|
---|
76 | * This lacks the config part and has the type at the and. */
|
---|
77 | #define ATA_SAVED_STATE_VERSION_VBOX_30 19
|
---|
78 | #define ATA_SAVED_STATE_VERSION_WITH_BOOL_TYPE 18
|
---|
79 | #define ATA_SAVED_STATE_VERSION_WITHOUT_FULL_SENSE 16
|
---|
80 | #define ATA_SAVED_STATE_VERSION_WITHOUT_EVENT_STATUS 17
|
---|
81 | /** @} */
|
---|
82 |
|
---|
83 | /** Values read from an empty (with no devices attached) ATA bus. */
|
---|
84 | #define ATA_EMPTY_BUS_DATA 0x7F
|
---|
85 | #define ATA_EMPTY_BUS_DATA_32 0x7F7F7F7F
|
---|
86 |
|
---|
87 | /**
|
---|
88 | * Maximum number of sectors to transfer in a READ/WRITE MULTIPLE request.
|
---|
89 | * Set to 1 to disable multi-sector read support. According to the ATA
|
---|
90 | * specification this must be a power of 2 and it must fit in an 8 bit
|
---|
91 | * value. Thus the only valid values are 1, 2, 4, 8, 16, 32, 64 and 128.
|
---|
92 | */
|
---|
93 | #define ATA_MAX_MULT_SECTORS 128
|
---|
94 |
|
---|
95 | /** The maxium I/O buffer size (for sanity). */
|
---|
96 | #define ATA_MAX_SECTOR_SIZE _4K
|
---|
97 | /** The maxium I/O buffer size (for sanity). */
|
---|
98 | #define ATA_MAX_IO_BUFFER_SIZE (ATA_MAX_MULT_SECTORS * ATA_MAX_SECTOR_SIZE)
|
---|
99 |
|
---|
100 | /** Mask to be applied to all indexing into ATACONTROLLER::aIfs. */
|
---|
101 | #define ATA_SELECTED_IF_MASK 1
|
---|
102 |
|
---|
103 | /**
|
---|
104 | * Fastest PIO mode supported by the drive.
|
---|
105 | */
|
---|
106 | #define ATA_PIO_MODE_MAX 4
|
---|
107 | /**
|
---|
108 | * Fastest MDMA mode supported by the drive.
|
---|
109 | */
|
---|
110 | #define ATA_MDMA_MODE_MAX 2
|
---|
111 | /**
|
---|
112 | * Fastest UDMA mode supported by the drive.
|
---|
113 | */
|
---|
114 | #define ATA_UDMA_MODE_MAX 6
|
---|
115 |
|
---|
116 | /** ATAPI sense info size. */
|
---|
117 | #define ATAPI_SENSE_SIZE 64
|
---|
118 |
|
---|
119 | /** The maximum number of release log entries per device. */
|
---|
120 | #define MAX_LOG_REL_ERRORS 1024
|
---|
121 |
|
---|
122 | /* MediaEventStatus */
|
---|
123 | #define ATA_EVENT_STATUS_UNCHANGED 0 /**< medium event status not changed */
|
---|
124 | #define ATA_EVENT_STATUS_MEDIA_EJECT_REQUESTED 1 /**< medium eject requested (eject button pressed) */
|
---|
125 | #define ATA_EVENT_STATUS_MEDIA_NEW 2 /**< new medium inserted */
|
---|
126 | #define ATA_EVENT_STATUS_MEDIA_REMOVED 3 /**< medium removed */
|
---|
127 | #define ATA_EVENT_STATUS_MEDIA_CHANGED 4 /**< medium was removed + new medium was inserted */
|
---|
128 |
|
---|
129 | /* Media track type */
|
---|
130 | #define ATA_MEDIA_TYPE_UNKNOWN 0 /**< unknown CD type */
|
---|
131 | #define ATA_MEDIA_NO_DISC 0x70 /**< Door closed, no medium */
|
---|
132 |
|
---|
133 | /** @defgroup grp_piix3atabmdma PIIX3 ATA Bus Master DMA
|
---|
134 | * @{
|
---|
135 | */
|
---|
136 |
|
---|
137 | /** @name BM_STATUS
|
---|
138 | * @{
|
---|
139 | */
|
---|
140 | /** Currently performing a DMA operation. */
|
---|
141 | #define BM_STATUS_DMAING 0x01
|
---|
142 | /** An error occurred during the DMA operation. */
|
---|
143 | #define BM_STATUS_ERROR 0x02
|
---|
144 | /** The DMA unit has raised the IDE interrupt line. */
|
---|
145 | #define BM_STATUS_INT 0x04
|
---|
146 | /** User-defined bit 0, commonly used to signal that drive 0 supports DMA. */
|
---|
147 | #define BM_STATUS_D0DMA 0x20
|
---|
148 | /** User-defined bit 1, commonly used to signal that drive 1 supports DMA. */
|
---|
149 | #define BM_STATUS_D1DMA 0x40
|
---|
150 | /** @} */
|
---|
151 |
|
---|
152 | /** @name BM_CMD
|
---|
153 | * @{
|
---|
154 | */
|
---|
155 | /** Start the DMA operation. */
|
---|
156 | #define BM_CMD_START 0x01
|
---|
157 | /** Data transfer direction: from device to memory if set. */
|
---|
158 | #define BM_CMD_WRITE 0x08
|
---|
159 | /** @} */
|
---|
160 |
|
---|
161 | /** Number of I/O ports per bus-master DMA controller. */
|
---|
162 | #define BM_DMA_CTL_IOPORTS 8
|
---|
163 | /** Mask corresponding to BM_DMA_CTL_IOPORTS. */
|
---|
164 | #define BM_DMA_CTL_IOPORTS_MASK 7
|
---|
165 | /** Shift count corresponding to BM_DMA_CTL_IOPORTS. */
|
---|
166 | #define BM_DMA_CTL_IOPORTS_SHIFT 3
|
---|
167 |
|
---|
168 | /** @} */
|
---|
169 |
|
---|
170 | #define ATADEVSTATE_2_DEVINS(pIf) ( (pIf)->CTX_SUFF(pDevIns) )
|
---|
171 | #define CONTROLLER_2_DEVINS(pController) ( (pController)->CTX_SUFF(pDevIns) )
|
---|
172 |
|
---|
173 |
|
---|
174 | /*********************************************************************************************************************************
|
---|
175 | * Structures and Typedefs *
|
---|
176 | *********************************************************************************************************************************/
|
---|
177 | /** @defgroup grp_piix3atabmdma PIIX3 ATA Bus Master DMA
|
---|
178 | * @{
|
---|
179 | */
|
---|
180 | /** PIIX3 Bus Master DMA unit state. */
|
---|
181 | typedef struct BMDMAState
|
---|
182 | {
|
---|
183 | /** Command register. */
|
---|
184 | uint8_t u8Cmd;
|
---|
185 | /** Status register. */
|
---|
186 | uint8_t u8Status;
|
---|
187 | /** Explicit alignment padding. */
|
---|
188 | uint8_t abAlignment[2];
|
---|
189 | /** Address of the MMIO region in the guest's memory space. */
|
---|
190 | RTGCPHYS32 GCPhysAddr;
|
---|
191 | } BMDMAState;
|
---|
192 |
|
---|
193 | /** PIIX3 Bus Master DMA descriptor entry. */
|
---|
194 | typedef struct BMDMADesc
|
---|
195 | {
|
---|
196 | /** Address of the DMA source/target buffer. */
|
---|
197 | RTGCPHYS32 GCPhysBuffer;
|
---|
198 | /** Size of the DMA source/target buffer. */
|
---|
199 | uint32_t cbBuffer;
|
---|
200 | } BMDMADesc;
|
---|
201 | /** @} */
|
---|
202 |
|
---|
203 |
|
---|
204 | /**
|
---|
205 | * The shared state of an ATA device.
|
---|
206 | */
|
---|
207 | typedef struct ATADEVSTATE
|
---|
208 | {
|
---|
209 | /** The I/O buffer.
|
---|
210 | * @note Page aligned in case it helps. */
|
---|
211 | uint8_t abIOBuffer[ATA_MAX_IO_BUFFER_SIZE];
|
---|
212 |
|
---|
213 | /** Flag indicating whether the current command uses LBA48 mode. */
|
---|
214 | bool fLBA48;
|
---|
215 | /** Flag indicating whether this drive implements the ATAPI command set. */
|
---|
216 | bool fATAPI;
|
---|
217 | /** Set if this interface has asserted the IRQ. */
|
---|
218 | bool fIrqPending;
|
---|
219 | /** Currently configured number of sectors in a multi-sector transfer. */
|
---|
220 | uint8_t cMultSectors;
|
---|
221 | /** Physical CHS disk geometry (static). */
|
---|
222 | PDMMEDIAGEOMETRY PCHSGeometry;
|
---|
223 | /** Translated CHS disk geometry (variable). */
|
---|
224 | PDMMEDIAGEOMETRY XCHSGeometry;
|
---|
225 | /** Total number of sectors on this disk. */
|
---|
226 | uint64_t cTotalSectors;
|
---|
227 | /** Sector size of the medium. */
|
---|
228 | uint32_t cbSector;
|
---|
229 | /** Number of sectors to transfer per IRQ. */
|
---|
230 | uint32_t cSectorsPerIRQ;
|
---|
231 |
|
---|
232 | /** ATA/ATAPI register 1: feature (write-only). */
|
---|
233 | uint8_t uATARegFeature;
|
---|
234 | /** ATA/ATAPI register 1: feature, high order byte. */
|
---|
235 | uint8_t uATARegFeatureHOB;
|
---|
236 | /** ATA/ATAPI register 1: error (read-only). */
|
---|
237 | uint8_t uATARegError;
|
---|
238 | /** ATA/ATAPI register 2: sector count (read/write). */
|
---|
239 | uint8_t uATARegNSector;
|
---|
240 | /** ATA/ATAPI register 2: sector count, high order byte. */
|
---|
241 | uint8_t uATARegNSectorHOB;
|
---|
242 | /** ATA/ATAPI register 3: sector (read/write). */
|
---|
243 | uint8_t uATARegSector;
|
---|
244 | /** ATA/ATAPI register 3: sector, high order byte. */
|
---|
245 | uint8_t uATARegSectorHOB;
|
---|
246 | /** ATA/ATAPI register 4: cylinder low (read/write). */
|
---|
247 | uint8_t uATARegLCyl;
|
---|
248 | /** ATA/ATAPI register 4: cylinder low, high order byte. */
|
---|
249 | uint8_t uATARegLCylHOB;
|
---|
250 | /** ATA/ATAPI register 5: cylinder high (read/write). */
|
---|
251 | uint8_t uATARegHCyl;
|
---|
252 | /** ATA/ATAPI register 5: cylinder high, high order byte. */
|
---|
253 | uint8_t uATARegHCylHOB;
|
---|
254 | /** ATA/ATAPI register 6: select drive/head (read/write). */
|
---|
255 | uint8_t uATARegSelect;
|
---|
256 | /** ATA/ATAPI register 7: status (read-only). */
|
---|
257 | uint8_t uATARegStatus;
|
---|
258 | /** ATA/ATAPI register 7: command (write-only). */
|
---|
259 | uint8_t uATARegCommand;
|
---|
260 | /** ATA/ATAPI drive control register (write-only). */
|
---|
261 | uint8_t uATARegDevCtl;
|
---|
262 |
|
---|
263 | /** Currently active transfer mode (MDMA/UDMA) and speed. */
|
---|
264 | uint8_t uATATransferMode;
|
---|
265 | /** Current transfer direction. */
|
---|
266 | uint8_t uTxDir;
|
---|
267 | /** Index of callback for begin transfer. */
|
---|
268 | uint8_t iBeginTransfer;
|
---|
269 | /** Index of callback for source/sink of data. */
|
---|
270 | uint8_t iSourceSink;
|
---|
271 | /** Flag indicating whether the current command transfers data in DMA mode. */
|
---|
272 | bool fDMA;
|
---|
273 | /** Set to indicate that ATAPI transfer semantics must be used. */
|
---|
274 | bool fATAPITransfer;
|
---|
275 |
|
---|
276 | /** Total ATA/ATAPI transfer size, shared PIO/DMA. */
|
---|
277 | uint32_t cbTotalTransfer;
|
---|
278 | /** Elementary ATA/ATAPI transfer size, shared PIO/DMA. */
|
---|
279 | uint32_t cbElementaryTransfer;
|
---|
280 | /** Maximum ATAPI elementary transfer size, PIO only. */
|
---|
281 | uint32_t cbPIOTransferLimit;
|
---|
282 | /** ATAPI passthrough transfer size, shared PIO/DMA */
|
---|
283 | uint32_t cbAtapiPassthroughTransfer;
|
---|
284 | /** Current read/write buffer position, shared PIO/DMA. */
|
---|
285 | uint32_t iIOBufferCur;
|
---|
286 | /** First element beyond end of valid buffer content, shared PIO/DMA. */
|
---|
287 | uint32_t iIOBufferEnd;
|
---|
288 | /** Align the following fields correctly. */
|
---|
289 | uint32_t Alignment0;
|
---|
290 |
|
---|
291 | /** ATA/ATAPI current PIO read/write transfer position. Not shared with DMA for safety reasons. */
|
---|
292 | uint32_t iIOBufferPIODataStart;
|
---|
293 | /** ATA/ATAPI current PIO read/write transfer end. Not shared with DMA for safety reasons. */
|
---|
294 | uint32_t iIOBufferPIODataEnd;
|
---|
295 |
|
---|
296 | /** Current LBA position (both ATA/ATAPI). */
|
---|
297 | uint32_t iCurLBA;
|
---|
298 | /** ATAPI current sector size. */
|
---|
299 | uint32_t cbATAPISector;
|
---|
300 | /** ATAPI current command. */
|
---|
301 | uint8_t abATAPICmd[ATAPI_PACKET_SIZE];
|
---|
302 | /** ATAPI sense data. */
|
---|
303 | uint8_t abATAPISense[ATAPI_SENSE_SIZE];
|
---|
304 | /** HACK: Countdown till we report a newly unmounted drive as mounted. */
|
---|
305 | uint8_t cNotifiedMediaChange;
|
---|
306 | /** The same for GET_EVENT_STATUS for mechanism */
|
---|
307 | volatile uint32_t MediaEventStatus;
|
---|
308 |
|
---|
309 | /** Media type if known. */
|
---|
310 | volatile uint32_t MediaTrackType;
|
---|
311 |
|
---|
312 | /** The status LED state for this drive. */
|
---|
313 | PDMLED Led;
|
---|
314 |
|
---|
315 | /** Size of I/O buffer. */
|
---|
316 | uint32_t cbIOBuffer;
|
---|
317 |
|
---|
318 | /*
|
---|
319 | * No data that is part of the saved state after this point!!!!!
|
---|
320 | */
|
---|
321 |
|
---|
322 | /** Counter for number of busy status seen in R3 in a row. */
|
---|
323 | uint8_t cBusyStatusHackR3;
|
---|
324 | /** Counter for number of busy status seen in GC/R0 in a row. */
|
---|
325 | uint8_t cBusyStatusHackRZ;
|
---|
326 | /** Defines the R3 yield rate by a mask (power of 2 minus one).
|
---|
327 | * Lower is more agressive. */
|
---|
328 | uint8_t cBusyStatusHackR3Rate;
|
---|
329 | /** Defines the R0/RC yield rate by a mask (power of 2 minus one).
|
---|
330 | * Lower is more agressive. */
|
---|
331 | uint8_t cBusyStatusHackRZRate;
|
---|
332 |
|
---|
333 | /** Release statistics: number of ATA DMA commands. */
|
---|
334 | STAMCOUNTER StatATADMA;
|
---|
335 | /** Release statistics: number of ATA PIO commands. */
|
---|
336 | STAMCOUNTER StatATAPIO;
|
---|
337 | /** Release statistics: number of ATAPI PIO commands. */
|
---|
338 | STAMCOUNTER StatATAPIDMA;
|
---|
339 | /** Release statistics: number of ATAPI PIO commands. */
|
---|
340 | STAMCOUNTER StatATAPIPIO;
|
---|
341 | #ifdef VBOX_INSTRUMENT_DMA_WRITES
|
---|
342 | /** Release statistics: number of DMA sector writes and the time spent. */
|
---|
343 | STAMPROFILEADV StatInstrVDWrites;
|
---|
344 | #endif
|
---|
345 | /** Release statistics: Profiling RTThreadYield calls during status polling. */
|
---|
346 | STAMPROFILEADV StatStatusYields;
|
---|
347 |
|
---|
348 | /** Statistics: number of read operations and the time spent reading. */
|
---|
349 | STAMPROFILEADV StatReads;
|
---|
350 | /** Statistics: number of bytes read. */
|
---|
351 | STAMCOUNTER StatBytesRead;
|
---|
352 | /** Statistics: number of write operations and the time spent writing. */
|
---|
353 | STAMPROFILEADV StatWrites;
|
---|
354 | /** Statistics: number of bytes written. */
|
---|
355 | STAMCOUNTER StatBytesWritten;
|
---|
356 | /** Statistics: number of flush operations and the time spend flushing. */
|
---|
357 | STAMPROFILE StatFlushes;
|
---|
358 |
|
---|
359 | /** Enable passing through commands directly to the ATAPI drive. */
|
---|
360 | bool fATAPIPassthrough;
|
---|
361 | /** Flag whether to overwrite inquiry data in passthrough mode. */
|
---|
362 | bool fOverwriteInquiry;
|
---|
363 | /** Number of errors we've reported to the release log.
|
---|
364 | * This is to prevent flooding caused by something going horribly wrong.
|
---|
365 | * this value against MAX_LOG_REL_ERRORS in places likely to cause floods
|
---|
366 | * like the ones we currently seeing on the linux smoke tests (2006-11-10). */
|
---|
367 | uint32_t cErrors;
|
---|
368 | /** Timestamp of last started command. 0 if no command pending. */
|
---|
369 | uint64_t u64CmdTS;
|
---|
370 |
|
---|
371 | /** The LUN number. */
|
---|
372 | uint32_t iLUN;
|
---|
373 | /** The controller number. */
|
---|
374 | uint8_t iCtl;
|
---|
375 | /** The device number. */
|
---|
376 | uint8_t iDev;
|
---|
377 | /** Set if the device is present. */
|
---|
378 | bool fPresent;
|
---|
379 | /** Explicit alignment. */
|
---|
380 | uint8_t bAlignment2;
|
---|
381 |
|
---|
382 | /** The serial number to use for IDENTIFY DEVICE commands. */
|
---|
383 | char szSerialNumber[ATA_SERIAL_NUMBER_LENGTH+1];
|
---|
384 | /** The firmware revision to use for IDENTIFY DEVICE commands. */
|
---|
385 | char szFirmwareRevision[ATA_FIRMWARE_REVISION_LENGTH+1];
|
---|
386 | /** The model number to use for IDENTIFY DEVICE commands. */
|
---|
387 | char szModelNumber[ATA_MODEL_NUMBER_LENGTH+1];
|
---|
388 | /** The vendor identification string for SCSI INQUIRY commands. */
|
---|
389 | char szInquiryVendorId[SCSI_INQUIRY_VENDOR_ID_LENGTH+1];
|
---|
390 | /** The product identification string for SCSI INQUIRY commands. */
|
---|
391 | char szInquiryProductId[SCSI_INQUIRY_PRODUCT_ID_LENGTH+1];
|
---|
392 | /** The revision string for SCSI INQUIRY commands. */
|
---|
393 | char szInquiryRevision[SCSI_INQUIRY_REVISION_LENGTH+1];
|
---|
394 |
|
---|
395 | /** Padding the structure to a multiple of 4096 for better I/O buffer alignment. */
|
---|
396 | uint8_t abAlignment4[7 + 3528];
|
---|
397 | } ATADEVSTATE;
|
---|
398 | AssertCompileMemberAlignment(ATADEVSTATE, cTotalSectors, 8);
|
---|
399 | AssertCompileMemberAlignment(ATADEVSTATE, StatATADMA, 8);
|
---|
400 | AssertCompileMemberAlignment(ATADEVSTATE, u64CmdTS, 8);
|
---|
401 | AssertCompileMemberAlignment(ATADEVSTATE, szSerialNumber, 8);
|
---|
402 | AssertCompileSizeAlignment(ATADEVSTATE, 4096); /* To align the buffer on a page boundrary. */
|
---|
403 | /** Pointer to the shared state of an ATA device. */
|
---|
404 | typedef ATADEVSTATE *PATADEVSTATE;
|
---|
405 |
|
---|
406 |
|
---|
407 | /**
|
---|
408 | * The ring-3 state of an ATA device.
|
---|
409 | *
|
---|
410 | * @implements PDMIBASE
|
---|
411 | * @implements PDMIBLOCKPORT
|
---|
412 | * @implements PDMIMOUNTNOTIFY
|
---|
413 | */
|
---|
414 | typedef struct ATADEVSTATER3
|
---|
415 | {
|
---|
416 | /** Pointer to the attached driver's base interface. */
|
---|
417 | R3PTRTYPE(PPDMIBASE) pDrvBase;
|
---|
418 | /** Pointer to the attached driver's block interface. */
|
---|
419 | R3PTRTYPE(PPDMIMEDIA) pDrvMedia;
|
---|
420 | /** Pointer to the attached driver's mount interface.
|
---|
421 | * This is NULL if the driver isn't a removable unit. */
|
---|
422 | R3PTRTYPE(PPDMIMOUNT) pDrvMount;
|
---|
423 | /** The base interface. */
|
---|
424 | PDMIBASE IBase;
|
---|
425 | /** The block port interface. */
|
---|
426 | PDMIMEDIAPORT IPort;
|
---|
427 | /** The mount notify interface. */
|
---|
428 | PDMIMOUNTNOTIFY IMountNotify;
|
---|
429 |
|
---|
430 | /** The LUN number. */
|
---|
431 | uint32_t iLUN;
|
---|
432 | /** The controller number. */
|
---|
433 | uint8_t iCtl;
|
---|
434 | /** The device number. */
|
---|
435 | uint8_t iDev;
|
---|
436 | /** Explicit alignment. */
|
---|
437 | uint8_t abAlignment2[2];
|
---|
438 | /** The device instance so we can get our bearings from an interface method. */
|
---|
439 | PPDMDEVINSR3 pDevIns;
|
---|
440 |
|
---|
441 | /** The current tracklist of the loaded medium if passthrough is used. */
|
---|
442 | R3PTRTYPE(PTRACKLIST) pTrackList;
|
---|
443 | } ATADEVSTATER3;
|
---|
444 | /** Pointer to the ring-3 state of an ATA device. */
|
---|
445 | typedef ATADEVSTATER3 *PATADEVSTATER3;
|
---|
446 |
|
---|
447 |
|
---|
448 | /**
|
---|
449 | * Transfer request forwarded to the async I/O thread.
|
---|
450 | */
|
---|
451 | typedef struct ATATransferRequest
|
---|
452 | {
|
---|
453 | /** The interface index the request is for. */
|
---|
454 | uint8_t iIf;
|
---|
455 | /** The index of the begin transfer callback to call. */
|
---|
456 | uint8_t iBeginTransfer;
|
---|
457 | /** The index of the source sink callback to call for doing the transfer. */
|
---|
458 | uint8_t iSourceSink;
|
---|
459 | /** Transfer direction. */
|
---|
460 | uint8_t uTxDir;
|
---|
461 | /** How many bytes to transfer. */
|
---|
462 | uint32_t cbTotalTransfer;
|
---|
463 | } ATATransferRequest;
|
---|
464 |
|
---|
465 |
|
---|
466 | /**
|
---|
467 | * Abort request forwarded to the async I/O thread.
|
---|
468 | */
|
---|
469 | typedef struct ATAAbortRequest
|
---|
470 | {
|
---|
471 | /** The interface index the request is for. */
|
---|
472 | uint8_t iIf;
|
---|
473 | /** Flag whether to reset the drive. */
|
---|
474 | bool fResetDrive;
|
---|
475 | } ATAAbortRequest;
|
---|
476 |
|
---|
477 |
|
---|
478 | /**
|
---|
479 | * Request type indicator.
|
---|
480 | */
|
---|
481 | typedef enum
|
---|
482 | {
|
---|
483 | /** Begin a new transfer. */
|
---|
484 | ATA_AIO_NEW = 0,
|
---|
485 | /** Continue a DMA transfer. */
|
---|
486 | ATA_AIO_DMA,
|
---|
487 | /** Continue a PIO transfer. */
|
---|
488 | ATA_AIO_PIO,
|
---|
489 | /** Reset the drives on current controller, stop all transfer activity. */
|
---|
490 | ATA_AIO_RESET_ASSERTED,
|
---|
491 | /** Reset the drives on current controller, resume operation. */
|
---|
492 | ATA_AIO_RESET_CLEARED,
|
---|
493 | /** Abort the current transfer of a particular drive. */
|
---|
494 | ATA_AIO_ABORT
|
---|
495 | } ATAAIO;
|
---|
496 |
|
---|
497 |
|
---|
498 | /**
|
---|
499 | * Combining structure for an ATA request to the async I/O thread
|
---|
500 | * started with the request type insicator.
|
---|
501 | */
|
---|
502 | typedef struct ATARequest
|
---|
503 | {
|
---|
504 | /** Request type. */
|
---|
505 | ATAAIO ReqType;
|
---|
506 | /** Request type dependent data. */
|
---|
507 | union
|
---|
508 | {
|
---|
509 | /** Transfer request specific data. */
|
---|
510 | ATATransferRequest t;
|
---|
511 | /** Abort request specific data. */
|
---|
512 | ATAAbortRequest a;
|
---|
513 | } u;
|
---|
514 | } ATARequest;
|
---|
515 |
|
---|
516 |
|
---|
517 | /**
|
---|
518 | * The shared state of an ATA controller.
|
---|
519 | *
|
---|
520 | * Has two devices, the master (0) and the slave (1).
|
---|
521 | */
|
---|
522 | typedef struct ATACONTROLLER
|
---|
523 | {
|
---|
524 | /** The ATA/ATAPI interfaces of this controller. */
|
---|
525 | ATADEVSTATE aIfs[2];
|
---|
526 |
|
---|
527 | /** The base of the first I/O Port range. */
|
---|
528 | RTIOPORT IOPortBase1;
|
---|
529 | /** The base of the second I/O Port range. (0 if none) */
|
---|
530 | RTIOPORT IOPortBase2;
|
---|
531 | /** The assigned IRQ. */
|
---|
532 | uint32_t irq;
|
---|
533 | /** Access critical section */
|
---|
534 | PDMCRITSECT lock;
|
---|
535 |
|
---|
536 | /** Selected drive. */
|
---|
537 | uint8_t iSelectedIf;
|
---|
538 | /** The interface on which to handle async I/O. */
|
---|
539 | uint8_t iAIOIf;
|
---|
540 | /** The state of the async I/O thread. */
|
---|
541 | uint8_t uAsyncIOState;
|
---|
542 | /** Flag indicating whether the next transfer is part of the current command. */
|
---|
543 | bool fChainedTransfer;
|
---|
544 | /** Set when the reset processing is currently active on this controller. */
|
---|
545 | bool fReset;
|
---|
546 | /** Flag whether the current transfer needs to be redone. */
|
---|
547 | bool fRedo;
|
---|
548 | /** Flag whether the redo suspend has been finished. */
|
---|
549 | bool fRedoIdle;
|
---|
550 | /** Flag whether the DMA operation to be redone is the final transfer. */
|
---|
551 | bool fRedoDMALastDesc;
|
---|
552 | /** The BusMaster DMA state. */
|
---|
553 | BMDMAState BmDma;
|
---|
554 | /** Pointer to first DMA descriptor. */
|
---|
555 | RTGCPHYS32 GCPhysFirstDMADesc;
|
---|
556 | /** Pointer to last DMA descriptor. */
|
---|
557 | RTGCPHYS32 GCPhysLastDMADesc;
|
---|
558 | /** Pointer to current DMA buffer (for redo operations). */
|
---|
559 | RTGCPHYS32 GCPhysRedoDMABuffer;
|
---|
560 | /** Size of current DMA buffer (for redo operations). */
|
---|
561 | uint32_t cbRedoDMABuffer;
|
---|
562 |
|
---|
563 | /** The event semaphore the thread is waiting on for requests. */
|
---|
564 | SUPSEMEVENT hAsyncIOSem;
|
---|
565 | /** The request queue for the AIO thread. One element is always unused. */
|
---|
566 | ATARequest aAsyncIORequests[4];
|
---|
567 | /** The position at which to insert a new request for the AIO thread. */
|
---|
568 | volatile uint8_t AsyncIOReqHead;
|
---|
569 | /** The position at which to get a new request for the AIO thread. */
|
---|
570 | volatile uint8_t AsyncIOReqTail;
|
---|
571 | /** The controller number. */
|
---|
572 | uint8_t iCtl;
|
---|
573 | /** Magic delay before triggering interrupts in DMA mode. */
|
---|
574 | uint32_t msDelayIRQ;
|
---|
575 | /** The lock protecting the request queue. */
|
---|
576 | PDMCRITSECT AsyncIORequestLock;
|
---|
577 |
|
---|
578 | /** Timestamp we started the reset. */
|
---|
579 | uint64_t u64ResetTime;
|
---|
580 |
|
---|
581 | /** The first port in the first I/O port range, regular operation. */
|
---|
582 | IOMIOPORTHANDLE hIoPorts1First;
|
---|
583 | /** The other ports in the first I/O port range, regular operation. */
|
---|
584 | IOMIOPORTHANDLE hIoPorts1Other;
|
---|
585 | /** The second I/O port range, regular operation. */
|
---|
586 | IOMIOPORTHANDLE hIoPorts2;
|
---|
587 | /** The first I/O port range, empty controller operation. */
|
---|
588 | IOMIOPORTHANDLE hIoPortsEmpty1;
|
---|
589 | /** The second I/O port range, empty controller operation. */
|
---|
590 | IOMIOPORTHANDLE hIoPortsEmpty2;
|
---|
591 |
|
---|
592 | /* Statistics */
|
---|
593 | STAMCOUNTER StatAsyncOps;
|
---|
594 | uint64_t StatAsyncMinWait;
|
---|
595 | uint64_t StatAsyncMaxWait;
|
---|
596 | STAMCOUNTER StatAsyncTimeUS;
|
---|
597 | STAMPROFILEADV StatAsyncTime;
|
---|
598 | STAMPROFILE StatLockWait;
|
---|
599 | uint8_t abAlignment4[3328];
|
---|
600 | } ATACONTROLLER;
|
---|
601 | AssertCompileMemberAlignment(ATACONTROLLER, lock, 8);
|
---|
602 | AssertCompileMemberAlignment(ATACONTROLLER, aIfs, 8);
|
---|
603 | AssertCompileMemberAlignment(ATACONTROLLER, u64ResetTime, 8);
|
---|
604 | AssertCompileMemberAlignment(ATACONTROLLER, StatAsyncOps, 8);
|
---|
605 | AssertCompileMemberAlignment(ATACONTROLLER, AsyncIORequestLock, 8);
|
---|
606 | AssertCompileSizeAlignment(ATACONTROLLER, 4096); /* To align the controllers, devices and I/O buffers on page boundaries. */
|
---|
607 | /** Pointer to the shared state of an ATA controller. */
|
---|
608 | typedef ATACONTROLLER *PATACONTROLLER;
|
---|
609 |
|
---|
610 |
|
---|
611 | /**
|
---|
612 | * The ring-3 state of an ATA controller.
|
---|
613 | */
|
---|
614 | typedef struct ATACONTROLLERR3
|
---|
615 | {
|
---|
616 | /** The ATA/ATAPI interfaces of this controller. */
|
---|
617 | ATADEVSTATER3 aIfs[2];
|
---|
618 |
|
---|
619 | /** Pointer to device instance. */
|
---|
620 | PPDMDEVINSR3 pDevIns;
|
---|
621 |
|
---|
622 | /** The async I/O thread handle. NIL_RTTHREAD if no thread. */
|
---|
623 | RTTHREAD hAsyncIOThread;
|
---|
624 | /** The event semaphore the thread is waiting on during suspended I/O. */
|
---|
625 | RTSEMEVENT hSuspendIOSem;
|
---|
626 | /** Set when the destroying the device instance and the thread must exit. */
|
---|
627 | uint32_t volatile fShutdown;
|
---|
628 | /** Whether to call PDMDevHlpAsyncNotificationCompleted when idle. */
|
---|
629 | bool volatile fSignalIdle;
|
---|
630 |
|
---|
631 | /** The controller number. */
|
---|
632 | uint8_t iCtl;
|
---|
633 |
|
---|
634 | uint8_t abAlignment[3];
|
---|
635 | } ATACONTROLLERR3;
|
---|
636 | /** Pointer to the ring-3 state of an ATA controller. */
|
---|
637 | typedef ATACONTROLLERR3 *PATACONTROLLERR3;
|
---|
638 |
|
---|
639 |
|
---|
640 | /** ATA chipset type. */
|
---|
641 | typedef enum CHIPSET
|
---|
642 | {
|
---|
643 | /** PIIX3 chipset, must be 0 for saved state compatibility */
|
---|
644 | CHIPSET_PIIX3 = 0,
|
---|
645 | /** PIIX4 chipset, must be 1 for saved state compatibility */
|
---|
646 | CHIPSET_PIIX4,
|
---|
647 | /** ICH6 chipset */
|
---|
648 | CHIPSET_ICH6,
|
---|
649 | CHIPSET_32BIT_HACK=0x7fffffff
|
---|
650 | } CHIPSET;
|
---|
651 | AssertCompileSize(CHIPSET, 4);
|
---|
652 |
|
---|
653 | /**
|
---|
654 | * The shared state of a ATA PCI device.
|
---|
655 | */
|
---|
656 | typedef struct ATASTATE
|
---|
657 | {
|
---|
658 | /** The controllers. */
|
---|
659 | ATACONTROLLER aCts[2];
|
---|
660 | /** Flag indicating chipset being emulated. */
|
---|
661 | CHIPSET enmChipset;
|
---|
662 | /** Explicit alignment padding. */
|
---|
663 | uint8_t abAlignment1[7];
|
---|
664 | /** PCI region \#4: Bus-master DMA I/O ports. */
|
---|
665 | IOMIOPORTHANDLE hIoPortsBmDma;
|
---|
666 | } ATASTATE;
|
---|
667 | /** Pointer to the shared state of an ATA PCI device. */
|
---|
668 | typedef ATASTATE *PATASTATE;
|
---|
669 |
|
---|
670 |
|
---|
671 | /**
|
---|
672 | * The ring-3 state of a ATA PCI device.
|
---|
673 | *
|
---|
674 | * @implements PDMILEDPORTS
|
---|
675 | */
|
---|
676 | typedef struct ATASTATER3
|
---|
677 | {
|
---|
678 | /** The controllers. */
|
---|
679 | ATACONTROLLERR3 aCts[2];
|
---|
680 | /** Status LUN: Base interface. */
|
---|
681 | PDMIBASE IBase;
|
---|
682 | /** Status LUN: Leds interface. */
|
---|
683 | PDMILEDPORTS ILeds;
|
---|
684 | /** Status LUN: Partner of ILeds. */
|
---|
685 | R3PTRTYPE(PPDMILEDCONNECTORS) pLedsConnector;
|
---|
686 | /** Status LUN: Media Notify. */
|
---|
687 | R3PTRTYPE(PPDMIMEDIANOTIFY) pMediaNotify;
|
---|
688 | /** Pointer to device instance (for getting our bearings in interface methods). */
|
---|
689 | PPDMDEVINSR3 pDevIns;
|
---|
690 | } ATASTATER3;
|
---|
691 | /** Pointer to the ring-3 state of an ATA PCI device. */
|
---|
692 | typedef ATASTATER3 *PATASTATER3;
|
---|
693 |
|
---|
694 |
|
---|
695 | /**
|
---|
696 | * The ring-0 state of the ATA PCI device.
|
---|
697 | */
|
---|
698 | typedef struct ATASTATER0
|
---|
699 | {
|
---|
700 | uint64_t uUnused;
|
---|
701 | } ATASTATER0;
|
---|
702 | /** Pointer to the ring-0 state of an ATA PCI device. */
|
---|
703 | typedef ATASTATER0 *PATASTATER0;
|
---|
704 |
|
---|
705 |
|
---|
706 | /**
|
---|
707 | * The raw-mode state of the ATA PCI device.
|
---|
708 | */
|
---|
709 | typedef struct ATASTATERC
|
---|
710 | {
|
---|
711 | uint64_t uUnused;
|
---|
712 | } ATASTATERC;
|
---|
713 | /** Pointer to the raw-mode state of an ATA PCI device. */
|
---|
714 | typedef ATASTATERC *PATASTATERC;
|
---|
715 |
|
---|
716 |
|
---|
717 | /** The current context state of an ATA PCI device. */
|
---|
718 | typedef CTX_SUFF(ATASTATE) ATASTATECC;
|
---|
719 | /** Pointer to the current context state of an ATA PCI device. */
|
---|
720 | typedef CTX_SUFF(PATASTATE) PATASTATECC;
|
---|
721 |
|
---|
722 |
|
---|
723 | #ifndef VBOX_DEVICE_STRUCT_TESTCASE
|
---|
724 |
|
---|
725 |
|
---|
726 | #ifdef IN_RING3
|
---|
727 | DECLINLINE(void) ataSetStatusValue(PATACONTROLLER pCtl, PATADEVSTATE s, uint8_t stat)
|
---|
728 | {
|
---|
729 | /* Freeze status register contents while processing RESET. */
|
---|
730 | if (!pCtl->fReset)
|
---|
731 | {
|
---|
732 | s->uATARegStatus = stat;
|
---|
733 | Log2(("%s: LUN#%d status %#04x\n", __FUNCTION__, s->iLUN, s->uATARegStatus));
|
---|
734 | }
|
---|
735 | }
|
---|
736 | #endif /* IN_RING3 */
|
---|
737 |
|
---|
738 |
|
---|
739 | DECLINLINE(void) ataSetStatus(PATACONTROLLER pCtl, PATADEVSTATE s, uint8_t stat)
|
---|
740 | {
|
---|
741 | /* Freeze status register contents while processing RESET. */
|
---|
742 | if (!pCtl->fReset)
|
---|
743 | {
|
---|
744 | s->uATARegStatus |= stat;
|
---|
745 | Log2(("%s: LUN#%d status %#04x\n", __FUNCTION__, s->iLUN, s->uATARegStatus));
|
---|
746 | }
|
---|
747 | }
|
---|
748 |
|
---|
749 |
|
---|
750 | DECLINLINE(void) ataUnsetStatus(PATACONTROLLER pCtl, PATADEVSTATE s, uint8_t stat)
|
---|
751 | {
|
---|
752 | /* Freeze status register contents while processing RESET. */
|
---|
753 | if (!pCtl->fReset)
|
---|
754 | {
|
---|
755 | s->uATARegStatus &= ~stat;
|
---|
756 | Log2(("%s: LUN#%d status %#04x\n", __FUNCTION__, s->iLUN, s->uATARegStatus));
|
---|
757 | }
|
---|
758 | }
|
---|
759 |
|
---|
760 | #if defined(IN_RING3) || defined(IN_RING0)
|
---|
761 |
|
---|
762 | # ifdef IN_RING3
|
---|
763 | typedef void FNBEGINTRANSFER(PATACONTROLLER pCtl, PATADEVSTATE s);
|
---|
764 | typedef FNBEGINTRANSFER *PFNBEGINTRANSFER;
|
---|
765 | typedef bool FNSOURCESINK(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3);
|
---|
766 | typedef FNSOURCESINK *PFNSOURCESINK;
|
---|
767 |
|
---|
768 | static FNBEGINTRANSFER ataR3ReadWriteSectorsBT;
|
---|
769 | static FNBEGINTRANSFER ataR3PacketBT;
|
---|
770 | static FNBEGINTRANSFER atapiR3CmdBT;
|
---|
771 | static FNBEGINTRANSFER atapiR3PassthroughCmdBT;
|
---|
772 |
|
---|
773 | static FNSOURCESINK ataR3IdentifySS;
|
---|
774 | static FNSOURCESINK ataR3FlushSS;
|
---|
775 | static FNSOURCESINK ataR3ReadSectorsSS;
|
---|
776 | static FNSOURCESINK ataR3WriteSectorsSS;
|
---|
777 | static FNSOURCESINK ataR3ExecuteDeviceDiagnosticSS;
|
---|
778 | static FNSOURCESINK ataR3TrimSS;
|
---|
779 | static FNSOURCESINK ataR3PacketSS;
|
---|
780 | static FNSOURCESINK ataR3InitDevParmSS;
|
---|
781 | static FNSOURCESINK ataR3RecalibrateSS;
|
---|
782 | static FNSOURCESINK atapiR3GetConfigurationSS;
|
---|
783 | static FNSOURCESINK atapiR3GetEventStatusNotificationSS;
|
---|
784 | static FNSOURCESINK atapiR3IdentifySS;
|
---|
785 | static FNSOURCESINK atapiR3InquirySS;
|
---|
786 | static FNSOURCESINK atapiR3MechanismStatusSS;
|
---|
787 | static FNSOURCESINK atapiR3ModeSenseErrorRecoverySS;
|
---|
788 | static FNSOURCESINK atapiR3ModeSenseCDStatusSS;
|
---|
789 | static FNSOURCESINK atapiR3ReadSS;
|
---|
790 | static FNSOURCESINK atapiR3ReadCapacitySS;
|
---|
791 | static FNSOURCESINK atapiR3ReadDiscInformationSS;
|
---|
792 | static FNSOURCESINK atapiR3ReadTOCNormalSS;
|
---|
793 | static FNSOURCESINK atapiR3ReadTOCMultiSS;
|
---|
794 | static FNSOURCESINK atapiR3ReadTOCRawSS;
|
---|
795 | static FNSOURCESINK atapiR3ReadTrackInformationSS;
|
---|
796 | static FNSOURCESINK atapiR3RequestSenseSS;
|
---|
797 | static FNSOURCESINK atapiR3PassthroughSS;
|
---|
798 | static FNSOURCESINK atapiR3ReadDVDStructureSS;
|
---|
799 | # endif /* IN_RING3 */
|
---|
800 |
|
---|
801 | /**
|
---|
802 | * Begin of transfer function indexes for g_apfnBeginTransFuncs.
|
---|
803 | */
|
---|
804 | typedef enum ATAFNBT
|
---|
805 | {
|
---|
806 | ATAFN_BT_NULL = 0,
|
---|
807 | ATAFN_BT_READ_WRITE_SECTORS,
|
---|
808 | ATAFN_BT_PACKET,
|
---|
809 | ATAFN_BT_ATAPI_CMD,
|
---|
810 | ATAFN_BT_ATAPI_PASSTHROUGH_CMD,
|
---|
811 | ATAFN_BT_MAX
|
---|
812 | } ATAFNBT;
|
---|
813 |
|
---|
814 | # ifdef IN_RING3
|
---|
815 | /**
|
---|
816 | * Array of end transfer functions, the index is ATAFNET.
|
---|
817 | * Make sure ATAFNET and this array match!
|
---|
818 | */
|
---|
819 | static const PFNBEGINTRANSFER g_apfnBeginTransFuncs[ATAFN_BT_MAX] =
|
---|
820 | {
|
---|
821 | NULL,
|
---|
822 | ataR3ReadWriteSectorsBT,
|
---|
823 | ataR3PacketBT,
|
---|
824 | atapiR3CmdBT,
|
---|
825 | atapiR3PassthroughCmdBT,
|
---|
826 | };
|
---|
827 | # endif /* IN_RING3 */
|
---|
828 |
|
---|
829 | /**
|
---|
830 | * Source/sink function indexes for g_apfnSourceSinkFuncs.
|
---|
831 | */
|
---|
832 | typedef enum ATAFNSS
|
---|
833 | {
|
---|
834 | ATAFN_SS_NULL = 0,
|
---|
835 | ATAFN_SS_IDENTIFY,
|
---|
836 | ATAFN_SS_FLUSH,
|
---|
837 | ATAFN_SS_READ_SECTORS,
|
---|
838 | ATAFN_SS_WRITE_SECTORS,
|
---|
839 | ATAFN_SS_EXECUTE_DEVICE_DIAGNOSTIC,
|
---|
840 | ATAFN_SS_TRIM,
|
---|
841 | ATAFN_SS_PACKET,
|
---|
842 | ATAFN_SS_INITIALIZE_DEVICE_PARAMETERS,
|
---|
843 | ATAFN_SS_RECALIBRATE,
|
---|
844 | ATAFN_SS_ATAPI_GET_CONFIGURATION,
|
---|
845 | ATAFN_SS_ATAPI_GET_EVENT_STATUS_NOTIFICATION,
|
---|
846 | ATAFN_SS_ATAPI_IDENTIFY,
|
---|
847 | ATAFN_SS_ATAPI_INQUIRY,
|
---|
848 | ATAFN_SS_ATAPI_MECHANISM_STATUS,
|
---|
849 | ATAFN_SS_ATAPI_MODE_SENSE_ERROR_RECOVERY,
|
---|
850 | ATAFN_SS_ATAPI_MODE_SENSE_CD_STATUS,
|
---|
851 | ATAFN_SS_ATAPI_READ,
|
---|
852 | ATAFN_SS_ATAPI_READ_CAPACITY,
|
---|
853 | ATAFN_SS_ATAPI_READ_DISC_INFORMATION,
|
---|
854 | ATAFN_SS_ATAPI_READ_TOC_NORMAL,
|
---|
855 | ATAFN_SS_ATAPI_READ_TOC_MULTI,
|
---|
856 | ATAFN_SS_ATAPI_READ_TOC_RAW,
|
---|
857 | ATAFN_SS_ATAPI_READ_TRACK_INFORMATION,
|
---|
858 | ATAFN_SS_ATAPI_REQUEST_SENSE,
|
---|
859 | ATAFN_SS_ATAPI_PASSTHROUGH,
|
---|
860 | ATAFN_SS_ATAPI_READ_DVD_STRUCTURE,
|
---|
861 | ATAFN_SS_MAX
|
---|
862 | } ATAFNSS;
|
---|
863 |
|
---|
864 | # ifdef IN_RING3
|
---|
865 | /**
|
---|
866 | * Array of source/sink functions, the index is ATAFNSS.
|
---|
867 | * Make sure ATAFNSS and this array match!
|
---|
868 | */
|
---|
869 | static const PFNSOURCESINK g_apfnSourceSinkFuncs[ATAFN_SS_MAX] =
|
---|
870 | {
|
---|
871 | NULL,
|
---|
872 | ataR3IdentifySS,
|
---|
873 | ataR3FlushSS,
|
---|
874 | ataR3ReadSectorsSS,
|
---|
875 | ataR3WriteSectorsSS,
|
---|
876 | ataR3ExecuteDeviceDiagnosticSS,
|
---|
877 | ataR3TrimSS,
|
---|
878 | ataR3PacketSS,
|
---|
879 | ataR3InitDevParmSS,
|
---|
880 | ataR3RecalibrateSS,
|
---|
881 | atapiR3GetConfigurationSS,
|
---|
882 | atapiR3GetEventStatusNotificationSS,
|
---|
883 | atapiR3IdentifySS,
|
---|
884 | atapiR3InquirySS,
|
---|
885 | atapiR3MechanismStatusSS,
|
---|
886 | atapiR3ModeSenseErrorRecoverySS,
|
---|
887 | atapiR3ModeSenseCDStatusSS,
|
---|
888 | atapiR3ReadSS,
|
---|
889 | atapiR3ReadCapacitySS,
|
---|
890 | atapiR3ReadDiscInformationSS,
|
---|
891 | atapiR3ReadTOCNormalSS,
|
---|
892 | atapiR3ReadTOCMultiSS,
|
---|
893 | atapiR3ReadTOCRawSS,
|
---|
894 | atapiR3ReadTrackInformationSS,
|
---|
895 | atapiR3RequestSenseSS,
|
---|
896 | atapiR3PassthroughSS,
|
---|
897 | atapiR3ReadDVDStructureSS
|
---|
898 | };
|
---|
899 | # endif /* IN_RING3 */
|
---|
900 |
|
---|
901 |
|
---|
902 | static const ATARequest g_ataDMARequest = { ATA_AIO_DMA, { { 0, 0, 0, 0, 0 } } };
|
---|
903 | static const ATARequest g_ataPIORequest = { ATA_AIO_PIO, { { 0, 0, 0, 0, 0 } } };
|
---|
904 | # ifdef IN_RING3
|
---|
905 | static const ATARequest g_ataResetARequest = { ATA_AIO_RESET_ASSERTED, { { 0, 0, 0, 0, 0 } } };
|
---|
906 | static const ATARequest g_ataResetCRequest = { ATA_AIO_RESET_CLEARED, { { 0, 0, 0, 0, 0 } } };
|
---|
907 | # endif
|
---|
908 |
|
---|
909 | # ifdef IN_RING3
|
---|
910 | static void ataR3AsyncIOClearRequests(PPDMDEVINS pDevIns, PATACONTROLLER pCtl)
|
---|
911 | {
|
---|
912 | int rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->AsyncIORequestLock, VINF_SUCCESS);
|
---|
913 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pCtl->AsyncIORequestLock, rc);
|
---|
914 |
|
---|
915 | pCtl->AsyncIOReqHead = 0;
|
---|
916 | pCtl->AsyncIOReqTail = 0;
|
---|
917 |
|
---|
918 | rc = PDMDevHlpCritSectLeave(pDevIns, &pCtl->AsyncIORequestLock);
|
---|
919 | AssertRC(rc);
|
---|
920 | }
|
---|
921 | # endif /* IN_RING3 */
|
---|
922 |
|
---|
923 | static void ataHCAsyncIOPutRequest(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, const ATARequest *pReq)
|
---|
924 | {
|
---|
925 | int rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->AsyncIORequestLock, VINF_SUCCESS);
|
---|
926 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pCtl->AsyncIORequestLock, rc);
|
---|
927 |
|
---|
928 | uint8_t const iAsyncIORequest = pCtl->AsyncIOReqHead % RT_ELEMENTS(pCtl->aAsyncIORequests);
|
---|
929 | Assert((iAsyncIORequest + 1) % RT_ELEMENTS(pCtl->aAsyncIORequests) != pCtl->AsyncIOReqTail);
|
---|
930 | memcpy(&pCtl->aAsyncIORequests[iAsyncIORequest], pReq, sizeof(*pReq));
|
---|
931 | pCtl->AsyncIOReqHead = (iAsyncIORequest + 1) % RT_ELEMENTS(pCtl->aAsyncIORequests);
|
---|
932 |
|
---|
933 | rc = PDMDevHlpCritSectLeave(pDevIns, &pCtl->AsyncIORequestLock);
|
---|
934 | AssertRC(rc);
|
---|
935 |
|
---|
936 | rc = PDMDevHlpCritSectScheduleExitEvent(pDevIns, &pCtl->lock, pCtl->hAsyncIOSem);
|
---|
937 | if (RT_FAILURE(rc))
|
---|
938 | {
|
---|
939 | rc = PDMDevHlpSUPSemEventSignal(pDevIns, pCtl->hAsyncIOSem);
|
---|
940 | AssertRC(rc);
|
---|
941 | }
|
---|
942 | }
|
---|
943 |
|
---|
944 | # ifdef IN_RING3
|
---|
945 |
|
---|
946 | static const ATARequest *ataR3AsyncIOGetCurrentRequest(PPDMDEVINS pDevIns, PATACONTROLLER pCtl)
|
---|
947 | {
|
---|
948 | const ATARequest *pReq;
|
---|
949 |
|
---|
950 | int rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->AsyncIORequestLock, VINF_SUCCESS);
|
---|
951 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pCtl->AsyncIORequestLock, rc);
|
---|
952 |
|
---|
953 | if (pCtl->AsyncIOReqHead != pCtl->AsyncIOReqTail)
|
---|
954 | pReq = &pCtl->aAsyncIORequests[pCtl->AsyncIOReqTail];
|
---|
955 | else
|
---|
956 | pReq = NULL;
|
---|
957 |
|
---|
958 | rc = PDMDevHlpCritSectLeave(pDevIns, &pCtl->AsyncIORequestLock);
|
---|
959 | AssertRC(rc);
|
---|
960 | return pReq;
|
---|
961 | }
|
---|
962 |
|
---|
963 |
|
---|
964 | /**
|
---|
965 | * Remove the request with the given type, as it's finished. The request
|
---|
966 | * is not removed blindly, as this could mean a RESET request that is not
|
---|
967 | * yet processed (but has cleared the request queue) is lost.
|
---|
968 | *
|
---|
969 | * @param pDevIns The device instance.
|
---|
970 | * @param pCtl Controller for which to remove the request.
|
---|
971 | * @param ReqType Type of the request to remove.
|
---|
972 | */
|
---|
973 | static void ataR3AsyncIORemoveCurrentRequest(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, ATAAIO ReqType)
|
---|
974 | {
|
---|
975 | int rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->AsyncIORequestLock, VINF_SUCCESS);
|
---|
976 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pCtl->AsyncIORequestLock, rc);
|
---|
977 |
|
---|
978 | if (pCtl->AsyncIOReqHead != pCtl->AsyncIOReqTail && pCtl->aAsyncIORequests[pCtl->AsyncIOReqTail].ReqType == ReqType)
|
---|
979 | {
|
---|
980 | pCtl->AsyncIOReqTail++;
|
---|
981 | pCtl->AsyncIOReqTail %= RT_ELEMENTS(pCtl->aAsyncIORequests);
|
---|
982 | }
|
---|
983 |
|
---|
984 | rc = PDMDevHlpCritSectLeave(pDevIns, &pCtl->AsyncIORequestLock);
|
---|
985 | AssertRC(rc);
|
---|
986 | }
|
---|
987 |
|
---|
988 |
|
---|
989 | /**
|
---|
990 | * Dump the request queue for a particular controller. First dump the queue
|
---|
991 | * contents, then the already processed entries, as long as they haven't been
|
---|
992 | * overwritten.
|
---|
993 | *
|
---|
994 | * @param pDevIns The device instance.
|
---|
995 | * @param pCtl Controller for which to dump the queue.
|
---|
996 | */
|
---|
997 | static void ataR3AsyncIODumpRequests(PPDMDEVINS pDevIns, PATACONTROLLER pCtl)
|
---|
998 | {
|
---|
999 | int rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->AsyncIORequestLock, VINF_SUCCESS);
|
---|
1000 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pCtl->AsyncIORequestLock, rc);
|
---|
1001 |
|
---|
1002 | LogRel(("PIIX3 ATA: Ctl#%d: request queue dump (topmost is current):\n", pCtl->iCtl));
|
---|
1003 | uint8_t curr = pCtl->AsyncIOReqTail;
|
---|
1004 | do
|
---|
1005 | {
|
---|
1006 | if (curr == pCtl->AsyncIOReqHead)
|
---|
1007 | LogRel(("PIIX3 ATA: Ctl#%d: processed requests (topmost is oldest):\n", pCtl->iCtl));
|
---|
1008 | switch (pCtl->aAsyncIORequests[curr].ReqType)
|
---|
1009 | {
|
---|
1010 | case ATA_AIO_NEW:
|
---|
1011 | LogRel(("new transfer request, iIf=%d iBeginTransfer=%d iSourceSink=%d cbTotalTransfer=%d uTxDir=%d\n",
|
---|
1012 | pCtl->aAsyncIORequests[curr].u.t.iIf, pCtl->aAsyncIORequests[curr].u.t.iBeginTransfer,
|
---|
1013 | pCtl->aAsyncIORequests[curr].u.t.iSourceSink, pCtl->aAsyncIORequests[curr].u.t.cbTotalTransfer,
|
---|
1014 | pCtl->aAsyncIORequests[curr].u.t.uTxDir));
|
---|
1015 | break;
|
---|
1016 | case ATA_AIO_DMA:
|
---|
1017 | LogRel(("dma transfer continuation\n"));
|
---|
1018 | break;
|
---|
1019 | case ATA_AIO_PIO:
|
---|
1020 | LogRel(("pio transfer continuation\n"));
|
---|
1021 | break;
|
---|
1022 | case ATA_AIO_RESET_ASSERTED:
|
---|
1023 | LogRel(("reset asserted request\n"));
|
---|
1024 | break;
|
---|
1025 | case ATA_AIO_RESET_CLEARED:
|
---|
1026 | LogRel(("reset cleared request\n"));
|
---|
1027 | break;
|
---|
1028 | case ATA_AIO_ABORT:
|
---|
1029 | LogRel(("abort request, iIf=%d fResetDrive=%d\n", pCtl->aAsyncIORequests[curr].u.a.iIf,
|
---|
1030 | pCtl->aAsyncIORequests[curr].u.a.fResetDrive));
|
---|
1031 | break;
|
---|
1032 | default:
|
---|
1033 | LogRel(("unknown request %d\n", pCtl->aAsyncIORequests[curr].ReqType));
|
---|
1034 | }
|
---|
1035 | curr = (curr + 1) % RT_ELEMENTS(pCtl->aAsyncIORequests);
|
---|
1036 | } while (curr != pCtl->AsyncIOReqTail);
|
---|
1037 |
|
---|
1038 | rc = PDMDevHlpCritSectLeave(pDevIns, &pCtl->AsyncIORequestLock);
|
---|
1039 | AssertRC(rc);
|
---|
1040 | }
|
---|
1041 |
|
---|
1042 |
|
---|
1043 | /**
|
---|
1044 | * Checks whether the request queue for a particular controller is empty
|
---|
1045 | * or whether a particular controller is idle.
|
---|
1046 | *
|
---|
1047 | * @param pDevIns The device instance.
|
---|
1048 | * @param pCtl Controller for which to check the queue.
|
---|
1049 | * @param fStrict If set then the controller is checked to be idle.
|
---|
1050 | */
|
---|
1051 | static bool ataR3AsyncIOIsIdle(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, bool fStrict)
|
---|
1052 | {
|
---|
1053 | int rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->AsyncIORequestLock, VINF_SUCCESS);
|
---|
1054 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pCtl->AsyncIORequestLock, rc);
|
---|
1055 |
|
---|
1056 | bool fIdle = pCtl->fRedoIdle;
|
---|
1057 | if (!fIdle)
|
---|
1058 | fIdle = (pCtl->AsyncIOReqHead == pCtl->AsyncIOReqTail);
|
---|
1059 | if (fStrict)
|
---|
1060 | fIdle &= (pCtl->uAsyncIOState == ATA_AIO_NEW);
|
---|
1061 |
|
---|
1062 | rc = PDMDevHlpCritSectLeave(pDevIns, &pCtl->AsyncIORequestLock);
|
---|
1063 | AssertRC(rc);
|
---|
1064 | return fIdle;
|
---|
1065 | }
|
---|
1066 |
|
---|
1067 |
|
---|
1068 | /**
|
---|
1069 | * Send a transfer request to the async I/O thread.
|
---|
1070 | *
|
---|
1071 | * @param pDevIns The device instance.
|
---|
1072 | * @param pCtl The ATA controller.
|
---|
1073 | * @param s Pointer to the ATA device state data.
|
---|
1074 | * @param cbTotalTransfer Data transfer size.
|
---|
1075 | * @param uTxDir Data transfer direction.
|
---|
1076 | * @param iBeginTransfer Index of BeginTransfer callback.
|
---|
1077 | * @param iSourceSink Index of SourceSink callback.
|
---|
1078 | * @param fChainedTransfer Whether this is a transfer that is part of the previous command/transfer.
|
---|
1079 | */
|
---|
1080 | static void ataR3StartTransfer(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s,
|
---|
1081 | uint32_t cbTotalTransfer, uint8_t uTxDir, ATAFNBT iBeginTransfer,
|
---|
1082 | ATAFNSS iSourceSink, bool fChainedTransfer)
|
---|
1083 | {
|
---|
1084 | ATARequest Req;
|
---|
1085 |
|
---|
1086 | Assert(PDMDevHlpCritSectIsOwner(pDevIns, &pCtl->lock));
|
---|
1087 |
|
---|
1088 | /* Do not issue new requests while the RESET line is asserted. */
|
---|
1089 | if (pCtl->fReset)
|
---|
1090 | {
|
---|
1091 | Log2(("%s: Ctl#%d: suppressed new request as RESET is active\n", __FUNCTION__, pCtl->iCtl));
|
---|
1092 | return;
|
---|
1093 | }
|
---|
1094 |
|
---|
1095 | /* If the controller is already doing something else right now, ignore
|
---|
1096 | * the command that is being submitted. Some broken guests issue commands
|
---|
1097 | * twice (e.g. the Linux kernel that comes with Acronis True Image 8). */
|
---|
1098 | if (!fChainedTransfer && !ataR3AsyncIOIsIdle(pDevIns, pCtl, true /*fStrict*/))
|
---|
1099 | {
|
---|
1100 | Log(("%s: Ctl#%d: ignored command %#04x, controller state %d\n", __FUNCTION__, pCtl->iCtl, s->uATARegCommand, pCtl->uAsyncIOState));
|
---|
1101 | LogRel(("PIIX3 IDE: guest issued command %#04x while controller busy\n", s->uATARegCommand));
|
---|
1102 | return;
|
---|
1103 | }
|
---|
1104 |
|
---|
1105 | Req.ReqType = ATA_AIO_NEW;
|
---|
1106 | if (fChainedTransfer)
|
---|
1107 | Req.u.t.iIf = pCtl->iAIOIf;
|
---|
1108 | else
|
---|
1109 | Req.u.t.iIf = pCtl->iSelectedIf;
|
---|
1110 | Req.u.t.cbTotalTransfer = cbTotalTransfer;
|
---|
1111 | Req.u.t.uTxDir = uTxDir;
|
---|
1112 | Req.u.t.iBeginTransfer = iBeginTransfer;
|
---|
1113 | Req.u.t.iSourceSink = iSourceSink;
|
---|
1114 | ataSetStatusValue(pCtl, s, ATA_STAT_BUSY);
|
---|
1115 | pCtl->fChainedTransfer = fChainedTransfer;
|
---|
1116 |
|
---|
1117 | /*
|
---|
1118 | * Kick the worker thread into action.
|
---|
1119 | */
|
---|
1120 | Log2(("%s: Ctl#%d: message to async I/O thread, new request\n", __FUNCTION__, pCtl->iCtl));
|
---|
1121 | ataHCAsyncIOPutRequest(pDevIns, pCtl, &Req);
|
---|
1122 | }
|
---|
1123 |
|
---|
1124 |
|
---|
1125 | /**
|
---|
1126 | * Send an abort command request to the async I/O thread.
|
---|
1127 | *
|
---|
1128 | * @param pDevIns The device instance.
|
---|
1129 | * @param pCtl The ATA controller.
|
---|
1130 | * @param s Pointer to the ATA device state data.
|
---|
1131 | * @param fResetDrive Whether to reset the drive or just abort a command.
|
---|
1132 | */
|
---|
1133 | static void ataR3AbortCurrentCommand(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, bool fResetDrive)
|
---|
1134 | {
|
---|
1135 | ATARequest Req;
|
---|
1136 |
|
---|
1137 | Assert(PDMDevHlpCritSectIsOwner(pDevIns, &pCtl->lock));
|
---|
1138 |
|
---|
1139 | /* Do not issue new requests while the RESET line is asserted. */
|
---|
1140 | if (pCtl->fReset)
|
---|
1141 | {
|
---|
1142 | Log2(("%s: Ctl#%d: suppressed aborting command as RESET is active\n", __FUNCTION__, pCtl->iCtl));
|
---|
1143 | return;
|
---|
1144 | }
|
---|
1145 |
|
---|
1146 | Req.ReqType = ATA_AIO_ABORT;
|
---|
1147 | Req.u.a.iIf = pCtl->iSelectedIf;
|
---|
1148 | Req.u.a.fResetDrive = fResetDrive;
|
---|
1149 | ataSetStatus(pCtl, s, ATA_STAT_BUSY);
|
---|
1150 | Log2(("%s: Ctl#%d: message to async I/O thread, abort command on LUN#%d\n", __FUNCTION__, pCtl->iCtl, s->iLUN));
|
---|
1151 | ataHCAsyncIOPutRequest(pDevIns, pCtl, &Req);
|
---|
1152 | }
|
---|
1153 |
|
---|
1154 | # endif /* IN_RING3 */
|
---|
1155 |
|
---|
1156 | /**
|
---|
1157 | * Set the internal interrupt pending status, update INTREQ as appropriate.
|
---|
1158 | *
|
---|
1159 | * @param pDevIns The device instance.
|
---|
1160 | * @param pCtl The ATA controller.
|
---|
1161 | * @param s Pointer to the ATA device state data.
|
---|
1162 | */
|
---|
1163 | static void ataHCSetIRQ(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
1164 | {
|
---|
1165 | if (!s->fIrqPending)
|
---|
1166 | {
|
---|
1167 | if (!(s->uATARegDevCtl & ATA_DEVCTL_DISABLE_IRQ))
|
---|
1168 | {
|
---|
1169 | Log2(("%s: LUN#%d asserting IRQ\n", __FUNCTION__, s->iLUN));
|
---|
1170 | /* The BMDMA unit unconditionally sets BM_STATUS_INT if the interrupt
|
---|
1171 | * line is asserted. It monitors the line for a rising edge. */
|
---|
1172 | pCtl->BmDma.u8Status |= BM_STATUS_INT;
|
---|
1173 | /* Only actually set the IRQ line if updating the currently selected drive. */
|
---|
1174 | if (s == &pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK])
|
---|
1175 | {
|
---|
1176 | /** @todo experiment with adaptive IRQ delivery: for reads it is
|
---|
1177 | * better to wait for IRQ delivery, as it reduces latency. */
|
---|
1178 | if (pCtl->irq == 16)
|
---|
1179 | PDMDevHlpPCISetIrq(pDevIns, 0, 1);
|
---|
1180 | else
|
---|
1181 | PDMDevHlpISASetIrq(pDevIns, pCtl->irq, 1);
|
---|
1182 | }
|
---|
1183 | }
|
---|
1184 | s->fIrqPending = true;
|
---|
1185 | }
|
---|
1186 | }
|
---|
1187 |
|
---|
1188 | #endif /* IN_RING0 || IN_RING3 */
|
---|
1189 |
|
---|
1190 | /**
|
---|
1191 | * Clear the internal interrupt pending status, update INTREQ as appropriate.
|
---|
1192 | *
|
---|
1193 | * @param pDevIns The device instance.
|
---|
1194 | * @param pCtl The ATA controller.
|
---|
1195 | * @param s Pointer to the ATA device state data.
|
---|
1196 | */
|
---|
1197 | static void ataUnsetIRQ(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
1198 | {
|
---|
1199 | if (s->fIrqPending)
|
---|
1200 | {
|
---|
1201 | if (!(s->uATARegDevCtl & ATA_DEVCTL_DISABLE_IRQ))
|
---|
1202 | {
|
---|
1203 | Log2(("%s: LUN#%d deasserting IRQ\n", __FUNCTION__, s->iLUN));
|
---|
1204 | /* Only actually unset the IRQ line if updating the currently selected drive. */
|
---|
1205 | if (s == &pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK])
|
---|
1206 | {
|
---|
1207 | if (pCtl->irq == 16)
|
---|
1208 | PDMDevHlpPCISetIrq(pDevIns, 0, 0);
|
---|
1209 | else
|
---|
1210 | PDMDevHlpISASetIrq(pDevIns, pCtl->irq, 0);
|
---|
1211 | }
|
---|
1212 | }
|
---|
1213 | s->fIrqPending = false;
|
---|
1214 | }
|
---|
1215 | }
|
---|
1216 |
|
---|
1217 | #if defined(IN_RING0) || defined(IN_RING3)
|
---|
1218 |
|
---|
1219 | static void ataHCPIOTransferStart(PATACONTROLLER pCtl, PATADEVSTATE s, uint32_t start, uint32_t size)
|
---|
1220 | {
|
---|
1221 | Log2(("%s: LUN#%d start %d size %d\n", __FUNCTION__, s->iLUN, start, size));
|
---|
1222 | s->iIOBufferPIODataStart = start;
|
---|
1223 | s->iIOBufferPIODataEnd = start + size;
|
---|
1224 | ataSetStatus(pCtl, s, ATA_STAT_DRQ | ATA_STAT_SEEK);
|
---|
1225 | ataUnsetStatus(pCtl, s, ATA_STAT_BUSY);
|
---|
1226 | }
|
---|
1227 |
|
---|
1228 |
|
---|
1229 | static void ataHCPIOTransferStop(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
1230 | {
|
---|
1231 | Log2(("%s: LUN#%d\n", __FUNCTION__, s->iLUN));
|
---|
1232 | if (s->fATAPITransfer)
|
---|
1233 | {
|
---|
1234 | s->uATARegNSector = (s->uATARegNSector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD;
|
---|
1235 | Log2(("%s: interrupt reason %#04x\n", __FUNCTION__, s->uATARegNSector));
|
---|
1236 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
1237 | s->fATAPITransfer = false;
|
---|
1238 | }
|
---|
1239 | s->cbTotalTransfer = 0;
|
---|
1240 | s->cbElementaryTransfer = 0;
|
---|
1241 | s->iIOBufferPIODataStart = 0;
|
---|
1242 | s->iIOBufferPIODataEnd = 0;
|
---|
1243 | s->iBeginTransfer = ATAFN_BT_NULL;
|
---|
1244 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
1245 | }
|
---|
1246 |
|
---|
1247 |
|
---|
1248 | static void ataHCPIOTransferLimitATAPI(PATADEVSTATE s)
|
---|
1249 | {
|
---|
1250 | uint32_t cbLimit, cbTransfer;
|
---|
1251 |
|
---|
1252 | cbLimit = s->cbPIOTransferLimit;
|
---|
1253 | /* Use maximum transfer size if the guest requested 0. Avoids a hang. */
|
---|
1254 | if (cbLimit == 0)
|
---|
1255 | cbLimit = 0xfffe;
|
---|
1256 | Log2(("%s: byte count limit=%d\n", __FUNCTION__, cbLimit));
|
---|
1257 | if (cbLimit == 0xffff)
|
---|
1258 | cbLimit--;
|
---|
1259 | cbTransfer = RT_MIN(s->cbTotalTransfer, s->iIOBufferEnd - s->iIOBufferCur);
|
---|
1260 | if (cbTransfer > cbLimit)
|
---|
1261 | {
|
---|
1262 | /* Byte count limit for clipping must be even in this case */
|
---|
1263 | if (cbLimit & 1)
|
---|
1264 | cbLimit--;
|
---|
1265 | cbTransfer = cbLimit;
|
---|
1266 | }
|
---|
1267 | s->uATARegLCyl = cbTransfer;
|
---|
1268 | s->uATARegHCyl = cbTransfer >> 8;
|
---|
1269 | s->cbElementaryTransfer = cbTransfer;
|
---|
1270 | }
|
---|
1271 |
|
---|
1272 | # ifdef IN_RING3
|
---|
1273 |
|
---|
1274 | /**
|
---|
1275 | * Enters the lock protecting the controller data against concurrent access.
|
---|
1276 | *
|
---|
1277 | * @param pDevIns The device instance.
|
---|
1278 | * @param pCtl The controller to lock.
|
---|
1279 | */
|
---|
1280 | DECLINLINE(void) ataR3LockEnter(PPDMDEVINS pDevIns, PATACONTROLLER pCtl)
|
---|
1281 | {
|
---|
1282 | STAM_PROFILE_START(&pCtl->StatLockWait, a);
|
---|
1283 | int const rcLock = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_SUCCESS);
|
---|
1284 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pCtl->lock, rcLock);
|
---|
1285 | STAM_PROFILE_STOP(&pCtl->StatLockWait, a);
|
---|
1286 | }
|
---|
1287 |
|
---|
1288 | /**
|
---|
1289 | * Leaves the lock protecting the controller against concurrent data access.
|
---|
1290 | *
|
---|
1291 | * @param pDevIns The device instance.
|
---|
1292 | * @param pCtl The controller to unlock.
|
---|
1293 | */
|
---|
1294 | DECLINLINE(void) ataR3LockLeave(PPDMDEVINS pDevIns, PATACONTROLLER pCtl)
|
---|
1295 | {
|
---|
1296 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
1297 | }
|
---|
1298 |
|
---|
1299 | static uint32_t ataR3GetNSectors(PATADEVSTATE s)
|
---|
1300 | {
|
---|
1301 | /* 0 means either 256 (LBA28) or 65536 (LBA48) sectors. */
|
---|
1302 | if (s->fLBA48)
|
---|
1303 | {
|
---|
1304 | if (!s->uATARegNSector && !s->uATARegNSectorHOB)
|
---|
1305 | return 65536;
|
---|
1306 | else
|
---|
1307 | return s->uATARegNSectorHOB << 8 | s->uATARegNSector;
|
---|
1308 | }
|
---|
1309 | else
|
---|
1310 | {
|
---|
1311 | if (!s->uATARegNSector)
|
---|
1312 | return 256;
|
---|
1313 | else
|
---|
1314 | return s->uATARegNSector;
|
---|
1315 | }
|
---|
1316 | }
|
---|
1317 |
|
---|
1318 |
|
---|
1319 | static void ataR3PadString(uint8_t *pbDst, const char *pbSrc, uint32_t cbSize)
|
---|
1320 | {
|
---|
1321 | for (uint32_t i = 0; i < cbSize; i++)
|
---|
1322 | {
|
---|
1323 | if (*pbSrc)
|
---|
1324 | pbDst[i ^ 1] = *pbSrc++;
|
---|
1325 | else
|
---|
1326 | pbDst[i ^ 1] = ' ';
|
---|
1327 | }
|
---|
1328 | }
|
---|
1329 |
|
---|
1330 |
|
---|
1331 | #if 0 /* unused */
|
---|
1332 | /**
|
---|
1333 | * Compares two MSF values.
|
---|
1334 | *
|
---|
1335 | * @returns 1 if the first value is greater than the second value.
|
---|
1336 | * 0 if both are equal
|
---|
1337 | * -1 if the first value is smaller than the second value.
|
---|
1338 | */
|
---|
1339 | DECLINLINE(int) atapiCmpMSF(const uint8_t *pbMSF1, const uint8_t *pbMSF2)
|
---|
1340 | {
|
---|
1341 | int iRes = 0;
|
---|
1342 |
|
---|
1343 | for (unsigned i = 0; i < 3; i++)
|
---|
1344 | {
|
---|
1345 | if (pbMSF1[i] < pbMSF2[i])
|
---|
1346 | {
|
---|
1347 | iRes = -1;
|
---|
1348 | break;
|
---|
1349 | }
|
---|
1350 | else if (pbMSF1[i] > pbMSF2[i])
|
---|
1351 | {
|
---|
1352 | iRes = 1;
|
---|
1353 | break;
|
---|
1354 | }
|
---|
1355 | }
|
---|
1356 |
|
---|
1357 | return iRes;
|
---|
1358 | }
|
---|
1359 | #endif /* unused */
|
---|
1360 |
|
---|
1361 | static void ataR3CmdOK(PATACONTROLLER pCtl, PATADEVSTATE s, uint8_t status)
|
---|
1362 | {
|
---|
1363 | s->uATARegError = 0; /* Not needed by ATA spec, but cannot hurt. */
|
---|
1364 | ataSetStatusValue(pCtl, s, ATA_STAT_READY | status);
|
---|
1365 | }
|
---|
1366 |
|
---|
1367 |
|
---|
1368 | static void ataR3CmdError(PATACONTROLLER pCtl, PATADEVSTATE s, uint8_t uErrorCode)
|
---|
1369 | {
|
---|
1370 | Log(("%s: code=%#x\n", __FUNCTION__, uErrorCode));
|
---|
1371 | Assert(uErrorCode);
|
---|
1372 | s->uATARegError = uErrorCode;
|
---|
1373 | ataSetStatusValue(pCtl, s, ATA_STAT_READY | ATA_STAT_SEEK | ATA_STAT_ERR);
|
---|
1374 | s->cbTotalTransfer = 0;
|
---|
1375 | s->cbElementaryTransfer = 0;
|
---|
1376 | s->iIOBufferCur = 0;
|
---|
1377 | s->iIOBufferEnd = 0;
|
---|
1378 | s->uTxDir = PDMMEDIATXDIR_NONE;
|
---|
1379 | s->iBeginTransfer = ATAFN_BT_NULL;
|
---|
1380 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
1381 | }
|
---|
1382 |
|
---|
1383 | static uint32_t ataR3Checksum(void* ptr, size_t count)
|
---|
1384 | {
|
---|
1385 | uint8_t u8Sum = 0xa5, *p = (uint8_t*)ptr;
|
---|
1386 | size_t i;
|
---|
1387 |
|
---|
1388 | for (i = 0; i < count; i++)
|
---|
1389 | {
|
---|
1390 | u8Sum += *p++;
|
---|
1391 | }
|
---|
1392 |
|
---|
1393 | return (uint8_t)-(int32_t)u8Sum;
|
---|
1394 | }
|
---|
1395 |
|
---|
1396 | /**
|
---|
1397 | * Sink/Source: IDENTIFY
|
---|
1398 | */
|
---|
1399 | static bool ataR3IdentifySS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
1400 | {
|
---|
1401 | uint16_t *p;
|
---|
1402 | RT_NOREF(pDevIns);
|
---|
1403 |
|
---|
1404 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
1405 | Assert(s->cbElementaryTransfer == 512);
|
---|
1406 |
|
---|
1407 | p = (uint16_t *)&s->abIOBuffer[0];
|
---|
1408 | memset(p, 0, 512);
|
---|
1409 | p[0] = RT_H2LE_U16(0x0040);
|
---|
1410 | p[1] = RT_H2LE_U16(RT_MIN(s->PCHSGeometry.cCylinders, 16383));
|
---|
1411 | p[3] = RT_H2LE_U16(s->PCHSGeometry.cHeads);
|
---|
1412 | /* Block size; obsolete, but required for the BIOS. */
|
---|
1413 | p[5] = RT_H2LE_U16(s->cbSector);
|
---|
1414 | p[6] = RT_H2LE_U16(s->PCHSGeometry.cSectors);
|
---|
1415 | ataR3PadString((uint8_t *)(p + 10), s->szSerialNumber, ATA_SERIAL_NUMBER_LENGTH); /* serial number */
|
---|
1416 | p[20] = RT_H2LE_U16(3); /* XXX: retired, cache type */
|
---|
1417 | p[21] = RT_H2LE_U16(512); /* XXX: retired, cache size in sectors */
|
---|
1418 | p[22] = RT_H2LE_U16(0); /* ECC bytes per sector */
|
---|
1419 | ataR3PadString((uint8_t *)(p + 23), s->szFirmwareRevision, ATA_FIRMWARE_REVISION_LENGTH); /* firmware version */
|
---|
1420 | ataR3PadString((uint8_t *)(p + 27), s->szModelNumber, ATA_MODEL_NUMBER_LENGTH); /* model */
|
---|
1421 | # if ATA_MAX_MULT_SECTORS > 1
|
---|
1422 | p[47] = RT_H2LE_U16(0x8000 | ATA_MAX_MULT_SECTORS);
|
---|
1423 | # endif
|
---|
1424 | p[48] = RT_H2LE_U16(1); /* dword I/O, used by the BIOS */
|
---|
1425 | p[49] = RT_H2LE_U16(1 << 11 | 1 << 9 | 1 << 8); /* DMA and LBA supported */
|
---|
1426 | p[50] = RT_H2LE_U16(1 << 14); /* No drive specific standby timer minimum */
|
---|
1427 | p[51] = RT_H2LE_U16(240); /* PIO transfer cycle */
|
---|
1428 | p[52] = RT_H2LE_U16(240); /* DMA transfer cycle */
|
---|
1429 | p[53] = RT_H2LE_U16(1 | 1 << 1 | 1 << 2); /* words 54-58,64-70,88 valid */
|
---|
1430 | p[54] = RT_H2LE_U16(RT_MIN(s->XCHSGeometry.cCylinders, 16383));
|
---|
1431 | p[55] = RT_H2LE_U16(s->XCHSGeometry.cHeads);
|
---|
1432 | p[56] = RT_H2LE_U16(s->XCHSGeometry.cSectors);
|
---|
1433 | p[57] = RT_H2LE_U16( RT_MIN(s->XCHSGeometry.cCylinders, 16383)
|
---|
1434 | * s->XCHSGeometry.cHeads
|
---|
1435 | * s->XCHSGeometry.cSectors);
|
---|
1436 | p[58] = RT_H2LE_U16( RT_MIN(s->XCHSGeometry.cCylinders, 16383)
|
---|
1437 | * s->XCHSGeometry.cHeads
|
---|
1438 | * s->XCHSGeometry.cSectors >> 16);
|
---|
1439 | if (s->cMultSectors)
|
---|
1440 | p[59] = RT_H2LE_U16(0x100 | s->cMultSectors);
|
---|
1441 | if (s->cTotalSectors <= (1 << 28) - 1)
|
---|
1442 | {
|
---|
1443 | p[60] = RT_H2LE_U16(s->cTotalSectors);
|
---|
1444 | p[61] = RT_H2LE_U16(s->cTotalSectors >> 16);
|
---|
1445 | }
|
---|
1446 | else
|
---|
1447 | {
|
---|
1448 | /* Report maximum number of sectors possible with LBA28 */
|
---|
1449 | p[60] = RT_H2LE_U16(((1 << 28) - 1) & 0xffff);
|
---|
1450 | p[61] = RT_H2LE_U16(((1 << 28) - 1) >> 16);
|
---|
1451 | }
|
---|
1452 | p[63] = RT_H2LE_U16(ATA_TRANSFER_ID(ATA_MODE_MDMA, ATA_MDMA_MODE_MAX, s->uATATransferMode)); /* MDMA modes supported / mode enabled */
|
---|
1453 | p[64] = RT_H2LE_U16(ATA_PIO_MODE_MAX > 2 ? (1 << (ATA_PIO_MODE_MAX - 2)) - 1 : 0); /* PIO modes beyond PIO2 supported */
|
---|
1454 | p[65] = RT_H2LE_U16(120); /* minimum DMA multiword tx cycle time */
|
---|
1455 | p[66] = RT_H2LE_U16(120); /* recommended DMA multiword tx cycle time */
|
---|
1456 | p[67] = RT_H2LE_U16(120); /* minimum PIO cycle time without flow control */
|
---|
1457 | p[68] = RT_H2LE_U16(120); /* minimum PIO cycle time with IORDY flow control */
|
---|
1458 | if ( pDevR3->pDrvMedia->pfnDiscard
|
---|
1459 | || s->cbSector != 512
|
---|
1460 | || pDevR3->pDrvMedia->pfnIsNonRotational(pDevR3->pDrvMedia))
|
---|
1461 | {
|
---|
1462 | p[80] = RT_H2LE_U16(0x1f0); /* support everything up to ATA/ATAPI-8 ACS */
|
---|
1463 | p[81] = RT_H2LE_U16(0x28); /* conforms to ATA/ATAPI-8 ACS */
|
---|
1464 | }
|
---|
1465 | else
|
---|
1466 | {
|
---|
1467 | p[80] = RT_H2LE_U16(0x7e); /* support everything up to ATA/ATAPI-6 */
|
---|
1468 | p[81] = RT_H2LE_U16(0x22); /* conforms to ATA/ATAPI-6 */
|
---|
1469 | }
|
---|
1470 | p[82] = RT_H2LE_U16(1 << 3 | 1 << 5 | 1 << 6); /* supports power management, write cache and look-ahead */
|
---|
1471 | if (s->cTotalSectors <= (1 << 28) - 1)
|
---|
1472 | p[83] = RT_H2LE_U16(1 << 14 | 1 << 12); /* supports FLUSH CACHE */
|
---|
1473 | else
|
---|
1474 | p[83] = RT_H2LE_U16(1 << 14 | 1 << 10 | 1 << 12 | 1 << 13); /* supports LBA48, FLUSH CACHE and FLUSH CACHE EXT */
|
---|
1475 | p[84] = RT_H2LE_U16(1 << 14);
|
---|
1476 | p[85] = RT_H2LE_U16(1 << 3 | 1 << 5 | 1 << 6); /* enabled power management, write cache and look-ahead */
|
---|
1477 | if (s->cTotalSectors <= (1 << 28) - 1)
|
---|
1478 | p[86] = RT_H2LE_U16(1 << 12); /* enabled FLUSH CACHE */
|
---|
1479 | else
|
---|
1480 | p[86] = RT_H2LE_U16(1 << 10 | 1 << 12 | 1 << 13); /* enabled LBA48, FLUSH CACHE and FLUSH CACHE EXT */
|
---|
1481 | p[87] = RT_H2LE_U16(1 << 14);
|
---|
1482 | p[88] = RT_H2LE_U16(ATA_TRANSFER_ID(ATA_MODE_UDMA, ATA_UDMA_MODE_MAX, s->uATATransferMode)); /* UDMA modes supported / mode enabled */
|
---|
1483 | p[93] = RT_H2LE_U16((1 | 1 << 1) << ((s->iLUN & 1) == 0 ? 0 : 8) | 1 << 13 | 1 << 14);
|
---|
1484 | if (s->cTotalSectors > (1 << 28) - 1)
|
---|
1485 | {
|
---|
1486 | p[100] = RT_H2LE_U16(s->cTotalSectors);
|
---|
1487 | p[101] = RT_H2LE_U16(s->cTotalSectors >> 16);
|
---|
1488 | p[102] = RT_H2LE_U16(s->cTotalSectors >> 32);
|
---|
1489 | p[103] = RT_H2LE_U16(s->cTotalSectors >> 48);
|
---|
1490 | }
|
---|
1491 |
|
---|
1492 | if (s->cbSector != 512)
|
---|
1493 | {
|
---|
1494 | uint32_t cSectorSizeInWords = s->cbSector / sizeof(uint16_t);
|
---|
1495 | /* Enable reporting of logical sector size. */
|
---|
1496 | p[106] |= RT_H2LE_U16(RT_BIT(12) | RT_BIT(14));
|
---|
1497 | p[117] = RT_H2LE_U16(cSectorSizeInWords);
|
---|
1498 | p[118] = RT_H2LE_U16(cSectorSizeInWords >> 16);
|
---|
1499 | }
|
---|
1500 |
|
---|
1501 | if (pDevR3->pDrvMedia->pfnDiscard) /** @todo Set bit 14 in word 69 too? (Deterministic read after TRIM). */
|
---|
1502 | p[169] = RT_H2LE_U16(1); /* DATA SET MANAGEMENT command supported. */
|
---|
1503 | if (pDevR3->pDrvMedia->pfnIsNonRotational(pDevR3->pDrvMedia))
|
---|
1504 | p[217] = RT_H2LE_U16(1); /* Non-rotational medium */
|
---|
1505 | uint32_t uCsum = ataR3Checksum(p, 510);
|
---|
1506 | p[255] = RT_H2LE_U16(0xa5 | (uCsum << 8)); /* Integrity word */
|
---|
1507 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
1508 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
1509 | return false;
|
---|
1510 | }
|
---|
1511 |
|
---|
1512 |
|
---|
1513 | /**
|
---|
1514 | * Sink/Source: FLUSH
|
---|
1515 | */
|
---|
1516 | static bool ataR3FlushSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
1517 | {
|
---|
1518 | int rc;
|
---|
1519 |
|
---|
1520 | Assert(s->uTxDir == PDMMEDIATXDIR_NONE);
|
---|
1521 | Assert(!s->cbElementaryTransfer);
|
---|
1522 |
|
---|
1523 | ataR3LockLeave(pDevIns, pCtl);
|
---|
1524 |
|
---|
1525 | STAM_PROFILE_START(&s->StatFlushes, f);
|
---|
1526 | rc = pDevR3->pDrvMedia->pfnFlush(pDevR3->pDrvMedia);
|
---|
1527 | AssertRC(rc);
|
---|
1528 | STAM_PROFILE_STOP(&s->StatFlushes, f);
|
---|
1529 |
|
---|
1530 | ataR3LockEnter(pDevIns, pCtl);
|
---|
1531 | ataR3CmdOK(pCtl, s, 0);
|
---|
1532 | return false;
|
---|
1533 | }
|
---|
1534 |
|
---|
1535 | /**
|
---|
1536 | * Sink/Source: ATAPI IDENTIFY
|
---|
1537 | */
|
---|
1538 | static bool atapiR3IdentifySS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
1539 | {
|
---|
1540 | uint16_t *p;
|
---|
1541 | RT_NOREF(pDevIns, pDevR3);
|
---|
1542 |
|
---|
1543 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
1544 | Assert(s->cbElementaryTransfer == 512);
|
---|
1545 |
|
---|
1546 | p = (uint16_t *)&s->abIOBuffer[0];
|
---|
1547 | memset(p, 0, 512);
|
---|
1548 | /* Removable CDROM, 3ms response, 12 byte packets */
|
---|
1549 | p[0] = RT_H2LE_U16(2 << 14 | 5 << 8 | 1 << 7 | 0 << 5 | 0 << 0);
|
---|
1550 | ataR3PadString((uint8_t *)(p + 10), s->szSerialNumber, ATA_SERIAL_NUMBER_LENGTH); /* serial number */
|
---|
1551 | p[20] = RT_H2LE_U16(3); /* XXX: retired, cache type */
|
---|
1552 | p[21] = RT_H2LE_U16(512); /* XXX: retired, cache size in sectors */
|
---|
1553 | ataR3PadString((uint8_t *)(p + 23), s->szFirmwareRevision, ATA_FIRMWARE_REVISION_LENGTH); /* firmware version */
|
---|
1554 | ataR3PadString((uint8_t *)(p + 27), s->szModelNumber, ATA_MODEL_NUMBER_LENGTH); /* model */
|
---|
1555 | p[49] = RT_H2LE_U16(1 << 11 | 1 << 9 | 1 << 8); /* DMA and LBA supported */
|
---|
1556 | p[50] = RT_H2LE_U16(1 << 14); /* No drive specific standby timer minimum */
|
---|
1557 | p[51] = RT_H2LE_U16(240); /* PIO transfer cycle */
|
---|
1558 | p[52] = RT_H2LE_U16(240); /* DMA transfer cycle */
|
---|
1559 | p[53] = RT_H2LE_U16(1 << 1 | 1 << 2); /* words 64-70,88 are valid */
|
---|
1560 | p[63] = RT_H2LE_U16(ATA_TRANSFER_ID(ATA_MODE_MDMA, ATA_MDMA_MODE_MAX, s->uATATransferMode)); /* MDMA modes supported / mode enabled */
|
---|
1561 | p[64] = RT_H2LE_U16(ATA_PIO_MODE_MAX > 2 ? (1 << (ATA_PIO_MODE_MAX - 2)) - 1 : 0); /* PIO modes beyond PIO2 supported */
|
---|
1562 | p[65] = RT_H2LE_U16(120); /* minimum DMA multiword tx cycle time */
|
---|
1563 | p[66] = RT_H2LE_U16(120); /* recommended DMA multiword tx cycle time */
|
---|
1564 | p[67] = RT_H2LE_U16(120); /* minimum PIO cycle time without flow control */
|
---|
1565 | p[68] = RT_H2LE_U16(120); /* minimum PIO cycle time with IORDY flow control */
|
---|
1566 | p[73] = RT_H2LE_U16(0x003e); /* ATAPI CDROM major */
|
---|
1567 | p[74] = RT_H2LE_U16(9); /* ATAPI CDROM minor */
|
---|
1568 | p[75] = RT_H2LE_U16(1); /* queue depth 1 */
|
---|
1569 | p[80] = RT_H2LE_U16(0x7e); /* support everything up to ATA/ATAPI-6 */
|
---|
1570 | p[81] = RT_H2LE_U16(0x22); /* conforms to ATA/ATAPI-6 */
|
---|
1571 | p[82] = RT_H2LE_U16(1 << 4 | 1 << 9); /* supports packet command set and DEVICE RESET */
|
---|
1572 | p[83] = RT_H2LE_U16(1 << 14);
|
---|
1573 | p[84] = RT_H2LE_U16(1 << 14);
|
---|
1574 | p[85] = RT_H2LE_U16(1 << 4 | 1 << 9); /* enabled packet command set and DEVICE RESET */
|
---|
1575 | p[86] = RT_H2LE_U16(0);
|
---|
1576 | p[87] = RT_H2LE_U16(1 << 14);
|
---|
1577 | p[88] = RT_H2LE_U16(ATA_TRANSFER_ID(ATA_MODE_UDMA, ATA_UDMA_MODE_MAX, s->uATATransferMode)); /* UDMA modes supported / mode enabled */
|
---|
1578 | p[93] = RT_H2LE_U16((1 | 1 << 1) << ((s->iLUN & 1) == 0 ? 0 : 8) | 1 << 13 | 1 << 14);
|
---|
1579 | /* According to ATAPI-5 spec:
|
---|
1580 | *
|
---|
1581 | * The use of this word is optional.
|
---|
1582 | * If bits 7:0 of this word contain the signature A5h, bits 15:8
|
---|
1583 | * contain the data
|
---|
1584 | * structure checksum.
|
---|
1585 | * The data structure checksum is the twos complement of the sum of
|
---|
1586 | * all bytes in words 0 through 254 and the byte consisting of
|
---|
1587 | * bits 7:0 in word 255.
|
---|
1588 | * Each byte shall be added with unsigned arithmetic,
|
---|
1589 | * and overflow shall be ignored.
|
---|
1590 | * The sum of all 512 bytes is zero when the checksum is correct.
|
---|
1591 | */
|
---|
1592 | uint32_t uCsum = ataR3Checksum(p, 510);
|
---|
1593 | p[255] = RT_H2LE_U16(0xa5 | (uCsum << 8)); /* Integrity word */
|
---|
1594 |
|
---|
1595 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
1596 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
1597 | return false;
|
---|
1598 | }
|
---|
1599 |
|
---|
1600 |
|
---|
1601 | static void ataR3SetSignature(PATADEVSTATE s)
|
---|
1602 | {
|
---|
1603 | s->uATARegSelect &= 0xf0; /* clear head */
|
---|
1604 | /* put signature */
|
---|
1605 | s->uATARegNSector = 1;
|
---|
1606 | s->uATARegSector = 1;
|
---|
1607 | if (s->fATAPI)
|
---|
1608 | {
|
---|
1609 | s->uATARegLCyl = 0x14;
|
---|
1610 | s->uATARegHCyl = 0xeb;
|
---|
1611 | }
|
---|
1612 | else
|
---|
1613 | {
|
---|
1614 | s->uATARegLCyl = 0;
|
---|
1615 | s->uATARegHCyl = 0;
|
---|
1616 | }
|
---|
1617 | }
|
---|
1618 |
|
---|
1619 |
|
---|
1620 | static uint64_t ataR3GetSector(PATADEVSTATE s)
|
---|
1621 | {
|
---|
1622 | uint64_t iLBA;
|
---|
1623 | if (s->uATARegSelect & 0x40)
|
---|
1624 | {
|
---|
1625 | /* any LBA variant */
|
---|
1626 | if (s->fLBA48)
|
---|
1627 | {
|
---|
1628 | /* LBA48 */
|
---|
1629 | iLBA = ((uint64_t)s->uATARegHCylHOB << 40)
|
---|
1630 | | ((uint64_t)s->uATARegLCylHOB << 32)
|
---|
1631 | | ((uint64_t)s->uATARegSectorHOB << 24)
|
---|
1632 | | ((uint64_t)s->uATARegHCyl << 16)
|
---|
1633 | | ((uint64_t)s->uATARegLCyl << 8)
|
---|
1634 | | s->uATARegSector;
|
---|
1635 | }
|
---|
1636 | else
|
---|
1637 | {
|
---|
1638 | /* LBA */
|
---|
1639 | iLBA = ((uint32_t)(s->uATARegSelect & 0x0f) << 24)
|
---|
1640 | | ((uint32_t)s->uATARegHCyl << 16)
|
---|
1641 | | ((uint32_t)s->uATARegLCyl << 8)
|
---|
1642 | | s->uATARegSector;
|
---|
1643 | }
|
---|
1644 | }
|
---|
1645 | else
|
---|
1646 | {
|
---|
1647 | /* CHS */
|
---|
1648 | iLBA = (((uint32_t)s->uATARegHCyl << 8) | s->uATARegLCyl) * s->XCHSGeometry.cHeads * s->XCHSGeometry.cSectors
|
---|
1649 | + (s->uATARegSelect & 0x0f) * s->XCHSGeometry.cSectors
|
---|
1650 | + (s->uATARegSector - 1);
|
---|
1651 | LogFlowFunc(("CHS %u/%u/%u -> LBA %llu\n", ((uint32_t)s->uATARegHCyl << 8) | s->uATARegLCyl, s->uATARegSelect & 0x0f, s->uATARegSector, iLBA));
|
---|
1652 | }
|
---|
1653 | return iLBA;
|
---|
1654 | }
|
---|
1655 |
|
---|
1656 | static void ataR3SetSector(PATADEVSTATE s, uint64_t iLBA)
|
---|
1657 | {
|
---|
1658 | uint32_t cyl, r;
|
---|
1659 | if (s->uATARegSelect & 0x40)
|
---|
1660 | {
|
---|
1661 | /* any LBA variant */
|
---|
1662 | if (s->fLBA48)
|
---|
1663 | {
|
---|
1664 | /* LBA48 */
|
---|
1665 | s->uATARegHCylHOB = iLBA >> 40;
|
---|
1666 | s->uATARegLCylHOB = iLBA >> 32;
|
---|
1667 | s->uATARegSectorHOB = iLBA >> 24;
|
---|
1668 | s->uATARegHCyl = iLBA >> 16;
|
---|
1669 | s->uATARegLCyl = iLBA >> 8;
|
---|
1670 | s->uATARegSector = iLBA;
|
---|
1671 | }
|
---|
1672 | else
|
---|
1673 | {
|
---|
1674 | /* LBA */
|
---|
1675 | s->uATARegSelect = (s->uATARegSelect & 0xf0) | (iLBA >> 24);
|
---|
1676 | s->uATARegHCyl = (iLBA >> 16);
|
---|
1677 | s->uATARegLCyl = (iLBA >> 8);
|
---|
1678 | s->uATARegSector = (iLBA);
|
---|
1679 | }
|
---|
1680 | }
|
---|
1681 | else
|
---|
1682 | {
|
---|
1683 | /* CHS */
|
---|
1684 | AssertMsgReturnVoid(s->XCHSGeometry.cHeads && s->XCHSGeometry.cSectors, ("Device geometry not set!\n"));
|
---|
1685 | cyl = iLBA / (s->XCHSGeometry.cHeads * s->XCHSGeometry.cSectors);
|
---|
1686 | r = iLBA % (s->XCHSGeometry.cHeads * s->XCHSGeometry.cSectors);
|
---|
1687 | s->uATARegHCyl = cyl >> 8;
|
---|
1688 | s->uATARegLCyl = cyl;
|
---|
1689 | s->uATARegSelect = (s->uATARegSelect & 0xf0) | ((r / s->XCHSGeometry.cSectors) & 0x0f);
|
---|
1690 | s->uATARegSector = (r % s->XCHSGeometry.cSectors) + 1;
|
---|
1691 | LogFlowFunc(("LBA %llu -> CHS %u/%u/%u\n", iLBA, cyl, s->uATARegSelect & 0x0f, s->uATARegSector));
|
---|
1692 | }
|
---|
1693 | }
|
---|
1694 |
|
---|
1695 |
|
---|
1696 | static void ataR3WarningDiskFull(PPDMDEVINS pDevIns)
|
---|
1697 | {
|
---|
1698 | int rc;
|
---|
1699 | LogRel(("PIIX3 ATA: Host disk full\n"));
|
---|
1700 | rc = PDMDevHlpVMSetRuntimeError(pDevIns, VMSETRTERR_FLAGS_SUSPEND | VMSETRTERR_FLAGS_NO_WAIT, "DevATA_DISKFULL",
|
---|
1701 | N_("Host system reported disk full. VM execution is suspended. You can resume after freeing some space"));
|
---|
1702 | AssertRC(rc);
|
---|
1703 | }
|
---|
1704 |
|
---|
1705 | static void ataR3WarningFileTooBig(PPDMDEVINS pDevIns)
|
---|
1706 | {
|
---|
1707 | int rc;
|
---|
1708 | LogRel(("PIIX3 ATA: File too big\n"));
|
---|
1709 | rc = PDMDevHlpVMSetRuntimeError(pDevIns, VMSETRTERR_FLAGS_SUSPEND | VMSETRTERR_FLAGS_NO_WAIT, "DevATA_FILETOOBIG",
|
---|
1710 | N_("Host system reported that the file size limit of the host file system has been exceeded. VM execution is suspended. You need to move your virtual hard disk to a filesystem which allows bigger files"));
|
---|
1711 | AssertRC(rc);
|
---|
1712 | }
|
---|
1713 |
|
---|
1714 | static void ataR3WarningISCSI(PPDMDEVINS pDevIns)
|
---|
1715 | {
|
---|
1716 | int rc;
|
---|
1717 | LogRel(("PIIX3 ATA: iSCSI target unavailable\n"));
|
---|
1718 | rc = PDMDevHlpVMSetRuntimeError(pDevIns, VMSETRTERR_FLAGS_SUSPEND | VMSETRTERR_FLAGS_NO_WAIT, "DevATA_ISCSIDOWN",
|
---|
1719 | N_("The iSCSI target has stopped responding. VM execution is suspended. You can resume when it is available again"));
|
---|
1720 | AssertRC(rc);
|
---|
1721 | }
|
---|
1722 |
|
---|
1723 | static void ataR3WarningFileStale(PPDMDEVINS pDevIns)
|
---|
1724 | {
|
---|
1725 | int rc;
|
---|
1726 | LogRel(("PIIX3 ATA: File handle became stale\n"));
|
---|
1727 | rc = PDMDevHlpVMSetRuntimeError(pDevIns, VMSETRTERR_FLAGS_SUSPEND | VMSETRTERR_FLAGS_NO_WAIT, "DevATA_FILESTALE",
|
---|
1728 | N_("The file became stale (often due to a restarted NFS server). VM execution is suspended. You can resume when it is available again"));
|
---|
1729 | AssertRC(rc);
|
---|
1730 | }
|
---|
1731 |
|
---|
1732 |
|
---|
1733 | static bool ataR3IsRedoSetWarning(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, int rc)
|
---|
1734 | {
|
---|
1735 | Assert(!PDMDevHlpCritSectIsOwner(pDevIns, &pCtl->lock));
|
---|
1736 | if (rc == VERR_DISK_FULL)
|
---|
1737 | {
|
---|
1738 | pCtl->fRedoIdle = true;
|
---|
1739 | ataR3WarningDiskFull(pDevIns);
|
---|
1740 | return true;
|
---|
1741 | }
|
---|
1742 | if (rc == VERR_FILE_TOO_BIG)
|
---|
1743 | {
|
---|
1744 | pCtl->fRedoIdle = true;
|
---|
1745 | ataR3WarningFileTooBig(pDevIns);
|
---|
1746 | return true;
|
---|
1747 | }
|
---|
1748 | if (rc == VERR_BROKEN_PIPE || rc == VERR_NET_CONNECTION_REFUSED)
|
---|
1749 | {
|
---|
1750 | pCtl->fRedoIdle = true;
|
---|
1751 | /* iSCSI connection abort (first error) or failure to reestablish
|
---|
1752 | * connection (second error). Pause VM. On resume we'll retry. */
|
---|
1753 | ataR3WarningISCSI(pDevIns);
|
---|
1754 | return true;
|
---|
1755 | }
|
---|
1756 | if (rc == VERR_STALE_FILE_HANDLE)
|
---|
1757 | {
|
---|
1758 | pCtl->fRedoIdle = true;
|
---|
1759 | ataR3WarningFileStale(pDevIns);
|
---|
1760 | return true;
|
---|
1761 | }
|
---|
1762 | if (rc == VERR_VD_DEK_MISSING)
|
---|
1763 | {
|
---|
1764 | /* Error message already set. */
|
---|
1765 | pCtl->fRedoIdle = true;
|
---|
1766 | return true;
|
---|
1767 | }
|
---|
1768 |
|
---|
1769 | return false;
|
---|
1770 | }
|
---|
1771 |
|
---|
1772 |
|
---|
1773 | static int ataR3ReadSectors(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3,
|
---|
1774 | uint64_t u64Sector, void *pvBuf, uint32_t cSectors, bool *pfRedo)
|
---|
1775 | {
|
---|
1776 | int rc;
|
---|
1777 | uint32_t const cbSector = s->cbSector;
|
---|
1778 | uint32_t cbToRead = cSectors * cbSector;
|
---|
1779 | Assert(pvBuf == &s->abIOBuffer[0]);
|
---|
1780 | AssertReturnStmt(cbToRead <= sizeof(s->abIOBuffer), *pfRedo = false, VERR_BUFFER_OVERFLOW);
|
---|
1781 |
|
---|
1782 | ataR3LockLeave(pDevIns, pCtl);
|
---|
1783 |
|
---|
1784 | STAM_PROFILE_ADV_START(&s->StatReads, r);
|
---|
1785 | s->Led.Asserted.s.fReading = s->Led.Actual.s.fReading = 1;
|
---|
1786 | rc = pDevR3->pDrvMedia->pfnRead(pDevR3->pDrvMedia, u64Sector * cbSector, pvBuf, cbToRead);
|
---|
1787 | s->Led.Actual.s.fReading = 0;
|
---|
1788 | STAM_PROFILE_ADV_STOP(&s->StatReads, r);
|
---|
1789 | Log4(("ataR3ReadSectors: rc=%Rrc cSectors=%#x u64Sector=%llu\n%.*Rhxd\n",
|
---|
1790 | rc, cSectors, u64Sector, cbToRead, pvBuf));
|
---|
1791 |
|
---|
1792 | STAM_REL_COUNTER_ADD(&s->StatBytesRead, cbToRead);
|
---|
1793 |
|
---|
1794 | if (RT_SUCCESS(rc))
|
---|
1795 | *pfRedo = false;
|
---|
1796 | else
|
---|
1797 | *pfRedo = ataR3IsRedoSetWarning(pDevIns, pCtl, rc);
|
---|
1798 |
|
---|
1799 | ataR3LockEnter(pDevIns, pCtl);
|
---|
1800 | return rc;
|
---|
1801 | }
|
---|
1802 |
|
---|
1803 |
|
---|
1804 | static int ataR3WriteSectors(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3,
|
---|
1805 | uint64_t u64Sector, const void *pvBuf, uint32_t cSectors, bool *pfRedo)
|
---|
1806 | {
|
---|
1807 | int rc;
|
---|
1808 | uint32_t const cbSector = s->cbSector;
|
---|
1809 | uint32_t cbToWrite = cSectors * cbSector;
|
---|
1810 | Assert(pvBuf == &s->abIOBuffer[0]);
|
---|
1811 | AssertReturnStmt(cbToWrite <= sizeof(s->abIOBuffer), *pfRedo = false, VERR_BUFFER_OVERFLOW);
|
---|
1812 |
|
---|
1813 | ataR3LockLeave(pDevIns, pCtl);
|
---|
1814 |
|
---|
1815 | STAM_PROFILE_ADV_START(&s->StatWrites, w);
|
---|
1816 | s->Led.Asserted.s.fWriting = s->Led.Actual.s.fWriting = 1;
|
---|
1817 | # ifdef VBOX_INSTRUMENT_DMA_WRITES
|
---|
1818 | if (s->fDMA)
|
---|
1819 | STAM_PROFILE_ADV_START(&s->StatInstrVDWrites, vw);
|
---|
1820 | # endif
|
---|
1821 | rc = pDevR3->pDrvMedia->pfnWrite(pDevR3->pDrvMedia, u64Sector * cbSector, pvBuf, cbToWrite);
|
---|
1822 | # ifdef VBOX_INSTRUMENT_DMA_WRITES
|
---|
1823 | if (s->fDMA)
|
---|
1824 | STAM_PROFILE_ADV_STOP(&s->StatInstrVDWrites, vw);
|
---|
1825 | # endif
|
---|
1826 | s->Led.Actual.s.fWriting = 0;
|
---|
1827 | STAM_PROFILE_ADV_STOP(&s->StatWrites, w);
|
---|
1828 | Log4(("ataR3WriteSectors: rc=%Rrc cSectors=%#x u64Sector=%llu\n%.*Rhxd\n",
|
---|
1829 | rc, cSectors, u64Sector, cbToWrite, pvBuf));
|
---|
1830 |
|
---|
1831 | STAM_REL_COUNTER_ADD(&s->StatBytesWritten, cbToWrite);
|
---|
1832 |
|
---|
1833 | if (RT_SUCCESS(rc))
|
---|
1834 | *pfRedo = false;
|
---|
1835 | else
|
---|
1836 | *pfRedo = ataR3IsRedoSetWarning(pDevIns, pCtl, rc);
|
---|
1837 |
|
---|
1838 | ataR3LockEnter(pDevIns, pCtl);
|
---|
1839 | return rc;
|
---|
1840 | }
|
---|
1841 |
|
---|
1842 |
|
---|
1843 | /**
|
---|
1844 | * Begin Transfer: READ/WRITE SECTORS
|
---|
1845 | */
|
---|
1846 | static void ataR3ReadWriteSectorsBT(PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
1847 | {
|
---|
1848 | uint32_t const cbSector = RT_MAX(s->cbSector, 1);
|
---|
1849 | uint32_t cSectors;
|
---|
1850 |
|
---|
1851 | cSectors = s->cbTotalTransfer / cbSector;
|
---|
1852 | if (cSectors > s->cSectorsPerIRQ)
|
---|
1853 | s->cbElementaryTransfer = s->cSectorsPerIRQ * cbSector;
|
---|
1854 | else
|
---|
1855 | s->cbElementaryTransfer = cSectors * cbSector;
|
---|
1856 | if (s->uTxDir == PDMMEDIATXDIR_TO_DEVICE)
|
---|
1857 | ataR3CmdOK(pCtl, s, 0);
|
---|
1858 | }
|
---|
1859 |
|
---|
1860 |
|
---|
1861 | /**
|
---|
1862 | * Sink/Source: READ SECTORS
|
---|
1863 | */
|
---|
1864 | static bool ataR3ReadSectorsSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
1865 | {
|
---|
1866 | uint32_t const cbSector = RT_MAX(s->cbSector, 1);
|
---|
1867 | uint32_t cSectors;
|
---|
1868 | uint64_t iLBA;
|
---|
1869 | bool fRedo;
|
---|
1870 | int rc;
|
---|
1871 |
|
---|
1872 | cSectors = s->cbElementaryTransfer / cbSector;
|
---|
1873 | Assert(cSectors);
|
---|
1874 | iLBA = s->iCurLBA;
|
---|
1875 | Log(("%s: %d sectors at LBA %d\n", __FUNCTION__, cSectors, iLBA));
|
---|
1876 | rc = ataR3ReadSectors(pDevIns, pCtl, s, pDevR3, iLBA, s->abIOBuffer, cSectors, &fRedo);
|
---|
1877 | if (RT_SUCCESS(rc))
|
---|
1878 | {
|
---|
1879 | /* When READ SECTORS etc. finishes, the address in the task
|
---|
1880 | * file register points at the last sector read, not at the next
|
---|
1881 | * sector that would be read. This ensures the registers always
|
---|
1882 | * contain a valid sector address.
|
---|
1883 | */
|
---|
1884 | if (s->cbElementaryTransfer == s->cbTotalTransfer)
|
---|
1885 | {
|
---|
1886 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
1887 | ataR3SetSector(s, iLBA + cSectors - 1);
|
---|
1888 | }
|
---|
1889 | else
|
---|
1890 | ataR3SetSector(s, iLBA + cSectors);
|
---|
1891 | s->uATARegNSector -= cSectors;
|
---|
1892 | s->iCurLBA += cSectors;
|
---|
1893 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
1894 | }
|
---|
1895 | else
|
---|
1896 | {
|
---|
1897 | if (fRedo)
|
---|
1898 | return fRedo;
|
---|
1899 | if (s->cErrors++ < MAX_LOG_REL_ERRORS)
|
---|
1900 | LogRel(("PIIX3 ATA: LUN#%d: disk read error (rc=%Rrc iSector=%#RX64 cSectors=%#RX32)\n",
|
---|
1901 | s->iLUN, rc, iLBA, cSectors));
|
---|
1902 |
|
---|
1903 | /*
|
---|
1904 | * Check if we got interrupted. We don't need to set status variables
|
---|
1905 | * because the request was aborted.
|
---|
1906 | */
|
---|
1907 | if (rc != VERR_INTERRUPTED)
|
---|
1908 | ataR3CmdError(pCtl, s, ID_ERR);
|
---|
1909 | }
|
---|
1910 | return false;
|
---|
1911 | }
|
---|
1912 |
|
---|
1913 |
|
---|
1914 | /**
|
---|
1915 | * Sink/Source: WRITE SECTOR
|
---|
1916 | */
|
---|
1917 | static bool ataR3WriteSectorsSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
1918 | {
|
---|
1919 | uint32_t const cbSector = RT_MAX(s->cbSector, 1);
|
---|
1920 | uint64_t iLBA;
|
---|
1921 | uint32_t cSectors;
|
---|
1922 | bool fRedo;
|
---|
1923 | int rc;
|
---|
1924 |
|
---|
1925 | cSectors = s->cbElementaryTransfer / cbSector;
|
---|
1926 | Assert(cSectors);
|
---|
1927 | iLBA = s->iCurLBA;
|
---|
1928 | Log(("%s: %d sectors at LBA %d\n", __FUNCTION__, cSectors, iLBA));
|
---|
1929 | rc = ataR3WriteSectors(pDevIns, pCtl, s, pDevR3, iLBA, s->abIOBuffer, cSectors, &fRedo);
|
---|
1930 | if (RT_SUCCESS(rc))
|
---|
1931 | {
|
---|
1932 | ataR3SetSector(s, iLBA + cSectors);
|
---|
1933 | s->iCurLBA = iLBA + cSectors;
|
---|
1934 | if (!s->cbTotalTransfer)
|
---|
1935 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
1936 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
1937 | }
|
---|
1938 | else
|
---|
1939 | {
|
---|
1940 | if (fRedo)
|
---|
1941 | return fRedo;
|
---|
1942 | if (s->cErrors++ < MAX_LOG_REL_ERRORS)
|
---|
1943 | LogRel(("PIIX3 ATA: LUN#%d: disk write error (rc=%Rrc iSector=%#RX64 cSectors=%#RX32)\n",
|
---|
1944 | s->iLUN, rc, iLBA, cSectors));
|
---|
1945 |
|
---|
1946 | /*
|
---|
1947 | * Check if we got interrupted. We don't need to set status variables
|
---|
1948 | * because the request was aborted.
|
---|
1949 | */
|
---|
1950 | if (rc != VERR_INTERRUPTED)
|
---|
1951 | ataR3CmdError(pCtl, s, ID_ERR);
|
---|
1952 | }
|
---|
1953 | return false;
|
---|
1954 | }
|
---|
1955 |
|
---|
1956 |
|
---|
1957 | static void atapiR3CmdOK(PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
1958 | {
|
---|
1959 | s->uATARegError = 0;
|
---|
1960 | ataSetStatusValue(pCtl, s, ATA_STAT_READY);
|
---|
1961 | s->uATARegNSector = (s->uATARegNSector & ~7)
|
---|
1962 | | ((s->uTxDir != PDMMEDIATXDIR_TO_DEVICE) ? ATAPI_INT_REASON_IO : 0)
|
---|
1963 | | (!s->cbTotalTransfer ? ATAPI_INT_REASON_CD : 0);
|
---|
1964 | Log2(("%s: interrupt reason %#04x\n", __FUNCTION__, s->uATARegNSector));
|
---|
1965 |
|
---|
1966 | memset(s->abATAPISense, '\0', sizeof(s->abATAPISense));
|
---|
1967 | s->abATAPISense[0] = 0x70 | (1 << 7);
|
---|
1968 | s->abATAPISense[7] = 10;
|
---|
1969 | }
|
---|
1970 |
|
---|
1971 |
|
---|
1972 | static void atapiR3CmdError(PATACONTROLLER pCtl, PATADEVSTATE s, const uint8_t *pabATAPISense, size_t cbATAPISense)
|
---|
1973 | {
|
---|
1974 | Log(("%s: sense=%#x (%s) asc=%#x ascq=%#x (%s)\n", __FUNCTION__, pabATAPISense[2] & 0x0f, SCSISenseText(pabATAPISense[2] & 0x0f),
|
---|
1975 | pabATAPISense[12], pabATAPISense[13], SCSISenseExtText(pabATAPISense[12], pabATAPISense[13])));
|
---|
1976 | s->uATARegError = pabATAPISense[2] << 4;
|
---|
1977 | ataSetStatusValue(pCtl, s, ATA_STAT_READY | ATA_STAT_ERR);
|
---|
1978 | s->uATARegNSector = (s->uATARegNSector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD;
|
---|
1979 | Log2(("%s: interrupt reason %#04x\n", __FUNCTION__, s->uATARegNSector));
|
---|
1980 | memset(s->abATAPISense, '\0', sizeof(s->abATAPISense));
|
---|
1981 | memcpy(s->abATAPISense, pabATAPISense, RT_MIN(cbATAPISense, sizeof(s->abATAPISense)));
|
---|
1982 | s->cbTotalTransfer = 0;
|
---|
1983 | s->cbElementaryTransfer = 0;
|
---|
1984 | s->cbAtapiPassthroughTransfer = 0;
|
---|
1985 | s->iIOBufferCur = 0;
|
---|
1986 | s->iIOBufferEnd = 0;
|
---|
1987 | s->uTxDir = PDMMEDIATXDIR_NONE;
|
---|
1988 | s->iBeginTransfer = ATAFN_BT_NULL;
|
---|
1989 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
1990 | }
|
---|
1991 |
|
---|
1992 |
|
---|
1993 | /** @todo deprecated function - doesn't provide enough info. Replace by direct
|
---|
1994 | * calls to atapiR3CmdError() with full data. */
|
---|
1995 | static void atapiR3CmdErrorSimple(PATACONTROLLER pCtl, PATADEVSTATE s, uint8_t uATAPISenseKey, uint8_t uATAPIASC)
|
---|
1996 | {
|
---|
1997 | uint8_t abATAPISense[ATAPI_SENSE_SIZE];
|
---|
1998 | memset(abATAPISense, '\0', sizeof(abATAPISense));
|
---|
1999 | abATAPISense[0] = 0x70 | (1 << 7);
|
---|
2000 | abATAPISense[2] = uATAPISenseKey & 0x0f;
|
---|
2001 | abATAPISense[7] = 10;
|
---|
2002 | abATAPISense[12] = uATAPIASC;
|
---|
2003 | atapiR3CmdError(pCtl, s, abATAPISense, sizeof(abATAPISense));
|
---|
2004 | }
|
---|
2005 |
|
---|
2006 |
|
---|
2007 | /**
|
---|
2008 | * Begin Transfer: ATAPI command
|
---|
2009 | */
|
---|
2010 | static void atapiR3CmdBT(PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
2011 | {
|
---|
2012 | s->fATAPITransfer = true;
|
---|
2013 | s->cbElementaryTransfer = s->cbTotalTransfer;
|
---|
2014 | s->cbAtapiPassthroughTransfer = s->cbTotalTransfer;
|
---|
2015 | s->cbPIOTransferLimit = s->uATARegLCyl | (s->uATARegHCyl << 8);
|
---|
2016 | if (s->uTxDir == PDMMEDIATXDIR_TO_DEVICE)
|
---|
2017 | atapiR3CmdOK(pCtl, s);
|
---|
2018 | }
|
---|
2019 |
|
---|
2020 |
|
---|
2021 | /**
|
---|
2022 | * Begin Transfer: ATAPI Passthrough command
|
---|
2023 | */
|
---|
2024 | static void atapiR3PassthroughCmdBT(PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
2025 | {
|
---|
2026 | atapiR3CmdBT(pCtl, s);
|
---|
2027 | }
|
---|
2028 |
|
---|
2029 |
|
---|
2030 | /**
|
---|
2031 | * Sink/Source: READ
|
---|
2032 | */
|
---|
2033 | static bool atapiR3ReadSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
2034 | {
|
---|
2035 | int rc;
|
---|
2036 | uint64_t cbBlockRegion = 0;
|
---|
2037 | VDREGIONDATAFORM enmDataForm;
|
---|
2038 |
|
---|
2039 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
2040 | uint32_t const iATAPILBA = s->iCurLBA;
|
---|
2041 | uint32_t const cbTransfer = RT_MIN(s->cbTotalTransfer, RT_MIN(s->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE));
|
---|
2042 | uint32_t const cbATAPISector = s->cbATAPISector;
|
---|
2043 | uint32_t const cSectors = cbTransfer / cbATAPISector;
|
---|
2044 | Assert(cSectors * cbATAPISector <= cbTransfer);
|
---|
2045 | Log(("%s: %d sectors at LBA %d\n", __FUNCTION__, cSectors, iATAPILBA));
|
---|
2046 | AssertLogRelReturn(cSectors * cbATAPISector <= sizeof(s->abIOBuffer), false);
|
---|
2047 |
|
---|
2048 | ataR3LockLeave(pDevIns, pCtl);
|
---|
2049 |
|
---|
2050 | rc = pDevR3->pDrvMedia->pfnQueryRegionPropertiesForLba(pDevR3->pDrvMedia, iATAPILBA, NULL, NULL,
|
---|
2051 | &cbBlockRegion, &enmDataForm);
|
---|
2052 | if (RT_SUCCESS(rc))
|
---|
2053 | {
|
---|
2054 | STAM_PROFILE_ADV_START(&s->StatReads, r);
|
---|
2055 | s->Led.Asserted.s.fReading = s->Led.Actual.s.fReading = 1;
|
---|
2056 |
|
---|
2057 | /* If the region block size and requested sector matches we can just pass the request through. */
|
---|
2058 | if (cbBlockRegion == cbATAPISector)
|
---|
2059 | rc = pDevR3->pDrvMedia->pfnRead(pDevR3->pDrvMedia, (uint64_t)iATAPILBA * cbATAPISector,
|
---|
2060 | s->abIOBuffer, cbATAPISector * cSectors);
|
---|
2061 | else
|
---|
2062 | {
|
---|
2063 | uint32_t const iEndSector = iATAPILBA + cSectors;
|
---|
2064 | ASSERT_GUEST(iEndSector >= iATAPILBA);
|
---|
2065 | if (cbBlockRegion == 2048 && cbATAPISector == 2352)
|
---|
2066 | {
|
---|
2067 | /* Generate the sync bytes. */
|
---|
2068 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
2069 |
|
---|
2070 | for (uint32_t i = iATAPILBA; i < iEndSector; i++)
|
---|
2071 | {
|
---|
2072 | /* Sync bytes, see 4.2.3.8 CD Main Channel Block Formats */
|
---|
2073 | *pbBuf++ = 0x00;
|
---|
2074 | memset(pbBuf, 0xff, 10);
|
---|
2075 | pbBuf += 10;
|
---|
2076 | *pbBuf++ = 0x00;
|
---|
2077 | /* MSF */
|
---|
2078 | scsiLBA2MSF(pbBuf, i);
|
---|
2079 | pbBuf += 3;
|
---|
2080 | *pbBuf++ = 0x01; /* mode 1 data */
|
---|
2081 | /* data */
|
---|
2082 | rc = pDevR3->pDrvMedia->pfnRead(pDevR3->pDrvMedia, (uint64_t)i * 2048, pbBuf, 2048);
|
---|
2083 | if (RT_FAILURE(rc))
|
---|
2084 | break;
|
---|
2085 | pbBuf += 2048;
|
---|
2086 | /**
|
---|
2087 | * @todo maybe compute ECC and parity, layout is:
|
---|
2088 | * 2072 4 EDC
|
---|
2089 | * 2076 172 P parity symbols
|
---|
2090 | * 2248 104 Q parity symbols
|
---|
2091 | */
|
---|
2092 | memset(pbBuf, 0, 280);
|
---|
2093 | pbBuf += 280;
|
---|
2094 | }
|
---|
2095 | }
|
---|
2096 | else if (cbBlockRegion == 2352 && cbATAPISector == 2048)
|
---|
2097 | {
|
---|
2098 | /* Read only the user data portion. */
|
---|
2099 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
2100 |
|
---|
2101 | for (uint32_t i = iATAPILBA; i < iEndSector; i++)
|
---|
2102 | {
|
---|
2103 | uint8_t abTmp[2352];
|
---|
2104 | uint8_t cbSkip;
|
---|
2105 |
|
---|
2106 | rc = pDevR3->pDrvMedia->pfnRead(pDevR3->pDrvMedia, (uint64_t)i * 2352, &abTmp[0], 2352);
|
---|
2107 | if (RT_FAILURE(rc))
|
---|
2108 | break;
|
---|
2109 |
|
---|
2110 | /* Mode 2 has an additional subheader before user data; we need to
|
---|
2111 | * skip 16 bytes for Mode 1 (sync + header) and 20 bytes for Mode 2 +
|
---|
2112 | * (sync + header + subheader).
|
---|
2113 | */
|
---|
2114 | switch (enmDataForm) {
|
---|
2115 | case VDREGIONDATAFORM_MODE2_2352:
|
---|
2116 | case VDREGIONDATAFORM_XA_2352:
|
---|
2117 | cbSkip = 24;
|
---|
2118 | break;
|
---|
2119 | case VDREGIONDATAFORM_MODE1_2352:
|
---|
2120 | cbSkip = 16;
|
---|
2121 | break;
|
---|
2122 | default:
|
---|
2123 | AssertMsgFailed(("Unexpected region form (%#u), using default skip value\n", enmDataForm));
|
---|
2124 | cbSkip = 16;
|
---|
2125 | }
|
---|
2126 | memcpy(pbBuf, &abTmp[cbSkip], 2048);
|
---|
2127 | pbBuf += 2048;
|
---|
2128 | }
|
---|
2129 | }
|
---|
2130 | else
|
---|
2131 | ASSERT_GUEST_MSG_FAILED(("Unsupported: cbBlockRegion=%u cbATAPISector=%u\n", cbBlockRegion, cbATAPISector));
|
---|
2132 | }
|
---|
2133 | s->Led.Actual.s.fReading = 0;
|
---|
2134 | STAM_PROFILE_ADV_STOP(&s->StatReads, r);
|
---|
2135 | }
|
---|
2136 |
|
---|
2137 | ataR3LockEnter(pDevIns, pCtl);
|
---|
2138 |
|
---|
2139 | if (RT_SUCCESS(rc))
|
---|
2140 | {
|
---|
2141 | STAM_REL_COUNTER_ADD(&s->StatBytesRead, cbATAPISector * cSectors);
|
---|
2142 |
|
---|
2143 | /* The initial buffer end value has been set up based on the total
|
---|
2144 | * transfer size. But the I/O buffer size limits what can actually be
|
---|
2145 | * done in one transfer, so set the actual value of the buffer end. */
|
---|
2146 | s->cbElementaryTransfer = cbTransfer;
|
---|
2147 | if (cbTransfer >= s->cbTotalTransfer)
|
---|
2148 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
2149 | atapiR3CmdOK(pCtl, s);
|
---|
2150 | s->iCurLBA = iATAPILBA + cSectors;
|
---|
2151 | }
|
---|
2152 | else
|
---|
2153 | {
|
---|
2154 | if (s->cErrors++ < MAX_LOG_REL_ERRORS)
|
---|
2155 | LogRel(("PIIX3 ATA: LUN#%d: CD-ROM read error, %d sectors at LBA %d\n", s->iLUN, cSectors, iATAPILBA));
|
---|
2156 |
|
---|
2157 | /*
|
---|
2158 | * Check if we got interrupted. We don't need to set status variables
|
---|
2159 | * because the request was aborted.
|
---|
2160 | */
|
---|
2161 | if (rc != VERR_INTERRUPTED)
|
---|
2162 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_MEDIUM_ERROR, SCSI_ASC_READ_ERROR);
|
---|
2163 | }
|
---|
2164 | return false;
|
---|
2165 | }
|
---|
2166 |
|
---|
2167 | /**
|
---|
2168 | * Sets the given media track type.
|
---|
2169 | */
|
---|
2170 | static uint32_t ataR3MediumTypeSet(PATADEVSTATE s, uint32_t MediaTrackType)
|
---|
2171 | {
|
---|
2172 | return ASMAtomicXchgU32(&s->MediaTrackType, MediaTrackType);
|
---|
2173 | }
|
---|
2174 |
|
---|
2175 |
|
---|
2176 | /**
|
---|
2177 | * Sink/Source: Passthrough
|
---|
2178 | */
|
---|
2179 | static bool atapiR3PassthroughSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
2180 | {
|
---|
2181 | int rc = VINF_SUCCESS;
|
---|
2182 | uint8_t abATAPISense[ATAPI_SENSE_SIZE];
|
---|
2183 | uint32_t cbTransfer;
|
---|
2184 | PSTAMPROFILEADV pProf = NULL;
|
---|
2185 |
|
---|
2186 | cbTransfer = RT_MIN(s->cbAtapiPassthroughTransfer, RT_MIN(s->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE));
|
---|
2187 |
|
---|
2188 | if (s->uTxDir == PDMMEDIATXDIR_TO_DEVICE)
|
---|
2189 | Log3(("ATAPI PT data write (%d): %.*Rhxs\n", cbTransfer, cbTransfer, s->abIOBuffer));
|
---|
2190 |
|
---|
2191 | /* Simple heuristics: if there is at least one sector of data
|
---|
2192 | * to transfer, it's worth updating the LEDs. */
|
---|
2193 | if (cbTransfer >= 2048)
|
---|
2194 | {
|
---|
2195 | if (s->uTxDir != PDMMEDIATXDIR_TO_DEVICE)
|
---|
2196 | {
|
---|
2197 | s->Led.Asserted.s.fReading = s->Led.Actual.s.fReading = 1;
|
---|
2198 | pProf = &s->StatReads;
|
---|
2199 | }
|
---|
2200 | else
|
---|
2201 | {
|
---|
2202 | s->Led.Asserted.s.fWriting = s->Led.Actual.s.fWriting = 1;
|
---|
2203 | pProf = &s->StatWrites;
|
---|
2204 | }
|
---|
2205 | }
|
---|
2206 |
|
---|
2207 | ataR3LockLeave(pDevIns, pCtl);
|
---|
2208 |
|
---|
2209 | # if defined(LOG_ENABLED)
|
---|
2210 | char szBuf[1024];
|
---|
2211 |
|
---|
2212 | memset(szBuf, 0, sizeof(szBuf));
|
---|
2213 |
|
---|
2214 | switch (s->abATAPICmd[0])
|
---|
2215 | {
|
---|
2216 | case SCSI_MODE_SELECT_10:
|
---|
2217 | {
|
---|
2218 | size_t cbBlkDescLength = scsiBE2H_U16(&s->abIOBuffer[6]);
|
---|
2219 |
|
---|
2220 | SCSILogModePage(szBuf, sizeof(szBuf) - 1,
|
---|
2221 | s->abIOBuffer + 8 + cbBlkDescLength,
|
---|
2222 | cbTransfer - 8 - cbBlkDescLength);
|
---|
2223 | break;
|
---|
2224 | }
|
---|
2225 | case SCSI_SEND_CUE_SHEET:
|
---|
2226 | {
|
---|
2227 | SCSILogCueSheet(szBuf, sizeof(szBuf) - 1,
|
---|
2228 | s->abIOBuffer, cbTransfer);
|
---|
2229 | break;
|
---|
2230 | }
|
---|
2231 | default:
|
---|
2232 | break;
|
---|
2233 | }
|
---|
2234 |
|
---|
2235 | Log2(("%s\n", szBuf));
|
---|
2236 | # endif
|
---|
2237 |
|
---|
2238 | if (pProf) { STAM_PROFILE_ADV_START(pProf, b); }
|
---|
2239 |
|
---|
2240 | Assert(s->cbATAPISector);
|
---|
2241 | const uint32_t cbATAPISector = RT_MAX(s->cbATAPISector, 1); /* paranoia */
|
---|
2242 | const uint32_t cbIOBuffer = RT_MIN(s->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE); /* ditto */
|
---|
2243 |
|
---|
2244 | if ( cbTransfer > SCSI_MAX_BUFFER_SIZE
|
---|
2245 | || s->cbElementaryTransfer > cbIOBuffer)
|
---|
2246 | {
|
---|
2247 | /* Linux accepts commands with up to 100KB of data, but expects
|
---|
2248 | * us to handle commands with up to 128KB of data. The usual
|
---|
2249 | * imbalance of powers. */
|
---|
2250 | uint8_t abATAPICmd[ATAPI_PACKET_SIZE];
|
---|
2251 | uint32_t iATAPILBA, cSectors, cReqSectors, cbCurrTX;
|
---|
2252 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
2253 | uint32_t cSectorsMax; /**< Maximum amount of sectors to read without exceeding the I/O buffer. */
|
---|
2254 |
|
---|
2255 | cSectorsMax = cbTransfer / cbATAPISector;
|
---|
2256 | AssertStmt(cSectorsMax * s->cbATAPISector <= cbIOBuffer, cSectorsMax = cbIOBuffer / cbATAPISector);
|
---|
2257 |
|
---|
2258 | switch (s->abATAPICmd[0])
|
---|
2259 | {
|
---|
2260 | case SCSI_READ_10:
|
---|
2261 | case SCSI_WRITE_10:
|
---|
2262 | case SCSI_WRITE_AND_VERIFY_10:
|
---|
2263 | iATAPILBA = scsiBE2H_U32(s->abATAPICmd + 2);
|
---|
2264 | cSectors = scsiBE2H_U16(s->abATAPICmd + 7);
|
---|
2265 | break;
|
---|
2266 | case SCSI_READ_12:
|
---|
2267 | case SCSI_WRITE_12:
|
---|
2268 | iATAPILBA = scsiBE2H_U32(s->abATAPICmd + 2);
|
---|
2269 | cSectors = scsiBE2H_U32(s->abATAPICmd + 6);
|
---|
2270 | break;
|
---|
2271 | case SCSI_READ_CD:
|
---|
2272 | iATAPILBA = scsiBE2H_U32(s->abATAPICmd + 2);
|
---|
2273 | cSectors = scsiBE2H_U24(s->abATAPICmd + 6);
|
---|
2274 | break;
|
---|
2275 | case SCSI_READ_CD_MSF:
|
---|
2276 | iATAPILBA = scsiMSF2LBA(s->abATAPICmd + 3);
|
---|
2277 | cSectors = scsiMSF2LBA(s->abATAPICmd + 6) - iATAPILBA;
|
---|
2278 | break;
|
---|
2279 | default:
|
---|
2280 | AssertMsgFailed(("Don't know how to split command %#04x\n", s->abATAPICmd[0]));
|
---|
2281 | if (s->cErrors++ < MAX_LOG_REL_ERRORS)
|
---|
2282 | LogRel(("PIIX3 ATA: LUN#%d: CD-ROM passthrough split error\n", s->iLUN));
|
---|
2283 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_ILLEGAL_OPCODE);
|
---|
2284 | ataR3LockEnter(pDevIns, pCtl);
|
---|
2285 | return false;
|
---|
2286 | }
|
---|
2287 | cSectorsMax = RT_MIN(cSectorsMax, cSectors);
|
---|
2288 | memcpy(abATAPICmd, s->abATAPICmd, ATAPI_PACKET_SIZE);
|
---|
2289 | cReqSectors = 0;
|
---|
2290 | for (uint32_t i = cSectorsMax; i > 0; i -= cReqSectors)
|
---|
2291 | {
|
---|
2292 | if (i * cbATAPISector > SCSI_MAX_BUFFER_SIZE)
|
---|
2293 | cReqSectors = SCSI_MAX_BUFFER_SIZE / cbATAPISector;
|
---|
2294 | else
|
---|
2295 | cReqSectors = i;
|
---|
2296 | cbCurrTX = cbATAPISector * cReqSectors;
|
---|
2297 | switch (s->abATAPICmd[0])
|
---|
2298 | {
|
---|
2299 | case SCSI_READ_10:
|
---|
2300 | case SCSI_WRITE_10:
|
---|
2301 | case SCSI_WRITE_AND_VERIFY_10:
|
---|
2302 | scsiH2BE_U32(abATAPICmd + 2, iATAPILBA);
|
---|
2303 | scsiH2BE_U16(abATAPICmd + 7, cReqSectors);
|
---|
2304 | break;
|
---|
2305 | case SCSI_READ_12:
|
---|
2306 | case SCSI_WRITE_12:
|
---|
2307 | scsiH2BE_U32(abATAPICmd + 2, iATAPILBA);
|
---|
2308 | scsiH2BE_U32(abATAPICmd + 6, cReqSectors);
|
---|
2309 | break;
|
---|
2310 | case SCSI_READ_CD:
|
---|
2311 | scsiH2BE_U32(abATAPICmd + 2, iATAPILBA);
|
---|
2312 | scsiH2BE_U24(abATAPICmd + 6, cReqSectors);
|
---|
2313 | break;
|
---|
2314 | case SCSI_READ_CD_MSF:
|
---|
2315 | scsiLBA2MSF(abATAPICmd + 3, iATAPILBA);
|
---|
2316 | scsiLBA2MSF(abATAPICmd + 6, iATAPILBA + cReqSectors);
|
---|
2317 | break;
|
---|
2318 | }
|
---|
2319 | AssertLogRelReturn((uintptr_t)(pbBuf - &s->abIOBuffer[0]) + cbCurrTX <= sizeof(s->abIOBuffer), false);
|
---|
2320 | rc = pDevR3->pDrvMedia->pfnSendCmd(pDevR3->pDrvMedia, abATAPICmd, ATAPI_PACKET_SIZE, (PDMMEDIATXDIR)s->uTxDir,
|
---|
2321 | pbBuf, &cbCurrTX, abATAPISense, sizeof(abATAPISense), 30000 /**< @todo timeout */);
|
---|
2322 | if (rc != VINF_SUCCESS)
|
---|
2323 | break;
|
---|
2324 | iATAPILBA += cReqSectors;
|
---|
2325 | pbBuf += cbATAPISector * cReqSectors;
|
---|
2326 | }
|
---|
2327 |
|
---|
2328 | if (RT_SUCCESS(rc))
|
---|
2329 | {
|
---|
2330 | /* Adjust ATAPI command for the next call. */
|
---|
2331 | switch (s->abATAPICmd[0])
|
---|
2332 | {
|
---|
2333 | case SCSI_READ_10:
|
---|
2334 | case SCSI_WRITE_10:
|
---|
2335 | case SCSI_WRITE_AND_VERIFY_10:
|
---|
2336 | scsiH2BE_U32(s->abATAPICmd + 2, iATAPILBA);
|
---|
2337 | scsiH2BE_U16(s->abATAPICmd + 7, cSectors - cSectorsMax);
|
---|
2338 | break;
|
---|
2339 | case SCSI_READ_12:
|
---|
2340 | case SCSI_WRITE_12:
|
---|
2341 | scsiH2BE_U32(s->abATAPICmd + 2, iATAPILBA);
|
---|
2342 | scsiH2BE_U32(s->abATAPICmd + 6, cSectors - cSectorsMax);
|
---|
2343 | break;
|
---|
2344 | case SCSI_READ_CD:
|
---|
2345 | scsiH2BE_U32(s->abATAPICmd + 2, iATAPILBA);
|
---|
2346 | scsiH2BE_U24(s->abATAPICmd + 6, cSectors - cSectorsMax);
|
---|
2347 | break;
|
---|
2348 | case SCSI_READ_CD_MSF:
|
---|
2349 | scsiLBA2MSF(s->abATAPICmd + 3, iATAPILBA);
|
---|
2350 | scsiLBA2MSF(s->abATAPICmd + 6, iATAPILBA + cSectors - cSectorsMax);
|
---|
2351 | break;
|
---|
2352 | default:
|
---|
2353 | AssertMsgFailed(("Don't know how to split command %#04x\n", s->abATAPICmd[0]));
|
---|
2354 | if (s->cErrors++ < MAX_LOG_REL_ERRORS)
|
---|
2355 | LogRel(("PIIX3 ATA: LUN#%d: CD-ROM passthrough split error\n", s->iLUN));
|
---|
2356 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_ILLEGAL_OPCODE);
|
---|
2357 | return false;
|
---|
2358 | }
|
---|
2359 | }
|
---|
2360 | }
|
---|
2361 | else
|
---|
2362 | {
|
---|
2363 | AssertLogRelReturn(cbTransfer <= sizeof(s->abIOBuffer), false);
|
---|
2364 | rc = pDevR3->pDrvMedia->pfnSendCmd(pDevR3->pDrvMedia, s->abATAPICmd, ATAPI_PACKET_SIZE, (PDMMEDIATXDIR)s->uTxDir,
|
---|
2365 | s->abIOBuffer, &cbTransfer, abATAPISense, sizeof(abATAPISense), 30000 /**< @todo timeout */);
|
---|
2366 | }
|
---|
2367 | if (pProf) { STAM_PROFILE_ADV_STOP(pProf, b); }
|
---|
2368 |
|
---|
2369 | ataR3LockEnter(pDevIns, pCtl);
|
---|
2370 |
|
---|
2371 | /* Update the LEDs and the read/write statistics. */
|
---|
2372 | if (cbTransfer >= 2048)
|
---|
2373 | {
|
---|
2374 | if (s->uTxDir != PDMMEDIATXDIR_TO_DEVICE)
|
---|
2375 | {
|
---|
2376 | s->Led.Actual.s.fReading = 0;
|
---|
2377 | STAM_REL_COUNTER_ADD(&s->StatBytesRead, cbTransfer);
|
---|
2378 | }
|
---|
2379 | else
|
---|
2380 | {
|
---|
2381 | s->Led.Actual.s.fWriting = 0;
|
---|
2382 | STAM_REL_COUNTER_ADD(&s->StatBytesWritten, cbTransfer);
|
---|
2383 | }
|
---|
2384 | }
|
---|
2385 |
|
---|
2386 | if (RT_SUCCESS(rc))
|
---|
2387 | {
|
---|
2388 | /* Do post processing for certain commands. */
|
---|
2389 | switch (s->abATAPICmd[0])
|
---|
2390 | {
|
---|
2391 | case SCSI_SEND_CUE_SHEET:
|
---|
2392 | case SCSI_READ_TOC_PMA_ATIP:
|
---|
2393 | {
|
---|
2394 | if (!pDevR3->pTrackList)
|
---|
2395 | rc = ATAPIPassthroughTrackListCreateEmpty(&pDevR3->pTrackList);
|
---|
2396 |
|
---|
2397 | if (RT_SUCCESS(rc))
|
---|
2398 | rc = ATAPIPassthroughTrackListUpdate(pDevR3->pTrackList, s->abATAPICmd, s->abIOBuffer, sizeof(s->abIOBuffer));
|
---|
2399 |
|
---|
2400 | if ( RT_FAILURE(rc)
|
---|
2401 | && s->cErrors++ < MAX_LOG_REL_ERRORS)
|
---|
2402 | LogRel(("ATA: Error (%Rrc) while updating the tracklist during %s, burning the disc might fail\n",
|
---|
2403 | rc, s->abATAPICmd[0] == SCSI_SEND_CUE_SHEET ? "SEND CUE SHEET" : "READ TOC/PMA/ATIP"));
|
---|
2404 | break;
|
---|
2405 | }
|
---|
2406 | case SCSI_SYNCHRONIZE_CACHE:
|
---|
2407 | {
|
---|
2408 | if (pDevR3->pTrackList)
|
---|
2409 | ATAPIPassthroughTrackListClear(pDevR3->pTrackList);
|
---|
2410 | break;
|
---|
2411 | }
|
---|
2412 | }
|
---|
2413 |
|
---|
2414 | if (s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE)
|
---|
2415 | {
|
---|
2416 | /*
|
---|
2417 | * Reply with the same amount of data as the real drive
|
---|
2418 | * but only if the command wasn't split.
|
---|
2419 | */
|
---|
2420 | if (s->cbAtapiPassthroughTransfer < cbIOBuffer)
|
---|
2421 | s->cbTotalTransfer = cbTransfer;
|
---|
2422 |
|
---|
2423 | if ( s->abATAPICmd[0] == SCSI_INQUIRY
|
---|
2424 | && s->fOverwriteInquiry)
|
---|
2425 | {
|
---|
2426 | /* Make sure that the real drive cannot be identified.
|
---|
2427 | * Motivation: changing the VM configuration should be as
|
---|
2428 | * invisible as possible to the guest. */
|
---|
2429 | Log3(("ATAPI PT inquiry data before (%d): %.*Rhxs\n", cbTransfer, cbTransfer, s->abIOBuffer));
|
---|
2430 | scsiPadStr(&s->abIOBuffer[8], "VBOX", 8);
|
---|
2431 | scsiPadStr(&s->abIOBuffer[16], "CD-ROM", 16);
|
---|
2432 | scsiPadStr(&s->abIOBuffer[32], "1.0", 4);
|
---|
2433 | }
|
---|
2434 |
|
---|
2435 | if (cbTransfer)
|
---|
2436 | Log3(("ATAPI PT data read (%d):\n%.*Rhxd\n", cbTransfer, cbTransfer, s->abIOBuffer));
|
---|
2437 | }
|
---|
2438 |
|
---|
2439 | /* The initial buffer end value has been set up based on the total
|
---|
2440 | * transfer size. But the I/O buffer size limits what can actually be
|
---|
2441 | * done in one transfer, so set the actual value of the buffer end. */
|
---|
2442 | Assert(cbTransfer <= s->cbAtapiPassthroughTransfer);
|
---|
2443 | s->cbElementaryTransfer = cbTransfer;
|
---|
2444 | s->cbAtapiPassthroughTransfer -= cbTransfer;
|
---|
2445 | if (!s->cbAtapiPassthroughTransfer)
|
---|
2446 | {
|
---|
2447 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
2448 | atapiR3CmdOK(pCtl, s);
|
---|
2449 | }
|
---|
2450 | }
|
---|
2451 | else
|
---|
2452 | {
|
---|
2453 | if (s->cErrors < MAX_LOG_REL_ERRORS)
|
---|
2454 | {
|
---|
2455 | uint8_t u8Cmd = s->abATAPICmd[0];
|
---|
2456 | do
|
---|
2457 | {
|
---|
2458 | /* don't log superfluous errors */
|
---|
2459 | if ( rc == VERR_DEV_IO_ERROR
|
---|
2460 | && ( u8Cmd == SCSI_TEST_UNIT_READY
|
---|
2461 | || u8Cmd == SCSI_READ_CAPACITY
|
---|
2462 | || u8Cmd == SCSI_READ_DVD_STRUCTURE
|
---|
2463 | || u8Cmd == SCSI_READ_TOC_PMA_ATIP))
|
---|
2464 | break;
|
---|
2465 | s->cErrors++;
|
---|
2466 | LogRel(("PIIX3 ATA: LUN#%d: CD-ROM passthrough cmd=%#04x sense=%d ASC=%#02x ASCQ=%#02x %Rrc\n",
|
---|
2467 | s->iLUN, u8Cmd, abATAPISense[2] & 0x0f, abATAPISense[12], abATAPISense[13], rc));
|
---|
2468 | } while (0);
|
---|
2469 | }
|
---|
2470 | atapiR3CmdError(pCtl, s, abATAPISense, sizeof(abATAPISense));
|
---|
2471 | }
|
---|
2472 | return false;
|
---|
2473 | }
|
---|
2474 |
|
---|
2475 |
|
---|
2476 | /**
|
---|
2477 | * Begin Transfer: Read DVD structures
|
---|
2478 | */
|
---|
2479 | static bool atapiR3ReadDVDStructureSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
2480 | {
|
---|
2481 | uint8_t *buf = s->abIOBuffer;
|
---|
2482 | int media = s->abATAPICmd[1];
|
---|
2483 | int format = s->abATAPICmd[7];
|
---|
2484 | RT_NOREF(pDevIns, pDevR3);
|
---|
2485 |
|
---|
2486 | AssertCompile(sizeof(s->abIOBuffer) > UINT16_MAX /* want a RT_MIN() below, but clang takes offence at always false stuff */);
|
---|
2487 | uint16_t max_len = scsiBE2H_U16(&s->abATAPICmd[8]);
|
---|
2488 | memset(buf, 0, max_len);
|
---|
2489 |
|
---|
2490 | switch (format) {
|
---|
2491 | case 0x00:
|
---|
2492 | case 0x01:
|
---|
2493 | case 0x02:
|
---|
2494 | case 0x03:
|
---|
2495 | case 0x04:
|
---|
2496 | case 0x05:
|
---|
2497 | case 0x06:
|
---|
2498 | case 0x07:
|
---|
2499 | case 0x08:
|
---|
2500 | case 0x09:
|
---|
2501 | case 0x0a:
|
---|
2502 | case 0x0b:
|
---|
2503 | case 0x0c:
|
---|
2504 | case 0x0d:
|
---|
2505 | case 0x0e:
|
---|
2506 | case 0x0f:
|
---|
2507 | case 0x10:
|
---|
2508 | case 0x11:
|
---|
2509 | case 0x30:
|
---|
2510 | case 0x31:
|
---|
2511 | case 0xff:
|
---|
2512 | if (media == 0)
|
---|
2513 | {
|
---|
2514 | int uASC = SCSI_ASC_NONE;
|
---|
2515 |
|
---|
2516 | switch (format)
|
---|
2517 | {
|
---|
2518 | case 0x0: /* Physical format information */
|
---|
2519 | {
|
---|
2520 | int layer = s->abATAPICmd[6];
|
---|
2521 | uint64_t total_sectors;
|
---|
2522 |
|
---|
2523 | if (layer != 0)
|
---|
2524 | {
|
---|
2525 | uASC = -SCSI_ASC_INV_FIELD_IN_CMD_PACKET;
|
---|
2526 | break;
|
---|
2527 | }
|
---|
2528 |
|
---|
2529 | total_sectors = s->cTotalSectors;
|
---|
2530 | total_sectors >>= 2;
|
---|
2531 | if (total_sectors == 0)
|
---|
2532 | {
|
---|
2533 | uASC = -SCSI_ASC_MEDIUM_NOT_PRESENT;
|
---|
2534 | break;
|
---|
2535 | }
|
---|
2536 |
|
---|
2537 | buf[4] = 1; /* DVD-ROM, part version 1 */
|
---|
2538 | buf[5] = 0xf; /* 120mm disc, minimum rate unspecified */
|
---|
2539 | buf[6] = 1; /* one layer, read-only (per MMC-2 spec) */
|
---|
2540 | buf[7] = 0; /* default densities */
|
---|
2541 |
|
---|
2542 | /* FIXME: 0x30000 per spec? */
|
---|
2543 | scsiH2BE_U32(buf + 8, 0); /* start sector */
|
---|
2544 | scsiH2BE_U32(buf + 12, total_sectors - 1); /* end sector */
|
---|
2545 | scsiH2BE_U32(buf + 16, total_sectors - 1); /* l0 end sector */
|
---|
2546 |
|
---|
2547 | /* Size of buffer, not including 2 byte size field */
|
---|
2548 | scsiH2BE_U32(&buf[0], 2048 + 2);
|
---|
2549 |
|
---|
2550 | /* 2k data + 4 byte header */
|
---|
2551 | uASC = (2048 + 4);
|
---|
2552 | break;
|
---|
2553 | }
|
---|
2554 | case 0x01: /* DVD copyright information */
|
---|
2555 | buf[4] = 0; /* no copyright data */
|
---|
2556 | buf[5] = 0; /* no region restrictions */
|
---|
2557 |
|
---|
2558 | /* Size of buffer, not including 2 byte size field */
|
---|
2559 | scsiH2BE_U16(buf, 4 + 2);
|
---|
2560 |
|
---|
2561 | /* 4 byte header + 4 byte data */
|
---|
2562 | uASC = (4 + 4);
|
---|
2563 | break;
|
---|
2564 |
|
---|
2565 | case 0x03: /* BCA information - invalid field for no BCA info */
|
---|
2566 | uASC = -SCSI_ASC_INV_FIELD_IN_CMD_PACKET;
|
---|
2567 | break;
|
---|
2568 |
|
---|
2569 | case 0x04: /* DVD disc manufacturing information */
|
---|
2570 | /* Size of buffer, not including 2 byte size field */
|
---|
2571 | scsiH2BE_U16(buf, 2048 + 2);
|
---|
2572 |
|
---|
2573 | /* 2k data + 4 byte header */
|
---|
2574 | uASC = (2048 + 4);
|
---|
2575 | break;
|
---|
2576 | case 0xff:
|
---|
2577 | /*
|
---|
2578 | * This lists all the command capabilities above. Add new ones
|
---|
2579 | * in order and update the length and buffer return values.
|
---|
2580 | */
|
---|
2581 |
|
---|
2582 | buf[4] = 0x00; /* Physical format */
|
---|
2583 | buf[5] = 0x40; /* Not writable, is readable */
|
---|
2584 | scsiH2BE_U16((buf + 6), 2048 + 4);
|
---|
2585 |
|
---|
2586 | buf[8] = 0x01; /* Copyright info */
|
---|
2587 | buf[9] = 0x40; /* Not writable, is readable */
|
---|
2588 | scsiH2BE_U16((buf + 10), 4 + 4);
|
---|
2589 |
|
---|
2590 | buf[12] = 0x03; /* BCA info */
|
---|
2591 | buf[13] = 0x40; /* Not writable, is readable */
|
---|
2592 | scsiH2BE_U16((buf + 14), 188 + 4);
|
---|
2593 |
|
---|
2594 | buf[16] = 0x04; /* Manufacturing info */
|
---|
2595 | buf[17] = 0x40; /* Not writable, is readable */
|
---|
2596 | scsiH2BE_U16((buf + 18), 2048 + 4);
|
---|
2597 |
|
---|
2598 | /* Size of buffer, not including 2 byte size field */
|
---|
2599 | scsiH2BE_U16(buf, 16 + 2);
|
---|
2600 |
|
---|
2601 | /* data written + 4 byte header */
|
---|
2602 | uASC = (16 + 4);
|
---|
2603 | break;
|
---|
2604 | default: /** @todo formats beyond DVD-ROM requires */
|
---|
2605 | uASC = -SCSI_ASC_INV_FIELD_IN_CMD_PACKET;
|
---|
2606 | }
|
---|
2607 |
|
---|
2608 | if (uASC < 0)
|
---|
2609 | {
|
---|
2610 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
2611 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, -uASC);
|
---|
2612 | return false;
|
---|
2613 | }
|
---|
2614 | break;
|
---|
2615 | }
|
---|
2616 | /** @todo BD support, fall through for now */
|
---|
2617 | RT_FALL_THRU();
|
---|
2618 |
|
---|
2619 | /* Generic disk structures */
|
---|
2620 | case 0x80: /** @todo AACS volume identifier */
|
---|
2621 | case 0x81: /** @todo AACS media serial number */
|
---|
2622 | case 0x82: /** @todo AACS media identifier */
|
---|
2623 | case 0x83: /** @todo AACS media key block */
|
---|
2624 | case 0x90: /** @todo List of recognized format layers */
|
---|
2625 | case 0xc0: /** @todo Write protection status */
|
---|
2626 | default:
|
---|
2627 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
2628 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
2629 | return false;
|
---|
2630 | }
|
---|
2631 |
|
---|
2632 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
2633 | atapiR3CmdOK(pCtl, s);
|
---|
2634 | return false;
|
---|
2635 | }
|
---|
2636 |
|
---|
2637 |
|
---|
2638 | static bool atapiR3ReadSectors(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s,
|
---|
2639 | uint32_t iATAPILBA, uint32_t cSectors, uint32_t cbSector)
|
---|
2640 | {
|
---|
2641 | Assert(cSectors > 0);
|
---|
2642 | s->iCurLBA = iATAPILBA;
|
---|
2643 | s->cbATAPISector = cbSector;
|
---|
2644 | ataR3StartTransfer(pDevIns, pCtl, s, cSectors * cbSector,
|
---|
2645 | PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_READ, true);
|
---|
2646 | return false;
|
---|
2647 | }
|
---|
2648 |
|
---|
2649 |
|
---|
2650 | /**
|
---|
2651 | * Sink/Source: ATAPI READ CAPACITY
|
---|
2652 | */
|
---|
2653 | static bool atapiR3ReadCapacitySS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
2654 | {
|
---|
2655 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
2656 | RT_NOREF(pDevIns, pDevR3);
|
---|
2657 |
|
---|
2658 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
2659 | Assert(s->cbElementaryTransfer <= 8);
|
---|
2660 | scsiH2BE_U32(pbBuf, s->cTotalSectors - 1);
|
---|
2661 | scsiH2BE_U32(pbBuf + 4, 2048);
|
---|
2662 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
2663 | atapiR3CmdOK(pCtl, s);
|
---|
2664 | return false;
|
---|
2665 | }
|
---|
2666 |
|
---|
2667 |
|
---|
2668 | /**
|
---|
2669 | * Sink/Source: ATAPI READ DISCK INFORMATION
|
---|
2670 | */
|
---|
2671 | static bool atapiR3ReadDiscInformationSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
2672 | {
|
---|
2673 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
2674 | RT_NOREF(pDevIns, pDevR3);
|
---|
2675 |
|
---|
2676 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
2677 | Assert(s->cbElementaryTransfer <= 34);
|
---|
2678 | memset(pbBuf, '\0', 34);
|
---|
2679 | scsiH2BE_U16(pbBuf, 32);
|
---|
2680 | pbBuf[2] = (0 << 4) | (3 << 2) | (2 << 0); /* not erasable, complete session, complete disc */
|
---|
2681 | pbBuf[3] = 1; /* number of first track */
|
---|
2682 | pbBuf[4] = 1; /* number of sessions (LSB) */
|
---|
2683 | pbBuf[5] = 1; /* first track number in last session (LSB) */
|
---|
2684 | pbBuf[6] = (uint8_t)pDevR3->pDrvMedia->pfnGetRegionCount(pDevR3->pDrvMedia); /* last track number in last session (LSB) */
|
---|
2685 | pbBuf[7] = (0 << 7) | (0 << 6) | (1 << 5) | (0 << 2) | (0 << 0); /* disc id not valid, disc bar code not valid, unrestricted use, not dirty, not RW medium */
|
---|
2686 | pbBuf[8] = 0; /* disc type = CD-ROM */
|
---|
2687 | pbBuf[9] = 0; /* number of sessions (MSB) */
|
---|
2688 | pbBuf[10] = 0; /* number of sessions (MSB) */
|
---|
2689 | pbBuf[11] = 0; /* number of sessions (MSB) */
|
---|
2690 | scsiH2BE_U32(pbBuf + 16, 0xffffffff); /* last session lead-in start time is not available */
|
---|
2691 | scsiH2BE_U32(pbBuf + 20, 0xffffffff); /* last possible start time for lead-out is not available */
|
---|
2692 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
2693 | atapiR3CmdOK(pCtl, s);
|
---|
2694 | return false;
|
---|
2695 | }
|
---|
2696 |
|
---|
2697 |
|
---|
2698 | /**
|
---|
2699 | * Sink/Source: ATAPI READ TRACK INFORMATION
|
---|
2700 | */
|
---|
2701 | static bool atapiR3ReadTrackInformationSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
2702 | {
|
---|
2703 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
2704 | uint32_t u32LogAddr = scsiBE2H_U32(&s->abATAPICmd[2]);
|
---|
2705 | uint8_t u8LogAddrType = s->abATAPICmd[1] & 0x03;
|
---|
2706 | RT_NOREF(pDevIns);
|
---|
2707 |
|
---|
2708 | int rc;
|
---|
2709 | uint64_t u64LbaStart = 0;
|
---|
2710 | uint32_t uRegion = 0;
|
---|
2711 | uint64_t cBlocks = 0;
|
---|
2712 | uint64_t cbBlock = 0;
|
---|
2713 | uint8_t u8DataMode = 0xf; /* Unknown data mode. */
|
---|
2714 | uint8_t u8TrackMode = 0;
|
---|
2715 | VDREGIONDATAFORM enmDataForm = VDREGIONDATAFORM_INVALID;
|
---|
2716 |
|
---|
2717 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
2718 | Assert(s->cbElementaryTransfer <= 36);
|
---|
2719 |
|
---|
2720 | switch (u8LogAddrType)
|
---|
2721 | {
|
---|
2722 | case 0x00:
|
---|
2723 | rc = pDevR3->pDrvMedia->pfnQueryRegionPropertiesForLba(pDevR3->pDrvMedia, u32LogAddr, &uRegion,
|
---|
2724 | NULL, NULL, NULL);
|
---|
2725 | if (RT_SUCCESS(rc))
|
---|
2726 | rc = pDevR3->pDrvMedia->pfnQueryRegionProperties(pDevR3->pDrvMedia, uRegion, &u64LbaStart,
|
---|
2727 | &cBlocks, &cbBlock, &enmDataForm);
|
---|
2728 | break;
|
---|
2729 | case 0x01:
|
---|
2730 | {
|
---|
2731 | if (u32LogAddr >= 1)
|
---|
2732 | {
|
---|
2733 | uRegion = u32LogAddr - 1;
|
---|
2734 | rc = pDevR3->pDrvMedia->pfnQueryRegionProperties(pDevR3->pDrvMedia, uRegion, &u64LbaStart,
|
---|
2735 | &cBlocks, &cbBlock, &enmDataForm);
|
---|
2736 | }
|
---|
2737 | else
|
---|
2738 | rc = VERR_NOT_FOUND; /** @todo Return lead-in information. */
|
---|
2739 | break;
|
---|
2740 | }
|
---|
2741 | case 0x02:
|
---|
2742 | default:
|
---|
2743 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
2744 | return false;
|
---|
2745 | }
|
---|
2746 |
|
---|
2747 | if (RT_FAILURE(rc))
|
---|
2748 | {
|
---|
2749 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
2750 | return false;
|
---|
2751 | }
|
---|
2752 |
|
---|
2753 | switch (enmDataForm)
|
---|
2754 | {
|
---|
2755 | case VDREGIONDATAFORM_MODE1_2048:
|
---|
2756 | case VDREGIONDATAFORM_MODE1_2352:
|
---|
2757 | case VDREGIONDATAFORM_MODE1_0:
|
---|
2758 | u8DataMode = 1;
|
---|
2759 | break;
|
---|
2760 | case VDREGIONDATAFORM_XA_2336:
|
---|
2761 | case VDREGIONDATAFORM_XA_2352:
|
---|
2762 | case VDREGIONDATAFORM_XA_0:
|
---|
2763 | case VDREGIONDATAFORM_MODE2_2336:
|
---|
2764 | case VDREGIONDATAFORM_MODE2_2352:
|
---|
2765 | case VDREGIONDATAFORM_MODE2_0:
|
---|
2766 | u8DataMode = 2;
|
---|
2767 | break;
|
---|
2768 | default:
|
---|
2769 | u8DataMode = 0xf;
|
---|
2770 | }
|
---|
2771 |
|
---|
2772 | if (enmDataForm == VDREGIONDATAFORM_CDDA)
|
---|
2773 | u8TrackMode = 0x0;
|
---|
2774 | else
|
---|
2775 | u8TrackMode = 0x4;
|
---|
2776 |
|
---|
2777 | memset(pbBuf, '\0', 36);
|
---|
2778 | scsiH2BE_U16(pbBuf, 34);
|
---|
2779 | pbBuf[2] = uRegion + 1; /* track number (LSB) */
|
---|
2780 | pbBuf[3] = 1; /* session number (LSB) */
|
---|
2781 | pbBuf[5] = (0 << 5) | (0 << 4) | u8TrackMode; /* not damaged, primary copy, data track */
|
---|
2782 | pbBuf[6] = (0 << 7) | (0 << 6) | (0 << 5) | (0 << 6) | u8DataMode; /* not reserved track, not blank, not packet writing, not fixed packet */
|
---|
2783 | pbBuf[7] = (0 << 1) | (0 << 0); /* last recorded address not valid, next recordable address not valid */
|
---|
2784 | scsiH2BE_U32(pbBuf + 8, (uint32_t)u64LbaStart); /* track start address is 0 */
|
---|
2785 | scsiH2BE_U32(pbBuf + 24, (uint32_t)cBlocks); /* track size */
|
---|
2786 | pbBuf[32] = 0; /* track number (MSB) */
|
---|
2787 | pbBuf[33] = 0; /* session number (MSB) */
|
---|
2788 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
2789 | atapiR3CmdOK(pCtl, s);
|
---|
2790 | return false;
|
---|
2791 | }
|
---|
2792 |
|
---|
2793 | static DECLCALLBACK(uint32_t) atapiR3GetConfigurationFillFeatureListProfiles(PATADEVSTATE s, uint8_t *pbBuf, size_t cbBuf)
|
---|
2794 | {
|
---|
2795 | RT_NOREF(s);
|
---|
2796 | if (cbBuf < 3*4)
|
---|
2797 | return 0;
|
---|
2798 |
|
---|
2799 | scsiH2BE_U16(pbBuf, 0x0); /* feature 0: list of profiles supported */
|
---|
2800 | pbBuf[2] = (0 << 2) | (1 << 1) | (1 << 0); /* version 0, persistent, current */
|
---|
2801 | pbBuf[3] = 8; /* additional bytes for profiles */
|
---|
2802 | /* The MMC-3 spec says that DVD-ROM read capability should be reported
|
---|
2803 | * before CD-ROM read capability. */
|
---|
2804 | scsiH2BE_U16(pbBuf + 4, 0x10); /* profile: read-only DVD */
|
---|
2805 | pbBuf[6] = (0 << 0); /* NOT current profile */
|
---|
2806 | scsiH2BE_U16(pbBuf + 8, 0x08); /* profile: read only CD */
|
---|
2807 | pbBuf[10] = (1 << 0); /* current profile */
|
---|
2808 |
|
---|
2809 | return 3*4; /* Header + 2 profiles entries */
|
---|
2810 | }
|
---|
2811 |
|
---|
2812 | static DECLCALLBACK(uint32_t) atapiR3GetConfigurationFillFeatureCore(PATADEVSTATE s, uint8_t *pbBuf, size_t cbBuf)
|
---|
2813 | {
|
---|
2814 | RT_NOREF(s);
|
---|
2815 | if (cbBuf < 12)
|
---|
2816 | return 0;
|
---|
2817 |
|
---|
2818 | scsiH2BE_U16(pbBuf, 0x1); /* feature 0001h: Core Feature */
|
---|
2819 | pbBuf[2] = (0x2 << 2) | RT_BIT(1) | RT_BIT(0); /* Version | Persistent | Current */
|
---|
2820 | pbBuf[3] = 8; /* Additional length */
|
---|
2821 | scsiH2BE_U16(pbBuf + 4, 0x00000002); /* Physical interface ATAPI. */
|
---|
2822 | pbBuf[8] = RT_BIT(0); /* DBE */
|
---|
2823 | /* Rest is reserved. */
|
---|
2824 |
|
---|
2825 | return 12;
|
---|
2826 | }
|
---|
2827 |
|
---|
2828 | static DECLCALLBACK(uint32_t) atapiR3GetConfigurationFillFeatureMorphing(PATADEVSTATE s, uint8_t *pbBuf, size_t cbBuf)
|
---|
2829 | {
|
---|
2830 | RT_NOREF(s);
|
---|
2831 | if (cbBuf < 8)
|
---|
2832 | return 0;
|
---|
2833 |
|
---|
2834 | scsiH2BE_U16(pbBuf, 0x2); /* feature 0002h: Morphing Feature */
|
---|
2835 | pbBuf[2] = (0x1 << 2) | RT_BIT(1) | RT_BIT(0); /* Version | Persistent | Current */
|
---|
2836 | pbBuf[3] = 4; /* Additional length */
|
---|
2837 | pbBuf[4] = RT_BIT(1) | 0x0; /* OCEvent | !ASYNC */
|
---|
2838 | /* Rest is reserved. */
|
---|
2839 |
|
---|
2840 | return 8;
|
---|
2841 | }
|
---|
2842 |
|
---|
2843 | static DECLCALLBACK(uint32_t) atapiR3GetConfigurationFillFeatureRemovableMedium(PATADEVSTATE s, uint8_t *pbBuf, size_t cbBuf)
|
---|
2844 | {
|
---|
2845 | RT_NOREF(s);
|
---|
2846 | if (cbBuf < 8)
|
---|
2847 | return 0;
|
---|
2848 |
|
---|
2849 | scsiH2BE_U16(pbBuf, 0x3); /* feature 0003h: Removable Medium Feature */
|
---|
2850 | pbBuf[2] = (0x2 << 2) | RT_BIT(1) | RT_BIT(0); /* Version | Persistent | Current */
|
---|
2851 | pbBuf[3] = 4; /* Additional length */
|
---|
2852 | /* Tray type loading | Load | Eject | !Pvnt Jmpr | !DBML | Lock */
|
---|
2853 | pbBuf[4] = (0x2 << 5) | RT_BIT(4) | RT_BIT(3) | (0x0 << 2) | (0x0 << 1) | RT_BIT(0);
|
---|
2854 | /* Rest is reserved. */
|
---|
2855 |
|
---|
2856 | return 8;
|
---|
2857 | }
|
---|
2858 |
|
---|
2859 | static DECLCALLBACK(uint32_t) atapiR3GetConfigurationFillFeatureRandomReadable (PATADEVSTATE s, uint8_t *pbBuf, size_t cbBuf)
|
---|
2860 | {
|
---|
2861 | RT_NOREF(s);
|
---|
2862 | if (cbBuf < 12)
|
---|
2863 | return 0;
|
---|
2864 |
|
---|
2865 | scsiH2BE_U16(pbBuf, 0x10); /* feature 0010h: Random Readable Feature */
|
---|
2866 | pbBuf[2] = (0x0 << 2) | RT_BIT(1) | RT_BIT(0); /* Version | Persistent | Current */
|
---|
2867 | pbBuf[3] = 8; /* Additional length */
|
---|
2868 | scsiH2BE_U32(pbBuf + 4, 2048); /* Logical block size. */
|
---|
2869 | scsiH2BE_U16(pbBuf + 8, 0x10); /* Blocking (0x10 for DVD, CD is not defined). */
|
---|
2870 | pbBuf[10] = 0; /* PP not present */
|
---|
2871 | /* Rest is reserved. */
|
---|
2872 |
|
---|
2873 | return 12;
|
---|
2874 | }
|
---|
2875 |
|
---|
2876 | static DECLCALLBACK(uint32_t) atapiR3GetConfigurationFillFeatureCDRead(PATADEVSTATE s, uint8_t *pbBuf, size_t cbBuf)
|
---|
2877 | {
|
---|
2878 | RT_NOREF(s);
|
---|
2879 | if (cbBuf < 8)
|
---|
2880 | return 0;
|
---|
2881 |
|
---|
2882 | scsiH2BE_U16(pbBuf, 0x1e); /* feature 001Eh: CD Read Feature */
|
---|
2883 | pbBuf[2] = (0x2 << 2) | RT_BIT(1) | RT_BIT(0); /* Version | Persistent | Current */
|
---|
2884 | pbBuf[3] = 0; /* Additional length */
|
---|
2885 | pbBuf[4] = (0x0 << 7) | (0x0 << 1) | 0x0; /* !DAP | !C2-Flags | !CD-Text. */
|
---|
2886 | /* Rest is reserved. */
|
---|
2887 |
|
---|
2888 | return 8;
|
---|
2889 | }
|
---|
2890 |
|
---|
2891 | static DECLCALLBACK(uint32_t) atapiR3GetConfigurationFillFeaturePowerManagement(PATADEVSTATE s, uint8_t *pbBuf, size_t cbBuf)
|
---|
2892 | {
|
---|
2893 | RT_NOREF(s);
|
---|
2894 | if (cbBuf < 4)
|
---|
2895 | return 0;
|
---|
2896 |
|
---|
2897 | scsiH2BE_U16(pbBuf, 0x100); /* feature 0100h: Power Management Feature */
|
---|
2898 | pbBuf[2] = (0x0 << 2) | RT_BIT(1) | RT_BIT(0); /* Version | Persistent | Current */
|
---|
2899 | pbBuf[3] = 0; /* Additional length */
|
---|
2900 |
|
---|
2901 | return 4;
|
---|
2902 | }
|
---|
2903 |
|
---|
2904 | static DECLCALLBACK(uint32_t) atapiR3GetConfigurationFillFeatureTimeout(PATADEVSTATE s, uint8_t *pbBuf, size_t cbBuf)
|
---|
2905 | {
|
---|
2906 | RT_NOREF(s);
|
---|
2907 | if (cbBuf < 8)
|
---|
2908 | return 0;
|
---|
2909 |
|
---|
2910 | scsiH2BE_U16(pbBuf, 0x105); /* feature 0105h: Timeout Feature */
|
---|
2911 | pbBuf[2] = (0x0 << 2) | RT_BIT(1) | RT_BIT(0); /* Version | Persistent | Current */
|
---|
2912 | pbBuf[3] = 4; /* Additional length */
|
---|
2913 | pbBuf[4] = 0x0; /* !Group3 */
|
---|
2914 |
|
---|
2915 | return 8;
|
---|
2916 | }
|
---|
2917 |
|
---|
2918 | /**
|
---|
2919 | * Callback to fill in the correct data for a feature.
|
---|
2920 | *
|
---|
2921 | * @returns Number of bytes written into the buffer.
|
---|
2922 | * @param s The ATA device state.
|
---|
2923 | * @param pbBuf The buffer to fill the data with.
|
---|
2924 | * @param cbBuf Size of the buffer.
|
---|
2925 | */
|
---|
2926 | typedef DECLCALLBACKTYPE(uint32_t, FNATAPIR3FEATUREFILL,(PATADEVSTATE s, uint8_t *pbBuf, size_t cbBuf));
|
---|
2927 | /** Pointer to a feature fill callback. */
|
---|
2928 | typedef FNATAPIR3FEATUREFILL *PFNATAPIR3FEATUREFILL;
|
---|
2929 |
|
---|
2930 | /**
|
---|
2931 | * ATAPI feature descriptor.
|
---|
2932 | */
|
---|
2933 | typedef struct ATAPIR3FEATDESC
|
---|
2934 | {
|
---|
2935 | /** The feature number. */
|
---|
2936 | uint16_t u16Feat;
|
---|
2937 | /** The callback to fill in the correct data. */
|
---|
2938 | PFNATAPIR3FEATUREFILL pfnFeatureFill;
|
---|
2939 | } ATAPIR3FEATDESC;
|
---|
2940 |
|
---|
2941 | /**
|
---|
2942 | * Array of known ATAPI feature descriptors.
|
---|
2943 | */
|
---|
2944 | static const ATAPIR3FEATDESC s_aAtapiR3Features[] =
|
---|
2945 | {
|
---|
2946 | { 0x0000, atapiR3GetConfigurationFillFeatureListProfiles},
|
---|
2947 | { 0x0001, atapiR3GetConfigurationFillFeatureCore},
|
---|
2948 | { 0x0002, atapiR3GetConfigurationFillFeatureMorphing},
|
---|
2949 | { 0x0003, atapiR3GetConfigurationFillFeatureRemovableMedium},
|
---|
2950 | { 0x0010, atapiR3GetConfigurationFillFeatureRandomReadable},
|
---|
2951 | { 0x001e, atapiR3GetConfigurationFillFeatureCDRead},
|
---|
2952 | { 0x0100, atapiR3GetConfigurationFillFeaturePowerManagement},
|
---|
2953 | { 0x0105, atapiR3GetConfigurationFillFeatureTimeout}
|
---|
2954 | };
|
---|
2955 |
|
---|
2956 | /**
|
---|
2957 | * Sink/Source: ATAPI GET CONFIGURATION
|
---|
2958 | */
|
---|
2959 | static bool atapiR3GetConfigurationSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
2960 | {
|
---|
2961 | uint32_t const cbIOBuffer = RT_MIN(s->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE);
|
---|
2962 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
2963 | uint32_t cbBuf = cbIOBuffer;
|
---|
2964 | uint32_t cbCopied = 0;
|
---|
2965 | uint16_t u16Sfn = scsiBE2H_U16(&s->abATAPICmd[2]);
|
---|
2966 | uint8_t u8Rt = s->abATAPICmd[1] & 0x03;
|
---|
2967 | RT_NOREF(pDevIns, pDevR3);
|
---|
2968 |
|
---|
2969 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
2970 | Assert(s->cbElementaryTransfer <= 80);
|
---|
2971 | /* Accept valid request types only. */
|
---|
2972 | if (u8Rt == 3)
|
---|
2973 | {
|
---|
2974 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
2975 | return false;
|
---|
2976 | }
|
---|
2977 | memset(pbBuf, '\0', cbBuf);
|
---|
2978 | /** @todo implement switching between CD-ROM and DVD-ROM profile (the only
|
---|
2979 | * way to differentiate them right now is based on the image size). */
|
---|
2980 | if (s->cTotalSectors)
|
---|
2981 | scsiH2BE_U16(pbBuf + 6, 0x08); /* current profile: read-only CD */
|
---|
2982 | else
|
---|
2983 | scsiH2BE_U16(pbBuf + 6, 0x00); /* current profile: none -> no media */
|
---|
2984 | cbBuf -= 8;
|
---|
2985 | pbBuf += 8;
|
---|
2986 |
|
---|
2987 | if (u8Rt == 0x2)
|
---|
2988 | {
|
---|
2989 | for (uint32_t i = 0; i < RT_ELEMENTS(s_aAtapiR3Features); i++)
|
---|
2990 | {
|
---|
2991 | if (s_aAtapiR3Features[i].u16Feat == u16Sfn)
|
---|
2992 | {
|
---|
2993 | cbCopied = s_aAtapiR3Features[i].pfnFeatureFill(s, pbBuf, cbBuf);
|
---|
2994 | cbBuf -= cbCopied;
|
---|
2995 | pbBuf += cbCopied;
|
---|
2996 | break;
|
---|
2997 | }
|
---|
2998 | }
|
---|
2999 | }
|
---|
3000 | else
|
---|
3001 | {
|
---|
3002 | for (uint32_t i = 0; i < RT_ELEMENTS(s_aAtapiR3Features); i++)
|
---|
3003 | {
|
---|
3004 | if (s_aAtapiR3Features[i].u16Feat > u16Sfn)
|
---|
3005 | {
|
---|
3006 | cbCopied = s_aAtapiR3Features[i].pfnFeatureFill(s, pbBuf, cbBuf);
|
---|
3007 | cbBuf -= cbCopied;
|
---|
3008 | pbBuf += cbCopied;
|
---|
3009 | }
|
---|
3010 | }
|
---|
3011 | }
|
---|
3012 |
|
---|
3013 | /* Set data length now - the field is not included in the final length. */
|
---|
3014 | scsiH2BE_U32(s->abIOBuffer, cbIOBuffer - cbBuf - 4);
|
---|
3015 |
|
---|
3016 | /* Other profiles we might want to add in the future: 0x40 (BD-ROM) and 0x50 (HDDVD-ROM) */
|
---|
3017 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3018 | atapiR3CmdOK(pCtl, s);
|
---|
3019 | return false;
|
---|
3020 | }
|
---|
3021 |
|
---|
3022 |
|
---|
3023 | /**
|
---|
3024 | * Sink/Source: ATAPI GET EVENT STATUS NOTIFICATION
|
---|
3025 | */
|
---|
3026 | static bool atapiR3GetEventStatusNotificationSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3027 | {
|
---|
3028 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
3029 | RT_NOREF(pDevIns, pDevR3);
|
---|
3030 |
|
---|
3031 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
3032 | Assert(s->cbElementaryTransfer <= 8);
|
---|
3033 |
|
---|
3034 | if (!(s->abATAPICmd[1] & 1))
|
---|
3035 | {
|
---|
3036 | /* no asynchronous operation supported */
|
---|
3037 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
3038 | return false;
|
---|
3039 | }
|
---|
3040 |
|
---|
3041 | uint32_t OldStatus, NewStatus;
|
---|
3042 | do
|
---|
3043 | {
|
---|
3044 | OldStatus = ASMAtomicReadU32(&s->MediaEventStatus);
|
---|
3045 | NewStatus = ATA_EVENT_STATUS_UNCHANGED;
|
---|
3046 | switch (OldStatus)
|
---|
3047 | {
|
---|
3048 | case ATA_EVENT_STATUS_MEDIA_NEW:
|
---|
3049 | /* mount */
|
---|
3050 | scsiH2BE_U16(pbBuf + 0, 6);
|
---|
3051 | pbBuf[2] = 0x04; /* media */
|
---|
3052 | pbBuf[3] = 0x5e; /* supported = busy|media|external|power|operational */
|
---|
3053 | pbBuf[4] = 0x02; /* new medium */
|
---|
3054 | pbBuf[5] = 0x02; /* medium present / door closed */
|
---|
3055 | pbBuf[6] = 0x00;
|
---|
3056 | pbBuf[7] = 0x00;
|
---|
3057 | break;
|
---|
3058 |
|
---|
3059 | case ATA_EVENT_STATUS_MEDIA_CHANGED:
|
---|
3060 | case ATA_EVENT_STATUS_MEDIA_REMOVED:
|
---|
3061 | /* umount */
|
---|
3062 | scsiH2BE_U16(pbBuf + 0, 6);
|
---|
3063 | pbBuf[2] = 0x04; /* media */
|
---|
3064 | pbBuf[3] = 0x5e; /* supported = busy|media|external|power|operational */
|
---|
3065 | pbBuf[4] = OldStatus == ATA_EVENT_STATUS_MEDIA_CHANGED ? 0x04 /* media changed */ : 0x03; /* media removed */
|
---|
3066 | pbBuf[5] = 0x00; /* medium absent / door closed */
|
---|
3067 | pbBuf[6] = 0x00;
|
---|
3068 | pbBuf[7] = 0x00;
|
---|
3069 | if (OldStatus == ATA_EVENT_STATUS_MEDIA_CHANGED)
|
---|
3070 | NewStatus = ATA_EVENT_STATUS_MEDIA_NEW;
|
---|
3071 | break;
|
---|
3072 |
|
---|
3073 | case ATA_EVENT_STATUS_MEDIA_EJECT_REQUESTED: /* currently unused */
|
---|
3074 | scsiH2BE_U16(pbBuf + 0, 6);
|
---|
3075 | pbBuf[2] = 0x04; /* media */
|
---|
3076 | pbBuf[3] = 0x5e; /* supported = busy|media|external|power|operational */
|
---|
3077 | pbBuf[4] = 0x01; /* eject requested (eject button pressed) */
|
---|
3078 | pbBuf[5] = 0x02; /* medium present / door closed */
|
---|
3079 | pbBuf[6] = 0x00;
|
---|
3080 | pbBuf[7] = 0x00;
|
---|
3081 | break;
|
---|
3082 |
|
---|
3083 | case ATA_EVENT_STATUS_UNCHANGED:
|
---|
3084 | default:
|
---|
3085 | scsiH2BE_U16(pbBuf + 0, 6);
|
---|
3086 | pbBuf[2] = 0x01; /* operational change request / notification */
|
---|
3087 | pbBuf[3] = 0x5e; /* supported = busy|media|external|power|operational */
|
---|
3088 | pbBuf[4] = 0x00;
|
---|
3089 | pbBuf[5] = 0x00;
|
---|
3090 | pbBuf[6] = 0x00;
|
---|
3091 | pbBuf[7] = 0x00;
|
---|
3092 | break;
|
---|
3093 | }
|
---|
3094 | } while (!ASMAtomicCmpXchgU32(&s->MediaEventStatus, NewStatus, OldStatus));
|
---|
3095 |
|
---|
3096 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3097 | atapiR3CmdOK(pCtl, s);
|
---|
3098 | return false;
|
---|
3099 | }
|
---|
3100 |
|
---|
3101 |
|
---|
3102 | /**
|
---|
3103 | * Sink/Source: ATAPI INQUIRY
|
---|
3104 | */
|
---|
3105 | static bool atapiR3InquirySS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3106 | {
|
---|
3107 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
3108 | RT_NOREF(pDevIns, pDevR3);
|
---|
3109 |
|
---|
3110 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
3111 | Assert(s->cbElementaryTransfer <= 36);
|
---|
3112 | pbBuf[0] = 0x05; /* CD-ROM */
|
---|
3113 | pbBuf[1] = 0x80; /* removable */
|
---|
3114 | # if 1/*ndef VBOX*/ /** @todo implement MESN + AENC. (async notification on removal and stuff.) */
|
---|
3115 | pbBuf[2] = 0x00; /* ISO */
|
---|
3116 | pbBuf[3] = 0x21; /* ATAPI-2 (XXX: put ATAPI-4 ?) */
|
---|
3117 | # else
|
---|
3118 | pbBuf[2] = 0x00; /* ISO */
|
---|
3119 | pbBuf[3] = 0x91; /* format 1, MESN=1, AENC=9 ??? */
|
---|
3120 | # endif
|
---|
3121 | pbBuf[4] = 31; /* additional length */
|
---|
3122 | pbBuf[5] = 0; /* reserved */
|
---|
3123 | pbBuf[6] = 0; /* reserved */
|
---|
3124 | pbBuf[7] = 0; /* reserved */
|
---|
3125 | scsiPadStr(pbBuf + 8, s->szInquiryVendorId, 8);
|
---|
3126 | scsiPadStr(pbBuf + 16, s->szInquiryProductId, 16);
|
---|
3127 | scsiPadStr(pbBuf + 32, s->szInquiryRevision, 4);
|
---|
3128 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3129 | atapiR3CmdOK(pCtl, s);
|
---|
3130 | return false;
|
---|
3131 | }
|
---|
3132 |
|
---|
3133 |
|
---|
3134 | /**
|
---|
3135 | * Sink/Source: ATAPI MODE SENSE ERROR RECOVERY
|
---|
3136 | */
|
---|
3137 | static bool atapiR3ModeSenseErrorRecoverySS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3138 | {
|
---|
3139 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
3140 | RT_NOREF(pDevIns, pDevR3);
|
---|
3141 |
|
---|
3142 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
3143 | Assert(s->cbElementaryTransfer <= 16);
|
---|
3144 | scsiH2BE_U16(&pbBuf[0], 16 + 6);
|
---|
3145 | pbBuf[2] = (uint8_t)s->MediaTrackType;
|
---|
3146 | pbBuf[3] = 0;
|
---|
3147 | pbBuf[4] = 0;
|
---|
3148 | pbBuf[5] = 0;
|
---|
3149 | pbBuf[6] = 0;
|
---|
3150 | pbBuf[7] = 0;
|
---|
3151 |
|
---|
3152 | pbBuf[8] = 0x01;
|
---|
3153 | pbBuf[9] = 0x06;
|
---|
3154 | pbBuf[10] = 0x00; /* Maximum error recovery */
|
---|
3155 | pbBuf[11] = 0x05; /* 5 retries */
|
---|
3156 | pbBuf[12] = 0x00;
|
---|
3157 | pbBuf[13] = 0x00;
|
---|
3158 | pbBuf[14] = 0x00;
|
---|
3159 | pbBuf[15] = 0x00;
|
---|
3160 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3161 | atapiR3CmdOK(pCtl, s);
|
---|
3162 | return false;
|
---|
3163 | }
|
---|
3164 |
|
---|
3165 |
|
---|
3166 | /**
|
---|
3167 | * Sink/Source: ATAPI MODE SENSE CD STATUS
|
---|
3168 | */
|
---|
3169 | static bool atapiR3ModeSenseCDStatusSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3170 | {
|
---|
3171 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
3172 | RT_NOREF(pDevIns);
|
---|
3173 |
|
---|
3174 | /* 28 bytes of total returned data corresponds to ATAPI 2.6. Note that at least some versions
|
---|
3175 | * of NEC_IDE.SYS DOS driver (possibly other Oak Technology OTI-011 drivers) do not correctly
|
---|
3176 | * handle cases where more than 28 bytes are returned due to bugs. See @bugref{5869}.
|
---|
3177 | */
|
---|
3178 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
3179 | Assert(s->cbElementaryTransfer <= 28);
|
---|
3180 | scsiH2BE_U16(&pbBuf[0], 26);
|
---|
3181 | pbBuf[2] = (uint8_t)s->MediaTrackType;
|
---|
3182 | pbBuf[3] = 0;
|
---|
3183 | pbBuf[4] = 0;
|
---|
3184 | pbBuf[5] = 0;
|
---|
3185 | pbBuf[6] = 0;
|
---|
3186 | pbBuf[7] = 0;
|
---|
3187 |
|
---|
3188 | pbBuf[8] = 0x2a;
|
---|
3189 | pbBuf[9] = 18; /* page length */
|
---|
3190 | pbBuf[10] = 0x08; /* DVD-ROM read support */
|
---|
3191 | pbBuf[11] = 0x00; /* no write support */
|
---|
3192 | /* The following claims we support audio play. This is obviously false,
|
---|
3193 | * but the Linux generic CDROM support makes many features depend on this
|
---|
3194 | * capability. If it's not set, this causes many things to be disabled. */
|
---|
3195 | pbBuf[12] = 0x71; /* multisession support, mode 2 form 1/2 support, audio play */
|
---|
3196 | pbBuf[13] = 0x00; /* no subchannel reads supported */
|
---|
3197 | pbBuf[14] = (1 << 0) | (1 << 3) | (1 << 5); /* lock supported, eject supported, tray type loading mechanism */
|
---|
3198 | if (pDevR3->pDrvMount && pDevR3->pDrvMount->pfnIsLocked(pDevR3->pDrvMount))
|
---|
3199 | pbBuf[14] |= 1 << 1; /* report lock state */
|
---|
3200 | pbBuf[15] = 0; /* no subchannel reads supported, no separate audio volume control, no changer etc. */
|
---|
3201 | scsiH2BE_U16(&pbBuf[16], 5632); /* (obsolete) claim 32x speed support */
|
---|
3202 | scsiH2BE_U16(&pbBuf[18], 2); /* number of audio volume levels */
|
---|
3203 | scsiH2BE_U16(&pbBuf[20], RT_MIN(s->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE) / _1K); /* buffer size supported in Kbyte */
|
---|
3204 | scsiH2BE_U16(&pbBuf[22], 5632); /* (obsolete) current read speed 32x */
|
---|
3205 | pbBuf[24] = 0; /* reserved */
|
---|
3206 | pbBuf[25] = 0; /* reserved for digital audio (see idx 15) */
|
---|
3207 | pbBuf[26] = 0; /* reserved */
|
---|
3208 | pbBuf[27] = 0; /* reserved */
|
---|
3209 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3210 | atapiR3CmdOK(pCtl, s);
|
---|
3211 | return false;
|
---|
3212 | }
|
---|
3213 |
|
---|
3214 |
|
---|
3215 | /**
|
---|
3216 | * Sink/Source: ATAPI REQUEST SENSE
|
---|
3217 | */
|
---|
3218 | static bool atapiR3RequestSenseSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3219 | {
|
---|
3220 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
3221 | RT_NOREF(pDevIns, pDevR3);
|
---|
3222 |
|
---|
3223 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
3224 | memset(pbBuf, '\0', RT_MIN(s->cbElementaryTransfer, sizeof(s->abIOBuffer)));
|
---|
3225 | AssertCompile(sizeof(s->abIOBuffer) >= sizeof(s->abATAPISense));
|
---|
3226 | memcpy(pbBuf, s->abATAPISense, RT_MIN(s->cbElementaryTransfer, sizeof(s->abATAPISense)));
|
---|
3227 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3228 | atapiR3CmdOK(pCtl, s);
|
---|
3229 | return false;
|
---|
3230 | }
|
---|
3231 |
|
---|
3232 |
|
---|
3233 | /**
|
---|
3234 | * Sink/Source: ATAPI MECHANISM STATUS
|
---|
3235 | */
|
---|
3236 | static bool atapiR3MechanismStatusSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3237 | {
|
---|
3238 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
3239 | RT_NOREF(pDevIns, pDevR3);
|
---|
3240 |
|
---|
3241 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
3242 | Assert(s->cbElementaryTransfer <= 8);
|
---|
3243 | scsiH2BE_U16(pbBuf, 0);
|
---|
3244 | /* no current LBA */
|
---|
3245 | pbBuf[2] = 0;
|
---|
3246 | pbBuf[3] = 0;
|
---|
3247 | pbBuf[4] = 0;
|
---|
3248 | pbBuf[5] = 1;
|
---|
3249 | scsiH2BE_U16(pbBuf + 6, 0);
|
---|
3250 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3251 | atapiR3CmdOK(pCtl, s);
|
---|
3252 | return false;
|
---|
3253 | }
|
---|
3254 |
|
---|
3255 |
|
---|
3256 | /**
|
---|
3257 | * Sink/Source: ATAPI READ TOC NORMAL
|
---|
3258 | */
|
---|
3259 | static bool atapiR3ReadTOCNormalSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3260 | {
|
---|
3261 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
3262 | uint8_t *q;
|
---|
3263 | uint8_t iStartTrack;
|
---|
3264 | bool fMSF;
|
---|
3265 | uint32_t cbSize;
|
---|
3266 | RT_NOREF(pDevIns);
|
---|
3267 |
|
---|
3268 | /* Track fields are 8-bit and 1-based, so cut the track count at 255,
|
---|
3269 | avoiding any potential buffer overflow issues below. */
|
---|
3270 | uint32_t cTracks = pDevR3->pDrvMedia->pfnGetRegionCount(pDevR3->pDrvMedia);
|
---|
3271 | AssertStmt(cTracks <= UINT8_MAX, cTracks = UINT8_MAX);
|
---|
3272 | AssertCompile(sizeof(s->abIOBuffer) >= 2 + 256 + 8);
|
---|
3273 |
|
---|
3274 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
3275 | fMSF = (s->abATAPICmd[1] >> 1) & 1;
|
---|
3276 | iStartTrack = s->abATAPICmd[6];
|
---|
3277 | if (iStartTrack == 0)
|
---|
3278 | iStartTrack = 1;
|
---|
3279 |
|
---|
3280 | if (iStartTrack > cTracks && iStartTrack != 0xaa)
|
---|
3281 | {
|
---|
3282 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
3283 | return false;
|
---|
3284 | }
|
---|
3285 | q = pbBuf + 2;
|
---|
3286 | *q++ = iStartTrack; /* first track number */
|
---|
3287 | *q++ = cTracks; /* last track number */
|
---|
3288 | for (uint32_t iTrack = iStartTrack; iTrack <= cTracks; iTrack++)
|
---|
3289 | {
|
---|
3290 | uint64_t uLbaStart = 0;
|
---|
3291 | VDREGIONDATAFORM enmDataForm = VDREGIONDATAFORM_MODE1_2048;
|
---|
3292 |
|
---|
3293 | int rc = pDevR3->pDrvMedia->pfnQueryRegionProperties(pDevR3->pDrvMedia, iTrack - 1, &uLbaStart,
|
---|
3294 | NULL, NULL, &enmDataForm);
|
---|
3295 | AssertRC(rc);
|
---|
3296 |
|
---|
3297 | *q++ = 0; /* reserved */
|
---|
3298 |
|
---|
3299 | if (enmDataForm == VDREGIONDATAFORM_CDDA)
|
---|
3300 | *q++ = 0x10; /* ADR, control */
|
---|
3301 | else
|
---|
3302 | *q++ = 0x14; /* ADR, control */
|
---|
3303 |
|
---|
3304 | *q++ = (uint8_t)iTrack; /* track number */
|
---|
3305 | *q++ = 0; /* reserved */
|
---|
3306 | if (fMSF)
|
---|
3307 | {
|
---|
3308 | *q++ = 0; /* reserved */
|
---|
3309 | scsiLBA2MSF(q, (uint32_t)uLbaStart);
|
---|
3310 | q += 3;
|
---|
3311 | }
|
---|
3312 | else
|
---|
3313 | {
|
---|
3314 | /* sector 0 */
|
---|
3315 | scsiH2BE_U32(q, (uint32_t)uLbaStart);
|
---|
3316 | q += 4;
|
---|
3317 | }
|
---|
3318 | }
|
---|
3319 | /* lead out track */
|
---|
3320 | *q++ = 0; /* reserved */
|
---|
3321 | *q++ = 0x14; /* ADR, control */
|
---|
3322 | *q++ = 0xaa; /* track number */
|
---|
3323 | *q++ = 0; /* reserved */
|
---|
3324 |
|
---|
3325 | /* Query start and length of last track to get the start of the lead out track. */
|
---|
3326 | uint64_t uLbaStart = 0;
|
---|
3327 | uint64_t cBlocks = 0;
|
---|
3328 |
|
---|
3329 | int rc = pDevR3->pDrvMedia->pfnQueryRegionProperties(pDevR3->pDrvMedia, cTracks - 1, &uLbaStart,
|
---|
3330 | &cBlocks, NULL, NULL);
|
---|
3331 | AssertRC(rc);
|
---|
3332 |
|
---|
3333 | uLbaStart += cBlocks;
|
---|
3334 | if (fMSF)
|
---|
3335 | {
|
---|
3336 | *q++ = 0; /* reserved */
|
---|
3337 | scsiLBA2MSF(q, (uint32_t)uLbaStart);
|
---|
3338 | q += 3;
|
---|
3339 | }
|
---|
3340 | else
|
---|
3341 | {
|
---|
3342 | scsiH2BE_U32(q, (uint32_t)uLbaStart);
|
---|
3343 | q += 4;
|
---|
3344 | }
|
---|
3345 | cbSize = q - pbBuf;
|
---|
3346 | scsiH2BE_U16(pbBuf, cbSize - 2);
|
---|
3347 | if (cbSize < s->cbTotalTransfer)
|
---|
3348 | s->cbTotalTransfer = cbSize;
|
---|
3349 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3350 | atapiR3CmdOK(pCtl, s);
|
---|
3351 | return false;
|
---|
3352 | }
|
---|
3353 |
|
---|
3354 |
|
---|
3355 | /**
|
---|
3356 | * Sink/Source: ATAPI READ TOC MULTI
|
---|
3357 | */
|
---|
3358 | static bool atapiR3ReadTOCMultiSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3359 | {
|
---|
3360 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
3361 | bool fMSF;
|
---|
3362 | RT_NOREF(pDevIns);
|
---|
3363 |
|
---|
3364 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
3365 | Assert(s->cbElementaryTransfer <= 12);
|
---|
3366 | fMSF = (s->abATAPICmd[1] >> 1) & 1;
|
---|
3367 | /* multi session: only a single session defined */
|
---|
3368 | /** @todo double-check this stuff against what a real drive says for a CD-ROM (not a CD-R)
|
---|
3369 | * with only a single data session. Maybe solve the problem with "cdrdao read-toc" not being
|
---|
3370 | * able to figure out whether numbers are in BCD or hex. */
|
---|
3371 | memset(pbBuf, 0, 12);
|
---|
3372 | pbBuf[1] = 0x0a;
|
---|
3373 | pbBuf[2] = 0x01;
|
---|
3374 | pbBuf[3] = 0x01;
|
---|
3375 |
|
---|
3376 | VDREGIONDATAFORM enmDataForm = VDREGIONDATAFORM_MODE1_2048;
|
---|
3377 | int rc = pDevR3->pDrvMedia->pfnQueryRegionProperties(pDevR3->pDrvMedia, 0, NULL, NULL, NULL, &enmDataForm);
|
---|
3378 | AssertRC(rc);
|
---|
3379 |
|
---|
3380 | if (enmDataForm == VDREGIONDATAFORM_CDDA)
|
---|
3381 | pbBuf[5] = 0x10; /* ADR, control */
|
---|
3382 | else
|
---|
3383 | pbBuf[5] = 0x14; /* ADR, control */
|
---|
3384 |
|
---|
3385 | pbBuf[6] = 1; /* first track in last complete session */
|
---|
3386 | if (fMSF)
|
---|
3387 | {
|
---|
3388 | pbBuf[8] = 0; /* reserved */
|
---|
3389 | scsiLBA2MSF(&pbBuf[9], 0);
|
---|
3390 | }
|
---|
3391 | else
|
---|
3392 | {
|
---|
3393 | /* sector 0 */
|
---|
3394 | scsiH2BE_U32(pbBuf + 8, 0);
|
---|
3395 | }
|
---|
3396 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3397 | atapiR3CmdOK(pCtl, s);
|
---|
3398 | return false;
|
---|
3399 | }
|
---|
3400 |
|
---|
3401 |
|
---|
3402 | /**
|
---|
3403 | * Sink/Source: ATAPI READ TOC RAW
|
---|
3404 | */
|
---|
3405 | static bool atapiR3ReadTOCRawSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3406 | {
|
---|
3407 | uint8_t *pbBuf = s->abIOBuffer;
|
---|
3408 | uint8_t *q;
|
---|
3409 | uint8_t iStartTrack;
|
---|
3410 | bool fMSF;
|
---|
3411 | uint32_t cbSize;
|
---|
3412 | RT_NOREF(pDevIns, pDevR3);
|
---|
3413 |
|
---|
3414 | Assert(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE);
|
---|
3415 | fMSF = (s->abATAPICmd[1] >> 1) & 1;
|
---|
3416 | iStartTrack = s->abATAPICmd[6];
|
---|
3417 |
|
---|
3418 | q = pbBuf + 2;
|
---|
3419 | *q++ = 1; /* first session */
|
---|
3420 | *q++ = 1; /* last session */
|
---|
3421 |
|
---|
3422 | *q++ = 1; /* session number */
|
---|
3423 | *q++ = 0x14; /* data track */
|
---|
3424 | *q++ = 0; /* track number */
|
---|
3425 | *q++ = 0xa0; /* first track in program area */
|
---|
3426 | *q++ = 0; /* min */
|
---|
3427 | *q++ = 0; /* sec */
|
---|
3428 | *q++ = 0; /* frame */
|
---|
3429 | *q++ = 0;
|
---|
3430 | *q++ = 1; /* first track */
|
---|
3431 | *q++ = 0x00; /* disk type CD-DA or CD data */
|
---|
3432 | *q++ = 0;
|
---|
3433 |
|
---|
3434 | *q++ = 1; /* session number */
|
---|
3435 | *q++ = 0x14; /* data track */
|
---|
3436 | *q++ = 0; /* track number */
|
---|
3437 | *q++ = 0xa1; /* last track in program area */
|
---|
3438 | *q++ = 0; /* min */
|
---|
3439 | *q++ = 0; /* sec */
|
---|
3440 | *q++ = 0; /* frame */
|
---|
3441 | *q++ = 0;
|
---|
3442 | *q++ = 1; /* last track */
|
---|
3443 | *q++ = 0;
|
---|
3444 | *q++ = 0;
|
---|
3445 |
|
---|
3446 | *q++ = 1; /* session number */
|
---|
3447 | *q++ = 0x14; /* data track */
|
---|
3448 | *q++ = 0; /* track number */
|
---|
3449 | *q++ = 0xa2; /* lead-out */
|
---|
3450 | *q++ = 0; /* min */
|
---|
3451 | *q++ = 0; /* sec */
|
---|
3452 | *q++ = 0; /* frame */
|
---|
3453 | if (fMSF)
|
---|
3454 | {
|
---|
3455 | *q++ = 0; /* reserved */
|
---|
3456 | scsiLBA2MSF(q, s->cTotalSectors);
|
---|
3457 | q += 3;
|
---|
3458 | }
|
---|
3459 | else
|
---|
3460 | {
|
---|
3461 | scsiH2BE_U32(q, s->cTotalSectors);
|
---|
3462 | q += 4;
|
---|
3463 | }
|
---|
3464 |
|
---|
3465 | *q++ = 1; /* session number */
|
---|
3466 | *q++ = 0x14; /* ADR, control */
|
---|
3467 | *q++ = 0; /* track number */
|
---|
3468 | *q++ = 1; /* point */
|
---|
3469 | *q++ = 0; /* min */
|
---|
3470 | *q++ = 0; /* sec */
|
---|
3471 | *q++ = 0; /* frame */
|
---|
3472 | if (fMSF)
|
---|
3473 | {
|
---|
3474 | *q++ = 0; /* reserved */
|
---|
3475 | scsiLBA2MSF(q, 0);
|
---|
3476 | q += 3;
|
---|
3477 | }
|
---|
3478 | else
|
---|
3479 | {
|
---|
3480 | /* sector 0 */
|
---|
3481 | scsiH2BE_U32(q, 0);
|
---|
3482 | q += 4;
|
---|
3483 | }
|
---|
3484 |
|
---|
3485 | cbSize = q - pbBuf;
|
---|
3486 | scsiH2BE_U16(pbBuf, cbSize - 2);
|
---|
3487 | if (cbSize < s->cbTotalTransfer)
|
---|
3488 | s->cbTotalTransfer = cbSize;
|
---|
3489 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3490 | atapiR3CmdOK(pCtl, s);
|
---|
3491 | return false;
|
---|
3492 | }
|
---|
3493 |
|
---|
3494 |
|
---|
3495 | static void atapiR3ParseCmdVirtualATAPI(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3496 | {
|
---|
3497 | const uint8_t *pbPacket = s->abATAPICmd;
|
---|
3498 | uint32_t cbMax;
|
---|
3499 | uint32_t cSectors, iATAPILBA;
|
---|
3500 |
|
---|
3501 | switch (pbPacket[0])
|
---|
3502 | {
|
---|
3503 | case SCSI_TEST_UNIT_READY:
|
---|
3504 | if (s->cNotifiedMediaChange > 0)
|
---|
3505 | {
|
---|
3506 | if (s->cNotifiedMediaChange-- > 2)
|
---|
3507 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3508 | else
|
---|
3509 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_UNIT_ATTENTION, SCSI_ASC_MEDIUM_MAY_HAVE_CHANGED); /* media changed */
|
---|
3510 | }
|
---|
3511 | else
|
---|
3512 | {
|
---|
3513 | PPDMIMOUNT const pDrvMount = pDevR3->pDrvMount;
|
---|
3514 | if (pDrvMount && pDrvMount->pfnIsMounted(pDrvMount))
|
---|
3515 | atapiR3CmdOK(pCtl, s);
|
---|
3516 | else
|
---|
3517 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3518 | }
|
---|
3519 | break;
|
---|
3520 | case SCSI_GET_EVENT_STATUS_NOTIFICATION:
|
---|
3521 | cbMax = scsiBE2H_U16(pbPacket + 7);
|
---|
3522 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 8), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_GET_EVENT_STATUS_NOTIFICATION, true);
|
---|
3523 | break;
|
---|
3524 | case SCSI_MODE_SENSE_10:
|
---|
3525 | {
|
---|
3526 | uint8_t uPageControl, uPageCode;
|
---|
3527 | cbMax = scsiBE2H_U16(pbPacket + 7);
|
---|
3528 | uPageControl = pbPacket[2] >> 6;
|
---|
3529 | uPageCode = pbPacket[2] & 0x3f;
|
---|
3530 | switch (uPageControl)
|
---|
3531 | {
|
---|
3532 | case SCSI_PAGECONTROL_CURRENT:
|
---|
3533 | switch (uPageCode)
|
---|
3534 | {
|
---|
3535 | case SCSI_MODEPAGE_ERROR_RECOVERY:
|
---|
3536 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 16), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_MODE_SENSE_ERROR_RECOVERY, true);
|
---|
3537 | break;
|
---|
3538 | case SCSI_MODEPAGE_CD_STATUS:
|
---|
3539 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 28), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_MODE_SENSE_CD_STATUS, true);
|
---|
3540 | break;
|
---|
3541 | default:
|
---|
3542 | goto error_cmd;
|
---|
3543 | }
|
---|
3544 | break;
|
---|
3545 | case SCSI_PAGECONTROL_CHANGEABLE:
|
---|
3546 | goto error_cmd;
|
---|
3547 | case SCSI_PAGECONTROL_DEFAULT:
|
---|
3548 | goto error_cmd;
|
---|
3549 | default:
|
---|
3550 | case SCSI_PAGECONTROL_SAVED:
|
---|
3551 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_SAVING_PARAMETERS_NOT_SUPPORTED);
|
---|
3552 | break;
|
---|
3553 | }
|
---|
3554 | break;
|
---|
3555 | }
|
---|
3556 | case SCSI_REQUEST_SENSE:
|
---|
3557 | cbMax = pbPacket[4];
|
---|
3558 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 18), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_REQUEST_SENSE, true);
|
---|
3559 | break;
|
---|
3560 | case SCSI_PREVENT_ALLOW_MEDIUM_REMOVAL:
|
---|
3561 | {
|
---|
3562 | PPDMIMOUNT const pDrvMount = pDevR3->pDrvMount;
|
---|
3563 | if (pDrvMount && pDrvMount->pfnIsMounted(pDrvMount))
|
---|
3564 | {
|
---|
3565 | if (pbPacket[4] & 1)
|
---|
3566 | pDrvMount->pfnLock(pDrvMount);
|
---|
3567 | else
|
---|
3568 | pDrvMount->pfnUnlock(pDrvMount);
|
---|
3569 | atapiR3CmdOK(pCtl, s);
|
---|
3570 | }
|
---|
3571 | else
|
---|
3572 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3573 | break;
|
---|
3574 | }
|
---|
3575 | case SCSI_READ_10:
|
---|
3576 | case SCSI_READ_12:
|
---|
3577 | {
|
---|
3578 | if (s->cNotifiedMediaChange > 0)
|
---|
3579 | {
|
---|
3580 | s->cNotifiedMediaChange-- ;
|
---|
3581 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_UNIT_ATTENTION, SCSI_ASC_MEDIUM_MAY_HAVE_CHANGED); /* media changed */
|
---|
3582 | break;
|
---|
3583 | }
|
---|
3584 | if (!pDevR3->pDrvMount || !pDevR3->pDrvMount->pfnIsMounted(pDevR3->pDrvMount))
|
---|
3585 | {
|
---|
3586 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3587 | break;
|
---|
3588 | }
|
---|
3589 | if (pbPacket[0] == SCSI_READ_10)
|
---|
3590 | cSectors = scsiBE2H_U16(pbPacket + 7);
|
---|
3591 | else
|
---|
3592 | cSectors = scsiBE2H_U32(pbPacket + 6);
|
---|
3593 | iATAPILBA = scsiBE2H_U32(pbPacket + 2);
|
---|
3594 |
|
---|
3595 | if (cSectors == 0)
|
---|
3596 | {
|
---|
3597 | atapiR3CmdOK(pCtl, s);
|
---|
3598 | break;
|
---|
3599 | }
|
---|
3600 |
|
---|
3601 | /* Check that the sector size is valid. */
|
---|
3602 | VDREGIONDATAFORM enmDataForm = VDREGIONDATAFORM_INVALID;
|
---|
3603 | int rc = pDevR3->pDrvMedia->pfnQueryRegionPropertiesForLba(pDevR3->pDrvMedia, iATAPILBA,
|
---|
3604 | NULL, NULL, NULL, &enmDataForm);
|
---|
3605 | if (RT_UNLIKELY( rc == VERR_NOT_FOUND
|
---|
3606 | || ((uint64_t)iATAPILBA + cSectors > s->cTotalSectors)))
|
---|
3607 | {
|
---|
3608 | /* Rate limited logging, one log line per second. For
|
---|
3609 | * guests that insist on reading from places outside the
|
---|
3610 | * valid area this often generates too many release log
|
---|
3611 | * entries otherwise. */
|
---|
3612 | static uint64_t uLastLogTS = 0;
|
---|
3613 | if (RTTimeMilliTS() >= uLastLogTS + 1000)
|
---|
3614 | {
|
---|
3615 | LogRel(("PIIX3 ATA: LUN#%d: CD-ROM block number %Ld invalid (READ)\n", s->iLUN, (uint64_t)iATAPILBA + cSectors));
|
---|
3616 | uLastLogTS = RTTimeMilliTS();
|
---|
3617 | }
|
---|
3618 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_LOGICAL_BLOCK_OOR);
|
---|
3619 | break;
|
---|
3620 | }
|
---|
3621 | else if ( enmDataForm != VDREGIONDATAFORM_MODE1_2048
|
---|
3622 | && enmDataForm != VDREGIONDATAFORM_MODE1_2352
|
---|
3623 | && enmDataForm != VDREGIONDATAFORM_MODE2_2336
|
---|
3624 | && enmDataForm != VDREGIONDATAFORM_MODE2_2352
|
---|
3625 | && enmDataForm != VDREGIONDATAFORM_RAW)
|
---|
3626 | {
|
---|
3627 | uint8_t abATAPISense[ATAPI_SENSE_SIZE];
|
---|
3628 | RT_ZERO(abATAPISense);
|
---|
3629 |
|
---|
3630 | abATAPISense[0] = 0x70 | (1 << 7);
|
---|
3631 | abATAPISense[2] = (SCSI_SENSE_ILLEGAL_REQUEST & 0x0f) | SCSI_SENSE_FLAG_ILI;
|
---|
3632 | scsiH2BE_U32(&abATAPISense[3], iATAPILBA);
|
---|
3633 | abATAPISense[7] = 10;
|
---|
3634 | abATAPISense[12] = SCSI_ASC_ILLEGAL_MODE_FOR_THIS_TRACK;
|
---|
3635 | atapiR3CmdError(pCtl, s, &abATAPISense[0], sizeof(abATAPISense));
|
---|
3636 | break;
|
---|
3637 | }
|
---|
3638 | atapiR3ReadSectors(pDevIns, pCtl, s, iATAPILBA, cSectors, 2048);
|
---|
3639 | break;
|
---|
3640 | }
|
---|
3641 | case SCSI_READ_CD_MSF:
|
---|
3642 | case SCSI_READ_CD:
|
---|
3643 | {
|
---|
3644 | if (s->cNotifiedMediaChange > 0)
|
---|
3645 | {
|
---|
3646 | s->cNotifiedMediaChange-- ;
|
---|
3647 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_UNIT_ATTENTION, SCSI_ASC_MEDIUM_MAY_HAVE_CHANGED); /* media changed */
|
---|
3648 | break;
|
---|
3649 | }
|
---|
3650 | if (!pDevR3->pDrvMount || !pDevR3->pDrvMount->pfnIsMounted(pDevR3->pDrvMount))
|
---|
3651 | {
|
---|
3652 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3653 | break;
|
---|
3654 | }
|
---|
3655 | if ((pbPacket[10] & 0x7) != 0)
|
---|
3656 | {
|
---|
3657 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
3658 | break;
|
---|
3659 | }
|
---|
3660 | if (pbPacket[0] == SCSI_READ_CD)
|
---|
3661 | {
|
---|
3662 | cSectors = (pbPacket[6] << 16) | (pbPacket[7] << 8) | pbPacket[8];
|
---|
3663 | iATAPILBA = scsiBE2H_U32(pbPacket + 2);
|
---|
3664 | }
|
---|
3665 | else /* READ CD MSF */
|
---|
3666 | {
|
---|
3667 | iATAPILBA = scsiMSF2LBA(pbPacket + 3);
|
---|
3668 | if (iATAPILBA > scsiMSF2LBA(pbPacket + 6))
|
---|
3669 | {
|
---|
3670 | Log2(("Start MSF %02u:%02u:%02u > end MSF %02u:%02u:%02u!\n", *(pbPacket + 3), *(pbPacket + 4), *(pbPacket + 5),
|
---|
3671 | *(pbPacket + 6), *(pbPacket + 7), *(pbPacket + 8)));
|
---|
3672 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
3673 | break;
|
---|
3674 | }
|
---|
3675 | cSectors = scsiMSF2LBA(pbPacket + 6) - iATAPILBA;
|
---|
3676 | Log2(("Start MSF %02u:%02u:%02u -> LBA %u\n", *(pbPacket + 3), *(pbPacket + 4), *(pbPacket + 5), iATAPILBA));
|
---|
3677 | Log2(("End MSF %02u:%02u:%02u -> %u sectors\n", *(pbPacket + 6), *(pbPacket + 7), *(pbPacket + 8), cSectors));
|
---|
3678 | }
|
---|
3679 | if (cSectors == 0)
|
---|
3680 | {
|
---|
3681 | atapiR3CmdOK(pCtl, s);
|
---|
3682 | break;
|
---|
3683 | }
|
---|
3684 | if ((uint64_t)iATAPILBA + cSectors > s->cTotalSectors)
|
---|
3685 | {
|
---|
3686 | /* Rate limited logging, one log line per second. For
|
---|
3687 | * guests that insist on reading from places outside the
|
---|
3688 | * valid area this often generates too many release log
|
---|
3689 | * entries otherwise. */
|
---|
3690 | static uint64_t uLastLogTS = 0;
|
---|
3691 | if (RTTimeMilliTS() >= uLastLogTS + 1000)
|
---|
3692 | {
|
---|
3693 | LogRel(("PIIX3 ATA: LUN#%d: CD-ROM block number %Ld invalid (READ CD)\n", s->iLUN, (uint64_t)iATAPILBA + cSectors));
|
---|
3694 | uLastLogTS = RTTimeMilliTS();
|
---|
3695 | }
|
---|
3696 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_LOGICAL_BLOCK_OOR);
|
---|
3697 | break;
|
---|
3698 | }
|
---|
3699 | /*
|
---|
3700 | * If the LBA is in an audio track we are required to ignore pretty much all
|
---|
3701 | * of the channel selection values (except 0x00) and map everything to 0x10
|
---|
3702 | * which means read user data with a sector size of 2352 bytes.
|
---|
3703 | *
|
---|
3704 | * (MMC-6 chapter 6.19.2.6)
|
---|
3705 | */
|
---|
3706 | uint8_t uChnSel = pbPacket[9] & 0xf8;
|
---|
3707 | VDREGIONDATAFORM enmDataForm;
|
---|
3708 | int rc = pDevR3->pDrvMedia->pfnQueryRegionPropertiesForLba(pDevR3->pDrvMedia, iATAPILBA,
|
---|
3709 | NULL, NULL, NULL, &enmDataForm);
|
---|
3710 | AssertRC(rc);
|
---|
3711 |
|
---|
3712 | if (enmDataForm == VDREGIONDATAFORM_CDDA)
|
---|
3713 | {
|
---|
3714 | if (uChnSel == 0)
|
---|
3715 | {
|
---|
3716 | /* nothing */
|
---|
3717 | atapiR3CmdOK(pCtl, s);
|
---|
3718 | }
|
---|
3719 | else
|
---|
3720 | atapiR3ReadSectors(pDevIns, pCtl, s, iATAPILBA, cSectors, 2352);
|
---|
3721 | }
|
---|
3722 | else
|
---|
3723 | {
|
---|
3724 | switch (uChnSel)
|
---|
3725 | {
|
---|
3726 | case 0x00:
|
---|
3727 | /* nothing */
|
---|
3728 | atapiR3CmdOK(pCtl, s);
|
---|
3729 | break;
|
---|
3730 | case 0x10:
|
---|
3731 | /* normal read */
|
---|
3732 | atapiR3ReadSectors(pDevIns, pCtl, s, iATAPILBA, cSectors, 2048);
|
---|
3733 | break;
|
---|
3734 | case 0xf8:
|
---|
3735 | /* read all data */
|
---|
3736 | atapiR3ReadSectors(pDevIns, pCtl, s, iATAPILBA, cSectors, 2352);
|
---|
3737 | break;
|
---|
3738 | default:
|
---|
3739 | LogRel(("PIIX3 ATA: LUN#%d: CD-ROM sector format not supported (%#x)\n", s->iLUN, pbPacket[9] & 0xf8));
|
---|
3740 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
3741 | break;
|
---|
3742 | }
|
---|
3743 | }
|
---|
3744 | break;
|
---|
3745 | }
|
---|
3746 | case SCSI_SEEK_10:
|
---|
3747 | {
|
---|
3748 | if (s->cNotifiedMediaChange > 0)
|
---|
3749 | {
|
---|
3750 | s->cNotifiedMediaChange-- ;
|
---|
3751 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_UNIT_ATTENTION, SCSI_ASC_MEDIUM_MAY_HAVE_CHANGED); /* media changed */
|
---|
3752 | break;
|
---|
3753 | }
|
---|
3754 | if (!pDevR3->pDrvMount || !pDevR3->pDrvMount->pfnIsMounted(pDevR3->pDrvMount))
|
---|
3755 | {
|
---|
3756 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3757 | break;
|
---|
3758 | }
|
---|
3759 | iATAPILBA = scsiBE2H_U32(pbPacket + 2);
|
---|
3760 | if (iATAPILBA > s->cTotalSectors)
|
---|
3761 | {
|
---|
3762 | /* Rate limited logging, one log line per second. For
|
---|
3763 | * guests that insist on seeking to places outside the
|
---|
3764 | * valid area this often generates too many release log
|
---|
3765 | * entries otherwise. */
|
---|
3766 | static uint64_t uLastLogTS = 0;
|
---|
3767 | if (RTTimeMilliTS() >= uLastLogTS + 1000)
|
---|
3768 | {
|
---|
3769 | LogRel(("PIIX3 ATA: LUN#%d: CD-ROM block number %Ld invalid (SEEK)\n", s->iLUN, (uint64_t)iATAPILBA));
|
---|
3770 | uLastLogTS = RTTimeMilliTS();
|
---|
3771 | }
|
---|
3772 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_LOGICAL_BLOCK_OOR);
|
---|
3773 | break;
|
---|
3774 | }
|
---|
3775 | atapiR3CmdOK(pCtl, s);
|
---|
3776 | ataSetStatus(pCtl, s, ATA_STAT_SEEK); /* Linux expects this. Required by ATAPI 2.x when seek completes. */
|
---|
3777 | break;
|
---|
3778 | }
|
---|
3779 | case SCSI_START_STOP_UNIT:
|
---|
3780 | {
|
---|
3781 | int rc = VINF_SUCCESS;
|
---|
3782 | switch (pbPacket[4] & 3)
|
---|
3783 | {
|
---|
3784 | case 0: /* 00 - Stop motor */
|
---|
3785 | case 1: /* 01 - Start motor */
|
---|
3786 | break;
|
---|
3787 | case 2: /* 10 - Eject media */
|
---|
3788 | {
|
---|
3789 | /* This must be done from EMT. */
|
---|
3790 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATER3);
|
---|
3791 | PPDMIMOUNT pDrvMount = pDevR3->pDrvMount;
|
---|
3792 | if (pDrvMount)
|
---|
3793 | {
|
---|
3794 | ataR3LockLeave(pDevIns, pCtl);
|
---|
3795 |
|
---|
3796 | rc = PDMDevHlpVMReqPriorityCallWait(pDevIns, VMCPUID_ANY,
|
---|
3797 | (PFNRT)pDrvMount->pfnUnmount, 3,
|
---|
3798 | pDrvMount, false /*=fForce*/, true /*=fEject*/);
|
---|
3799 | Assert(RT_SUCCESS(rc) || rc == VERR_PDM_MEDIA_LOCKED || rc == VERR_PDM_MEDIA_NOT_MOUNTED);
|
---|
3800 | if (RT_SUCCESS(rc) && pThisCC->pMediaNotify)
|
---|
3801 | {
|
---|
3802 | rc = PDMDevHlpVMReqCallNoWait(pDevIns, VMCPUID_ANY,
|
---|
3803 | (PFNRT)pThisCC->pMediaNotify->pfnEjected, 2,
|
---|
3804 | pThisCC->pMediaNotify, s->iLUN);
|
---|
3805 | AssertRC(rc);
|
---|
3806 | }
|
---|
3807 |
|
---|
3808 | ataR3LockEnter(pDevIns, pCtl);
|
---|
3809 | }
|
---|
3810 | else
|
---|
3811 | rc = VINF_SUCCESS;
|
---|
3812 | break;
|
---|
3813 | }
|
---|
3814 | case 3: /* 11 - Load media */
|
---|
3815 | /** @todo rc = pDevR3->pDrvMount->pfnLoadMedia(pDevR3->pDrvMount) */
|
---|
3816 | break;
|
---|
3817 | }
|
---|
3818 | if (RT_SUCCESS(rc))
|
---|
3819 | {
|
---|
3820 | atapiR3CmdOK(pCtl, s);
|
---|
3821 | ataSetStatus(pCtl, s, ATA_STAT_SEEK); /* Needed by NT 3.51/4.0, see @bugref{5869}. */
|
---|
3822 | }
|
---|
3823 | else
|
---|
3824 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIA_LOAD_OR_EJECT_FAILED);
|
---|
3825 | break;
|
---|
3826 | }
|
---|
3827 | case SCSI_MECHANISM_STATUS:
|
---|
3828 | {
|
---|
3829 | cbMax = scsiBE2H_U16(pbPacket + 8);
|
---|
3830 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 8), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_MECHANISM_STATUS, true);
|
---|
3831 | break;
|
---|
3832 | }
|
---|
3833 | case SCSI_READ_TOC_PMA_ATIP:
|
---|
3834 | {
|
---|
3835 | uint8_t format;
|
---|
3836 |
|
---|
3837 | if (s->cNotifiedMediaChange > 0)
|
---|
3838 | {
|
---|
3839 | s->cNotifiedMediaChange-- ;
|
---|
3840 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_UNIT_ATTENTION, SCSI_ASC_MEDIUM_MAY_HAVE_CHANGED); /* media changed */
|
---|
3841 | break;
|
---|
3842 | }
|
---|
3843 | if (!pDevR3->pDrvMount || !pDevR3->pDrvMount->pfnIsMounted(pDevR3->pDrvMount))
|
---|
3844 | {
|
---|
3845 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3846 | break;
|
---|
3847 | }
|
---|
3848 | cbMax = scsiBE2H_U16(pbPacket + 7);
|
---|
3849 | /* SCSI MMC-3 spec says format is at offset 2 (lower 4 bits),
|
---|
3850 | * but Linux kernel uses offset 9 (topmost 2 bits). Hope that
|
---|
3851 | * the other field is clear... */
|
---|
3852 | format = (pbPacket[2] & 0xf) | (pbPacket[9] >> 6);
|
---|
3853 | switch (format)
|
---|
3854 | {
|
---|
3855 | case 0:
|
---|
3856 | ataR3StartTransfer(pDevIns, pCtl, s, cbMax, PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_READ_TOC_NORMAL, true);
|
---|
3857 | break;
|
---|
3858 | case 1:
|
---|
3859 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 12), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_READ_TOC_MULTI, true);
|
---|
3860 | break;
|
---|
3861 | case 2:
|
---|
3862 | ataR3StartTransfer(pDevIns, pCtl, s, cbMax, PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_READ_TOC_RAW, true);
|
---|
3863 | break;
|
---|
3864 | default:
|
---|
3865 | error_cmd:
|
---|
3866 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_INV_FIELD_IN_CMD_PACKET);
|
---|
3867 | break;
|
---|
3868 | }
|
---|
3869 | break;
|
---|
3870 | }
|
---|
3871 | case SCSI_READ_CAPACITY:
|
---|
3872 | if (s->cNotifiedMediaChange > 0)
|
---|
3873 | {
|
---|
3874 | s->cNotifiedMediaChange-- ;
|
---|
3875 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_UNIT_ATTENTION, SCSI_ASC_MEDIUM_MAY_HAVE_CHANGED); /* media changed */
|
---|
3876 | break;
|
---|
3877 | }
|
---|
3878 | if (!pDevR3->pDrvMount || !pDevR3->pDrvMount->pfnIsMounted(pDevR3->pDrvMount))
|
---|
3879 | {
|
---|
3880 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3881 | break;
|
---|
3882 | }
|
---|
3883 | ataR3StartTransfer(pDevIns, pCtl, s, 8, PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_READ_CAPACITY, true);
|
---|
3884 | break;
|
---|
3885 | case SCSI_READ_DISC_INFORMATION:
|
---|
3886 | if (s->cNotifiedMediaChange > 0)
|
---|
3887 | {
|
---|
3888 | s->cNotifiedMediaChange-- ;
|
---|
3889 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_UNIT_ATTENTION, SCSI_ASC_MEDIUM_MAY_HAVE_CHANGED); /* media changed */
|
---|
3890 | break;
|
---|
3891 | }
|
---|
3892 | if (!pDevR3->pDrvMount || !pDevR3->pDrvMount->pfnIsMounted(pDevR3->pDrvMount))
|
---|
3893 | {
|
---|
3894 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3895 | break;
|
---|
3896 | }
|
---|
3897 | cbMax = scsiBE2H_U16(pbPacket + 7);
|
---|
3898 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 34), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_READ_DISC_INFORMATION, true);
|
---|
3899 | break;
|
---|
3900 | case SCSI_READ_TRACK_INFORMATION:
|
---|
3901 | if (s->cNotifiedMediaChange > 0)
|
---|
3902 | {
|
---|
3903 | s->cNotifiedMediaChange-- ;
|
---|
3904 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_UNIT_ATTENTION, SCSI_ASC_MEDIUM_MAY_HAVE_CHANGED); /* media changed */
|
---|
3905 | break;
|
---|
3906 | }
|
---|
3907 | if (!pDevR3->pDrvMount || !pDevR3->pDrvMount->pfnIsMounted(pDevR3->pDrvMount))
|
---|
3908 | {
|
---|
3909 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_NOT_READY, SCSI_ASC_MEDIUM_NOT_PRESENT);
|
---|
3910 | break;
|
---|
3911 | }
|
---|
3912 | cbMax = scsiBE2H_U16(pbPacket + 7);
|
---|
3913 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 36), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_READ_TRACK_INFORMATION, true);
|
---|
3914 | break;
|
---|
3915 | case SCSI_GET_CONFIGURATION:
|
---|
3916 | /* No media change stuff here, it can confuse Linux guests. */
|
---|
3917 | cbMax = scsiBE2H_U16(pbPacket + 7);
|
---|
3918 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 80), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_GET_CONFIGURATION, true);
|
---|
3919 | break;
|
---|
3920 | case SCSI_INQUIRY:
|
---|
3921 | cbMax = scsiBE2H_U16(pbPacket + 3);
|
---|
3922 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 36), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_INQUIRY, true);
|
---|
3923 | break;
|
---|
3924 | case SCSI_READ_DVD_STRUCTURE:
|
---|
3925 | cbMax = scsiBE2H_U16(pbPacket + 8);
|
---|
3926 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbMax, 4), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_READ_DVD_STRUCTURE, true);
|
---|
3927 | break;
|
---|
3928 | default:
|
---|
3929 | atapiR3CmdErrorSimple(pCtl, s, SCSI_SENSE_ILLEGAL_REQUEST, SCSI_ASC_ILLEGAL_OPCODE);
|
---|
3930 | break;
|
---|
3931 | }
|
---|
3932 | }
|
---|
3933 |
|
---|
3934 |
|
---|
3935 | /*
|
---|
3936 | * Parse ATAPI commands, passing them directly to the CD/DVD drive.
|
---|
3937 | */
|
---|
3938 | static void atapiR3ParseCmdPassthrough(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
3939 | {
|
---|
3940 | const uint8_t *pbPacket = &s->abATAPICmd[0];
|
---|
3941 |
|
---|
3942 | /* Some cases we have to handle here. */
|
---|
3943 | if ( pbPacket[0] == SCSI_GET_EVENT_STATUS_NOTIFICATION
|
---|
3944 | && ASMAtomicReadU32(&s->MediaEventStatus) != ATA_EVENT_STATUS_UNCHANGED)
|
---|
3945 | {
|
---|
3946 | uint32_t cbTransfer = scsiBE2H_U16(pbPacket + 7);
|
---|
3947 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(cbTransfer, 8), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_GET_EVENT_STATUS_NOTIFICATION, true);
|
---|
3948 | }
|
---|
3949 | else if ( pbPacket[0] == SCSI_REQUEST_SENSE
|
---|
3950 | && (s->abATAPISense[2] & 0x0f) != SCSI_SENSE_NONE)
|
---|
3951 | ataR3StartTransfer(pDevIns, pCtl, s, RT_MIN(pbPacket[4], 18), PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_ATAPI_CMD, ATAFN_SS_ATAPI_REQUEST_SENSE, true);
|
---|
3952 | else
|
---|
3953 | {
|
---|
3954 | size_t cbBuf = 0;
|
---|
3955 | size_t cbATAPISector = 0;
|
---|
3956 | size_t cbTransfer = 0;
|
---|
3957 | PDMMEDIATXDIR uTxDir = PDMMEDIATXDIR_NONE;
|
---|
3958 | uint8_t u8ScsiSts = SCSI_STATUS_OK;
|
---|
3959 |
|
---|
3960 | if (pbPacket[0] == SCSI_FORMAT_UNIT || pbPacket[0] == SCSI_GET_PERFORMANCE)
|
---|
3961 | cbBuf = s->uATARegLCyl | (s->uATARegHCyl << 8); /* use ATAPI transfer length */
|
---|
3962 |
|
---|
3963 | bool fPassthrough = ATAPIPassthroughParseCdb(pbPacket, sizeof(s->abATAPICmd), cbBuf, pDevR3->pTrackList,
|
---|
3964 | &s->abATAPISense[0], sizeof(s->abATAPISense), &uTxDir, &cbTransfer,
|
---|
3965 | &cbATAPISector, &u8ScsiSts);
|
---|
3966 | if (fPassthrough)
|
---|
3967 | {
|
---|
3968 | s->cbATAPISector = (uint32_t)cbATAPISector;
|
---|
3969 | Assert(s->cbATAPISector == (uint32_t)cbATAPISector);
|
---|
3970 | Assert(cbTransfer == (uint32_t)cbTransfer);
|
---|
3971 |
|
---|
3972 | /*
|
---|
3973 | * Send a command to the drive, passing data in/out as required.
|
---|
3974 | * Commands which exceed the I/O buffer size are split below
|
---|
3975 | * or aborted if splitting is not implemented.
|
---|
3976 | */
|
---|
3977 | Log2(("ATAPI PT: max size %d\n", cbTransfer));
|
---|
3978 | if (cbTransfer == 0)
|
---|
3979 | uTxDir = PDMMEDIATXDIR_NONE;
|
---|
3980 | ataR3StartTransfer(pDevIns, pCtl, s, (uint32_t)cbTransfer, uTxDir, ATAFN_BT_ATAPI_PASSTHROUGH_CMD, ATAFN_SS_ATAPI_PASSTHROUGH, true);
|
---|
3981 | }
|
---|
3982 | else if (u8ScsiSts == SCSI_STATUS_CHECK_CONDITION)
|
---|
3983 | {
|
---|
3984 | /* Sense data is already set, end the request and notify the guest. */
|
---|
3985 | Log(("%s: sense=%#x (%s) asc=%#x ascq=%#x (%s)\n", __FUNCTION__, s->abATAPISense[2] & 0x0f, SCSISenseText(s->abATAPISense[2] & 0x0f),
|
---|
3986 | s->abATAPISense[12], s->abATAPISense[13], SCSISenseExtText(s->abATAPISense[12], s->abATAPISense[13])));
|
---|
3987 | s->uATARegError = s->abATAPISense[2] << 4;
|
---|
3988 | ataSetStatusValue(pCtl, s, ATA_STAT_READY | ATA_STAT_ERR);
|
---|
3989 | s->uATARegNSector = (s->uATARegNSector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD;
|
---|
3990 | Log2(("%s: interrupt reason %#04x\n", __FUNCTION__, s->uATARegNSector));
|
---|
3991 | s->cbTotalTransfer = 0;
|
---|
3992 | s->cbElementaryTransfer = 0;
|
---|
3993 | s->cbAtapiPassthroughTransfer = 0;
|
---|
3994 | s->iIOBufferCur = 0;
|
---|
3995 | s->iIOBufferEnd = 0;
|
---|
3996 | s->uTxDir = PDMMEDIATXDIR_NONE;
|
---|
3997 | s->iBeginTransfer = ATAFN_BT_NULL;
|
---|
3998 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
3999 | }
|
---|
4000 | else if (u8ScsiSts == SCSI_STATUS_OK)
|
---|
4001 | atapiR3CmdOK(pCtl, s);
|
---|
4002 | }
|
---|
4003 | }
|
---|
4004 |
|
---|
4005 |
|
---|
4006 | static void atapiR3ParseCmd(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
4007 | {
|
---|
4008 | const uint8_t *pbPacket;
|
---|
4009 |
|
---|
4010 | pbPacket = s->abATAPICmd;
|
---|
4011 | # ifdef DEBUG
|
---|
4012 | Log(("%s: LUN#%d DMA=%d CMD=%#04x \"%s\"\n", __FUNCTION__, s->iLUN, s->fDMA, pbPacket[0], SCSICmdText(pbPacket[0])));
|
---|
4013 | # else /* !DEBUG */
|
---|
4014 | Log(("%s: LUN#%d DMA=%d CMD=%#04x\n", __FUNCTION__, s->iLUN, s->fDMA, pbPacket[0]));
|
---|
4015 | # endif /* !DEBUG */
|
---|
4016 | Log2(("%s: limit=%#x packet: %.*Rhxs\n", __FUNCTION__, s->uATARegLCyl | (s->uATARegHCyl << 8), ATAPI_PACKET_SIZE, pbPacket));
|
---|
4017 |
|
---|
4018 | if (s->fATAPIPassthrough)
|
---|
4019 | atapiR3ParseCmdPassthrough(pDevIns, pCtl, s, pDevR3);
|
---|
4020 | else
|
---|
4021 | atapiR3ParseCmdVirtualATAPI(pDevIns, pCtl, s, pDevR3);
|
---|
4022 | }
|
---|
4023 |
|
---|
4024 |
|
---|
4025 | /**
|
---|
4026 | * Sink/Source: PACKET
|
---|
4027 | */
|
---|
4028 | static bool ataR3PacketSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
4029 | {
|
---|
4030 | s->fDMA = !!(s->uATARegFeature & 1);
|
---|
4031 | memcpy(s->abATAPICmd, s->abIOBuffer, ATAPI_PACKET_SIZE);
|
---|
4032 | s->uTxDir = PDMMEDIATXDIR_NONE;
|
---|
4033 | s->cbTotalTransfer = 0;
|
---|
4034 | s->cbElementaryTransfer = 0;
|
---|
4035 | s->cbAtapiPassthroughTransfer = 0;
|
---|
4036 | atapiR3ParseCmd(pDevIns, pCtl, s, pDevR3);
|
---|
4037 | return false;
|
---|
4038 | }
|
---|
4039 |
|
---|
4040 |
|
---|
4041 | /**
|
---|
4042 | * SCSI_GET_EVENT_STATUS_NOTIFICATION should return "medium removed" event
|
---|
4043 | * from now on, regardless if there was a medium inserted or not.
|
---|
4044 | */
|
---|
4045 | static void ataR3MediumRemoved(PATADEVSTATE s)
|
---|
4046 | {
|
---|
4047 | ASMAtomicWriteU32(&s->MediaEventStatus, ATA_EVENT_STATUS_MEDIA_REMOVED);
|
---|
4048 | }
|
---|
4049 |
|
---|
4050 |
|
---|
4051 | /**
|
---|
4052 | * SCSI_GET_EVENT_STATUS_NOTIFICATION should return "medium inserted". If
|
---|
4053 | * there was already a medium inserted, don't forget to send the "medium
|
---|
4054 | * removed" event first.
|
---|
4055 | */
|
---|
4056 | static void ataR3MediumInserted(PATADEVSTATE s)
|
---|
4057 | {
|
---|
4058 | uint32_t OldStatus, NewStatus;
|
---|
4059 | do
|
---|
4060 | {
|
---|
4061 | OldStatus = ASMAtomicReadU32(&s->MediaEventStatus);
|
---|
4062 | switch (OldStatus)
|
---|
4063 | {
|
---|
4064 | case ATA_EVENT_STATUS_MEDIA_CHANGED:
|
---|
4065 | case ATA_EVENT_STATUS_MEDIA_REMOVED:
|
---|
4066 | /* no change, we will send "medium removed" + "medium inserted" */
|
---|
4067 | NewStatus = ATA_EVENT_STATUS_MEDIA_CHANGED;
|
---|
4068 | break;
|
---|
4069 | default:
|
---|
4070 | NewStatus = ATA_EVENT_STATUS_MEDIA_NEW;
|
---|
4071 | break;
|
---|
4072 | }
|
---|
4073 | } while (!ASMAtomicCmpXchgU32(&s->MediaEventStatus, NewStatus, OldStatus));
|
---|
4074 | }
|
---|
4075 |
|
---|
4076 |
|
---|
4077 | /**
|
---|
4078 | * @interface_method_impl{PDMIMOUNTNOTIFY,pfnMountNotify}
|
---|
4079 | */
|
---|
4080 | static DECLCALLBACK(void) ataR3MountNotify(PPDMIMOUNTNOTIFY pInterface)
|
---|
4081 | {
|
---|
4082 | PATADEVSTATER3 pIfR3 = RT_FROM_MEMBER(pInterface, ATADEVSTATER3, IMountNotify);
|
---|
4083 | PATASTATE pThis = PDMDEVINS_2_DATA(pIfR3->pDevIns, PATASTATE);
|
---|
4084 | PATADEVSTATE pIf = &RT_SAFE_SUBSCRIPT(RT_SAFE_SUBSCRIPT(pThis->aCts, pIfR3->iCtl).aIfs, pIfR3->iDev);
|
---|
4085 | Log(("%s: changing LUN#%d\n", __FUNCTION__, pIfR3->iLUN));
|
---|
4086 |
|
---|
4087 | /* Ignore the call if we're called while being attached. */
|
---|
4088 | if (!pIfR3->pDrvMedia)
|
---|
4089 | return;
|
---|
4090 |
|
---|
4091 | uint32_t cRegions = pIfR3->pDrvMedia->pfnGetRegionCount(pIfR3->pDrvMedia);
|
---|
4092 | for (uint32_t i = 0; i < cRegions; i++)
|
---|
4093 | {
|
---|
4094 | uint64_t cBlocks = 0;
|
---|
4095 | int rc = pIfR3->pDrvMedia->pfnQueryRegionProperties(pIfR3->pDrvMedia, i, NULL, &cBlocks, NULL, NULL);
|
---|
4096 | AssertRC(rc);
|
---|
4097 | pIf->cTotalSectors += cBlocks;
|
---|
4098 | }
|
---|
4099 |
|
---|
4100 | LogRel(("PIIX3 ATA: LUN#%d: CD/DVD, total number of sectors %Ld, passthrough unchanged\n", pIf->iLUN, pIf->cTotalSectors));
|
---|
4101 |
|
---|
4102 | /* Report media changed in TEST UNIT and other (probably incorrect) places. */
|
---|
4103 | if (pIf->cNotifiedMediaChange < 2)
|
---|
4104 | pIf->cNotifiedMediaChange = 1;
|
---|
4105 | ataR3MediumInserted(pIf);
|
---|
4106 | ataR3MediumTypeSet(pIf, ATA_MEDIA_TYPE_UNKNOWN);
|
---|
4107 | }
|
---|
4108 |
|
---|
4109 | /**
|
---|
4110 | * @interface_method_impl{PDMIMOUNTNOTIFY,pfnUnmountNotify}
|
---|
4111 | */
|
---|
4112 | static DECLCALLBACK(void) ataR3UnmountNotify(PPDMIMOUNTNOTIFY pInterface)
|
---|
4113 | {
|
---|
4114 | PATADEVSTATER3 pIfR3 = RT_FROM_MEMBER(pInterface, ATADEVSTATER3, IMountNotify);
|
---|
4115 | PATASTATE pThis = PDMDEVINS_2_DATA(pIfR3->pDevIns, PATASTATE);
|
---|
4116 | PATADEVSTATE pIf = &RT_SAFE_SUBSCRIPT(RT_SAFE_SUBSCRIPT(pThis->aCts, pIfR3->iCtl).aIfs, pIfR3->iDev);
|
---|
4117 | Log(("%s:\n", __FUNCTION__));
|
---|
4118 | pIf->cTotalSectors = 0;
|
---|
4119 |
|
---|
4120 | /*
|
---|
4121 | * Whatever I do, XP will not use the GET MEDIA STATUS nor the EVENT stuff.
|
---|
4122 | * However, it will respond to TEST UNIT with a 0x6 0x28 (media changed) sense code.
|
---|
4123 | * So, we'll give it 4 TEST UNIT command to catch up, two which the media is not
|
---|
4124 | * present and 2 in which it is changed.
|
---|
4125 | */
|
---|
4126 | pIf->cNotifiedMediaChange = 1;
|
---|
4127 | ataR3MediumRemoved(pIf);
|
---|
4128 | ataR3MediumTypeSet(pIf, ATA_MEDIA_NO_DISC);
|
---|
4129 | }
|
---|
4130 |
|
---|
4131 | /**
|
---|
4132 | * Begin Transfer: PACKET
|
---|
4133 | */
|
---|
4134 | static void ataR3PacketBT(PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
4135 | {
|
---|
4136 | s->cbElementaryTransfer = s->cbTotalTransfer;
|
---|
4137 | s->cbAtapiPassthroughTransfer = s->cbTotalTransfer;
|
---|
4138 | s->uATARegNSector = (s->uATARegNSector & ~7) | ATAPI_INT_REASON_CD;
|
---|
4139 | Log2(("%s: interrupt reason %#04x\n", __FUNCTION__, s->uATARegNSector));
|
---|
4140 | ataSetStatusValue(pCtl, s, ATA_STAT_READY);
|
---|
4141 | }
|
---|
4142 |
|
---|
4143 |
|
---|
4144 | static void ataR3ResetDevice(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
4145 | {
|
---|
4146 | LogFlowFunc(("\n"));
|
---|
4147 | s->cMultSectors = ATA_MAX_MULT_SECTORS;
|
---|
4148 | s->cNotifiedMediaChange = 0;
|
---|
4149 | ASMAtomicWriteU32(&s->MediaEventStatus, ATA_EVENT_STATUS_UNCHANGED);
|
---|
4150 | ASMAtomicWriteU32(&s->MediaTrackType, ATA_MEDIA_TYPE_UNKNOWN);
|
---|
4151 | ataUnsetIRQ(pDevIns, pCtl, s);
|
---|
4152 |
|
---|
4153 | s->uATARegSelect = 0x20;
|
---|
4154 | ataSetStatusValue(pCtl, s, ATA_STAT_READY | ATA_STAT_SEEK);
|
---|
4155 | ataR3SetSignature(s);
|
---|
4156 | s->cbTotalTransfer = 0;
|
---|
4157 | s->cbElementaryTransfer = 0;
|
---|
4158 | s->cbAtapiPassthroughTransfer = 0;
|
---|
4159 | s->iIOBufferPIODataStart = 0;
|
---|
4160 | s->iIOBufferPIODataEnd = 0;
|
---|
4161 | s->iBeginTransfer = ATAFN_BT_NULL;
|
---|
4162 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
4163 | s->fDMA = false;
|
---|
4164 | s->fATAPITransfer = false;
|
---|
4165 | s->uATATransferMode = ATA_MODE_UDMA | 2; /* PIIX3 supports only up to UDMA2 */
|
---|
4166 |
|
---|
4167 | s->XCHSGeometry = s->PCHSGeometry; /* Restore default CHS translation. */
|
---|
4168 |
|
---|
4169 | s->uATARegFeature = 0;
|
---|
4170 | }
|
---|
4171 |
|
---|
4172 |
|
---|
4173 | static void ataR3DeviceDiag(PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
4174 | {
|
---|
4175 | ataR3SetSignature(s);
|
---|
4176 | if (s->fATAPI)
|
---|
4177 | ataSetStatusValue(pCtl, s, 0); /* NOTE: READY is _not_ set */
|
---|
4178 | else
|
---|
4179 | ataSetStatusValue(pCtl, s, ATA_STAT_READY | ATA_STAT_SEEK);
|
---|
4180 | s->uATARegError = 0x01;
|
---|
4181 | }
|
---|
4182 |
|
---|
4183 |
|
---|
4184 | /**
|
---|
4185 | * Sink/Source: EXECUTE DEVICE DIAGNOTIC
|
---|
4186 | */
|
---|
4187 | static bool ataR3ExecuteDeviceDiagnosticSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
4188 | {
|
---|
4189 | RT_NOREF(pDevIns, s, pDevR3);
|
---|
4190 |
|
---|
4191 | /* EXECUTE DEVICE DIAGNOSTIC is a very special command which always
|
---|
4192 | * gets executed, regardless of which device is selected. As a side
|
---|
4193 | * effect, it always completes with device 0 selected.
|
---|
4194 | */
|
---|
4195 | for (uint32_t i = 0; i < RT_ELEMENTS(pCtl->aIfs); i++)
|
---|
4196 | ataR3DeviceDiag(pCtl, &pCtl->aIfs[i]);
|
---|
4197 |
|
---|
4198 | LogRel(("ATA: LUN#%d: EXECUTE DEVICE DIAGNOSTIC, status %02X\n", s->iLUN, s->uATARegStatus));
|
---|
4199 | pCtl->iSelectedIf = 0;
|
---|
4200 |
|
---|
4201 | return false;
|
---|
4202 | }
|
---|
4203 |
|
---|
4204 |
|
---|
4205 | /**
|
---|
4206 | * Sink/Source: INITIALIZE DEVICE PARAMETERS
|
---|
4207 | */
|
---|
4208 | static bool ataR3InitDevParmSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
4209 | {
|
---|
4210 | RT_NOREF(pDevR3);
|
---|
4211 | LogFlowFunc(("\n"));
|
---|
4212 |
|
---|
4213 | /* Technical Note:
|
---|
4214 | * On ST506 type drives with a separate controller, the INITIALIZE DRIVE PARAMETERS command was
|
---|
4215 | * required to inform the controller of drive geometry. The controller needed to know the
|
---|
4216 | * number of heads and sectors per track so that it could correctly advance to the next track
|
---|
4217 | * or cylinder when executing multi-sector commands. Setting a geometry that didn't match the
|
---|
4218 | * drive made very little sense because sectors had fixed CHS addresses. It was at best
|
---|
4219 | * possible to reduce the drive's capacity by limiting the number of heads and/or sectors
|
---|
4220 | * per track.
|
---|
4221 | *
|
---|
4222 | * IDE drives inherently have to know their true geometry, but most of them also support
|
---|
4223 | * programmable translation that can be set through the INITIALIZE DEVICE PARAMETERS command.
|
---|
4224 | * In fact most older IDE drives typically weren't operated using their default (native) geometry,
|
---|
4225 | * and with newer IDE drives that's not even an option.
|
---|
4226 | *
|
---|
4227 | * Up to and including ATA-5, the standard defined a CHS to LBA translation (since ATA-6, CHS
|
---|
4228 | * support is optional):
|
---|
4229 | *
|
---|
4230 | * LBA = (((cyl_num * heads_per_cyl) + head_num) * sectors_per_track) + sector_num - 1
|
---|
4231 | *
|
---|
4232 | * The INITIALIZE DEVICE PARAMETERS command sets the heads_per_cyl and sectors_per_track
|
---|
4233 | * values used in the above formula.
|
---|
4234 | *
|
---|
4235 | * Drives must obviously support an INITIALIZE DRIVE PARAMETERS command matching the drive's
|
---|
4236 | * default CHS translation. Everything else is optional.
|
---|
4237 | *
|
---|
4238 | * We support any geometry with non-zero sectors per track because there's no reason not to;
|
---|
4239 | * this behavior is common in many if not most IDE drives.
|
---|
4240 | */
|
---|
4241 |
|
---|
4242 | PDMMEDIAGEOMETRY Geom = { 0 };
|
---|
4243 |
|
---|
4244 | Geom.cHeads = (s->uATARegSelect & 0x0f) + 1; /* Effective range 1-16. */
|
---|
4245 | Geom.cSectors = s->uATARegNSector; /* Range 0-255, zero is not valid. */
|
---|
4246 |
|
---|
4247 | if (Geom.cSectors)
|
---|
4248 | {
|
---|
4249 | uint64_t cCylinders = s->cTotalSectors / (Geom.cHeads * Geom.cSectors);
|
---|
4250 | Geom.cCylinders = RT_MAX(RT_MIN(cCylinders, 16383), 1);
|
---|
4251 |
|
---|
4252 | s->XCHSGeometry = Geom;
|
---|
4253 |
|
---|
4254 | ataR3LockLeave(pDevIns, pCtl);
|
---|
4255 | LogRel(("ATA: LUN#%d: INITIALIZE DEVICE PARAMETERS: %u sectors per track, %u heads\n",
|
---|
4256 | s->iLUN, s->uATARegNSector, (s->uATARegSelect & 0x0f) + 1));
|
---|
4257 | RTThreadSleep(pCtl->msDelayIRQ);
|
---|
4258 | ataR3LockEnter(pDevIns, pCtl);
|
---|
4259 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4260 | }
|
---|
4261 | else
|
---|
4262 | {
|
---|
4263 | ataR3LockLeave(pDevIns, pCtl);
|
---|
4264 | LogRel(("ATA: LUN#%d: INITIALIZE DEVICE PARAMETERS error (zero sectors per track)!\n", s->iLUN));
|
---|
4265 | RTThreadSleep(pCtl->msDelayIRQ);
|
---|
4266 | ataR3LockEnter(pDevIns, pCtl);
|
---|
4267 | ataR3CmdError(pCtl, s, ABRT_ERR);
|
---|
4268 | }
|
---|
4269 | return false;
|
---|
4270 | }
|
---|
4271 |
|
---|
4272 |
|
---|
4273 | /**
|
---|
4274 | * Sink/Source: RECALIBRATE
|
---|
4275 | */
|
---|
4276 | static bool ataR3RecalibrateSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
4277 | {
|
---|
4278 | RT_NOREF(pDevR3);
|
---|
4279 | LogFlowFunc(("\n"));
|
---|
4280 | ataR3LockLeave(pDevIns, pCtl);
|
---|
4281 | RTThreadSleep(pCtl->msDelayIRQ);
|
---|
4282 | ataR3LockEnter(pDevIns, pCtl);
|
---|
4283 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4284 | return false;
|
---|
4285 | }
|
---|
4286 |
|
---|
4287 |
|
---|
4288 | static int ataR3TrimSectors(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3,
|
---|
4289 | uint64_t u64Sector, uint32_t cSectors, bool *pfRedo)
|
---|
4290 | {
|
---|
4291 | RTRANGE TrimRange;
|
---|
4292 | int rc;
|
---|
4293 |
|
---|
4294 | ataR3LockLeave(pDevIns, pCtl);
|
---|
4295 |
|
---|
4296 | TrimRange.offStart = u64Sector * s->cbSector;
|
---|
4297 | TrimRange.cbRange = cSectors * s->cbSector;
|
---|
4298 |
|
---|
4299 | s->Led.Asserted.s.fWriting = s->Led.Actual.s.fWriting = 1;
|
---|
4300 | rc = pDevR3->pDrvMedia->pfnDiscard(pDevR3->pDrvMedia, &TrimRange, 1);
|
---|
4301 | s->Led.Actual.s.fWriting = 0;
|
---|
4302 |
|
---|
4303 | if (RT_SUCCESS(rc))
|
---|
4304 | *pfRedo = false;
|
---|
4305 | else
|
---|
4306 | *pfRedo = ataR3IsRedoSetWarning(pDevIns, pCtl, rc);
|
---|
4307 |
|
---|
4308 | ataR3LockEnter(pDevIns, pCtl);
|
---|
4309 | return rc;
|
---|
4310 | }
|
---|
4311 |
|
---|
4312 |
|
---|
4313 | /**
|
---|
4314 | * Sink/Source: TRIM
|
---|
4315 | */
|
---|
4316 | static bool ataR3TrimSS(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3)
|
---|
4317 | {
|
---|
4318 | int rc = VERR_GENERAL_FAILURE;
|
---|
4319 | uint32_t cRangesMax;
|
---|
4320 | uint64_t *pu64Range = (uint64_t *)&s->abIOBuffer[0];
|
---|
4321 | bool fRedo = false;
|
---|
4322 |
|
---|
4323 | cRangesMax = RT_MIN(s->cbElementaryTransfer, sizeof(s->abIOBuffer)) / sizeof(uint64_t);
|
---|
4324 | Assert(cRangesMax);
|
---|
4325 |
|
---|
4326 | while (cRangesMax-- > 0)
|
---|
4327 | {
|
---|
4328 | if (ATA_RANGE_LENGTH_GET(*pu64Range) == 0)
|
---|
4329 | break;
|
---|
4330 |
|
---|
4331 | rc = ataR3TrimSectors(pDevIns, pCtl, s, pDevR3, *pu64Range & ATA_RANGE_LBA_MASK,
|
---|
4332 | ATA_RANGE_LENGTH_GET(*pu64Range), &fRedo);
|
---|
4333 | if (RT_FAILURE(rc))
|
---|
4334 | break;
|
---|
4335 |
|
---|
4336 | pu64Range++;
|
---|
4337 | }
|
---|
4338 |
|
---|
4339 | if (RT_SUCCESS(rc))
|
---|
4340 | {
|
---|
4341 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
4342 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4343 | }
|
---|
4344 | else
|
---|
4345 | {
|
---|
4346 | if (fRedo)
|
---|
4347 | return fRedo;
|
---|
4348 | if (s->cErrors++ < MAX_LOG_REL_ERRORS)
|
---|
4349 | LogRel(("PIIX3 ATA: LUN#%d: disk trim error (rc=%Rrc iSector=%#RX64 cSectors=%#RX32)\n",
|
---|
4350 | s->iLUN, rc, *pu64Range & ATA_RANGE_LBA_MASK, ATA_RANGE_LENGTH_GET(*pu64Range)));
|
---|
4351 |
|
---|
4352 | /*
|
---|
4353 | * Check if we got interrupted. We don't need to set status variables
|
---|
4354 | * because the request was aborted.
|
---|
4355 | */
|
---|
4356 | if (rc != VERR_INTERRUPTED)
|
---|
4357 | ataR3CmdError(pCtl, s, ID_ERR);
|
---|
4358 | }
|
---|
4359 |
|
---|
4360 | return false;
|
---|
4361 | }
|
---|
4362 |
|
---|
4363 |
|
---|
4364 | static void ataR3ParseCmd(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s, PATADEVSTATER3 pDevR3, uint8_t cmd)
|
---|
4365 | {
|
---|
4366 | # ifdef DEBUG
|
---|
4367 | Log(("%s: LUN#%d CMD=%#04x \"%s\"\n", __FUNCTION__, s->iLUN, cmd, ATACmdText(cmd)));
|
---|
4368 | # else /* !DEBUG */
|
---|
4369 | Log(("%s: LUN#%d CMD=%#04x\n", __FUNCTION__, s->iLUN, cmd));
|
---|
4370 | # endif /* !DEBUG */
|
---|
4371 | s->fLBA48 = false;
|
---|
4372 | s->fDMA = false;
|
---|
4373 | if (cmd == ATA_IDLE_IMMEDIATE)
|
---|
4374 | {
|
---|
4375 | /* Detect Linux timeout recovery, first tries IDLE IMMEDIATE (which
|
---|
4376 | * would overwrite the failing command unfortunately), then RESET. */
|
---|
4377 | int32_t uCmdWait = -1;
|
---|
4378 | uint64_t uNow = RTTimeNanoTS();
|
---|
4379 | if (s->u64CmdTS)
|
---|
4380 | uCmdWait = (uNow - s->u64CmdTS) / 1000;
|
---|
4381 | LogRel(("PIIX3 ATA: LUN#%d: IDLE IMMEDIATE, CmdIf=%#04x (%d usec ago)\n",
|
---|
4382 | s->iLUN, s->uATARegCommand, uCmdWait));
|
---|
4383 | }
|
---|
4384 | s->uATARegCommand = cmd;
|
---|
4385 | switch (cmd)
|
---|
4386 | {
|
---|
4387 | case ATA_IDENTIFY_DEVICE:
|
---|
4388 | if (pDevR3->pDrvMedia && !s->fATAPI)
|
---|
4389 | ataR3StartTransfer(pDevIns, pCtl, s, 512, PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_NULL, ATAFN_SS_IDENTIFY, false);
|
---|
4390 | else
|
---|
4391 | {
|
---|
4392 | if (s->fATAPI)
|
---|
4393 | ataR3SetSignature(s);
|
---|
4394 | ataR3CmdError(pCtl, s, ABRT_ERR);
|
---|
4395 | ataUnsetStatus(pCtl, s, ATA_STAT_READY);
|
---|
4396 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4397 | }
|
---|
4398 | break;
|
---|
4399 | case ATA_RECALIBRATE:
|
---|
4400 | if (s->fATAPI)
|
---|
4401 | goto abort_cmd;
|
---|
4402 | ataR3StartTransfer(pDevIns, pCtl, s, 0, PDMMEDIATXDIR_NONE, ATAFN_BT_NULL, ATAFN_SS_RECALIBRATE, false);
|
---|
4403 | break;
|
---|
4404 | case ATA_INITIALIZE_DEVICE_PARAMETERS:
|
---|
4405 | if (s->fATAPI)
|
---|
4406 | goto abort_cmd;
|
---|
4407 | ataR3StartTransfer(pDevIns, pCtl, s, 0, PDMMEDIATXDIR_NONE, ATAFN_BT_NULL, ATAFN_SS_INITIALIZE_DEVICE_PARAMETERS, false);
|
---|
4408 | break;
|
---|
4409 | case ATA_SET_MULTIPLE_MODE:
|
---|
4410 | if ( s->uATARegNSector != 0
|
---|
4411 | && ( s->uATARegNSector > ATA_MAX_MULT_SECTORS
|
---|
4412 | || (s->uATARegNSector & (s->uATARegNSector - 1)) != 0))
|
---|
4413 | {
|
---|
4414 | ataR3CmdError(pCtl, s, ABRT_ERR);
|
---|
4415 | }
|
---|
4416 | else
|
---|
4417 | {
|
---|
4418 | Log2(("%s: set multi sector count to %d\n", __FUNCTION__, s->uATARegNSector));
|
---|
4419 | s->cMultSectors = s->uATARegNSector;
|
---|
4420 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4421 | }
|
---|
4422 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4423 | break;
|
---|
4424 | case ATA_READ_VERIFY_SECTORS_EXT:
|
---|
4425 | s->fLBA48 = true;
|
---|
4426 | RT_FALL_THRU();
|
---|
4427 | case ATA_READ_VERIFY_SECTORS:
|
---|
4428 | case ATA_READ_VERIFY_SECTORS_WITHOUT_RETRIES:
|
---|
4429 | /* do sector number check ? */
|
---|
4430 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4431 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4432 | break;
|
---|
4433 | case ATA_READ_SECTORS_EXT:
|
---|
4434 | s->fLBA48 = true;
|
---|
4435 | RT_FALL_THRU();
|
---|
4436 | case ATA_READ_SECTORS:
|
---|
4437 | case ATA_READ_SECTORS_WITHOUT_RETRIES:
|
---|
4438 | if (!pDevR3->pDrvMedia || s->fATAPI)
|
---|
4439 | goto abort_cmd;
|
---|
4440 | s->cSectorsPerIRQ = 1;
|
---|
4441 | s->iCurLBA = ataR3GetSector(s);
|
---|
4442 | ataR3StartTransfer(pDevIns, pCtl, s, ataR3GetNSectors(s) * s->cbSector, PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_READ_WRITE_SECTORS, ATAFN_SS_READ_SECTORS, false);
|
---|
4443 | break;
|
---|
4444 | case ATA_WRITE_SECTORS_EXT:
|
---|
4445 | s->fLBA48 = true;
|
---|
4446 | RT_FALL_THRU();
|
---|
4447 | case ATA_WRITE_SECTORS:
|
---|
4448 | case ATA_WRITE_SECTORS_WITHOUT_RETRIES:
|
---|
4449 | if (!pDevR3->pDrvMedia || s->fATAPI)
|
---|
4450 | goto abort_cmd;
|
---|
4451 | s->cSectorsPerIRQ = 1;
|
---|
4452 | s->iCurLBA = ataR3GetSector(s);
|
---|
4453 | ataR3StartTransfer(pDevIns, pCtl, s, ataR3GetNSectors(s) * s->cbSector, PDMMEDIATXDIR_TO_DEVICE, ATAFN_BT_READ_WRITE_SECTORS, ATAFN_SS_WRITE_SECTORS, false);
|
---|
4454 | break;
|
---|
4455 | case ATA_READ_MULTIPLE_EXT:
|
---|
4456 | s->fLBA48 = true;
|
---|
4457 | RT_FALL_THRU();
|
---|
4458 | case ATA_READ_MULTIPLE:
|
---|
4459 | if (!pDevR3->pDrvMedia || !s->cMultSectors || s->fATAPI)
|
---|
4460 | goto abort_cmd;
|
---|
4461 | s->cSectorsPerIRQ = s->cMultSectors;
|
---|
4462 | s->iCurLBA = ataR3GetSector(s);
|
---|
4463 | ataR3StartTransfer(pDevIns, pCtl, s, ataR3GetNSectors(s) * s->cbSector, PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_READ_WRITE_SECTORS, ATAFN_SS_READ_SECTORS, false);
|
---|
4464 | break;
|
---|
4465 | case ATA_WRITE_MULTIPLE_EXT:
|
---|
4466 | s->fLBA48 = true;
|
---|
4467 | RT_FALL_THRU();
|
---|
4468 | case ATA_WRITE_MULTIPLE:
|
---|
4469 | if (!pDevR3->pDrvMedia || !s->cMultSectors || s->fATAPI)
|
---|
4470 | goto abort_cmd;
|
---|
4471 | s->cSectorsPerIRQ = s->cMultSectors;
|
---|
4472 | s->iCurLBA = ataR3GetSector(s);
|
---|
4473 | ataR3StartTransfer(pDevIns, pCtl, s, ataR3GetNSectors(s) * s->cbSector, PDMMEDIATXDIR_TO_DEVICE, ATAFN_BT_READ_WRITE_SECTORS, ATAFN_SS_WRITE_SECTORS, false);
|
---|
4474 | break;
|
---|
4475 | case ATA_READ_DMA_EXT:
|
---|
4476 | s->fLBA48 = true;
|
---|
4477 | RT_FALL_THRU();
|
---|
4478 | case ATA_READ_DMA:
|
---|
4479 | case ATA_READ_DMA_WITHOUT_RETRIES:
|
---|
4480 | if (!pDevR3->pDrvMedia || s->fATAPI)
|
---|
4481 | goto abort_cmd;
|
---|
4482 | s->cSectorsPerIRQ = ATA_MAX_MULT_SECTORS;
|
---|
4483 | s->iCurLBA = ataR3GetSector(s);
|
---|
4484 | s->fDMA = true;
|
---|
4485 | ataR3StartTransfer(pDevIns, pCtl, s, ataR3GetNSectors(s) * s->cbSector, PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_READ_WRITE_SECTORS, ATAFN_SS_READ_SECTORS, false);
|
---|
4486 | break;
|
---|
4487 | case ATA_WRITE_DMA_EXT:
|
---|
4488 | s->fLBA48 = true;
|
---|
4489 | RT_FALL_THRU();
|
---|
4490 | case ATA_WRITE_DMA:
|
---|
4491 | case ATA_WRITE_DMA_WITHOUT_RETRIES:
|
---|
4492 | if (!pDevR3->pDrvMedia || s->fATAPI)
|
---|
4493 | goto abort_cmd;
|
---|
4494 | s->cSectorsPerIRQ = ATA_MAX_MULT_SECTORS;
|
---|
4495 | s->iCurLBA = ataR3GetSector(s);
|
---|
4496 | s->fDMA = true;
|
---|
4497 | ataR3StartTransfer(pDevIns, pCtl, s, ataR3GetNSectors(s) * s->cbSector, PDMMEDIATXDIR_TO_DEVICE, ATAFN_BT_READ_WRITE_SECTORS, ATAFN_SS_WRITE_SECTORS, false);
|
---|
4498 | break;
|
---|
4499 | case ATA_READ_NATIVE_MAX_ADDRESS_EXT:
|
---|
4500 | if (!pDevR3->pDrvMedia || s->fATAPI)
|
---|
4501 | goto abort_cmd;
|
---|
4502 | s->fLBA48 = true;
|
---|
4503 | ataR3SetSector(s, s->cTotalSectors - 1);
|
---|
4504 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4505 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4506 | break;
|
---|
4507 | case ATA_SEEK: /* Used by the SCO OpenServer. Command is marked as obsolete */
|
---|
4508 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4509 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4510 | break;
|
---|
4511 | case ATA_READ_NATIVE_MAX_ADDRESS:
|
---|
4512 | if (!pDevR3->pDrvMedia || s->fATAPI)
|
---|
4513 | goto abort_cmd;
|
---|
4514 | ataR3SetSector(s, RT_MIN(s->cTotalSectors, 1 << 28) - 1);
|
---|
4515 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4516 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4517 | break;
|
---|
4518 | case ATA_CHECK_POWER_MODE:
|
---|
4519 | s->uATARegNSector = 0xff; /* drive active or idle */
|
---|
4520 | ataR3CmdOK(pCtl, s, 0);
|
---|
4521 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4522 | break;
|
---|
4523 | case ATA_SET_FEATURES:
|
---|
4524 | Log2(("%s: feature=%#x\n", __FUNCTION__, s->uATARegFeature));
|
---|
4525 | if (!pDevR3->pDrvMedia)
|
---|
4526 | goto abort_cmd;
|
---|
4527 | switch (s->uATARegFeature)
|
---|
4528 | {
|
---|
4529 | case 0x02: /* write cache enable */
|
---|
4530 | Log2(("%s: write cache enable\n", __FUNCTION__));
|
---|
4531 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4532 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4533 | break;
|
---|
4534 | case 0xaa: /* read look-ahead enable */
|
---|
4535 | Log2(("%s: read look-ahead enable\n", __FUNCTION__));
|
---|
4536 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4537 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4538 | break;
|
---|
4539 | case 0x55: /* read look-ahead disable */
|
---|
4540 | Log2(("%s: read look-ahead disable\n", __FUNCTION__));
|
---|
4541 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4542 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4543 | break;
|
---|
4544 | case 0xcc: /* reverting to power-on defaults enable */
|
---|
4545 | Log2(("%s: revert to power-on defaults enable\n", __FUNCTION__));
|
---|
4546 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4547 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4548 | break;
|
---|
4549 | case 0x66: /* reverting to power-on defaults disable */
|
---|
4550 | Log2(("%s: revert to power-on defaults disable\n", __FUNCTION__));
|
---|
4551 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4552 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4553 | break;
|
---|
4554 | case 0x82: /* write cache disable */
|
---|
4555 | Log2(("%s: write cache disable\n", __FUNCTION__));
|
---|
4556 | /* As per the ATA/ATAPI-6 specs, a write cache disable
|
---|
4557 | * command MUST flush the write buffers to disc. */
|
---|
4558 | ataR3StartTransfer(pDevIns, pCtl, s, 0, PDMMEDIATXDIR_NONE, ATAFN_BT_NULL, ATAFN_SS_FLUSH, false);
|
---|
4559 | break;
|
---|
4560 | case 0x03: { /* set transfer mode */
|
---|
4561 | Log2(("%s: transfer mode %#04x\n", __FUNCTION__, s->uATARegNSector));
|
---|
4562 | switch (s->uATARegNSector & 0xf8)
|
---|
4563 | {
|
---|
4564 | case 0x00: /* PIO default */
|
---|
4565 | case 0x08: /* PIO mode */
|
---|
4566 | break;
|
---|
4567 | case ATA_MODE_MDMA: /* MDMA mode */
|
---|
4568 | s->uATATransferMode = (s->uATARegNSector & 0xf8) | RT_MIN(s->uATARegNSector & 0x07, ATA_MDMA_MODE_MAX);
|
---|
4569 | break;
|
---|
4570 | case ATA_MODE_UDMA: /* UDMA mode */
|
---|
4571 | s->uATATransferMode = (s->uATARegNSector & 0xf8) | RT_MIN(s->uATARegNSector & 0x07, ATA_UDMA_MODE_MAX);
|
---|
4572 | break;
|
---|
4573 | default:
|
---|
4574 | goto abort_cmd;
|
---|
4575 | }
|
---|
4576 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
4577 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4578 | break;
|
---|
4579 | }
|
---|
4580 | default:
|
---|
4581 | goto abort_cmd;
|
---|
4582 | }
|
---|
4583 | /*
|
---|
4584 | * OS/2 workarond:
|
---|
4585 | * The OS/2 IDE driver from MCP2 appears to rely on the feature register being
|
---|
4586 | * reset here. According to the specification, this is a driver bug as the register
|
---|
4587 | * contents are undefined after the call. This means we can just as well reset it.
|
---|
4588 | */
|
---|
4589 | s->uATARegFeature = 0;
|
---|
4590 | break;
|
---|
4591 | case ATA_FLUSH_CACHE_EXT:
|
---|
4592 | case ATA_FLUSH_CACHE:
|
---|
4593 | if (!pDevR3->pDrvMedia || s->fATAPI)
|
---|
4594 | goto abort_cmd;
|
---|
4595 | ataR3StartTransfer(pDevIns, pCtl, s, 0, PDMMEDIATXDIR_NONE, ATAFN_BT_NULL, ATAFN_SS_FLUSH, false);
|
---|
4596 | break;
|
---|
4597 | case ATA_STANDBY_IMMEDIATE:
|
---|
4598 | ataR3CmdOK(pCtl, s, 0);
|
---|
4599 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4600 | break;
|
---|
4601 | case ATA_IDLE_IMMEDIATE:
|
---|
4602 | LogRel(("PIIX3 ATA: LUN#%d: aborting current command\n", s->iLUN));
|
---|
4603 | ataR3AbortCurrentCommand(pDevIns, pCtl, s, false);
|
---|
4604 | break;
|
---|
4605 | case ATA_SLEEP:
|
---|
4606 | ataR3CmdOK(pCtl, s, 0);
|
---|
4607 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
4608 | break;
|
---|
4609 | /* ATAPI commands */
|
---|
4610 | case ATA_IDENTIFY_PACKET_DEVICE:
|
---|
4611 | if (s->fATAPI)
|
---|
4612 | ataR3StartTransfer(pDevIns, pCtl, s, 512, PDMMEDIATXDIR_FROM_DEVICE, ATAFN_BT_NULL, ATAFN_SS_ATAPI_IDENTIFY, false);
|
---|
4613 | else
|
---|
4614 | {
|
---|
4615 | ataR3CmdError(pCtl, s, ABRT_ERR);
|
---|
4616 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4617 | }
|
---|
4618 | break;
|
---|
4619 | case ATA_EXECUTE_DEVICE_DIAGNOSTIC:
|
---|
4620 | ataR3StartTransfer(pDevIns, pCtl, s, 0, PDMMEDIATXDIR_NONE, ATAFN_BT_NULL, ATAFN_SS_EXECUTE_DEVICE_DIAGNOSTIC, false);
|
---|
4621 | break;
|
---|
4622 | case ATA_DEVICE_RESET:
|
---|
4623 | if (!s->fATAPI)
|
---|
4624 | goto abort_cmd;
|
---|
4625 | LogRel(("PIIX3 ATA: LUN#%d: performing device RESET\n", s->iLUN));
|
---|
4626 | ataR3AbortCurrentCommand(pDevIns, pCtl, s, true);
|
---|
4627 | break;
|
---|
4628 | case ATA_PACKET:
|
---|
4629 | if (!s->fATAPI)
|
---|
4630 | goto abort_cmd;
|
---|
4631 | /* overlapping commands not supported */
|
---|
4632 | if (s->uATARegFeature & 0x02)
|
---|
4633 | goto abort_cmd;
|
---|
4634 | ataR3StartTransfer(pDevIns, pCtl, s, ATAPI_PACKET_SIZE, PDMMEDIATXDIR_TO_DEVICE, ATAFN_BT_PACKET, ATAFN_SS_PACKET, false);
|
---|
4635 | break;
|
---|
4636 | case ATA_DATA_SET_MANAGEMENT:
|
---|
4637 | if (!pDevR3->pDrvMedia || !pDevR3->pDrvMedia->pfnDiscard)
|
---|
4638 | goto abort_cmd;
|
---|
4639 | if ( !(s->uATARegFeature & UINT8_C(0x01))
|
---|
4640 | || (s->uATARegFeature & ~UINT8_C(0x01)))
|
---|
4641 | goto abort_cmd;
|
---|
4642 | s->fDMA = true;
|
---|
4643 | ataR3StartTransfer(pDevIns, pCtl, s, (s->uATARegNSectorHOB << 8 | s->uATARegNSector) * s->cbSector, PDMMEDIATXDIR_TO_DEVICE, ATAFN_BT_NULL, ATAFN_SS_TRIM, false);
|
---|
4644 | break;
|
---|
4645 | default:
|
---|
4646 | abort_cmd:
|
---|
4647 | ataR3CmdError(pCtl, s, ABRT_ERR);
|
---|
4648 | if (s->fATAPI)
|
---|
4649 | ataUnsetStatus(pCtl, s, ATA_STAT_READY);
|
---|
4650 | ataHCSetIRQ(pDevIns, pCtl, s); /* Shortcut, do not use AIO thread. */
|
---|
4651 | break;
|
---|
4652 | }
|
---|
4653 | }
|
---|
4654 |
|
---|
4655 | # endif /* IN_RING3 */
|
---|
4656 | #endif /* IN_RING0 || IN_RING3 */
|
---|
4657 |
|
---|
4658 | /*
|
---|
4659 | * Note: There are four distinct cases of port I/O handling depending on
|
---|
4660 | * which devices (if any) are attached to an IDE channel:
|
---|
4661 | *
|
---|
4662 | * 1) No device attached. No response to writes or reads (i.e. reads return
|
---|
4663 | * all bits set).
|
---|
4664 | *
|
---|
4665 | * 2) Both devices attached. Reads and writes are processed normally.
|
---|
4666 | *
|
---|
4667 | * 3) Device 0 only. If device 0 is selected, normal behavior applies. But
|
---|
4668 | * if Device 1 is selected, writes are still directed to Device 0 (except
|
---|
4669 | * commands are not executed), reads from control/command registers are
|
---|
4670 | * directed to Device 0, but status/alt status reads return 0. If Device 1
|
---|
4671 | * is a PACKET device, all reads return 0. See ATAPI-6 clause 9.16.1 and
|
---|
4672 | * Table 18 in clause 7.1.
|
---|
4673 | *
|
---|
4674 | * 4) Device 1 only - non-standard(!). Device 1 can't tell if Device 0 is
|
---|
4675 | * present or not and behaves the same. That means if Device 0 is selected,
|
---|
4676 | * Device 1 responds to writes (except commands are not executed) but does
|
---|
4677 | * not respond to reads. If Device 1 selected, normal behavior applies.
|
---|
4678 | * See ATAPI-6 clause 9.16.2 and Table 15 in clause 7.1.
|
---|
4679 | */
|
---|
4680 |
|
---|
4681 | static VBOXSTRICTRC ataIOPortWriteU8(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, uint32_t addr, uint32_t val, uintptr_t iCtl)
|
---|
4682 | {
|
---|
4683 | RT_NOREF(iCtl);
|
---|
4684 | Log2(("%s: LUN#%d write addr=%#x val=%#04x\n", __FUNCTION__, pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK].iLUN, addr, val));
|
---|
4685 | addr &= 7;
|
---|
4686 | switch (addr)
|
---|
4687 | {
|
---|
4688 | case 0:
|
---|
4689 | break;
|
---|
4690 | case 1: /* feature register */
|
---|
4691 | /* NOTE: data is written to the two drives */
|
---|
4692 | pCtl->aIfs[0].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4693 | pCtl->aIfs[1].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4694 | pCtl->aIfs[0].uATARegFeatureHOB = pCtl->aIfs[0].uATARegFeature;
|
---|
4695 | pCtl->aIfs[1].uATARegFeatureHOB = pCtl->aIfs[1].uATARegFeature;
|
---|
4696 | pCtl->aIfs[0].uATARegFeature = val;
|
---|
4697 | pCtl->aIfs[1].uATARegFeature = val;
|
---|
4698 | break;
|
---|
4699 | case 2: /* sector count */
|
---|
4700 | pCtl->aIfs[0].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4701 | pCtl->aIfs[1].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4702 | pCtl->aIfs[0].uATARegNSectorHOB = pCtl->aIfs[0].uATARegNSector;
|
---|
4703 | pCtl->aIfs[1].uATARegNSectorHOB = pCtl->aIfs[1].uATARegNSector;
|
---|
4704 | pCtl->aIfs[0].uATARegNSector = val;
|
---|
4705 | pCtl->aIfs[1].uATARegNSector = val;
|
---|
4706 | break;
|
---|
4707 | case 3: /* sector number */
|
---|
4708 | pCtl->aIfs[0].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4709 | pCtl->aIfs[1].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4710 | pCtl->aIfs[0].uATARegSectorHOB = pCtl->aIfs[0].uATARegSector;
|
---|
4711 | pCtl->aIfs[1].uATARegSectorHOB = pCtl->aIfs[1].uATARegSector;
|
---|
4712 | pCtl->aIfs[0].uATARegSector = val;
|
---|
4713 | pCtl->aIfs[1].uATARegSector = val;
|
---|
4714 | break;
|
---|
4715 | case 4: /* cylinder low */
|
---|
4716 | pCtl->aIfs[0].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4717 | pCtl->aIfs[1].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4718 | pCtl->aIfs[0].uATARegLCylHOB = pCtl->aIfs[0].uATARegLCyl;
|
---|
4719 | pCtl->aIfs[1].uATARegLCylHOB = pCtl->aIfs[1].uATARegLCyl;
|
---|
4720 | pCtl->aIfs[0].uATARegLCyl = val;
|
---|
4721 | pCtl->aIfs[1].uATARegLCyl = val;
|
---|
4722 | break;
|
---|
4723 | case 5: /* cylinder high */
|
---|
4724 | pCtl->aIfs[0].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4725 | pCtl->aIfs[1].uATARegDevCtl &= ~ATA_DEVCTL_HOB;
|
---|
4726 | pCtl->aIfs[0].uATARegHCylHOB = pCtl->aIfs[0].uATARegHCyl;
|
---|
4727 | pCtl->aIfs[1].uATARegHCylHOB = pCtl->aIfs[1].uATARegHCyl;
|
---|
4728 | pCtl->aIfs[0].uATARegHCyl = val;
|
---|
4729 | pCtl->aIfs[1].uATARegHCyl = val;
|
---|
4730 | break;
|
---|
4731 | case 6: /* drive/head */
|
---|
4732 | pCtl->aIfs[0].uATARegSelect = (val & ~0x10) | 0xa0;
|
---|
4733 | pCtl->aIfs[1].uATARegSelect = (val | 0x10) | 0xa0;
|
---|
4734 | if (((val >> 4) & ATA_SELECTED_IF_MASK) != pCtl->iSelectedIf)
|
---|
4735 | {
|
---|
4736 | /* select another drive */
|
---|
4737 | uintptr_t const iSelectedIf = (val >> 4) & ATA_SELECTED_IF_MASK;
|
---|
4738 | pCtl->iSelectedIf = (uint8_t)iSelectedIf;
|
---|
4739 | /* The IRQ line is multiplexed between the two drives, so
|
---|
4740 | * update the state when switching to another drive. Only need
|
---|
4741 | * to update interrupt line if it is enabled and there is a
|
---|
4742 | * state change. */
|
---|
4743 | if ( !(pCtl->aIfs[iSelectedIf].uATARegDevCtl & ATA_DEVCTL_DISABLE_IRQ)
|
---|
4744 | && pCtl->aIfs[iSelectedIf].fIrqPending != pCtl->aIfs[iSelectedIf ^ 1].fIrqPending)
|
---|
4745 | {
|
---|
4746 | if (pCtl->aIfs[iSelectedIf].fIrqPending)
|
---|
4747 | {
|
---|
4748 | Log2(("%s: LUN#%d asserting IRQ (drive select change)\n", __FUNCTION__, pCtl->aIfs[iSelectedIf].iLUN));
|
---|
4749 | /* The BMDMA unit unconditionally sets BM_STATUS_INT if
|
---|
4750 | * the interrupt line is asserted. It monitors the line
|
---|
4751 | * for a rising edge. */
|
---|
4752 | pCtl->BmDma.u8Status |= BM_STATUS_INT;
|
---|
4753 | if (pCtl->irq == 16)
|
---|
4754 | PDMDevHlpPCISetIrq(pDevIns, 0, 1);
|
---|
4755 | else
|
---|
4756 | PDMDevHlpISASetIrq(pDevIns, pCtl->irq, 1);
|
---|
4757 | }
|
---|
4758 | else
|
---|
4759 | {
|
---|
4760 | Log2(("%s: LUN#%d deasserting IRQ (drive select change)\n", __FUNCTION__, pCtl->aIfs[iSelectedIf].iLUN));
|
---|
4761 | if (pCtl->irq == 16)
|
---|
4762 | PDMDevHlpPCISetIrq(pDevIns, 0, 0);
|
---|
4763 | else
|
---|
4764 | PDMDevHlpISASetIrq(pDevIns, pCtl->irq, 0);
|
---|
4765 | }
|
---|
4766 | }
|
---|
4767 | }
|
---|
4768 | break;
|
---|
4769 | default:
|
---|
4770 | case 7: /* command */
|
---|
4771 | {
|
---|
4772 | /* ignore commands to non-existent device */
|
---|
4773 | uintptr_t iSelectedIf = pCtl->iSelectedIf & ATA_SELECTED_IF_MASK;
|
---|
4774 | PATADEVSTATE pDev = &pCtl->aIfs[iSelectedIf];
|
---|
4775 | if (iSelectedIf && !pDev->fPresent) /** @todo r=bird the iSelectedIf test here looks bogus... explain. */
|
---|
4776 | break;
|
---|
4777 | #ifndef IN_RING3
|
---|
4778 | /* Don't do anything complicated in GC */
|
---|
4779 | return VINF_IOM_R3_IOPORT_WRITE;
|
---|
4780 | #else /* IN_RING3 */
|
---|
4781 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATER3);
|
---|
4782 | ataUnsetIRQ(pDevIns, pCtl, &pCtl->aIfs[iSelectedIf]);
|
---|
4783 | ataR3ParseCmd(pDevIns, pCtl, &pCtl->aIfs[iSelectedIf], &pThisCC->aCts[iCtl].aIfs[iSelectedIf], val);
|
---|
4784 | break;
|
---|
4785 | #endif /* !IN_RING3 */
|
---|
4786 | }
|
---|
4787 | }
|
---|
4788 | return VINF_SUCCESS;
|
---|
4789 | }
|
---|
4790 |
|
---|
4791 |
|
---|
4792 | static VBOXSTRICTRC ataIOPortReadU8(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, uint32_t addr, uint32_t *pu32)
|
---|
4793 | {
|
---|
4794 | PATADEVSTATE s = &pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK];
|
---|
4795 | uint32_t val;
|
---|
4796 | bool fHOB;
|
---|
4797 |
|
---|
4798 | /* Check if the guest is reading from a non-existent device. */
|
---|
4799 | if (RT_LIKELY(s->fPresent))
|
---|
4800 | { /* likely */ }
|
---|
4801 | else
|
---|
4802 | {
|
---|
4803 | if (pCtl->iSelectedIf) /* Device 1 selected, Device 0 responding for it. */
|
---|
4804 | {
|
---|
4805 | Assert(pCtl->aIfs[0].fPresent);
|
---|
4806 |
|
---|
4807 | /* When an ATAPI device 0 responds for non-present device 1, it generally
|
---|
4808 | * returns zeros on reads. The Error register is an exception. See clause 7.1,
|
---|
4809 | * table 16 in ATA-6 specification.
|
---|
4810 | */
|
---|
4811 | if (((addr & 7) != 1) && pCtl->aIfs[0].fATAPI)
|
---|
4812 | {
|
---|
4813 | Log2(("%s: addr=%#x, val=0: LUN#%d not attached/LUN#%d ATAPI\n", __FUNCTION__, addr, s->iLUN, pCtl->aIfs[0].iLUN));
|
---|
4814 | *pu32 = 0;
|
---|
4815 | return VINF_SUCCESS;
|
---|
4816 | }
|
---|
4817 | /* Else handle normally. */
|
---|
4818 | }
|
---|
4819 | else /* Device 0 selected (but not present). */
|
---|
4820 | {
|
---|
4821 | /* Because device 1 has no way to tell if there is device 0, the behavior is the same
|
---|
4822 | * as for an empty bus; see comments in ataIOPortReadEmptyBus(). Note that EFI (TianoCore)
|
---|
4823 | * relies on this behavior when detecting devices.
|
---|
4824 | */
|
---|
4825 | *pu32 = ATA_EMPTY_BUS_DATA;
|
---|
4826 | Log2(("%s: addr=%#x: LUN#%d not attached, val=%#02x\n", __FUNCTION__, addr, s->iLUN, *pu32));
|
---|
4827 | return VINF_SUCCESS;
|
---|
4828 | }
|
---|
4829 | }
|
---|
4830 |
|
---|
4831 | fHOB = !!(s->uATARegDevCtl & (1 << 7));
|
---|
4832 | switch (addr & 7)
|
---|
4833 | {
|
---|
4834 | case 0: /* data register */
|
---|
4835 | val = 0xff;
|
---|
4836 | break;
|
---|
4837 | case 1: /* error register */
|
---|
4838 | /* The ATA specification is very terse when it comes to specifying
|
---|
4839 | * the precise effects of reading back the error/feature register.
|
---|
4840 | * The error register (read-only) shares the register number with
|
---|
4841 | * the feature register (write-only), so it seems that it's not
|
---|
4842 | * necessary to support the usual HOB readback here. */
|
---|
4843 | if (!s->fPresent)
|
---|
4844 | val = 0;
|
---|
4845 | else
|
---|
4846 | val = s->uATARegError;
|
---|
4847 | break;
|
---|
4848 | case 2: /* sector count */
|
---|
4849 | if (fHOB)
|
---|
4850 | val = s->uATARegNSectorHOB;
|
---|
4851 | else
|
---|
4852 | val = s->uATARegNSector;
|
---|
4853 | break;
|
---|
4854 | case 3: /* sector number */
|
---|
4855 | if (fHOB)
|
---|
4856 | val = s->uATARegSectorHOB;
|
---|
4857 | else
|
---|
4858 | val = s->uATARegSector;
|
---|
4859 | break;
|
---|
4860 | case 4: /* cylinder low */
|
---|
4861 | if (fHOB)
|
---|
4862 | val = s->uATARegLCylHOB;
|
---|
4863 | else
|
---|
4864 | val = s->uATARegLCyl;
|
---|
4865 | break;
|
---|
4866 | case 5: /* cylinder high */
|
---|
4867 | if (fHOB)
|
---|
4868 | val = s->uATARegHCylHOB;
|
---|
4869 | else
|
---|
4870 | val = s->uATARegHCyl;
|
---|
4871 | break;
|
---|
4872 | case 6: /* drive/head */
|
---|
4873 | /* This register must always work as long as there is at least
|
---|
4874 | * one drive attached to the controller. It is common between
|
---|
4875 | * both drives anyway (completely identical content). */
|
---|
4876 | if (!pCtl->aIfs[0].fPresent && !pCtl->aIfs[1].fPresent)
|
---|
4877 | val = 0;
|
---|
4878 | else
|
---|
4879 | val = s->uATARegSelect;
|
---|
4880 | break;
|
---|
4881 | default:
|
---|
4882 | case 7: /* primary status */
|
---|
4883 | {
|
---|
4884 | if (!s->fPresent)
|
---|
4885 | val = 0;
|
---|
4886 | else
|
---|
4887 | val = s->uATARegStatus;
|
---|
4888 |
|
---|
4889 | /* Give the async I/O thread an opportunity to make progress,
|
---|
4890 | * don't let it starve by guests polling frequently. EMT has a
|
---|
4891 | * lower priority than the async I/O thread, but sometimes the
|
---|
4892 | * host OS doesn't care. With some guests we are only allowed to
|
---|
4893 | * be busy for about 5 milliseconds in some situations. Note that
|
---|
4894 | * this is no guarantee for any other VBox thread getting
|
---|
4895 | * scheduled, so this just lowers the CPU load a bit when drives
|
---|
4896 | * are busy. It cannot help with timing problems. */
|
---|
4897 | if (val & ATA_STAT_BUSY)
|
---|
4898 | {
|
---|
4899 | #ifdef IN_RING3
|
---|
4900 | /* @bugref{1960}: Don't yield all the time, unless it's a reset (can be tricky). */
|
---|
4901 | bool fYield = (s->cBusyStatusHackR3++ & s->cBusyStatusHackR3Rate) == 0
|
---|
4902 | || pCtl->fReset;
|
---|
4903 |
|
---|
4904 | ataR3LockLeave(pDevIns, pCtl);
|
---|
4905 |
|
---|
4906 | /*
|
---|
4907 | * The thread might be stuck in an I/O operation due to a high I/O
|
---|
4908 | * load on the host (see @bugref{3301}). To perform the reset
|
---|
4909 | * successfully we interrupt the operation by sending a signal to
|
---|
4910 | * the thread if the thread didn't responded in 10ms.
|
---|
4911 | *
|
---|
4912 | * This works only on POSIX hosts (Windows has a CancelSynchronousIo
|
---|
4913 | * function which does the same but it was introduced with Vista) but
|
---|
4914 | * so far this hang was only observed on Linux and Mac OS X.
|
---|
4915 | *
|
---|
4916 | * This is a workaround and needs to be solved properly.
|
---|
4917 | */
|
---|
4918 | if (pCtl->fReset)
|
---|
4919 | {
|
---|
4920 | uint64_t u64ResetTimeStop = RTTimeMilliTS();
|
---|
4921 | if (u64ResetTimeStop - pCtl->u64ResetTime >= 10)
|
---|
4922 | {
|
---|
4923 | LogRel(("PIIX3 ATA LUN#%d: Async I/O thread probably stuck in operation, interrupting\n", s->iLUN));
|
---|
4924 | pCtl->u64ResetTime = u64ResetTimeStop;
|
---|
4925 | # ifndef RT_OS_WINDOWS /* We've got this API on windows, but it doesn't necessarily interrupt I/O. */
|
---|
4926 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATER3);
|
---|
4927 | PATACONTROLLERR3 pCtlR3 = &RT_SAFE_SUBSCRIPT(pThisCC->aCts, pCtl->iCtl);
|
---|
4928 | RTThreadPoke(pCtlR3->hAsyncIOThread);
|
---|
4929 | # endif
|
---|
4930 | Assert(fYield);
|
---|
4931 | }
|
---|
4932 | }
|
---|
4933 |
|
---|
4934 | if (fYield)
|
---|
4935 | {
|
---|
4936 | STAM_REL_PROFILE_ADV_START(&s->StatStatusYields, a);
|
---|
4937 | RTThreadYield();
|
---|
4938 | STAM_REL_PROFILE_ADV_STOP(&s->StatStatusYields, a);
|
---|
4939 | }
|
---|
4940 | ASMNopPause();
|
---|
4941 |
|
---|
4942 | ataR3LockEnter(pDevIns, pCtl);
|
---|
4943 |
|
---|
4944 | val = s->uATARegStatus;
|
---|
4945 | #else /* !IN_RING3 */
|
---|
4946 | /* Cannot yield CPU in raw-mode and ring-0 context. And switching
|
---|
4947 | * to host context for each and every busy status is too costly,
|
---|
4948 | * especially on SMP systems where we don't gain much by
|
---|
4949 | * yielding the CPU to someone else. */
|
---|
4950 | if ((s->cBusyStatusHackRZ++ & s->cBusyStatusHackRZRate) == 1)
|
---|
4951 | {
|
---|
4952 | s->cBusyStatusHackR3 = 0; /* Forces a yield. */
|
---|
4953 | return VINF_IOM_R3_IOPORT_READ;
|
---|
4954 | }
|
---|
4955 | #endif /* !IN_RING3 */
|
---|
4956 | }
|
---|
4957 | else
|
---|
4958 | {
|
---|
4959 | s->cBusyStatusHackRZ = 0;
|
---|
4960 | s->cBusyStatusHackR3 = 0;
|
---|
4961 | }
|
---|
4962 | ataUnsetIRQ(pDevIns, pCtl, s);
|
---|
4963 | break;
|
---|
4964 | }
|
---|
4965 | }
|
---|
4966 | Log2(("%s: LUN#%d addr=%#x val=%#04x\n", __FUNCTION__, s->iLUN, addr, val));
|
---|
4967 | *pu32 = val;
|
---|
4968 | return VINF_SUCCESS;
|
---|
4969 | }
|
---|
4970 |
|
---|
4971 |
|
---|
4972 | /*
|
---|
4973 | * Read the Alternate status register. Does not affect interrupts.
|
---|
4974 | */
|
---|
4975 | static uint32_t ataStatusRead(PATACONTROLLER pCtl, uint32_t uIoPortForLog)
|
---|
4976 | {
|
---|
4977 | PATADEVSTATE s = &pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK];
|
---|
4978 | uint32_t val;
|
---|
4979 | RT_NOREF(uIoPortForLog);
|
---|
4980 |
|
---|
4981 | Assert(pCtl->aIfs[0].fPresent || pCtl->aIfs[1].fPresent); /* Channel must not be empty. */
|
---|
4982 | if (pCtl->iSelectedIf == 1 && !s->fPresent)
|
---|
4983 | val = 0; /* Device 1 selected, Device 0 responding for it. */
|
---|
4984 | else
|
---|
4985 | val = s->uATARegStatus;
|
---|
4986 | Log2(("%s: LUN#%d read addr=%#x val=%#04x\n", __FUNCTION__, pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK].iLUN, uIoPortForLog, val));
|
---|
4987 | return val;
|
---|
4988 | }
|
---|
4989 |
|
---|
4990 | static int ataControlWrite(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, uint32_t val, uint32_t uIoPortForLog)
|
---|
4991 | {
|
---|
4992 | RT_NOREF(uIoPortForLog);
|
---|
4993 | #ifndef IN_RING3
|
---|
4994 | if ((val ^ pCtl->aIfs[0].uATARegDevCtl) & ATA_DEVCTL_RESET)
|
---|
4995 | return VINF_IOM_R3_IOPORT_WRITE; /* The RESET stuff is too complicated for RC+R0. */
|
---|
4996 | #endif /* !IN_RING3 */
|
---|
4997 |
|
---|
4998 | Log2(("%s: LUN#%d write addr=%#x val=%#04x\n", __FUNCTION__, pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK].iLUN, uIoPortForLog, val));
|
---|
4999 | /* RESET is common for both drives attached to a controller. */
|
---|
5000 | if ( !(pCtl->aIfs[0].uATARegDevCtl & ATA_DEVCTL_RESET)
|
---|
5001 | && (val & ATA_DEVCTL_RESET))
|
---|
5002 | {
|
---|
5003 | #ifdef IN_RING3
|
---|
5004 | /* Software RESET low to high */
|
---|
5005 | int32_t uCmdWait0 = -1;
|
---|
5006 | int32_t uCmdWait1 = -1;
|
---|
5007 | uint64_t uNow = RTTimeNanoTS();
|
---|
5008 | if (pCtl->aIfs[0].u64CmdTS)
|
---|
5009 | uCmdWait0 = (uNow - pCtl->aIfs[0].u64CmdTS) / 1000;
|
---|
5010 | if (pCtl->aIfs[1].u64CmdTS)
|
---|
5011 | uCmdWait1 = (uNow - pCtl->aIfs[1].u64CmdTS) / 1000;
|
---|
5012 | LogRel(("PIIX3 ATA: Ctl#%d: RESET, DevSel=%d AIOIf=%d CmdIf0=%#04x (%d usec ago) CmdIf1=%#04x (%d usec ago)\n",
|
---|
5013 | pCtl->iCtl, pCtl->iSelectedIf, pCtl->iAIOIf,
|
---|
5014 | pCtl->aIfs[0].uATARegCommand, uCmdWait0,
|
---|
5015 | pCtl->aIfs[1].uATARegCommand, uCmdWait1));
|
---|
5016 | pCtl->fReset = true;
|
---|
5017 | /* Everything must be done after the reset flag is set, otherwise
|
---|
5018 | * there are unavoidable races with the currently executing request
|
---|
5019 | * (which might just finish in the mean time). */
|
---|
5020 | pCtl->fChainedTransfer = false;
|
---|
5021 | for (uint32_t i = 0; i < RT_ELEMENTS(pCtl->aIfs); i++)
|
---|
5022 | {
|
---|
5023 | ataR3ResetDevice(pDevIns, pCtl, &pCtl->aIfs[i]);
|
---|
5024 | /* The following cannot be done using ataSetStatusValue() since the
|
---|
5025 | * reset flag is already set, which suppresses all status changes. */
|
---|
5026 | pCtl->aIfs[i].uATARegStatus = ATA_STAT_BUSY | ATA_STAT_SEEK;
|
---|
5027 | Log2(("%s: LUN#%d status %#04x\n", __FUNCTION__, pCtl->aIfs[i].iLUN, pCtl->aIfs[i].uATARegStatus));
|
---|
5028 | pCtl->aIfs[i].uATARegError = 0x01;
|
---|
5029 | }
|
---|
5030 | pCtl->iSelectedIf = 0;
|
---|
5031 | ataR3AsyncIOClearRequests(pDevIns, pCtl);
|
---|
5032 | Log2(("%s: Ctl#%d: message to async I/O thread, resetA\n", __FUNCTION__, pCtl->iCtl));
|
---|
5033 | if (val & ATA_DEVCTL_HOB)
|
---|
5034 | {
|
---|
5035 | val &= ~ATA_DEVCTL_HOB;
|
---|
5036 | Log2(("%s: ignored setting HOB\n", __FUNCTION__));
|
---|
5037 | }
|
---|
5038 |
|
---|
5039 | /* Save the timestamp we started the reset. */
|
---|
5040 | pCtl->u64ResetTime = RTTimeMilliTS();
|
---|
5041 |
|
---|
5042 | /* Issue the reset request now. */
|
---|
5043 | ataHCAsyncIOPutRequest(pDevIns, pCtl, &g_ataResetARequest);
|
---|
5044 | #else /* !IN_RING3 */
|
---|
5045 | AssertMsgFailed(("RESET handling is too complicated for GC\n"));
|
---|
5046 | #endif /* IN_RING3 */
|
---|
5047 | }
|
---|
5048 | else if ( (pCtl->aIfs[0].uATARegDevCtl & ATA_DEVCTL_RESET)
|
---|
5049 | && !(val & ATA_DEVCTL_RESET))
|
---|
5050 | {
|
---|
5051 | #ifdef IN_RING3
|
---|
5052 | /* Software RESET high to low */
|
---|
5053 | Log(("%s: deasserting RESET\n", __FUNCTION__));
|
---|
5054 | Log2(("%s: Ctl#%d: message to async I/O thread, resetC\n", __FUNCTION__, pCtl->iCtl));
|
---|
5055 | if (val & ATA_DEVCTL_HOB)
|
---|
5056 | {
|
---|
5057 | val &= ~ATA_DEVCTL_HOB;
|
---|
5058 | Log2(("%s: ignored setting HOB\n", __FUNCTION__));
|
---|
5059 | }
|
---|
5060 | ataHCAsyncIOPutRequest(pDevIns, pCtl, &g_ataResetCRequest);
|
---|
5061 | #else /* !IN_RING3 */
|
---|
5062 | AssertMsgFailed(("RESET handling is too complicated for GC\n"));
|
---|
5063 | #endif /* IN_RING3 */
|
---|
5064 | }
|
---|
5065 |
|
---|
5066 | /* Change of interrupt disable flag. Update interrupt line if interrupt
|
---|
5067 | * is pending on the current interface. */
|
---|
5068 | if ( ((val ^ pCtl->aIfs[0].uATARegDevCtl) & ATA_DEVCTL_DISABLE_IRQ)
|
---|
5069 | && pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK].fIrqPending)
|
---|
5070 | {
|
---|
5071 | if (!(val & ATA_DEVCTL_DISABLE_IRQ))
|
---|
5072 | {
|
---|
5073 | Log2(("%s: LUN#%d asserting IRQ (interrupt disable change)\n", __FUNCTION__, pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK].iLUN));
|
---|
5074 | /* The BMDMA unit unconditionally sets BM_STATUS_INT if the
|
---|
5075 | * interrupt line is asserted. It monitors the line for a rising
|
---|
5076 | * edge. */
|
---|
5077 | pCtl->BmDma.u8Status |= BM_STATUS_INT;
|
---|
5078 | if (pCtl->irq == 16)
|
---|
5079 | PDMDevHlpPCISetIrq(pDevIns, 0, 1);
|
---|
5080 | else
|
---|
5081 | PDMDevHlpISASetIrq(pDevIns, pCtl->irq, 1);
|
---|
5082 | }
|
---|
5083 | else
|
---|
5084 | {
|
---|
5085 | Log2(("%s: LUN#%d deasserting IRQ (interrupt disable change)\n", __FUNCTION__, pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK].iLUN));
|
---|
5086 | if (pCtl->irq == 16)
|
---|
5087 | PDMDevHlpPCISetIrq(pDevIns, 0, 0);
|
---|
5088 | else
|
---|
5089 | PDMDevHlpISASetIrq(pDevIns, pCtl->irq, 0);
|
---|
5090 | }
|
---|
5091 | }
|
---|
5092 |
|
---|
5093 | if (val & ATA_DEVCTL_HOB)
|
---|
5094 | Log2(("%s: set HOB\n", __FUNCTION__));
|
---|
5095 |
|
---|
5096 | pCtl->aIfs[0].uATARegDevCtl = val;
|
---|
5097 | pCtl->aIfs[1].uATARegDevCtl = val;
|
---|
5098 |
|
---|
5099 | return VINF_SUCCESS;
|
---|
5100 | }
|
---|
5101 |
|
---|
5102 | #if defined(IN_RING0) || defined(IN_RING3)
|
---|
5103 |
|
---|
5104 | static void ataHCPIOTransfer(PPDMDEVINS pDevIns, PATACONTROLLER pCtl)
|
---|
5105 | {
|
---|
5106 | PATADEVSTATE s;
|
---|
5107 |
|
---|
5108 | s = &pCtl->aIfs[pCtl->iAIOIf & ATA_SELECTED_IF_MASK];
|
---|
5109 | Log3(("%s: if=%p\n", __FUNCTION__, s));
|
---|
5110 |
|
---|
5111 | if (s->cbTotalTransfer && s->iIOBufferCur > s->iIOBufferEnd)
|
---|
5112 | {
|
---|
5113 | # ifdef IN_RING3
|
---|
5114 | LogRel(("PIIX3 ATA: LUN#%d: %s data in the middle of a PIO transfer - VERY SLOW\n",
|
---|
5115 | s->iLUN, s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE ? "loading" : "storing"));
|
---|
5116 | /* Any guest OS that triggers this case has a pathetic ATA driver.
|
---|
5117 | * In a real system it would block the CPU via IORDY, here we do it
|
---|
5118 | * very similarly by not continuing with the current instruction
|
---|
5119 | * until the transfer to/from the storage medium is completed. */
|
---|
5120 | uint8_t const iSourceSink = s->iSourceSink;
|
---|
5121 | if ( iSourceSink != ATAFN_SS_NULL
|
---|
5122 | && iSourceSink < RT_ELEMENTS(g_apfnSourceSinkFuncs))
|
---|
5123 | {
|
---|
5124 | bool fRedo;
|
---|
5125 | uint8_t status = s->uATARegStatus;
|
---|
5126 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATER3);
|
---|
5127 | PATADEVSTATER3 pDevR3 = &RT_SAFE_SUBSCRIPT(RT_SAFE_SUBSCRIPT(pThisCC->aCts, pCtl->iCtl).aIfs, s->iDev);
|
---|
5128 |
|
---|
5129 | ataSetStatusValue(pCtl, s, ATA_STAT_BUSY);
|
---|
5130 | Log2(("%s: calling source/sink function\n", __FUNCTION__));
|
---|
5131 | fRedo = g_apfnSourceSinkFuncs[iSourceSink](pDevIns, pCtl, s, pDevR3);
|
---|
5132 | pCtl->fRedo = fRedo;
|
---|
5133 | if (RT_UNLIKELY(fRedo))
|
---|
5134 | return;
|
---|
5135 | ataSetStatusValue(pCtl, s, status);
|
---|
5136 | s->iIOBufferCur = 0;
|
---|
5137 | s->iIOBufferEnd = s->cbElementaryTransfer;
|
---|
5138 | }
|
---|
5139 | else
|
---|
5140 | Assert(iSourceSink == ATAFN_SS_NULL);
|
---|
5141 | # else
|
---|
5142 | AssertReleaseFailed();
|
---|
5143 | # endif
|
---|
5144 | }
|
---|
5145 | if (s->cbTotalTransfer)
|
---|
5146 | {
|
---|
5147 | if (s->fATAPITransfer)
|
---|
5148 | ataHCPIOTransferLimitATAPI(s);
|
---|
5149 |
|
---|
5150 | if (s->uTxDir == PDMMEDIATXDIR_TO_DEVICE && s->cbElementaryTransfer > s->cbTotalTransfer)
|
---|
5151 | s->cbElementaryTransfer = s->cbTotalTransfer;
|
---|
5152 |
|
---|
5153 | Log2(("%s: %s tx_size=%d elem_tx_size=%d index=%d end=%d\n",
|
---|
5154 | __FUNCTION__, s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE ? "T2I" : "I2T",
|
---|
5155 | s->cbTotalTransfer, s->cbElementaryTransfer,
|
---|
5156 | s->iIOBufferCur, s->iIOBufferEnd));
|
---|
5157 | ataHCPIOTransferStart(pCtl, s, s->iIOBufferCur, s->cbElementaryTransfer);
|
---|
5158 | s->cbTotalTransfer -= s->cbElementaryTransfer;
|
---|
5159 | s->iIOBufferCur += s->cbElementaryTransfer;
|
---|
5160 |
|
---|
5161 | if (s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE && s->cbElementaryTransfer > s->cbTotalTransfer)
|
---|
5162 | s->cbElementaryTransfer = s->cbTotalTransfer;
|
---|
5163 | }
|
---|
5164 | else
|
---|
5165 | ataHCPIOTransferStop(pDevIns, pCtl, s);
|
---|
5166 | }
|
---|
5167 |
|
---|
5168 |
|
---|
5169 | DECLINLINE(void) ataHCPIOTransferFinish(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATADEVSTATE s)
|
---|
5170 | {
|
---|
5171 | /* Do not interfere with RESET processing if the PIO transfer finishes
|
---|
5172 | * while the RESET line is asserted. */
|
---|
5173 | if (pCtl->fReset)
|
---|
5174 | {
|
---|
5175 | Log2(("%s: Ctl#%d: suppressed continuing PIO transfer as RESET is active\n", __FUNCTION__, pCtl->iCtl));
|
---|
5176 | return;
|
---|
5177 | }
|
---|
5178 |
|
---|
5179 | if ( s->uTxDir == PDMMEDIATXDIR_TO_DEVICE
|
---|
5180 | || ( s->iSourceSink != ATAFN_SS_NULL
|
---|
5181 | && s->iIOBufferCur >= s->iIOBufferEnd))
|
---|
5182 | {
|
---|
5183 | /* Need to continue the transfer in the async I/O thread. This is
|
---|
5184 | * the case for write operations or generally for not yet finished
|
---|
5185 | * transfers (some data might need to be read). */
|
---|
5186 | ataSetStatus(pCtl, s, ATA_STAT_BUSY);
|
---|
5187 | ataUnsetStatus(pCtl, s, ATA_STAT_READY | ATA_STAT_DRQ);
|
---|
5188 |
|
---|
5189 | Log2(("%s: Ctl#%d: message to async I/O thread, continuing PIO transfer\n", __FUNCTION__, pCtl->iCtl));
|
---|
5190 | ataHCAsyncIOPutRequest(pDevIns, pCtl, &g_ataPIORequest);
|
---|
5191 | }
|
---|
5192 | else
|
---|
5193 | {
|
---|
5194 | /* Either everything finished (though some data might still be pending)
|
---|
5195 | * or some data is pending before the next read is due. */
|
---|
5196 |
|
---|
5197 | /* Continue a previously started transfer. */
|
---|
5198 | ataUnsetStatus(pCtl, s, ATA_STAT_DRQ);
|
---|
5199 | ataSetStatus(pCtl, s, ATA_STAT_READY);
|
---|
5200 |
|
---|
5201 | if (s->cbTotalTransfer)
|
---|
5202 | {
|
---|
5203 | /* There is more to transfer, happens usually for large ATAPI
|
---|
5204 | * reads - the protocol limits the chunk size to 65534 bytes. */
|
---|
5205 | ataHCPIOTransfer(pDevIns, pCtl);
|
---|
5206 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
5207 | }
|
---|
5208 | else
|
---|
5209 | {
|
---|
5210 | Log2(("%s: Ctl#%d: skipping message to async I/O thread, ending PIO transfer\n", __FUNCTION__, pCtl->iCtl));
|
---|
5211 | /* Finish PIO transfer. */
|
---|
5212 | ataHCPIOTransfer(pDevIns, pCtl);
|
---|
5213 | Assert(!pCtl->fRedo);
|
---|
5214 | }
|
---|
5215 | }
|
---|
5216 | }
|
---|
5217 |
|
---|
5218 | #endif /* IN_RING0 || IN_RING3 */
|
---|
5219 |
|
---|
5220 | /**
|
---|
5221 | * Fallback for ataCopyPioData124 that handles unaligned and out of bounds cases.
|
---|
5222 | *
|
---|
5223 | * @param pIf The device interface to work with.
|
---|
5224 | * @param pbDst The destination buffer.
|
---|
5225 | * @param pbSrc The source buffer.
|
---|
5226 | * @param offStart The start offset (iIOBufferPIODataStart).
|
---|
5227 | * @param cbCopy The number of bytes to copy, either 1, 2 or 4 bytes.
|
---|
5228 | */
|
---|
5229 | DECL_NO_INLINE(static, void) ataCopyPioData124Slow(PATADEVSTATE pIf, uint8_t *pbDst, const uint8_t *pbSrc,
|
---|
5230 | uint32_t offStart, uint32_t cbCopy)
|
---|
5231 | {
|
---|
5232 | uint32_t const offNext = offStart + cbCopy;
|
---|
5233 | uint32_t const cbIOBuffer = RT_MIN(pIf->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE);
|
---|
5234 |
|
---|
5235 | if (offStart + cbCopy > cbIOBuffer)
|
---|
5236 | {
|
---|
5237 | Log(("%s: cbCopy=%#x offStart=%#x cbIOBuffer=%#x offNext=%#x (iIOBufferPIODataEnd=%#x)\n",
|
---|
5238 | __FUNCTION__, cbCopy, offStart, cbIOBuffer, offNext, pIf->iIOBufferPIODataEnd));
|
---|
5239 | if (offStart < cbIOBuffer)
|
---|
5240 | cbCopy = cbIOBuffer - offStart;
|
---|
5241 | else
|
---|
5242 | cbCopy = 0;
|
---|
5243 | }
|
---|
5244 |
|
---|
5245 | switch (cbCopy)
|
---|
5246 | {
|
---|
5247 | case 4: pbDst[3] = pbSrc[3]; RT_FALL_THRU();
|
---|
5248 | case 3: pbDst[2] = pbSrc[2]; RT_FALL_THRU();
|
---|
5249 | case 2: pbDst[1] = pbSrc[1]; RT_FALL_THRU();
|
---|
5250 | case 1: pbDst[0] = pbSrc[0]; RT_FALL_THRU();
|
---|
5251 | case 0: break;
|
---|
5252 | default: AssertFailed(); /* impossible */
|
---|
5253 | }
|
---|
5254 |
|
---|
5255 | pIf->iIOBufferPIODataStart = offNext;
|
---|
5256 |
|
---|
5257 | }
|
---|
5258 |
|
---|
5259 |
|
---|
5260 | /**
|
---|
5261 | * Work for ataDataWrite & ataDataRead that copies data without using memcpy.
|
---|
5262 | *
|
---|
5263 | * This also updates pIf->iIOBufferPIODataStart.
|
---|
5264 | *
|
---|
5265 | * The two buffers are either stack (32-bit aligned) or somewhere within
|
---|
5266 | * pIf->abIOBuffer.
|
---|
5267 | *
|
---|
5268 | * @param pIf The device interface to work with.
|
---|
5269 | * @param pbDst The destination buffer.
|
---|
5270 | * @param pbSrc The source buffer.
|
---|
5271 | * @param offStart The start offset (iIOBufferPIODataStart).
|
---|
5272 | * @param cbCopy The number of bytes to copy, either 1, 2 or 4 bytes.
|
---|
5273 | */
|
---|
5274 | DECLINLINE(void) ataCopyPioData124(PATADEVSTATE pIf, uint8_t *pbDst, const uint8_t *pbSrc, uint32_t offStart, uint32_t cbCopy)
|
---|
5275 | {
|
---|
5276 | /*
|
---|
5277 | * Quick bounds checking can be done by checking that the abIOBuffer offset
|
---|
5278 | * (iIOBufferPIODataStart) is aligned at the transfer size (which is ASSUMED
|
---|
5279 | * to be 1, 2 or 4). However, since we're paranoid and don't currently
|
---|
5280 | * trust iIOBufferPIODataEnd to be within bounds, we current check against the
|
---|
5281 | * IO buffer size too.
|
---|
5282 | */
|
---|
5283 | Assert(cbCopy == 1 || cbCopy == 2 || cbCopy == 4);
|
---|
5284 | if (RT_LIKELY( !(offStart & (cbCopy - 1))
|
---|
5285 | && offStart + cbCopy <= RT_MIN(pIf->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE)))
|
---|
5286 | {
|
---|
5287 | switch (cbCopy)
|
---|
5288 | {
|
---|
5289 | case 4: *(uint32_t *)pbDst = *(uint32_t const *)pbSrc; break;
|
---|
5290 | case 2: *(uint16_t *)pbDst = *(uint16_t const *)pbSrc; break;
|
---|
5291 | case 1: *pbDst = *pbSrc; break;
|
---|
5292 | }
|
---|
5293 | pIf->iIOBufferPIODataStart = offStart + cbCopy;
|
---|
5294 | }
|
---|
5295 | else
|
---|
5296 | ataCopyPioData124Slow(pIf, pbDst, pbSrc, offStart, cbCopy);
|
---|
5297 | }
|
---|
5298 |
|
---|
5299 |
|
---|
5300 | /**
|
---|
5301 | * @callback_method_impl{FNIOMIOPORTNEWOUT,
|
---|
5302 | * Port I/O Handler for primary port range OUT operations.}
|
---|
5303 | * @note offPort is an absolute port number!
|
---|
5304 | */
|
---|
5305 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
5306 | ataIOPortWrite1Data(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb)
|
---|
5307 | {
|
---|
5308 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
5309 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (uintptr_t)pvUser);
|
---|
5310 | RT_NOREF(offPort);
|
---|
5311 |
|
---|
5312 | Assert((uintptr_t)pvUser < 2);
|
---|
5313 | Assert(offPort == pCtl->IOPortBase1);
|
---|
5314 | Assert(cb == 2 || cb == 4); /* Writes to the data port may be 16-bit or 32-bit. */
|
---|
5315 |
|
---|
5316 | VBOXSTRICTRC rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_WRITE);
|
---|
5317 | if (rc == VINF_SUCCESS)
|
---|
5318 | {
|
---|
5319 | PATADEVSTATE s = &pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK];
|
---|
5320 | uint32_t const iIOBufferPIODataStart = RT_MIN(s->iIOBufferPIODataStart, sizeof(s->abIOBuffer));
|
---|
5321 | uint32_t const iIOBufferPIODataEnd = RT_MIN(s->iIOBufferPIODataEnd, sizeof(s->abIOBuffer));
|
---|
5322 |
|
---|
5323 | if (iIOBufferPIODataStart < iIOBufferPIODataEnd)
|
---|
5324 | {
|
---|
5325 | Assert(s->uTxDir == PDMMEDIATXDIR_TO_DEVICE);
|
---|
5326 | uint8_t *pbDst = &s->abIOBuffer[iIOBufferPIODataStart];
|
---|
5327 | uint8_t const *pbSrc = (uint8_t const *)&u32;
|
---|
5328 |
|
---|
5329 | #ifdef IN_RC
|
---|
5330 | /* Raw-mode: The ataHCPIOTransfer following the last transfer unit
|
---|
5331 | requires I/O thread signalling, we must go to ring-3 for that. */
|
---|
5332 | if (iIOBufferPIODataStart + cb < iIOBufferPIODataEnd)
|
---|
5333 | ataCopyPioData124(s, pbDst, pbSrc, iIOBufferPIODataStart, cb);
|
---|
5334 | else
|
---|
5335 | rc = VINF_IOM_R3_IOPORT_WRITE;
|
---|
5336 |
|
---|
5337 | #elif defined(IN_RING0)
|
---|
5338 | /* Ring-0: We can do I/O thread signalling here, however for paranoid reasons
|
---|
5339 | triggered by a special case in ataHCPIOTransferFinish, we take extra care here. */
|
---|
5340 | if (iIOBufferPIODataStart + cb < iIOBufferPIODataEnd)
|
---|
5341 | ataCopyPioData124(s, pbDst, pbSrc, iIOBufferPIODataStart, cb);
|
---|
5342 | else if (s->uTxDir == PDMMEDIATXDIR_TO_DEVICE) /* paranoia */
|
---|
5343 | {
|
---|
5344 | ataCopyPioData124(s, pbDst, pbSrc, iIOBufferPIODataStart, cb);
|
---|
5345 | ataHCPIOTransferFinish(pDevIns, pCtl, s);
|
---|
5346 | }
|
---|
5347 | else
|
---|
5348 | {
|
---|
5349 | Log(("%s: Unexpected\n", __FUNCTION__));
|
---|
5350 | rc = VINF_IOM_R3_IOPORT_WRITE;
|
---|
5351 | }
|
---|
5352 |
|
---|
5353 | #else /* IN_RING 3*/
|
---|
5354 | ataCopyPioData124(s, pbDst, pbSrc, iIOBufferPIODataStart, cb);
|
---|
5355 | if (s->iIOBufferPIODataStart >= iIOBufferPIODataEnd)
|
---|
5356 | ataHCPIOTransferFinish(pDevIns, pCtl, s);
|
---|
5357 | #endif /* IN_RING 3*/
|
---|
5358 | }
|
---|
5359 | else
|
---|
5360 | Log2(("%s: DUMMY data\n", __FUNCTION__));
|
---|
5361 |
|
---|
5362 | Log3(("%s: addr=%#x val=%.*Rhxs rc=%d\n", __FUNCTION__, offPort, cb, &u32, VBOXSTRICTRC_VAL(rc)));
|
---|
5363 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
5364 | }
|
---|
5365 | else
|
---|
5366 | Log3(("%s: addr=%#x -> %d\n", __FUNCTION__, offPort, VBOXSTRICTRC_VAL(rc)));
|
---|
5367 | return rc;
|
---|
5368 | }
|
---|
5369 |
|
---|
5370 |
|
---|
5371 | /**
|
---|
5372 | * @callback_method_impl{FNIOMIOPORTNEWIN,
|
---|
5373 | * Port I/O Handler for primary port range IN operations.}
|
---|
5374 | * @note offPort is an absolute port number!
|
---|
5375 | */
|
---|
5376 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
5377 | ataIOPortRead1Data(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb)
|
---|
5378 | {
|
---|
5379 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
5380 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (uintptr_t)pvUser);
|
---|
5381 | RT_NOREF(offPort);
|
---|
5382 |
|
---|
5383 | Assert((uintptr_t)pvUser < 2);
|
---|
5384 | Assert(offPort == pCtl->IOPortBase1);
|
---|
5385 |
|
---|
5386 | /* Reads from the data register may be 16-bit or 32-bit. Byte accesses are
|
---|
5387 | upgraded to word. */
|
---|
5388 | Assert(cb == 1 || cb == 2 || cb == 4);
|
---|
5389 | uint32_t cbActual = cb != 1 ? cb : 2;
|
---|
5390 | *pu32 = 0;
|
---|
5391 |
|
---|
5392 | VBOXSTRICTRC rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_READ);
|
---|
5393 | if (rc == VINF_SUCCESS)
|
---|
5394 | {
|
---|
5395 | PATADEVSTATE s = &pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK];
|
---|
5396 |
|
---|
5397 | if (s->iIOBufferPIODataStart < s->iIOBufferPIODataEnd)
|
---|
5398 | {
|
---|
5399 | AssertMsg(s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE, ("%#x\n", s->uTxDir));
|
---|
5400 | uint32_t const iIOBufferPIODataStart = RT_MIN(s->iIOBufferPIODataStart, sizeof(s->abIOBuffer));
|
---|
5401 | uint32_t const iIOBufferPIODataEnd = RT_MIN(s->iIOBufferPIODataEnd, sizeof(s->abIOBuffer));
|
---|
5402 | uint8_t const *pbSrc = &s->abIOBuffer[iIOBufferPIODataStart];
|
---|
5403 | uint8_t *pbDst = (uint8_t *)pu32;
|
---|
5404 |
|
---|
5405 | #ifdef IN_RC
|
---|
5406 | /* All but the last transfer unit is simple enough for RC, but
|
---|
5407 | * sending a request to the async IO thread is too complicated. */
|
---|
5408 | if (iIOBufferPIODataStart + cbActual < iIOBufferPIODataEnd)
|
---|
5409 | ataCopyPioData124(s, pbDst, pbSrc, iIOBufferPIODataStart, cbActual);
|
---|
5410 | else
|
---|
5411 | rc = VINF_IOM_R3_IOPORT_READ;
|
---|
5412 |
|
---|
5413 | #elif defined(IN_RING0)
|
---|
5414 | /* Ring-0: We can do I/O thread signalling here. However there is one
|
---|
5415 | case in ataHCPIOTransfer that does a LogRel and would (but not from
|
---|
5416 | here) call directly into the driver code. We detect that odd case
|
---|
5417 | here cand return to ring-3 to handle it. */
|
---|
5418 | if (iIOBufferPIODataStart + cbActual < iIOBufferPIODataEnd)
|
---|
5419 | ataCopyPioData124(s, pbDst, pbSrc, iIOBufferPIODataStart, cbActual);
|
---|
5420 | else if ( s->cbTotalTransfer == 0
|
---|
5421 | || s->iSourceSink != ATAFN_SS_NULL
|
---|
5422 | || s->iIOBufferCur <= s->iIOBufferEnd)
|
---|
5423 | {
|
---|
5424 | ataCopyPioData124(s, pbDst, pbSrc, iIOBufferPIODataStart, cbActual);
|
---|
5425 | ataHCPIOTransferFinish(pDevIns, pCtl, s);
|
---|
5426 | }
|
---|
5427 | else
|
---|
5428 | {
|
---|
5429 | Log(("%s: Unexpected\n",__FUNCTION__));
|
---|
5430 | rc = VINF_IOM_R3_IOPORT_READ;
|
---|
5431 | }
|
---|
5432 |
|
---|
5433 | #else /* IN_RING3 */
|
---|
5434 | ataCopyPioData124(s, pbDst, pbSrc, iIOBufferPIODataStart, cbActual);
|
---|
5435 | if (s->iIOBufferPIODataStart >= iIOBufferPIODataEnd)
|
---|
5436 | ataHCPIOTransferFinish(pDevIns, pCtl, s);
|
---|
5437 | #endif /* IN_RING3 */
|
---|
5438 |
|
---|
5439 | /* Just to be on the safe side (caller takes care of this, really). */
|
---|
5440 | if (cb == 1)
|
---|
5441 | *pu32 &= 0xff;
|
---|
5442 | }
|
---|
5443 | else
|
---|
5444 | {
|
---|
5445 | Log2(("%s: DUMMY data\n", __FUNCTION__));
|
---|
5446 | memset(pu32, 0xff, cb);
|
---|
5447 | }
|
---|
5448 | Log3(("%s: addr=%#x val=%.*Rhxs rc=%d\n", __FUNCTION__, offPort, cb, pu32, VBOXSTRICTRC_VAL(rc)));
|
---|
5449 |
|
---|
5450 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
5451 | }
|
---|
5452 | else
|
---|
5453 | Log3(("%s: addr=%#x -> %d\n", __FUNCTION__, offPort, VBOXSTRICTRC_VAL(rc)));
|
---|
5454 |
|
---|
5455 | return rc;
|
---|
5456 | }
|
---|
5457 |
|
---|
5458 |
|
---|
5459 | /**
|
---|
5460 | * @callback_method_impl{FNIOMIOPORTNEWINSTRING,
|
---|
5461 | * Port I/O Handler for primary port range IN string operations.}
|
---|
5462 | * @note offPort is an absolute port number!
|
---|
5463 | */
|
---|
5464 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
5465 | ataIOPortReadStr1Data(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint8_t *pbDst, uint32_t *pcTransfers, unsigned cb)
|
---|
5466 | {
|
---|
5467 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
5468 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (uintptr_t)pvUser);
|
---|
5469 | RT_NOREF(offPort);
|
---|
5470 |
|
---|
5471 | Assert((uintptr_t)pvUser < 2);
|
---|
5472 | Assert(offPort == pCtl->IOPortBase1);
|
---|
5473 | Assert(*pcTransfers > 0);
|
---|
5474 |
|
---|
5475 | VBOXSTRICTRC rc;
|
---|
5476 | if (cb == 2 || cb == 4)
|
---|
5477 | {
|
---|
5478 | rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_READ);
|
---|
5479 | if (rc == VINF_SUCCESS)
|
---|
5480 | {
|
---|
5481 | PATADEVSTATE s = &pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK];
|
---|
5482 |
|
---|
5483 | uint32_t const offStart = s->iIOBufferPIODataStart;
|
---|
5484 | uint32_t const offEnd = s->iIOBufferPIODataEnd;
|
---|
5485 | if (offStart < offEnd)
|
---|
5486 | {
|
---|
5487 | /*
|
---|
5488 | * Figure how much we can copy. Usually it's the same as the request.
|
---|
5489 | * The last transfer unit cannot be handled in RC, as it involves
|
---|
5490 | * thread communication. In R0 we let the non-string callback handle it,
|
---|
5491 | * and ditto for overflows/dummy data.
|
---|
5492 | */
|
---|
5493 | uint32_t cAvailable = (offEnd - offStart) / cb;
|
---|
5494 | #ifndef IN_RING3
|
---|
5495 | if (cAvailable > 0)
|
---|
5496 | cAvailable--;
|
---|
5497 | #endif
|
---|
5498 | uint32_t const cRequested = *pcTransfers;
|
---|
5499 | if (cAvailable > cRequested)
|
---|
5500 | cAvailable = cRequested;
|
---|
5501 | uint32_t const cbTransfer = cAvailable * cb;
|
---|
5502 | uint32_t const offEndThisXfer = offStart + cbTransfer;
|
---|
5503 | if ( offEndThisXfer <= RT_MIN(s->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE)
|
---|
5504 | && offStart < RT_MIN(s->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE) /* paranoia */
|
---|
5505 | && cbTransfer > 0)
|
---|
5506 | {
|
---|
5507 | /*
|
---|
5508 | * Do the transfer.
|
---|
5509 | */
|
---|
5510 | uint8_t const *pbSrc = &s->abIOBuffer[offStart];
|
---|
5511 | memcpy(pbDst, pbSrc, cbTransfer);
|
---|
5512 | Log3(("%s: addr=%#x cb=%#x cbTransfer=%#x val=%.*Rhxd\n", __FUNCTION__, offPort, cb, cbTransfer, cbTransfer, pbSrc));
|
---|
5513 | s->iIOBufferPIODataStart = offEndThisXfer;
|
---|
5514 | #ifdef IN_RING3
|
---|
5515 | if (offEndThisXfer >= offEnd)
|
---|
5516 | ataHCPIOTransferFinish(pDevIns, pCtl, s);
|
---|
5517 | #endif
|
---|
5518 | *pcTransfers = cRequested - cAvailable;
|
---|
5519 | }
|
---|
5520 | else
|
---|
5521 | Log2(("ataIOPortReadStr1Data: DUMMY/Overflow!\n"));
|
---|
5522 | }
|
---|
5523 | else
|
---|
5524 | {
|
---|
5525 | /*
|
---|
5526 | * Dummy read (shouldn't happen) return 0xff like the non-string handler.
|
---|
5527 | */
|
---|
5528 | Log2(("ataIOPortReadStr1Data: DUMMY data (%#x bytes)\n", *pcTransfers * cb));
|
---|
5529 | memset(pbDst, 0xff, *pcTransfers * cb);
|
---|
5530 | *pcTransfers = 0;
|
---|
5531 | }
|
---|
5532 |
|
---|
5533 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
5534 | }
|
---|
5535 | }
|
---|
5536 | /*
|
---|
5537 | * Let the non-string I/O callback handle 1 byte reads.
|
---|
5538 | */
|
---|
5539 | else
|
---|
5540 | {
|
---|
5541 | Log2(("ataIOPortReadStr1Data: 1 byte read (%#x transfers)\n", *pcTransfers));
|
---|
5542 | AssertFailed();
|
---|
5543 | rc = VINF_SUCCESS;
|
---|
5544 | }
|
---|
5545 | return rc;
|
---|
5546 | }
|
---|
5547 |
|
---|
5548 |
|
---|
5549 | /**
|
---|
5550 | * @callback_method_impl{FNIOMIOPORTNEWOUTSTRING,
|
---|
5551 | * Port I/O Handler for primary port range OUT string operations.}
|
---|
5552 | * @note offPort is an absolute port number!
|
---|
5553 | */
|
---|
5554 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
5555 | ataIOPortWriteStr1Data(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint8_t const *pbSrc, uint32_t *pcTransfers, unsigned cb)
|
---|
5556 | {
|
---|
5557 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
5558 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (uintptr_t)pvUser);
|
---|
5559 | RT_NOREF(offPort);
|
---|
5560 |
|
---|
5561 | Assert((uintptr_t)pvUser < 2);
|
---|
5562 | Assert(offPort == pCtl->IOPortBase1);
|
---|
5563 | Assert(*pcTransfers > 0);
|
---|
5564 |
|
---|
5565 | VBOXSTRICTRC rc;
|
---|
5566 | if (cb == 2 || cb == 4)
|
---|
5567 | {
|
---|
5568 | rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_WRITE);
|
---|
5569 | if (rc == VINF_SUCCESS)
|
---|
5570 | {
|
---|
5571 | PATADEVSTATE s = &pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK];
|
---|
5572 |
|
---|
5573 | uint32_t const offStart = s->iIOBufferPIODataStart;
|
---|
5574 | uint32_t const offEnd = s->iIOBufferPIODataEnd;
|
---|
5575 | Log3Func(("offStart=%#x offEnd=%#x *pcTransfers=%d cb=%d\n", offStart, offEnd, *pcTransfers, cb));
|
---|
5576 | if (offStart < offEnd)
|
---|
5577 | {
|
---|
5578 | /*
|
---|
5579 | * Figure how much we can copy. Usually it's the same as the request.
|
---|
5580 | * The last transfer unit cannot be handled in RC, as it involves
|
---|
5581 | * thread communication. In R0 we let the non-string callback handle it,
|
---|
5582 | * and ditto for overflows/dummy data.
|
---|
5583 | */
|
---|
5584 | uint32_t cAvailable = (offEnd - offStart) / cb;
|
---|
5585 | #ifndef IN_RING3
|
---|
5586 | if (cAvailable)
|
---|
5587 | cAvailable--;
|
---|
5588 | #endif
|
---|
5589 | uint32_t const cRequested = *pcTransfers;
|
---|
5590 | if (cAvailable > cRequested)
|
---|
5591 | cAvailable = cRequested;
|
---|
5592 | uint32_t const cbTransfer = cAvailable * cb;
|
---|
5593 | uint32_t const offEndThisXfer = offStart + cbTransfer;
|
---|
5594 | if ( offEndThisXfer <= RT_MIN(s->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE)
|
---|
5595 | && offStart < RT_MIN(s->cbIOBuffer, ATA_MAX_IO_BUFFER_SIZE) /* paranoia */
|
---|
5596 | && cbTransfer > 0)
|
---|
5597 | {
|
---|
5598 | /*
|
---|
5599 | * Do the transfer.
|
---|
5600 | */
|
---|
5601 | void *pvDst = &s->abIOBuffer[offStart];
|
---|
5602 | memcpy(pvDst, pbSrc, cbTransfer);
|
---|
5603 | Log3(("%s: addr=%#x val=%.*Rhxs\n", __FUNCTION__, offPort, cbTransfer, pvDst));
|
---|
5604 | s->iIOBufferPIODataStart = offEndThisXfer;
|
---|
5605 | #ifdef IN_RING3
|
---|
5606 | if (offEndThisXfer >= offEnd)
|
---|
5607 | ataHCPIOTransferFinish(pDevIns, pCtl, s);
|
---|
5608 | #endif
|
---|
5609 | *pcTransfers = cRequested - cAvailable;
|
---|
5610 | }
|
---|
5611 | else
|
---|
5612 | Log2(("ataIOPortWriteStr1Data: DUMMY/Overflow!\n"));
|
---|
5613 | }
|
---|
5614 | else
|
---|
5615 | {
|
---|
5616 | Log2(("ataIOPortWriteStr1Data: DUMMY data (%#x bytes)\n", *pcTransfers * cb));
|
---|
5617 | *pcTransfers = 0;
|
---|
5618 | }
|
---|
5619 |
|
---|
5620 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
5621 | }
|
---|
5622 | }
|
---|
5623 | /*
|
---|
5624 | * Let the non-string I/O callback handle 1 byte reads.
|
---|
5625 | */
|
---|
5626 | else
|
---|
5627 | {
|
---|
5628 | Log2(("ataIOPortWriteStr1Data: 1 byte write (%#x transfers)\n", *pcTransfers));
|
---|
5629 | AssertFailed();
|
---|
5630 | rc = VINF_SUCCESS;
|
---|
5631 | }
|
---|
5632 |
|
---|
5633 | return rc;
|
---|
5634 | }
|
---|
5635 |
|
---|
5636 |
|
---|
5637 | #ifdef IN_RING3
|
---|
5638 |
|
---|
5639 | static void ataR3DMATransferStop(PATADEVSTATE s)
|
---|
5640 | {
|
---|
5641 | s->cbTotalTransfer = 0;
|
---|
5642 | s->cbElementaryTransfer = 0;
|
---|
5643 | s->iBeginTransfer = ATAFN_BT_NULL;
|
---|
5644 | s->iSourceSink = ATAFN_SS_NULL;
|
---|
5645 | }
|
---|
5646 |
|
---|
5647 |
|
---|
5648 | /**
|
---|
5649 | * Perform the entire DMA transfer in one go (unless a source/sink operation
|
---|
5650 | * has to be redone or a RESET comes in between). Unlike the PIO counterpart
|
---|
5651 | * this function cannot handle empty transfers.
|
---|
5652 | *
|
---|
5653 | * @param pDevIns The device instance.
|
---|
5654 | * @param pCtl Controller for which to perform the transfer, shared bits.
|
---|
5655 | * @param pCtlR3 The ring-3 controller state.
|
---|
5656 | */
|
---|
5657 | static void ataR3DMATransfer(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATACONTROLLERR3 pCtlR3)
|
---|
5658 | {
|
---|
5659 | uint8_t const iAIOIf = pCtl->iAIOIf & ATA_SELECTED_IF_MASK;
|
---|
5660 | PATADEVSTATE s = &pCtl->aIfs[iAIOIf];
|
---|
5661 | PATADEVSTATER3 pDevR3 = &pCtlR3->aIfs[iAIOIf];
|
---|
5662 | bool fRedo;
|
---|
5663 | RTGCPHYS32 GCPhysDesc;
|
---|
5664 | uint32_t cbTotalTransfer, cbElementaryTransfer;
|
---|
5665 | uint32_t iIOBufferCur, iIOBufferEnd;
|
---|
5666 | PDMMEDIATXDIR uTxDir;
|
---|
5667 | bool fLastDesc = false;
|
---|
5668 |
|
---|
5669 | Assert(sizeof(BMDMADesc) == 8);
|
---|
5670 |
|
---|
5671 | fRedo = pCtl->fRedo;
|
---|
5672 | if (RT_LIKELY(!fRedo))
|
---|
5673 | Assert(s->cbTotalTransfer);
|
---|
5674 | uTxDir = (PDMMEDIATXDIR)s->uTxDir;
|
---|
5675 | cbTotalTransfer = s->cbTotalTransfer;
|
---|
5676 | cbElementaryTransfer = RT_MIN(s->cbElementaryTransfer, sizeof(s->abIOBuffer));
|
---|
5677 | iIOBufferEnd = RT_MIN(s->iIOBufferEnd, sizeof(s->abIOBuffer));
|
---|
5678 | iIOBufferCur = RT_MIN(RT_MIN(s->iIOBufferCur, sizeof(s->abIOBuffer)), iIOBufferEnd);
|
---|
5679 |
|
---|
5680 | /* The DMA loop is designed to hold the lock only when absolutely
|
---|
5681 | * necessary. This avoids long freezes should the guest access the
|
---|
5682 | * ATA registers etc. for some reason. */
|
---|
5683 | ataR3LockLeave(pDevIns, pCtl);
|
---|
5684 |
|
---|
5685 | Log2(("%s: %s tx_size=%d elem_tx_size=%d index=%d end=%d\n",
|
---|
5686 | __FUNCTION__, uTxDir == PDMMEDIATXDIR_FROM_DEVICE ? "T2I" : "I2T",
|
---|
5687 | cbTotalTransfer, cbElementaryTransfer,
|
---|
5688 | iIOBufferCur, iIOBufferEnd));
|
---|
5689 | for (GCPhysDesc = pCtl->GCPhysFirstDMADesc;
|
---|
5690 | GCPhysDesc <= pCtl->GCPhysLastDMADesc;
|
---|
5691 | GCPhysDesc += sizeof(BMDMADesc))
|
---|
5692 | {
|
---|
5693 | BMDMADesc DMADesc;
|
---|
5694 | RTGCPHYS32 GCPhysBuffer;
|
---|
5695 | uint32_t cbBuffer;
|
---|
5696 |
|
---|
5697 | if (RT_UNLIKELY(fRedo))
|
---|
5698 | {
|
---|
5699 | GCPhysBuffer = pCtl->GCPhysRedoDMABuffer;
|
---|
5700 | cbBuffer = pCtl->cbRedoDMABuffer;
|
---|
5701 | fLastDesc = pCtl->fRedoDMALastDesc;
|
---|
5702 | DMADesc.GCPhysBuffer = DMADesc.cbBuffer = 0; /* Shut up MSC. */
|
---|
5703 | }
|
---|
5704 | else
|
---|
5705 | {
|
---|
5706 | PDMDevHlpPCIPhysReadMeta(pDevIns, GCPhysDesc, &DMADesc, sizeof(BMDMADesc));
|
---|
5707 | GCPhysBuffer = RT_LE2H_U32(DMADesc.GCPhysBuffer);
|
---|
5708 | cbBuffer = RT_LE2H_U32(DMADesc.cbBuffer);
|
---|
5709 | fLastDesc = RT_BOOL(cbBuffer & UINT32_C(0x80000000));
|
---|
5710 | cbBuffer &= 0xfffe;
|
---|
5711 | if (cbBuffer == 0)
|
---|
5712 | cbBuffer = 0x10000;
|
---|
5713 | if (cbBuffer > cbTotalTransfer)
|
---|
5714 | cbBuffer = cbTotalTransfer;
|
---|
5715 | }
|
---|
5716 |
|
---|
5717 | while (RT_UNLIKELY(fRedo) || (cbBuffer && cbTotalTransfer))
|
---|
5718 | {
|
---|
5719 | if (RT_LIKELY(!fRedo))
|
---|
5720 | {
|
---|
5721 | uint32_t cbXfer = RT_MIN(RT_MIN(cbBuffer, iIOBufferEnd - iIOBufferCur),
|
---|
5722 | sizeof(s->abIOBuffer) - RT_MIN(iIOBufferCur, sizeof(s->abIOBuffer)));
|
---|
5723 | Log2(("%s: DMA desc %#010x: addr=%#010x size=%#010x orig_size=%#010x\n", __FUNCTION__,
|
---|
5724 | (int)GCPhysDesc, GCPhysBuffer, cbBuffer, RT_LE2H_U32(DMADesc.cbBuffer) & 0xfffe));
|
---|
5725 |
|
---|
5726 | if (uTxDir == PDMMEDIATXDIR_FROM_DEVICE)
|
---|
5727 | PDMDevHlpPCIPhysWriteUser(pDevIns, GCPhysBuffer, &s->abIOBuffer[iIOBufferCur], cbXfer);
|
---|
5728 | else
|
---|
5729 | PDMDevHlpPCIPhysReadUser(pDevIns, GCPhysBuffer, &s->abIOBuffer[iIOBufferCur], cbXfer);
|
---|
5730 |
|
---|
5731 | iIOBufferCur += cbXfer;
|
---|
5732 | cbTotalTransfer -= cbXfer;
|
---|
5733 | cbBuffer -= cbXfer;
|
---|
5734 | GCPhysBuffer += cbXfer;
|
---|
5735 | }
|
---|
5736 | if ( iIOBufferCur == iIOBufferEnd
|
---|
5737 | && (uTxDir == PDMMEDIATXDIR_TO_DEVICE || cbTotalTransfer))
|
---|
5738 | {
|
---|
5739 | if (uTxDir == PDMMEDIATXDIR_FROM_DEVICE && cbElementaryTransfer > cbTotalTransfer)
|
---|
5740 | cbElementaryTransfer = cbTotalTransfer;
|
---|
5741 |
|
---|
5742 | ataR3LockEnter(pDevIns, pCtl);
|
---|
5743 |
|
---|
5744 | /* The RESET handler could have cleared the DMA transfer
|
---|
5745 | * state (since we didn't hold the lock until just now
|
---|
5746 | * the guest can continue in parallel). If so, the state
|
---|
5747 | * is already set up so the loop is exited immediately. */
|
---|
5748 | uint8_t const iSourceSink = s->iSourceSink;
|
---|
5749 | if ( iSourceSink != ATAFN_SS_NULL
|
---|
5750 | && iSourceSink < RT_ELEMENTS(g_apfnSourceSinkFuncs))
|
---|
5751 | {
|
---|
5752 | s->iIOBufferCur = iIOBufferCur;
|
---|
5753 | s->iIOBufferEnd = iIOBufferEnd;
|
---|
5754 | s->cbElementaryTransfer = cbElementaryTransfer;
|
---|
5755 | s->cbTotalTransfer = cbTotalTransfer;
|
---|
5756 | Log2(("%s: calling source/sink function\n", __FUNCTION__));
|
---|
5757 | fRedo = g_apfnSourceSinkFuncs[iSourceSink](pDevIns, pCtl, s, pDevR3);
|
---|
5758 | if (RT_UNLIKELY(fRedo))
|
---|
5759 | {
|
---|
5760 | pCtl->GCPhysFirstDMADesc = GCPhysDesc;
|
---|
5761 | pCtl->GCPhysRedoDMABuffer = GCPhysBuffer;
|
---|
5762 | pCtl->cbRedoDMABuffer = cbBuffer;
|
---|
5763 | pCtl->fRedoDMALastDesc = fLastDesc;
|
---|
5764 | }
|
---|
5765 | else
|
---|
5766 | {
|
---|
5767 | cbTotalTransfer = s->cbTotalTransfer;
|
---|
5768 | cbElementaryTransfer = s->cbElementaryTransfer;
|
---|
5769 |
|
---|
5770 | if (uTxDir == PDMMEDIATXDIR_TO_DEVICE && cbElementaryTransfer > cbTotalTransfer)
|
---|
5771 | cbElementaryTransfer = cbTotalTransfer;
|
---|
5772 | iIOBufferCur = 0;
|
---|
5773 | iIOBufferEnd = RT_MIN(cbElementaryTransfer, sizeof(s->abIOBuffer));
|
---|
5774 | }
|
---|
5775 | pCtl->fRedo = fRedo;
|
---|
5776 | }
|
---|
5777 | else
|
---|
5778 | {
|
---|
5779 | /* This forces the loop to exit immediately. */
|
---|
5780 | Assert(iSourceSink == ATAFN_SS_NULL);
|
---|
5781 | GCPhysDesc = pCtl->GCPhysLastDMADesc + 1;
|
---|
5782 | }
|
---|
5783 |
|
---|
5784 | ataR3LockLeave(pDevIns, pCtl);
|
---|
5785 | if (RT_UNLIKELY(fRedo))
|
---|
5786 | break;
|
---|
5787 | }
|
---|
5788 | }
|
---|
5789 |
|
---|
5790 | if (RT_UNLIKELY(fRedo))
|
---|
5791 | break;
|
---|
5792 |
|
---|
5793 | /* end of transfer */
|
---|
5794 | if (!cbTotalTransfer || fLastDesc)
|
---|
5795 | break;
|
---|
5796 |
|
---|
5797 | ataR3LockEnter(pDevIns, pCtl);
|
---|
5798 |
|
---|
5799 | if (!(pCtl->BmDma.u8Cmd & BM_CMD_START) || pCtl->fReset)
|
---|
5800 | {
|
---|
5801 | LogRel(("PIIX3 ATA: Ctl#%d: ABORT DMA%s\n", pCtl->iCtl, pCtl->fReset ? " due to RESET" : ""));
|
---|
5802 | if (!pCtl->fReset)
|
---|
5803 | ataR3DMATransferStop(s);
|
---|
5804 | /* This forces the loop to exit immediately. */
|
---|
5805 | GCPhysDesc = pCtl->GCPhysLastDMADesc + 1;
|
---|
5806 | }
|
---|
5807 |
|
---|
5808 | ataR3LockLeave(pDevIns, pCtl);
|
---|
5809 | }
|
---|
5810 |
|
---|
5811 | ataR3LockEnter(pDevIns, pCtl);
|
---|
5812 | if (RT_UNLIKELY(fRedo))
|
---|
5813 | return;
|
---|
5814 |
|
---|
5815 | if (fLastDesc)
|
---|
5816 | pCtl->BmDma.u8Status &= ~BM_STATUS_DMAING;
|
---|
5817 | s->cbTotalTransfer = cbTotalTransfer;
|
---|
5818 | s->cbElementaryTransfer = cbElementaryTransfer;
|
---|
5819 | s->iIOBufferCur = iIOBufferCur;
|
---|
5820 | s->iIOBufferEnd = iIOBufferEnd;
|
---|
5821 | }
|
---|
5822 |
|
---|
5823 | /**
|
---|
5824 | * Signal PDM that we're idle (if we actually are).
|
---|
5825 | *
|
---|
5826 | * @param pDevIns The device instance.
|
---|
5827 | * @param pCtl The shared controller state.
|
---|
5828 | * @param pCtlR3 The ring-3 controller state.
|
---|
5829 | */
|
---|
5830 | static void ataR3AsyncSignalIdle(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, PATACONTROLLERR3 pCtlR3)
|
---|
5831 | {
|
---|
5832 | /*
|
---|
5833 | * Take the lock here and recheck the idle indicator to avoid
|
---|
5834 | * unnecessary work and racing ataR3WaitForAsyncIOIsIdle.
|
---|
5835 | */
|
---|
5836 | int rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->AsyncIORequestLock, VINF_SUCCESS);
|
---|
5837 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pCtl->AsyncIORequestLock, rc);
|
---|
5838 |
|
---|
5839 | if ( pCtlR3->fSignalIdle
|
---|
5840 | && ataR3AsyncIOIsIdle(pDevIns, pCtl, false /*fStrict*/))
|
---|
5841 | {
|
---|
5842 | PDMDevHlpAsyncNotificationCompleted(pDevIns);
|
---|
5843 | RTThreadUserSignal(pCtlR3->hAsyncIOThread); /* for ataR3Construct/ataR3ResetCommon. */
|
---|
5844 | }
|
---|
5845 |
|
---|
5846 | rc = PDMDevHlpCritSectLeave(pDevIns, &pCtl->AsyncIORequestLock);
|
---|
5847 | AssertRC(rc);
|
---|
5848 | }
|
---|
5849 |
|
---|
5850 | /**
|
---|
5851 | * Async I/O thread for an interface.
|
---|
5852 | *
|
---|
5853 | * Once upon a time this was readable code with several loops and a different
|
---|
5854 | * semaphore for each purpose. But then came the "how can one save the state in
|
---|
5855 | * the middle of a PIO transfer" question. The solution was to use an ASM,
|
---|
5856 | * which is what's there now.
|
---|
5857 | */
|
---|
5858 | static DECLCALLBACK(int) ataR3AsyncIOThread(RTTHREAD hThreadSelf, void *pvUser)
|
---|
5859 | {
|
---|
5860 | PATACONTROLLERR3 const pCtlR3 = (PATACONTROLLERR3)pvUser;
|
---|
5861 | PPDMDEVINSR3 const pDevIns = pCtlR3->pDevIns;
|
---|
5862 | PATASTATE const pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
5863 | PATASTATER3 const pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATER3);
|
---|
5864 | uintptr_t const iCtl = pCtlR3 - &pThisCC->aCts[0];
|
---|
5865 | PATACONTROLLER const pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, iCtl);
|
---|
5866 | int rc = VINF_SUCCESS;
|
---|
5867 | uint64_t u64TS = 0; /* shut up gcc */
|
---|
5868 | uint64_t uWait;
|
---|
5869 | const ATARequest *pReq;
|
---|
5870 | RT_NOREF(hThreadSelf);
|
---|
5871 | Assert(pCtl->iCtl == pCtlR3->iCtl);
|
---|
5872 |
|
---|
5873 | pReq = NULL;
|
---|
5874 | pCtl->fChainedTransfer = false;
|
---|
5875 | while (!pCtlR3->fShutdown)
|
---|
5876 | {
|
---|
5877 | /* Keep this thread from doing anything as long as EMT is suspended. */
|
---|
5878 | while (pCtl->fRedoIdle)
|
---|
5879 | {
|
---|
5880 | if (pCtlR3->fSignalIdle)
|
---|
5881 | ataR3AsyncSignalIdle(pDevIns, pCtl, pCtlR3);
|
---|
5882 | rc = RTSemEventWait(pCtlR3->hSuspendIOSem, RT_INDEFINITE_WAIT);
|
---|
5883 | /* Continue if we got a signal by RTThreadPoke().
|
---|
5884 | * We will get notified if there is a request to process.
|
---|
5885 | */
|
---|
5886 | if (RT_UNLIKELY(rc == VERR_INTERRUPTED))
|
---|
5887 | continue;
|
---|
5888 | if (RT_FAILURE(rc) || pCtlR3->fShutdown)
|
---|
5889 | break;
|
---|
5890 |
|
---|
5891 | pCtl->fRedoIdle = false;
|
---|
5892 | }
|
---|
5893 |
|
---|
5894 | /* Wait for work. */
|
---|
5895 | while (pReq == NULL)
|
---|
5896 | {
|
---|
5897 | if (pCtlR3->fSignalIdle)
|
---|
5898 | ataR3AsyncSignalIdle(pDevIns, pCtl, pCtlR3);
|
---|
5899 | rc = PDMDevHlpSUPSemEventWaitNoResume(pDevIns, pCtl->hAsyncIOSem, RT_INDEFINITE_WAIT);
|
---|
5900 | /* Continue if we got a signal by RTThreadPoke().
|
---|
5901 | * We will get notified if there is a request to process.
|
---|
5902 | */
|
---|
5903 | if (RT_UNLIKELY(rc == VERR_INTERRUPTED))
|
---|
5904 | continue;
|
---|
5905 | if (RT_FAILURE(rc) || RT_UNLIKELY(pCtlR3->fShutdown))
|
---|
5906 | break;
|
---|
5907 |
|
---|
5908 | pReq = ataR3AsyncIOGetCurrentRequest(pDevIns, pCtl);
|
---|
5909 | }
|
---|
5910 |
|
---|
5911 | if (RT_FAILURE(rc) || pCtlR3->fShutdown)
|
---|
5912 | break;
|
---|
5913 |
|
---|
5914 | if (pReq == NULL)
|
---|
5915 | continue;
|
---|
5916 |
|
---|
5917 | ATAAIO ReqType = pReq->ReqType;
|
---|
5918 |
|
---|
5919 | Log2(("%s: Ctl#%d: state=%d, req=%d\n", __FUNCTION__, pCtl->iCtl, pCtl->uAsyncIOState, ReqType));
|
---|
5920 | if (pCtl->uAsyncIOState != ReqType)
|
---|
5921 | {
|
---|
5922 | /* The new state is not the state that was expected by the normal
|
---|
5923 | * state changes. This is either a RESET/ABORT or there's something
|
---|
5924 | * really strange going on. */
|
---|
5925 | if ( (pCtl->uAsyncIOState == ATA_AIO_PIO || pCtl->uAsyncIOState == ATA_AIO_DMA)
|
---|
5926 | && (ReqType == ATA_AIO_PIO || ReqType == ATA_AIO_DMA))
|
---|
5927 | {
|
---|
5928 | /* Incorrect sequence of PIO/DMA states. Dump request queue. */
|
---|
5929 | ataR3AsyncIODumpRequests(pDevIns, pCtl);
|
---|
5930 | }
|
---|
5931 | AssertReleaseMsg( ReqType == ATA_AIO_RESET_ASSERTED
|
---|
5932 | || ReqType == ATA_AIO_RESET_CLEARED
|
---|
5933 | || ReqType == ATA_AIO_ABORT
|
---|
5934 | || pCtl->uAsyncIOState == ReqType,
|
---|
5935 | ("I/O state inconsistent: state=%d request=%d\n", pCtl->uAsyncIOState, ReqType));
|
---|
5936 | }
|
---|
5937 |
|
---|
5938 | /* Do our work. */
|
---|
5939 | ataR3LockEnter(pDevIns, pCtl);
|
---|
5940 |
|
---|
5941 | if (pCtl->uAsyncIOState == ATA_AIO_NEW && !pCtl->fChainedTransfer)
|
---|
5942 | {
|
---|
5943 | u64TS = RTTimeNanoTS();
|
---|
5944 | #if defined(DEBUG) || defined(VBOX_WITH_STATISTICS)
|
---|
5945 | STAM_PROFILE_ADV_START(&pCtl->StatAsyncTime, a);
|
---|
5946 | #endif
|
---|
5947 | }
|
---|
5948 |
|
---|
5949 | switch (ReqType)
|
---|
5950 | {
|
---|
5951 | case ATA_AIO_NEW:
|
---|
5952 | {
|
---|
5953 | uint8_t const iIf = pReq->u.t.iIf & ATA_SELECTED_IF_MASK;
|
---|
5954 | pCtl->iAIOIf = iIf;
|
---|
5955 | PATADEVSTATE s = &pCtl->aIfs[iIf];
|
---|
5956 | PATADEVSTATER3 pDevR3 = &pCtlR3->aIfs[iIf];
|
---|
5957 |
|
---|
5958 | s->cbTotalTransfer = pReq->u.t.cbTotalTransfer;
|
---|
5959 | s->uTxDir = pReq->u.t.uTxDir;
|
---|
5960 | s->iBeginTransfer = pReq->u.t.iBeginTransfer;
|
---|
5961 | s->iSourceSink = pReq->u.t.iSourceSink;
|
---|
5962 | s->iIOBufferEnd = 0;
|
---|
5963 | s->u64CmdTS = u64TS;
|
---|
5964 |
|
---|
5965 | if (s->fATAPI)
|
---|
5966 | {
|
---|
5967 | if (pCtl->fChainedTransfer)
|
---|
5968 | {
|
---|
5969 | /* Only count the actual transfers, not the PIO
|
---|
5970 | * transfer of the ATAPI command bytes. */
|
---|
5971 | if (s->fDMA)
|
---|
5972 | STAM_REL_COUNTER_INC(&s->StatATAPIDMA);
|
---|
5973 | else
|
---|
5974 | STAM_REL_COUNTER_INC(&s->StatATAPIPIO);
|
---|
5975 | }
|
---|
5976 | }
|
---|
5977 | else
|
---|
5978 | {
|
---|
5979 | if (s->fDMA)
|
---|
5980 | STAM_REL_COUNTER_INC(&s->StatATADMA);
|
---|
5981 | else
|
---|
5982 | STAM_REL_COUNTER_INC(&s->StatATAPIO);
|
---|
5983 | }
|
---|
5984 |
|
---|
5985 | pCtl->fChainedTransfer = false;
|
---|
5986 |
|
---|
5987 | uint8_t const iBeginTransfer = s->iBeginTransfer;
|
---|
5988 | if ( iBeginTransfer != ATAFN_BT_NULL
|
---|
5989 | && iBeginTransfer < RT_ELEMENTS(g_apfnBeginTransFuncs))
|
---|
5990 | {
|
---|
5991 | Log2(("%s: Ctl#%d: calling begin transfer function\n", __FUNCTION__, pCtl->iCtl));
|
---|
5992 | g_apfnBeginTransFuncs[iBeginTransfer](pCtl, s);
|
---|
5993 | s->iBeginTransfer = ATAFN_BT_NULL;
|
---|
5994 | if (s->uTxDir != PDMMEDIATXDIR_FROM_DEVICE)
|
---|
5995 | s->iIOBufferEnd = s->cbElementaryTransfer;
|
---|
5996 | }
|
---|
5997 | else
|
---|
5998 | {
|
---|
5999 | Assert(iBeginTransfer == ATAFN_BT_NULL);
|
---|
6000 | s->cbElementaryTransfer = s->cbTotalTransfer;
|
---|
6001 | s->iIOBufferEnd = s->cbTotalTransfer;
|
---|
6002 | }
|
---|
6003 | s->iIOBufferCur = 0;
|
---|
6004 |
|
---|
6005 | if (s->uTxDir != PDMMEDIATXDIR_TO_DEVICE)
|
---|
6006 | {
|
---|
6007 | uint8_t const iSourceSink = s->iSourceSink;
|
---|
6008 | if ( iSourceSink != ATAFN_SS_NULL
|
---|
6009 | && iSourceSink < RT_ELEMENTS(g_apfnSourceSinkFuncs))
|
---|
6010 | {
|
---|
6011 | bool fRedo;
|
---|
6012 | Log2(("%s: Ctl#%d: calling source/sink function\n", __FUNCTION__, pCtl->iCtl));
|
---|
6013 | fRedo = g_apfnSourceSinkFuncs[iSourceSink](pDevIns, pCtl, s, pDevR3);
|
---|
6014 | pCtl->fRedo = fRedo;
|
---|
6015 | if (RT_UNLIKELY(fRedo && !pCtl->fReset))
|
---|
6016 | {
|
---|
6017 | /* Operation failed at the initial transfer, restart
|
---|
6018 | * everything from scratch by resending the current
|
---|
6019 | * request. Occurs very rarely, not worth optimizing. */
|
---|
6020 | LogRel(("%s: Ctl#%d: redo entire operation\n", __FUNCTION__, pCtl->iCtl));
|
---|
6021 | ataHCAsyncIOPutRequest(pDevIns, pCtl, pReq);
|
---|
6022 | break;
|
---|
6023 | }
|
---|
6024 | }
|
---|
6025 | else
|
---|
6026 | {
|
---|
6027 | Assert(iSourceSink == ATAFN_SS_NULL);
|
---|
6028 | ataR3CmdOK(pCtl, s, ATA_STAT_SEEK);
|
---|
6029 | }
|
---|
6030 | s->iIOBufferEnd = s->cbElementaryTransfer;
|
---|
6031 |
|
---|
6032 | }
|
---|
6033 |
|
---|
6034 | /* Do not go into the transfer phase if RESET is asserted.
|
---|
6035 | * The CritSect is released while waiting for the host OS
|
---|
6036 | * to finish the I/O, thus RESET is possible here. Most
|
---|
6037 | * important: do not change uAsyncIOState. */
|
---|
6038 | if (pCtl->fReset)
|
---|
6039 | break;
|
---|
6040 |
|
---|
6041 | if (s->fDMA)
|
---|
6042 | {
|
---|
6043 | if (s->cbTotalTransfer)
|
---|
6044 | {
|
---|
6045 | ataSetStatus(pCtl, s, ATA_STAT_DRQ);
|
---|
6046 |
|
---|
6047 | pCtl->uAsyncIOState = ATA_AIO_DMA;
|
---|
6048 | /* If BMDMA is already started, do the transfer now. */
|
---|
6049 | if (pCtl->BmDma.u8Cmd & BM_CMD_START)
|
---|
6050 | {
|
---|
6051 | Log2(("%s: Ctl#%d: message to async I/O thread, continuing DMA transfer immediately\n", __FUNCTION__, pCtl->iCtl));
|
---|
6052 | ataHCAsyncIOPutRequest(pDevIns, pCtl, &g_ataDMARequest);
|
---|
6053 | }
|
---|
6054 | }
|
---|
6055 | else
|
---|
6056 | {
|
---|
6057 | Assert(s->uTxDir == PDMMEDIATXDIR_NONE); /* Any transfer which has an initial transfer size of 0 must be marked as such. */
|
---|
6058 | /* Finish DMA transfer. */
|
---|
6059 | ataR3DMATransferStop(s);
|
---|
6060 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
6061 | pCtl->uAsyncIOState = ATA_AIO_NEW;
|
---|
6062 | }
|
---|
6063 | }
|
---|
6064 | else
|
---|
6065 | {
|
---|
6066 | if (s->cbTotalTransfer)
|
---|
6067 | {
|
---|
6068 | ataHCPIOTransfer(pDevIns, pCtl);
|
---|
6069 | Assert(!pCtl->fRedo);
|
---|
6070 | if (s->fATAPITransfer || s->uTxDir != PDMMEDIATXDIR_TO_DEVICE)
|
---|
6071 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
6072 |
|
---|
6073 | if (s->uTxDir == PDMMEDIATXDIR_TO_DEVICE || s->iSourceSink != ATAFN_SS_NULL)
|
---|
6074 | {
|
---|
6075 | /* Write operations and not yet finished transfers
|
---|
6076 | * must be completed in the async I/O thread. */
|
---|
6077 | pCtl->uAsyncIOState = ATA_AIO_PIO;
|
---|
6078 | }
|
---|
6079 | else
|
---|
6080 | {
|
---|
6081 | /* Finished read operation can be handled inline
|
---|
6082 | * in the end of PIO transfer handling code. Linux
|
---|
6083 | * depends on this, as it waits only briefly for
|
---|
6084 | * devices to become ready after incoming data
|
---|
6085 | * transfer. Cannot find anything in the ATA spec
|
---|
6086 | * that backs this assumption, but as all kernels
|
---|
6087 | * are affected (though most of the time it does
|
---|
6088 | * not cause any harm) this must work. */
|
---|
6089 | pCtl->uAsyncIOState = ATA_AIO_NEW;
|
---|
6090 | }
|
---|
6091 | }
|
---|
6092 | else
|
---|
6093 | {
|
---|
6094 | Assert(s->uTxDir == PDMMEDIATXDIR_NONE); /* Any transfer which has an initial transfer size of 0 must be marked as such. */
|
---|
6095 | /* Finish PIO transfer. */
|
---|
6096 | ataHCPIOTransfer(pDevIns, pCtl);
|
---|
6097 | Assert(!pCtl->fRedo);
|
---|
6098 | if (!s->fATAPITransfer)
|
---|
6099 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
6100 | pCtl->uAsyncIOState = ATA_AIO_NEW;
|
---|
6101 | }
|
---|
6102 | }
|
---|
6103 | break;
|
---|
6104 | }
|
---|
6105 |
|
---|
6106 | case ATA_AIO_DMA:
|
---|
6107 | {
|
---|
6108 | BMDMAState *bm = &pCtl->BmDma;
|
---|
6109 | PATADEVSTATE s = &pCtl->aIfs[pCtl->iAIOIf & ATA_SELECTED_IF_MASK];
|
---|
6110 | ATAFNSS iOriginalSourceSink = (ATAFNSS)s->iSourceSink; /* Used by the hack below, but gets reset by then. */
|
---|
6111 |
|
---|
6112 | if (s->uTxDir == PDMMEDIATXDIR_FROM_DEVICE)
|
---|
6113 | AssertRelease(bm->u8Cmd & BM_CMD_WRITE);
|
---|
6114 | else
|
---|
6115 | AssertRelease(!(bm->u8Cmd & BM_CMD_WRITE));
|
---|
6116 |
|
---|
6117 | if (RT_LIKELY(!pCtl->fRedo))
|
---|
6118 | {
|
---|
6119 | /* The specs say that the descriptor table must not cross a
|
---|
6120 | * 4K boundary. */
|
---|
6121 | pCtl->GCPhysFirstDMADesc = bm->GCPhysAddr;
|
---|
6122 | pCtl->GCPhysLastDMADesc = RT_ALIGN_32(bm->GCPhysAddr + 1, _4K) - sizeof(BMDMADesc);
|
---|
6123 | }
|
---|
6124 | ataR3DMATransfer(pDevIns, pCtl, pCtlR3);
|
---|
6125 |
|
---|
6126 | if (RT_UNLIKELY(pCtl->fRedo && !pCtl->fReset))
|
---|
6127 | {
|
---|
6128 | LogRel(("PIIX3 ATA: Ctl#%d: redo DMA operation\n", pCtl->iCtl));
|
---|
6129 | ataHCAsyncIOPutRequest(pDevIns, pCtl, &g_ataDMARequest);
|
---|
6130 | break;
|
---|
6131 | }
|
---|
6132 |
|
---|
6133 | /* The infamous delay IRQ hack. */
|
---|
6134 | if ( iOriginalSourceSink == ATAFN_SS_WRITE_SECTORS
|
---|
6135 | && s->cbTotalTransfer == 0
|
---|
6136 | && pCtl->msDelayIRQ)
|
---|
6137 | {
|
---|
6138 | /* Delay IRQ for writing. Required to get the Win2K
|
---|
6139 | * installation work reliably (otherwise it crashes,
|
---|
6140 | * usually during component install). So far no better
|
---|
6141 | * solution has been found. */
|
---|
6142 | Log(("%s: delay IRQ hack\n", __FUNCTION__));
|
---|
6143 | ataR3LockLeave(pDevIns, pCtl);
|
---|
6144 | RTThreadSleep(pCtl->msDelayIRQ);
|
---|
6145 | ataR3LockEnter(pDevIns, pCtl);
|
---|
6146 | }
|
---|
6147 |
|
---|
6148 | ataUnsetStatus(pCtl, s, ATA_STAT_DRQ);
|
---|
6149 | Assert(!pCtl->fChainedTransfer);
|
---|
6150 | Assert(s->iSourceSink == ATAFN_SS_NULL);
|
---|
6151 | if (s->fATAPITransfer)
|
---|
6152 | {
|
---|
6153 | s->uATARegNSector = (s->uATARegNSector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD;
|
---|
6154 | Log2(("%s: Ctl#%d: interrupt reason %#04x\n", __FUNCTION__, pCtl->iCtl, s->uATARegNSector));
|
---|
6155 | s->fATAPITransfer = false;
|
---|
6156 | }
|
---|
6157 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
6158 | pCtl->uAsyncIOState = ATA_AIO_NEW;
|
---|
6159 | break;
|
---|
6160 | }
|
---|
6161 |
|
---|
6162 | case ATA_AIO_PIO:
|
---|
6163 | {
|
---|
6164 | uint8_t const iIf = pCtl->iAIOIf & ATA_SELECTED_IF_MASK;
|
---|
6165 | pCtl->iAIOIf = iIf;
|
---|
6166 | PATADEVSTATE s = &pCtl->aIfs[iIf];
|
---|
6167 | PATADEVSTATER3 pDevR3 = &pCtlR3->aIfs[iIf];
|
---|
6168 |
|
---|
6169 | uint8_t const iSourceSink = s->iSourceSink;
|
---|
6170 | if ( iSourceSink != ATAFN_SS_NULL
|
---|
6171 | && iSourceSink < RT_ELEMENTS(g_apfnSourceSinkFuncs))
|
---|
6172 | {
|
---|
6173 | bool fRedo;
|
---|
6174 | Log2(("%s: Ctl#%d: calling source/sink function\n", __FUNCTION__, pCtl->iCtl));
|
---|
6175 | fRedo = g_apfnSourceSinkFuncs[iSourceSink](pDevIns, pCtl, s, pDevR3);
|
---|
6176 | pCtl->fRedo = fRedo;
|
---|
6177 | if (RT_UNLIKELY(fRedo && !pCtl->fReset))
|
---|
6178 | {
|
---|
6179 | LogRel(("PIIX3 ATA: Ctl#%d: redo PIO operation\n", pCtl->iCtl));
|
---|
6180 | ataHCAsyncIOPutRequest(pDevIns, pCtl, &g_ataPIORequest);
|
---|
6181 | break;
|
---|
6182 | }
|
---|
6183 | s->iIOBufferCur = 0;
|
---|
6184 | s->iIOBufferEnd = s->cbElementaryTransfer;
|
---|
6185 | }
|
---|
6186 | else
|
---|
6187 | {
|
---|
6188 | /* Continue a previously started transfer. */
|
---|
6189 | Assert(iSourceSink == ATAFN_SS_NULL);
|
---|
6190 | ataUnsetStatus(pCtl, s, ATA_STAT_BUSY);
|
---|
6191 | ataSetStatus(pCtl, s, ATA_STAT_READY);
|
---|
6192 | }
|
---|
6193 |
|
---|
6194 | /* It is possible that the drives on this controller get RESET
|
---|
6195 | * during the above call to the source/sink function. If that's
|
---|
6196 | * the case, don't restart the transfer and don't finish it the
|
---|
6197 | * usual way. RESET handling took care of all that already.
|
---|
6198 | * Most important: do not change uAsyncIOState. */
|
---|
6199 | if (pCtl->fReset)
|
---|
6200 | break;
|
---|
6201 |
|
---|
6202 | if (s->cbTotalTransfer)
|
---|
6203 | {
|
---|
6204 | ataHCPIOTransfer(pDevIns, pCtl);
|
---|
6205 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
6206 |
|
---|
6207 | if (s->uTxDir == PDMMEDIATXDIR_TO_DEVICE || s->iSourceSink != ATAFN_SS_NULL)
|
---|
6208 | {
|
---|
6209 | /* Write operations and not yet finished transfers
|
---|
6210 | * must be completed in the async I/O thread. */
|
---|
6211 | pCtl->uAsyncIOState = ATA_AIO_PIO;
|
---|
6212 | }
|
---|
6213 | else
|
---|
6214 | {
|
---|
6215 | /* Finished read operation can be handled inline
|
---|
6216 | * in the end of PIO transfer handling code. Linux
|
---|
6217 | * depends on this, as it waits only briefly for
|
---|
6218 | * devices to become ready after incoming data
|
---|
6219 | * transfer. Cannot find anything in the ATA spec
|
---|
6220 | * that backs this assumption, but as all kernels
|
---|
6221 | * are affected (though most of the time it does
|
---|
6222 | * not cause any harm) this must work. */
|
---|
6223 | pCtl->uAsyncIOState = ATA_AIO_NEW;
|
---|
6224 | }
|
---|
6225 | }
|
---|
6226 | else
|
---|
6227 | {
|
---|
6228 | /* The infamous delay IRQ hack. */
|
---|
6229 | if (RT_UNLIKELY(pCtl->msDelayIRQ))
|
---|
6230 | {
|
---|
6231 | /* Various antique guests have buggy disk drivers silently
|
---|
6232 | * assuming that disk operations take a relatively long time.
|
---|
6233 | * Work around such bugs by holding off interrupts a bit.
|
---|
6234 | */
|
---|
6235 | Log(("%s: delay IRQ hack (PIO)\n", __FUNCTION__));
|
---|
6236 | ataR3LockLeave(pDevIns, pCtl);
|
---|
6237 | RTThreadSleep(pCtl->msDelayIRQ);
|
---|
6238 | ataR3LockEnter(pDevIns, pCtl);
|
---|
6239 | }
|
---|
6240 |
|
---|
6241 | /* Finish PIO transfer. */
|
---|
6242 | ataHCPIOTransfer(pDevIns, pCtl);
|
---|
6243 | if ( !pCtl->fChainedTransfer
|
---|
6244 | && !s->fATAPITransfer
|
---|
6245 | && s->uTxDir != PDMMEDIATXDIR_FROM_DEVICE)
|
---|
6246 | {
|
---|
6247 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
6248 | }
|
---|
6249 | pCtl->uAsyncIOState = ATA_AIO_NEW;
|
---|
6250 | }
|
---|
6251 | break;
|
---|
6252 | }
|
---|
6253 |
|
---|
6254 | case ATA_AIO_RESET_ASSERTED:
|
---|
6255 | pCtl->uAsyncIOState = ATA_AIO_RESET_CLEARED;
|
---|
6256 | ataHCPIOTransferStop(pDevIns, pCtl, &pCtl->aIfs[0]);
|
---|
6257 | ataHCPIOTransferStop(pDevIns, pCtl, &pCtl->aIfs[1]);
|
---|
6258 | /* Do not change the DMA registers, they are not affected by the
|
---|
6259 | * ATA controller reset logic. It should be sufficient to issue a
|
---|
6260 | * new command, which is now possible as the state is cleared. */
|
---|
6261 | break;
|
---|
6262 |
|
---|
6263 | case ATA_AIO_RESET_CLEARED:
|
---|
6264 | pCtl->uAsyncIOState = ATA_AIO_NEW;
|
---|
6265 | pCtl->fReset = false;
|
---|
6266 | /* Ensure that half-completed transfers are not redone. A reset
|
---|
6267 | * cancels the entire transfer, so continuing is wrong. */
|
---|
6268 | pCtl->fRedo = false;
|
---|
6269 | pCtl->fRedoDMALastDesc = false;
|
---|
6270 | LogRel(("PIIX3 ATA: Ctl#%d: finished processing RESET\n", pCtl->iCtl));
|
---|
6271 | for (uint32_t i = 0; i < RT_ELEMENTS(pCtl->aIfs); i++)
|
---|
6272 | {
|
---|
6273 | ataR3SetSignature(&pCtl->aIfs[i]);
|
---|
6274 | if (pCtl->aIfs[i].fATAPI)
|
---|
6275 | ataSetStatusValue(pCtl, &pCtl->aIfs[i], 0); /* NOTE: READY is _not_ set */
|
---|
6276 | else
|
---|
6277 | ataSetStatusValue(pCtl, &pCtl->aIfs[i], ATA_STAT_READY | ATA_STAT_SEEK);
|
---|
6278 | }
|
---|
6279 | break;
|
---|
6280 |
|
---|
6281 | case ATA_AIO_ABORT:
|
---|
6282 | {
|
---|
6283 | /* Abort the current command no matter what. There cannot be
|
---|
6284 | * any command activity on the other drive otherwise using
|
---|
6285 | * one thread per controller wouldn't work at all. */
|
---|
6286 | PATADEVSTATE s = &pCtl->aIfs[pReq->u.a.iIf & ATA_SELECTED_IF_MASK];
|
---|
6287 |
|
---|
6288 | pCtl->uAsyncIOState = ATA_AIO_NEW;
|
---|
6289 | /* Do not change the DMA registers, they are not affected by the
|
---|
6290 | * ATA controller reset logic. It should be sufficient to issue a
|
---|
6291 | * new command, which is now possible as the state is cleared. */
|
---|
6292 | if (pReq->u.a.fResetDrive)
|
---|
6293 | {
|
---|
6294 | ataR3ResetDevice(pDevIns, pCtl, s);
|
---|
6295 | ataR3DeviceDiag(pCtl, s);
|
---|
6296 | }
|
---|
6297 | else
|
---|
6298 | {
|
---|
6299 | /* Stop any pending DMA transfer. */
|
---|
6300 | s->fDMA = false;
|
---|
6301 | ataHCPIOTransferStop(pDevIns, pCtl, s);
|
---|
6302 | ataUnsetStatus(pCtl, s, ATA_STAT_BUSY | ATA_STAT_DRQ | ATA_STAT_SEEK | ATA_STAT_ERR);
|
---|
6303 | ataSetStatus(pCtl, s, ATA_STAT_READY);
|
---|
6304 | ataHCSetIRQ(pDevIns, pCtl, s);
|
---|
6305 | }
|
---|
6306 | break;
|
---|
6307 | }
|
---|
6308 |
|
---|
6309 | default:
|
---|
6310 | AssertMsgFailed(("Undefined async I/O state %d\n", pCtl->uAsyncIOState));
|
---|
6311 | }
|
---|
6312 |
|
---|
6313 | ataR3AsyncIORemoveCurrentRequest(pDevIns, pCtl, ReqType);
|
---|
6314 | pReq = ataR3AsyncIOGetCurrentRequest(pDevIns, pCtl);
|
---|
6315 |
|
---|
6316 | if (pCtl->uAsyncIOState == ATA_AIO_NEW && !pCtl->fChainedTransfer)
|
---|
6317 | {
|
---|
6318 | # if defined(DEBUG) || defined(VBOX_WITH_STATISTICS)
|
---|
6319 | STAM_PROFILE_ADV_STOP(&pCtl->StatAsyncTime, a);
|
---|
6320 | # endif
|
---|
6321 |
|
---|
6322 | u64TS = RTTimeNanoTS() - u64TS;
|
---|
6323 | uWait = u64TS / 1000;
|
---|
6324 | uintptr_t const iAIOIf = pCtl->iAIOIf & ATA_SELECTED_IF_MASK;
|
---|
6325 | Log(("%s: Ctl#%d: LUN#%d finished I/O transaction in %d microseconds\n",
|
---|
6326 | __FUNCTION__, pCtl->iCtl, pCtl->aIfs[iAIOIf].iLUN, (uint32_t)(uWait)));
|
---|
6327 | /* Mark command as finished. */
|
---|
6328 | pCtl->aIfs[iAIOIf].u64CmdTS = 0;
|
---|
6329 |
|
---|
6330 | /*
|
---|
6331 | * Release logging of command execution times depends on the
|
---|
6332 | * command type. ATAPI commands often take longer (due to CD/DVD
|
---|
6333 | * spin up time etc.) so the threshold is different.
|
---|
6334 | */
|
---|
6335 | if (pCtl->aIfs[iAIOIf].uATARegCommand != ATA_PACKET)
|
---|
6336 | {
|
---|
6337 | if (uWait > 8 * 1000 * 1000)
|
---|
6338 | {
|
---|
6339 | /*
|
---|
6340 | * Command took longer than 8 seconds. This is close
|
---|
6341 | * enough or over the guest's command timeout, so place
|
---|
6342 | * an entry in the release log to allow tracking such
|
---|
6343 | * timing errors (which are often caused by the host).
|
---|
6344 | */
|
---|
6345 | LogRel(("PIIX3 ATA: execution time for ATA command %#04x was %d seconds\n",
|
---|
6346 | pCtl->aIfs[iAIOIf].uATARegCommand, uWait / (1000 * 1000)));
|
---|
6347 | }
|
---|
6348 | }
|
---|
6349 | else
|
---|
6350 | {
|
---|
6351 | if (uWait > 20 * 1000 * 1000)
|
---|
6352 | {
|
---|
6353 | /*
|
---|
6354 | * Command took longer than 20 seconds. This is close
|
---|
6355 | * enough or over the guest's command timeout, so place
|
---|
6356 | * an entry in the release log to allow tracking such
|
---|
6357 | * timing errors (which are often caused by the host).
|
---|
6358 | */
|
---|
6359 | LogRel(("PIIX3 ATA: execution time for ATAPI command %#04x was %d seconds\n",
|
---|
6360 | pCtl->aIfs[iAIOIf].abATAPICmd[0], uWait / (1000 * 1000)));
|
---|
6361 | }
|
---|
6362 | }
|
---|
6363 |
|
---|
6364 | # if defined(DEBUG) || defined(VBOX_WITH_STATISTICS)
|
---|
6365 | if (uWait < pCtl->StatAsyncMinWait || !pCtl->StatAsyncMinWait)
|
---|
6366 | pCtl->StatAsyncMinWait = uWait;
|
---|
6367 | if (uWait > pCtl->StatAsyncMaxWait)
|
---|
6368 | pCtl->StatAsyncMaxWait = uWait;
|
---|
6369 |
|
---|
6370 | STAM_COUNTER_ADD(&pCtl->StatAsyncTimeUS, uWait);
|
---|
6371 | STAM_COUNTER_INC(&pCtl->StatAsyncOps);
|
---|
6372 | # endif /* DEBUG || VBOX_WITH_STATISTICS */
|
---|
6373 | }
|
---|
6374 |
|
---|
6375 | ataR3LockLeave(pDevIns, pCtl);
|
---|
6376 | }
|
---|
6377 |
|
---|
6378 | /* Signal the ultimate idleness. */
|
---|
6379 | RTThreadUserSignal(pCtlR3->hAsyncIOThread);
|
---|
6380 | if (pCtlR3->fSignalIdle)
|
---|
6381 | PDMDevHlpAsyncNotificationCompleted(pDevIns);
|
---|
6382 |
|
---|
6383 | /* Cleanup the state. */
|
---|
6384 | /* Do not destroy request lock yet, still needed for proper shutdown. */
|
---|
6385 | pCtlR3->fShutdown = false;
|
---|
6386 |
|
---|
6387 | Log2(("%s: Ctl#%d: return %Rrc\n", __FUNCTION__, pCtl->iCtl, rc));
|
---|
6388 | return rc;
|
---|
6389 | }
|
---|
6390 |
|
---|
6391 | #endif /* IN_RING3 */
|
---|
6392 |
|
---|
6393 | static uint32_t ataBMDMACmdReadB(PATACONTROLLER pCtl, uint32_t addr)
|
---|
6394 | {
|
---|
6395 | uint32_t val = pCtl->BmDma.u8Cmd;
|
---|
6396 | RT_NOREF(addr);
|
---|
6397 | Log2(("%s: addr=%#06x val=%#04x\n", __FUNCTION__, addr, val));
|
---|
6398 | return val;
|
---|
6399 | }
|
---|
6400 |
|
---|
6401 |
|
---|
6402 | static void ataBMDMACmdWriteB(PPDMDEVINS pDevIns, PATACONTROLLER pCtl, uint32_t addr, uint32_t val)
|
---|
6403 | {
|
---|
6404 | RT_NOREF(pDevIns, addr);
|
---|
6405 | Log2(("%s: addr=%#06x val=%#04x\n", __FUNCTION__, addr, val));
|
---|
6406 | if (!(val & BM_CMD_START))
|
---|
6407 | {
|
---|
6408 | pCtl->BmDma.u8Status &= ~BM_STATUS_DMAING;
|
---|
6409 | pCtl->BmDma.u8Cmd = val & (BM_CMD_START | BM_CMD_WRITE);
|
---|
6410 | }
|
---|
6411 | else
|
---|
6412 | {
|
---|
6413 | #ifndef IN_RC
|
---|
6414 | /* Check whether the guest OS wants to change DMA direction in
|
---|
6415 | * mid-flight. Not allowed, according to the PIIX3 specs. */
|
---|
6416 | Assert(!(pCtl->BmDma.u8Status & BM_STATUS_DMAING) || !((val ^ pCtl->BmDma.u8Cmd) & 0x04));
|
---|
6417 | uint8_t uOldBmDmaStatus = pCtl->BmDma.u8Status;
|
---|
6418 | pCtl->BmDma.u8Status |= BM_STATUS_DMAING;
|
---|
6419 | pCtl->BmDma.u8Cmd = val & (BM_CMD_START | BM_CMD_WRITE);
|
---|
6420 |
|
---|
6421 | /* Do not continue DMA transfers while the RESET line is asserted. */
|
---|
6422 | if (pCtl->fReset)
|
---|
6423 | {
|
---|
6424 | Log2(("%s: Ctl#%d: suppressed continuing DMA transfer as RESET is active\n", __FUNCTION__, pCtl->iCtl));
|
---|
6425 | return;
|
---|
6426 | }
|
---|
6427 |
|
---|
6428 | /* Do not start DMA transfers if there's a PIO transfer going on,
|
---|
6429 | * or if there is already a transfer started on this controller. */
|
---|
6430 | if ( !pCtl->aIfs[pCtl->iSelectedIf & ATA_SELECTED_IF_MASK].fDMA
|
---|
6431 | || (uOldBmDmaStatus & BM_STATUS_DMAING))
|
---|
6432 | return;
|
---|
6433 |
|
---|
6434 | if (pCtl->aIfs[pCtl->iAIOIf & ATA_SELECTED_IF_MASK].uATARegStatus & ATA_STAT_DRQ)
|
---|
6435 | {
|
---|
6436 | Log2(("%s: Ctl#%d: message to async I/O thread, continuing DMA transfer\n", __FUNCTION__, pCtl->iCtl));
|
---|
6437 | ataHCAsyncIOPutRequest(pDevIns, pCtl, &g_ataDMARequest);
|
---|
6438 | }
|
---|
6439 | #else /* !IN_RING3 */
|
---|
6440 | AssertMsgFailed(("DMA START handling is too complicated for RC\n"));
|
---|
6441 | #endif /* IN_RING3 */
|
---|
6442 | }
|
---|
6443 | }
|
---|
6444 |
|
---|
6445 | static uint32_t ataBMDMAStatusReadB(PATACONTROLLER pCtl, uint32_t addr)
|
---|
6446 | {
|
---|
6447 | uint32_t val = pCtl->BmDma.u8Status;
|
---|
6448 | RT_NOREF(addr);
|
---|
6449 | Log2(("%s: addr=%#06x val=%#04x\n", __FUNCTION__, addr, val));
|
---|
6450 | return val;
|
---|
6451 | }
|
---|
6452 |
|
---|
6453 | static void ataBMDMAStatusWriteB(PATACONTROLLER pCtl, uint32_t addr, uint32_t val)
|
---|
6454 | {
|
---|
6455 | RT_NOREF(addr);
|
---|
6456 | Log2(("%s: addr=%#06x val=%#04x\n", __FUNCTION__, addr, val));
|
---|
6457 | pCtl->BmDma.u8Status = (val & (BM_STATUS_D0DMA | BM_STATUS_D1DMA))
|
---|
6458 | | (pCtl->BmDma.u8Status & BM_STATUS_DMAING)
|
---|
6459 | | (pCtl->BmDma.u8Status & ~val & (BM_STATUS_ERROR | BM_STATUS_INT));
|
---|
6460 | }
|
---|
6461 |
|
---|
6462 | static uint32_t ataBMDMAAddrReadL(PATACONTROLLER pCtl, uint32_t addr)
|
---|
6463 | {
|
---|
6464 | uint32_t val = (uint32_t)pCtl->BmDma.GCPhysAddr;
|
---|
6465 | RT_NOREF(addr);
|
---|
6466 | Log2(("%s: addr=%#06x val=%#010x\n", __FUNCTION__, addr, val));
|
---|
6467 | return val;
|
---|
6468 | }
|
---|
6469 |
|
---|
6470 | static void ataBMDMAAddrWriteL(PATACONTROLLER pCtl, uint32_t addr, uint32_t val)
|
---|
6471 | {
|
---|
6472 | RT_NOREF(addr);
|
---|
6473 | Log2(("%s: addr=%#06x val=%#010x\n", __FUNCTION__, addr, val));
|
---|
6474 | pCtl->BmDma.GCPhysAddr = val & ~3;
|
---|
6475 | }
|
---|
6476 |
|
---|
6477 | static void ataBMDMAAddrWriteLowWord(PATACONTROLLER pCtl, uint32_t addr, uint32_t val)
|
---|
6478 | {
|
---|
6479 | RT_NOREF(addr);
|
---|
6480 | Log2(("%s: addr=%#06x val=%#010x\n", __FUNCTION__, addr, val));
|
---|
6481 | pCtl->BmDma.GCPhysAddr = (pCtl->BmDma.GCPhysAddr & 0xFFFF0000) | RT_LOWORD(val & ~3);
|
---|
6482 |
|
---|
6483 | }
|
---|
6484 |
|
---|
6485 | static void ataBMDMAAddrWriteHighWord(PATACONTROLLER pCtl, uint32_t addr, uint32_t val)
|
---|
6486 | {
|
---|
6487 | Log2(("%s: addr=%#06x val=%#010x\n", __FUNCTION__, addr, val));
|
---|
6488 | RT_NOREF(addr);
|
---|
6489 | pCtl->BmDma.GCPhysAddr = (RT_LOWORD(val) << 16) | RT_LOWORD(pCtl->BmDma.GCPhysAddr);
|
---|
6490 | }
|
---|
6491 |
|
---|
6492 | /** Helper for ataBMDMAIOPortRead and ataBMDMAIOPortWrite. */
|
---|
6493 | #define VAL(port, size) ( ((port) & BM_DMA_CTL_IOPORTS_MASK) | ((size) << BM_DMA_CTL_IOPORTS_SHIFT) )
|
---|
6494 |
|
---|
6495 | /**
|
---|
6496 | * @callback_method_impl{FNIOMIOPORTNEWOUT,
|
---|
6497 | * Port I/O Handler for bus-master DMA IN operations - both controllers.}
|
---|
6498 | */
|
---|
6499 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
6500 | ataBMDMAIOPortRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb)
|
---|
6501 | {
|
---|
6502 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
6503 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (offPort >> BM_DMA_CTL_IOPORTS_SHIFT));
|
---|
6504 | RT_NOREF(pvUser);
|
---|
6505 |
|
---|
6506 | VBOXSTRICTRC rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_READ);
|
---|
6507 | if (rc == VINF_SUCCESS)
|
---|
6508 | {
|
---|
6509 | switch (VAL(offPort, cb))
|
---|
6510 | {
|
---|
6511 | case VAL(0, 1): *pu32 = ataBMDMACmdReadB(pCtl, offPort); break;
|
---|
6512 | case VAL(0, 2): *pu32 = ataBMDMACmdReadB(pCtl, offPort); break;
|
---|
6513 | case VAL(2, 1): *pu32 = ataBMDMAStatusReadB(pCtl, offPort); break;
|
---|
6514 | case VAL(2, 2): *pu32 = ataBMDMAStatusReadB(pCtl, offPort); break;
|
---|
6515 | case VAL(4, 4): *pu32 = ataBMDMAAddrReadL(pCtl, offPort); break;
|
---|
6516 | case VAL(0, 4):
|
---|
6517 | /* The SCO OpenServer tries to read 4 bytes starting from offset 0. */
|
---|
6518 | *pu32 = ataBMDMACmdReadB(pCtl, offPort) | (ataBMDMAStatusReadB(pCtl, offPort) << 16);
|
---|
6519 | break;
|
---|
6520 | default:
|
---|
6521 | ASSERT_GUEST_MSG_FAILED(("Unsupported read from port %x size=%d\n", offPort, cb));
|
---|
6522 | rc = VERR_IOM_IOPORT_UNUSED;
|
---|
6523 | break;
|
---|
6524 | }
|
---|
6525 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
6526 | }
|
---|
6527 | return rc;
|
---|
6528 | }
|
---|
6529 |
|
---|
6530 | /**
|
---|
6531 | * @callback_method_impl{FNIOMIOPORTNEWOUT,
|
---|
6532 | * Port I/O Handler for bus-master DMA OUT operations - both controllers.}
|
---|
6533 | */
|
---|
6534 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
6535 | ataBMDMAIOPortWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb)
|
---|
6536 | {
|
---|
6537 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
6538 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (offPort >> BM_DMA_CTL_IOPORTS_SHIFT));
|
---|
6539 | RT_NOREF(pvUser);
|
---|
6540 |
|
---|
6541 | VBOXSTRICTRC rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_WRITE);
|
---|
6542 | if (rc == VINF_SUCCESS)
|
---|
6543 | {
|
---|
6544 | switch (VAL(offPort, cb))
|
---|
6545 | {
|
---|
6546 | case VAL(0, 1):
|
---|
6547 | #ifdef IN_RC
|
---|
6548 | if (u32 & BM_CMD_START)
|
---|
6549 | {
|
---|
6550 | rc = VINF_IOM_R3_IOPORT_WRITE;
|
---|
6551 | break;
|
---|
6552 | }
|
---|
6553 | #endif
|
---|
6554 | ataBMDMACmdWriteB(pDevIns, pCtl, offPort, u32);
|
---|
6555 | break;
|
---|
6556 | case VAL(2, 1): ataBMDMAStatusWriteB(pCtl, offPort, u32); break;
|
---|
6557 | case VAL(4, 4): ataBMDMAAddrWriteL(pCtl, offPort, u32); break;
|
---|
6558 | case VAL(4, 2): ataBMDMAAddrWriteLowWord(pCtl, offPort, u32); break;
|
---|
6559 | case VAL(6, 2): ataBMDMAAddrWriteHighWord(pCtl, offPort, u32); break;
|
---|
6560 | default:
|
---|
6561 | ASSERT_GUEST_MSG_FAILED(("Unsupported write to port %x size=%d val=%x\n", offPort, cb, u32));
|
---|
6562 | break;
|
---|
6563 | }
|
---|
6564 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
6565 | }
|
---|
6566 | return rc;
|
---|
6567 | }
|
---|
6568 |
|
---|
6569 | #undef VAL
|
---|
6570 |
|
---|
6571 | #ifdef IN_RING3
|
---|
6572 |
|
---|
6573 | /* -=-=-=-=-=- ATASTATE::IBase -=-=-=-=-=- */
|
---|
6574 |
|
---|
6575 | /**
|
---|
6576 | * @interface_method_impl{PDMIBASE,pfnQueryInterface}
|
---|
6577 | */
|
---|
6578 | static DECLCALLBACK(void *) ataR3Status_QueryInterface(PPDMIBASE pInterface, const char *pszIID)
|
---|
6579 | {
|
---|
6580 | PATASTATER3 pThisCC = RT_FROM_MEMBER(pInterface, ATASTATER3, IBase);
|
---|
6581 | PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pThisCC->IBase);
|
---|
6582 | PDMIBASE_RETURN_INTERFACE(pszIID, PDMILEDPORTS, &pThisCC->ILeds);
|
---|
6583 | return NULL;
|
---|
6584 | }
|
---|
6585 |
|
---|
6586 |
|
---|
6587 | /* -=-=-=-=-=- ATASTATE::ILeds -=-=-=-=-=- */
|
---|
6588 |
|
---|
6589 | /**
|
---|
6590 | * Gets the pointer to the status LED of a unit.
|
---|
6591 | *
|
---|
6592 | * @returns VBox status code.
|
---|
6593 | * @param pInterface Pointer to the interface structure containing the called function pointer.
|
---|
6594 | * @param iLUN The unit which status LED we desire.
|
---|
6595 | * @param ppLed Where to store the LED pointer.
|
---|
6596 | */
|
---|
6597 | static DECLCALLBACK(int) ataR3Status_QueryStatusLed(PPDMILEDPORTS pInterface, unsigned iLUN, PPDMLED *ppLed)
|
---|
6598 | {
|
---|
6599 | if (iLUN < 4)
|
---|
6600 | {
|
---|
6601 | PATASTATER3 pThisCC = RT_FROM_MEMBER(pInterface, ATASTATER3, ILeds);
|
---|
6602 | PATASTATE pThis = PDMDEVINS_2_DATA(pThisCC->pDevIns, PATASTATE);
|
---|
6603 | switch (iLUN)
|
---|
6604 | {
|
---|
6605 | case 0: *ppLed = &pThis->aCts[0].aIfs[0].Led; break;
|
---|
6606 | case 1: *ppLed = &pThis->aCts[0].aIfs[1].Led; break;
|
---|
6607 | case 2: *ppLed = &pThis->aCts[1].aIfs[0].Led; break;
|
---|
6608 | case 3: *ppLed = &pThis->aCts[1].aIfs[1].Led; break;
|
---|
6609 | }
|
---|
6610 | Assert((*ppLed)->u32Magic == PDMLED_MAGIC);
|
---|
6611 | return VINF_SUCCESS;
|
---|
6612 | }
|
---|
6613 | return VERR_PDM_LUN_NOT_FOUND;
|
---|
6614 | }
|
---|
6615 |
|
---|
6616 |
|
---|
6617 | /* -=-=-=-=-=- ATADEVSTATE::IBase -=-=-=-=-=- */
|
---|
6618 |
|
---|
6619 | /**
|
---|
6620 | * @interface_method_impl{PDMIBASE,pfnQueryInterface}
|
---|
6621 | */
|
---|
6622 | static DECLCALLBACK(void *) ataR3QueryInterface(PPDMIBASE pInterface, const char *pszIID)
|
---|
6623 | {
|
---|
6624 | PATADEVSTATER3 pIfR3 = RT_FROM_MEMBER(pInterface, ATADEVSTATER3, IBase);
|
---|
6625 | PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pIfR3->IBase);
|
---|
6626 | PDMIBASE_RETURN_INTERFACE(pszIID, PDMIMEDIAPORT, &pIfR3->IPort);
|
---|
6627 | PDMIBASE_RETURN_INTERFACE(pszIID, PDMIMOUNTNOTIFY, &pIfR3->IMountNotify);
|
---|
6628 | return NULL;
|
---|
6629 | }
|
---|
6630 |
|
---|
6631 |
|
---|
6632 | /* -=-=-=-=-=- ATADEVSTATE::IPort -=-=-=-=-=- */
|
---|
6633 |
|
---|
6634 | /**
|
---|
6635 | * @interface_method_impl{PDMIMEDIAPORT,pfnQueryDeviceLocation}
|
---|
6636 | */
|
---|
6637 | static DECLCALLBACK(int) ataR3QueryDeviceLocation(PPDMIMEDIAPORT pInterface, const char **ppcszController,
|
---|
6638 | uint32_t *piInstance, uint32_t *piLUN)
|
---|
6639 | {
|
---|
6640 | PATADEVSTATER3 pIfR3 = RT_FROM_MEMBER(pInterface, ATADEVSTATER3, IPort);
|
---|
6641 | PPDMDEVINS pDevIns = pIfR3->pDevIns;
|
---|
6642 |
|
---|
6643 | AssertPtrReturn(ppcszController, VERR_INVALID_POINTER);
|
---|
6644 | AssertPtrReturn(piInstance, VERR_INVALID_POINTER);
|
---|
6645 | AssertPtrReturn(piLUN, VERR_INVALID_POINTER);
|
---|
6646 |
|
---|
6647 | *ppcszController = pDevIns->pReg->szName;
|
---|
6648 | *piInstance = pDevIns->iInstance;
|
---|
6649 | *piLUN = pIfR3->iLUN;
|
---|
6650 |
|
---|
6651 | return VINF_SUCCESS;
|
---|
6652 | }
|
---|
6653 |
|
---|
6654 | #endif /* IN_RING3 */
|
---|
6655 |
|
---|
6656 | /* -=-=-=-=-=- Wrappers -=-=-=-=-=- */
|
---|
6657 |
|
---|
6658 |
|
---|
6659 | /**
|
---|
6660 | * @callback_method_impl{FNIOMIOPORTNEWOUT,
|
---|
6661 | * Port I/O Handler for OUT operations on unpopulated IDE channels.}
|
---|
6662 | * @note offPort is an absolute port number!
|
---|
6663 | */
|
---|
6664 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
6665 | ataIOPortWriteEmptyBus(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb)
|
---|
6666 | {
|
---|
6667 | RT_NOREF(pDevIns, pvUser, offPort, u32, cb);
|
---|
6668 |
|
---|
6669 | #ifdef VBOX_STRICT
|
---|
6670 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
6671 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (uintptr_t)pvUser);
|
---|
6672 | Assert((uintptr_t)pvUser < 2);
|
---|
6673 | Assert(!pCtl->aIfs[0].fPresent && !pCtl->aIfs[1].fPresent);
|
---|
6674 | #endif
|
---|
6675 |
|
---|
6676 | /* This is simply a black hole, writes on unpopulated IDE channels elicit no response. */
|
---|
6677 | LogFunc(("Empty bus: Ignoring write to port %x val=%x size=%d\n", offPort, u32, cb));
|
---|
6678 | return VINF_SUCCESS;
|
---|
6679 | }
|
---|
6680 |
|
---|
6681 |
|
---|
6682 | /**
|
---|
6683 | * @callback_method_impl{FNIOMIOPORTNEWIN,
|
---|
6684 | * Port I/O Handler for IN operations on unpopulated IDE channels.}
|
---|
6685 | * @note offPort is an absolute port number!
|
---|
6686 | */
|
---|
6687 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
6688 | ataIOPortReadEmptyBus(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb)
|
---|
6689 | {
|
---|
6690 | RT_NOREF(pDevIns, offPort, pvUser);
|
---|
6691 |
|
---|
6692 | #ifdef VBOX_STRICT
|
---|
6693 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
6694 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (uintptr_t)pvUser);
|
---|
6695 | Assert((uintptr_t)pvUser < 2);
|
---|
6696 | Assert(cb <= 4);
|
---|
6697 | Assert(!pCtl->aIfs[0].fPresent && !pCtl->aIfs[1].fPresent);
|
---|
6698 | #endif
|
---|
6699 |
|
---|
6700 | /*
|
---|
6701 | * Reads on unpopulated IDE channels behave in a unique way. Newer ATA specifications
|
---|
6702 | * mandate that the host must have a pull-down resistor on signal DD7. As a consequence,
|
---|
6703 | * bit 7 is always read as zero. This greatly aids in ATA device detection because
|
---|
6704 | * the empty bus does not look to the host like a permanently busy drive, and no long
|
---|
6705 | * timeouts (on the order of 30 seconds) are needed.
|
---|
6706 | *
|
---|
6707 | * The response is entirely static and does not require any locking or other fancy
|
---|
6708 | * stuff. Breaking it out simplifies the I/O handling for non-empty IDE channels which
|
---|
6709 | * is quite complicated enough already.
|
---|
6710 | */
|
---|
6711 | *pu32 = ATA_EMPTY_BUS_DATA_32 >> ((4 - cb) * 8);
|
---|
6712 | LogFunc(("Empty bus: port %x val=%x size=%d\n", offPort, *pu32, cb));
|
---|
6713 | return VINF_SUCCESS;
|
---|
6714 | }
|
---|
6715 |
|
---|
6716 |
|
---|
6717 | /**
|
---|
6718 | * @callback_method_impl{FNIOMIOPORTNEWOUT,
|
---|
6719 | * Port I/O Handler for primary port range OUT operations.}
|
---|
6720 | * @note offPort is an absolute port number!
|
---|
6721 | */
|
---|
6722 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
6723 | ataIOPortWrite1Other(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb)
|
---|
6724 | {
|
---|
6725 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
6726 | uintptr_t iCtl = (uintptr_t)pvUser % RT_ELEMENTS(pThis->aCts);
|
---|
6727 | PATACONTROLLER pCtl = &pThis->aCts[iCtl];
|
---|
6728 |
|
---|
6729 | Assert((uintptr_t)pvUser < 2);
|
---|
6730 |
|
---|
6731 | VBOXSTRICTRC rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_WRITE);
|
---|
6732 | if (rc == VINF_SUCCESS)
|
---|
6733 | {
|
---|
6734 | /* Writes to the other command block ports should be 8-bit only. If they
|
---|
6735 | * are not, the high bits are simply discarded. Undocumented, but observed
|
---|
6736 | * on a real PIIX4 system.
|
---|
6737 | */
|
---|
6738 | if (cb > 1)
|
---|
6739 | Log(("ataIOPortWrite1: suspect write to port %x val=%x size=%d\n", offPort, u32, cb));
|
---|
6740 |
|
---|
6741 | rc = ataIOPortWriteU8(pDevIns, pCtl, offPort, u32, iCtl);
|
---|
6742 |
|
---|
6743 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
6744 | }
|
---|
6745 | return rc;
|
---|
6746 | }
|
---|
6747 |
|
---|
6748 |
|
---|
6749 | /**
|
---|
6750 | * @callback_method_impl{FNIOMIOPORTNEWIN,
|
---|
6751 | * Port I/O Handler for primary port range IN operations.}
|
---|
6752 | * @note offPort is an absolute port number!
|
---|
6753 | */
|
---|
6754 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
6755 | ataIOPortRead1Other(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb)
|
---|
6756 | {
|
---|
6757 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
6758 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (uintptr_t)pvUser);
|
---|
6759 |
|
---|
6760 | Assert((uintptr_t)pvUser < 2);
|
---|
6761 |
|
---|
6762 | VBOXSTRICTRC rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_READ);
|
---|
6763 | if (rc == VINF_SUCCESS)
|
---|
6764 | {
|
---|
6765 | /* Reads from the other command block registers should be 8-bit only.
|
---|
6766 | * If they are not, the low byte is propagated to the high bits.
|
---|
6767 | * Undocumented, but observed on a real PIIX4 system.
|
---|
6768 | */
|
---|
6769 | rc = ataIOPortReadU8(pDevIns, pCtl, offPort, pu32);
|
---|
6770 | if (cb > 1)
|
---|
6771 | {
|
---|
6772 | uint32_t pad;
|
---|
6773 |
|
---|
6774 | /* Replicate the 8-bit result into the upper three bytes. */
|
---|
6775 | pad = *pu32 & 0xff;
|
---|
6776 | pad = pad | (pad << 8);
|
---|
6777 | pad = pad | (pad << 16);
|
---|
6778 | *pu32 = pad;
|
---|
6779 | Log(("ataIOPortRead1: suspect read from port %x size=%d\n", offPort, cb));
|
---|
6780 | }
|
---|
6781 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
6782 | }
|
---|
6783 | return rc;
|
---|
6784 | }
|
---|
6785 |
|
---|
6786 |
|
---|
6787 | /**
|
---|
6788 | * @callback_method_impl{FNIOMIOPORTNEWOUT,
|
---|
6789 | * Port I/O Handler for secondary port range OUT operations.}
|
---|
6790 | * @note offPort is an absolute port number!
|
---|
6791 | */
|
---|
6792 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
6793 | ataIOPortWrite2(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb)
|
---|
6794 | {
|
---|
6795 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
6796 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (uintptr_t)pvUser);
|
---|
6797 | int rc;
|
---|
6798 |
|
---|
6799 | Assert((uintptr_t)pvUser < 2);
|
---|
6800 |
|
---|
6801 | if (cb == 1)
|
---|
6802 | {
|
---|
6803 | rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_WRITE);
|
---|
6804 | if (rc == VINF_SUCCESS)
|
---|
6805 | {
|
---|
6806 | rc = ataControlWrite(pDevIns, pCtl, u32, offPort);
|
---|
6807 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
6808 | }
|
---|
6809 | }
|
---|
6810 | else
|
---|
6811 | {
|
---|
6812 | Log(("ataIOPortWrite2: ignoring write to port %x+%x size=%d!\n", offPort, pCtl->IOPortBase2, cb));
|
---|
6813 | rc = VINF_SUCCESS;
|
---|
6814 | }
|
---|
6815 | return rc;
|
---|
6816 | }
|
---|
6817 |
|
---|
6818 |
|
---|
6819 | /**
|
---|
6820 | * @callback_method_impl{FNIOMIOPORTNEWIN,
|
---|
6821 | * Port I/O Handler for secondary port range IN operations.}
|
---|
6822 | * @note offPort is an absolute port number!
|
---|
6823 | */
|
---|
6824 | static DECLCALLBACK(VBOXSTRICTRC)
|
---|
6825 | ataIOPortRead2(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb)
|
---|
6826 | {
|
---|
6827 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
6828 | PATACONTROLLER pCtl = &RT_SAFE_SUBSCRIPT(pThis->aCts, (uintptr_t)pvUser);
|
---|
6829 | int rc;
|
---|
6830 |
|
---|
6831 | Assert((uintptr_t)pvUser < 2);
|
---|
6832 |
|
---|
6833 | if (cb == 1)
|
---|
6834 | {
|
---|
6835 | rc = PDMDevHlpCritSectEnter(pDevIns, &pCtl->lock, VINF_IOM_R3_IOPORT_READ);
|
---|
6836 | if (rc == VINF_SUCCESS)
|
---|
6837 | {
|
---|
6838 | *pu32 = ataStatusRead(pCtl, offPort);
|
---|
6839 | PDMDevHlpCritSectLeave(pDevIns, &pCtl->lock);
|
---|
6840 | }
|
---|
6841 | }
|
---|
6842 | else
|
---|
6843 | {
|
---|
6844 | Log(("ataIOPortRead2: ignoring read from port %x+%x size=%d!\n", offPort, pCtl->IOPortBase2, cb));
|
---|
6845 | rc = VERR_IOM_IOPORT_UNUSED;
|
---|
6846 | }
|
---|
6847 | return rc;
|
---|
6848 | }
|
---|
6849 |
|
---|
6850 | #ifdef IN_RING3
|
---|
6851 |
|
---|
6852 | /**
|
---|
6853 | * Detach notification.
|
---|
6854 | *
|
---|
6855 | * The DVD drive has been unplugged.
|
---|
6856 | *
|
---|
6857 | * @param pDevIns The device instance.
|
---|
6858 | * @param iLUN The logical unit which is being detached.
|
---|
6859 | * @param fFlags Flags, combination of the PDMDEVATT_FLAGS_* \#defines.
|
---|
6860 | */
|
---|
6861 | static DECLCALLBACK(void) ataR3Detach(PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags)
|
---|
6862 | {
|
---|
6863 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
6864 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATECC);
|
---|
6865 | AssertMsg(fFlags & PDM_TACH_FLAGS_NOT_HOT_PLUG,
|
---|
6866 | ("PIIX3IDE: Device does not support hotplugging\n")); RT_NOREF(fFlags);
|
---|
6867 |
|
---|
6868 | /*
|
---|
6869 | * Locate the controller and stuff.
|
---|
6870 | */
|
---|
6871 | unsigned iController = iLUN / RT_ELEMENTS(pThis->aCts[0].aIfs);
|
---|
6872 | AssertReleaseMsg(iController < RT_ELEMENTS(pThis->aCts), ("iController=%d iLUN=%d\n", iController, iLUN));
|
---|
6873 | PATACONTROLLER pCtl = &pThis->aCts[iController];
|
---|
6874 | PATACONTROLLERR3 pCtlR3 = &pThisCC->aCts[iController];
|
---|
6875 |
|
---|
6876 | unsigned iInterface = iLUN % RT_ELEMENTS(pThis->aCts[0].aIfs);
|
---|
6877 | PATADEVSTATE pIf = &pCtl->aIfs[iInterface];
|
---|
6878 | PATADEVSTATER3 pIfR3 = &pCtlR3->aIfs[iInterface];
|
---|
6879 |
|
---|
6880 | /*
|
---|
6881 | * Zero some important members.
|
---|
6882 | */
|
---|
6883 | pIfR3->pDrvBase = NULL;
|
---|
6884 | pIfR3->pDrvMedia = NULL;
|
---|
6885 | pIfR3->pDrvMount = NULL;
|
---|
6886 | pIf->fPresent = false;
|
---|
6887 |
|
---|
6888 | /*
|
---|
6889 | * In case there was a medium inserted.
|
---|
6890 | */
|
---|
6891 | ataR3MediumRemoved(pIf);
|
---|
6892 | }
|
---|
6893 |
|
---|
6894 |
|
---|
6895 | /**
|
---|
6896 | * Configure a LUN.
|
---|
6897 | *
|
---|
6898 | * @returns VBox status code.
|
---|
6899 | * @param pIf The ATA unit state, shared bits.
|
---|
6900 | * @param pIfR3 The ATA unit state, ring-3 bits.
|
---|
6901 | */
|
---|
6902 | static int ataR3ConfigLun(PATADEVSTATE pIf, PATADEVSTATER3 pIfR3)
|
---|
6903 | {
|
---|
6904 | /*
|
---|
6905 | * Query Block, Bios and Mount interfaces.
|
---|
6906 | */
|
---|
6907 | pIfR3->pDrvMedia = PDMIBASE_QUERY_INTERFACE(pIfR3->pDrvBase, PDMIMEDIA);
|
---|
6908 | if (!pIfR3->pDrvMedia)
|
---|
6909 | {
|
---|
6910 | AssertMsgFailed(("Configuration error: LUN#%d hasn't a block interface!\n", pIf->iLUN));
|
---|
6911 | return VERR_PDM_MISSING_INTERFACE;
|
---|
6912 | }
|
---|
6913 |
|
---|
6914 | pIfR3->pDrvMount = PDMIBASE_QUERY_INTERFACE(pIfR3->pDrvBase, PDMIMOUNT);
|
---|
6915 | pIf->fPresent = true;
|
---|
6916 |
|
---|
6917 | /*
|
---|
6918 | * Validate type.
|
---|
6919 | */
|
---|
6920 | PDMMEDIATYPE enmType = pIfR3->pDrvMedia->pfnGetType(pIfR3->pDrvMedia);
|
---|
6921 | if ( enmType != PDMMEDIATYPE_CDROM
|
---|
6922 | && enmType != PDMMEDIATYPE_DVD
|
---|
6923 | && enmType != PDMMEDIATYPE_HARD_DISK)
|
---|
6924 | {
|
---|
6925 | AssertMsgFailed(("Configuration error: LUN#%d isn't a disk or cd/dvd-rom. enmType=%d\n", pIf->iLUN, enmType));
|
---|
6926 | return VERR_PDM_UNSUPPORTED_BLOCK_TYPE;
|
---|
6927 | }
|
---|
6928 | if ( ( enmType == PDMMEDIATYPE_DVD
|
---|
6929 | || enmType == PDMMEDIATYPE_CDROM)
|
---|
6930 | && !pIfR3->pDrvMount)
|
---|
6931 | {
|
---|
6932 | AssertMsgFailed(("Internal error: cdrom without a mountable interface, WTF???!\n"));
|
---|
6933 | return VERR_INTERNAL_ERROR;
|
---|
6934 | }
|
---|
6935 | pIf->fATAPI = enmType == PDMMEDIATYPE_DVD || enmType == PDMMEDIATYPE_CDROM;
|
---|
6936 | pIf->fATAPIPassthrough = pIf->fATAPI && pIfR3->pDrvMedia->pfnSendCmd != NULL;
|
---|
6937 |
|
---|
6938 | /*
|
---|
6939 | * Allocate I/O buffer.
|
---|
6940 | */
|
---|
6941 | if (pIf->fATAPI)
|
---|
6942 | pIf->cbSector = 2048; /* Not required for ATAPI, one medium can have multiple sector sizes. */
|
---|
6943 | else
|
---|
6944 | {
|
---|
6945 | pIf->cbSector = pIfR3->pDrvMedia->pfnGetSectorSize(pIfR3->pDrvMedia);
|
---|
6946 | AssertLogRelMsgReturn(pIf->cbSector > 0 && pIf->cbSector <= ATA_MAX_SECTOR_SIZE,
|
---|
6947 | ("Unsupported sector size on LUN#%u: %#x (%d)\n", pIf->iLUN, pIf->cbSector, pIf->cbSector),
|
---|
6948 | VERR_OUT_OF_RANGE);
|
---|
6949 | }
|
---|
6950 |
|
---|
6951 | if (pIf->cbIOBuffer)
|
---|
6952 | {
|
---|
6953 | /* Buffer is (probably) already allocated. Validate the fields,
|
---|
6954 | * because memory corruption can also overwrite pIf->cbIOBuffer. */
|
---|
6955 | if (pIf->fATAPI)
|
---|
6956 | AssertLogRelReturn(pIf->cbIOBuffer == _128K, VERR_BUFFER_OVERFLOW);
|
---|
6957 | else
|
---|
6958 | AssertLogRelReturn(pIf->cbIOBuffer == ATA_MAX_MULT_SECTORS * pIf->cbSector, VERR_BUFFER_OVERFLOW);
|
---|
6959 | }
|
---|
6960 | else
|
---|
6961 | {
|
---|
6962 | if (pIf->fATAPI)
|
---|
6963 | pIf->cbIOBuffer = _128K;
|
---|
6964 | else
|
---|
6965 | pIf->cbIOBuffer = ATA_MAX_MULT_SECTORS * pIf->cbSector;
|
---|
6966 | }
|
---|
6967 | AssertCompile(_128K <= ATA_MAX_IO_BUFFER_SIZE);
|
---|
6968 | AssertCompileSize(pIf->abIOBuffer, ATA_MAX_IO_BUFFER_SIZE);
|
---|
6969 | AssertLogRelMsgReturn(pIf->cbIOBuffer <= ATA_MAX_IO_BUFFER_SIZE,
|
---|
6970 | ("LUN#%u: cbIOBuffer=%#x (%u)\n", pIf->iLUN, pIf->cbIOBuffer, pIf->cbIOBuffer),
|
---|
6971 | VERR_BUFFER_OVERFLOW);
|
---|
6972 |
|
---|
6973 | /*
|
---|
6974 | * Init geometry (only for non-CD/DVD media).
|
---|
6975 | */
|
---|
6976 | int rc = VINF_SUCCESS;
|
---|
6977 | uint32_t cRegions = pIfR3->pDrvMedia->pfnGetRegionCount(pIfR3->pDrvMedia);
|
---|
6978 | pIf->cTotalSectors = 0;
|
---|
6979 | for (uint32_t i = 0; i < cRegions; i++)
|
---|
6980 | {
|
---|
6981 | uint64_t cBlocks = 0;
|
---|
6982 | rc = pIfR3->pDrvMedia->pfnQueryRegionProperties(pIfR3->pDrvMedia, i, NULL, &cBlocks, NULL, NULL);
|
---|
6983 | AssertRC(rc);
|
---|
6984 | pIf->cTotalSectors += cBlocks;
|
---|
6985 | }
|
---|
6986 |
|
---|
6987 | if (pIf->fATAPI)
|
---|
6988 | {
|
---|
6989 | pIf->PCHSGeometry.cCylinders = 0; /* dummy */
|
---|
6990 | pIf->PCHSGeometry.cHeads = 0; /* dummy */
|
---|
6991 | pIf->PCHSGeometry.cSectors = 0; /* dummy */
|
---|
6992 | LogRel(("PIIX3 ATA: LUN#%d: CD/DVD, total number of sectors %Ld, passthrough %s\n",
|
---|
6993 | pIf->iLUN, pIf->cTotalSectors, (pIf->fATAPIPassthrough ? "enabled" : "disabled")));
|
---|
6994 | }
|
---|
6995 | else
|
---|
6996 | {
|
---|
6997 | rc = pIfR3->pDrvMedia->pfnBiosGetPCHSGeometry(pIfR3->pDrvMedia, &pIf->PCHSGeometry);
|
---|
6998 | if (rc == VERR_PDM_MEDIA_NOT_MOUNTED)
|
---|
6999 | {
|
---|
7000 | pIf->PCHSGeometry.cCylinders = 0;
|
---|
7001 | pIf->PCHSGeometry.cHeads = 16; /*??*/
|
---|
7002 | pIf->PCHSGeometry.cSectors = 63; /*??*/
|
---|
7003 | }
|
---|
7004 | else if (rc == VERR_PDM_GEOMETRY_NOT_SET)
|
---|
7005 | {
|
---|
7006 | pIf->PCHSGeometry.cCylinders = 0; /* autodetect marker */
|
---|
7007 | rc = VINF_SUCCESS;
|
---|
7008 | }
|
---|
7009 | AssertRC(rc);
|
---|
7010 |
|
---|
7011 | if ( pIf->PCHSGeometry.cCylinders == 0
|
---|
7012 | || pIf->PCHSGeometry.cHeads == 0
|
---|
7013 | || pIf->PCHSGeometry.cSectors == 0
|
---|
7014 | )
|
---|
7015 | {
|
---|
7016 | uint64_t cCylinders = pIf->cTotalSectors / (16 * 63);
|
---|
7017 | pIf->PCHSGeometry.cCylinders = RT_MAX(RT_MIN(cCylinders, 16383), 1);
|
---|
7018 | pIf->PCHSGeometry.cHeads = 16;
|
---|
7019 | pIf->PCHSGeometry.cSectors = 63;
|
---|
7020 | /* Set the disk geometry information. Ignore errors. */
|
---|
7021 | pIfR3->pDrvMedia->pfnBiosSetPCHSGeometry(pIfR3->pDrvMedia, &pIf->PCHSGeometry);
|
---|
7022 | rc = VINF_SUCCESS;
|
---|
7023 | }
|
---|
7024 | LogRel(("PIIX3 ATA: LUN#%d: disk, PCHS=%u/%u/%u, total number of sectors %Ld\n",
|
---|
7025 | pIf->iLUN, pIf->PCHSGeometry.cCylinders, pIf->PCHSGeometry.cHeads, pIf->PCHSGeometry.cSectors,
|
---|
7026 | pIf->cTotalSectors));
|
---|
7027 |
|
---|
7028 | if (pIfR3->pDrvMedia->pfnDiscard)
|
---|
7029 | LogRel(("PIIX3 ATA: LUN#%d: TRIM enabled\n", pIf->iLUN));
|
---|
7030 | }
|
---|
7031 | /* Initialize the translated geometry. */
|
---|
7032 | pIf->XCHSGeometry = pIf->PCHSGeometry;
|
---|
7033 |
|
---|
7034 | /*
|
---|
7035 | * Check if SMP system to adjust the agressiveness of the busy yield hack (@bugref{1960}).
|
---|
7036 | *
|
---|
7037 | * The hack is an ancient (2006?) one for dealing with UNI CPU systems where EMT
|
---|
7038 | * would potentially monopolise the CPU and starve I/O threads. It causes the EMT to
|
---|
7039 | * yield it's timeslice if the guest polls the status register during I/O. On modern
|
---|
7040 | * multicore and multithreaded systems, yielding EMT too often may have adverse
|
---|
7041 | * effects (slow grub) so we aim at avoiding repeating the yield there too often.
|
---|
7042 | */
|
---|
7043 | RTCPUID cCpus = RTMpGetOnlineCount();
|
---|
7044 | if (cCpus <= 1)
|
---|
7045 | {
|
---|
7046 | pIf->cBusyStatusHackR3Rate = 1;
|
---|
7047 | pIf->cBusyStatusHackRZRate = 7;
|
---|
7048 | }
|
---|
7049 | else if (cCpus <= 2)
|
---|
7050 | {
|
---|
7051 | pIf->cBusyStatusHackR3Rate = 3;
|
---|
7052 | pIf->cBusyStatusHackRZRate = 15;
|
---|
7053 | }
|
---|
7054 | else if (cCpus <= 4)
|
---|
7055 | {
|
---|
7056 | pIf->cBusyStatusHackR3Rate = 15;
|
---|
7057 | pIf->cBusyStatusHackRZRate = 31;
|
---|
7058 | }
|
---|
7059 | else
|
---|
7060 | {
|
---|
7061 | pIf->cBusyStatusHackR3Rate = 127;
|
---|
7062 | pIf->cBusyStatusHackRZRate = 127;
|
---|
7063 | }
|
---|
7064 |
|
---|
7065 | return rc;
|
---|
7066 | }
|
---|
7067 |
|
---|
7068 |
|
---|
7069 | /**
|
---|
7070 | * Attach command.
|
---|
7071 | *
|
---|
7072 | * This is called when we change block driver for the DVD drive.
|
---|
7073 | *
|
---|
7074 | * @returns VBox status code.
|
---|
7075 | * @param pDevIns The device instance.
|
---|
7076 | * @param iLUN The logical unit which is being detached.
|
---|
7077 | * @param fFlags Flags, combination of the PDMDEVATT_FLAGS_* \#defines.
|
---|
7078 | */
|
---|
7079 | static DECLCALLBACK(int) ataR3Attach(PPDMDEVINS pDevIns, unsigned iLUN, uint32_t fFlags)
|
---|
7080 | {
|
---|
7081 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7082 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATECC);
|
---|
7083 |
|
---|
7084 | AssertMsgReturn(fFlags & PDM_TACH_FLAGS_NOT_HOT_PLUG,
|
---|
7085 | ("PIIX3IDE: Device does not support hotplugging\n"),
|
---|
7086 | VERR_INVALID_PARAMETER);
|
---|
7087 |
|
---|
7088 | /*
|
---|
7089 | * Locate the controller and stuff.
|
---|
7090 | */
|
---|
7091 | unsigned const iController = iLUN / RT_ELEMENTS(pThis->aCts[0].aIfs);
|
---|
7092 | AssertReleaseMsg(iController < RT_ELEMENTS(pThis->aCts), ("iController=%d iLUN=%d\n", iController, iLUN));
|
---|
7093 | PATACONTROLLER pCtl = &pThis->aCts[iController];
|
---|
7094 | PATACONTROLLERR3 pCtlR3 = &pThisCC->aCts[iController];
|
---|
7095 |
|
---|
7096 | unsigned const iInterface = iLUN % RT_ELEMENTS(pThis->aCts[0].aIfs);
|
---|
7097 | PATADEVSTATE pIf = &pCtl->aIfs[iInterface];
|
---|
7098 | PATADEVSTATER3 pIfR3 = &pCtlR3->aIfs[iInterface];
|
---|
7099 |
|
---|
7100 | /* the usual paranoia */
|
---|
7101 | AssertRelease(!pIfR3->pDrvBase);
|
---|
7102 | AssertRelease(!pIfR3->pDrvMedia);
|
---|
7103 | Assert(pIf->iLUN == iLUN);
|
---|
7104 |
|
---|
7105 | /*
|
---|
7106 | * Try attach the block device and get the interfaces,
|
---|
7107 | * required as well as optional.
|
---|
7108 | */
|
---|
7109 | int rc = PDMDevHlpDriverAttach(pDevIns, pIf->iLUN, &pIfR3->IBase, &pIfR3->pDrvBase, NULL);
|
---|
7110 | if (RT_SUCCESS(rc))
|
---|
7111 | {
|
---|
7112 | rc = ataR3ConfigLun(pIf, pIfR3);
|
---|
7113 | /*
|
---|
7114 | * In case there is a medium inserted.
|
---|
7115 | */
|
---|
7116 | ataR3MediumInserted(pIf);
|
---|
7117 | ataR3MediumTypeSet(pIf, ATA_MEDIA_TYPE_UNKNOWN);
|
---|
7118 | }
|
---|
7119 | else
|
---|
7120 | AssertMsgFailed(("Failed to attach LUN#%d. rc=%Rrc\n", pIf->iLUN, rc));
|
---|
7121 |
|
---|
7122 | if (RT_FAILURE(rc))
|
---|
7123 | {
|
---|
7124 | pIfR3->pDrvBase = NULL;
|
---|
7125 | pIfR3->pDrvMedia = NULL;
|
---|
7126 | pIfR3->pDrvMount = NULL;
|
---|
7127 | pIf->fPresent = false;
|
---|
7128 | }
|
---|
7129 | return rc;
|
---|
7130 | }
|
---|
7131 |
|
---|
7132 |
|
---|
7133 | /**
|
---|
7134 | * Resume notification.
|
---|
7135 | *
|
---|
7136 | * @param pDevIns The device instance data.
|
---|
7137 | */
|
---|
7138 | static DECLCALLBACK(void) ataR3Resume(PPDMDEVINS pDevIns)
|
---|
7139 | {
|
---|
7140 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7141 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATECC);
|
---|
7142 |
|
---|
7143 | Log(("%s:\n", __FUNCTION__));
|
---|
7144 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7145 | {
|
---|
7146 | if (pThis->aCts[i].fRedo && pThis->aCts[i].fRedoIdle)
|
---|
7147 | {
|
---|
7148 | int rc = RTSemEventSignal(pThisCC->aCts[i].hSuspendIOSem);
|
---|
7149 | AssertRC(rc);
|
---|
7150 | }
|
---|
7151 | }
|
---|
7152 | return;
|
---|
7153 | }
|
---|
7154 |
|
---|
7155 |
|
---|
7156 | /**
|
---|
7157 | * Checks if all (both) the async I/O threads have quiesced.
|
---|
7158 | *
|
---|
7159 | * @returns true on success.
|
---|
7160 | * @returns false when one or more threads is still processing.
|
---|
7161 | * @param pDevIns Pointer to the PDM device instance.
|
---|
7162 | */
|
---|
7163 | static bool ataR3AllAsyncIOIsIdle(PPDMDEVINS pDevIns)
|
---|
7164 | {
|
---|
7165 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7166 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATECC);
|
---|
7167 |
|
---|
7168 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7169 | if (pThisCC->aCts[i].hAsyncIOThread != NIL_RTTHREAD)
|
---|
7170 | {
|
---|
7171 | bool fRc = ataR3AsyncIOIsIdle(pDevIns, &pThis->aCts[i], false /*fStrict*/);
|
---|
7172 | if (!fRc)
|
---|
7173 | {
|
---|
7174 | /* Make it signal PDM & itself when its done */
|
---|
7175 | int const rcLock = PDMDevHlpCritSectEnter(pDevIns, &pThis->aCts[i].AsyncIORequestLock, VERR_IGNORED);
|
---|
7176 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pThis->aCts[i].AsyncIORequestLock, rcLock);
|
---|
7177 |
|
---|
7178 | ASMAtomicWriteBool(&pThisCC->aCts[i].fSignalIdle, true);
|
---|
7179 |
|
---|
7180 | PDMDevHlpCritSectLeave(pDevIns, &pThis->aCts[i].AsyncIORequestLock);
|
---|
7181 |
|
---|
7182 | fRc = ataR3AsyncIOIsIdle(pDevIns, &pThis->aCts[i], false /*fStrict*/);
|
---|
7183 | if (!fRc)
|
---|
7184 | {
|
---|
7185 | #if 0 /** @todo Need to do some time tracking here... */
|
---|
7186 | LogRel(("PIIX3 ATA: Ctl#%u is still executing, DevSel=%d AIOIf=%d CmdIf0=%#04x CmdIf1=%#04x\n",
|
---|
7187 | i, pThis->aCts[i].iSelectedIf, pThis->aCts[i].iAIOIf,
|
---|
7188 | pThis->aCts[i].aIfs[0].uATARegCommand, pThis->aCts[i].aIfs[1].uATARegCommand));
|
---|
7189 | #endif
|
---|
7190 | return false;
|
---|
7191 | }
|
---|
7192 | }
|
---|
7193 | ASMAtomicWriteBool(&pThisCC->aCts[i].fSignalIdle, false);
|
---|
7194 | }
|
---|
7195 | return true;
|
---|
7196 | }
|
---|
7197 |
|
---|
7198 | /**
|
---|
7199 | * Prepare state save and load operation.
|
---|
7200 | *
|
---|
7201 | * @returns VBox status code.
|
---|
7202 | * @param pDevIns Device instance of the device which registered the data unit.
|
---|
7203 | * @param pSSM SSM operation handle.
|
---|
7204 | */
|
---|
7205 | static DECLCALLBACK(int) ataR3SaveLoadPrep(PPDMDEVINS pDevIns, PSSMHANDLE pSSM)
|
---|
7206 | {
|
---|
7207 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7208 | RT_NOREF(pSSM);
|
---|
7209 |
|
---|
7210 | /* sanity - the suspend notification will wait on the async stuff. */
|
---|
7211 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7212 | AssertLogRelMsgReturn(ataR3AsyncIOIsIdle(pDevIns, &pThis->aCts[i], false /*fStrict*/),
|
---|
7213 | ("i=%u\n", i),
|
---|
7214 | VERR_SSM_IDE_ASYNC_TIMEOUT);
|
---|
7215 | return VINF_SUCCESS;
|
---|
7216 | }
|
---|
7217 |
|
---|
7218 | /**
|
---|
7219 | * @copydoc FNSSMDEVLIVEEXEC
|
---|
7220 | */
|
---|
7221 | static DECLCALLBACK(int) ataR3LiveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uPass)
|
---|
7222 | {
|
---|
7223 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7224 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATECC);
|
---|
7225 | PCPDMDEVHLPR3 pHlp = pDevIns->pHlpR3;
|
---|
7226 | RT_NOREF(uPass);
|
---|
7227 |
|
---|
7228 | pHlp->pfnSSMPutU8(pSSM, (uint8_t)pThis->enmChipset);
|
---|
7229 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7230 | {
|
---|
7231 | pHlp->pfnSSMPutBool(pSSM, true); /* For controller enabled / disabled. */
|
---|
7232 | for (uint32_t j = 0; j < RT_ELEMENTS(pThis->aCts[i].aIfs); j++)
|
---|
7233 | {
|
---|
7234 | pHlp->pfnSSMPutBool(pSSM, pThisCC->aCts[i].aIfs[j].pDrvBase != NULL);
|
---|
7235 | pHlp->pfnSSMPutStrZ(pSSM, pThis->aCts[i].aIfs[j].szSerialNumber);
|
---|
7236 | pHlp->pfnSSMPutStrZ(pSSM, pThis->aCts[i].aIfs[j].szFirmwareRevision);
|
---|
7237 | pHlp->pfnSSMPutStrZ(pSSM, pThis->aCts[i].aIfs[j].szModelNumber);
|
---|
7238 | }
|
---|
7239 | }
|
---|
7240 |
|
---|
7241 | return VINF_SSM_DONT_CALL_AGAIN;
|
---|
7242 | }
|
---|
7243 |
|
---|
7244 | /**
|
---|
7245 | * @copydoc FNSSMDEVSAVEEXEC
|
---|
7246 | */
|
---|
7247 | static DECLCALLBACK(int) ataR3SaveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM)
|
---|
7248 | {
|
---|
7249 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7250 | PCPDMDEVHLPR3 pHlp = pDevIns->pHlpR3;
|
---|
7251 |
|
---|
7252 | ataR3LiveExec(pDevIns, pSSM, SSM_PASS_FINAL);
|
---|
7253 |
|
---|
7254 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7255 | {
|
---|
7256 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].iSelectedIf);
|
---|
7257 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].iAIOIf);
|
---|
7258 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].uAsyncIOState);
|
---|
7259 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].fChainedTransfer);
|
---|
7260 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].fReset);
|
---|
7261 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].fRedo);
|
---|
7262 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].fRedoIdle);
|
---|
7263 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].fRedoDMALastDesc);
|
---|
7264 | pHlp->pfnSSMPutMem(pSSM, &pThis->aCts[i].BmDma, sizeof(pThis->aCts[i].BmDma));
|
---|
7265 | pHlp->pfnSSMPutGCPhys32(pSSM, pThis->aCts[i].GCPhysFirstDMADesc);
|
---|
7266 | pHlp->pfnSSMPutGCPhys32(pSSM, pThis->aCts[i].GCPhysLastDMADesc);
|
---|
7267 | pHlp->pfnSSMPutGCPhys32(pSSM, pThis->aCts[i].GCPhysRedoDMABuffer);
|
---|
7268 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].cbRedoDMABuffer);
|
---|
7269 |
|
---|
7270 | for (uint32_t j = 0; j < RT_ELEMENTS(pThis->aCts[i].aIfs); j++)
|
---|
7271 | {
|
---|
7272 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].aIfs[j].fLBA48);
|
---|
7273 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].aIfs[j].fATAPI);
|
---|
7274 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].aIfs[j].fIrqPending);
|
---|
7275 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].cMultSectors);
|
---|
7276 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].XCHSGeometry.cCylinders);
|
---|
7277 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].XCHSGeometry.cHeads);
|
---|
7278 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].XCHSGeometry.cSectors);
|
---|
7279 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].cSectorsPerIRQ);
|
---|
7280 | pHlp->pfnSSMPutU64(pSSM, pThis->aCts[i].aIfs[j].cTotalSectors);
|
---|
7281 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegFeature);
|
---|
7282 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegFeatureHOB);
|
---|
7283 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegError);
|
---|
7284 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegNSector);
|
---|
7285 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegNSectorHOB);
|
---|
7286 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegSector);
|
---|
7287 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegSectorHOB);
|
---|
7288 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegLCyl);
|
---|
7289 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegLCylHOB);
|
---|
7290 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegHCyl);
|
---|
7291 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegHCylHOB);
|
---|
7292 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegSelect);
|
---|
7293 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegStatus);
|
---|
7294 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegCommand);
|
---|
7295 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATARegDevCtl);
|
---|
7296 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uATATransferMode);
|
---|
7297 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].uTxDir);
|
---|
7298 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].iBeginTransfer);
|
---|
7299 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].iSourceSink);
|
---|
7300 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].aIfs[j].fDMA);
|
---|
7301 | pHlp->pfnSSMPutBool(pSSM, pThis->aCts[i].aIfs[j].fATAPITransfer);
|
---|
7302 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].cbTotalTransfer);
|
---|
7303 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].cbElementaryTransfer);
|
---|
7304 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].iIOBufferCur);
|
---|
7305 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].iIOBufferEnd);
|
---|
7306 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].iIOBufferPIODataStart);
|
---|
7307 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].iIOBufferPIODataEnd);
|
---|
7308 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].iCurLBA);
|
---|
7309 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].cbATAPISector);
|
---|
7310 | pHlp->pfnSSMPutMem(pSSM, &pThis->aCts[i].aIfs[j].abATAPICmd, sizeof(pThis->aCts[i].aIfs[j].abATAPICmd));
|
---|
7311 | pHlp->pfnSSMPutMem(pSSM, &pThis->aCts[i].aIfs[j].abATAPISense, sizeof(pThis->aCts[i].aIfs[j].abATAPISense));
|
---|
7312 | pHlp->pfnSSMPutU8(pSSM, pThis->aCts[i].aIfs[j].cNotifiedMediaChange);
|
---|
7313 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].MediaEventStatus);
|
---|
7314 | pHlp->pfnSSMPutMem(pSSM, &pThis->aCts[i].aIfs[j].Led, sizeof(pThis->aCts[i].aIfs[j].Led));
|
---|
7315 | pHlp->pfnSSMPutU32(pSSM, pThis->aCts[i].aIfs[j].cbIOBuffer);
|
---|
7316 | if (pThis->aCts[i].aIfs[j].cbIOBuffer)
|
---|
7317 | pHlp->pfnSSMPutMem(pSSM, pThis->aCts[i].aIfs[j].abIOBuffer, pThis->aCts[i].aIfs[j].cbIOBuffer);
|
---|
7318 | }
|
---|
7319 | }
|
---|
7320 |
|
---|
7321 | return pHlp->pfnSSMPutU32(pSSM, UINT32_MAX); /* sanity/terminator */
|
---|
7322 | }
|
---|
7323 |
|
---|
7324 | /**
|
---|
7325 | * Converts the LUN number into a message string.
|
---|
7326 | */
|
---|
7327 | static const char *ataR3StringifyLun(unsigned iLun)
|
---|
7328 | {
|
---|
7329 | switch (iLun)
|
---|
7330 | {
|
---|
7331 | case 0: return "primary master";
|
---|
7332 | case 1: return "primary slave";
|
---|
7333 | case 2: return "secondary master";
|
---|
7334 | case 3: return "secondary slave";
|
---|
7335 | default: AssertFailedReturn("unknown lun");
|
---|
7336 | }
|
---|
7337 | }
|
---|
7338 |
|
---|
7339 | /**
|
---|
7340 | * FNSSMDEVLOADEXEC
|
---|
7341 | */
|
---|
7342 | static DECLCALLBACK(int) ataR3LoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
|
---|
7343 | {
|
---|
7344 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7345 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATECC);
|
---|
7346 | PCPDMDEVHLPR3 pHlp = pDevIns->pHlpR3;
|
---|
7347 | int rc;
|
---|
7348 | uint32_t u32;
|
---|
7349 |
|
---|
7350 | if ( uVersion != ATA_SAVED_STATE_VERSION
|
---|
7351 | && uVersion != ATA_SAVED_STATE_VERSION_WITHOUT_ATA_ILBA
|
---|
7352 | && uVersion != ATA_SAVED_STATE_VERSION_VBOX_30
|
---|
7353 | && uVersion != ATA_SAVED_STATE_VERSION_WITHOUT_FULL_SENSE
|
---|
7354 | && uVersion != ATA_SAVED_STATE_VERSION_WITHOUT_EVENT_STATUS
|
---|
7355 | && uVersion != ATA_SAVED_STATE_VERSION_WITH_BOOL_TYPE)
|
---|
7356 | {
|
---|
7357 | AssertMsgFailed(("uVersion=%d\n", uVersion));
|
---|
7358 | return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
|
---|
7359 | }
|
---|
7360 |
|
---|
7361 | /*
|
---|
7362 | * Verify the configuration.
|
---|
7363 | */
|
---|
7364 | if (uVersion > ATA_SAVED_STATE_VERSION_VBOX_30)
|
---|
7365 | {
|
---|
7366 | uint8_t u8Type;
|
---|
7367 | rc = pHlp->pfnSSMGetU8(pSSM, &u8Type);
|
---|
7368 | AssertRCReturn(rc, rc);
|
---|
7369 | if ((CHIPSET)u8Type != pThis->enmChipset)
|
---|
7370 | return pHlp->pfnSSMSetCfgError(pSSM, RT_SRC_POS, N_("Config mismatch: enmChipset - saved=%u config=%u"), u8Type, pThis->enmChipset);
|
---|
7371 |
|
---|
7372 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7373 | {
|
---|
7374 | bool fEnabled;
|
---|
7375 | rc = pHlp->pfnSSMGetBool(pSSM, &fEnabled);
|
---|
7376 | AssertRCReturn(rc, rc);
|
---|
7377 | if (!fEnabled)
|
---|
7378 | return pHlp->pfnSSMSetCfgError(pSSM, RT_SRC_POS, N_("Ctr#%u onfig mismatch: fEnabled != true"), i);
|
---|
7379 |
|
---|
7380 | for (uint32_t j = 0; j < RT_ELEMENTS(pThis->aCts[i].aIfs); j++)
|
---|
7381 | {
|
---|
7382 | ATADEVSTATE const *pIf = &pThis->aCts[i].aIfs[j];
|
---|
7383 | ATADEVSTATER3 const *pIfR3 = &pThisCC->aCts[i].aIfs[j];
|
---|
7384 |
|
---|
7385 | bool fInUse;
|
---|
7386 | rc = pHlp->pfnSSMGetBool(pSSM, &fInUse);
|
---|
7387 | AssertRCReturn(rc, rc);
|
---|
7388 | if (fInUse != (pIfR3->pDrvBase != NULL))
|
---|
7389 | return pHlp->pfnSSMSetCfgError(pSSM, RT_SRC_POS,
|
---|
7390 | N_("The %s VM is missing a %s device. Please make sure the source and target VMs have compatible storage configurations"),
|
---|
7391 | fInUse ? "target" : "source", ataR3StringifyLun(pIf->iLUN) );
|
---|
7392 |
|
---|
7393 | char szSerialNumber[ATA_SERIAL_NUMBER_LENGTH+1];
|
---|
7394 | rc = pHlp->pfnSSMGetStrZ(pSSM, szSerialNumber, sizeof(szSerialNumber));
|
---|
7395 | AssertRCReturn(rc, rc);
|
---|
7396 | if (strcmp(szSerialNumber, pIf->szSerialNumber))
|
---|
7397 | LogRel(("PIIX3 ATA: LUN#%u config mismatch: Serial number - saved='%s' config='%s'\n",
|
---|
7398 | pIf->iLUN, szSerialNumber, pIf->szSerialNumber));
|
---|
7399 |
|
---|
7400 | char szFirmwareRevision[ATA_FIRMWARE_REVISION_LENGTH+1];
|
---|
7401 | rc = pHlp->pfnSSMGetStrZ(pSSM, szFirmwareRevision, sizeof(szFirmwareRevision));
|
---|
7402 | AssertRCReturn(rc, rc);
|
---|
7403 | if (strcmp(szFirmwareRevision, pIf->szFirmwareRevision))
|
---|
7404 | LogRel(("PIIX3 ATA: LUN#%u config mismatch: Firmware revision - saved='%s' config='%s'\n",
|
---|
7405 | pIf->iLUN, szFirmwareRevision, pIf->szFirmwareRevision));
|
---|
7406 |
|
---|
7407 | char szModelNumber[ATA_MODEL_NUMBER_LENGTH+1];
|
---|
7408 | rc = pHlp->pfnSSMGetStrZ(pSSM, szModelNumber, sizeof(szModelNumber));
|
---|
7409 | AssertRCReturn(rc, rc);
|
---|
7410 | if (strcmp(szModelNumber, pIf->szModelNumber))
|
---|
7411 | LogRel(("PIIX3 ATA: LUN#%u config mismatch: Model number - saved='%s' config='%s'\n",
|
---|
7412 | pIf->iLUN, szModelNumber, pIf->szModelNumber));
|
---|
7413 | }
|
---|
7414 | }
|
---|
7415 | }
|
---|
7416 | if (uPass != SSM_PASS_FINAL)
|
---|
7417 | return VINF_SUCCESS;
|
---|
7418 |
|
---|
7419 | /*
|
---|
7420 | * Restore valid parts of the ATASTATE structure
|
---|
7421 | */
|
---|
7422 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7423 | {
|
---|
7424 | /* integrity check */
|
---|
7425 | if (!ataR3AsyncIOIsIdle(pDevIns, &pThis->aCts[i], false))
|
---|
7426 | {
|
---|
7427 | AssertMsgFailed(("Async I/O for controller %d is active\n", i));
|
---|
7428 | return VERR_INTERNAL_ERROR_4;
|
---|
7429 | }
|
---|
7430 |
|
---|
7431 | rc = pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].iSelectedIf);
|
---|
7432 | AssertRCReturn(rc, rc);
|
---|
7433 | AssertLogRelMsgStmt(pThis->aCts[i].iSelectedIf == (pThis->aCts[i].iSelectedIf & ATA_SELECTED_IF_MASK),
|
---|
7434 | ("iSelectedIf = %d\n", pThis->aCts[i].iSelectedIf),
|
---|
7435 | pThis->aCts[i].iSelectedIf &= ATA_SELECTED_IF_MASK);
|
---|
7436 | rc = pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].iAIOIf);
|
---|
7437 | AssertRCReturn(rc, rc);
|
---|
7438 | AssertLogRelMsgStmt(pThis->aCts[i].iAIOIf == (pThis->aCts[i].iAIOIf & ATA_SELECTED_IF_MASK),
|
---|
7439 | ("iAIOIf = %d\n", pThis->aCts[i].iAIOIf),
|
---|
7440 | pThis->aCts[i].iAIOIf &= ATA_SELECTED_IF_MASK);
|
---|
7441 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].uAsyncIOState);
|
---|
7442 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].fChainedTransfer);
|
---|
7443 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].fReset);
|
---|
7444 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].fRedo);
|
---|
7445 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].fRedoIdle);
|
---|
7446 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].fRedoDMALastDesc);
|
---|
7447 | pHlp->pfnSSMGetMem(pSSM, &pThis->aCts[i].BmDma, sizeof(pThis->aCts[i].BmDma));
|
---|
7448 | pHlp->pfnSSMGetGCPhys32(pSSM, &pThis->aCts[i].GCPhysFirstDMADesc);
|
---|
7449 | pHlp->pfnSSMGetGCPhys32(pSSM, &pThis->aCts[i].GCPhysLastDMADesc);
|
---|
7450 | pHlp->pfnSSMGetGCPhys32(pSSM, &pThis->aCts[i].GCPhysRedoDMABuffer);
|
---|
7451 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].cbRedoDMABuffer);
|
---|
7452 |
|
---|
7453 | for (uint32_t j = 0; j < RT_ELEMENTS(pThis->aCts[i].aIfs); j++)
|
---|
7454 | {
|
---|
7455 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].aIfs[j].fLBA48);
|
---|
7456 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].aIfs[j].fATAPI);
|
---|
7457 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].aIfs[j].fIrqPending);
|
---|
7458 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].cMultSectors);
|
---|
7459 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].XCHSGeometry.cCylinders);
|
---|
7460 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].XCHSGeometry.cHeads);
|
---|
7461 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].XCHSGeometry.cSectors);
|
---|
7462 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].cSectorsPerIRQ);
|
---|
7463 | pHlp->pfnSSMGetU64(pSSM, &pThis->aCts[i].aIfs[j].cTotalSectors);
|
---|
7464 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegFeature);
|
---|
7465 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegFeatureHOB);
|
---|
7466 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegError);
|
---|
7467 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegNSector);
|
---|
7468 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegNSectorHOB);
|
---|
7469 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegSector);
|
---|
7470 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegSectorHOB);
|
---|
7471 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegLCyl);
|
---|
7472 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegLCylHOB);
|
---|
7473 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegHCyl);
|
---|
7474 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegHCylHOB);
|
---|
7475 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegSelect);
|
---|
7476 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegStatus);
|
---|
7477 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegCommand);
|
---|
7478 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATARegDevCtl);
|
---|
7479 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uATATransferMode);
|
---|
7480 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].uTxDir);
|
---|
7481 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].iBeginTransfer);
|
---|
7482 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].iSourceSink);
|
---|
7483 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].aIfs[j].fDMA);
|
---|
7484 | pHlp->pfnSSMGetBool(pSSM, &pThis->aCts[i].aIfs[j].fATAPITransfer);
|
---|
7485 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].cbTotalTransfer);
|
---|
7486 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].cbElementaryTransfer);
|
---|
7487 | /* NB: cbPIOTransferLimit could be saved/restored but it's sufficient
|
---|
7488 | * to re-calculate it here, with a tiny risk that it could be
|
---|
7489 | * unnecessarily low for the current transfer only. Could be changed
|
---|
7490 | * when changing the saved state in the future.
|
---|
7491 | */
|
---|
7492 | pThis->aCts[i].aIfs[j].cbPIOTransferLimit = (pThis->aCts[i].aIfs[j].uATARegHCyl << 8) | pThis->aCts[i].aIfs[j].uATARegLCyl;
|
---|
7493 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].iIOBufferCur);
|
---|
7494 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].iIOBufferEnd);
|
---|
7495 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].iIOBufferPIODataStart);
|
---|
7496 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].iIOBufferPIODataEnd);
|
---|
7497 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].iCurLBA);
|
---|
7498 | pHlp->pfnSSMGetU32(pSSM, &pThis->aCts[i].aIfs[j].cbATAPISector);
|
---|
7499 | pHlp->pfnSSMGetMem(pSSM, &pThis->aCts[i].aIfs[j].abATAPICmd, sizeof(pThis->aCts[i].aIfs[j].abATAPICmd));
|
---|
7500 | if (uVersion > ATA_SAVED_STATE_VERSION_WITHOUT_FULL_SENSE)
|
---|
7501 | pHlp->pfnSSMGetMem(pSSM, pThis->aCts[i].aIfs[j].abATAPISense, sizeof(pThis->aCts[i].aIfs[j].abATAPISense));
|
---|
7502 | else
|
---|
7503 | {
|
---|
7504 | uint8_t uATAPISenseKey, uATAPIASC;
|
---|
7505 | memset(pThis->aCts[i].aIfs[j].abATAPISense, '\0', sizeof(pThis->aCts[i].aIfs[j].abATAPISense));
|
---|
7506 | pThis->aCts[i].aIfs[j].abATAPISense[0] = 0x70 | (1 << 7);
|
---|
7507 | pThis->aCts[i].aIfs[j].abATAPISense[7] = 10;
|
---|
7508 | pHlp->pfnSSMGetU8(pSSM, &uATAPISenseKey);
|
---|
7509 | pHlp->pfnSSMGetU8(pSSM, &uATAPIASC);
|
---|
7510 | pThis->aCts[i].aIfs[j].abATAPISense[2] = uATAPISenseKey & 0x0f;
|
---|
7511 | pThis->aCts[i].aIfs[j].abATAPISense[12] = uATAPIASC;
|
---|
7512 | }
|
---|
7513 | /** @todo triple-check this hack after passthrough is working */
|
---|
7514 | pHlp->pfnSSMGetU8(pSSM, &pThis->aCts[i].aIfs[j].cNotifiedMediaChange);
|
---|
7515 | if (uVersion > ATA_SAVED_STATE_VERSION_WITHOUT_EVENT_STATUS)
|
---|
7516 | pHlp->pfnSSMGetU32V(pSSM, &pThis->aCts[i].aIfs[j].MediaEventStatus);
|
---|
7517 | else
|
---|
7518 | pThis->aCts[i].aIfs[j].MediaEventStatus = ATA_EVENT_STATUS_UNCHANGED;
|
---|
7519 | pHlp->pfnSSMGetMem(pSSM, &pThis->aCts[i].aIfs[j].Led, sizeof(pThis->aCts[i].aIfs[j].Led));
|
---|
7520 |
|
---|
7521 | uint32_t cbIOBuffer = 0;
|
---|
7522 | rc = pHlp->pfnSSMGetU32(pSSM, &cbIOBuffer);
|
---|
7523 | AssertRCReturn(rc, rc);
|
---|
7524 |
|
---|
7525 | if ( (uVersion <= ATA_SAVED_STATE_VERSION_WITHOUT_ATA_ILBA)
|
---|
7526 | && !pThis->aCts[i].aIfs[j].fATAPI)
|
---|
7527 | {
|
---|
7528 | pThis->aCts[i].aIfs[j].iCurLBA = ataR3GetSector(&pThis->aCts[i].aIfs[j]);
|
---|
7529 | }
|
---|
7530 |
|
---|
7531 | if (cbIOBuffer)
|
---|
7532 | {
|
---|
7533 | if (cbIOBuffer <= sizeof(pThis->aCts[i].aIfs[j].abIOBuffer))
|
---|
7534 | {
|
---|
7535 | if (pThis->aCts[i].aIfs[j].cbIOBuffer != cbIOBuffer)
|
---|
7536 | LogRel(("ATA: %u/%u: Restoring cbIOBuffer=%u; constructor set up %u!\n", i, j, cbIOBuffer, pThis->aCts[i].aIfs[j].cbIOBuffer));
|
---|
7537 | pThis->aCts[i].aIfs[j].cbIOBuffer = cbIOBuffer;
|
---|
7538 | pHlp->pfnSSMGetMem(pSSM, pThis->aCts[i].aIfs[j].abIOBuffer, cbIOBuffer);
|
---|
7539 | }
|
---|
7540 | else
|
---|
7541 | {
|
---|
7542 | LogRel(("ATA: %u/%u: Restoring cbIOBuffer=%u, only prepared %u!\n", i, j, cbIOBuffer, pThis->aCts[i].aIfs[j].cbIOBuffer));
|
---|
7543 | if (pHlp->pfnSSMHandleGetAfter(pSSM) != SSMAFTER_DEBUG_IT)
|
---|
7544 | return pHlp->pfnSSMSetCfgError(pSSM, RT_SRC_POS,
|
---|
7545 | N_("ATA: %u/%u: Restoring cbIOBuffer=%u, only prepared %u"),
|
---|
7546 | i, j, cbIOBuffer, pThis->aCts[i].aIfs[j].cbIOBuffer);
|
---|
7547 |
|
---|
7548 | /* skip the buffer if we're loading for the debugger / animator. */
|
---|
7549 | pHlp->pfnSSMSkip(pSSM, cbIOBuffer);
|
---|
7550 | }
|
---|
7551 | }
|
---|
7552 | else
|
---|
7553 | AssertLogRelMsgStmt(pThis->aCts[i].aIfs[j].cbIOBuffer == 0,
|
---|
7554 | ("ATA: %u/%u: cbIOBuffer=%u restoring zero!\n", i, j, pThis->aCts[i].aIfs[j].cbIOBuffer),
|
---|
7555 | pThis->aCts[i].aIfs[j].cbIOBuffer = 0);
|
---|
7556 | }
|
---|
7557 | }
|
---|
7558 | if (uVersion <= ATA_SAVED_STATE_VERSION_VBOX_30)
|
---|
7559 | PDMDEVHLP_SSM_GET_ENUM8_RET(pHlp, pSSM, pThis->enmChipset, CHIPSET);
|
---|
7560 |
|
---|
7561 | rc = pHlp->pfnSSMGetU32(pSSM, &u32);
|
---|
7562 | if (RT_FAILURE(rc))
|
---|
7563 | return rc;
|
---|
7564 | if (u32 != ~0U)
|
---|
7565 | {
|
---|
7566 | AssertMsgFailed(("u32=%#x expected ~0\n", u32));
|
---|
7567 | rc = VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
|
---|
7568 | return rc;
|
---|
7569 | }
|
---|
7570 |
|
---|
7571 | return VINF_SUCCESS;
|
---|
7572 | }
|
---|
7573 |
|
---|
7574 |
|
---|
7575 | /**
|
---|
7576 | * Callback employed by ataSuspend and ataR3PowerOff.
|
---|
7577 | *
|
---|
7578 | * @returns true if we've quiesced, false if we're still working.
|
---|
7579 | * @param pDevIns The device instance.
|
---|
7580 | */
|
---|
7581 | static DECLCALLBACK(bool) ataR3IsAsyncSuspendOrPowerOffDone(PPDMDEVINS pDevIns)
|
---|
7582 | {
|
---|
7583 | return ataR3AllAsyncIOIsIdle(pDevIns);
|
---|
7584 | }
|
---|
7585 |
|
---|
7586 |
|
---|
7587 | /**
|
---|
7588 | * Common worker for ataSuspend and ataR3PowerOff.
|
---|
7589 | */
|
---|
7590 | static void ataR3SuspendOrPowerOff(PPDMDEVINS pDevIns)
|
---|
7591 | {
|
---|
7592 | if (!ataR3AllAsyncIOIsIdle(pDevIns))
|
---|
7593 | PDMDevHlpSetAsyncNotification(pDevIns, ataR3IsAsyncSuspendOrPowerOffDone);
|
---|
7594 | }
|
---|
7595 |
|
---|
7596 |
|
---|
7597 | /**
|
---|
7598 | * Power Off notification.
|
---|
7599 | *
|
---|
7600 | * @param pDevIns The device instance data.
|
---|
7601 | */
|
---|
7602 | static DECLCALLBACK(void) ataR3PowerOff(PPDMDEVINS pDevIns)
|
---|
7603 | {
|
---|
7604 | Log(("%s:\n", __FUNCTION__));
|
---|
7605 | ataR3SuspendOrPowerOff(pDevIns);
|
---|
7606 | }
|
---|
7607 |
|
---|
7608 |
|
---|
7609 | /**
|
---|
7610 | * Suspend notification.
|
---|
7611 | *
|
---|
7612 | * @param pDevIns The device instance data.
|
---|
7613 | */
|
---|
7614 | static DECLCALLBACK(void) ataR3Suspend(PPDMDEVINS pDevIns)
|
---|
7615 | {
|
---|
7616 | Log(("%s:\n", __FUNCTION__));
|
---|
7617 | ataR3SuspendOrPowerOff(pDevIns);
|
---|
7618 | }
|
---|
7619 |
|
---|
7620 |
|
---|
7621 | /**
|
---|
7622 | * Callback employed by ataR3Reset.
|
---|
7623 | *
|
---|
7624 | * @returns true if we've quiesced, false if we're still working.
|
---|
7625 | * @param pDevIns The device instance.
|
---|
7626 | */
|
---|
7627 | static DECLCALLBACK(bool) ataR3IsAsyncResetDone(PPDMDEVINS pDevIns)
|
---|
7628 | {
|
---|
7629 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7630 |
|
---|
7631 | if (!ataR3AllAsyncIOIsIdle(pDevIns))
|
---|
7632 | return false;
|
---|
7633 |
|
---|
7634 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7635 | {
|
---|
7636 | int const rcLock = PDMDevHlpCritSectEnter(pDevIns, &pThis->aCts[i].lock, VERR_INTERNAL_ERROR);
|
---|
7637 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pThis->aCts[i].lock, rcLock);
|
---|
7638 |
|
---|
7639 | for (uint32_t j = 0; j < RT_ELEMENTS(pThis->aCts[i].aIfs); j++)
|
---|
7640 | ataR3ResetDevice(pDevIns, &pThis->aCts[i], &pThis->aCts[i].aIfs[j]);
|
---|
7641 |
|
---|
7642 | PDMDevHlpCritSectLeave(pDevIns, &pThis->aCts[i].lock);
|
---|
7643 | }
|
---|
7644 | return true;
|
---|
7645 | }
|
---|
7646 |
|
---|
7647 |
|
---|
7648 | /**
|
---|
7649 | * Common reset worker for ataR3Reset and ataR3Construct.
|
---|
7650 | *
|
---|
7651 | * @returns VBox status code.
|
---|
7652 | * @param pDevIns The device instance data.
|
---|
7653 | * @param fConstruct Indicates who is calling.
|
---|
7654 | */
|
---|
7655 | static int ataR3ResetCommon(PPDMDEVINS pDevIns, bool fConstruct)
|
---|
7656 | {
|
---|
7657 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7658 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATECC);
|
---|
7659 |
|
---|
7660 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7661 | {
|
---|
7662 | int const rcLock = PDMDevHlpCritSectEnter(pDevIns, &pThis->aCts[i].lock, VERR_INTERNAL_ERROR);
|
---|
7663 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pThis->aCts[i].lock, rcLock);
|
---|
7664 |
|
---|
7665 | pThis->aCts[i].iSelectedIf = 0;
|
---|
7666 | pThis->aCts[i].iAIOIf = 0;
|
---|
7667 | pThis->aCts[i].BmDma.u8Cmd = 0;
|
---|
7668 | /* Report that both drives present on the bus are in DMA mode. This
|
---|
7669 | * pretends that there is a BIOS that has set it up. Normal reset
|
---|
7670 | * default is 0x00. */
|
---|
7671 | pThis->aCts[i].BmDma.u8Status = (pThisCC->aCts[i].aIfs[0].pDrvBase != NULL ? BM_STATUS_D0DMA : 0)
|
---|
7672 | | (pThisCC->aCts[i].aIfs[1].pDrvBase != NULL ? BM_STATUS_D1DMA : 0);
|
---|
7673 | pThis->aCts[i].BmDma.GCPhysAddr = 0;
|
---|
7674 |
|
---|
7675 | pThis->aCts[i].fReset = true;
|
---|
7676 | pThis->aCts[i].fRedo = false;
|
---|
7677 | pThis->aCts[i].fRedoIdle = false;
|
---|
7678 | ataR3AsyncIOClearRequests(pDevIns, &pThis->aCts[i]);
|
---|
7679 | Log2(("%s: Ctl#%d: message to async I/O thread, reset controller\n", __FUNCTION__, i));
|
---|
7680 | ataHCAsyncIOPutRequest(pDevIns, &pThis->aCts[i], &g_ataResetARequest);
|
---|
7681 | ataHCAsyncIOPutRequest(pDevIns, &pThis->aCts[i], &g_ataResetCRequest);
|
---|
7682 |
|
---|
7683 | PDMDevHlpCritSectLeave(pDevIns, &pThis->aCts[i].lock);
|
---|
7684 | }
|
---|
7685 |
|
---|
7686 | int rcRet = VINF_SUCCESS;
|
---|
7687 | if (!fConstruct)
|
---|
7688 | {
|
---|
7689 | /*
|
---|
7690 | * Setup asynchronous notification completion if the requests haven't
|
---|
7691 | * completed yet.
|
---|
7692 | */
|
---|
7693 | if (!ataR3IsAsyncResetDone(pDevIns))
|
---|
7694 | PDMDevHlpSetAsyncNotification(pDevIns, ataR3IsAsyncResetDone);
|
---|
7695 | }
|
---|
7696 | else
|
---|
7697 | {
|
---|
7698 | /*
|
---|
7699 | * Wait for the requests for complete.
|
---|
7700 | *
|
---|
7701 | * Would be real nice if we could do it all from EMT(0) and not
|
---|
7702 | * involve the worker threads, then we could dispense with all the
|
---|
7703 | * waiting and semaphore ping-pong here...
|
---|
7704 | */
|
---|
7705 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7706 | {
|
---|
7707 | if (pThisCC->aCts[i].hAsyncIOThread != NIL_RTTHREAD)
|
---|
7708 | {
|
---|
7709 | int rc = PDMDevHlpCritSectEnter(pDevIns, &pThis->aCts[i].AsyncIORequestLock, VERR_IGNORED);
|
---|
7710 | PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pThis->aCts[i].AsyncIORequestLock, rc);
|
---|
7711 |
|
---|
7712 | ASMAtomicWriteBool(&pThisCC->aCts[i].fSignalIdle, true);
|
---|
7713 | rc = RTThreadUserReset(pThisCC->aCts[i].hAsyncIOThread);
|
---|
7714 | AssertRC(rc);
|
---|
7715 |
|
---|
7716 | rc = PDMDevHlpCritSectLeave(pDevIns, &pThis->aCts[i].AsyncIORequestLock);
|
---|
7717 | AssertRC(rc);
|
---|
7718 |
|
---|
7719 | if (!ataR3AsyncIOIsIdle(pDevIns, &pThis->aCts[i], false /*fStrict*/))
|
---|
7720 | {
|
---|
7721 | rc = RTThreadUserWait(pThisCC->aCts[i].hAsyncIOThread, 30*1000 /*ms*/);
|
---|
7722 | if (RT_FAILURE(rc))
|
---|
7723 | rc = RTThreadUserWait(pThisCC->aCts[i].hAsyncIOThread, 1000 /*ms*/);
|
---|
7724 | if (RT_FAILURE(rc))
|
---|
7725 | {
|
---|
7726 | AssertRC(rc);
|
---|
7727 | rcRet = rc;
|
---|
7728 | }
|
---|
7729 | }
|
---|
7730 | }
|
---|
7731 | ASMAtomicWriteBool(&pThisCC->aCts[i].fSignalIdle, false);
|
---|
7732 | }
|
---|
7733 | if (RT_SUCCESS(rcRet))
|
---|
7734 | {
|
---|
7735 | rcRet = ataR3IsAsyncResetDone(pDevIns) ? VINF_SUCCESS : VERR_INTERNAL_ERROR;
|
---|
7736 | AssertRC(rcRet);
|
---|
7737 | }
|
---|
7738 | }
|
---|
7739 | return rcRet;
|
---|
7740 | }
|
---|
7741 |
|
---|
7742 | /**
|
---|
7743 | * Reset notification.
|
---|
7744 | *
|
---|
7745 | * @param pDevIns The device instance data.
|
---|
7746 | */
|
---|
7747 | static DECLCALLBACK(void) ataR3Reset(PPDMDEVINS pDevIns)
|
---|
7748 | {
|
---|
7749 | ataR3ResetCommon(pDevIns, false /*fConstruct*/);
|
---|
7750 | }
|
---|
7751 |
|
---|
7752 | /**
|
---|
7753 | * Destroy a driver instance.
|
---|
7754 | *
|
---|
7755 | * Most VM resources are freed by the VM. This callback is provided so that any non-VM
|
---|
7756 | * resources can be freed correctly.
|
---|
7757 | *
|
---|
7758 | * @param pDevIns The device instance data.
|
---|
7759 | */
|
---|
7760 | static DECLCALLBACK(int) ataR3Destruct(PPDMDEVINS pDevIns)
|
---|
7761 | {
|
---|
7762 | PDMDEV_CHECK_VERSIONS_RETURN_QUIET(pDevIns);
|
---|
7763 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7764 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATECC);
|
---|
7765 | int rc;
|
---|
7766 |
|
---|
7767 | Log(("ataR3Destruct\n"));
|
---|
7768 |
|
---|
7769 | /*
|
---|
7770 | * Tell the async I/O threads to terminate.
|
---|
7771 | */
|
---|
7772 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7773 | {
|
---|
7774 | if (pThisCC->aCts[i].hAsyncIOThread != NIL_RTTHREAD)
|
---|
7775 | {
|
---|
7776 | ASMAtomicWriteU32(&pThisCC->aCts[i].fShutdown, true);
|
---|
7777 | rc = PDMDevHlpSUPSemEventSignal(pDevIns, pThis->aCts[i].hAsyncIOSem);
|
---|
7778 | AssertRC(rc);
|
---|
7779 | rc = RTSemEventSignal(pThisCC->aCts[i].hSuspendIOSem);
|
---|
7780 | AssertRC(rc);
|
---|
7781 | }
|
---|
7782 | }
|
---|
7783 |
|
---|
7784 | /*
|
---|
7785 | * Wait for the threads to terminate before destroying their resources.
|
---|
7786 | */
|
---|
7787 | for (unsigned i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7788 | {
|
---|
7789 | if (pThisCC->aCts[i].hAsyncIOThread != NIL_RTTHREAD)
|
---|
7790 | {
|
---|
7791 | rc = RTThreadWait(pThisCC->aCts[i].hAsyncIOThread, 30000 /* 30 s*/, NULL);
|
---|
7792 | if (RT_SUCCESS(rc))
|
---|
7793 | pThisCC->aCts[i].hAsyncIOThread = NIL_RTTHREAD;
|
---|
7794 | else
|
---|
7795 | LogRel(("PIIX3 ATA Dtor: Ctl#%u is still executing, DevSel=%d AIOIf=%d CmdIf0=%#04x CmdIf1=%#04x rc=%Rrc\n",
|
---|
7796 | i, pThis->aCts[i].iSelectedIf, pThis->aCts[i].iAIOIf,
|
---|
7797 | pThis->aCts[i].aIfs[0].uATARegCommand, pThis->aCts[i].aIfs[1].uATARegCommand, rc));
|
---|
7798 | }
|
---|
7799 | }
|
---|
7800 |
|
---|
7801 | /*
|
---|
7802 | * Free resources.
|
---|
7803 | */
|
---|
7804 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7805 | {
|
---|
7806 | if (PDMDevHlpCritSectIsInitialized(pDevIns, &pThis->aCts[i].AsyncIORequestLock))
|
---|
7807 | PDMDevHlpCritSectDelete(pDevIns, &pThis->aCts[i].AsyncIORequestLock);
|
---|
7808 | if (pThis->aCts[i].hAsyncIOSem != NIL_SUPSEMEVENT)
|
---|
7809 | {
|
---|
7810 | PDMDevHlpSUPSemEventClose(pDevIns, pThis->aCts[i].hAsyncIOSem);
|
---|
7811 | pThis->aCts[i].hAsyncIOSem = NIL_SUPSEMEVENT;
|
---|
7812 | }
|
---|
7813 | if (pThisCC->aCts[i].hSuspendIOSem != NIL_RTSEMEVENT)
|
---|
7814 | {
|
---|
7815 | RTSemEventDestroy(pThisCC->aCts[i].hSuspendIOSem);
|
---|
7816 | pThisCC->aCts[i].hSuspendIOSem = NIL_RTSEMEVENT;
|
---|
7817 | }
|
---|
7818 |
|
---|
7819 | /* try one final time */
|
---|
7820 | if (pThisCC->aCts[i].hAsyncIOThread != NIL_RTTHREAD)
|
---|
7821 | {
|
---|
7822 | rc = RTThreadWait(pThisCC->aCts[i].hAsyncIOThread, 1 /*ms*/, NULL);
|
---|
7823 | if (RT_SUCCESS(rc))
|
---|
7824 | {
|
---|
7825 | pThisCC->aCts[i].hAsyncIOThread = NIL_RTTHREAD;
|
---|
7826 | LogRel(("PIIX3 ATA Dtor: Ctl#%u actually completed.\n", i));
|
---|
7827 | }
|
---|
7828 | }
|
---|
7829 |
|
---|
7830 | for (uint32_t iIf = 0; iIf < RT_ELEMENTS(pThis->aCts[i].aIfs); iIf++)
|
---|
7831 | {
|
---|
7832 | if (pThisCC->aCts[i].aIfs[iIf].pTrackList)
|
---|
7833 | {
|
---|
7834 | ATAPIPassthroughTrackListDestroy(pThisCC->aCts[i].aIfs[iIf].pTrackList);
|
---|
7835 | pThisCC->aCts[i].aIfs[iIf].pTrackList = NULL;
|
---|
7836 | }
|
---|
7837 | }
|
---|
7838 | }
|
---|
7839 |
|
---|
7840 | return VINF_SUCCESS;
|
---|
7841 | }
|
---|
7842 |
|
---|
7843 | /**
|
---|
7844 | * Convert config value to DEVPCBIOSBOOT.
|
---|
7845 | *
|
---|
7846 | * @returns VBox status code.
|
---|
7847 | * @param pDevIns The device instance data.
|
---|
7848 | * @param pCfg Configuration handle.
|
---|
7849 | * @param penmChipset Where to store the chipset type.
|
---|
7850 | */
|
---|
7851 | static int ataR3ControllerFromCfg(PPDMDEVINS pDevIns, PCFGMNODE pCfg, CHIPSET *penmChipset)
|
---|
7852 | {
|
---|
7853 | char szType[20];
|
---|
7854 |
|
---|
7855 | int rc = pDevIns->pHlpR3->pfnCFGMQueryStringDef(pCfg, "Type", &szType[0], sizeof(szType), "PIIX4");
|
---|
7856 | if (RT_FAILURE(rc))
|
---|
7857 | return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS,
|
---|
7858 | N_("Configuration error: Querying \"Type\" as a string failed"));
|
---|
7859 | if (!strcmp(szType, "PIIX3"))
|
---|
7860 | *penmChipset = CHIPSET_PIIX3;
|
---|
7861 | else if (!strcmp(szType, "PIIX4"))
|
---|
7862 | *penmChipset = CHIPSET_PIIX4;
|
---|
7863 | else if (!strcmp(szType, "ICH6"))
|
---|
7864 | *penmChipset = CHIPSET_ICH6;
|
---|
7865 | else
|
---|
7866 | {
|
---|
7867 | PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS,
|
---|
7868 | N_("Configuration error: The \"Type\" value \"%s\" is unknown"),
|
---|
7869 | szType);
|
---|
7870 | rc = VERR_INTERNAL_ERROR;
|
---|
7871 | }
|
---|
7872 | return rc;
|
---|
7873 | }
|
---|
7874 |
|
---|
7875 | /**
|
---|
7876 | * @interface_method_impl{PDMDEVREG,pfnConstruct}
|
---|
7877 | */
|
---|
7878 | static DECLCALLBACK(int) ataR3Construct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg)
|
---|
7879 | {
|
---|
7880 | PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
|
---|
7881 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
7882 | PATASTATER3 pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PATASTATER3);
|
---|
7883 | PCPDMDEVHLPR3 pHlp = pDevIns->pHlpR3;
|
---|
7884 | PPDMIBASE pBase;
|
---|
7885 | int rc;
|
---|
7886 | uint32_t msDelayIRQ;
|
---|
7887 |
|
---|
7888 | Assert(iInstance == 0);
|
---|
7889 |
|
---|
7890 | /*
|
---|
7891 | * Initialize NIL handle values (for the destructor).
|
---|
7892 | */
|
---|
7893 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7894 | {
|
---|
7895 | pThis->aCts[i].iCtl = i;
|
---|
7896 | pThis->aCts[i].hAsyncIOSem = NIL_SUPSEMEVENT;
|
---|
7897 | pThis->aCts[i].hIoPorts1First = NIL_IOMIOPORTHANDLE;
|
---|
7898 | pThis->aCts[i].hIoPorts1Other = NIL_IOMIOPORTHANDLE;
|
---|
7899 | pThis->aCts[i].hIoPorts2 = NIL_IOMIOPORTHANDLE;
|
---|
7900 | pThis->aCts[i].hIoPortsEmpty1 = NIL_IOMIOPORTHANDLE;
|
---|
7901 | pThis->aCts[i].hIoPortsEmpty2 = NIL_IOMIOPORTHANDLE;
|
---|
7902 |
|
---|
7903 | pThisCC->aCts[i].iCtl = i;
|
---|
7904 | pThisCC->aCts[i].hSuspendIOSem = NIL_RTSEMEVENT;
|
---|
7905 | pThisCC->aCts[i].hAsyncIOThread = NIL_RTTHREAD;
|
---|
7906 | }
|
---|
7907 |
|
---|
7908 | /*
|
---|
7909 | * Validate and read configuration.
|
---|
7910 | */
|
---|
7911 | PDMDEV_VALIDATE_CONFIG_RETURN(pDevIns, "IRQDelay|Type", "PrimaryMaster|PrimarySlave|SecondaryMaster|SecondarySlave");
|
---|
7912 |
|
---|
7913 | rc = pHlp->pfnCFGMQueryU32Def(pCfg, "IRQDelay", &msDelayIRQ, 0);
|
---|
7914 | if (RT_FAILURE(rc))
|
---|
7915 | return PDMDEV_SET_ERROR(pDevIns, rc, N_("PIIX3 configuration error: failed to read IRQDelay as integer"));
|
---|
7916 | Log(("%s: msDelayIRQ=%d\n", __FUNCTION__, msDelayIRQ));
|
---|
7917 | Assert(msDelayIRQ < 50);
|
---|
7918 |
|
---|
7919 | CHIPSET enmChipset = CHIPSET_PIIX3;
|
---|
7920 | rc = ataR3ControllerFromCfg(pDevIns, pCfg, &enmChipset);
|
---|
7921 | if (RT_FAILURE(rc))
|
---|
7922 | return rc;
|
---|
7923 | pThis->enmChipset = enmChipset;
|
---|
7924 |
|
---|
7925 | /*
|
---|
7926 | * Initialize data (most of it anyway).
|
---|
7927 | */
|
---|
7928 | /* Status LUN. */
|
---|
7929 | pThisCC->IBase.pfnQueryInterface = ataR3Status_QueryInterface;
|
---|
7930 | pThisCC->ILeds.pfnQueryStatusLed = ataR3Status_QueryStatusLed;
|
---|
7931 |
|
---|
7932 | /* PCI configuration space. */
|
---|
7933 | PPDMPCIDEV pPciDev = pDevIns->apPciDevs[0];
|
---|
7934 | PDMPCIDEV_ASSERT_VALID(pDevIns, pPciDev);
|
---|
7935 | PDMPciDevSetVendorId(pPciDev, 0x8086); /* Intel */
|
---|
7936 |
|
---|
7937 | /*
|
---|
7938 | * When adding more IDE chipsets, don't forget to update pci_bios_init_device()
|
---|
7939 | * as it explicitly checks for PCI id for IDE controllers.
|
---|
7940 | */
|
---|
7941 | switch (enmChipset)
|
---|
7942 | {
|
---|
7943 | case CHIPSET_ICH6:
|
---|
7944 | PDMPciDevSetDeviceId(pPciDev, 0x269e); /* ICH6 IDE */
|
---|
7945 | /** @todo do we need it? Do we need anything else? */
|
---|
7946 | PDMPciDevSetByte(pPciDev, 0x48, 0x00); /* UDMACTL */
|
---|
7947 | PDMPciDevSetByte(pPciDev, 0x4A, 0x00); /* UDMATIM */
|
---|
7948 | PDMPciDevSetByte(pPciDev, 0x4B, 0x00);
|
---|
7949 | {
|
---|
7950 | /*
|
---|
7951 | * See www.intel.com/Assets/PDF/manual/298600.pdf p. 30
|
---|
7952 | * Report
|
---|
7953 | * WR_Ping-Pong_EN: must be set
|
---|
7954 | * PCR0, PCR1: 80-pin primary cable reporting for both disks
|
---|
7955 | * SCR0, SCR1: 80-pin secondary cable reporting for both disks
|
---|
7956 | */
|
---|
7957 | uint16_t u16Config = (1<<10) | (1<<7) | (1<<6) | (1<<5) | (1<<4);
|
---|
7958 | PDMPciDevSetByte(pPciDev, 0x54, u16Config & 0xff);
|
---|
7959 | PDMPciDevSetByte(pPciDev, 0x55, u16Config >> 8);
|
---|
7960 | }
|
---|
7961 | break;
|
---|
7962 | case CHIPSET_PIIX4:
|
---|
7963 | PDMPciDevSetDeviceId(pPciDev, 0x7111); /* PIIX4 IDE */
|
---|
7964 | PDMPciDevSetRevisionId(pPciDev, 0x01); /* PIIX4E */
|
---|
7965 | PDMPciDevSetByte(pPciDev, 0x48, 0x00); /* UDMACTL */
|
---|
7966 | PDMPciDevSetByte(pPciDev, 0x4A, 0x00); /* UDMATIM */
|
---|
7967 | PDMPciDevSetByte(pPciDev, 0x4B, 0x00);
|
---|
7968 | break;
|
---|
7969 | case CHIPSET_PIIX3:
|
---|
7970 | PDMPciDevSetDeviceId(pPciDev, 0x7010); /* PIIX3 IDE */
|
---|
7971 | break;
|
---|
7972 | default:
|
---|
7973 | AssertMsgFailed(("Unsupported IDE chipset type: %d\n", enmChipset));
|
---|
7974 | }
|
---|
7975 |
|
---|
7976 | /** @todo
|
---|
7977 | * This is the job of the BIOS / EFI!
|
---|
7978 | *
|
---|
7979 | * The same is done in DevPCI.cpp / pci_bios_init_device() but there is no
|
---|
7980 | * corresponding function in DevPciIch9.cpp. The EFI has corresponding code
|
---|
7981 | * in OvmfPkg/Library/PlatformBdsLib/BdsPlatform.c: NotifyDev() but this
|
---|
7982 | * function assumes that the IDE controller is located at PCI 00:01.1 which
|
---|
7983 | * is not true if the ICH9 chipset is used.
|
---|
7984 | */
|
---|
7985 | PDMPciDevSetWord(pPciDev, 0x40, 0x8000); /* enable IDE0 */
|
---|
7986 | PDMPciDevSetWord(pPciDev, 0x42, 0x8000); /* enable IDE1 */
|
---|
7987 |
|
---|
7988 | PDMPciDevSetCommand( pPciDev, PCI_COMMAND_IOACCESS | PCI_COMMAND_MEMACCESS | PCI_COMMAND_BUSMASTER);
|
---|
7989 | PDMPciDevSetClassProg( pPciDev, 0x8a); /* programming interface = PCI_IDE bus-master is supported */
|
---|
7990 | PDMPciDevSetClassSub( pPciDev, 0x01); /* class_sub = PCI_IDE */
|
---|
7991 | PDMPciDevSetClassBase( pPciDev, 0x01); /* class_base = PCI_mass_storage */
|
---|
7992 | PDMPciDevSetHeaderType(pPciDev, 0x00);
|
---|
7993 |
|
---|
7994 | pThisCC->pDevIns = pDevIns;
|
---|
7995 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
7996 | {
|
---|
7997 | pThisCC->aCts[i].pDevIns = pDevIns;
|
---|
7998 | pThisCC->aCts[i].iCtl = i;
|
---|
7999 | pThis->aCts[i].iCtl = i;
|
---|
8000 | pThis->aCts[i].msDelayIRQ = msDelayIRQ;
|
---|
8001 | for (uint32_t j = 0; j < RT_ELEMENTS(pThis->aCts[i].aIfs); j++)
|
---|
8002 | {
|
---|
8003 | PATADEVSTATE pIf = &pThis->aCts[i].aIfs[j];
|
---|
8004 | PATADEVSTATER3 pIfR3 = &pThisCC->aCts[i].aIfs[j];
|
---|
8005 |
|
---|
8006 | pIfR3->iLUN = pIf->iLUN = i * RT_ELEMENTS(pThis->aCts) + j;
|
---|
8007 | pIfR3->iCtl = pIf->iCtl = i;
|
---|
8008 | pIfR3->iDev = pIf->iDev = j;
|
---|
8009 | pIfR3->pDevIns = pDevIns;
|
---|
8010 | pIfR3->IBase.pfnQueryInterface = ataR3QueryInterface;
|
---|
8011 | pIfR3->IMountNotify.pfnMountNotify = ataR3MountNotify;
|
---|
8012 | pIfR3->IMountNotify.pfnUnmountNotify = ataR3UnmountNotify;
|
---|
8013 | pIfR3->IPort.pfnQueryDeviceLocation = ataR3QueryDeviceLocation;
|
---|
8014 | pIf->Led.u32Magic = PDMLED_MAGIC;
|
---|
8015 | }
|
---|
8016 | }
|
---|
8017 |
|
---|
8018 | Assert(RT_ELEMENTS(pThis->aCts) == 2);
|
---|
8019 | pThis->aCts[0].irq = 14;
|
---|
8020 | pThis->aCts[0].IOPortBase1 = 0x1f0;
|
---|
8021 | pThis->aCts[0].IOPortBase2 = 0x3f6;
|
---|
8022 | pThis->aCts[1].irq = 15;
|
---|
8023 | pThis->aCts[1].IOPortBase1 = 0x170;
|
---|
8024 | pThis->aCts[1].IOPortBase2 = 0x376;
|
---|
8025 |
|
---|
8026 | /*
|
---|
8027 | * Set the default critical section to NOP as we lock on controller level.
|
---|
8028 | */
|
---|
8029 | rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns));
|
---|
8030 | AssertRCReturn(rc, rc);
|
---|
8031 |
|
---|
8032 | /*
|
---|
8033 | * Register the PCI device.
|
---|
8034 | */
|
---|
8035 | rc = PDMDevHlpPCIRegisterEx(pDevIns, pPciDev, PDMPCIDEVREG_F_NOT_MANDATORY_NO, 1 /*uPciDevNo*/, 1 /*uPciDevFn*/, "piix3ide");
|
---|
8036 | if (RT_FAILURE(rc))
|
---|
8037 | return PDMDEV_SET_ERROR(pDevIns, rc, N_("PIIX3 cannot register PCI device"));
|
---|
8038 |
|
---|
8039 | /* Region #4: I/O ports for the two bus-master DMA controllers. */
|
---|
8040 | rc = PDMDevHlpPCIIORegionCreateIo(pDevIns, 4 /*iPciRegion*/, 0x10 /*cPorts*/,
|
---|
8041 | ataBMDMAIOPortWrite, ataBMDMAIOPortRead, NULL /*pvUser*/, "ATA Bus Master DMA",
|
---|
8042 | NULL /*paExtDescs*/, &pThis->hIoPortsBmDma);
|
---|
8043 | AssertRCReturn(rc, rc);
|
---|
8044 |
|
---|
8045 | /*
|
---|
8046 | * Register stats, create critical sections.
|
---|
8047 | */
|
---|
8048 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
8049 | {
|
---|
8050 | for (uint32_t j = 0; j < RT_ELEMENTS(pThis->aCts[i].aIfs); j++)
|
---|
8051 | {
|
---|
8052 | PATADEVSTATE pIf = &pThis->aCts[i].aIfs[j];
|
---|
8053 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatATADMA, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES,
|
---|
8054 | "Number of ATA DMA transfers.", "/Devices/IDE%d/ATA%d/Unit%d/DMA", iInstance, i, j);
|
---|
8055 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatATAPIO, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES,
|
---|
8056 | "Number of ATA PIO transfers.", "/Devices/IDE%d/ATA%d/Unit%d/PIO", iInstance, i, j);
|
---|
8057 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatATAPIDMA, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES,
|
---|
8058 | "Number of ATAPI DMA transfers.", "/Devices/IDE%d/ATA%d/Unit%d/AtapiDMA", iInstance, i, j);
|
---|
8059 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatATAPIPIO, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES,
|
---|
8060 | "Number of ATAPI PIO transfers.", "/Devices/IDE%d/ATA%d/Unit%d/AtapiPIO", iInstance, i, j);
|
---|
8061 | #ifdef VBOX_WITH_STATISTICS /** @todo release too. */
|
---|
8062 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatReads, STAMTYPE_PROFILE_ADV, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL,
|
---|
8063 | "Profiling of the read operations.", "/Devices/IDE%d/ATA%d/Unit%d/Reads", iInstance, i, j);
|
---|
8064 | #endif
|
---|
8065 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatBytesRead, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_BYTES,
|
---|
8066 | "Amount of data read.", "/Devices/IDE%d/ATA%d/Unit%d/ReadBytes", iInstance, i, j);
|
---|
8067 | #ifdef VBOX_INSTRUMENT_DMA_WRITES
|
---|
8068 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatInstrVDWrites,STAMTYPE_PROFILE_ADV, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL,
|
---|
8069 | "Profiling of the VD DMA write operations.", "/Devices/IDE%d/ATA%d/Unit%d/InstrVDWrites", iInstance, i, j);
|
---|
8070 | #endif
|
---|
8071 | #ifdef VBOX_WITH_STATISTICS
|
---|
8072 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatWrites, STAMTYPE_PROFILE_ADV, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL,
|
---|
8073 | "Profiling of the write operations.", "/Devices/IDE%d/ATA%d/Unit%d/Writes", iInstance, i, j);
|
---|
8074 | #endif
|
---|
8075 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatBytesWritten, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_BYTES,
|
---|
8076 | "Amount of data written.", "/Devices/IDE%d/ATA%d/Unit%d/WrittenBytes", iInstance, i, j);
|
---|
8077 | #ifdef VBOX_WITH_STATISTICS
|
---|
8078 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatFlushes, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL,
|
---|
8079 | "Profiling of the flush operations.", "/Devices/IDE%d/ATA%d/Unit%d/Flushes", iInstance, i, j);
|
---|
8080 | #endif
|
---|
8081 | PDMDevHlpSTAMRegisterF(pDevIns, &pIf->StatStatusYields, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL,
|
---|
8082 | "Profiling of status polling yields.", "/Devices/IDE%d/ATA%d/Unit%d/StatusYields", iInstance, i, j);
|
---|
8083 | }
|
---|
8084 | #ifdef VBOX_WITH_STATISTICS /** @todo release too. */
|
---|
8085 | PDMDevHlpSTAMRegisterF(pDevIns, &pThis->aCts[i].StatAsyncOps, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES,
|
---|
8086 | "The number of async operations.", "/Devices/IDE%d/ATA%d/Async/Operations", iInstance, i);
|
---|
8087 | /** @todo STAMUNIT_MICROSECS */
|
---|
8088 | PDMDevHlpSTAMRegisterF(pDevIns, &pThis->aCts[i].StatAsyncMinWait, STAMTYPE_U64_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE,
|
---|
8089 | "Minimum wait in microseconds.", "/Devices/IDE%d/ATA%d/Async/MinWait", iInstance, i);
|
---|
8090 | PDMDevHlpSTAMRegisterF(pDevIns, &pThis->aCts[i].StatAsyncMaxWait, STAMTYPE_U64_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE,
|
---|
8091 | "Maximum wait in microseconds.", "/Devices/IDE%d/ATA%d/Async/MaxWait", iInstance, i);
|
---|
8092 | PDMDevHlpSTAMRegisterF(pDevIns, &pThis->aCts[i].StatAsyncTimeUS, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE,
|
---|
8093 | "Total time spent in microseconds.", "/Devices/IDE%d/ATA%d/Async/TotalTimeUS", iInstance, i);
|
---|
8094 | PDMDevHlpSTAMRegisterF(pDevIns, &pThis->aCts[i].StatAsyncTime, STAMTYPE_PROFILE_ADV, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL,
|
---|
8095 | "Profiling of async operations.", "/Devices/IDE%d/ATA%d/Async/Time", iInstance, i);
|
---|
8096 | PDMDevHlpSTAMRegisterF(pDevIns, &pThis->aCts[i].StatLockWait, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL,
|
---|
8097 | "Profiling of locks.", "/Devices/IDE%d/ATA%d/Async/LockWait", iInstance, i);
|
---|
8098 | #endif /* VBOX_WITH_STATISTICS */
|
---|
8099 |
|
---|
8100 | /* Initialize per-controller critical section. */
|
---|
8101 | rc = PDMDevHlpCritSectInit(pDevIns, &pThis->aCts[i].lock, RT_SRC_POS, "ATA#%u-Ctl", i);
|
---|
8102 | AssertLogRelRCReturn(rc, rc);
|
---|
8103 |
|
---|
8104 | /* Initialize per-controller async I/O request critical section. */
|
---|
8105 | rc = PDMDevHlpCritSectInit(pDevIns, &pThis->aCts[i].AsyncIORequestLock, RT_SRC_POS, "ATA#%u-Req", i);
|
---|
8106 | AssertLogRelRCReturn(rc, rc);
|
---|
8107 | }
|
---|
8108 |
|
---|
8109 | /*
|
---|
8110 | * Attach status driver (optional).
|
---|
8111 | */
|
---|
8112 | rc = PDMDevHlpDriverAttach(pDevIns, PDM_STATUS_LUN, &pThisCC->IBase, &pBase, "Status Port");
|
---|
8113 | if (RT_SUCCESS(rc))
|
---|
8114 | {
|
---|
8115 | pThisCC->pLedsConnector = PDMIBASE_QUERY_INTERFACE(pBase, PDMILEDCONNECTORS);
|
---|
8116 | pThisCC->pMediaNotify = PDMIBASE_QUERY_INTERFACE(pBase, PDMIMEDIANOTIFY);
|
---|
8117 | }
|
---|
8118 | else if (rc != VERR_PDM_NO_ATTACHED_DRIVER)
|
---|
8119 | {
|
---|
8120 | AssertMsgFailed(("Failed to attach to status driver. rc=%Rrc\n", rc));
|
---|
8121 | return PDMDEV_SET_ERROR(pDevIns, rc, N_("PIIX3 cannot attach to status driver"));
|
---|
8122 | }
|
---|
8123 |
|
---|
8124 | /*
|
---|
8125 | * Attach the units.
|
---|
8126 | */
|
---|
8127 | uint32_t cbTotalBuffer = 0;
|
---|
8128 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
8129 | {
|
---|
8130 | PATACONTROLLER pCtl = &pThis->aCts[i];
|
---|
8131 | PATACONTROLLERR3 pCtlR3 = &pThisCC->aCts[i];
|
---|
8132 |
|
---|
8133 | /*
|
---|
8134 | * Start the worker thread.
|
---|
8135 | */
|
---|
8136 | pCtl->uAsyncIOState = ATA_AIO_NEW;
|
---|
8137 | rc = PDMDevHlpSUPSemEventCreate(pDevIns, &pCtl->hAsyncIOSem);
|
---|
8138 | AssertLogRelRCReturn(rc, rc);
|
---|
8139 | rc = RTSemEventCreate(&pCtlR3->hSuspendIOSem);
|
---|
8140 | AssertLogRelRCReturn(rc, rc);
|
---|
8141 |
|
---|
8142 | ataR3AsyncIOClearRequests(pDevIns, pCtl);
|
---|
8143 | rc = RTThreadCreateF(&pCtlR3->hAsyncIOThread, ataR3AsyncIOThread, pCtlR3, 0,
|
---|
8144 | RTTHREADTYPE_IO, RTTHREADFLAGS_WAITABLE, "ATA-%u", i);
|
---|
8145 | AssertLogRelRCReturn(rc, rc);
|
---|
8146 | Assert( pCtlR3->hAsyncIOThread != NIL_RTTHREAD && pCtl->hAsyncIOSem != NIL_SUPSEMEVENT
|
---|
8147 | && pCtlR3->hSuspendIOSem != NIL_RTSEMEVENT && PDMDevHlpCritSectIsInitialized(pDevIns, &pCtl->AsyncIORequestLock));
|
---|
8148 | Log(("%s: controller %d AIO thread id %#x; sem %p susp_sem %p\n", __FUNCTION__, i, pCtlR3->hAsyncIOThread, pCtl->hAsyncIOSem, pCtlR3->hSuspendIOSem));
|
---|
8149 |
|
---|
8150 | for (uint32_t j = 0; j < RT_ELEMENTS(pCtl->aIfs); j++)
|
---|
8151 | {
|
---|
8152 | static const char *s_apszDescs[RT_ELEMENTS(pThis->aCts)][RT_ELEMENTS(pCtl->aIfs)] =
|
---|
8153 | {
|
---|
8154 | { "Primary Master", "Primary Slave" },
|
---|
8155 | { "Secondary Master", "Secondary Slave" }
|
---|
8156 | };
|
---|
8157 |
|
---|
8158 | /*
|
---|
8159 | * Try attach the block device and get the interfaces,
|
---|
8160 | * required as well as optional.
|
---|
8161 | */
|
---|
8162 | PATADEVSTATE pIf = &pCtl->aIfs[j];
|
---|
8163 | PATADEVSTATER3 pIfR3 = &pCtlR3->aIfs[j];
|
---|
8164 |
|
---|
8165 | rc = PDMDevHlpDriverAttach(pDevIns, pIf->iLUN, &pIfR3->IBase, &pIfR3->pDrvBase, s_apszDescs[i][j]);
|
---|
8166 | if (RT_SUCCESS(rc))
|
---|
8167 | {
|
---|
8168 | rc = ataR3ConfigLun(pIf, pIfR3);
|
---|
8169 | if (RT_SUCCESS(rc))
|
---|
8170 | {
|
---|
8171 | /*
|
---|
8172 | * Init vendor product data.
|
---|
8173 | */
|
---|
8174 | static const char *s_apszCFGMKeys[RT_ELEMENTS(pThis->aCts)][RT_ELEMENTS(pCtl->aIfs)] =
|
---|
8175 | {
|
---|
8176 | { "PrimaryMaster", "PrimarySlave" },
|
---|
8177 | { "SecondaryMaster", "SecondarySlave" }
|
---|
8178 | };
|
---|
8179 |
|
---|
8180 | /* Generate a default serial number. */
|
---|
8181 | char szSerial[ATA_SERIAL_NUMBER_LENGTH+1];
|
---|
8182 | RTUUID Uuid;
|
---|
8183 | if (pIfR3->pDrvMedia)
|
---|
8184 | rc = pIfR3->pDrvMedia->pfnGetUuid(pIfR3->pDrvMedia, &Uuid);
|
---|
8185 | else
|
---|
8186 | RTUuidClear(&Uuid);
|
---|
8187 |
|
---|
8188 | if (RT_FAILURE(rc) || RTUuidIsNull(&Uuid))
|
---|
8189 | {
|
---|
8190 | /* Generate a predictable serial for drives which don't have a UUID. */
|
---|
8191 | RTStrPrintf(szSerial, sizeof(szSerial), "VB%x-%04x%04x",
|
---|
8192 | pIf->iLUN + pDevIns->iInstance * 32,
|
---|
8193 | pThis->aCts[i].IOPortBase1, pThis->aCts[i].IOPortBase2);
|
---|
8194 | }
|
---|
8195 | else
|
---|
8196 | RTStrPrintf(szSerial, sizeof(szSerial), "VB%08x-%08x", Uuid.au32[0], Uuid.au32[3]);
|
---|
8197 |
|
---|
8198 | /* Get user config if present using defaults otherwise. */
|
---|
8199 | PCFGMNODE pCfgNode = pHlp->pfnCFGMGetChild(pCfg, s_apszCFGMKeys[i][j]);
|
---|
8200 | rc = pHlp->pfnCFGMQueryStringDef(pCfgNode, "SerialNumber", pIf->szSerialNumber, sizeof(pIf->szSerialNumber),
|
---|
8201 | szSerial);
|
---|
8202 | if (RT_FAILURE(rc))
|
---|
8203 | {
|
---|
8204 | if (rc == VERR_CFGM_NOT_ENOUGH_SPACE)
|
---|
8205 | return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER,
|
---|
8206 | N_("PIIX3 configuration error: \"SerialNumber\" is longer than 20 bytes"));
|
---|
8207 | return PDMDEV_SET_ERROR(pDevIns, rc,
|
---|
8208 | N_("PIIX3 configuration error: failed to read \"SerialNumber\" as string"));
|
---|
8209 | }
|
---|
8210 |
|
---|
8211 | rc = pHlp->pfnCFGMQueryStringDef(pCfgNode, "FirmwareRevision", pIf->szFirmwareRevision,
|
---|
8212 | sizeof(pIf->szFirmwareRevision), "1.0");
|
---|
8213 | if (RT_FAILURE(rc))
|
---|
8214 | {
|
---|
8215 | if (rc == VERR_CFGM_NOT_ENOUGH_SPACE)
|
---|
8216 | return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER,
|
---|
8217 | N_("PIIX3 configuration error: \"FirmwareRevision\" is longer than 8 bytes"));
|
---|
8218 | return PDMDEV_SET_ERROR(pDevIns, rc,
|
---|
8219 | N_("PIIX3 configuration error: failed to read \"FirmwareRevision\" as string"));
|
---|
8220 | }
|
---|
8221 |
|
---|
8222 | rc = pHlp->pfnCFGMQueryStringDef(pCfgNode, "ModelNumber", pIf->szModelNumber, sizeof(pIf->szModelNumber),
|
---|
8223 | pIf->fATAPI ? "VBOX CD-ROM" : "VBOX HARDDISK");
|
---|
8224 | if (RT_FAILURE(rc))
|
---|
8225 | {
|
---|
8226 | if (rc == VERR_CFGM_NOT_ENOUGH_SPACE)
|
---|
8227 | return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER,
|
---|
8228 | N_("PIIX3 configuration error: \"ModelNumber\" is longer than 40 bytes"));
|
---|
8229 | return PDMDEV_SET_ERROR(pDevIns, rc,
|
---|
8230 | N_("PIIX3 configuration error: failed to read \"ModelNumber\" as string"));
|
---|
8231 | }
|
---|
8232 |
|
---|
8233 | /* There are three other identification strings for CD drives used for INQUIRY */
|
---|
8234 | if (pIf->fATAPI)
|
---|
8235 | {
|
---|
8236 | rc = pHlp->pfnCFGMQueryStringDef(pCfgNode, "ATAPIVendorId", pIf->szInquiryVendorId,
|
---|
8237 | sizeof(pIf->szInquiryVendorId), "VBOX");
|
---|
8238 | if (RT_FAILURE(rc))
|
---|
8239 | {
|
---|
8240 | if (rc == VERR_CFGM_NOT_ENOUGH_SPACE)
|
---|
8241 | return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER,
|
---|
8242 | N_("PIIX3 configuration error: \"ATAPIVendorId\" is longer than 16 bytes"));
|
---|
8243 | return PDMDEV_SET_ERROR(pDevIns, rc,
|
---|
8244 | N_("PIIX3 configuration error: failed to read \"ATAPIVendorId\" as string"));
|
---|
8245 | }
|
---|
8246 |
|
---|
8247 | rc = pHlp->pfnCFGMQueryStringDef(pCfgNode, "ATAPIProductId", pIf->szInquiryProductId,
|
---|
8248 | sizeof(pIf->szInquiryProductId), "CD-ROM");
|
---|
8249 | if (RT_FAILURE(rc))
|
---|
8250 | {
|
---|
8251 | if (rc == VERR_CFGM_NOT_ENOUGH_SPACE)
|
---|
8252 | return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER,
|
---|
8253 | N_("PIIX3 configuration error: \"ATAPIProductId\" is longer than 16 bytes"));
|
---|
8254 | return PDMDEV_SET_ERROR(pDevIns, rc,
|
---|
8255 | N_("PIIX3 configuration error: failed to read \"ATAPIProductId\" as string"));
|
---|
8256 | }
|
---|
8257 |
|
---|
8258 | rc = pHlp->pfnCFGMQueryStringDef(pCfgNode, "ATAPIRevision", pIf->szInquiryRevision,
|
---|
8259 | sizeof(pIf->szInquiryRevision), "1.0");
|
---|
8260 | if (RT_FAILURE(rc))
|
---|
8261 | {
|
---|
8262 | if (rc == VERR_CFGM_NOT_ENOUGH_SPACE)
|
---|
8263 | return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER,
|
---|
8264 | N_("PIIX3 configuration error: \"ATAPIRevision\" is longer than 4 bytes"));
|
---|
8265 | return PDMDEV_SET_ERROR(pDevIns, rc,
|
---|
8266 | N_("PIIX3 configuration error: failed to read \"ATAPIRevision\" as string"));
|
---|
8267 | }
|
---|
8268 |
|
---|
8269 | rc = pHlp->pfnCFGMQueryBoolDef(pCfgNode, "OverwriteInquiry", &pIf->fOverwriteInquiry, true);
|
---|
8270 | if (RT_FAILURE(rc))
|
---|
8271 | return PDMDEV_SET_ERROR(pDevIns, rc,
|
---|
8272 | N_("PIIX3 configuration error: failed to read \"OverwriteInquiry\" as boolean"));
|
---|
8273 | }
|
---|
8274 | }
|
---|
8275 | }
|
---|
8276 | else if (rc == VERR_PDM_NO_ATTACHED_DRIVER)
|
---|
8277 | {
|
---|
8278 | pIfR3->pDrvBase = NULL;
|
---|
8279 | pIfR3->pDrvMedia = NULL;
|
---|
8280 | pIf->cbIOBuffer = 0;
|
---|
8281 | pIf->fPresent = false;
|
---|
8282 | LogRel(("PIIX3 ATA: LUN#%d: no unit\n", pIf->iLUN));
|
---|
8283 | }
|
---|
8284 | else
|
---|
8285 | {
|
---|
8286 | switch (rc)
|
---|
8287 | {
|
---|
8288 | case VERR_ACCESS_DENIED:
|
---|
8289 | /* Error already cached by DrvHostBase */
|
---|
8290 | return rc;
|
---|
8291 | default:
|
---|
8292 | return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS,
|
---|
8293 | N_("PIIX3 cannot attach drive to the %s"),
|
---|
8294 | s_apszDescs[i][j]);
|
---|
8295 | }
|
---|
8296 | }
|
---|
8297 | cbTotalBuffer += pIf->cbIOBuffer;
|
---|
8298 | }
|
---|
8299 | }
|
---|
8300 |
|
---|
8301 | /*
|
---|
8302 | * Register the I/O ports.
|
---|
8303 | * The ports are all hardcoded and enforced by the PIIX3 host bridge controller.
|
---|
8304 | */
|
---|
8305 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
8306 | {
|
---|
8307 | Assert(pThis->aCts[i].aIfs[0].fPresent == (pThisCC->aCts[i].aIfs[0].pDrvMedia != NULL));
|
---|
8308 | Assert(pThis->aCts[i].aIfs[1].fPresent == (pThisCC->aCts[i].aIfs[1].pDrvMedia != NULL));
|
---|
8309 |
|
---|
8310 | if (!pThisCC->aCts[i].aIfs[0].pDrvMedia && !pThisCC->aCts[i].aIfs[1].pDrvMedia)
|
---|
8311 | {
|
---|
8312 | /* No device present on this ATA bus; requires special handling. */
|
---|
8313 | rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, pThis->aCts[i].IOPortBase1, 8 /*cPorts*/, IOM_IOPORT_F_ABS,
|
---|
8314 | ataIOPortWriteEmptyBus, ataIOPortReadEmptyBus, NULL, NULL, (RTHCPTR)(uintptr_t)i,
|
---|
8315 | "ATA I/O Base 1 - Empty Bus", NULL /*paExtDescs*/, &pThis->aCts[i].hIoPortsEmpty1);
|
---|
8316 | AssertLogRelRCReturn(rc, rc);
|
---|
8317 | rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, pThis->aCts[i].IOPortBase2, 1 /*cPorts*/, IOM_IOPORT_F_ABS,
|
---|
8318 | ataIOPortWriteEmptyBus, ataIOPortReadEmptyBus, NULL, NULL, (RTHCPTR)(uintptr_t)i,
|
---|
8319 | "ATA I/O Base 2 - Empty Bus", NULL /*paExtDescs*/, &pThis->aCts[i].hIoPortsEmpty2);
|
---|
8320 | AssertLogRelRCReturn(rc, rc);
|
---|
8321 | }
|
---|
8322 | else
|
---|
8323 | {
|
---|
8324 | /* At least one device present, register regular handlers. */
|
---|
8325 | rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, pThis->aCts[i].IOPortBase1, 1 /*cPorts*/, IOM_IOPORT_F_ABS,
|
---|
8326 | ataIOPortWrite1Data, ataIOPortRead1Data,
|
---|
8327 | ataIOPortWriteStr1Data, ataIOPortReadStr1Data, (RTHCPTR)(uintptr_t)i,
|
---|
8328 | "ATA I/O Base 1 - Data", NULL /*paExtDescs*/, &pThis->aCts[i].hIoPorts1First);
|
---|
8329 | AssertLogRelRCReturn(rc, rc);
|
---|
8330 | rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, pThis->aCts[i].IOPortBase1 + 1, 7 /*cPorts*/, IOM_IOPORT_F_ABS,
|
---|
8331 | ataIOPortWrite1Other, ataIOPortRead1Other, NULL, NULL, (RTHCPTR)(uintptr_t)i,
|
---|
8332 | "ATA I/O Base 1 - Other", NULL /*paExtDescs*/, &pThis->aCts[i].hIoPorts1Other);
|
---|
8333 | AssertLogRelRCReturn(rc, rc);
|
---|
8334 |
|
---|
8335 |
|
---|
8336 | rc = PDMDevHlpIoPortCreateExAndMap(pDevIns, pThis->aCts[i].IOPortBase2, 1 /*cPorts*/, IOM_IOPORT_F_ABS,
|
---|
8337 | ataIOPortWrite2, ataIOPortRead2, NULL, NULL, (RTHCPTR)(uintptr_t)i,
|
---|
8338 | "ATA I/O Base 2", NULL /*paExtDescs*/, &pThis->aCts[i].hIoPorts2);
|
---|
8339 | AssertLogRelRCReturn(rc, rc);
|
---|
8340 | }
|
---|
8341 | }
|
---|
8342 |
|
---|
8343 | rc = PDMDevHlpSSMRegisterEx(pDevIns, ATA_SAVED_STATE_VERSION, sizeof(*pThis) + cbTotalBuffer, NULL,
|
---|
8344 | NULL, ataR3LiveExec, NULL,
|
---|
8345 | ataR3SaveLoadPrep, ataR3SaveExec, NULL,
|
---|
8346 | ataR3SaveLoadPrep, ataR3LoadExec, NULL);
|
---|
8347 | if (RT_FAILURE(rc))
|
---|
8348 | return PDMDEV_SET_ERROR(pDevIns, rc, N_("PIIX3 cannot register save state handlers"));
|
---|
8349 |
|
---|
8350 | /*
|
---|
8351 | * Initialize the device state.
|
---|
8352 | */
|
---|
8353 | return ataR3ResetCommon(pDevIns, true /*fConstruct*/);
|
---|
8354 | }
|
---|
8355 |
|
---|
8356 | #else /* !IN_RING3 */
|
---|
8357 |
|
---|
8358 | /**
|
---|
8359 | * @callback_method_impl{PDMDEVREGR0,pfnConstruct}
|
---|
8360 | */
|
---|
8361 | static DECLCALLBACK(int) ataRZConstruct(PPDMDEVINS pDevIns)
|
---|
8362 | {
|
---|
8363 | PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
|
---|
8364 | PATASTATE pThis = PDMDEVINS_2_DATA(pDevIns, PATASTATE);
|
---|
8365 |
|
---|
8366 | int rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns));
|
---|
8367 | AssertRCReturn(rc, rc);
|
---|
8368 |
|
---|
8369 | rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->hIoPortsBmDma, ataBMDMAIOPortWrite, ataBMDMAIOPortRead, NULL /*pvUser*/);
|
---|
8370 | AssertRCReturn(rc, rc);
|
---|
8371 |
|
---|
8372 | for (uint32_t i = 0; i < RT_ELEMENTS(pThis->aCts); i++)
|
---|
8373 | {
|
---|
8374 | if (pThis->aCts[i].hIoPorts1First != NIL_IOMIOPORTHANDLE)
|
---|
8375 | {
|
---|
8376 | rc = PDMDevHlpIoPortSetUpContextEx(pDevIns, pThis->aCts[i].hIoPorts1First,
|
---|
8377 | ataIOPortWrite1Data, ataIOPortRead1Data,
|
---|
8378 | ataIOPortWriteStr1Data, ataIOPortReadStr1Data, (RTHCPTR)(uintptr_t)i);
|
---|
8379 | AssertLogRelRCReturn(rc, rc);
|
---|
8380 | rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->aCts[i].hIoPorts1Other,
|
---|
8381 | ataIOPortWrite1Other, ataIOPortRead1Other, (RTHCPTR)(uintptr_t)i);
|
---|
8382 | AssertLogRelRCReturn(rc, rc);
|
---|
8383 | rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->aCts[i].hIoPorts2,
|
---|
8384 | ataIOPortWrite2, ataIOPortRead2, (RTHCPTR)(uintptr_t)i);
|
---|
8385 | AssertLogRelRCReturn(rc, rc);
|
---|
8386 | }
|
---|
8387 | else
|
---|
8388 | {
|
---|
8389 | rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->aCts[i].hIoPortsEmpty1,
|
---|
8390 | ataIOPortWriteEmptyBus, ataIOPortReadEmptyBus, (void *)(uintptr_t)i /*pvUser*/);
|
---|
8391 | AssertRCReturn(rc, rc);
|
---|
8392 |
|
---|
8393 | rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->aCts[i].hIoPortsEmpty2,
|
---|
8394 | ataIOPortWriteEmptyBus, ataIOPortReadEmptyBus, (void *)(uintptr_t)i /*pvUser*/);
|
---|
8395 | AssertRCReturn(rc, rc);
|
---|
8396 | }
|
---|
8397 | }
|
---|
8398 |
|
---|
8399 | return VINF_SUCCESS;
|
---|
8400 | }
|
---|
8401 |
|
---|
8402 |
|
---|
8403 | #endif /* !IN_RING3 */
|
---|
8404 |
|
---|
8405 | /**
|
---|
8406 | * The device registration structure.
|
---|
8407 | */
|
---|
8408 | const PDMDEVREG g_DevicePIIX3IDE =
|
---|
8409 | {
|
---|
8410 | /* .u32Version = */ PDM_DEVREG_VERSION,
|
---|
8411 | /* .uReserved0 = */ 0,
|
---|
8412 | /* .szName = */ "piix3ide",
|
---|
8413 | /* .fFlags = */ PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RZ | PDM_DEVREG_FLAGS_NEW_STYLE
|
---|
8414 | | PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION | PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION
|
---|
8415 | | PDM_DEVREG_FLAGS_FIRST_RESET_NOTIFICATION,
|
---|
8416 | /* .fClass = */ PDM_DEVREG_CLASS_STORAGE,
|
---|
8417 | /* .cMaxInstances = */ 1,
|
---|
8418 | /* .uSharedVersion = */ 42,
|
---|
8419 | /* .cbInstanceShared = */ sizeof(ATASTATE),
|
---|
8420 | /* .cbInstanceCC = */ sizeof(ATASTATECC),
|
---|
8421 | /* .cbInstanceRC = */ sizeof(ATASTATERC),
|
---|
8422 | /* .cMaxPciDevices = */ 1,
|
---|
8423 | /* .cMaxMsixVectors = */ 0,
|
---|
8424 | /* .pszDescription = */ "Intel PIIX3 ATA controller.\n"
|
---|
8425 | " LUN #0 is primary master.\n"
|
---|
8426 | " LUN #1 is primary slave.\n"
|
---|
8427 | " LUN #2 is secondary master.\n"
|
---|
8428 | " LUN #3 is secondary slave.\n"
|
---|
8429 | " LUN #999 is the LED/Status connector.",
|
---|
8430 | #if defined(IN_RING3)
|
---|
8431 | /* .pszRCMod = */ "VBoxDDRC.rc",
|
---|
8432 | /* .pszR0Mod = */ "VBoxDDR0.r0",
|
---|
8433 | /* .pfnConstruct = */ ataR3Construct,
|
---|
8434 | /* .pfnDestruct = */ ataR3Destruct,
|
---|
8435 | /* .pfnRelocate = */ NULL,
|
---|
8436 | /* .pfnMemSetup = */ NULL,
|
---|
8437 | /* .pfnPowerOn = */ NULL,
|
---|
8438 | /* .pfnReset = */ ataR3Reset,
|
---|
8439 | /* .pfnSuspend = */ ataR3Suspend,
|
---|
8440 | /* .pfnResume = */ ataR3Resume,
|
---|
8441 | /* .pfnAttach = */ ataR3Attach,
|
---|
8442 | /* .pfnDetach = */ ataR3Detach,
|
---|
8443 | /* .pfnQueryInterface = */ NULL,
|
---|
8444 | /* .pfnInitComplete = */ NULL,
|
---|
8445 | /* .pfnPowerOff = */ ataR3PowerOff,
|
---|
8446 | /* .pfnSoftReset = */ NULL,
|
---|
8447 | /* .pfnReserved0 = */ NULL,
|
---|
8448 | /* .pfnReserved1 = */ NULL,
|
---|
8449 | /* .pfnReserved2 = */ NULL,
|
---|
8450 | /* .pfnReserved3 = */ NULL,
|
---|
8451 | /* .pfnReserved4 = */ NULL,
|
---|
8452 | /* .pfnReserved5 = */ NULL,
|
---|
8453 | /* .pfnReserved6 = */ NULL,
|
---|
8454 | /* .pfnReserved7 = */ NULL,
|
---|
8455 | #elif defined(IN_RING0)
|
---|
8456 | /* .pfnEarlyConstruct = */ NULL,
|
---|
8457 | /* .pfnConstruct = */ ataRZConstruct,
|
---|
8458 | /* .pfnDestruct = */ NULL,
|
---|
8459 | /* .pfnFinalDestruct = */ NULL,
|
---|
8460 | /* .pfnRequest = */ NULL,
|
---|
8461 | /* .pfnReserved0 = */ NULL,
|
---|
8462 | /* .pfnReserved1 = */ NULL,
|
---|
8463 | /* .pfnReserved2 = */ NULL,
|
---|
8464 | /* .pfnReserved3 = */ NULL,
|
---|
8465 | /* .pfnReserved4 = */ NULL,
|
---|
8466 | /* .pfnReserved5 = */ NULL,
|
---|
8467 | /* .pfnReserved6 = */ NULL,
|
---|
8468 | /* .pfnReserved7 = */ NULL,
|
---|
8469 | #elif defined(IN_RC)
|
---|
8470 | /* .pfnConstruct = */ ataRZConstruct,
|
---|
8471 | /* .pfnReserved0 = */ NULL,
|
---|
8472 | /* .pfnReserved1 = */ NULL,
|
---|
8473 | /* .pfnReserved2 = */ NULL,
|
---|
8474 | /* .pfnReserved3 = */ NULL,
|
---|
8475 | /* .pfnReserved4 = */ NULL,
|
---|
8476 | /* .pfnReserved5 = */ NULL,
|
---|
8477 | /* .pfnReserved6 = */ NULL,
|
---|
8478 | /* .pfnReserved7 = */ NULL,
|
---|
8479 | #else
|
---|
8480 | # error "Not in IN_RING3, IN_RING0 or IN_RC!"
|
---|
8481 | #endif
|
---|
8482 | /* .u32VersionEnd = */ PDM_DEVREG_VERSION
|
---|
8483 | };
|
---|
8484 | #endif /* !VBOX_DEVICE_STRUCT_TESTCASE */
|
---|