mirror of https://github.com/acidanthera/audk.git
MdePkg: Clean ACPI 2.0 characters in UEFI spec
Cc: Liming Gao <liming.gao@intel.com> Cc: Star Zeng <star.zeng@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com>
This commit is contained in:
parent
28426918f0
commit
51312091b2
|
@ -2,7 +2,7 @@
|
||||||
EFI PCI I/O Protocol provides the basic Memory, I/O, PCI configuration,
|
EFI PCI I/O Protocol provides the basic Memory, I/O, PCI configuration,
|
||||||
and DMA interfaces that a driver uses to access its PCI controller.
|
and DMA interfaces that a driver uses to access its PCI controller.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -448,27 +448,26 @@ EFI_STATUS
|
||||||
OUT UINT64 *Result OPTIONAL
|
OUT UINT64 *Result OPTIONAL
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Gets the attributes that this PCI controller supports setting on a BAR using
|
Gets the attributes that this PCI controller supports setting on a BAR using
|
||||||
SetBarAttributes(), and retrieves the list of resource descriptors for a BAR.
|
SetBarAttributes(), and retrieves the list of resource descriptors for a BAR.
|
||||||
|
|
||||||
@param This A pointer to the EFI_PCI_IO_PROTOCOL instance.
|
@param This A pointer to the EFI_PCI_IO_PROTOCOL instance.
|
||||||
@param BarIndex The BAR index of the standard PCI Configuration header to use as the
|
@param BarIndex The BAR index of the standard PCI Configuration header to use as the
|
||||||
base address for resource range. The legal range for this field is 0..5.
|
base address for resource range. The legal range for this field is 0..5.
|
||||||
@param Supports A pointer to the mask of attributes that this PCI controller supports
|
@param Supports A pointer to the mask of attributes that this PCI controller supports
|
||||||
setting for this BAR with SetBarAttributes().
|
setting for this BAR with SetBarAttributes().
|
||||||
@param Resources A pointer to the ACPI 2.0 resource descriptors that describe the current
|
@param Resources A pointer to the resource descriptors that describe the current
|
||||||
configuration of this BAR of the PCI controller.
|
configuration of this BAR of the PCI controller.
|
||||||
|
|
||||||
@retval EFI_SUCCESS If Supports is not NULL, then the attributes that the PCI
|
@retval EFI_SUCCESS If Supports is not NULL, then the attributes that the PCI
|
||||||
controller supports are returned in Supports. If Resources
|
controller supports are returned in Supports. If Resources
|
||||||
is not NULL, then the ACPI 2.0 resource descriptors that the PCI
|
is not NULL, then the resource descriptors that the PCI
|
||||||
controller is currently using are returned in Resources.
|
controller is currently using are returned in Resources.
|
||||||
@retval EFI_INVALID_PARAMETER Both Supports and Attributes are NULL.
|
@retval EFI_INVALID_PARAMETER Both Supports and Attributes are NULL.
|
||||||
@retval EFI_UNSUPPORTED BarIndex not valid for this PCI controller.
|
@retval EFI_UNSUPPORTED BarIndex not valid for this PCI controller.
|
||||||
@retval EFI_OUT_OF_RESOURCES There are not enough resources available to allocate
|
@retval EFI_OUT_OF_RESOURCES There are not enough resources available to allocate
|
||||||
Resources.
|
Resources.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
and PCI Configuration cycles on a PCI Root Bridge. It also provides services to perform
|
and PCI Configuration cycles on a PCI Root Bridge. It also provides services to perform
|
||||||
defferent types of bus mastering DMA.
|
defferent types of bus mastering DMA.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -387,18 +387,18 @@ EFI_STATUS
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Retrieves the current resource settings of this PCI root bridge in the form of a set of ACPI 2.0
|
Retrieves the current resource settings of this PCI root bridge in the form of a set of ACPI
|
||||||
resource descriptors.
|
resource descriptors.
|
||||||
|
|
||||||
@param This A pointer to the EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL.
|
@param This A pointer to the EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL.
|
||||||
@param Resources A pointer to the ACPI 2.0 resource descriptors that describe the current
|
@param Resources A pointer to the resource descriptors that describe the current
|
||||||
configuration of this PCI root bridge.
|
configuration of this PCI root bridge.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The current configuration of this PCI root bridge was returned in
|
@retval EFI_SUCCESS The current configuration of this PCI root bridge was returned in
|
||||||
Resources.
|
Resources.
|
||||||
@retval EFI_UNSUPPORTED The current configuration of this PCI root bridge could not be
|
@retval EFI_UNSUPPORTED The current configuration of this PCI root bridge could not be
|
||||||
retrieved.
|
retrieved.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
|
Loading…
Reference in New Issue