X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=IntelFrameworkModulePkg%2FBus%2FIsa%2FIsaBusDxe%2FInternalIsaBus.h;fp=IntelFrameworkModulePkg%2FBus%2FIsa%2FIsaBusDxe%2FInternalIsaBus.h;h=0aaac776bbabc6f805de4f42059c6a250ae79be7;hp=9e559da72bf2ce6e852ec66311c3ebf1f3f17a1a;hb=0a6f48249a601f88af124ae1ff6814b195b699c3;hpb=e38f26a2f7f62b69fec2d84e83bcc4b45ddefdc1 diff --git a/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/InternalIsaBus.h b/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/InternalIsaBus.h index 9e559da72b..0aaac776bb 100644 --- a/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/InternalIsaBus.h +++ b/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/InternalIsaBus.h @@ -1,7 +1,7 @@ /** @file The header file for ISA bus driver - -Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.
+ +Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -157,20 +157,20 @@ typedef struct { // EFI Driver Binding Protocol Interface Functions // -/** - Tests to see if a controller can be managed by the ISA Bus Driver. If a child device is provided, +/** + Tests to see if a controller can be managed by the ISA Bus Driver. If a child device is provided, it further tests to see if this driver supports creating a handle for the specified child device. Note that the ISA Bus driver always creates all of its child handles on the first call to Start(). How the Start() function of a driver is implemented can affect how the Supported() function is implemented. - @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance. + @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance. @param[in] Controller The handle of the controller to test. @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. - + @retval EFI_SUCCESS The device is supported by this driver. @retval EFI_ALREADY_STARTED The device is already being managed by this driver. - @retval EFI_ACCESS_DENIED The device is already being managed by a different driver + @retval EFI_ACCESS_DENIED The device is already being managed by a different driver or an application that requires exclusive access. @retval EFI_UNSUPPORTED The device is is not supported by this driver. @@ -184,24 +184,24 @@ IsaBusControllerDriverSupported ( ); /** - Start this driver on ControllerHandle. - + Start this driver on ControllerHandle. + Note that the ISA Bus driver always creates all of its child handles on the first call to Start(). - The Start() function is designed to be invoked from the EFI boot service ConnectController(). - As a result, much of the error checking on the parameters to Start() has been moved into this - common boot service. It is legal to call Start() from other locations, but the following calling + The Start() function is designed to be invoked from the EFI boot service ConnectController(). + As a result, much of the error checking on the parameters to Start() has been moved into this + common boot service. It is legal to call Start() from other locations, but the following calling restrictions must be followed or the system behavior will not be deterministic. 1. ControllerHandle must be a valid EFI_HANDLE. 2. If RemainingDevicePath is not NULL, then it must be a pointer to a naturally aligned EFI_DEVICE_PATH_PROTOCOL. 3. Prior to calling Start(), the Supported() function for the driver specified by This must - have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS. + have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS. @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance. - @param[in] ControllerHandle The handle of the controller to start. This handle - must support a protocol interface that supplies + @param[in] ControllerHandle The handle of the controller to start. This handle + must support a protocol interface that supplies an I/O abstraction to the driver. - @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. + @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This parameter is ignored by device drivers, and is optional for bus drivers. @retval EFI_SUCCESS The device was started. @@ -219,11 +219,11 @@ IsaBusControllerDriverStart ( ); /** - Stop this driver on ControllerHandle. - - The Stop() function is designed to be invoked from the EFI boot service DisconnectController(). - As a result, much of the error checking on the parameters to Stop() has been moved - into this common boot service. It is legal to call Stop() from other locations, + Stop this driver on ControllerHandle. + + The Stop() function is designed to be invoked from the EFI boot service DisconnectController(). + As a result, much of the error checking on the parameters to Stop() has been moved + into this common boot service. It is legal to call Stop() from other locations, but the following calling restrictions must be followed or the system behavior will not be deterministic. 1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this same driver's Start() function. @@ -231,13 +231,13 @@ IsaBusControllerDriverStart ( EFI_HANDLE. In addition, all of these handles must have been created in this driver's Start() function, and the Start() function must have called OpenProtocol() on ControllerHandle with an Attribute of EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER. - + @param[in] This A pointer to the EFI_DRIVER_BINDING_PROTOCOL instance. - @param[in] ControllerHandle A handle to the device being stopped. The handle must - support a bus specific I/O protocol for the driver + @param[in] ControllerHandle A handle to the device being stopped. The handle must + support a bus specific I/O protocol for the driver to use to stop the device. @param[in] NumberOfChildren The number of child device handles in ChildHandleBuffer. - @param[in] ChildHandleBuffer An array of child handles to be freed. May be NULL + @param[in] ChildHandleBuffer An array of child handles to be freed. May be NULL if NumberOfChildren is 0. @retval EFI_SUCCESS The device was stopped. @@ -257,11 +257,11 @@ IsaBusControllerDriverStop ( // /** - Create EFI Handle for a ISA device found via ISA ACPI Protocol + Create EFI Handle for a ISA device found via ISA ACPI Protocol @param[in] This The EFI_DRIVER_BINDING_PROTOCOL instance. @param[in] Controller The handle of ISA bus controller(PCI to ISA bridge) - @param[in] PciIo The Pointer to the PCI protocol + @param[in] PciIo The Pointer to the PCI protocol @param[in] ParentDevicePath Device path of the ISA bus controller @param[in] IsaDeviceResourceList The resource list of the ISA device @param[out] ChildDevicePath The pointer to the child device. @@ -285,7 +285,7 @@ IsaCreateDevice ( @param[in] IsaIoDevice The iso device to be initialized. @param[in] IsaDeviceResourceList The resource list. - + **/ VOID InitializeIsaIoInstance (