cpu/intel/common: Use a common acpi/cpu.asl file
[coreboot.git] / src / mainboard / lenovo / x230 / mainboard.c
blob29c15e0f5af0c090a78ec8f02bd13fadbd67ba96
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011-2012 Google Inc.
6 * Copyright (C) 2014 Vladimir Serbinenko
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <device/device.h>
19 #include <drivers/intel/gma/int15.h>
20 #include <ec/lenovo/h8/h8.h>
22 // mainboard_enable is executed as first thing after
23 // enumerate_buses().
25 static void mainboard_enable(struct device *dev)
27 install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_INT_LVDS,
28 GMA_INT15_PANEL_FIT_DEFAULT,
29 GMA_INT15_BOOT_DISPLAY_DEFAULT, 0);
32 void h8_mainboard_init_dock (void)
36 struct chip_operations mainboard_ops = {
37 .enable_dev = mainboard_enable,