blob: c0d8440d47238eaa162a71534d9f8a56f8b3089c [file] [log] [blame]
Sven Schnellee2ca71e2011-02-14 20:02:47 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19 * MA 02110-1301 USA
20 */
21
22#include <arch/io.h>
23#include <arch/romcc_io.h>
24#include <console/console.h>
25#include <cpu/x86/smm.h>
26#include "southbridge/intel/i82801gx/nvs.h"
Sven Schnelle8b39e072011-06-12 16:49:13 +020027#include "southbridge/intel/i82801gx/i82801gx.h"
Sven Schnellefea6bd12011-04-01 07:28:56 +000028#include <ec/acpi/ec.h>
Sven Schnelle4297a9a2011-06-12 14:35:11 +020029#include <pc80/mc146818rtc.h>
30#include <ec/lenovo/h8/h8.h>
Sven Schnelle483ec412012-01-10 14:44:12 +010031#include <delay.h>
Sven Schnellefea6bd12011-04-01 07:28:56 +000032#include "dock.h"
33#include "smi.h"
Sven Schnellee2ca71e2011-02-14 20:02:47 +000034
35/* The southbridge SMI handler checks whether gnvs has a
36 * valid pointer before calling the trap handler
37 */
38extern global_nvs_t *gnvs;
39
Sven Schnellefea6bd12011-04-01 07:28:56 +000040static void mainboard_smm_init(void)
41{
42 printk(BIOS_DEBUG, "initializing SMI\n");
43 /* Enable 0x1600/0x1600 register pair */
44 ec_set_bit(0x00, 0x05);
Sven Schnelle4297a9a2011-06-12 14:35:11 +020045}
46
47static void mainboard_smi_save_cmos(void)
48{
49 u8 val;
Sven Schnelleedcf9f42011-06-28 08:05:26 +020050 u8 tmp70, tmp72;
Sven Schnelle4297a9a2011-06-12 14:35:11 +020051
52 tmp70 = inb(0x70);
53 tmp72 = inb(0x72);
Sven Schnelle4297a9a2011-06-12 14:35:11 +020054
55 val = pci_read_config8(PCI_DEV(0, 2, 1), 0xf4);
56 set_option("tft_brightness", &val);
57 val = ec_read(H8_VOLUME_CONTROL);
58 set_option("volume", &val);
59
60 outb(tmp70, 0x70);
61 outb(tmp72, 0x72);
Sven Schnellefea6bd12011-04-01 07:28:56 +000062}
63
Sven Schnellee2ca71e2011-02-14 20:02:47 +000064int mainboard_io_trap_handler(int smif)
65{
Sven Schnellefea6bd12011-04-01 07:28:56 +000066 static int smm_initialized;
67
68 if (!smm_initialized) {
69 mainboard_smm_init();
70 smm_initialized = 1;
71 }
72
Sven Schnellee2ca71e2011-02-14 20:02:47 +000073 switch (smif) {
Sven Schnellefea6bd12011-04-01 07:28:56 +000074 case SMI_DOCK_CONNECT:
Sven Schnelle8d0b86c2011-07-11 18:36:16 +020075 ec_clr_bit(0x03, 2);
Sven Schnelle483ec412012-01-10 14:44:12 +010076 udelay(250000);
77 if (!dock_connect()) {
Sven Schnelle8d0b86c2011-07-11 18:36:16 +020078 ec_set_bit(0x03, 2);
Sven Schnellefea6bd12011-04-01 07:28:56 +000079 /* set dock LED to indicate status */
Sven Schnelle8d0b86c2011-07-11 18:36:16 +020080 ec_write(0x0c, 0x09);
Sven Schnellefea6bd12011-04-01 07:28:56 +000081 ec_write(0x0c, 0x88);
82 } else {
83 /* blink dock LED to indicate failure */
Sven Schnelle8d0b86c2011-07-11 18:36:16 +020084 ec_write(0x0c, 0x08);
85 ec_write(0x0c, 0xc9);
Sven Schnellefea6bd12011-04-01 07:28:56 +000086 }
Sven Schnellee2ca71e2011-02-14 20:02:47 +000087 break;
Sven Schnellefea6bd12011-04-01 07:28:56 +000088
89 case SMI_DOCK_DISCONNECT:
Sven Schnelle8d0b86c2011-07-11 18:36:16 +020090 ec_clr_bit(0x03, 2);
Sven Schnellefea6bd12011-04-01 07:28:56 +000091 dock_disconnect();
Sven Schnellefea6bd12011-04-01 07:28:56 +000092 break;
93
Sven Schnelle4297a9a2011-06-12 14:35:11 +020094 case SMI_SAVE_CMOS:
95 mainboard_smi_save_cmos();
96 break;
Sven Schnellee2ca71e2011-02-14 20:02:47 +000097 default:
Sven Schnelle0f9cd432011-06-12 16:55:56 +020098 return 0;
Sven Schnellee2ca71e2011-02-14 20:02:47 +000099 }
100
Sven Schnelle0f9cd432011-06-12 16:55:56 +0200101 /* On success, the IO Trap Handler returns 1
102 * On failure, the IO Trap Handler returns a value != 1 */
103 return 1;
Sven Schnellee2ca71e2011-02-14 20:02:47 +0000104}
Sven Schnelle8b39e072011-06-12 16:49:13 +0200105
106static void mainboard_smi_brightness_up(void)
107{
108 u8 value;
109
110 if ((value = pci_read_config8(PCI_DEV(0, 2, 1), 0xf4)) < 0xf0)
111 pci_write_config8(PCI_DEV(0, 2, 1), 0xf4, (value + 0x10) | 0xf);
112}
113
114static void mainboard_smi_brightness_down(void)
115{
116 u8 value;
117
118 if ((value = pci_read_config8(PCI_DEV(0, 2, 1), 0xf4)) > 0x10)
119 pci_write_config8(PCI_DEV(0, 2, 1), 0xf4, (value - 0x10) & 0xf0);
120}
121
122static void mainboard_smi_handle_ec_sci(void)
123{
124 u8 status = inb(EC_SC);
125 u8 event;
126
127 if (!(status & EC_SCI_EVT))
128 return;
129
130 event = ec_query();
131 printk(BIOS_DEBUG, "EC event %02x\n", event);
132
133 switch(event) {
134 /* brightness up */
135 case 0x14:
136 mainboard_smi_brightness_up();
137 mainboard_smi_save_cmos();
138 break;
139 /* brightness down */
140 case 0x15:
141 mainboard_smi_brightness_down();
142 mainboard_smi_save_cmos();
143 break;
Sven Schnelle8d0b86c2011-07-11 18:36:16 +0200144 /* Fn-F9 key */
145 case 0x18:
146 /* Power loss */
147 case 0x27:
148 /* Undock Key */
149 case 0x50:
150 mainboard_io_trap_handler(SMI_DOCK_DISCONNECT);
151 break;
152 /* Dock Event */
153 case 0x37:
154 case 0x58:
155 mainboard_io_trap_handler(SMI_DOCK_CONNECT);
156 break;
Sven Schnelle8b39e072011-06-12 16:49:13 +0200157 default:
158 break;
159 }
160}
161
162void mainboard_smi_gpi(u16 gpi)
163{
164 if (gpi & (1 << 12))
165 mainboard_smi_handle_ec_sci();
166}
167
Stefan Reinauerbf34e942012-04-27 00:44:04 +0200168int mainboard_smi_apmc(u8 data)
Sven Schnelle8b39e072011-06-12 16:49:13 +0200169{
170 u16 pmbase = pci_read_config16(PCI_DEV(0, 0x1f, 0), 0x40) & 0xfffc;
171 u8 tmp;
172
173 printk(BIOS_DEBUG, "%s: pmbase %04X, data %02X\n", __func__, pmbase, data);
174
175 if (!pmbase)
176 return 0;
177
178 switch(data) {
179 case APM_CNT_ACPI_ENABLE:
180 /* use 0x1600/0x1604 to prevent races with userspace */
181 ec_set_ports(0x1604, 0x1600);
182 /* route H8SCI to SCI */
183 outw(inw(ALT_GP_SMI_EN) & ~0x1000, pmbase + ALT_GP_SMI_EN);
184 tmp = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xbb);
185 tmp &= ~0x03;
186 tmp |= 0x02;
187 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xbb, tmp);
188 /* discard all events, and enable attention */
189 ec_write(0x80, 0x01);
190 break;
191 case APM_CNT_ACPI_DISABLE:
192 /* we have to use port 0x62/0x66, as 0x1600/0x1604 doesn't
193 provide a EC query function */
194 ec_set_ports(0x66, 0x62);
195 /* route H8SCI# to SMI */
196 outw(inw(pmbase + ALT_GP_SMI_EN) | 0x1000, pmbase + ALT_GP_SMI_EN);
197 tmp = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xbb);
198 tmp &= ~0x03;
199 tmp |= 0x01;
200 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xbb, tmp);
201 /* discard all events, and enable attention */
202 ec_write(0x80, 0x01);
203 break;
204 default:
205 break;
206 }
207 return 0;
208}