blob: 1c1011549265fc8366d7cfef4a58adbfd65084c9 [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.
Uwe Hermann20a98c92009-06-05 23:02:43 +000014 */
15
16/*
Uwe Hermann0ffff342009-06-07 13:46:50 +000017 * Part of this file is from cx700 port, part of is from cn700 port,
18 * and acpi_is_wakeup_early_via_VX800() is part of Rudolf's S3 patch.
Uwe Hermann20a98c92009-06-05 23:02:43 +000019 */
20
Stefan Reinauer17b60a92010-04-14 17:11:47 +000021#define PAYLOAD_IS_SEABIOS 0
Uwe Hermann20a98c92009-06-05 23:02:43 +000022
23#include <stdint.h>
24#include <device/pci_def.h>
25#include <device/pci_ids.h>
Kyösti Mälkki207880c2013-12-10 09:03:17 +020026#include <arch/acpi.h>
Uwe Hermann20a98c92009-06-05 23:02:43 +000027#include <arch/io.h>
28#include <device/pnp_def.h>
Patrick Georgi12584e22010-05-08 09:14:51 +000029#include <console/console.h>
Patrick Georgid0835952010-10-05 09:07:10 +000030#include <lib.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110031#include <northbridge/via/vx800/vx800.h>
32#include <cpu/x86/bist.h>
Kyösti Mälkki52769412016-06-17 07:55:03 +030033#include <cpu/amd/car.h>
Edward O'Callaghanebe3a7a2015-01-05 00:27:54 +110034#include <delay.h>
Myles Watson42f75c32009-07-07 17:54:26 +000035#include <string.h>
Uwe Hermann0ffff342009-06-07 13:46:50 +000036/* This file contains the board-special SI value for raminit.c. */
Uwe Hermannd64f4032009-06-07 14:38:32 +000037#include "driving_clk_phase_data.c"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110038#include <northbridge/via/vx800/raminit.h>
Uwe Hermann20a98c92009-06-05 23:02:43 +000039#include "northbridge/via/vx800/raminit.c"
Uwe Hermannd64f4032009-06-07 14:38:32 +000040#include "wakeup.h"
Edward O'Callaghan9492b9d2014-05-14 01:00:43 +100041#include <superio/winbond/common/winbond.h>
42#include <superio/winbond/w83697hf/w83697hf.h>
Uwe Hermann4e2ffb82009-07-15 00:03:28 +000043
44#define SERIAL_DEV PNP_DEV(0x2e, W83697HF_SP1)
Uwe Hermann9b9791c2010-12-06 18:17:01 +000045#define DUMMY_DEV PNP_DEV(0x2e, 0)
Uwe Hermann4e2ffb82009-07-15 00:03:28 +000046
Uwe Hermann0ffff342009-06-07 13:46:50 +000047/*
48 * This acpi_is_wakeup_early_via_VX800 is from Rudolf's patch on the list:
49 * http://www.coreboot.org/pipermail/coreboot/2008-January/028787.html.
50 */
Stefan Reinauer8816cdf2010-04-14 16:39:30 +000051static int acpi_is_wakeup_early_via_vx800(void)
Uwe Hermann0ffff342009-06-07 13:46:50 +000052{
Antonello Dettorid4d265e2016-11-08 18:44:46 +010053 pci_devfn_t dev;
Uwe Hermann0ffff342009-06-07 13:46:50 +000054 u16 tmp, result;
Uwe Hermann20a98c92009-06-05 23:02:43 +000055
Stefan Reinauer069f4762015-01-05 13:02:32 -080056 printk(BIOS_DEBUG, "In acpi_is_wakeup_early_via_vx800\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +000057 /* Power management controller */
58 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
59 PCI_DEVICE_ID_VIA_VX855_LPC), 0);
60
61 if (dev == PCI_DEV_INVALID)
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000062 die("Power management controller not found\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +000063
64 /* Set ACPI base address to I/O VX800_ACPI_IO_BASE. */
65 pci_write_config16(dev, 0x88, VX800_ACPI_IO_BASE | 0x1);
66
Paul Menzel475e1b92013-12-27 15:21:58 +010067 /* Enable ACPI access RTC signal gated with PSON. */
Uwe Hermann20a98c92009-06-05 23:02:43 +000068 pci_write_config8(dev, 0x81, 0x84);
69
70 tmp = inw(VX800_ACPI_IO_BASE + 0x04);
Uwe Hermann0ffff342009-06-07 13:46:50 +000071 result = ((tmp & (7 << 10)) >> 10) == 1 ? 3 : 0;
Stefan Reinauer069f4762015-01-05 13:02:32 -080072 printk(BIOS_DEBUG, " boot_mode=%04x\n", result);
Uwe Hermann0ffff342009-06-07 13:46:50 +000073 return result;
Uwe Hermann20a98c92009-06-05 23:02:43 +000074}
75
Uwe Hermann0ffff342009-06-07 13:46:50 +000076/* All content of this function came from the cx700 port of coreboot. */
Uwe Hermann20a98c92009-06-05 23:02:43 +000077static void enable_mainboard_devices(void)
78{
Antonello Dettorid4d265e2016-11-08 18:44:46 +010079 pci_devfn_t dev;
Uwe Hermann0ffff342009-06-07 13:46:50 +000080#if 0
81 /*
82 * Add and close this switch, since some line cause error, some
83 * written at elsewhere (stage1 stage2).
84 */
Uwe Hermann20a98c92009-06-05 23:02:43 +000085 u8 regdata;
Uwe Hermann0ffff342009-06-07 13:46:50 +000086 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
87 PCI_DEVICE_ID_VIA_VX855_LPC), 0);
Uwe Hermann20a98c92009-06-05 23:02:43 +000088
Uwe Hermann0ffff342009-06-07 13:46:50 +000089 /* Disable GP3. */
Uwe Hermann20a98c92009-06-05 23:02:43 +000090 pci_write_config8(dev, 0x98, 0x00);
91
Uwe Hermann0ffff342009-06-07 13:46:50 +000092 pci_write_config8(dev, 0x50, 0x80); /* Disable mc97. */
Uwe Hermann20a98c92009-06-05 23:02:43 +000093
Uwe Hermann0ffff342009-06-07 13:46:50 +000094 /*
95 * Martin: Disable internal KBC configuration.
96 *
97 * Internal Config is needed to decide which key can be pressed to
98 * resume from s3.
99 */
100 pci_write_config8(dev, 0x51, 0x2d);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000101
Uwe Hermann0ffff342009-06-07 13:46:50 +0000102 /* This causes irq0 can not be triggerd, since bit 5 was set to 0. */
103 /* pci_write_config8(dev, 0x58, 0x42); */
104
105 /* These writing may... TODO */
106 regdata = pci_read_config8(dev, 0x58);
107 regdata |= 0x41;
108 pci_write_config8(dev, 0x58, regdata);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000109 pci_write_config8(dev, 0x59, 0x80);
110 pci_write_config8(dev, 0x5b, 0x01);
111#endif
Uwe Hermann0ffff342009-06-07 13:46:50 +0000112
Stefan Reinauer069f4762015-01-05 13:02:32 -0800113 printk(BIOS_DEBUG, "In enable_mainboard_devices\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000114
Uwe Hermann0ffff342009-06-07 13:46:50 +0000115 /* Enable P2P Bridge Header for external PCI bus. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000116 dev = pci_locate_device(PCI_ID(0x1106, 0xa353), 0);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000117 pci_write_config8(dev, 0x4f, 0x41);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000118
Uwe Hermann0ffff342009-06-07 13:46:50 +0000119 /*
120 * "5324" already is the default value of the PCI IDE device, cancel
121 * this PCI write.
122 *
123 * [william 20080124]: Fix bug that can not boot Ubuntu at the
124 * beginning time.
125 */
126#if 0
127 dev = 0;
128 dev = pci_locate_device(PCI_ID(0x1106, PCI_DEVICE_ID_VIA_VX855_IDE), 0);
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000129
130 uint16_t values;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000131 values = pci_read_config16(dev, 0xBA);
132 values &= ~0xffff;
133 values |= 0x5324;
134 pci_write_config16(dev, 0xBA, values);
135#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000136}
137
Uwe Hermann0ffff342009-06-07 13:46:50 +0000138/*
139 * Most content of this function came from the cx700 port of coreboot.
140 * Turn on the shadow of E-seg.
141 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000142static void enable_shadow_ram(void)
143{
144 uint8_t shadowreg;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000145
146 /*
147 * Changed the value from 0x2a to 0x3f. "read only" may block "write"?
148 * and maybe in C-seg "write" will be needed?
149 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000150 pci_write_config8(PCI_DEV(0, 0, 3), 0x80, 0xff);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000151
Uwe Hermann20a98c92009-06-05 23:02:43 +0000152 /* 0xf0000-0xfffff - ACPI tables */
153 shadowreg = pci_read_config8(PCI_DEV(0, 0, 3), 0x83);
154 shadowreg |= 0x30;
155 pci_write_config8(PCI_DEV(0, 0, 3), 0x83, shadowreg);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000156
157 /* 0xe0000-0xeffff - elfload? */
158 /*
159 * In s3 resume process, wakeup.c, I use E-seg to hold the code
160 * (which can not locate in the area to be covered) that will copy
161 * 0-A-seg and F-seg from TOP-mem back to their normal location.
162 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000163 pci_write_config8(PCI_DEV(0, 0, 3), 0x82, 0xff);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000164
Uwe Hermann20a98c92009-06-05 23:02:43 +0000165#if 0
Uwe Hermann0ffff342009-06-07 13:46:50 +0000166 /* Enable shadow RAM as normal DRAM */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000167 /* 0xc0000-0xcffff - VGA BIOS */
168 pci_write_config8(PCI_DEV(0, 0, 3), 0x80, 0x2a);
169 pci_write_config8(PCI_DEV(0, 0, 7), 0x61, 0x00);
170 /* 0xd0000-0xdffff - ?? */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000171 /* pci_write_config8(PCI_DEV(0, 0, 3), 0x81, 0xff); */
172 /* pci_write_config8(PCI_DEV(0, 0, 7), 0x62, 0xff); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000173
Uwe Hermann0ffff342009-06-07 13:46:50 +0000174 /* Do it again for the vlink controller. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000175 shadowreg = pci_read_config8(PCI_DEV(0, 0, 7), 0x63);
176 shadowreg |= 0x30;
177 pci_write_config8(PCI_DEV(0, 0, 7), 0x63, shadowreg);
178#endif
179}
180
Uwe Hermann0ffff342009-06-07 13:46:50 +0000181/*
182 * Added this table 2008-11-28.
183 * This table contains the value needed to be set before begin to init DRAM.
184 * Note: REV_Bx should be checked for changes when porting a new board!
185 */
186static const struct VIA_PCI_REG_INIT_TABLE mNbStage1InitTbl[] = {
187 /* VT3409 no PCI-E */
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000188 { 0x00, 0xFF, NB_APIC_REG(0x61), 0xFF, 0x0E }, // Set Exxxxxxx as pcie mmio config range
189 { 0x00, 0xFF, NB_APIC_REG(0x60), 0xF4, 0x0B }, // Support extended cfg address of pcie
Martin Roth0cd338e2016-07-29 14:07:30 -0600190 // { 0x00, 0xFF, NB_APIC_REG(0x42), 0xF9, 0x02 }, // APIC Interrupt((BT_INTR)) Control
Uwe Hermann0ffff342009-06-07 13:46:50 +0000191 // Set ROMSIP value by software
Uwe Hermann20a98c92009-06-05 23:02:43 +0000192
Uwe Hermann0ffff342009-06-07 13:46:50 +0000193 /*
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000194 { 0x00, 0xFF, NB_HOST_REG(0x70), 0x77, 0x33 }, // 2x Host Adr Strobe/Pad Pullup Driving = 3
195 { 0x00, 0xFF, NB_HOST_REG(0x71), 0x77, 0x33 }, // 2x Host Adr Strobe/Pad Pulldown Driving = 3
196 { 0x00, 0xFF, NB_HOST_REG(0x72), 0x77, 0x33 }, // 4x Host Dat Strobe/Pad Pullup Driving = 3
197 { 0x00, 0xFF, NB_HOST_REG(0x73), 0x77, 0x33 }, // 4x Host Dat Strobe/Pad Pulldown Driving = 3
198 { 0x00, 0xFF, NB_HOST_REG(0x74), 0xFF, 0x21 }, // Memory I/F timing ctrl
199 { 0x00, 0xFF, NB_HOST_REG(0x74), 0xFF, 0xE1 }, // Memory I/F timing ctrl
200 { 0x00, 0xFF, NB_HOST_REG(0x75), 0xFF, 0x18 }, // AGTL+ I/O Circuit
201 { 0x00, 0xFF, NB_HOST_REG(0x76), 0xFB, 0x0C }, // AGTL+ Compensation Status
202 { 0x00, 0xFF, NB_HOST_REG(0x78), 0xFF, 0x33 }, // 2X AGTL+ Auto Compensation Offset
203 { 0x00, 0xFF, NB_HOST_REG(0x79), 0xFF, 0x33 }, // 4X AGTL+ Auto Compensation Offset
204 { 0x00, 0xFF, NB_HOST_REG(0x7A), 0x3F, 0x72 }, // AGTL Compensation Status
205 { 0x00, 0xFF, NB_HOST_REG(0x7A), 0x3F, 0x77 }, // AGTL Compensation Status
206 { 0x00, 0xFF, NB_HOST_REG(0x7B), 0xFF, 0x44 }, // Input Host Address / Host Strobe Delay Control for HA Group
207 { 0x00, 0xFF, NB_HOST_REG(0x7B), 0xFF, 0x22 }, // Input Host Address / Host Strobe Delay Control for HA Group
208 { 0x00, 0xFF, NB_HOST_REG(0x7C), 0xFF, 0x00 }, // Output Delay Control of PAD for HA Group
209 { 0x00, 0xFF, NB_HOST_REG(0x7D), 0xFF, 0xAA }, // Host Address / Address Clock Output Delay Control (Only for P4 Bus)
210 { 0x00, 0xFF, NB_HOST_REG(0x7E), 0xFF, 0x10 }, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
211 { 0x00, 0xFF, NB_HOST_REG(0x7E), 0xFF, 0x40 }, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
212 { 0x00, 0xFF, NB_HOST_REG(0x7F), 0xFF, 0x10 }, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
213 { 0x00, 0xFF, NB_HOST_REG(0x7F), 0xFF, 0x40 }, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
214 { 0x00, 0xFF, NB_HOST_REG(0x80), 0x3F, 0x44 }, // Host Data Receiving Strobe Delay Ctrl 1
215 { 0x00, 0xFF, NB_HOST_REG(0x81), 0xFF, 0x44 }, // Host Data Receiving Strobe Delay Ctrl 2
216 { 0x00, 0xFF, NB_HOST_REG(0x82), 0xFF, 0x00 }, // Output Delay of PAD for HDSTB
217 { 0x00, 0xFF, NB_HOST_REG(0x83), 0xFF, 0x00 }, // Output Delay of PAD for HD
218 { 0x00, 0xFF, NB_HOST_REG(0x84), 0xFF, 0x44 }, // Host Data / Strobe CKG Control (Group 0)
219 { 0x00, 0xFF, NB_HOST_REG(0x85), 0xFF, 0x44 }, // Host Data / Strobe CKG Control (Group 1)
220 { 0x00, 0xFF, NB_HOST_REG(0x86), 0xFF, 0x44 }, // Host Data / Strobe CKG Control (Group 2)
221 { 0x00, 0xFF, NB_HOST_REG(0x87), 0xFF, 0x44 }, // Host Data / Strobe CKG Control (Group 3)
Uwe Hermannd64f4032009-06-07 14:38:32 +0000222 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000223
Uwe Hermann0ffff342009-06-07 13:46:50 +0000224 // CPU Host Bus Control
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000225 { 0x00, 0xFF, NB_HOST_REG(0x50), 0x1F, 0x08 }, // Request phase ctrl: Dynamic Defer Snoop Stall Count = 8
226 // { 0x00, 0xFF, NB_HOST_REG(0x51), 0xFF, 0x7F }, // CPU I/F Ctrl-1: Disable Fast DRDY and RAW
227 { 0x00, 0xFF, NB_HOST_REG(0x51), 0xFF, 0x7C }, // CPU I/F Ctrl-1: Disable Fast DRDY and RAW
228 { 0x00, 0xFF, NB_HOST_REG(0x52), 0xCB, 0xCB }, // CPU I/F Ctrl-2: Enable all for performance
229 // { 0x00, 0xFF, NB_HOST_REG(0x53), 0xFF, 0x88 }, // Arbitration: Host/Master Occupancy timer = 8*4 HCLK
230 { 0x00, 0xFF, NB_HOST_REG(0x53), 0xFF, 0x44 }, // Arbitration: Host/Master Occupancy timer = 4*4 HCLK
231 { 0x00, 0xFF, NB_HOST_REG(0x54), 0x1E, 0x1C }, // Misc Ctrl: Enable 8QW burst Mem Access
232 // { 0x00, 0xFF, NB_HOST_REG(0x55), 0x06, 0x06 }, // Miscellaneous Control 2
233 { 0x00, 0xFF, NB_HOST_REG(0x55), 0x06, 0x04 }, // Miscellaneous Control 2
234 { 0x00, 0xFF, NB_HOST_REG(0x56), 0xF7, 0x63 }, // Write Policy 1
235 // { 0x00, 0xFF, NB_HOST_REG(0x59), 0x3D, 0x01 }, // CPU Miscellaneous Control 1, enable Lowest-Priority IPL
236 // { 0x00, 0xFF, NB_HOST_REG(0x5c), 0xFF, 0x00 }, // CPU Miscellaneous Control 2
237 { 0x00, 0xFF, NB_HOST_REG(0x5D), 0xFF, 0xA2 }, // Write Policy
238 { 0x00, 0xFF, NB_HOST_REG(0x5E), 0xFF, 0x88 }, // Bandwidth Timer
239 { 0x00, 0xFF, NB_HOST_REG(0x5F), 0x46, 0x46 }, // CPU Misc Ctrl
240 // { 0x00, 0xFF, NB_HOST_REG(0x90), 0xFF, 0x0B }, // CPU Miscellaneous Control 3
241 // { 0x00, 0xFF, NB_HOST_REG(0x96), 0x0B, 0x0B }, // CPU Miscellaneous Control 2
242 { 0x00, 0xFF, NB_HOST_REG(0x96), 0x0B, 0x0A }, // CPU Miscellaneous Control 2
243 { 0x00, 0xFF, NB_HOST_REG(0x98), 0xC1, 0x41 }, // CPU Miscellaneous Control 3
244 { 0x00, 0xFF, NB_HOST_REG(0x99), 0x0E, 0x06 }, // CPU Miscellaneous Control 4
Uwe Hermann20a98c92009-06-05 23:02:43 +0000245
Uwe Hermann0ffff342009-06-07 13:46:50 +0000246 // Set APIC and SMRAM
Stefan Reinauer8816cdf2010-04-14 16:39:30 +0000247 { 0x00, 0xFF, NB_HOST_REG(0x97), 0xFF, 0x00 }, // APIC Related Control
248 { 0x00, 0xFF, NB_DRAMC_REG(0x86), 0xD6, 0x29 }, // SMM and APIC Decoding: enable APIC, MSI and SMRAM A-Seg
249 { 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } // End of the table
Uwe Hermann20a98c92009-06-05 23:02:43 +0000250};
251
Uwe Hermann0ffff342009-06-07 13:46:50 +0000252#define USE_VCP 1 /* 0 means "use DVP". */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000253#define USE_COM1 1
254#define USE_COM2 0
255
256#define gCom1Base 0x3f8
257#define gCom2Base 0x2f8
Uwe Hermann0ffff342009-06-07 13:46:50 +0000258
Stefan Reinauer17b60a92010-04-14 17:11:47 +0000259#if 0
260static void EmbedComInit(void)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000261{
Uwe Hermann0ffff342009-06-07 13:46:50 +0000262 u8 ByteVal;
263 u16 ComBase;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000264
Uwe Hermann0ffff342009-06-07 13:46:50 +0000265 /* Enable NB multiple function control. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000266 ByteVal = pci_read_config8(PCI_DEV(0, 0, 0), 0x4f);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000267 ByteVal = ByteVal | 0x01;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000268 pci_write_config8(PCI_DEV(0, 0, 0), 0x4f, ByteVal);
269
Uwe Hermann0ffff342009-06-07 13:46:50 +0000270 /* VGA enable. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000271 ByteVal = pci_read_config8(PCI_DEV(0, 0, 3), 0xA1);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000272 ByteVal = ByteVal | 0x80;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000273 pci_write_config8(PCI_DEV(0, 0, 3), 0xA1, ByteVal);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000274
Uwe Hermann20a98c92009-06-05 23:02:43 +0000275 ByteVal = pci_read_config8(PCI_DEV(0, 0, 3), 0xA7);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000276 ByteVal = ByteVal | 0x08;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000277 pci_write_config8(PCI_DEV(0, 0, 3), 0xA7, ByteVal);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000278
279 /* Enable P2P IO/mem. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000280 ByteVal = pci_read_config8(PCI_DEV(0, 1, 0), 0x4);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000281 ByteVal = ByteVal | 0x07;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000282 pci_write_config8(PCI_DEV(0, 1, 0), 0x4, ByteVal);
283
Uwe Hermann0ffff342009-06-07 13:46:50 +0000284 /* Turn on graphic chip I/O port port access. */
285 ByteVal = inb(0x3C3);
286 ByteVal = ByteVal | 0x01;
287 outb(ByteVal, 0x3C3);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000288
Uwe Hermann0ffff342009-06-07 13:46:50 +0000289 /* Turn off graphic chip register protection. */
290 outb(0x10, 0x3C4);
291 ByteVal = inb(0x3C5);
292 ByteVal = ByteVal | 0x01;
293 outb(ByteVal, 0x3C5);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000294
Uwe Hermann0ffff342009-06-07 13:46:50 +0000295 /* South module pad share enable 0x3C5.78[7]. */
296 outb(0x78, 0x3C4);
297 ByteVal = inb(0x3C5);
298 ByteVal = ByteVal | 0x80;
299 outb(ByteVal, 0x3C5);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000300
Uwe Hermann0ffff342009-06-07 13:46:50 +0000301 /* Enable UART function multiplex with DVP or VCP pad D17F0Rx46[7,6]. */
302 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0x46);
303 if (USE_VCP == 1)
304 ByteVal = (ByteVal & 0x3F) | 0x40; /* Multiplex with VCP. */
305 else
306 ByteVal = (ByteVal & 0x3F) | 0xC0; /* Multiplex with DVP. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000307 pci_write_config8(PCI_DEV(0, 17, 0), 0x46, ByteVal);
308
Uwe Hermann0ffff342009-06-07 13:46:50 +0000309 /* Enable embedded COM1 and COM2 D17F0RxB0[5,4]. */
310 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xB0);
311 ByteVal = ByteVal & 0xcf;
312 /* Multiplex with VCP. */
313 if (USE_COM1 == 1)
314 ByteVal = ByteVal | 0x10;
315 if (USE_COM2 == 1)
316 ByteVal = ByteVal | 0x20;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000317 pci_write_config8(PCI_DEV(0, 17, 0), 0xB0, ByteVal);
318
Uwe Hermann0ffff342009-06-07 13:46:50 +0000319 if (USE_COM1 == 1)
320 ComBase = gCom1Base;
321 else
322 ComBase = gCom2Base;
323
Uwe Hermann20a98c92009-06-05 23:02:43 +0000324//noharddrive
325
Uwe Hermannd64f4032009-06-07 14:38:32 +0000326 /* Set embedded COM1 I/O base = 0x3E8 (D17F0RB4, ByteVal = 0xFD) */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000327 if (USE_COM1 == 1) {
328 ByteVal = (u8) ((gCom1Base >> 3) | 0x80);
329 pci_write_config8(PCI_DEV(0, 17, 0), 0xB4, ByteVal);
330 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xb2);
331 ByteVal = (ByteVal & 0xf0) | 0x04;
332 pci_write_config8(PCI_DEV(0, 17, 0), 0xB2, ByteVal);
333 }
Uwe Hermann20a98c92009-06-05 23:02:43 +0000334
Uwe Hermannd64f4032009-06-07 14:38:32 +0000335 /* Set embedded COM2 I/O base = 0x2E8 (D17F0RB5, ByteVal = 0xDD). */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000336 if (USE_COM2 == 1) {
337 ByteVal = (u8) ((gCom2Base >> 3) | 0x80);
338 pci_write_config8(PCI_DEV(0, 17, 0), 0xB5, ByteVal);
339 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xb2);
340 ByteVal = (ByteVal & 0x0f) | 0x30;
341 pci_write_config8(PCI_DEV(0, 17, 0), 0xB2, ByteVal);
342 }
343 /* No port 80 biger then 0x10. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000344
Uwe Hermann0ffff342009-06-07 13:46:50 +0000345 /* Disable interrupt. */
346 ByteVal = inb(ComBase + 3);
347 outb(ByteVal & 0x7F, ComBase + 3);
348 outb(0x00, ComBase + 1);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000349
Uwe Hermann0ffff342009-06-07 13:46:50 +0000350 /* Set BAUD rate. */
351 ByteVal = inb(ComBase + 3);
352 outb(ByteVal | 0x80, ComBase + 3);
353 outb(0x01, ComBase);
354 outb(0x00, ComBase + 1);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000355
Uwe Hermann0ffff342009-06-07 13:46:50 +0000356 /* Set frame format. */
357 ByteVal = inb(ComBase + 3);
358 outb(ByteVal & 0x3F, ComBase + 3);
359 outb(0x03, ComBase + 3);
360 outb(0x00, ComBase + 2);
361 outb(0x00, ComBase + 4);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000362
Uwe Hermann0ffff342009-06-07 13:46:50 +0000363 /* SOutput("Embedded COM output\n"); */
364 /* while(1); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000365}
Stefan Reinauer17b60a92010-04-14 17:11:47 +0000366#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000367
Uwe Hermann0ffff342009-06-07 13:46:50 +0000368/* cache_as_ram.inc jumps to here. */
Stefan Reinauer314e5512010-04-09 20:36:29 +0000369void main(unsigned long bist)
Uwe Hermann0ffff342009-06-07 13:46:50 +0000370{
Uwe Hermann20a98c92009-06-05 23:02:43 +0000371 u16 boot_mode;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000372 u8 rambits, Data8, Data;
Antonello Dettorid4d265e2016-11-08 18:44:46 +0100373 pci_devfn_t device;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000374 /* device_t dev; */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000375
Uwe Hermann0ffff342009-06-07 13:46:50 +0000376 /*
377 * Enable multifunction for northbridge. These 4 lines (until
378 * console_init()) are the same with epia-cn port.
379 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000380 pci_write_config8(PCI_DEV(0, 0, 0), 0x4f, 0x01);
Uwe Hermann4e2ffb82009-07-15 00:03:28 +0000381 /* EmbedComInit(); */
Uwe Hermann9b9791c2010-12-06 18:17:01 +0000382 w83697hf_set_clksel_48(DUMMY_DEV);
Edward O'Callaghan9492b9d2014-05-14 01:00:43 +1000383 winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000384 /* enable_vx800_serial(); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000385
Uwe Hermann0ffff342009-06-07 13:46:50 +0000386 /*
387 * 1. D15F0
388 * a) RxBAh = 71h
389 * b) RxBBh = 05h
390 * c) RxBEh = 71h
391 * d) RxBFh = 05h
392 *
393 * 2. D17F0
394 * a) RxA0h = 06h
395 * b) RxA1h = 11h
396 * c) RxA2h = 27h
397 * d) RxA3h = 32h
398 * e) Rx79h = 40h
399 * f) Rx72h = 27h
400 * g) Rx73h = 32h
401 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000402
Uwe Hermann0ffff342009-06-07 13:46:50 +0000403 pci_write_config16(PCI_DEV(0, 0xf, 0), 0xBA,
404 PCI_DEVICE_ID_VIA_VX855_IDE);
405 pci_write_config16(PCI_DEV(0, 0xf, 0), 0xBE,
406 PCI_DEVICE_ID_VIA_VX855_IDE);
407 pci_write_config16(PCI_DEV(0, 0x11, 0), 0xA0, PCI_VENDOR_ID_VIA);
408 pci_write_config16(PCI_DEV(0, 0x11, 0), 0xA2,
409 PCI_DEVICE_ID_VIA_VX855_LPC);
410 Data8 = pci_read_config8(PCI_DEV(0, 0x11, 0), 0x79);
411 Data8 &= ~0x40;
412 Data8 |= 0x40;
413 pci_write_config8(PCI_DEV(0, 0x11, 0), 0x79, Data8);
414 pci_write_config16(PCI_DEV(0, 0x11, 0), 0x72,
415 PCI_DEVICE_ID_VIA_VX855_LPC);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000416
Uwe Hermann0ffff342009-06-07 13:46:50 +0000417 /*
418 * There are two function definitions of console_init(), while the
Stefan Reinauer8677a232010-12-11 20:33:41 +0000419 * src/arch/x86/lib is the right one.
Uwe Hermann0ffff342009-06-07 13:46:50 +0000420 */
421 console_init();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000422
Uwe Hermann0ffff342009-06-07 13:46:50 +0000423 /* Decide if this is a s3 wakeup or a normal boot. */
424 boot_mode = acpi_is_wakeup_early_via_vx800();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000425
Uwe Hermann0ffff342009-06-07 13:46:50 +0000426 /*
427 * 2008-11-27 Add this, to transfer "cpu restart" to "cold boot".
428 * When this boot is not a S3 resume, and PCI registers had been
429 * written, then this must be a CPU restart (result of OS reboot cmd),
430 * so we need a real "cold boot".
431 */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000432 if ((boot_mode != 3)
433 && (pci_read_config8(PCI_DEV(0, 0, 3), 0x80) != 0)) {
434 outb(6, 0xcf9);
435 }
Uwe Hermann20a98c92009-06-05 23:02:43 +0000436
Uwe Hermann0ffff342009-06-07 13:46:50 +0000437 /* x86 cold boot I/O cmd. */
438 /* These 2 lines are the same with epia-cn port. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000439 enable_smbus();
Uwe Hermann0ffff342009-06-07 13:46:50 +0000440
441 /* This fix does help vx800!, but vx855 doesn't need this. */
442 /* smbus_fixup(&ctrl); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000443
Uwe Hermann20a98c92009-06-05 23:02:43 +0000444 /* Halt if there was a built-in self test failure. */
445 report_bist_failure(bist);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000446
Stefan Reinauer069f4762015-01-05 13:02:32 -0800447 printk(BIOS_DEBUG, "Enabling mainboard devices\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000448 enable_mainboard_devices();
449
Uwe Hermann0ffff342009-06-07 13:46:50 +0000450 /*
451 * Get NB chip revision from D0F4RxF6, revision will be used in
452 * via_pci_inittable.
453 */
454 device = PCI_DEV(0, 0, 4);
455 Data = pci_read_config8(device, 0xf6);
Stefan Reinauer069f4762015-01-05 13:02:32 -0800456 printk(BIOS_DEBUG, "NB chip revision = %02x\n", Data);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000457
Uwe Hermann0ffff342009-06-07 13:46:50 +0000458 /* Make NB ready before DRAM init. */
459 via_pci_inittable(Data, mNbStage1InitTbl);
460
461 /*
462 * When resume from s3, DRAM init is skipped, so need to recovery
463 * any PCI register related to DRAM init. d0f3 didn't lose its power
464 * during whole s3 time, so any register not belonging to d0f3 needs
465 * to be recovered.
466 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000467#if 1
Uwe Hermann0ffff342009-06-07 13:46:50 +0000468 if (boot_mode == 3) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000469 u8 i;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000470 u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 };
Uwe Hermann20a98c92009-06-05 23:02:43 +0000471 DRAM_SYS_ATTR DramAttr;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000472
Stefan Reinauer069f4762015-01-05 13:02:32 -0800473 printk(BIOS_DEBUG, "This is an S3 wakeup\n");
Uwe Hermann0ffff342009-06-07 13:46:50 +0000474
475 memset(&DramAttr, 0, sizeof(DRAM_SYS_ATTR));
476 /*
477 * Step 1: DRAM detection; DDR1 or DDR2; Get SPD Data;
478 * Rank Presence; 64 or 128bit; Unbuffered or registered;
479 * 1T or 2T.
480 */
481 DRAMDetect(&DramAttr);
482
483 /*
484 * Begin to get RAM size, 43,42 41 40 contains the end
485 * address of last rank in DDR2 slot.
486 */
487 device = PCI_DEV(0, 0, 3);
488 for (rambits = 0, i = 0; i < ARRAY_SIZE(ramregs); i++) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000489 rambits = pci_read_config8(device, ramregs[i]);
490 if (rambits != 0)
491 break;
492 }
493
Uwe Hermann0ffff342009-06-07 13:46:50 +0000494 DRAMDRDYSetting(&DramAttr);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000495
Uwe Hermann0ffff342009-06-07 13:46:50 +0000496 Data = 0x80; /* This value is same with DevInit.c. */
497 pci_write_config8(PCI_DEV(0, 0, 4), 0xa3, Data);
498 pci_write_config8(PCI_DEV(0, 17, 7), 0x60, rambits << 2);
499 Data = pci_read_config8(MEMCTRL, 0x88);
500 pci_write_config8(PCI_DEV(0, 17, 7), 0xE5, Data);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000501
Uwe Hermann0ffff342009-06-07 13:46:50 +0000502 /* Just copy this function from draminit to here! */
503 DRAMRegFinalValue(&DramAttr);
504
505 /* Just copy this function from draminit to here! */
506 SetUMARam();
507
Stefan Reinauer069f4762015-01-05 13:02:32 -0800508 printk(BIOS_DEBUG, "Resume from S3, RAM init was ignored\n");
Uwe Hermann0ffff342009-06-07 13:46:50 +0000509 } else {
510 ddr2_ram_setup();
511 ram_check(0, 640 * 1024);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000512 }
513#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000514
Uwe Hermann0ffff342009-06-07 13:46:50 +0000515 /* ddr2_ram_setup(); */
516 /* This line is the same with cx700 port. */
517 enable_shadow_ram();
518
Uwe Hermann0ffff342009-06-07 13:46:50 +0000519 /*
520 * For coreboot most time of S3 resume is the same as normal boot,
521 * so some memory area under 1M become dirty, so before this happen,
Stefan Reinauer14e22772010-04-27 06:56:47 +0000522 * I need to backup the content of mem to top-mem.
Uwe Hermann0ffff342009-06-07 13:46:50 +0000523 *
524 * I will reserve the 1M top-men in LBIO table in coreboot_table.c
525 * and recovery the content of 1M-mem in wakeup.c.
526 */
527#if PAYLOAD_IS_SEABIOS == 1
528 if (boot_mode == 3) {
529 /* An idea of Libo.Feng at amd.com in http://www.coreboot.org/pipermail/coreboot/2008-December/043111.html
530 *
531 * I want move the 1M data, I have to set some MTRRs myself.
532 * Setting MTRR before back memory save s3 resume time about
533 * 0.14 seconds.
534 *
535 * !!! Since CAR stack uses cache, and we are using cache
536 * here, we must be careful:
537 *
538 * 1. during this MTRR code, must no function call (after
539 * this MTRR, I think it should be OK to use function).
540 * 2. Before stack switch, no use variable that have value
541 * set before this.
542 * 3. Due to 2, take care of "cpu_reset", I directlly set it
543 * to ZERO.
Uwe Hermann20a98c92009-06-05 23:02:43 +0000544 */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000545 u32 memtop = *(u32 *) WAKE_MEM_INFO;
546 u32 memtop1 = *(u32 *) WAKE_MEM_INFO - 0x100000;
547 u32 memtop2 = *(u32 *) WAKE_MEM_INFO - 0x200000;
548 u32 memtop3 = *(u32 *) WAKE_MEM_INFO - 64 * 1024 - 0x100000;
549 u32 memtop4 =
550 *(u32 *) WAKE_MEM_INFO - 64 * 1024 - 0x100000 + 0xe0000;
551#if 0
552 __asm__ volatile (
553 "movl $0x204, %%ecx\n\t"
554 "xorl %%edx, %%edx\n\t"
555 "movl %0,%%eax\n\t"
556 "orl $(0 | 6), %%eax\n\t"
557 "wrmsr\n\t"
Uwe Hermann20a98c92009-06-05 23:02:43 +0000558
Uwe Hermann0ffff342009-06-07 13:46:50 +0000559 "movl $0x205, %%ecx\n\t"
560 "xorl %%edx, %%edx\n\t"
561 "movl $0x100000,%%eax\n\t"
562 "decl %%eax\n\t"
563 "notl %%eax\n\t"
564 "orl $(0 | 0x800), %%eax\n\t"
565 "wrmsr\n\t"
566 ::"g"(memtop2)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000567 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000568
Uwe Hermann0ffff342009-06-07 13:46:50 +0000569 __asm__ volatile (
570 "movl $0x206, %%ecx\n\t"
571 "xorl %%edx, %%edx\n\t"
572 "movl %0,%%eax\n\t"
573 "orl $(0 | 6), %%eax\n\t"
574 "wrmsr\n\t"
575
576 "movl $0x207, %%ecx\n\t"
577 "xorl %%edx, %%edx\n\t"
578 "movl $0x100000,%%eax\n\t"
579 "decl %%eax\n\t"
580 "notl %%eax\n\t"
581 "orl $(0 | 0x800), %%eax\n\t"
582 "wrmsr\n\t"
583 ::"g"(memtop1)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000584 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000585
Uwe Hermann0ffff342009-06-07 13:46:50 +0000586 __asm__ volatile (
587 "movl $0x208, %ecx\n\t"
588 "xorl %edx, %edx\n\t"
589 "movl $0,%eax\n\t"
590 "orl $(0 | 6), %eax\n\t"
591 "wrmsr\n\t"
592
593 "movl $0x209, %ecx\n\t"
594 "xorl %edx, %edx\n\t"
595 "movl $0x100000,%eax\n\t"
596 "decl %eax\n\t"
597 "notl %eax\n\t"
598 "orl $(0 | 0x800), %eax\n\t"
599 "wrmsr\n\t"
Uwe Hermann20a98c92009-06-05 23:02:43 +0000600 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000601#endif
602
Stefan Reinauer14e22772010-04-27 06:56:47 +0000603 /*
Uwe Hermann0ffff342009-06-07 13:46:50 +0000604 * WAKE_MEM_INFO is inited in get_set_top_available_mem()
605 * in tables.c these two memcpy() not not be enabled if set
606 * the MTRR around this two lines.
607 */
608#if 0
609 __asm__ volatile (
610 "movl $0, %%esi\n\t"
611 "movl %0, %%edi\n\t"
612 "movl $0xa0000, %%ecx\n\t"
613 "shrl $2, %%ecx\n\t"
614 "rep movsd\n\t"
615 ::"g"(memtop3)
616 );
617
618 __asm__ volatile (
619 "movl $0xe0000, %%esi\n\t"
620 "movl %0, %%edi\n\t"
621 "movl $0x20000, %%ecx\n\t"
622 "shrl $2, %%ecx\n\t"
623 "rep movsd\n\t"
624 ::"g"(memtop4)
625 );
626#endif
627 /* This can have function call, because no variable used before this. */
Stefan Reinauer069f4762015-01-05 13:02:32 -0800628 printk(BIOS_DEBUG, "Copy memory to high memory to protect s3 wakeup vector code\n");
Uwe Hermann0ffff342009-06-07 13:46:50 +0000629 memcpy((unsigned char *)((*(u32 *) WAKE_MEM_INFO) - 64 * 1024 -
630 0x100000), (unsigned char *)0, 0xa0000);
631 memcpy((unsigned char *)((*(u32 *) WAKE_MEM_INFO) - 64 * 1024 -
632 0x100000 + 0xe0000), (unsigned char *)0xe0000, 0x20000);
633
634 /* Restore the MTRR previously modified. */
635#if 0
636 __asm__ volatile (
637 "wbinvd\n\t"
638 "xorl %edx, %edx\n\t"
639 "xorl %eax, %eax\n\t"
640 "movl $0x204, %ecx\n\t"
641 "wrmsr\n\t"
642 "movl $0x205, %ecx\n\t"
643 "wrmsr\n\t"
644 "movl $0x206, %ecx\n\t"
645 "wrmsr\n\t"
646 "movl $0x207, %ecx\n\t"
647 "wrmsr\n\t"
648 "movl $0x208, %ecx\n\t"
649 "wrmsr\n\t"
650 "movl $0x209, %ecx\n\t"
651 "wrmsr\n\t"
652 );
653#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000654 }
Uwe Hermann0ffff342009-06-07 13:46:50 +0000655#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000656}