summaryrefslogtreecommitdiff
path: root/.mergify
diff options
context:
space:
mode:
authorjoe <37425738+JoeLopez333@users.noreply.github.com>2023-11-07 15:48:59 -0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2024-10-25 06:21:28 +0000
commit1c0f3c3e41157a71fc206a7b3bbba752c1866dd3 (patch)
treece2f8bb0b452ea89197ca88fff61903e2402254c /.mergify
parent587518694ffefa4b2c674ef6b05ea274e6096489 (diff)
downloadedk2-1c0f3c3e41157a71fc206a7b3bbba752c1866dd3.zip
edk2-1c0f3c3e41157a71fc206a7b3bbba752c1866dd3.tar.gz
edk2-1c0f3c3e41157a71fc206a7b3bbba752c1866dd3.tar.bz2
MdeModulePkg/PciHostBridgeDxe: Add MemoryFence after write.
On AARCH64, there is no ordering guarantee between configuration space (ECAM) writes and memory space reads (MMIO). ARM AMBA CHI only guarantees ordering for reads and writes within a single address region, however, on some systems MMIO and ECAM may be split into separateaddress regions. A problem may arise when an ECAM write is issued a completion before a subsequent MMIO read is issued and receives a completion. For example, a typical PCI software flow is the following: 1. ECAM write to device command register to enable memory space 2. MMIO read from device memory space for which access was enabled in step 1. There is no guarantee that step 2. will not begin before the completion of step 1. on systems where ECAM/MMIO are specified as separate address regions, even if both spaces have the memory attributes device-nGnRnE. - Add a barrier after the final PCI Configuration space write in RootBridgeIoPciAccess. Configuration space reads should not have side-efects. - When configuration space is strongly ordered, this ensures that program execution cannot continue until the completion is received for the previous Cfg-Write, which may have side-effects. - Risk of reading a "write-only" register and causing a CA which leaves the device unresponsive. The expectation based on the PCI Base Spec v6.1 section 7.4 is that all PCI Spec-defined registers will be readable, however, there may exist design-specific registers that fall into this category. Signed-off-by: Aaron Pop <aaronpop@microsoft.com> Co-authored-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to '.mergify')
0 files changed, 0 insertions, 0 deletions