summaryrefslogtreecommitdiffstats
path: root/southbridge/via/vt8237/lpc.c
blob: b34346f53f47e118bf550ffbd1d512180be30984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
/*
 * This file is part of the coreboot project.
 *
 * Copyright (C) 2008 Corey Osgood <corey.osgood@gmail.com>
 * Copyright (C) 2007, 2008 Rudolf Marek <r.marek@assembler.cz>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License v2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 */

/* Inspiration from other VIA SB code. */

#include <types.h>
#include <io.h>
#include <lib.h>
#include <console.h>
#include <device/pci.h>
#include <device/pci_ids.h>
#include <arch/x86/lapic.h>
#include <mc146818rtc.h>
#include <keyboard.h>
#include <legacy.h>
#include <statictree.h>
#include <config.h>
#include "vt8237.h"

#define ALL		(0xff << 24)
#define NONE		(0)
#define DISABLED	(1 << 16)
#define ENABLED		(0 << 16)
#define TRIGGER_EDGE	(0 << 15)
#define TRIGGER_LEVEL	(1 << 15)
#define POLARITY_HIGH	(0 << 13)
#define POLARITY_LOW	(1 << 13)
#define PHYSICAL_DEST	(0 << 11)
#define LOGICAL_DEST	(1 << 11)
#define ExtINT		(7 << 8)
#define NMI		(4 << 8)
#define SMI		(2 << 8)
#define INT		(1 << 8)

static struct ioapicreg {
	u32 reg;
	u32 value_low;
	u32 value_high;
} ioapic_table[] = {
	/* IO-APIC virtual wire mode configuration. */
	/* mask, trigger, polarity, destination, delivery, vector */
	{0, ENABLED | TRIGGER_EDGE | POLARITY_HIGH | PHYSICAL_DEST |
		    ExtINT, NONE},
	{1,  DISABLED, NONE},
	{2,  DISABLED, NONE},
	{3,  DISABLED, NONE},
	{4,  DISABLED, NONE},
	{5,  DISABLED, NONE},
	{6,  DISABLED, NONE},
	{7,  DISABLED, NONE},
	{8,  DISABLED, NONE},
	{9,  DISABLED, NONE},
	{10, DISABLED, NONE},
	{11, DISABLED, NONE},
	{12, DISABLED, NONE},
	{13, DISABLED, NONE},
	{14, DISABLED, NONE},
	{15, DISABLED, NONE},
	{16, DISABLED, NONE},
	{17, DISABLED, NONE},
	{18, DISABLED, NONE},
	{19, DISABLED, NONE},
	{20, DISABLED, NONE},
	{21, DISABLED, NONE},
	{22, DISABLED, NONE},
	{23, DISABLED, NONE},
};

static void setup_ioapic(struct device *dev)
{
	struct southbridge_via_vt8237_lpc_config *sb =
		(struct southbridge_via_vt8237_lpc_config *)dev->device_configuration;

	u32 value_low, value_high, val;
	volatile u32 *l;
	int i;

	/* All delivered to CPU0. */
	ioapic_table[0].value_high = (lapicid()) << (56 - 32);
	l = (void *)sb->apic_base;

	/* Set APIC to FSB message bus. */
	l[0] = 0x3;
	val = l[4];
	l[4] = (val & 0xFFFFFE) | 1;

	/* Set APIC ADDR - this will be VT8237_APIC_ID. */
	l[0] = 0;
	val = l[4];
	l[4] = (val & 0xF0FFFF) | (sb->apic_id << 24);

	for (i = 0; i < ARRAY_SIZE(ioapic_table); i++) {
		l[0] = (ioapic_table[i].reg * 2) + 0x10;
		l[4] = ioapic_table[i].value_low;
		value_low = l[4];
		l[0] = (ioapic_table[i].reg * 2) + 0x11;
		l[4] = ioapic_table[i].value_high;
		value_high = l[4];

		if ((i == 0) && (value_low == 0xffffffff)) {
			printk(BIOS_WARNING, "IO APIC not responding.\n");
			return;
		}
	}
}

/** Set up PCI IRQ routing, route everything through APIC. */
static void pci_routing_fixup(struct device *dev)
{
	/* PCI PNP Interrupt Routing INTE/F - disable */
	pci_write_config8(dev, 0x44, 0x00);

	/* PCI PNP Interrupt Routing INTG/H - disable */
	pci_write_config8(dev, 0x45, 0x00);

	/* Route INTE-INTH through registers above, no map to INTA-INTD. */
	pci_write_config8(dev, 0x46, 0x10);

	/* PCI Interrupt Polarity */
	pci_write_config8(dev, 0x54, 0x00);

	/* PCI INTA# Routing */
	pci_write_config8(dev, 0x55, 0x00);

	/* PCI INTB#/C# Routing */
	pci_write_config8(dev, 0x56, 0x00);

	/* PCI INTD# Routing */
	pci_write_config8(dev, 0x57, 0x00);
}

/**
 * Set up the power management capabilities directly into ACPI mode.
 * This avoids having to handle any System Management Interrupts (SMIs).
 */
static void setup_pm(struct device *dev)
{
	struct southbridge_via_vt8237_lpc_config *sb =
		(struct southbridge_via_vt8237_lpc_config *)dev->device_configuration;

	/* Debounce LID and PWRBTN# Inputs for 16ms. */
	pci_write_config8(dev, 0x80, 0x20);

	/* Set ACPI base address to I/O sb->acpi_io_base. */
	pci_write_config16(dev, 0x88, sb->acpi_io_base | 0x1);

	/* Set ACPI to 9, must set IRQ 9 override to level! Set PSON gating. */
	pci_write_config8(dev, 0x82, 0x40 | sb->acpi_irq);

	/* Primary interupt channel, define wake events 0=IRQ0 15=IRQ15 1=en. */
	pci_write_config16(dev, 0x84, 0x30b2);

	/* SMI output level to low, 7.5us throttle clock */
	pci_write_config8(dev, 0x8d, 0x18);

	/* GP Timer Control 1s */
	pci_write_config8(dev, 0x93, 0x88);

	/*
	 * 7 = SMBus clock from RTC 32.768KHz
	 * 5 = Internal PLL reset from susp
	 * 2 = GPO2 is GPIO
	 */
	pci_write_config8(dev, 0x94, 0xa4);

	/*
	 * 7 = stp to sust delay 1msec
	 * 6 = SUSST# Deasserted Before PWRGD for STD
	 * 4 = PWRGOOD reset on VT8237A/S
	 * 3 = GPO26/GPO27 is GPO 
	 * 2 = Disable Alert on Lan
	 */
	pci_write_config8(dev, 0x95, 0xcc);

	/* Disable GP3 timer. */
	pci_write_config8(dev, 0x98, 0);

	/* Enable ACPI accessm RTC signal gated with PSON. */
	pci_write_config8(dev, 0x81, 0x84);

	/* Clear status events. */
	outw(0xffff, sb->acpi_io_base + 0x00);
	outw(0xffff, sb->acpi_io_base + 0x20);
	outw(0xffff, sb->acpi_io_base + 0x28);
	outl(0xffffffff, sb->acpi_io_base + 0x30);

	/* Disable SCI on GPIO. */
	outw(0x0, sb->acpi_io_base + 0x22);

	/* Disable SMI on GPIO. */
	outw(0x0, sb->acpi_io_base + 0x24);

	/* Disable all global enable SMIs. */
	outw(0x0, sb->acpi_io_base + 0x2a);

	/* All SMI off, both IDE buses ON, PSON rising edge. */
	outw(0x0, sb->acpi_io_base + 0x2c);

	/* Primary activity SMI disable. */
	outl(0x0, sb->acpi_io_base + 0x34);

	/* GP timer reload on none. */
	outl(0x0, sb->acpi_io_base + 0x38);

	/* Disable extended IO traps. */
	outb(0x0, sb->acpi_io_base + 0x42);

	/* SCI is generated for RTC/pwrBtn/slpBtn. */
	outw(0x001, sb->acpi_io_base + 0x04);
}

static void vt8237_common_init(struct device *dev)
{
	u8 enables, byte;

	/* Enable the RTC. */
	byte = pci_read_config8(dev, 0x51);
	byte |= (1 << 3);
	pci_write_config8(dev, 0x51, byte);

	/* Enable addr/data stepping. */
	byte = pci_read_config8(dev, PCI_COMMAND);
	byte |= PCI_COMMAND_WAIT;
	pci_write_config8(dev, PCI_COMMAND, byte);

	/* Enable the internal I/O decode. */
	byte = pci_read_config8(dev, 0x6C);
	byte |= 0x80;
	pci_write_config8(dev, 0x6C, byte);

	/*
	 * Set bit 6 of 0x40 (I/O recovery time).
	 * IMPORTANT FIX - EISA = ECLR reg at 0x4d0! Decoding must be on so
	 * that PCI interrupts can be properly marked as level triggered.
	 */
	byte = pci_read_config8(dev, 0x40);
	byte |= 0x44;
	pci_write_config8(dev, 0x40, byte);

	/* Line buffer control */
	byte = pci_read_config8(dev, 0x42);
	byte |= 0xf8;
	pci_write_config8(dev, 0x42, byte);

	/* Delay transaction control */
	pci_write_config8(dev, 0x43, 0xb);

	/* I/O recovery time, default IDE routing */
	pci_write_config8(dev, 0x4c, 0x44);

	/* ROM memory cycles go to LPC. */
	pci_write_config8(dev, 0x59, 0x80);

	/*
	 * Bit | Meaning
	 * -------------
	 *   3 | Bypass APIC De-Assert Message (1=Enable)
	 *   1 | possibly "INTE#, INTF#, INTG#, INTH# as PCI"
	 *     | bit 1=1 works for Aaron at VIA, bit 1=0 works for jakllsch
	 *   0 | Dynamic Clock Gating Main Switch (1=Enable)
	 */
	pci_write_config8(dev, 0x5b, 0xb);

	/* Set 0x58 to 0x43 APIC and RTC. */
	pci_write_config8(dev, 0x58, 0x43);

	/* Enable serial IRQ, 6PCI clocks. */
	pci_write_config8(dev, 0x52, 0x9);

	/* Power Management setup. */
	setup_pm(dev);

	/* Start the RTC. */
	rtc_init(0);

	/* Initialize ISA DMA. */
	isa_dma_init();
}

static void vt8237_read_resources(struct device *dev)
{
	struct southbridge_via_vt8237_lpc_config *sb =
		(struct southbridge_via_vt8237_lpc_config *)dev->device_configuration;

	struct resource *res;

	pci_dev_read_resources(dev);

#ifdef VT8237_APIC_FIXED
	/* Fixed APIC resource */
	res = new_resource(dev, 0x44);
	/* Possible breakage */
	res->base = sb->apic_base;
	res->size = 256;
	res->limit = res->base + res->size - 1;
	res->align = 8;
	res->gran = 8;
	res->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
		     IORESOURCE_STORED | IORESOURCE_ASSIGNED;
#endif
}

/**
 * The VT8237 is not a PCI bridge and has no resources of its own (other
 * than standard PC I/O addresses), however it does control the ISA bus
 * and so we need to manually call enable childrens resources on that bus.
 */
static void vt8237_enable_resources(struct device *dev)
{
	pci_dev_enable_resources(dev);
	enable_childrens_resources(dev);
}

static void init_keyboard(struct device *dev)
{
	struct southbridge_via_vt8237_lpc_config *sb =
		(struct southbridge_via_vt8237_lpc_config *)dev->device_configuration;

	if (sb->enable_keyboard)
	{
		u8 regval;

		/* Enable PS/2 mouse, Keyboard, and KBC Config */
		regval = pci_read_config8(dev, 0x51);
		regval |= (1 << 2)|(1 << 1)|1;
		pci_write_config8(dev, 0x51, regval);

		init_pc_keyboard(0x60, 0x64, 0);
	}
}

static void southbridge_init_common(struct device *dev)
{
	vt8237_common_init(dev);
	pci_routing_fixup(dev);
	//setup_ioapic(dev);
	setup_i8259();
	init_keyboard(dev);
}

static void vt8237r_init(struct device *dev)
{
	struct southbridge_via_vt8237_lpc_config *sb =
		(struct southbridge_via_vt8237_lpc_config *)dev->device_configuration;

	u8 enables;

	/*
	 * Enable SATA LED, disable special CPU Frequency Change -
	 * GPIO28 GPIO22 GPIO29 GPIO23 are GPIOs.
	 */
	pci_write_config8(dev, 0xe5, 0x9);

	/* REQ5 as PCI request input - should be together with INTE-INTH. */
	pci_write_config8(dev, 0xe4, 0x4);

	/* Set bit 3 of 0x4f (use INIT# as CPU reset). */
	enables = pci_read_config8(dev, 0x4f);
	enables |= 0x08;
	pci_write_config8(dev, 0x4f, enables);

	/*
	 * Set Read Pass Write Control Enable
	 * (force A2 from APIC FSB to low).
	 */
	pci_write_config8(dev, 0x48, 0x8c);

	southbridge_init_common(dev);

	/* FIXME: Intel needs more bit set for C2/C3. */

	/*
	 * Allow SLP# signal to assert LDTSTOP_L.
	 * Will work for C3 and for FID/VID change.
	 */
	outb(0x1, sb->acpi_io_base + 0x11);
}

static void vt8237s_init(struct device *dev)
{
	struct southbridge_via_vt8237_lpc_config *sb =
		(struct southbridge_via_vt8237_lpc_config *)dev->device_configuration;

	u32 tmp;

	/* Put SPI base VT8237S_SPI_MEM_BASE. */
	tmp = pci_read_config32(dev, 0xbc);
	pci_write_config32(dev, 0xbc, (sb->spi_mem_base >> 8) | (tmp & 0xFF000000));

	/* Enable SATA LED, VR timer = 100us, VR timer should be fixed. */
	pci_write_config8(dev, 0xe5, 0x69);

	/*
	 * REQ5 as PCI request input - should be together with INTE-INTH. 
	 * Fast VR timer disable - need for LDTSTOP_L signal.
	 */
	pci_write_config8(dev, 0xe4, 0xa5);

	/* Reduce further the STPCLK/LDTSTP signal to 5us. */
	pci_write_config8(dev, 0xec, 0x4);

	/* Host Bus Power Management Control, maybe not needed */
	pci_write_config8(dev, 0x8c, 0x5);

	/* Enable HPET at hpet_addr (from dts), does not work correctly on R. */
	pci_write_config32(dev, 0x68, (sb->hpet_addr | 0x80));

	southbridge_init_common(dev);

	/* FIXME: Intel needs more bit set for C2/C3. */

	/*
	 * Allow SLP# signal to assert LDTSTOP_L.
	 * Will work for C3 and for FID/VID change. FIXME FIXME, pre rev A2.
	 */
	
	outb(0xff, sb->acpi_io_base + 0x50);
}

struct device_operations vt8237r_lpc = {
	.id = {.type = DEVICE_ID_PCI,
		{.pci = {.vendor = PCI_VENDOR_ID_VIA,
				.device = PCI_DEVICE_ID_VIA_VT8237R_LPC}}},
	.constructor			= default_device_constructor,
	//.phase3_chip_setup_dev		= vt8237r_init,
	.phase3_scan			= scan_static_bus,
	.phase4_read_resources		= vt8237_read_resources,
	.phase4_set_resources		= pci_set_resources,
	.phase5_enable_resources	= vt8237_enable_resources,
	.phase6_init			= NULL,
	.ops_pci		 	= &pci_dev_ops_pci,
};

struct device_operations vt8237s_lpc = {
	.id = {.type = DEVICE_ID_PCI,
		{.pci = {.vendor = PCI_VENDOR_ID_VIA,
				.device = PCI_DEVICE_ID_VIA_VT8237S_LPC}}},
	.constructor			= default_device_constructor,
	.phase3_scan			= scan_static_bus,
	.phase4_read_resources		= vt8237_read_resources,
	.phase4_set_resources		= pci_set_resources,
	.phase5_enable_resources	= vt8237_enable_resources,
	.phase6_init			= vt8237s_init,
};