4743254424
Change-Id: Iee581183f9cd9f5fecd5604536b735f6a04a0f93 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/7019 Tested-by: build bot (Jenkins) Reviewed-by: Rudolf Marek <r.marek@assembler.cz>
20 lines
484 B
C
20 lines
484 B
C
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <arch/acpi.h>
|
|
#include <cpu/amd/powernow.h>
|
|
#include <arch/acpi.h>
|
|
#include <arch/acpigen.h>
|
|
#include <cpu/amd/amdk8_sysconf.h>
|
|
|
|
static void mainboard_acpi_fill_ssdt_generator(void) {
|
|
amd_generate_powernow(0, 0, 0);
|
|
}
|
|
|
|
static void mainboard_enable(device_t dev)
|
|
{
|
|
dev->ops->acpi_fill_ssdt_generator = mainboard_acpi_fill_ssdt_generator;
|
|
}
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
.enable_dev = mainboard_enable,
|
|
};
|