diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2019-05-09 20:42:03 -0700 |
---|---|---|
committer | Michael D Kinney <michael.d.kinney@intel.com> | 2019-05-13 15:30:42 -0700 |
commit | 5347c48016f27061475fdb053e867a06ce73492f (patch) | |
tree | df7f0a2746d0f2ef4727a122614b7e6a0a8074a5 /Vlv2DeviceRefCodePkg/AcpiTablesPCAT/PCI_DRC.ASL | |
parent | 96ef5a8e30a8da33eaab09f13cc8d752342717a5 (diff) | |
download | edk2-5347c48016f27061475fdb053e867a06ce73492f.zip edk2-5347c48016f27061475fdb053e867a06ce73492f.tar.gz edk2-5347c48016f27061475fdb053e867a06ce73492f.tar.bz2 |
edk2: Remove packages moved to edk2-platforms
https://bugzilla.tianocore.org/show_bug.cgi?id=1467
https://bugzilla.tianocore.org/show_bug.cgi?id=1374
https://bugzilla.tianocore.org/show_bug.cgi?id=1793
Remove the following packages that have been imported to
edk2-platforms/master
* Omap35xxPkg
* BeagleBoardPkg
* QuarkSocPkg
* QuarkPlatformPkg
* Vlv2DeviceRefCodePkg
* Vlv2TbltDevicePkg
* OptionRomPkg
Cc: Zailiang Sun <zailiang.sun@intel.com>
Cc: Yi Qian <yi.qian@intel.com>
Cc: Kelly Steele <kelly.steele@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Michael Kubacki <michael.a.kubacki@intel.com>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Reviewed-by: Michael Kubacki <michael.a.kubacki@intel.com>
Reviewed-by: Ray Ni <ray.ni@intel.com>
Reviewed-by: Zailiang Sun <zailiang.sun@intel.com>
Reviewed-by: Kelly Steele <kelly.steele@intel.com>
Diffstat (limited to 'Vlv2DeviceRefCodePkg/AcpiTablesPCAT/PCI_DRC.ASL')
-rw-r--r-- | Vlv2DeviceRefCodePkg/AcpiTablesPCAT/PCI_DRC.ASL | 90 |
1 files changed, 0 insertions, 90 deletions
diff --git a/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/PCI_DRC.ASL b/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/PCI_DRC.ASL deleted file mode 100644 index a475040..0000000 --- a/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/PCI_DRC.ASL +++ /dev/null @@ -1,90 +0,0 @@ -/**************************************************************************;
-;* *;
-;* *;
-;* Intel Corporation - ACPI Reference Code for the Baytrail *;
-;* Family of Customer Reference Boards. *;
-;* *;
-;* *;
-;* Copyright (c) 2012 - 2014, Intel Corporation. All rights reserved *;
-;
-; SPDX-License-Identifier: BSD-2-Clause-Patent
-;
-;* *;
-;* *;
-;**************************************************************************/
-
-
-
-Scope (\_SB.PCI0)
-{
-
- Device(PDRC) // PCI Device Resource Consumption
- {
- Name(_HID,EISAID("PNP0C02"))
-
- Name(_UID,1)
-
- Name(BUF0,ResourceTemplate()
- {
- //
- // PCI Express BAR _BAS and _LEN will be updated in _CRS below according to B0:D0:F0:Reg.60h
- // Forced hard code at the moment.
- //
- //Memory32Fixed(ReadWrite,0,0,PCIX) // PCIEX BAR
- Memory32Fixed(ReadWrite,0x0E0000000,0x010000000,PCIX)
-
- //
- // SPI BAR. Check if the hard code meets the real configuration.
- // If not, dynamically update it like the _CRS method below.
- //
- Memory32Fixed(ReadWrite,0x0FED01000,0x01000,SPIB) // SPI BAR
-
- //
- // PMC BAR. Check if the hard code meets the real configuration.
- // If not, dynamically update it like the _CRS method below.
- //
- Memory32Fixed(ReadWrite,0x0FED03000,0x01000,PMCB) // PMC BAR
-
- //
- // SMB BAR. Check if the hard code meets the real configuration.
- // If not, dynamically update it like the _CRS method below.
- //
- Memory32Fixed(ReadWrite,0x0FED04000,0x01000,SMBB) // SMB BAR
-
- //
- // IO BAR. Check if the hard code meets the real configuration.
- // If not, dynamically update it like the _CRS method below.
- //
- Memory32Fixed(ReadWrite,0x0FED0C000,0x04000,IOBR) // IO BAR
-
- //
- // ILB BAR. Check if the hard code meets the real configuration.
- // If not, dynamically update it like the _CRS method below.
- //
- Memory32Fixed(ReadWrite,0x0FED08000,0x01000,ILBB) // ILB BAR
-
- //
- // RCRB BAR _BAS will be updated in _CRS below according to B0:D31:F0:Reg.F0h
- //
- Memory32Fixed(ReadWrite,0x0FED1C000,0x01000,RCRB) // RCRB BAR
-
- //
- // Local APIC range(0xFEE0_0000 to 0xFEEF_FFFF)
- //
- Memory32Fixed (ReadOnly, 0x0FEE00000, 0x0100000, LIOH)
-
- //
- // MPHY BAR. Check if the hard code meets the real configuration.
- // If not, dynamically update it like the _CRS method below.
- //
- Memory32Fixed(ReadWrite,0x0FEF00000,0x0100000,MPHB) // MPHY BAR
- })
-
- Method(_CRS,0,Serialized)
- {
-
- Return(BUF0)
- }
-
- }
-}
|