blob: 1feee6bd22b489f349a5334f2a9d69688f437824 [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Iru Cai928c6c62017-06-15 18:18:51 +08002
3#include <device/device.h>
4#include <drivers/intel/gma/int15.h>
5#include <southbridge/intel/bd82x6x/pch.h>
6
Elyes HAOUAS51c6a612018-05-04 19:56:27 +02007static void mainboard_enable(struct device *dev)
Iru Cai928c6c62017-06-15 18:18:51 +08008{
9 install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_NONE,
10 GMA_INT15_PANEL_FIT_DEFAULT,
11 GMA_INT15_BOOT_DISPLAY_CRT, 0);
12}
13
14struct chip_operations mainboard_ops = {
15 .enable_dev = mainboard_enable,
16};