blob: 4e1b3cd5bc308fb5a02ac8768138e1b777ffb29c [file] [log] [blame]
Morgan Tsai1602dd52007-10-29 21:00:14 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Morgan Tsai1602dd52007-10-29 21:00:14 +00003 *
4 * Copyright (C) 2003 Linux Networx
5 * Copyright (C) 2003 SuSE Linux AG
6 * Copyright (C) 2004 Tyan Computer
7 * Written by Yinghai Lu <yhlu@tyan.com> for Tyan Computer.
8 * Copyright (C) 2006,2007 AMD
9 * Written by Yinghai Lu <yinghai.lu@amd.com> for AMD.
10 * Copyright (C) 2007 Silicon Integrated Systems Corp. (SiS)
11 * Written by Morgan Tsai <my_tsai@sis.com> for SiS.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 */
27
28#include <console/console.h>
29#include <device/device.h>
30#include <device/pci.h>
31#include <device/pnp.h>
32#include <device/pci_ids.h>
33#include <device/pci_ops.h>
34#include <pc80/mc146818rtc.h>
35#include <pc80/isa-dma.h>
36#include <bitops.h>
37#include <arch/io.h>
38#include <cpu/x86/lapic.h>
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000039#include <stdlib.h>
Morgan Tsai1602dd52007-10-29 21:00:14 +000040#include "sis966.h"
41#include <pc80/keyboard.h>
42
43#define NMI_OFF 0
44
45struct ioapicreg {
46 unsigned int reg;
47 unsigned int value_low, value_high;
48};
49
50static struct ioapicreg ioapicregvalues[] = {
51#define ALL (0xff << 24)
52#define NONE (0)
53#define DISABLED (1 << 16)
54#define ENABLED (0 << 16)
55#define TRIGGER_EDGE (0 << 15)
56#define TRIGGER_LEVEL (1 << 15)
57#define POLARITY_HIGH (0 << 13)
58#define POLARITY_LOW (1 << 13)
59#define PHYSICAL_DEST (0 << 11)
60#define LOGICAL_DEST (1 << 11)
61#define ExtINT (7 << 8)
62#define NMI (4 << 8)
63#define SMI (2 << 8)
64#define INT (1 << 8)
65 /* IO-APIC virtual wire mode configuration */
66 /* mask, trigger, polarity, destination, delivery, vector */
67 { 0, ENABLED | TRIGGER_EDGE | POLARITY_HIGH | PHYSICAL_DEST | ExtINT, NONE},
68 { 1, DISABLED, NONE},
69 { 2, DISABLED, NONE},
70 { 3, DISABLED, NONE},
71 { 4, DISABLED, NONE},
72 { 5, DISABLED, NONE},
73 { 6, DISABLED, NONE},
74 { 7, DISABLED, NONE},
75 { 8, DISABLED, NONE},
76 { 9, DISABLED, NONE},
77 { 10, DISABLED, NONE},
78 { 11, DISABLED, NONE},
79 { 12, DISABLED, NONE},
80 { 13, DISABLED, NONE},
81 { 14, DISABLED, NONE},
82 { 15, DISABLED, NONE},
83 { 16, DISABLED, NONE},
84 { 17, DISABLED, NONE},
85 { 18, DISABLED, NONE},
86 { 19, DISABLED, NONE},
87 { 20, DISABLED, NONE},
88 { 21, DISABLED, NONE},
89 { 22, DISABLED, NONE},
90 { 23, DISABLED, NONE},
91 /* Be careful and don't write past the end... */
92};
93
94static void setup_ioapic(unsigned long ioapic_base)
95{
96 int i;
97 unsigned long value_low, value_high;
98// unsigned long ioapic_base = 0xfec00000;
99 volatile unsigned long *l;
100 struct ioapicreg *a = ioapicregvalues;
101
102 ioapicregvalues[0].value_high = lapicid()<<(56-32);
103
104 l = (unsigned long *) ioapic_base;
105
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000106 for (i = 0; i < ARRAY_SIZE(ioapicregvalues);
Morgan Tsai1602dd52007-10-29 21:00:14 +0000107 i++, a++) {
108 l[0] = (a->reg * 2) + 0x10;
109 l[4] = a->value_low;
110 value_low = l[4];
111 l[0] = (a->reg *2) + 0x11;
112 l[4] = a->value_high;
113 value_high = l[4];
114 if ((i==0) && (value_low == 0xffffffff)) {
115 printk_warning("IO APIC not responding.\n");
116 return;
117 }
118 printk_spew("for IRQ, reg 0x%08x value 0x%08x 0x%08x\n",
119 a->reg, a->value_low, a->value_high);
120 }
121}
122
123// 0x7a or e3
124#define PREVIOUS_POWER_STATE 0x7A
125
126#define MAINBOARD_POWER_OFF 0
127#define MAINBOARD_POWER_ON 1
128#define SLOW_CPU_OFF 0
129#define SLOW_CPU__ON 1
130
131#ifndef MAINBOARD_POWER_ON_AFTER_POWER_FAIL
132#define MAINBOARD_POWER_ON_AFTER_POWER_FAIL MAINBOARD_POWER_ON
133#endif
134
135static void lpc_common_init(device_t dev)
136{
137 uint8_t byte;
138 uint32_t dword;
139
140 /* IO APIC initialization */
141 byte = pci_read_config8(dev, 0x74);
142 byte |= (1<<0); // enable APIC
143 pci_write_config8(dev, 0x74, byte);
144 dword = pci_read_config32(dev, PCI_BASE_ADDRESS_1); // 0x14
145
146 setup_ioapic(dword);
147
148}
149
150static void lpc_slave_init(device_t dev)
151{
152 lpc_common_init(dev);
153}
154
Morgan Tsai1602dd52007-10-29 21:00:14 +0000155
156static void lpc_usb_legacy_init(device_t dev)
157{
158 uint16_t acpi_base;
159
160 acpi_base = (pci_read_config8(dev,0x75) << 8);
Morgan Tsai1602dd52007-10-29 21:00:14 +0000161
162 outb(inb(acpi_base + 0xbb) |0x80, acpi_base + 0xbb);
163 outb(inb(acpi_base + 0xba) |0x80, acpi_base + 0xba);
Morgan Tsai1602dd52007-10-29 21:00:14 +0000164}
165
166static void lpc_init(device_t dev)
167{
Morgan Tsai218c2652007-11-02 16:09:58 +0000168 uint8_t byte;
169 uint8_t byte_old;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000170 int on;
171 int nmi_option;
Morgan Tsai1602dd52007-10-29 21:00:14 +0000172
Morgan Tsai218c2652007-11-02 16:09:58 +0000173 printk_debug("LPC_INIT -------->\n");
Morgan Tsai1602dd52007-10-29 21:00:14 +0000174 init_pc_keyboard(0x60, 0x64, 0);
175
Morgan Tsai218c2652007-11-02 16:09:58 +0000176 lpc_usb_legacy_init(dev);
177 lpc_common_init(dev);
Morgan Tsai1602dd52007-10-29 21:00:14 +0000178
Morgan Tsai1602dd52007-10-29 21:00:14 +0000179 /* power after power fail */
180
Morgan Tsai218c2652007-11-02 16:09:58 +0000181
Morgan Tsai1602dd52007-10-29 21:00:14 +0000182 on = MAINBOARD_POWER_ON_AFTER_POWER_FAIL;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000183 get_option(&on, "power_on_after_fail");
Morgan Tsai1602dd52007-10-29 21:00:14 +0000184 byte = pci_read_config8(dev, PREVIOUS_POWER_STATE);
185 byte &= ~0x40;
186 if (!on) {
187 byte |= 0x40;
188 }
189 pci_write_config8(dev, PREVIOUS_POWER_STATE, byte);
190 printk_info("set power %s after power fail\n", on?"on":"off");
Morgan Tsai218c2652007-11-02 16:09:58 +0000191
Morgan Tsai1602dd52007-10-29 21:00:14 +0000192 /* Throttle the CPU speed down for testing */
193 on = SLOW_CPU_OFF;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000194 get_option(&on, "slow_cpu");
Morgan Tsai1602dd52007-10-29 21:00:14 +0000195 if(on) {
196 uint16_t pm10_bar;
197 uint32_t dword;
198 pm10_bar = (pci_read_config16(dev, 0x60)&0xff00);
199 outl(((on<<1)+0x10) ,(pm10_bar + 0x10));
200 dword = inl(pm10_bar + 0x10);
201 on = 8-on;
202 printk_debug("Throttling CPU %2d.%1.1d percent.\n",
203 (on*12)+(on>>1),(on&1)*5);
204 }
Morgan Tsai1602dd52007-10-29 21:00:14 +0000205
Morgan Tsai218c2652007-11-02 16:09:58 +0000206 /* Enable Error reporting */
207 /* Set up sync flood detected */
208 byte = pci_read_config8(dev, 0x47);
209 byte |= (1 << 1);
210 pci_write_config8(dev, 0x47, byte);
Morgan Tsai1602dd52007-10-29 21:00:14 +0000211
Morgan Tsai218c2652007-11-02 16:09:58 +0000212 /* Set up NMI on errors */
213 byte = inb(0x70); // RTC70
214 byte_old = byte;
215 nmi_option = NMI_OFF;
Luc Verhaegena9c5ea02009-06-03 14:19:33 +0000216 get_option(&nmi_option, "nmi");
Morgan Tsai218c2652007-11-02 16:09:58 +0000217 if (nmi_option) {
218 byte &= ~(1 << 7); /* set NMI */
219 } else {
220 byte |= ( 1 << 7); // Can not mask NMI from PCI-E and NMI_NOW
221 }
222 if( byte != byte_old) {
223 outb(0x70, byte);
224 }
Morgan Tsai1602dd52007-10-29 21:00:14 +0000225
Morgan Tsai218c2652007-11-02 16:09:58 +0000226 /* Initialize the real time clock */
227 rtc_init(0);
Morgan Tsai1602dd52007-10-29 21:00:14 +0000228
Morgan Tsai218c2652007-11-02 16:09:58 +0000229 /* Initialize isa dma */
230 isa_dma_init();
Morgan Tsai1602dd52007-10-29 21:00:14 +0000231
Morgan Tsai218c2652007-11-02 16:09:58 +0000232 printk_debug("LPC_INIT <--------\n");
Morgan Tsai1602dd52007-10-29 21:00:14 +0000233}
234
235static void sis966_lpc_read_resources(device_t dev)
236{
237 struct resource *res;
Morgan Tsai1602dd52007-10-29 21:00:14 +0000238
239 /* Get the normal pci resources of this device */
240 pci_dev_read_resources(dev); // We got one for APIC, or one more for TRAP
241
242 /* Add an extra subtractive resource for both memory and I/O */
243 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
244 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
245
246 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
247 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
248
249}
250
251/**
252 * @brief Enable resources for children devices
253 *
254 * @param dev the device whos children's resources are to be enabled
255 *
256 * This function is call by the global enable_resources() indirectly via the
257 * device_operation::enable_resources() method of devices.
258 *
259 * Indirect mutual recursion:
260 * enable_childrens_resources() -> enable_resources()
261 * enable_resources() -> device_operation::enable_resources()
262 * device_operation::enable_resources() -> enable_children_resources()
263 */
264static void sis966_lpc_enable_childrens_resources(device_t dev)
265{
266 unsigned link;
267 uint32_t reg, reg_var[4];
268 int i;
269 int var_num = 0;
270
271 reg = pci_read_config32(dev, 0xa0);
272
273 for (link = 0; link < dev->links; link++) {
274 device_t child;
275 for (child = dev->link[link].children; child; child = child->sibling) {
276 enable_resources(child);
277 if(child->have_resources && (child->path.type == DEVICE_PATH_PNP)) {
278 for(i=0;i<child->resources;i++) {
279 struct resource *res;
280 unsigned long base, end; // don't need long long
281 res = &child->resource[i];
282 if(!(res->flags & IORESOURCE_IO)) continue;
283 base = res->base;
284 end = resource_end(res);
285 printk_debug("sis966 lpc decode:%s, base=0x%08x, end=0x%08x\n",dev_path(child),base, end);
286 switch(base) {
287 case 0x3f8: // COM1
288 reg |= (1<<0); break;
289 case 0x2f8: // COM2
290 reg |= (1<<1); break;
291 case 0x378: // Parallal 1
292 reg |= (1<<24); break;
293 case 0x3f0: // FD0
294 reg |= (1<<20); break;
295 case 0x220: // Aduio 0
296 reg |= (1<<8); break;
297 case 0x300: // Midi 0
298 reg |= (1<<12); break;
299 }
300 if( (base == 0x290) || (base >= 0x400)) {
301 if(var_num>=4) continue; // only 4 var ; compact them ?
302 reg |= (1<<(28+var_num));
303 reg_var[var_num++] = (base & 0xffff)|((end & 0xffff)<<16);
304 }
305 }
306 }
307 }
308 }
309 pci_write_config32(dev, 0xa0, reg);
310 for(i=0;i<var_num;i++) {
311 pci_write_config32(dev, 0xa8 + i*4, reg_var[i]);
312 }
313
314
315}
316
317static void sis966_lpc_enable_resources(device_t dev)
318{
319 pci_dev_enable_resources(dev);
320 sis966_lpc_enable_childrens_resources(dev);
321}
322
323static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
324{
325 pci_write_config32(dev, 0x40,
326 ((device & 0xffff) << 16) | (vendor & 0xffff));
327}
328
329static struct pci_operations lops_pci = {
330 .set_subsystem = lpci_set_subsystem,
331};
332
333static struct device_operations lpc_ops = {
334 .read_resources = sis966_lpc_read_resources,
335 .set_resources = pci_dev_set_resources,
336 .enable_resources = sis966_lpc_enable_resources,
337 .init = lpc_init,
338 .scan_bus = scan_static_bus,
339// .enable = sis966_enable,
340 .ops_pci = &lops_pci,
341};
Stefan Reinauer83b52e72007-10-30 02:17:49 +0000342static const struct pci_driver lpc_driver __pci_driver = {
Morgan Tsai1602dd52007-10-29 21:00:14 +0000343 .ops = &lpc_ops,
344 .vendor = PCI_VENDOR_ID_SIS,
345 .device = PCI_DEVICE_ID_SIS_SIS966_LPC,
346};
347
Morgan Tsai1602dd52007-10-29 21:00:14 +0000348static struct device_operations lpc_slave_ops = {
349 .read_resources = sis966_lpc_read_resources,
350 .set_resources = pci_dev_set_resources,
351 .enable_resources = pci_dev_enable_resources,
352 .init = lpc_slave_init,
353// .enable = sis966_enable,
354 .ops_pci = &lops_pci,
355};