diff options
author | Tom Rini <trini@konsulko.com> | 2018-10-28 09:28:26 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-10-28 09:28:26 -0400 |
commit | d735d3b6cb778012f05c2e3fca01df7f6ae6f035 (patch) | |
tree | 57ee69e6a2272c546105192a38c9389bb9999132 /arch/x86/include | |
parent | 22929e1266e9a61048bfaef381ad4fb2e2fc3ef5 (diff) | |
parent | 3d2be8003c77cad350f1ec7c79f914797718c5bf (diff) |
Merge git://git.denx.de/u-boot-x86
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/arch-baytrail/acpi/southcluster.asl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/include/asm/arch-baytrail/acpi/southcluster.asl b/arch/x86/include/asm/arch-baytrail/acpi/southcluster.asl index dfc768cf7f..2a1c31cdc4 100644 --- a/arch/x86/include/asm/arch-baytrail/acpi/southcluster.asl +++ b/arch/x86/include/asm/arch-baytrail/acpi/southcluster.asl @@ -150,9 +150,9 @@ Device (PCI0) CreateQwordField(MCRS, ^UMEM._MAX, UMAX) CreateQwordField(MCRS, ^UMEM._LEN, ULEN) - /* Set base address to 48GB and allocate 16GB for PCI space */ - Store(0xc00000000, UMIN) - Store(0x400000000, ULEN) + /* Set base address to 16GB and allocate 48GB for PCI space */ + Store(0x400000000, UMIN) + Store(0xc00000000, ULEN) Add(UMIN, Subtract(ULEN, 1), UMAX) Return (MCRS) |