VirtualBox

Ignore:
Timestamp:
Oct 28, 2010 9:27:05 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
67140
Message:

*: spelling fixes, thanks Timeless!

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  
    3030  @par Revision Reference:
    3131  2002-6: Add Atapi6 enhancement, support >120GB hard disk, including
    32   update - ATAIdentity() func
     32  update - ATAIdentify() func
    3333  update - AtaBlockIoReadBlocks() func
    3434  update - AtaBlockIoWriteBlocks() func
     
    5151  @retval EFI_SUCCESS       The disk specified by IdeDev is a Atapi6 supported one and
    5252                            48-bit addressing must be used
    53   @retval EFI_UNSUPPORTED   The disk dosn't not support Atapi6 or it supports but the
     53  @retval EFI_UNSUPPORTED   The disk doesn't not support Atapi6 or it supports but the
    5454                            capacity is below 120G, 48bit addressing is not needed
    5555  @retval  EFI_DEVICE_ERROR      The identify data in IdeDev is incorrect
     
    8585  if ((Atapi6IdentifyStruct->AtapiData.cmd_set_support_83 & BIT10) == 0) {
    8686    //
    87     // The device dosn't support 48 bit addressing
     87    // The device doesn't support 48 bit addressing
    8888    //
    8989    return EFI_UNSUPPORTED;
     
    575575
    576576  //
    577   // used to record bytes of currently transfered data
     577  // used to record bytes of currently transferred data
    578578  //
    579579  WordCount = 0;
     
    11411141  Protocol, supporting ATA/ATAPI-6 standard
    11421142
    1143   Comparing with ATA-3 data in protocol, we have two differents here:
     1143  Comparing with ATA-3 data in protocol, we have two differences here:
    11441144  1. Do NOT wait for DRQ clear before sending command into IDE device.(the
    11451145  wait will frequently fail... cause writing function return error)
    11461146
    1147   2. Do NOT wait for DRQ clear after all data readed.(the wait greatly
     1147  2. Do NOT wait for DRQ clear after all data read.(the wait greatly
    11481148  slow down writing performance by 100 times!)
    11491149
     
    11541154  @param AtaCommand   value of the Command Register
    11551155  @param StartLba     the start LBA of this transaction
    1156   @param SectorCount  the count of sectors to be transfered
     1156  @param SectorCount  the count of sectors to be transferred
    11571157
    11581158  @retval EFI_SUCCESS      send out the ATA command and device send required data successfully.
     
    11971197
    11981198  //
    1199   // Wait for DRDY singnal asserting. ATAPI device needn't wait
     1199  // Wait for DRDY signal asserting. ATAPI device needn't wait
    12001200  //
    12011201  if ( (IdeDev->Type == IdeHardDisk)  ||
     
    12591259
    12601260  //
    1261   // used to record bytes of currently transfered data
     1261  // used to record bytes of currently transferred data
    12621262  //
    12631263  WordCount = 0;
     
    16401640      //
    16411641      //  SectorCount is used to record the number of sectors to be read
    1642       //  Max 65536 sectors can be transfered at a time.
     1642      //  Max 65536 sectors can be transferred at a time.
    16431643      //
    16441644      NumberOfBlocks = MaxDmaCommandSectors;
     
    20052005      //
    20062006      //  SectorCount is used to record the number of sectors to be read
    2007       //  Max 65536 sectors can be transfered at a time.
     2007      //  Max 65536 sectors can be transferred at a time.
    20082008      //
    20092009      SectorCount = 0xffff;
     
    21252125  if (IdeBlkIoDevice->Type == Ide48bitAddressingHardDisk) {
    21262126    //
    2127     // For ATA/ATAPI-6 device(capcity > 120GB), use ATA-6 read block mechanism
     2127    // For ATA/ATAPI-6 device(capacity > 120GB), use ATA-6 read block mechanism
    21282128    //
    21292129    if (IdeBlkIoDevice->UdmaMode.Valid) {
     
    21552155  PIO Data Out Protocol, supporting ATA/ATAPI-6 standard
    21562156
    2157   Comparing with ATA-3 data out protocol, we have two differents here:<BR>
     2157  Comparing with ATA-3 data out protocol, we have two differences here:<BR>
    21582158  1. Do NOT wait for DRQ clear before sending command into IDE device.(the
    21592159  wait will frequently fail... cause writing function return error)
    21602160
    2161   2. Do NOT wait for DRQ clear after all data readed.(the wait greatly
     2161  2. Do NOT wait for DRQ clear after all data read.(the wait greatly
    21622162  slow down writing performance by 100 times!)
    21632163
     
    21682168  @param AtaCommand   value of the Command Register
    21692169  @param StartLba     the start LBA of this transaction
    2170   @param SectorCount  the count of sectors to be transfered
     2170  @param SectorCount  the count of sectors to be transferred
    21712171
    21722172  @retval EFI_SUCCESS      send out the ATA command and device receive required
     
    22122212
    22132213  //
    2214   // Wait for DRDY singnal asserting.
     2214  // Wait for DRDY signal asserting.
    22152215  //
    22162216  Status = DRDYReady (IdeDev, ATATIMEOUT);
     
    22662266
    22672267  //
    2268   // used to record bytes of currently transfered data
     2268  // used to record bytes of currently transferred data
    22692269  //
    22702270  WordCount = 0;
     
    23972397      //
    23982398      //  SectorCount is used to record the number of sectors to be written.
    2399       //  Max 65536 sectors can be transfered at a time.
     2399      //  Max 65536 sectors can be transferred at a time.
    24002400      //
    24012401      SectorCount = 0xffff;
     
    25122512  if (IdeBlkIoDevice->Type == Ide48bitAddressingHardDisk) {
    25132513    //
    2514     // For ATA/ATAPI-6 device(capcity > 120GB), use ATA-6 write block mechanism
     2514    // For ATA/ATAPI-6 device(capacity > 120GB), use ATA-6 write block mechanism
    25152515    //
    25162516    if (IdeBlkIoDevice->UdmaMode.Valid) {
  • trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/Atapi.c

    r33027 r33540  
    257257
    258258  //
    259   // No data transfer is premitted.
     259  // No data transfer is permitted.
    260260  //
    261261  if (ByteCount == 0) {
     
    264264  //
    265265  // for performance, we assert the ByteCount is an even number
    266   // which is actually a resonable assumption 
     266  // which is actually a reasonable assumption 
    267267  ASSERT((ByteCount%2) == 0);
    268268 
     
    846846    //
    847847    // We limit MAX sense data count to 20 in order to avoid dead loop. Some
    848     // incompatible ATAPI devices don't retrive NO_SENSE when there is no media.
     848    // incompatible ATAPI devices don't retrieve NO_SENSE when there is no media.
    849849    // In this case, dead loop occurs if we don't have a gatekeeper. 20 is
    850850    // supposed to be large enough for any ATAPI device.
     
    11541154  //
    11551155  // the Get Media Status Command is only valid
    1156   // if a Set Features/Enable Media Status Command has been priviously issued.
     1156  // if a Set Features/Enable Media Status Command has been previously issued.
    11571157  //
    11581158  if (LS120GetMediaStatus (IdeDev) == EFI_WRITE_PROTECTED) {
  • trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/DriverConfiguration.c

    r33027 r33540  
    5252
    5353/**
    54   Interprete keyboard input.
    55 
    56   @retval  EFI_ABORTED  Get an 'ESC' key inputed.
    57   @retval  EFI_SUCCESS  Get an 'Y' or 'y' inputed.
    58   @retval  EFI_NOT_FOUND Get an 'N' or 'n' inputed..
     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..
    5959
    6060**/
  • trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/DriverDiagnostics.c

    r33027 r33540  
    1717
    1818/** @file
    19   Implementation of UEFI driver Dialnostics protocol which to perform diagnostic on the IDE
     19  Implementation of UEFI driver Diagnostics protocol which to perform diagnostic on the IDE
    2020  Bus controller.
    2121 
  • trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/Ide.c

    r33114 r33540  
    1717
    1818/** @file
    19   The file ontaining the helper functions implement of the Ide Bus driver
     19  The file containing the helper functions implement of the Ide Bus driver
    2020 
    2121  Copyright (c) 2006 - 2008, Intel Corporation
     
    9292
    9393  //
    94   // Prepare an 16-bit alligned working buffer. CpuIo will return failure and
     94  // Prepare an 16-bit aligned working buffer. CpuIo will return failure and
    9595  // not perform actual I/O operations if buffer pointer passed in is not at
    9696  // natural boundary. The "Buffer" argument is passed in by user and may not
     
    205205
    206206  //
    207   // Prepare an 16-bit alligned working buffer. CpuIo will return failure and
     207  // Prepare an 16-bit aligned working buffer. CpuIo will return failure and
    208208  // not perform actual I/O operations if buffer pointer passed in is not at
    209209  // natural boundary. The "Buffer" argument is passed in by user and may not
     
    291291  @retval EFI_UNSUPPORTED return this value when the BARs is not IO type
    292292  @retval EFI_SUCCESS     Get the Base address successfully
    293   @retval other           read the pci configureation data error
     293  @retval other           read the pci configuration data error
    294294
    295295**/
     
    410410  probably switch between native and legacy modes during the EFI->CSM->OS
    411411  transfer. We do this everytime before an BlkIo operation to ensure its
    412   succeess.
     412  success.
    413413
    414414  @param  IdeDev The BLK_IO private data which specifies the IDE device
     
    12341234
    12351235  //
    1236   // Release all the resourses occupied by the IDE_BLK_IO_DEV
     1236  // Release all the resources occupied by the IDE_BLK_IO_DEV
    12371237  //
    12381238
  • trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/Ide.h

    r33027 r33540  
    174174  @retval EFI_UNSUPPORTED return this value when the BARs is not IO type
    175175  @retval EFI_SUCCESS     Get the Base address successfully
    176   @retval other           read the pci configureation data error
     176  @retval other           read the pci configuration data error
    177177
    178178**/
     
    187187  probably switch between native and legacy modes during the EFI->CSM->OS
    188188  transfer. We do this everytime before an BlkIo operation to ensure its
    189   succeess.
     189  success.
    190190
    191191  @param  IdeDev The BLK_IO private data which specifies the IDE device
  • trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/IdeBus.c

    r33027 r33540  
    3131
    3232  @par Revision Reference:
    33   This module is modified from DXE\IDE module for Ide Contriller Init support
     33  This module is modified from DXE\IDE module for Ide Controller Init support
    3434
    3535**/
     
    5959  @param  Handle Handle of device to deregister driver on
    6060
    61   @retval EFI_SUCCESS  Deregiter a specific IDE device successfully
     61  @retval EFI_SUCCESS  Deregister a specific IDE device successfully
    6262
    6363
     
    475475    //
    476476    // If RemainingDevicePath is the End of Device Path Node,
    477     // skip enumerate any device and return EFI_SUCESSS
     477    // skip enumerate any device and return EFI_SUCCESS
    478478    //
    479479    BeginningIdeChannel = IdeMaxChannel;
     
    744744
    745745      //
    746       // Set supported DMA mode on this IDE device. Note that UDMA & MDMA cann't
     746      // Set supported DMA mode on this IDE device. Note that UDMA & MDMA cannot
    747747      // be set together. Only one DMA mode can be set to a device. If setting
    748748      // DMA mode operation fails, we can continue moving on because we only use
     
    840840
    841841      //
    842       // Report status code: device eanbled!
     842      // Report status code: device enabled!
    843843      //
    844844      REPORT_STATUS_CODE_WITH_DEVICE_PATH (
     
    12591259  Flushes all modified data to a physical block devices
    12601260
    1261   @param  This  Indicates a pointer to the calling context which to sepcify a
    1262                 sepcific block device
     1261  @param  This  Indicates a pointer to the calling context which to specify a
     1262                specific block device
    12631263
    12641264  @retval EFI_SUCCESS   Always return success.
     
    12871287  @retval EFI_NOT_FOUND         Device does not support this data class
    12881288  @retval EFI_DEVICE_ERROR      Error reading InquiryData from device
    1289   @retval EFI_BUFFER_TOO_SMALL  IntquiryDataSize not big enough
     1289  @retval EFI_BUFFER_TOO_SMALL  InquiryDataSize not big enough
    12901290
    12911291**/
     
    14181418
    14191419  @param  Event   Pointer to this event
    1420   @param  Context Event hanlder private data
     1420  @param  Context Event handler private data
    14211421
    14221422**/
     
    14601460
    14611461  //
    1462   // Get base address of IDE Bus Master Status Regsiter
     1462  // Get base address of IDE Bus Master Status Register
    14631463  //
    14641464  if (IdePrimary == IdeDev->Channel) {
  • trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxIdeBusDxe/IdeBus.h

    r33027 r33540  
    445445  Flushes all modified data to a physical block devices
    446446
    447   @param  This  Indicates a pointer to the calling context which to sepcify a
    448                 sepcific block device
     447  @param  This  Indicates a pointer to the calling context which to specify a
     448                specific block device
    449449
    450450  @retval EFI_SUCCESS   Always return success.
     
    466466  @retval EFI_NOT_FOUND         Device does not support this data class
    467467  @retval EFI_DEVICE_ERROR      Error reading InquiryData from device
    468   @retval EFI_BUFFER_TOO_SMALL  IntquiryDataSize not big enough
     468  @retval EFI_BUFFER_TOO_SMALL  InquiryDataSize not big enough
    469469
    470470**/
     
    546546
    547547  @param  Event   Pointer to this event
    548   @param  Context Event hanlder private data
     548  @param  Context Event handler private data
    549549
    550550**/
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette