blob: ef0cef34201808346f41035f1623b5bbdc8cb780 [file] [log] [blame]
Uwe Hermann20a98c92009-06-05 23:02:43 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2009 One Laptop per Child, Association, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Uwe Hermann20a98c92009-06-05 23:02:43 +000018 */
19
20/*
Uwe Hermann0ffff342009-06-07 13:46:50 +000021 * Part of this file is from cx700 port, part of is from cn700 port,
22 * and acpi_is_wakeup_early_via_VX800() is part of Rudolf's S3 patch.
Uwe Hermann20a98c92009-06-05 23:02:43 +000023 */
24
Stefan Reinauer17b60a92010-04-14 17:11:47 +000025#define PAYLOAD_IS_SEABIOS 0
Uwe Hermann20a98c92009-06-05 23:02:43 +000026
27#include <stdint.h>
28#include <device/pci_def.h>
29#include <device/pci_ids.h>
30#include <arch/io.h>
31#include <device/pnp_def.h>
Uwe Hermann20a98c92009-06-05 23:02:43 +000032#include <arch/hlt.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000033#include <console/console.h>
Patrick Georgid0835952010-10-05 09:07:10 +000034#include <lib.h>
Uwe Hermann20a98c92009-06-05 23:02:43 +000035#include "northbridge/via/vx800/vx800.h"
Uwe Hermann20a98c92009-06-05 23:02:43 +000036#include "cpu/x86/bist.h"
Stefan Reinauerae5e11d2012-04-27 02:31:28 +020037#include "drivers/pc80/udelay_io.c"
Uwe Hermann20a98c92009-06-05 23:02:43 +000038#include "lib/delay.c"
Myles Watson42f75c32009-07-07 17:54:26 +000039#include <string.h>
Uwe Hermann0ffff342009-06-07 13:46:50 +000040/* This file contains the board-special SI value for raminit.c. */
Uwe Hermannd64f4032009-06-07 14:38:32 +000041#include "driving_clk_phase_data.c"
Uwe Hermann20a98c92009-06-05 23:02:43 +000042#include "northbridge/via/vx800/raminit.h"
43#include "northbridge/via/vx800/raminit.c"
Uwe Hermannd64f4032009-06-07 14:38:32 +000044#include "wakeup.h"
Edward O'Callaghan9492b9d2014-05-14 01:00:43 +100045#include <superio/winbond/common/winbond.h>
46#include <superio/winbond/w83697hf/w83697hf.h>
Uwe Hermann4e2ffb82009-07-15 00:03:28 +000047
48#define SERIAL_DEV PNP_DEV(0x2e, W83697HF_SP1)
Uwe Hermann9b9791c2010-12-06 18:17:01 +000049#define DUMMY_DEV PNP_DEV(0x2e, 0)
Uwe Hermann4e2ffb82009-07-15 00:03:28 +000050
Uwe Hermann0ffff342009-06-07 13:46:50 +000051/*
52 * This acpi_is_wakeup_early_via_VX800 is from Rudolf's patch on the list:
53 * http://www.coreboot.org/pipermail/coreboot/2008-January/028787.html.
54 */
Stefan Reinauer8816cdf2010-04-14 16:39:30 +000055static int acpi_is_wakeup_early_via_vx800(void)
Uwe Hermann0ffff342009-06-07 13:46:50 +000056{
Uwe Hermann20a98c92009-06-05 23:02:43 +000057 device_t dev;
Uwe Hermann0ffff342009-06-07 13:46:50 +000058 u16 tmp, result;
Uwe Hermann20a98c92009-06-05 23:02:43 +000059
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000060 print_debug("In acpi_is_wakeup_early_via_vx800\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +000061 /* Power management controller */
62 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
63 PCI_DEVICE_ID_VIA_VX855_LPC), 0);
64
65 if (dev == PCI_DEV_INVALID)
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000066 die("Power management controller not found\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +000067
68 /* Set ACPI base address to I/O VX800_ACPI_IO_BASE. */
69 pci_write_config16(dev, 0x88, VX800_ACPI_IO_BASE | 0x1);
70
Paul Menzel475e1b92013-12-27 15:21:58 +010071 /* Enable ACPI access RTC signal gated with PSON. */
Uwe Hermann20a98c92009-06-05 23:02:43 +000072 pci_write_config8(dev, 0x81, 0x84);
73
74 tmp = inw(VX800_ACPI_IO_BASE + 0x04);
Uwe Hermann0ffff342009-06-07 13:46:50 +000075 result = ((tmp & (7 << 10)) >> 10) == 1 ? 3 : 0;
Uwe Hermann20a98c92009-06-05 23:02:43 +000076 print_debug(" boot_mode=");
Uwe Hermann0ffff342009-06-07 13:46:50 +000077 print_debug_hex16(result);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000078 print_debug("\n");
Uwe Hermann0ffff342009-06-07 13:46:50 +000079 return result;
Uwe Hermann20a98c92009-06-05 23:02:43 +000080}
81
Uwe Hermann0ffff342009-06-07 13:46:50 +000082/* All content of this function came from the cx700 port of coreboot. */
Uwe Hermann20a98c92009-06-05 23:02:43 +000083static void enable_mainboard_devices(void)
84{
85 device_t dev;
Uwe Hermann0ffff342009-06-07 13:46:50 +000086#if 0
87 /*
88 * Add and close this switch, since some line cause error, some
89 * written at elsewhere (stage1 stage2).
90 */
Uwe Hermann20a98c92009-06-05 23:02:43 +000091 u8 regdata;
Uwe Hermann0ffff342009-06-07 13:46:50 +000092 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
93 PCI_DEVICE_ID_VIA_VX855_LPC), 0);
Uwe Hermann20a98c92009-06-05 23:02:43 +000094
Uwe Hermann0ffff342009-06-07 13:46:50 +000095 /* Disable GP3. */
Uwe Hermann20a98c92009-06-05 23:02:43 +000096 pci_write_config8(dev, 0x98, 0x00);
97
Uwe Hermann0ffff342009-06-07 13:46:50 +000098 pci_write_config8(dev, 0x50, 0x80); /* Disable mc97. */
Uwe Hermann20a98c92009-06-05 23:02:43 +000099
Uwe Hermann0ffff342009-06-07 13:46:50 +0000100 /*
101 * Martin: Disable internal KBC configuration.
102 *
103 * Internal Config is needed to decide which key can be pressed to
104 * resume from s3.
105 */
106 pci_write_config8(dev, 0x51, 0x2d);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000107
Uwe Hermann0ffff342009-06-07 13:46:50 +0000108 /* This causes irq0 can not be triggerd, since bit 5 was set to 0. */
109 /* pci_write_config8(dev, 0x58, 0x42); */
110
111 /* These writing may... TODO */
112 regdata = pci_read_config8(dev, 0x58);
113 regdata |= 0x41;
114 pci_write_config8(dev, 0x58, regdata);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000115 pci_write_config8(dev, 0x59, 0x80);
116 pci_write_config8(dev, 0x5b, 0x01);
117#endif
Uwe Hermann0ffff342009-06-07 13:46:50 +0000118
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000119 print_debug("In enable_mainboard_devices \n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000120
Uwe Hermann0ffff342009-06-07 13:46:50 +0000121 /* Enable P2P Bridge Header for external PCI bus. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000122 dev = pci_locate_device(PCI_ID(0x1106, 0xa353), 0);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000123 pci_write_config8(dev, 0x4f, 0x41);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000124
Uwe Hermann0ffff342009-06-07 13:46:50 +0000125 /*
126 * "5324" already is the default value of the PCI IDE device, cancel
127 * this PCI write.
128 *
129 * [william 20080124]: Fix bug that can not boot Ubuntu at the
130 * beginning time.
131 */
132#if 0
133 dev = 0;
134 dev = pci_locate_device(PCI_ID(0x1106, PCI_DEVICE_ID_VIA_VX855_IDE), 0);
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000135
136 uint16_t values;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000137 values = pci_read_config16(dev, 0xBA);
138 values &= ~0xffff;
139 values |= 0x5324;
140 pci_write_config16(dev, 0xBA, values);
141#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000142}
143
Uwe Hermann0ffff342009-06-07 13:46:50 +0000144/*
145 * Most content of this function came from the cx700 port of coreboot.
146 * Turn on the shadow of E-seg.
147 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000148static void enable_shadow_ram(void)
149{
150 uint8_t shadowreg;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000151
152 /*
153 * Changed the value from 0x2a to 0x3f. "read only" may block "write"?
154 * and maybe in C-seg "write" will be needed?
155 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000156 pci_write_config8(PCI_DEV(0, 0, 3), 0x80, 0xff);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000157
Uwe Hermann20a98c92009-06-05 23:02:43 +0000158 /* 0xf0000-0xfffff - ACPI tables */
159 shadowreg = pci_read_config8(PCI_DEV(0, 0, 3), 0x83);
160 shadowreg |= 0x30;
161 pci_write_config8(PCI_DEV(0, 0, 3), 0x83, shadowreg);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000162
163 /* 0xe0000-0xeffff - elfload? */
164 /*
165 * In s3 resume process, wakeup.c, I use E-seg to hold the code
166 * (which can not locate in the area to be covered) that will copy
167 * 0-A-seg and F-seg from TOP-mem back to their normal location.
168 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000169 pci_write_config8(PCI_DEV(0, 0, 3), 0x82, 0xff);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000170
Uwe Hermann20a98c92009-06-05 23:02:43 +0000171#if 0
Uwe Hermann0ffff342009-06-07 13:46:50 +0000172 /* Enable shadow RAM as normal DRAM */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000173 /* 0xc0000-0xcffff - VGA BIOS */
174 pci_write_config8(PCI_DEV(0, 0, 3), 0x80, 0x2a);
175 pci_write_config8(PCI_DEV(0, 0, 7), 0x61, 0x00);
176 /* 0xd0000-0xdffff - ?? */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000177 /* pci_write_config8(PCI_DEV(0, 0, 3), 0x81, 0xff); */
178 /* pci_write_config8(PCI_DEV(0, 0, 7), 0x62, 0xff); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000179
Uwe Hermann0ffff342009-06-07 13:46:50 +0000180 /* Do it again for the vlink controller. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000181 shadowreg = pci_read_config8(PCI_DEV(0, 0, 7), 0x63);
182 shadowreg |= 0x30;
183 pci_write_config8(PCI_DEV(0, 0, 7), 0x63, shadowreg);
184#endif
185}
186
Uwe Hermann0ffff342009-06-07 13:46:50 +0000187/*
188 * Added this table 2008-11-28.
189 * This table contains the value needed to be set before begin to init DRAM.
190 * Note: REV_Bx should be checked for changes when porting a new board!
191 */
192static const struct VIA_PCI_REG_INIT_TABLE mNbStage1InitTbl[] = {
193 /* VT3409 no PCI-E */
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000194 { 0x00, 0xFF, NB_APIC_REG(0x61), 0xFF, 0x0E }, // Set Exxxxxxx as pcie mmio config range
195 { 0x00, 0xFF, NB_APIC_REG(0x60), 0xF4, 0x0B }, // Support extended cfg address of pcie
196 // { 0x00, 0xFF, NB_APIC_REG(0x42), 0xF9, 0x02 }, // APIC Interrupt((BT_INTR)) Control
Uwe Hermann0ffff342009-06-07 13:46:50 +0000197 // Set ROMSIP value by software
Uwe Hermann20a98c92009-06-05 23:02:43 +0000198
Uwe Hermann0ffff342009-06-07 13:46:50 +0000199 /*
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000200 { 0x00, 0xFF, NB_HOST_REG(0x70), 0x77, 0x33 }, // 2x Host Adr Strobe/Pad Pullup Driving = 3
201 { 0x00, 0xFF, NB_HOST_REG(0x71), 0x77, 0x33 }, // 2x Host Adr Strobe/Pad Pulldown Driving = 3
202 { 0x00, 0xFF, NB_HOST_REG(0x72), 0x77, 0x33 }, // 4x Host Dat Strobe/Pad Pullup Driving = 3
203 { 0x00, 0xFF, NB_HOST_REG(0x73), 0x77, 0x33 }, // 4x Host Dat Strobe/Pad Pulldown Driving = 3
204 { 0x00, 0xFF, NB_HOST_REG(0x74), 0xFF, 0x21 }, // Memory I/F timing ctrl
205 { 0x00, 0xFF, NB_HOST_REG(0x74), 0xFF, 0xE1 }, // Memory I/F timing ctrl
206 { 0x00, 0xFF, NB_HOST_REG(0x75), 0xFF, 0x18 }, // AGTL+ I/O Circuit
207 { 0x00, 0xFF, NB_HOST_REG(0x76), 0xFB, 0x0C }, // AGTL+ Compensation Status
208 { 0x00, 0xFF, NB_HOST_REG(0x78), 0xFF, 0x33 }, // 2X AGTL+ Auto Compensation Offset
209 { 0x00, 0xFF, NB_HOST_REG(0x79), 0xFF, 0x33 }, // 4X AGTL+ Auto Compensation Offset
210 { 0x00, 0xFF, NB_HOST_REG(0x7A), 0x3F, 0x72 }, // AGTL Compensation Status
211 { 0x00, 0xFF, NB_HOST_REG(0x7A), 0x3F, 0x77 }, // AGTL Compensation Status
212 { 0x00, 0xFF, NB_HOST_REG(0x7B), 0xFF, 0x44 }, // Input Host Address / Host Strobe Delay Control for HA Group
213 { 0x00, 0xFF, NB_HOST_REG(0x7B), 0xFF, 0x22 }, // Input Host Address / Host Strobe Delay Control for HA Group
214 { 0x00, 0xFF, NB_HOST_REG(0x7C), 0xFF, 0x00 }, // Output Delay Control of PAD for HA Group
215 { 0x00, 0xFF, NB_HOST_REG(0x7D), 0xFF, 0xAA }, // Host Address / Address Clock Output Delay Control (Only for P4 Bus)
216 { 0x00, 0xFF, NB_HOST_REG(0x7E), 0xFF, 0x10 }, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
217 { 0x00, 0xFF, NB_HOST_REG(0x7E), 0xFF, 0x40 }, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
218 { 0x00, 0xFF, NB_HOST_REG(0x7F), 0xFF, 0x10 }, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
219 { 0x00, 0xFF, NB_HOST_REG(0x7F), 0xFF, 0x40 }, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
220 { 0x00, 0xFF, NB_HOST_REG(0x80), 0x3F, 0x44 }, // Host Data Receiving Strobe Delay Ctrl 1
221 { 0x00, 0xFF, NB_HOST_REG(0x81), 0xFF, 0x44 }, // Host Data Receiving Strobe Delay Ctrl 2
222 { 0x00, 0xFF, NB_HOST_REG(0x82), 0xFF, 0x00 }, // Output Delay of PAD for HDSTB
223 { 0x00, 0xFF, NB_HOST_REG(0x83), 0xFF, 0x00 }, // Output Delay of PAD for HD
224 { 0x00, 0xFF, NB_HOST_REG(0x84), 0xFF, 0x44 }, // Host Data / Strobe CKG Control (Group 0)
225 { 0x00, 0xFF, NB_HOST_REG(0x85), 0xFF, 0x44 }, // Host Data / Strobe CKG Control (Group 1)
226 { 0x00, 0xFF, NB_HOST_REG(0x86), 0xFF, 0x44 }, // Host Data / Strobe CKG Control (Group 2)
227 { 0x00, 0xFF, NB_HOST_REG(0x87), 0xFF, 0x44 }, // Host Data / Strobe CKG Control (Group 3)
Uwe Hermannd64f4032009-06-07 14:38:32 +0000228 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000229
Uwe Hermann0ffff342009-06-07 13:46:50 +0000230 // CPU Host Bus Control
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000231 { 0x00, 0xFF, NB_HOST_REG(0x50), 0x1F, 0x08 }, // Request phase ctrl: Dynamic Defer Snoop Stall Count = 8
232 // { 0x00, 0xFF, NB_HOST_REG(0x51), 0xFF, 0x7F }, // CPU I/F Ctrl-1: Disable Fast DRDY and RAW
233 { 0x00, 0xFF, NB_HOST_REG(0x51), 0xFF, 0x7C }, // CPU I/F Ctrl-1: Disable Fast DRDY and RAW
234 { 0x00, 0xFF, NB_HOST_REG(0x52), 0xCB, 0xCB }, // CPU I/F Ctrl-2: Enable all for performance
235 // { 0x00, 0xFF, NB_HOST_REG(0x53), 0xFF, 0x88 }, // Arbitration: Host/Master Occupancy timer = 8*4 HCLK
236 { 0x00, 0xFF, NB_HOST_REG(0x53), 0xFF, 0x44 }, // Arbitration: Host/Master Occupancy timer = 4*4 HCLK
237 { 0x00, 0xFF, NB_HOST_REG(0x54), 0x1E, 0x1C }, // Misc Ctrl: Enable 8QW burst Mem Access
238 // { 0x00, 0xFF, NB_HOST_REG(0x55), 0x06, 0x06 }, // Miscellaneous Control 2
239 { 0x00, 0xFF, NB_HOST_REG(0x55), 0x06, 0x04 }, // Miscellaneous Control 2
240 { 0x00, 0xFF, NB_HOST_REG(0x56), 0xF7, 0x63 }, // Write Policy 1
241 // { 0x00, 0xFF, NB_HOST_REG(0x59), 0x3D, 0x01 }, // CPU Miscellaneous Control 1, enable Lowest-Priority IPL
242 // { 0x00, 0xFF, NB_HOST_REG(0x5c), 0xFF, 0x00 }, // CPU Miscellaneous Control 2
243 { 0x00, 0xFF, NB_HOST_REG(0x5D), 0xFF, 0xA2 }, // Write Policy
244 { 0x00, 0xFF, NB_HOST_REG(0x5E), 0xFF, 0x88 }, // Bandwidth Timer
245 { 0x00, 0xFF, NB_HOST_REG(0x5F), 0x46, 0x46 }, // CPU Misc Ctrl
246 // { 0x00, 0xFF, NB_HOST_REG(0x90), 0xFF, 0x0B }, // CPU Miscellaneous Control 3
247 // { 0x00, 0xFF, NB_HOST_REG(0x96), 0x0B, 0x0B }, // CPU Miscellaneous Control 2
248 { 0x00, 0xFF, NB_HOST_REG(0x96), 0x0B, 0x0A }, // CPU Miscellaneous Control 2
249 { 0x00, 0xFF, NB_HOST_REG(0x98), 0xC1, 0x41 }, // CPU Miscellaneous Control 3
250 { 0x00, 0xFF, NB_HOST_REG(0x99), 0x0E, 0x06 }, // CPU Miscellaneous Control 4
Uwe Hermann20a98c92009-06-05 23:02:43 +0000251
Uwe Hermann0ffff342009-06-07 13:46:50 +0000252 // Set APIC and SMRAM
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000253 { 0x00, 0xFF, NB_HOST_REG(0x97), 0xFF, 0x00 }, // APIC Related Control
254 { 0x00, 0xFF, NB_DRAMC_REG(0x86), 0xD6, 0x29 }, // SMM and APIC Decoding: enable APIC, MSI and SMRAM A-Seg
255 { 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } // End of the table
Uwe Hermann20a98c92009-06-05 23:02:43 +0000256};
257
Uwe Hermann0ffff342009-06-07 13:46:50 +0000258#define USE_VCP 1 /* 0 means "use DVP". */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000259#define USE_COM1 1
260#define USE_COM2 0
261
262#define gCom1Base 0x3f8
263#define gCom2Base 0x2f8
Uwe Hermann0ffff342009-06-07 13:46:50 +0000264
Stefan Reinauer17b60a92010-04-14 17:11:47 +0000265#if 0
266static void EmbedComInit(void)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000267{
Uwe Hermann0ffff342009-06-07 13:46:50 +0000268 u8 ByteVal;
269 u16 ComBase;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000270
Uwe Hermann0ffff342009-06-07 13:46:50 +0000271 /* Enable NB multiple function control. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000272 ByteVal = pci_read_config8(PCI_DEV(0, 0, 0), 0x4f);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000273 ByteVal = ByteVal | 0x01;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000274 pci_write_config8(PCI_DEV(0, 0, 0), 0x4f, ByteVal);
275
Uwe Hermann0ffff342009-06-07 13:46:50 +0000276 /* VGA enable. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000277 ByteVal = pci_read_config8(PCI_DEV(0, 0, 3), 0xA1);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000278 ByteVal = ByteVal | 0x80;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000279 pci_write_config8(PCI_DEV(0, 0, 3), 0xA1, ByteVal);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000280
Uwe Hermann20a98c92009-06-05 23:02:43 +0000281 ByteVal = pci_read_config8(PCI_DEV(0, 0, 3), 0xA7);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000282 ByteVal = ByteVal | 0x08;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000283 pci_write_config8(PCI_DEV(0, 0, 3), 0xA7, ByteVal);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000284
285 /* Enable P2P IO/mem. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000286 ByteVal = pci_read_config8(PCI_DEV(0, 1, 0), 0x4);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000287 ByteVal = ByteVal | 0x07;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000288 pci_write_config8(PCI_DEV(0, 1, 0), 0x4, ByteVal);
289
Uwe Hermann0ffff342009-06-07 13:46:50 +0000290 /* Turn on graphic chip I/O port port access. */
291 ByteVal = inb(0x3C3);
292 ByteVal = ByteVal | 0x01;
293 outb(ByteVal, 0x3C3);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000294
Uwe Hermann0ffff342009-06-07 13:46:50 +0000295 /* Turn off graphic chip register protection. */
296 outb(0x10, 0x3C4);
297 ByteVal = inb(0x3C5);
298 ByteVal = ByteVal | 0x01;
299 outb(ByteVal, 0x3C5);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000300
Uwe Hermann0ffff342009-06-07 13:46:50 +0000301 /* South module pad share enable 0x3C5.78[7]. */
302 outb(0x78, 0x3C4);
303 ByteVal = inb(0x3C5);
304 ByteVal = ByteVal | 0x80;
305 outb(ByteVal, 0x3C5);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000306
Uwe Hermann0ffff342009-06-07 13:46:50 +0000307 /* Enable UART function multiplex with DVP or VCP pad D17F0Rx46[7,6]. */
308 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0x46);
309 if (USE_VCP == 1)
310 ByteVal = (ByteVal & 0x3F) | 0x40; /* Multiplex with VCP. */
311 else
312 ByteVal = (ByteVal & 0x3F) | 0xC0; /* Multiplex with DVP. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000313 pci_write_config8(PCI_DEV(0, 17, 0), 0x46, ByteVal);
314
Uwe Hermann0ffff342009-06-07 13:46:50 +0000315 /* Enable embedded COM1 and COM2 D17F0RxB0[5,4]. */
316 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xB0);
317 ByteVal = ByteVal & 0xcf;
318 /* Multiplex with VCP. */
319 if (USE_COM1 == 1)
320 ByteVal = ByteVal | 0x10;
321 if (USE_COM2 == 1)
322 ByteVal = ByteVal | 0x20;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000323 pci_write_config8(PCI_DEV(0, 17, 0), 0xB0, ByteVal);
324
Uwe Hermann0ffff342009-06-07 13:46:50 +0000325 if (USE_COM1 == 1)
326 ComBase = gCom1Base;
327 else
328 ComBase = gCom2Base;
329
Uwe Hermann20a98c92009-06-05 23:02:43 +0000330//noharddrive
331
Uwe Hermannd64f4032009-06-07 14:38:32 +0000332 /* Set embedded COM1 I/O base = 0x3E8 (D17F0RB4, ByteVal = 0xFD) */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000333 if (USE_COM1 == 1) {
334 ByteVal = (u8) ((gCom1Base >> 3) | 0x80);
335 pci_write_config8(PCI_DEV(0, 17, 0), 0xB4, ByteVal);
336 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xb2);
337 ByteVal = (ByteVal & 0xf0) | 0x04;
338 pci_write_config8(PCI_DEV(0, 17, 0), 0xB2, ByteVal);
339 }
Uwe Hermann20a98c92009-06-05 23:02:43 +0000340
Uwe Hermannd64f4032009-06-07 14:38:32 +0000341 /* Set embedded COM2 I/O base = 0x2E8 (D17F0RB5, ByteVal = 0xDD). */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000342 if (USE_COM2 == 1) {
343 ByteVal = (u8) ((gCom2Base >> 3) | 0x80);
344 pci_write_config8(PCI_DEV(0, 17, 0), 0xB5, ByteVal);
345 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xb2);
346 ByteVal = (ByteVal & 0x0f) | 0x30;
347 pci_write_config8(PCI_DEV(0, 17, 0), 0xB2, ByteVal);
348 }
349 /* No port 80 biger then 0x10. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000350
Uwe Hermann0ffff342009-06-07 13:46:50 +0000351 /* Disable interrupt. */
352 ByteVal = inb(ComBase + 3);
353 outb(ByteVal & 0x7F, ComBase + 3);
354 outb(0x00, ComBase + 1);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000355
Uwe Hermann0ffff342009-06-07 13:46:50 +0000356 /* Set BAUD rate. */
357 ByteVal = inb(ComBase + 3);
358 outb(ByteVal | 0x80, ComBase + 3);
359 outb(0x01, ComBase);
360 outb(0x00, ComBase + 1);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000361
Uwe Hermann0ffff342009-06-07 13:46:50 +0000362 /* Set frame format. */
363 ByteVal = inb(ComBase + 3);
364 outb(ByteVal & 0x3F, ComBase + 3);
365 outb(0x03, ComBase + 3);
366 outb(0x00, ComBase + 2);
367 outb(0x00, ComBase + 4);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000368
Uwe Hermann0ffff342009-06-07 13:46:50 +0000369 /* SOutput("Embedded COM output\n"); */
370 /* while(1); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000371}
Stefan Reinauer17b60a92010-04-14 17:11:47 +0000372#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000373
Uwe Hermann0ffff342009-06-07 13:46:50 +0000374/* cache_as_ram.inc jumps to here. */
Stefan Reinauer314e5512010-04-09 20:36:29 +0000375void main(unsigned long bist)
Uwe Hermann0ffff342009-06-07 13:46:50 +0000376{
Uwe Hermann20a98c92009-06-05 23:02:43 +0000377 u16 boot_mode;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000378 u8 rambits, Data8, Data;
379 device_t device;
380 /* device_t dev; */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000381
Uwe Hermann0ffff342009-06-07 13:46:50 +0000382 /*
383 * Enable multifunction for northbridge. These 4 lines (until
384 * console_init()) are the same with epia-cn port.
385 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000386 pci_write_config8(PCI_DEV(0, 0, 0), 0x4f, 0x01);
Uwe Hermann4e2ffb82009-07-15 00:03:28 +0000387 /* EmbedComInit(); */
Uwe Hermann9b9791c2010-12-06 18:17:01 +0000388 w83697hf_set_clksel_48(DUMMY_DEV);
Edward O'Callaghan9492b9d2014-05-14 01:00:43 +1000389 winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000390 /* enable_vx800_serial(); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000391
Uwe Hermann0ffff342009-06-07 13:46:50 +0000392 /*
393 * 1. D15F0
394 * a) RxBAh = 71h
395 * b) RxBBh = 05h
396 * c) RxBEh = 71h
397 * d) RxBFh = 05h
398 *
399 * 2. D17F0
400 * a) RxA0h = 06h
401 * b) RxA1h = 11h
402 * c) RxA2h = 27h
403 * d) RxA3h = 32h
404 * e) Rx79h = 40h
405 * f) Rx72h = 27h
406 * g) Rx73h = 32h
407 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000408
Uwe Hermann0ffff342009-06-07 13:46:50 +0000409 pci_write_config16(PCI_DEV(0, 0xf, 0), 0xBA,
410 PCI_DEVICE_ID_VIA_VX855_IDE);
411 pci_write_config16(PCI_DEV(0, 0xf, 0), 0xBE,
412 PCI_DEVICE_ID_VIA_VX855_IDE);
413 pci_write_config16(PCI_DEV(0, 0x11, 0), 0xA0, PCI_VENDOR_ID_VIA);
414 pci_write_config16(PCI_DEV(0, 0x11, 0), 0xA2,
415 PCI_DEVICE_ID_VIA_VX855_LPC);
416 Data8 = pci_read_config8(PCI_DEV(0, 0x11, 0), 0x79);
417 Data8 &= ~0x40;
418 Data8 |= 0x40;
419 pci_write_config8(PCI_DEV(0, 0x11, 0), 0x79, Data8);
420 pci_write_config16(PCI_DEV(0, 0x11, 0), 0x72,
421 PCI_DEVICE_ID_VIA_VX855_LPC);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000422
Uwe Hermann0ffff342009-06-07 13:46:50 +0000423 /*
424 * There are two function definitions of console_init(), while the
Stefan Reinauer8677a232010-12-11 20:33:41 +0000425 * src/arch/x86/lib is the right one.
Uwe Hermann0ffff342009-06-07 13:46:50 +0000426 */
427 console_init();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000428
Uwe Hermann0ffff342009-06-07 13:46:50 +0000429 /* Decide if this is a s3 wakeup or a normal boot. */
430 boot_mode = acpi_is_wakeup_early_via_vx800();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000431
Uwe Hermann0ffff342009-06-07 13:46:50 +0000432 /*
433 * 2008-11-27 Add this, to transfer "cpu restart" to "cold boot".
434 * When this boot is not a S3 resume, and PCI registers had been
435 * written, then this must be a CPU restart (result of OS reboot cmd),
436 * so we need a real "cold boot".
437 */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000438 if ((boot_mode != 3)
439 && (pci_read_config8(PCI_DEV(0, 0, 3), 0x80) != 0)) {
440 outb(6, 0xcf9);
441 }
Uwe Hermann20a98c92009-06-05 23:02:43 +0000442
Uwe Hermann0ffff342009-06-07 13:46:50 +0000443 /* x86 cold boot I/O cmd. */
444 /* These 2 lines are the same with epia-cn port. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000445 enable_smbus();
Uwe Hermann0ffff342009-06-07 13:46:50 +0000446
447 /* This fix does help vx800!, but vx855 doesn't need this. */
448 /* smbus_fixup(&ctrl); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000449
Uwe Hermann20a98c92009-06-05 23:02:43 +0000450 /* Halt if there was a built-in self test failure. */
451 report_bist_failure(bist);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000452
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000453 print_debug("Enabling mainboard devices\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000454 enable_mainboard_devices();
455
Uwe Hermann0ffff342009-06-07 13:46:50 +0000456 /*
457 * Get NB chip revision from D0F4RxF6, revision will be used in
458 * via_pci_inittable.
459 */
460 device = PCI_DEV(0, 0, 4);
461 Data = pci_read_config8(device, 0xf6);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000462 print_debug("NB chip revision =");
Uwe Hermann0ffff342009-06-07 13:46:50 +0000463 print_debug_hex8(Data);
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000464 print_debug("\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000465
Uwe Hermann0ffff342009-06-07 13:46:50 +0000466 /* Make NB ready before DRAM init. */
467 via_pci_inittable(Data, mNbStage1InitTbl);
468
469 /*
470 * When resume from s3, DRAM init is skipped, so need to recovery
471 * any PCI register related to DRAM init. d0f3 didn't lose its power
472 * during whole s3 time, so any register not belonging to d0f3 needs
473 * to be recovered.
474 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000475#if 1
Uwe Hermann0ffff342009-06-07 13:46:50 +0000476 if (boot_mode == 3) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000477 u8 i;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000478 u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 };
Uwe Hermann20a98c92009-06-05 23:02:43 +0000479 DRAM_SYS_ATTR DramAttr;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000480
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000481 print_debug("This is an S3 wakeup\n");
Uwe Hermann0ffff342009-06-07 13:46:50 +0000482
483 memset(&DramAttr, 0, sizeof(DRAM_SYS_ATTR));
484 /*
485 * Step 1: DRAM detection; DDR1 or DDR2; Get SPD Data;
486 * Rank Presence; 64 or 128bit; Unbuffered or registered;
487 * 1T or 2T.
488 */
489 DRAMDetect(&DramAttr);
490
491 /*
492 * Begin to get RAM size, 43,42 41 40 contains the end
493 * address of last rank in DDR2 slot.
494 */
495 device = PCI_DEV(0, 0, 3);
496 for (rambits = 0, i = 0; i < ARRAY_SIZE(ramregs); i++) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000497 rambits = pci_read_config8(device, ramregs[i]);
498 if (rambits != 0)
499 break;
500 }
501
Uwe Hermann0ffff342009-06-07 13:46:50 +0000502 DRAMDRDYSetting(&DramAttr);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000503
Uwe Hermann0ffff342009-06-07 13:46:50 +0000504 Data = 0x80; /* This value is same with DevInit.c. */
505 pci_write_config8(PCI_DEV(0, 0, 4), 0xa3, Data);
506 pci_write_config8(PCI_DEV(0, 17, 7), 0x60, rambits << 2);
507 Data = pci_read_config8(MEMCTRL, 0x88);
508 pci_write_config8(PCI_DEV(0, 17, 7), 0xE5, Data);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000509
Uwe Hermann0ffff342009-06-07 13:46:50 +0000510 /* Just copy this function from draminit to here! */
511 DRAMRegFinalValue(&DramAttr);
512
513 /* Just copy this function from draminit to here! */
514 SetUMARam();
515
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000516 print_debug("Resume from S3, RAM init was ignored\n");
Uwe Hermann0ffff342009-06-07 13:46:50 +0000517 } else {
518 ddr2_ram_setup();
519 ram_check(0, 640 * 1024);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000520 }
521#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000522
Uwe Hermann0ffff342009-06-07 13:46:50 +0000523 /* ddr2_ram_setup(); */
524 /* This line is the same with cx700 port. */
525 enable_shadow_ram();
526
Uwe Hermann0ffff342009-06-07 13:46:50 +0000527 /*
528 * For coreboot most time of S3 resume is the same as normal boot,
529 * so some memory area under 1M become dirty, so before this happen,
Stefan Reinauer14e22772010-04-27 06:56:47 +0000530 * I need to backup the content of mem to top-mem.
Uwe Hermann0ffff342009-06-07 13:46:50 +0000531 *
532 * I will reserve the 1M top-men in LBIO table in coreboot_table.c
533 * and recovery the content of 1M-mem in wakeup.c.
534 */
535#if PAYLOAD_IS_SEABIOS == 1
536 if (boot_mode == 3) {
537 /* An idea of Libo.Feng at amd.com in http://www.coreboot.org/pipermail/coreboot/2008-December/043111.html
538 *
539 * I want move the 1M data, I have to set some MTRRs myself.
540 * Setting MTRR before back memory save s3 resume time about
541 * 0.14 seconds.
542 *
543 * !!! Since CAR stack uses cache, and we are using cache
544 * here, we must be careful:
545 *
546 * 1. during this MTRR code, must no function call (after
547 * this MTRR, I think it should be OK to use function).
548 * 2. Before stack switch, no use variable that have value
549 * set before this.
550 * 3. Due to 2, take care of "cpu_reset", I directlly set it
551 * to ZERO.
Uwe Hermann20a98c92009-06-05 23:02:43 +0000552 */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000553 u32 memtop = *(u32 *) WAKE_MEM_INFO;
554 u32 memtop1 = *(u32 *) WAKE_MEM_INFO - 0x100000;
555 u32 memtop2 = *(u32 *) WAKE_MEM_INFO - 0x200000;
556 u32 memtop3 = *(u32 *) WAKE_MEM_INFO - 64 * 1024 - 0x100000;
557 u32 memtop4 =
558 *(u32 *) WAKE_MEM_INFO - 64 * 1024 - 0x100000 + 0xe0000;
559#if 0
560 __asm__ volatile (
561 "movl $0x204, %%ecx\n\t"
562 "xorl %%edx, %%edx\n\t"
563 "movl %0,%%eax\n\t"
564 "orl $(0 | 6), %%eax\n\t"
565 "wrmsr\n\t"
Uwe Hermann20a98c92009-06-05 23:02:43 +0000566
Uwe Hermann0ffff342009-06-07 13:46:50 +0000567 "movl $0x205, %%ecx\n\t"
568 "xorl %%edx, %%edx\n\t"
569 "movl $0x100000,%%eax\n\t"
570 "decl %%eax\n\t"
571 "notl %%eax\n\t"
572 "orl $(0 | 0x800), %%eax\n\t"
573 "wrmsr\n\t"
574 ::"g"(memtop2)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000575 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000576
Uwe Hermann0ffff342009-06-07 13:46:50 +0000577 __asm__ volatile (
578 "movl $0x206, %%ecx\n\t"
579 "xorl %%edx, %%edx\n\t"
580 "movl %0,%%eax\n\t"
581 "orl $(0 | 6), %%eax\n\t"
582 "wrmsr\n\t"
583
584 "movl $0x207, %%ecx\n\t"
585 "xorl %%edx, %%edx\n\t"
586 "movl $0x100000,%%eax\n\t"
587 "decl %%eax\n\t"
588 "notl %%eax\n\t"
589 "orl $(0 | 0x800), %%eax\n\t"
590 "wrmsr\n\t"
591 ::"g"(memtop1)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000592 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000593
Uwe Hermann0ffff342009-06-07 13:46:50 +0000594 __asm__ volatile (
595 "movl $0x208, %ecx\n\t"
596 "xorl %edx, %edx\n\t"
597 "movl $0,%eax\n\t"
598 "orl $(0 | 6), %eax\n\t"
599 "wrmsr\n\t"
600
601 "movl $0x209, %ecx\n\t"
602 "xorl %edx, %edx\n\t"
603 "movl $0x100000,%eax\n\t"
604 "decl %eax\n\t"
605 "notl %eax\n\t"
606 "orl $(0 | 0x800), %eax\n\t"
607 "wrmsr\n\t"
Uwe Hermann20a98c92009-06-05 23:02:43 +0000608 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000609#endif
610
Stefan Reinauer14e22772010-04-27 06:56:47 +0000611 /*
Uwe Hermann0ffff342009-06-07 13:46:50 +0000612 * WAKE_MEM_INFO is inited in get_set_top_available_mem()
613 * in tables.c these two memcpy() not not be enabled if set
614 * the MTRR around this two lines.
615 */
616#if 0
617 __asm__ volatile (
618 "movl $0, %%esi\n\t"
619 "movl %0, %%edi\n\t"
620 "movl $0xa0000, %%ecx\n\t"
621 "shrl $2, %%ecx\n\t"
622 "rep movsd\n\t"
623 ::"g"(memtop3)
624 );
625
626 __asm__ volatile (
627 "movl $0xe0000, %%esi\n\t"
628 "movl %0, %%edi\n\t"
629 "movl $0x20000, %%ecx\n\t"
630 "shrl $2, %%ecx\n\t"
631 "rep movsd\n\t"
632 ::"g"(memtop4)
633 );
634#endif
635 /* This can have function call, because no variable used before this. */
Stefan Reinauer64ed2b72010-03-31 14:47:43 +0000636 print_debug("Copy memory to high memory to protect s3 wakeup vector code \n");
Uwe Hermann0ffff342009-06-07 13:46:50 +0000637 memcpy((unsigned char *)((*(u32 *) WAKE_MEM_INFO) - 64 * 1024 -
638 0x100000), (unsigned char *)0, 0xa0000);
639 memcpy((unsigned char *)((*(u32 *) WAKE_MEM_INFO) - 64 * 1024 -
640 0x100000 + 0xe0000), (unsigned char *)0xe0000, 0x20000);
641
642 /* Restore the MTRR previously modified. */
643#if 0
644 __asm__ volatile (
645 "wbinvd\n\t"
646 "xorl %edx, %edx\n\t"
647 "xorl %eax, %eax\n\t"
648 "movl $0x204, %ecx\n\t"
649 "wrmsr\n\t"
650 "movl $0x205, %ecx\n\t"
651 "wrmsr\n\t"
652 "movl $0x206, %ecx\n\t"
653 "wrmsr\n\t"
654 "movl $0x207, %ecx\n\t"
655 "wrmsr\n\t"
656 "movl $0x208, %ecx\n\t"
657 "wrmsr\n\t"
658 "movl $0x209, %ecx\n\t"
659 "wrmsr\n\t"
660 );
661#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000662 }
Uwe Hermann0ffff342009-06-07 13:46:50 +0000663#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000664}