blob: 8f157303e6616953e1a2902e5aa3c560ac7f5399 [file] [log] [blame]
Angel Pons7544e2f2020-04-03 01:23:10 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi021b7032012-11-06 11:05:38 +01002
Patrick Georgi021b7032012-11-06 11:05:38 +01003#include <arch/io.h>
Patrick Georgi021b7032012-11-06 11:05:38 +01004#include <device/device.h>
Vladimir Serbinenkoa2a906e2014-09-01 01:41:37 +02005#include <drivers/intel/gma/int15.h>
Patrick Georgi021b7032012-11-06 11:05:38 +01006#include <pc80/keyboard.h>
7#include <ec/acpi/ec.h>
Patrick Georgi021b7032012-11-06 11:05:38 +01008
Patrick Georgi021b7032012-11-06 11:05:38 +01009static void ec_setup(void)
10{
Elyes HAOUAS8ab989e2016-07-30 17:46:17 +020011 /* Thermal limits? Values are from ectool's RAM dump. */
Patrick Georgi021b7032012-11-06 11:05:38 +010012 ec_write(0xd1, 0x57); /* CPUH */
13 ec_write(0xd2, 0xc9); /* CPUL */
14 ec_write(0xd4, 0x64); /* SYSH */
15 ec_write(0xd5, 0xc9); /* SYSL */
16
17 send_ec_command(0x04); /* Set_SMI_Enable */
18 send_ec_command(0xab); /* Set_ACPI_Disable */
19 send_ec_command(0xac); /* Clr_SYS_Flag? well, why not? */
20 send_ec_command(0xad); /* Set_Thml_Value */
21}
22
Elyes HAOUASc4c2d4e2018-05-05 08:50:02 +020023static void mainboard_enable(struct device *dev)
Patrick Georgi021b7032012-11-06 11:05:38 +010024{
25 ec_setup();
Vladimir Serbinenkoa2a906e2014-09-01 01:41:37 +020026 /* LCD panel type is SIO GPIO40-43.
27 It's controlled by a DIP switch but was always
28 set to 4 while only values of 5 and 6 worked. */
29 install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_INT_LVDS, GMA_INT15_PANEL_FIT_CENTERING, GMA_INT15_BOOT_DISPLAY_DEFAULT, (inb(0x60f) & 0x0f) + 1);
Patrick Georgi021b7032012-11-06 11:05:38 +010030
31 /* We have no driver for the embedded controller since the firmware
32 does most of the job. Hence, initialize keyboards here. */
Timothy Pearson448e3862015-11-24 14:12:01 -060033 pc_keyboard_init(NO_AUX_DEVICE);
Patrick Georgi021b7032012-11-06 11:05:38 +010034}
35
36struct chip_operations mainboard_ops = {
37 .enable_dev = mainboard_enable,
38};