blob: 9932bcea6f69d895964439bbf3f533d45ce05707 [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.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20 * MA 02110-1301 USA
21 */
22
23#include <console/console.h>
24#include <device/device.h>
25#include <arch/io.h>
Sven Schnellee2ca71e2011-02-14 20:02:47 +000026#include <delay.h>
Vladimir Serbinenko63acd222014-06-01 00:26:48 +020027#include <string.h>
Sven Schnellee2ca71e2011-02-14 20:02:47 +000028#include <device/pci_def.h>
29#include <device/pci_ops.h>
Jonathan A. Kollasch25962832012-07-10 10:14:17 -050030#include <device/pci_ids.h>
Sven Schnellee2ca71e2011-02-14 20:02:47 +000031#include <arch/io.h>
Denis 'GNUtoo' Carikli4062f172013-05-21 03:13:46 +020032#include <arch/interrupt.h>
Sven Schnellee2ca71e2011-02-14 20:02:47 +000033#include <ec/lenovo/pmh7/pmh7.h>
34#include <ec/acpi/ec.h>
Sven Schnelleffcd1432011-04-11 19:43:32 +000035#include <ec/lenovo/h8/h8.h>
Sven Schnelle8099cbf2011-04-04 10:57:17 +000036#include <northbridge/intel/i945/i945.h>
Sven Schnelled40d4f772011-06-12 15:08:58 +020037#include <pc80/mc146818rtc.h>
Sven Schnelle50270b82011-04-27 19:48:05 +000038#include "dock.h"
Sven Schnelle6eb8bef2011-10-23 16:57:50 +020039#include <arch/x86/include/arch/acpigen.h>
Peter Stugeb6b3f792013-07-06 20:10:36 +020040#include <smbios.h>
Vladimir Serbinenko63acd222014-06-01 00:26:48 +020041#include <build.h>
Vladimir Serbinenkoa2a906e2014-09-01 01:41:37 +020042#include <drivers/intel/gma/int15.h>
43
Denis 'GNUtoo' Carikli4062f172013-05-21 03:13:46 +020044#define PANEL INT15_5F35_CL_DISPLAY_DEFAULT
Sven Schnelle6eb8bef2011-10-23 16:57:50 +020045
Stefan Reinauer4cc8c702012-04-27 21:34:16 +020046static acpi_cstate_t cst_entries[] = {
47 { 1, 1, 1000, { 0x7f, 1, 2, { 0 }, 1, 0 } },
48 { 2, 1, 500, { 0x01, 8, 0, { 0 }, DEFAULT_PMBASE + LV2, 0 } },
49 { 2, 17, 250, { 0x01, 8, 0, { 0 }, DEFAULT_PMBASE + LV3, 0 } },
Sven Schnelle6eb8bef2011-10-23 16:57:50 +020050};
51
Stefan Reinauer4cc8c702012-04-27 21:34:16 +020052int get_cst_entries(acpi_cstate_t **entries)
Sven Schnelle6eb8bef2011-10-23 16:57:50 +020053{
54 *entries = cst_entries;
55 return ARRAY_SIZE(cst_entries);
56}
Sven Schnellee2ca71e2011-02-14 20:02:47 +000057
Peter Stugeeac99162013-07-06 20:05:13 +020058static void mainboard_init(device_t dev)
Sven Schnelleb31eb3e2011-04-05 13:00:14 +000059{
Jonathan A. Kollasch25962832012-07-10 10:14:17 -050060 device_t dev0, idedev, sdhci_dev;
Sven Schnelleb31eb3e2011-04-05 13:00:14 +000061
Sven Schnelle8d0b86c2011-07-11 18:36:16 +020062 ec_clr_bit(0x03, 2);
63
64 if (inb(0x164c) & 0x08) {
65 ec_set_bit(0x03, 2);
66 ec_write(0x0c, 0x88);
67 }
Denis 'GNUtoo' Carikli4062f172013-05-21 03:13:46 +020068
Vladimir Serbinenkoa2a906e2014-09-01 01:41:37 +020069 install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_INT_LVDS, GMA_INT15_PANEL_FIT_DEFAULT, PANEL, 3);
Denis 'GNUtoo' Carikli4062f172013-05-21 03:13:46 +020070
Sven Schnelle8099cbf2011-04-04 10:57:17 +000071 /* If we're resuming from suspend, blink suspend LED */
72 dev0 = dev_find_slot(0, PCI_DEVFN(0,0));
Sven Schnelled8c68a92011-06-15 09:26:34 +020073 if (dev0 && pci_read_config32(dev0, SKPAD) == SKPAD_ACPI_S3_MAGIC)
Sven Schnelle8099cbf2011-04-04 10:57:17 +000074 ec_write(0x0c, 0xc7);
Sven Schnelle50270b82011-04-27 19:48:05 +000075
76 idedev = dev_find_slot(0, PCI_DEVFN(0x1f,1));
77 if (idedev && idedev->chip_info && dock_ultrabay_device_present()) {
78 struct southbridge_intel_i82801gx_config *config = idedev->chip_info;
79 config->ide_enable_primary = 1;
80 /* enable Ultrabay power */
81 outb(inb(0x1628) | 0x01, 0x1628);
82 ec_write(0x0c, 0x84);
83 } else {
84 /* disable Ultrabay power */
85 outb(inb(0x1628) & ~0x01, 0x1628);
86 ec_write(0x0c, 0x04);
87 }
Sven Schnelled40d4f772011-06-12 15:08:58 +020088
Jonathan A. Kollasch25962832012-07-10 10:14:17 -050089 /* Set SDHCI write protect polarity "SDWPPol" */
90 sdhci_dev = dev_find_device(PCI_VENDOR_ID_RICOH, PCI_DEVICE_ID_RICOH_R5C822, 0);
91 if (sdhci_dev) {
92 if (pci_read_config8(sdhci_dev, 0xfa) != 0x20) {
93 /* unlock */
94 pci_write_config8(sdhci_dev, 0xf9, 0xfc);
95 /* set SDWPPol, keep CLKRUNDis, SDPWRPol clear */
96 pci_write_config8(sdhci_dev, 0xfa, 0x20);
97 /* restore lock */
98 pci_write_config8(sdhci_dev, 0xf9, 0x00);
99 }
100 }
Sven Schnellee2ca71e2011-02-14 20:02:47 +0000101}
102
Vladimir Serbinenko63acd222014-06-01 00:26:48 +0200103const char *smbios_mainboard_bios_version(void)
104{
105 /* Satisfy thinkpad_acpi. */
106 if (strlen(CONFIG_LOCALVERSION))
107 return "CBET4000 " CONFIG_LOCALVERSION;
108 else
109 return "CBET4000 " COREBOOT_VERSION;
110}
111
Peter Stugeeac99162013-07-06 20:05:13 +0200112static void mainboard_enable(device_t dev)
113{
114 dev->ops->init = mainboard_init;
115}
116
Sven Schnellee2ca71e2011-02-14 20:02:47 +0000117struct chip_operations mainboard_ops = {
Sven Schnellee2ca71e2011-02-14 20:02:47 +0000118 .enable_dev = mainboard_enable,
119};