aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/getac/p470
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-10-26 20:42:08 +0100
committerVladimir Serbinenko <phcoder@gmail.com>2015-05-26 10:32:42 +0200
commit351fefc452ed70fe53ea84cb91a50bfb7abc6c0a (patch)
treea629057d22b8011c7db1c3d4848b76d25d293912 /src/mainboard/getac/p470
parent61bb37e2054549b96986c5142aaa680ac311e4bf (diff)
ACPI: slic support
Export SLIC table from file in CBFS. Change-Id: Id0e7fe0a49b9cd50b5e43cd15030e1c2098728ec Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/7202 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/mainboard/getac/p470')
-rw-r--r--src/mainboard/getac/p470/Kconfig1
-rw-r--r--src/mainboard/getac/p470/Makefile.inc1
-rw-r--r--src/mainboard/getac/p470/acpi_slic.c37
3 files changed, 0 insertions, 39 deletions
diff --git a/src/mainboard/getac/p470/Kconfig b/src/mainboard/getac/p470/Kconfig
index 6edd72cf7f..3fdc67c738 100644
--- a/src/mainboard/getac/p470/Kconfig
+++ b/src/mainboard/getac/p470/Kconfig
@@ -35,7 +35,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
select HAVE_MP_TABLE
select HAVE_OPTION_TABLE
select HAVE_ACPI_RESUME
- select HAVE_ACPI_SLIC
select UDELAY_LAPIC
select BOARD_ROMSIZE_KB_1024
select CHANNEL_XOR_RANDOMIZATION
diff --git a/src/mainboard/getac/p470/Makefile.inc b/src/mainboard/getac/p470/Makefile.inc
index ac0b1701db..7eef1da7b5 100644
--- a/src/mainboard/getac/p470/Makefile.inc
+++ b/src/mainboard/getac/p470/Makefile.inc
@@ -17,4 +17,3 @@
## Foundation, Inc.
##
-ramstage-$(CONFIG_HAVE_ACPI_SLIC) += acpi_slic.c
diff --git a/src/mainboard/getac/p470/acpi_slic.c b/src/mainboard/getac/p470/acpi_slic.c
deleted file mode 100644
index b13a0a2d3f..0000000000
--- a/src/mainboard/getac/p470/acpi_slic.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2009 coresystems GmbH
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; version 2 of
- * the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
- */
-
-#include <string.h>
-#include <device/pci.h>
-#include <arch/acpi.h>
-
-static const char slic[0x4] = {
- 0x53, 0x4c, 0x49, 0x43 /* incomplete. */
- /* If you wish to compile coreboot images with a windows license key
- * built in, you need to extract the ACPI SLIC from your machine and
- * add it here.
- */
-};
-
-unsigned long acpi_create_slic(unsigned long current)
-{
- memcpy((void *) current, slic, sizeof(slic));
- return sizeof(slic);
-}