VirtualBox

Ignore:
Timestamp:
Oct 29, 2015 4:30:44 AM (9 years ago)
Author:
vboxsync
Message:

EFI/Firmware: Merged in the svn:eol-style, svn:mime-type and trailing whitespace cleanup that was done after the initial UDK2014.SP1 import: svn merge /vendor/edk2/UDK2014.SP1 /vendor/edk2/current .

Location:
trunk/src/VBox/Devices/EFI/Firmware
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/Firmware

  • trunk/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/IsaAcpiDxe/PcatIsaAcpi.c

    r58459 r58466  
    4343{
    4444  return EfiLibInstallDriverBindingComponentName2 (
    45            ImageHandle, 
    46            SystemTable, 
     45           ImageHandle,
     46           SystemTable,
    4747           &gPcatIsaAcpiDriverBinding,
    4848           ImageHandle,
     
    5555  ControllerDriver Protocol Method
    5656
    57   @param This                 Driver Binding protocol instance pointer.   
     57  @param This                 Driver Binding protocol instance pointer.
    5858  @param Controller           Handle of device to test.
    5959  @param RemainingDevicePath  Optional parameter use to pick a specific child
     
    8181  //
    8282  // Get PciIo protocol instance
    83   //             
     83  //
    8484  Status = gBS->OpenProtocol (
    85                   Controller, 
    86                   &gEfiPciIoProtocolGuid, 
     85                  Controller,
     86                  &gEfiPciIoProtocolGuid,
    8787                  (VOID**)&PciIo,
    8888                  This->DriverBindingHandle,
     
    9898                    EfiPciIoWidthUint32,
    9999                    0,
    100                     sizeof(Pci) / sizeof(UINT32), 
     100                    sizeof(Pci) / sizeof(UINT32),
    101101                    &Pci);
    102102
     
    110110        if (Pci.Hdr.ClassCode[1] == PCI_CLASS_BRIDGE_ISA) {
    111111          Status = EFI_SUCCESS;
    112         } 
     112        }
    113113
    114114        //
    115115        // See if this is an Intel PCI to ISA bridge in Positive Decode Mode
    116116        //
    117         if (Pci.Hdr.ClassCode[1] == PCI_CLASS_BRIDGE_ISA_PDECODE && 
     117        if (Pci.Hdr.ClassCode[1] == PCI_CLASS_BRIDGE_ISA_PDECODE &&
    118118            Pci.Hdr.VendorId     == 0x8086                          ) {
    119119          //
    120           // See if this is on Function #0 to avoid false positives on 
    121           // PCI_CLASS_BRIDGE_OTHER that has the same value as 
     120          // See if this is on Function #0 to avoid false positives on
     121          // PCI_CLASS_BRIDGE_OTHER that has the same value as
    122122          // PCI_CLASS_BRIDGE_ISA_PDECODE
    123123          //
    124124          Status = PciIo->GetLocation (
    125                             PciIo, 
    126                             &SegmentNumber, 
    127                             &BusNumber, 
    128                             &DeviceNumber, 
     125                            PciIo,
     126                            &SegmentNumber,
     127                            &BusNumber,
     128                            &DeviceNumber,
    129129                            &FunctionNumber
    130130                            );
     
    135135          }
    136136        }
    137       } 
     137      }
    138138    }
    139139  }
    140140
    141141  gBS->CloseProtocol (
    142          Controller,       
    143          &gEfiPciIoProtocolGuid, 
    144          This->DriverBindingHandle,   
    145          Controller   
     142         Controller,
     143         &gEfiPciIoProtocolGuid,
     144         This->DriverBindingHandle,
     145         Controller
    146146         );
    147  
     147
    148148  return Status;
    149149}
     
    183183  PciIo = NULL;
    184184  Status = gBS->OpenProtocol (
    185                   Controller,       
    186                   &gEfiPciIoProtocolGuid, 
     185                  Controller,
     186                  &gEfiPciIoProtocolGuid,
    187187                  (VOID**)&PciIo,
    188                   This->DriverBindingHandle,   
    189                   Controller,   
    190                   EFI_OPEN_PROTOCOL_BY_DRIVER 
     188                  This->DriverBindingHandle,
     189                  Controller,
     190                  EFI_OPEN_PROTOCOL_BY_DRIVER
    191191                  );
    192192  if (EFI_ERROR (Status)) {
     
    211211    Status = EFI_UNSUPPORTED;
    212212    goto Done;
    213   } 
     213  }
    214214
    215215  Enabled = TRUE;
    216216  Status = PciIo->Attributes (
    217                     PciIo, 
    218                     EfiPciIoAttributeOperationEnable, 
    219                     EFI_PCI_DEVICE_ENABLE | Supports | EFI_PCI_IO_ATTRIBUTE_ISA_MOTHERBOARD_IO, 
    220                     NULL 
     217                    PciIo,
     218                    EfiPciIoAttributeOperationEnable,
     219                    EFI_PCI_DEVICE_ENABLE | Supports | EFI_PCI_IO_ATTRIBUTE_ISA_MOTHERBOARD_IO,
     220                    NULL
    221221                    );
    222222  if (EFI_ERROR (Status)) {
    223223    goto Done;
    224224  }
    225  
     225
    226226  //
    227227  // Allocate memory for the PCAT ISA ACPI Device structure
     
    248248  //
    249249  InitializePcatIsaAcpiDeviceList ();
    250  
     250
    251251  //
    252252  // IsaAcpi interface
     
    260260  (PcatIsaAcpiDev->IsaAcpi).InitDevice       = IsaInitDevice;
    261261  (PcatIsaAcpiDev->IsaAcpi).InterfaceInit    = IsaInterfaceInit;
    262    
     262
    263263  //
    264264  // Install the ISA ACPI Protocol interface
     
    274274    if (PciIo != NULL && Enabled) {
    275275      PciIo->Attributes (
    276                PciIo, 
    277                EfiPciIoAttributeOperationDisable, 
     276               PciIo,
     277               EfiPciIoAttributeOperationDisable,
    278278               EFI_PCI_DEVICE_ENABLE | Supports | EFI_PCI_IO_ATTRIBUTE_ISA_MOTHERBOARD_IO,
    279                NULL 
     279               NULL
    280280               );
    281281    }
    282282    gBS->CloseProtocol (
    283            Controller, 
    284            &gEfiPciIoProtocolGuid, 
    285            This->DriverBindingHandle, 
     283           Controller,
     284           &gEfiPciIoProtocolGuid,
     285           This->DriverBindingHandle,
    286286           Controller
    287287           );
     
    291291    return Status;
    292292  }
    293          
     293
    294294  return EFI_SUCCESS;
    295295}
     
    323323  PCAT_ISA_ACPI_DEV      *PcatIsaAcpiDev;
    324324  UINT64                 Supports;
    325  
     325
    326326  //
    327327  // Get the ISA ACPI Protocol Interface
    328   // 
     328  //
    329329  Status = gBS->OpenProtocol (
    330                   Controller, 
    331                   &gEfiIsaAcpiProtocolGuid, 
     330                  Controller,
     331                  &gEfiIsaAcpiProtocolGuid,
    332332                  (VOID**)&IsaAcpi,
    333                   This->DriverBindingHandle,   
    334                   Controller,   
     333                  This->DriverBindingHandle,
     334                  Controller,
    335335                  EFI_OPEN_PROTOCOL_GET_PROTOCOL
    336336                  );
     
    360360
    361361  PcatIsaAcpiDev->PciIo->Attributes (
    362                            PcatIsaAcpiDev->PciIo, 
    363                            EfiPciIoAttributeOperationDisable, 
     362                           PcatIsaAcpiDev->PciIo,
     363                           EfiPciIoAttributeOperationDisable,
    364364                           EFI_PCI_DEVICE_ENABLE | Supports | EFI_PCI_IO_ATTRIBUTE_ISA_MOTHERBOARD_IO,
    365                            NULL 
     365                           NULL
    366366                           );
    367  
     367
    368368  //
    369369  // Uninstall protocol interface: EFI_ISA_ACPI_PROTOCOL
     
    378378
    379379  gBS->CloseProtocol (
    380          Controller, 
    381          &gEfiPciIoProtocolGuid, 
    382          This->DriverBindingHandle, 
     380         Controller,
     381         &gEfiPciIoProtocolGuid,
     382         This->DriverBindingHandle,
    383383         Controller
    384384         );
    385  
     385
    386386  gBS->FreePool (PcatIsaAcpiDev);
    387  
     387
    388388  return EFI_SUCCESS;
    389389}
Note: See TracChangeset for help on using the changeset viewer.

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