blob: 925779e0e4d2dab810be7a6b1055c4a4547b6662 [file] [log] [blame]
Sven Schnellee2ca71e2011-02-14 20:02:47 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
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.
Sven Schnellee2ca71e2011-02-14 20:02:47 +000016 */
17
Sven Schnellee2ca71e2011-02-14 20:02:47 +000018#include <device/pci_def.h>
Jonathan A. Kollasch25962832012-07-10 10:14:17 -050019#include <device/pci_ids.h>
Patrick Rudolphc670a412017-04-28 17:28:32 +020020#include <device/device.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020021#include <device/pci_ops.h>
Patrick Rudolphc670a412017-04-28 17:28:32 +020022#include <arch/io.h>
Sven Schnellee2ca71e2011-02-14 20:02:47 +000023#include <ec/acpi/ec.h>
Sven Schnelle8099cbf2011-04-04 10:57:17 +000024#include <northbridge/intel/i945/i945.h>
Sven Schnelled40d4f772011-06-12 15:08:58 +020025#include <pc80/mc146818rtc.h>
Sven Schnelle50270b82011-04-27 19:48:05 +000026#include "dock.h"
Vladimir Serbinenkoa2a906e2014-09-01 01:41:37 +020027#include <drivers/intel/gma/int15.h>
Patrick Rudolphc670a412017-04-28 17:28:32 +020028#include <drivers/lenovo/lenovo.h>
29#include <arch/acpigen.h>
Vladimir Serbinenkoa2a906e2014-09-01 01:41:37 +020030
Denis 'GNUtoo' Carikli4062f172013-05-21 03:13:46 +020031#define PANEL INT15_5F35_CL_DISPLAY_DEFAULT
Sven Schnelle6eb8bef2011-10-23 16:57:50 +020032
Arthur Heymanse1f0ac42016-05-19 16:02:38 +020033#define MWAIT_RES(state, sub_state) \
34 { \
35 .space_id = ACPI_ADDRESS_SPACE_FIXED, \
36 .bit_width = ACPI_FFIXEDHW_VENDOR_INTEL, \
37 .bit_offset = ACPI_FFIXEDHW_CLASS_MWAIT, \
38 { \
39 .resv = 0, \
40 }, \
41 .addrl = (((state) << 4) | (sub_state)), \
42 .addrh = 0, \
43 }
44
Stefan Reinauer4cc8c702012-04-27 21:34:16 +020045static acpi_cstate_t cst_entries[] = {
Arthur Heymanse1f0ac42016-05-19 16:02:38 +020046 {
47 .ctype = 1,
48 .latency = 1,
49 .power = 1000,
50 .resource = MWAIT_RES(0, 0),
51 },
52 {
53 .ctype = 2,
54 .latency = 1,
55 .power = 500,
56 .resource = MWAIT_RES(1, 0),
57 },
58 {
59 .ctype = 3,
60 .latency = 17,
61 .power = 250,
62 .resource = MWAIT_RES(2, 0),
63 },
Sven Schnelle6eb8bef2011-10-23 16:57:50 +020064};
65
Stefan Reinauer4cc8c702012-04-27 21:34:16 +020066int get_cst_entries(acpi_cstate_t **entries)
Sven Schnelle6eb8bef2011-10-23 16:57:50 +020067{
68 *entries = cst_entries;
69 return ARRAY_SIZE(cst_entries);
70}
Sven Schnellee2ca71e2011-02-14 20:02:47 +000071
Elyes HAOUAS64b759e2018-05-05 09:11:32 +020072static void mainboard_init(struct device *dev)
Sven Schnelleb31eb3e2011-04-05 13:00:14 +000073{
Elyes HAOUAS64b759e2018-05-05 09:11:32 +020074 struct device *idedev, *sdhci_dev;
Sven Schnelleb31eb3e2011-04-05 13:00:14 +000075
Sven Schnelle8d0b86c2011-07-11 18:36:16 +020076 ec_clr_bit(0x03, 2);
77
78 if (inb(0x164c) & 0x08) {
79 ec_set_bit(0x03, 2);
80 ec_write(0x0c, 0x88);
81 }
Denis 'GNUtoo' Carikli4062f172013-05-21 03:13:46 +020082
Patrick Rudolphc670a412017-04-28 17:28:32 +020083 install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_INT_LVDS,
84 GMA_INT15_PANEL_FIT_DEFAULT,
85 PANEL, 3);
Denis 'GNUtoo' Carikli4062f172013-05-21 03:13:46 +020086
Sven Schnelle8099cbf2011-04-04 10:57:17 +000087 /* If we're resuming from suspend, blink suspend LED */
Kyösti Mälkki81830252016-06-25 11:40:00 +030088 if (acpi_is_wakeup_s3())
Sven Schnelle8099cbf2011-04-04 10:57:17 +000089 ec_write(0x0c, 0xc7);
Sven Schnelle50270b82011-04-27 19:48:05 +000090
91 idedev = dev_find_slot(0, PCI_DEVFN(0x1f,1));
92 if (idedev && idedev->chip_info && dock_ultrabay_device_present()) {
93 struct southbridge_intel_i82801gx_config *config = idedev->chip_info;
94 config->ide_enable_primary = 1;
95 /* enable Ultrabay power */
96 outb(inb(0x1628) | 0x01, 0x1628);
97 ec_write(0x0c, 0x84);
98 } else {
99 /* disable Ultrabay power */
100 outb(inb(0x1628) & ~0x01, 0x1628);
101 ec_write(0x0c, 0x04);
102 }
Sven Schnelled40d4f772011-06-12 15:08:58 +0200103
Jonathan A. Kollasch25962832012-07-10 10:14:17 -0500104 /* Set SDHCI write protect polarity "SDWPPol" */
105 sdhci_dev = dev_find_device(PCI_VENDOR_ID_RICOH, PCI_DEVICE_ID_RICOH_R5C822, 0);
106 if (sdhci_dev) {
107 if (pci_read_config8(sdhci_dev, 0xfa) != 0x20) {
108 /* unlock */
109 pci_write_config8(sdhci_dev, 0xf9, 0xfc);
110 /* set SDWPPol, keep CLKRUNDis, SDPWRPol clear */
111 pci_write_config8(sdhci_dev, 0xfa, 0x20);
112 /* restore lock */
113 pci_write_config8(sdhci_dev, 0xf9, 0x00);
114 }
115 }
Sven Schnellee2ca71e2011-02-14 20:02:47 +0000116}
117
Elyes HAOUAS64b759e2018-05-05 09:11:32 +0200118static void fill_ssdt(struct device *device)
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200119{
120 drivers_lenovo_serial_ports_ssdt_generate("\\_SB.PCI0.LPCB", 1);
121}
122
Elyes HAOUAS64b759e2018-05-05 09:11:32 +0200123static void mainboard_enable(struct device *dev)
Peter Stugeeac99162013-07-06 20:05:13 +0200124{
125 dev->ops->init = mainboard_init;
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200126 dev->ops->acpi_fill_ssdt_generator = fill_ssdt;
Peter Stugeeac99162013-07-06 20:05:13 +0200127}
128
Sven Schnellee2ca71e2011-02-14 20:02:47 +0000129struct chip_operations mainboard_ops = {
Sven Schnellee2ca71e2011-02-14 20:02:47 +0000130 .enable_dev = mainboard_enable,
131};