blob: f1a3a208ee31fac8a935ea6a5f066fc870029f23 [file] [log] [blame]
David Hendricksf3e22052017-08-10 20:43:54 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 Google Inc.
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.
15 */
16
David Hendricksf3e22052017-08-10 20:43:54 -070017#include <device/device.h>
David Hendricksf3e22052017-08-10 20:43:54 -070018#if IS_ENABLED(CONFIG_VGA_ROM_RUN)
19#include <x86emu/x86emu.h>
20#endif
David Hendricksf3e22052017-08-10 20:43:54 -070021
22/*
23 * mainboard_enable is executed as first thing after enumerate_buses().
24 * This is the earliest point to add customization.
25 */
Elyes HAOUAS5cb876c2018-06-08 18:31:43 +020026static void mainboard_enable(struct device *dev)
David Hendricksf3e22052017-08-10 20:43:54 -070027{
28
29}
30
31struct chip_operations mainboard_ops = {
32 .enable_dev = mainboard_enable,
33};