blob: d279ac6adea4a846d0c6185d854a81a290bab0c7 [file] [log] [blame]
Angel Pons60ec3652020-04-03 01:22:13 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Tobias Diedrich7a952042017-12-03 10:09:28 +01002
3#include <console/console.h>
4#include <device/device.h>
5#include <drivers/intel/gma/int15.h>
6#include <southbridge/intel/common/gpio.h>
7
Elyes HAOUAS4182c802018-05-04 20:46:54 +02008static void mainboard_enable(struct device *dev)
Tobias Diedrich7a952042017-12-03 10:09:28 +01009{
10 printk(BIOS_DEBUG, "Memory voltage: %s\n",
11 get_gpio(8) ? "1.35V" : "1.5V");
12 printk(BIOS_DEBUG, "BIOS_CFG jumper: %s\n",
13 get_gpio(22) ? "normal (1-2)" : "setup (2-3)");
14 printk(BIOS_DEBUG, "mSATA: %s\n",
15 get_gpio(35) ? "present" : "absent");
16
17 install_intel_vga_int15_handler(
18 GMA_INT15_ACTIVE_LFP_NONE, GMA_INT15_PANEL_FIT_DEFAULT,
19 GMA_INT15_BOOT_DISPLAY_DEFAULT, 0);
20}
21
22struct chip_operations mainboard_ops = {
23 .enable_dev = mainboard_enable,
24};