Changeset 33540 in vbox for trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/Ata.c
r33027 r33540 30 30 @par Revision Reference: 31 31 2002-6: Add Atapi6 enhancement, support >120GB hard disk, including 32 update - ATAIdenti ty() func32 update - ATAIdentify() func 33 33 update - AtaBlockIoReadBlocks() func 34 34 update - AtaBlockIoWriteBlocks() func … … 51 51 @retval EFI_SUCCESS The disk specified by IdeDev is a Atapi6 supported one and 52 52 48-bit addressing must be used 53 @retval EFI_UNSUPPORTED The disk do sn't not support Atapi6 or it supports but the53 @retval EFI_UNSUPPORTED The disk doesn't not support Atapi6 or it supports but the 54 54 capacity is below 120G, 48bit addressing is not needed 55 55 @retval EFI_DEVICE_ERROR The identify data in IdeDev is incorrect … … 85 85 if ((Atapi6IdentifyStruct->AtapiData.cmd_set_support_83 & BIT10) == 0) { 86 86 // 87 // The device do sn't support 48 bit addressing87 // The device doesn't support 48 bit addressing 88 88 // 89 89 return EFI_UNSUPPORTED; … … 575 575 576 576 // 577 // used to record bytes of currently transfer ed data577 // used to record bytes of currently transferred data 578 578 // 579 579 WordCount = 0; … … 1141 1141 Protocol, supporting ATA/ATAPI-6 standard 1142 1142 1143 Comparing with ATA-3 data in protocol, we have two differen ts here:1143 Comparing with ATA-3 data in protocol, we have two differences here: 1144 1144 1. Do NOT wait for DRQ clear before sending command into IDE device.(the 1145 1145 wait will frequently fail... cause writing function return error) 1146 1146 1147 2. Do NOT wait for DRQ clear after all data read ed.(the wait greatly1147 2. Do NOT wait for DRQ clear after all data read.(the wait greatly 1148 1148 slow down writing performance by 100 times!) 1149 1149 … … 1154 1154 @param AtaCommand value of the Command Register 1155 1155 @param StartLba the start LBA of this transaction 1156 @param SectorCount the count of sectors to be transfer ed1156 @param SectorCount the count of sectors to be transferred 1157 1157 1158 1158 @retval EFI_SUCCESS send out the ATA command and device send required data successfully. … … 1197 1197 1198 1198 // 1199 // Wait for DRDY si ngnal asserting. ATAPI device needn't wait1199 // Wait for DRDY signal asserting. ATAPI device needn't wait 1200 1200 // 1201 1201 if ( (IdeDev->Type == IdeHardDisk) || … … 1259 1259 1260 1260 // 1261 // used to record bytes of currently transfer ed data1261 // used to record bytes of currently transferred data 1262 1262 // 1263 1263 WordCount = 0; … … 1640 1640 // 1641 1641 // SectorCount is used to record the number of sectors to be read 1642 // Max 65536 sectors can be transfer ed at a time.1642 // Max 65536 sectors can be transferred at a time. 1643 1643 // 1644 1644 NumberOfBlocks = MaxDmaCommandSectors; … … 2005 2005 // 2006 2006 // SectorCount is used to record the number of sectors to be read 2007 // Max 65536 sectors can be transfer ed at a time.2007 // Max 65536 sectors can be transferred at a time. 2008 2008 // 2009 2009 SectorCount = 0xffff; … … 2125 2125 if (IdeBlkIoDevice->Type == Ide48bitAddressingHardDisk) { 2126 2126 // 2127 // For ATA/ATAPI-6 device(cap city > 120GB), use ATA-6 read block mechanism2127 // For ATA/ATAPI-6 device(capacity > 120GB), use ATA-6 read block mechanism 2128 2128 // 2129 2129 if (IdeBlkIoDevice->UdmaMode.Valid) { … … 2155 2155 PIO Data Out Protocol, supporting ATA/ATAPI-6 standard 2156 2156 2157 Comparing with ATA-3 data out protocol, we have two differen ts here:<BR>2157 Comparing with ATA-3 data out protocol, we have two differences here:<BR> 2158 2158 1. Do NOT wait for DRQ clear before sending command into IDE device.(the 2159 2159 wait will frequently fail... cause writing function return error) 2160 2160 2161 2. Do NOT wait for DRQ clear after all data read ed.(the wait greatly2161 2. Do NOT wait for DRQ clear after all data read.(the wait greatly 2162 2162 slow down writing performance by 100 times!) 2163 2163 … … 2168 2168 @param AtaCommand value of the Command Register 2169 2169 @param StartLba the start LBA of this transaction 2170 @param SectorCount the count of sectors to be transfer ed2170 @param SectorCount the count of sectors to be transferred 2171 2171 2172 2172 @retval EFI_SUCCESS send out the ATA command and device receive required … … 2212 2212 2213 2213 // 2214 // Wait for DRDY si ngnal asserting.2214 // Wait for DRDY signal asserting. 2215 2215 // 2216 2216 Status = DRDYReady (IdeDev, ATATIMEOUT); … … 2266 2266 2267 2267 // 2268 // used to record bytes of currently transfer ed data2268 // used to record bytes of currently transferred data 2269 2269 // 2270 2270 WordCount = 0; … … 2397 2397 // 2398 2398 // SectorCount is used to record the number of sectors to be written. 2399 // Max 65536 sectors can be transfer ed at a time.2399 // Max 65536 sectors can be transferred at a time. 2400 2400 // 2401 2401 SectorCount = 0xffff; … … 2512 2512 if (IdeBlkIoDevice->Type == Ide48bitAddressingHardDisk) { 2513 2513 // 2514 // For ATA/ATAPI-6 device(cap city > 120GB), use ATA-6 write block mechanism2514 // For ATA/ATAPI-6 device(capacity > 120GB), use ATA-6 write block mechanism 2515 2515 // 2516 2516 if (IdeBlkIoDevice->UdmaMode.Valid) { -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/Atapi.c
r33027 r33540 257 257 258 258 // 259 // No data transfer is p remitted.259 // No data transfer is permitted. 260 260 // 261 261 if (ByteCount == 0) { … … 264 264 // 265 265 // for performance, we assert the ByteCount is an even number 266 // which is actually a re sonable assumption266 // which is actually a reasonable assumption 267 267 ASSERT((ByteCount%2) == 0); 268 268 … … 846 846 // 847 847 // We limit MAX sense data count to 20 in order to avoid dead loop. Some 848 // incompatible ATAPI devices don't retri ve NO_SENSE when there is no media.848 // incompatible ATAPI devices don't retrieve NO_SENSE when there is no media. 849 849 // In this case, dead loop occurs if we don't have a gatekeeper. 20 is 850 850 // supposed to be large enough for any ATAPI device. … … 1154 1154 // 1155 1155 // the Get Media Status Command is only valid 1156 // if a Set Features/Enable Media Status Command has been pr iviously issued.1156 // if a Set Features/Enable Media Status Command has been previously issued. 1157 1157 // 1158 1158 if (LS120GetMediaStatus (IdeDev) == EFI_WRITE_PROTECTED) { -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/DriverConfiguration.c
r33027 r33540 52 52 53 53 /** 54 Interpret ekeyboard input.55 56 @retval EFI_ABORTED Get an 'ESC' key input ed.57 @retval EFI_SUCCESS Get an 'Y' or 'y' input ed.58 @retval EFI_NOT_FOUND Get an 'N' or 'n' input ed..54 Interpret keyboard input. 55 56 @retval EFI_ABORTED Get an 'ESC' key inputted. 57 @retval EFI_SUCCESS Get an 'Y' or 'y' inputted. 58 @retval EFI_NOT_FOUND Get an 'N' or 'n' inputted.. 59 59 60 60 **/ -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/DriverDiagnostics.c
r33027 r33540 17 17 18 18 /** @file 19 Implementation of UEFI driver Dia lnostics protocol which to perform diagnostic on the IDE19 Implementation of UEFI driver Diagnostics protocol which to perform diagnostic on the IDE 20 20 Bus controller. 21 21 -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/Ide.c
r33114 r33540 17 17 18 18 /** @file 19 The file ontaining the helper functions implement of the Ide Bus driver19 The file containing the helper functions implement of the Ide Bus driver 20 20 21 21 Copyright (c) 2006 - 2008, Intel Corporation … … 92 92 93 93 // 94 // Prepare an 16-bit al ligned working buffer. CpuIo will return failure and94 // Prepare an 16-bit aligned working buffer. CpuIo will return failure and 95 95 // not perform actual I/O operations if buffer pointer passed in is not at 96 96 // natural boundary. The "Buffer" argument is passed in by user and may not … … 205 205 206 206 // 207 // Prepare an 16-bit al ligned working buffer. CpuIo will return failure and207 // Prepare an 16-bit aligned working buffer. CpuIo will return failure and 208 208 // not perform actual I/O operations if buffer pointer passed in is not at 209 209 // natural boundary. The "Buffer" argument is passed in by user and may not … … 291 291 @retval EFI_UNSUPPORTED return this value when the BARs is not IO type 292 292 @retval EFI_SUCCESS Get the Base address successfully 293 @retval other read the pci configur eation data error293 @retval other read the pci configuration data error 294 294 295 295 **/ … … 410 410 probably switch between native and legacy modes during the EFI->CSM->OS 411 411 transfer. We do this everytime before an BlkIo operation to ensure its 412 succe ess.412 success. 413 413 414 414 @param IdeDev The BLK_IO private data which specifies the IDE device … … 1234 1234 1235 1235 // 1236 // Release all the resour ses occupied by the IDE_BLK_IO_DEV1236 // Release all the resources occupied by the IDE_BLK_IO_DEV 1237 1237 // 1238 1238 -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/Ide.h
r33027 r33540 174 174 @retval EFI_UNSUPPORTED return this value when the BARs is not IO type 175 175 @retval EFI_SUCCESS Get the Base address successfully 176 @retval other read the pci configur eation data error176 @retval other read the pci configuration data error 177 177 178 178 **/ … … 187 187 probably switch between native and legacy modes during the EFI->CSM->OS 188 188 transfer. We do this everytime before an BlkIo operation to ensure its 189 succe ess.189 success. 190 190 191 191 @param IdeDev The BLK_IO private data which specifies the IDE device -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/IdeBus.c
r33027 r33540 31 31 32 32 @par Revision Reference: 33 This module is modified from DXE\IDE module for Ide Contr iller Init support33 This module is modified from DXE\IDE module for Ide Controller Init support 34 34 35 35 **/ … … 59 59 @param Handle Handle of device to deregister driver on 60 60 61 @retval EFI_SUCCESS Deregi ter a specific IDE device successfully61 @retval EFI_SUCCESS Deregister a specific IDE device successfully 62 62 63 63 … … 475 475 // 476 476 // If RemainingDevicePath is the End of Device Path Node, 477 // skip enumerate any device and return EFI_SUC ESSS477 // skip enumerate any device and return EFI_SUCCESS 478 478 // 479 479 BeginningIdeChannel = IdeMaxChannel; … … 744 744 745 745 // 746 // Set supported DMA mode on this IDE device. Note that UDMA & MDMA cann 't746 // Set supported DMA mode on this IDE device. Note that UDMA & MDMA cannot 747 747 // be set together. Only one DMA mode can be set to a device. If setting 748 748 // DMA mode operation fails, we can continue moving on because we only use … … 840 840 841 841 // 842 // Report status code: device e anbled!842 // Report status code: device enabled! 843 843 // 844 844 REPORT_STATUS_CODE_WITH_DEVICE_PATH ( … … 1259 1259 Flushes all modified data to a physical block devices 1260 1260 1261 @param This Indicates a pointer to the calling context which to s epcify a1262 s epcific block device1261 @param This Indicates a pointer to the calling context which to specify a 1262 specific block device 1263 1263 1264 1264 @retval EFI_SUCCESS Always return success. … … 1287 1287 @retval EFI_NOT_FOUND Device does not support this data class 1288 1288 @retval EFI_DEVICE_ERROR Error reading InquiryData from device 1289 @retval EFI_BUFFER_TOO_SMALL In tquiryDataSize not big enough1289 @retval EFI_BUFFER_TOO_SMALL InquiryDataSize not big enough 1290 1290 1291 1291 **/ … … 1418 1418 1419 1419 @param Event Pointer to this event 1420 @param Context Event han lder private data1420 @param Context Event handler private data 1421 1421 1422 1422 **/ … … 1460 1460 1461 1461 // 1462 // Get base address of IDE Bus Master Status Reg siter1462 // Get base address of IDE Bus Master Status Register 1463 1463 // 1464 1464 if (IdePrimary == IdeDev->Channel) { -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/IdeBus.h
r33027 r33540 445 445 Flushes all modified data to a physical block devices 446 446 447 @param This Indicates a pointer to the calling context which to s epcify a448 s epcific block device447 @param This Indicates a pointer to the calling context which to specify a 448 specific block device 449 449 450 450 @retval EFI_SUCCESS Always return success. … … 466 466 @retval EFI_NOT_FOUND Device does not support this data class 467 467 @retval EFI_DEVICE_ERROR Error reading InquiryData from device 468 @retval EFI_BUFFER_TOO_SMALL In tquiryDataSize not big enough468 @retval EFI_BUFFER_TOO_SMALL InquiryDataSize not big enough 469 469 470 470 **/ … … 546 546 547 547 @param Event Pointer to this event 548 @param Context Event han lder private data548 @param Context Event handler private data 549 549 550 550 **/
Note:
See TracChangeset
for help on using the changeset viewer.