mb/*/{x201,packardbell}: Remove unused C-state generation functions

Those are copied from Lenovo X60 code, but are unused.
NOTE: No ACPI C-state are generated on this platform but Linux has a
separate driver for that.

Change-Id: Ie9b49f5451d8cde9c36672cac1f0f14cb3f0095e
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33140
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Arthur Heymans 2019-05-28 10:04:20 +02:00 committed by Patrick Georgi
parent 04326aabcd
commit 4c0d5cbb87
2 changed files with 0 additions and 28 deletions

View File

@ -28,19 +28,6 @@
#include <cpu/x86/lapic.h>
#include <device/pci_ops.h>
#include <drivers/lenovo/lenovo.h>
#include <arch/acpigen.h>
static acpi_cstate_t cst_entries[] = {
{1, 1, 1000, {0x7f, 1, 2, 0, 1, 0} },
{2, 1, 500, {0x01, 8, 0, 0, DEFAULT_PMBASE + LV2, 0} },
{2, 17, 250, {0x01, 8, 0, 0, DEFAULT_PMBASE + LV3, 0} },
};
int get_cst_entries(acpi_cstate_t **entries)
{
*entries = cst_entries;
return ARRAY_SIZE(cst_entries);
}
static void mainboard_init(struct device *dev)
{

View File

@ -24,7 +24,6 @@
#include <northbridge/intel/nehalem/nehalem.h>
#include <southbridge/intel/bd82x6x/pch.h>
#include <ec/acpi/ec.h>
#include <arch/acpigen.h>
#include <drivers/intel/gma/int15.h>
#include <arch/interrupt.h>
#include <pc80/keyboard.h>
@ -32,20 +31,6 @@
#include <device/pci.h>
#include <smbios.h>
static acpi_cstate_t cst_entries[] = {
{1, 1, 1000, {0x7f, 1, 2, 0, 1, 0} },
{2, 1, 500, {0x01, 8, 0, 0, DEFAULT_PMBASE + LV2, 0} },
{2, 17, 250, {0x01, 8, 0, 0, DEFAULT_PMBASE + LV3, 0} },
};
int get_cst_entries(acpi_cstate_t ** entries)
{
*entries = cst_entries;
return ARRAY_SIZE(cst_entries);
}
static void mainboard_enable(struct device *dev)
{
u16 pmbase;