binaryPI: Drop unused agesawrapper include
[coreboot.git] / src / mainboard / amd / olivehillplus / mainboard.c
blob89baaf0148bf1972d5a66718dcdd564f370d2449
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2012 Advanced Micro Devices, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <console/console.h>
17 #include <device/device.h>
18 #include <device/pci.h>
19 #include <arch/io.h>
20 #include <device/pci_def.h>
21 #include <arch/acpi.h>
22 #include <cpu/x86/msr.h>
23 #include <cpu/amd/mtrr.h>
25 /**********************************************
26 * enable the dedicated function in mainboard.
27 **********************************************/
28 static void mainboard_enable(device_t dev)
30 printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
33 struct chip_operations mainboard_ops = {
34 .enable_dev = mainboard_enable,