blob: 67bee3973b4e0f239668fe2a4bfeec5a83f27ec8 [file] [log] [blame]
Martin Rothd75800c2014-05-12 21:56:27 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Martin Rothd75800c2014-05-12 21:56:27 -060015 */
16
17#include <types.h>
18#include <string.h>
19#include <device/device.h>
20#include <device/device.h>
21#include <device/pci_def.h>
22#include <device/pci_ops.h>
23#include <console/console.h>
24#if CONFIG_VGA_ROM_RUN
25#include <x86emu/x86emu.h>
26#endif
27#include <pc80/mc146818rtc.h>
28#include <arch/acpi.h>
29#include <arch/io.h>
30#include <arch/interrupt.h>
31#include <boot/coreboot_tables.h>
32
33/*
34 * mainboard_enable is executed as first thing after enumerate_buses().
35 * This is the earliest point to add customization.
36 */
37static void mainboard_enable(device_t dev)
38{
39
40}
41
42struct chip_operations mainboard_ops = {
43 .enable_dev = mainboard_enable,
44};