aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2014-12-14 10:04:40 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2014-12-20 07:17:48 +0100
commit5b7e54306a2d28297baf0db78c30a34627a95038 (patch)
tree58b0416a223fa5ed61b07d05d7bde0fcce94eba3 /src
parent24e31e28c4df0cde4a35ccbed50e21e7da466ad6 (diff)
amd/torpedo: Drop unused code in agesawrapper
Change-Id: I4c7fdfb64689cc8ba7e00bd7966d5c5857baf7c3 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/7814 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src')
-rw-r--r--src/northbridge/amd/agesa/family12/agesawrapper.c79
1 files changed, 0 insertions, 79 deletions
diff --git a/src/northbridge/amd/agesa/family12/agesawrapper.c b/src/northbridge/amd/agesa/family12/agesawrapper.c
index d2aa3305f1..f6ae45c3f1 100644
--- a/src/northbridge/amd/agesa/family12/agesawrapper.c
+++ b/src/northbridge/amd/agesa/family12/agesawrapper.c
@@ -33,8 +33,6 @@
#include "Filecode.h"
#include <arch/io.h>
-#include <southbridge/amd/cimx/sb900/gpio_oem.h>
-
#define FILECODE UNASSIGNED_FILE_FILECODE
/* ACPI table pointers returned by AmdInitLate */
@@ -47,79 +45,6 @@ VOID *AcpiWheaMce = NULL;
VOID *AcpiWheaCmc = NULL;
VOID *AcpiAlib = NULL;
-UINT32 ReadAmdSbPmr(IN UINT8 IndexValue, OUT UINT8 * DataValue);
-UINT32 WriteAmdSbPmr(IN UINT8 IndexValue, IN UINT8 DataValue);
-
-VOID ClearSBSmiAndWake(IN UINT16 PmBase);
-
-VOID ClearAllSmiEnableInPmio(VOID);
-
-/* Read SB Power Management Area */
-UINT32 ReadAmdSbPmr(IN UINT8 IndexValue, OUT UINT8 * DataValue)
-{
- WriteIo8(SB_PM_INDEX_PORT, IndexValue);
- *DataValue = ReadIo8(SB_PM_DATA_PORT);
- return 0;
-}
-
-/* Write ATI SB Power Management Area */
-UINT32 WriteAmdSbPmr(IN UINT8 IndexValue, IN UINT8 DataValue)
-{
- WriteIo8(SB_PM_INDEX_PORT, IndexValue);
- WriteIo8(SB_PM_DATA_PORT, DataValue);
- return 0;
-}
-
-/* Clear any SMI status or wake status left over from boot. */
-VOID ClearSBSmiAndWake(IN UINT16 PmBase)
-{
- UINT16 Pm1Sts;
- UINT32 Pm1Cnt;
- UINT32 Gpe0Sts;
-
- /* Read the ACPI registers */
- Pm1Sts = ReadIo16(PmBase + R_SB_ACPI_PM1_STATUS);
- Pm1Cnt = ReadIo32(PmBase + R_SB_ACPI_PM1_STATUS);
- Gpe0Sts = ReadIo32(PmBase + R_SB_ACPI_EVENT_STATUS);
-
- /* Clear any SMI or wake state from the boot */
- Pm1Sts &= B_PWR_BTN_STATUS + B_WAKEUP_STATUS;
- Pm1Cnt &= ~(B_SCI_EN);
-
- /* Write back */
- WriteIo16(PmBase + R_SB_ACPI_PM1_STATUS, Pm1Sts);
- WriteIo32(PmBase + R_SB_ACPI_PM_CONTROL, Pm1Cnt);
- WriteIo32(PmBase + R_SB_ACPI_EVENT_STATUS, Gpe0Sts);
-}
-
-/* Clear all SMI enable bit in PMIO register */
-VOID ClearAllSmiEnableInPmio(VOID)
-{
- UINT32 AcpiMmioAddr;
- UINT32 SmiMmioAddr;
- UINT8 Data8 = 0;
- UINT16 Data16 = 0;
-
- /* Get SB900 MMIO Base (AcpiMmioAddr) */
- ReadAmdSbPmr(SB_PMIOA_REG24 + 3, &Data8);
- Data16 = Data8 << 8;
- ReadAmdSbPmr(SB_PMIOA_REG24 + 2, &Data8);
- Data16 |= Data8;
- AcpiMmioAddr = (UINT32) Data16 << 16;
- SmiMmioAddr = AcpiMmioAddr + SMI_BASE;
-
- Mmio32(SmiMmioAddr, 0xA0) = 0x0;
- Mmio32(SmiMmioAddr, 0xA4) = 0x0;
- Mmio32(SmiMmioAddr, 0xA8) = 0x0;
- Mmio32(SmiMmioAddr, 0xAC) = 0x0;
- Mmio32(SmiMmioAddr, 0xB0) = 0x0;
- Mmio32(SmiMmioAddr, 0xB4) = 0x0;
- Mmio32(SmiMmioAddr, 0xB8) = 0x0;
- Mmio32(SmiMmioAddr, 0xBC) = 0x0;
- Mmio32(SmiMmioAddr, 0xC0) = 0x0;
- Mmio32(SmiMmioAddr, 0xC4) = 0x0;
-}
-
AGESA_STATUS agesawrapper_amdinitcpuio(VOID)
{
UINT64 MsrReg;
@@ -210,10 +135,6 @@ AGESA_STATUS agesawrapper_amdinitmmio(VOID)
MsrReg = ((1ULL << CONFIG_CPU_ADDR_BITS) - CACHE_ROM_SIZE) | 0x800ull;
LibAmdMsrWrite(0x20D, &MsrReg, &StdHeader);
- /* Clear all pending SMI. On S3 clear power button enable so it wll not generate an SMI */
-//- ClearSBSmiAndWake (SB_ACPI_BASE_ADDRESS);
-//- ClearAllSmiEnableInPmio ();
-
return AGESA_SUCCESS;
}