diff options
author | Laszlo Ersek <lersek@redhat.com> | 2016-03-18 21:22:02 +0100 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2016-03-25 10:52:35 +0100 |
commit | 53632cea0cd2da42bb77e832060859a8b2504ed1 (patch) | |
tree | 83f14b1a42a5e2702c6af654aa658c9533a8bfd5 /QuarkSocPkg/QuarkNorthCluster | |
parent | 025bf7bbde75639d5f761a5826dd852ca6a75d8d (diff) | |
download | edk2-53632cea0cd2da42bb77e832060859a8b2504ed1.tar.gz edk2-53632cea0cd2da42bb77e832060859a8b2504ed1.tar.bz2 edk2-53632cea0cd2da42bb77e832060859a8b2504ed1.zip |
QuarkSocPkg: IntelQNCLib: remove set but unused variables
This patch also removes a few PCI config space accesses, but that
shouldn't be a problem.
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Kelly Steele <kelly.steele@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
Diffstat (limited to 'QuarkSocPkg/QuarkNorthCluster')
-rw-r--r-- | QuarkSocPkg/QuarkNorthCluster/Library/IntelQNCLib/PciExpress.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/QuarkSocPkg/QuarkNorthCluster/Library/IntelQNCLib/PciExpress.c b/QuarkSocPkg/QuarkNorthCluster/Library/IntelQNCLib/PciExpress.c index 5cb0fb8554..4b6f7ba773 100644 --- a/QuarkSocPkg/QuarkNorthCluster/Library/IntelQNCLib/PciExpress.c +++ b/QuarkSocPkg/QuarkNorthCluster/Library/IntelQNCLib/PciExpress.c @@ -403,9 +403,6 @@ PcieSetAspmAuto ( UINT32 EndpointPcieCapOffset;
UINT16 RootPortAspm;
UINT16 EndPointAspm;
- UINT16 EndPointVendorId;
- UINT16 EndPointDeviceId;
- UINT8 EndPointRevId;
UINT16 AspmVal;
UINT32 PortLxLat;
UINT32 EndPointLxLat;
@@ -438,14 +435,10 @@ PcieSetAspmAuto ( EndPointAspm = (QNCMmPci16 (0, EndpointBus, EndpointDevice, EndpointFunction, (EndpointPcieCapOffset + PCIE_LINK_CAP_OFFSET)) & B_QNC_PCIE_LCAP_APMS_MASK) >> V_QNC_PCIE_LCAP_APMS_OFFSET;
//
- // Mask APMC with values from lookup table.
+ // TODO: Mask APMC with values from lookup table.
// RevID of 0xFF applies to all steppings.
//
- EndPointVendorId = QNCMmPci16 (0, EndpointBus, EndpointDevice, EndpointFunction, 0);
- EndPointDeviceId = QNCMmPci16 (0, EndpointBus, EndpointDevice, EndpointFunction, 2);
- EndPointRevId = QNCMmPci8 (0, EndpointBus, EndpointDevice, EndpointFunction, 8);
-
// TODO: Mask with latency/acceptable latency comparison results.
AspmVal = RootPortAspm;
@@ -585,7 +578,6 @@ QNCRootPortInit ( {
UINT64 RPBase;
UINT64 EndPointBase;
- UINT64 LpcBase;
UINT16 AspmVal;
UINT16 SlotStatus;
UINTN Index;
@@ -593,7 +585,6 @@ QNCRootPortInit ( UINT32 DwordReg;
RPBase = PciExpressBar + (((PCI_BUS_NUMBER_QNC << 8) + ((PCI_DEVICE_NUMBER_PCIE_ROOTPORT) << 3) + ((PCI_FUNCTION_NUMBER_PCIE_ROOTPORT_0 + RootPortIndex) << 0)) << 12);
- LpcBase = PciExpressBar + (((PCI_BUS_NUMBER_QNC << 8) + (31 << 3) + (0 << 0)) << 12);
CapOffset = PcieFindCapId (PCI_BUS_NUMBER_QNC, (UINT8)(PCI_DEVICE_NUMBER_PCIE_ROOTPORT), (UINT8)(PCI_FUNCTION_NUMBER_PCIE_ROOTPORT_0 + RootPortIndex), PCIE_CAPID);
if (CapOffset == 0) {
@@ -906,7 +897,6 @@ PciExpressInit ( {
UINT64 PciExpressBar;
UINT32 QNCRootComplexBar;
- UINT32 QNCGpioBase;
UINT32 QNCPmioBase;
UINT32 QNCGpeBase;
UINTN RpEnableMask;
@@ -917,7 +907,6 @@ PciExpressInit ( // Get BAR registers
//
QNCRootComplexBar = QNC_RCRB_BASE;
- QNCGpioBase = LpcPciCfg32 (R_QNC_LPC_GBA_BASE) & B_QNC_LPC_GPA_BASE_MASK;
QNCPmioBase = LpcPciCfg32 (R_QNC_LPC_PM1BLK) & B_QNC_LPC_PM1BLK_MASK;
QNCGpeBase = LpcPciCfg32 (R_QNC_LPC_GPE0BLK) & B_QNC_LPC_GPE0BLK_MASK;
RpEnableMask = 0; // assume all root ports are disabled
|