blob: 82683a5bdcbf8c3639c222da61aa7d184f875230 [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
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
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
25#define ASSEMBLY 1
26#define __ROMCC__
27#define RAMINIT_SYSINFO 1
28#define CACHE_AS_RAM_ADDRESS_DEBUG 0
29
30#include <stdint.h>
31#include <device/pci_def.h>
32#include <device/pci_ids.h>
33#include <arch/io.h>
34#include <device/pnp_def.h>
35#include <arch/romcc_io.h>
36#include <arch/hlt.h>
37#include "pc80/serial.c"
38#include "arch/i386/lib/console.c"
39#include "ram/ramtest.c"
40#include "northbridge/via/vx800/vx800.h"
41#include "cpu/x86/mtrr/earlymtrr.c"
42#include "cpu/x86/bist.h"
43#include "pc80/udelay_io.c"
44#include "lib/delay.c"
45#if CONFIG_USE_INIT == 0
46#include "lib/memcpy.c"
47#endif
48#include "cpu/x86/lapic/boot_cpu.c"
49
Uwe Hermann0ffff342009-06-07 13:46:50 +000050/* This file contains the board-special SI value for raminit.c. */
Uwe Hermannd64f4032009-06-07 14:38:32 +000051#include "driving_clk_phase_data.c"
Uwe Hermann20a98c92009-06-05 23:02:43 +000052
53#include "northbridge/via/vx800/raminit.h"
54#include "northbridge/via/vx800/raminit.c"
55#include "cpu/x86/car/copy_and_run.c"
Uwe Hermannd64f4032009-06-07 14:38:32 +000056#include "wakeup.h"
Uwe Hermann20a98c92009-06-05 23:02:43 +000057
Uwe Hermann0ffff342009-06-07 13:46:50 +000058/*
59 * This acpi_is_wakeup_early_via_VX800 is from Rudolf's patch on the list:
60 * http://www.coreboot.org/pipermail/coreboot/2008-January/028787.html.
61 */
62void jason_tsc_count_car(void)
63{
64#if 0
Uwe Hermann20a98c92009-06-05 23:02:43 +000065 unsigned long long start;
66 asm volatile ("rdtsc" : "=A" (start));
67 start >>= 20;
68 print_emerg("jason_tsc_count_car= ");
Uwe Hermann0ffff342009-06-07 13:46:50 +000069 print_emerg_hex32((unsigned long) start);
70 print_emerg("\n");
71#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +000072}
73
Uwe Hermann0ffff342009-06-07 13:46:50 +000074int acpi_is_wakeup_early_via_vx800(void)
75{
Uwe Hermann20a98c92009-06-05 23:02:43 +000076 device_t dev;
Uwe Hermann0ffff342009-06-07 13:46:50 +000077 u16 tmp, result;
Uwe Hermann20a98c92009-06-05 23:02:43 +000078
79 print_debug("In acpi_is_wakeup_early_via_vx800\r\n");
80 /* Power management controller */
81 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
82 PCI_DEVICE_ID_VIA_VX855_LPC), 0);
83
84 if (dev == PCI_DEV_INVALID)
85 die("Power management controller not found\r\n");
86
87 /* Set ACPI base address to I/O VX800_ACPI_IO_BASE. */
88 pci_write_config16(dev, 0x88, VX800_ACPI_IO_BASE | 0x1);
89
90 /* Enable ACPI accessm RTC signal gated with PSON. */
91 pci_write_config8(dev, 0x81, 0x84);
92
93 tmp = inw(VX800_ACPI_IO_BASE + 0x04);
Uwe Hermann0ffff342009-06-07 13:46:50 +000094 result = ((tmp & (7 << 10)) >> 10) == 1 ? 3 : 0;
Uwe Hermann20a98c92009-06-05 23:02:43 +000095 print_debug(" boot_mode=");
Uwe Hermann0ffff342009-06-07 13:46:50 +000096 print_debug_hex16(result);
Uwe Hermann20a98c92009-06-05 23:02:43 +000097 print_debug("\r\n");
Uwe Hermann0ffff342009-06-07 13:46:50 +000098 return result;
Uwe Hermann20a98c92009-06-05 23:02:43 +000099}
100
101static inline int spd_read_byte(unsigned device, unsigned address)
102{
103 return smbus_read_byte(device, address);
104}
105
Uwe Hermann0ffff342009-06-07 13:46:50 +0000106/* All content of this function came from the cx700 port of coreboot. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000107static void enable_mainboard_devices(void)
108{
109 device_t dev;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000110 uint16_t values;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000111
Uwe Hermann0ffff342009-06-07 13:46:50 +0000112#if 0
113 /*
114 * Add and close this switch, since some line cause error, some
115 * written at elsewhere (stage1 stage2).
116 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000117 u8 regdata;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000118 dev = pci_locate_device(PCI_ID(PCI_VENDOR_ID_VIA,
119 PCI_DEVICE_ID_VIA_VX855_LPC), 0);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000120
Uwe Hermann0ffff342009-06-07 13:46:50 +0000121 /* Disable GP3. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000122 pci_write_config8(dev, 0x98, 0x00);
123
Uwe Hermann0ffff342009-06-07 13:46:50 +0000124 pci_write_config8(dev, 0x50, 0x80); /* Disable mc97. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000125
Uwe Hermann0ffff342009-06-07 13:46:50 +0000126 /*
127 * Martin: Disable internal KBC configuration.
128 *
129 * Internal Config is needed to decide which key can be pressed to
130 * resume from s3.
131 */
132 pci_write_config8(dev, 0x51, 0x2d);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000133
Uwe Hermann0ffff342009-06-07 13:46:50 +0000134 /* This causes irq0 can not be triggerd, since bit 5 was set to 0. */
135 /* pci_write_config8(dev, 0x58, 0x42); */
136
137 /* These writing may... TODO */
138 regdata = pci_read_config8(dev, 0x58);
139 regdata |= 0x41;
140 pci_write_config8(dev, 0x58, regdata);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000141 pci_write_config8(dev, 0x59, 0x80);
142 pci_write_config8(dev, 0x5b, 0x01);
143#endif
Uwe Hermann0ffff342009-06-07 13:46:50 +0000144
Uwe Hermann20a98c92009-06-05 23:02:43 +0000145 print_debug("In enable_mainboard_devices \r\n");
146
Uwe Hermann0ffff342009-06-07 13:46:50 +0000147 /* Enable P2P Bridge Header for external PCI bus. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000148 dev = pci_locate_device(PCI_ID(0x1106, 0xa353), 0);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000149 pci_write_config8(dev, 0x4f, 0x41);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000150
Uwe Hermann0ffff342009-06-07 13:46:50 +0000151 /*
152 * "5324" already is the default value of the PCI IDE device, cancel
153 * this PCI write.
154 *
155 * [william 20080124]: Fix bug that can not boot Ubuntu at the
156 * beginning time.
157 */
158#if 0
159 dev = 0;
160 dev = pci_locate_device(PCI_ID(0x1106, PCI_DEVICE_ID_VIA_VX855_IDE), 0);
161 values = pci_read_config16(dev, 0xBA);
162 values &= ~0xffff;
163 values |= 0x5324;
164 pci_write_config16(dev, 0xBA, values);
165#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000166}
167
Uwe Hermann0ffff342009-06-07 13:46:50 +0000168/*
169 * Most content of this function came from the cx700 port of coreboot.
170 * Turn on the shadow of E-seg.
171 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000172static void enable_shadow_ram(void)
173{
174 uint8_t shadowreg;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000175
176 /*
177 * Changed the value from 0x2a to 0x3f. "read only" may block "write"?
178 * and maybe in C-seg "write" will be needed?
179 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000180 pci_write_config8(PCI_DEV(0, 0, 3), 0x80, 0xff);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000181
Uwe Hermann20a98c92009-06-05 23:02:43 +0000182 /* 0xf0000-0xfffff - ACPI tables */
183 shadowreg = pci_read_config8(PCI_DEV(0, 0, 3), 0x83);
184 shadowreg |= 0x30;
185 pci_write_config8(PCI_DEV(0, 0, 3), 0x83, shadowreg);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000186
187 /* 0xe0000-0xeffff - elfload? */
188 /*
189 * In s3 resume process, wakeup.c, I use E-seg to hold the code
190 * (which can not locate in the area to be covered) that will copy
191 * 0-A-seg and F-seg from TOP-mem back to their normal location.
192 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000193 pci_write_config8(PCI_DEV(0, 0, 3), 0x82, 0xff);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000194
Uwe Hermann20a98c92009-06-05 23:02:43 +0000195#if 0
Uwe Hermann0ffff342009-06-07 13:46:50 +0000196 /* Enable shadow RAM as normal DRAM */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000197 /* 0xc0000-0xcffff - VGA BIOS */
198 pci_write_config8(PCI_DEV(0, 0, 3), 0x80, 0x2a);
199 pci_write_config8(PCI_DEV(0, 0, 7), 0x61, 0x00);
200 /* 0xd0000-0xdffff - ?? */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000201 /* pci_write_config8(PCI_DEV(0, 0, 3), 0x81, 0xff); */
202 /* pci_write_config8(PCI_DEV(0, 0, 7), 0x62, 0xff); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000203
Uwe Hermann0ffff342009-06-07 13:46:50 +0000204 /* Do it again for the vlink controller. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000205 shadowreg = pci_read_config8(PCI_DEV(0, 0, 7), 0x63);
206 shadowreg |= 0x30;
207 pci_write_config8(PCI_DEV(0, 0, 7), 0x63, shadowreg);
208#endif
209}
210
Uwe Hermann0ffff342009-06-07 13:46:50 +0000211/*
212 * Added this table 2008-11-28.
213 * This table contains the value needed to be set before begin to init DRAM.
214 * Note: REV_Bx should be checked for changes when porting a new board!
215 */
216static const struct VIA_PCI_REG_INIT_TABLE mNbStage1InitTbl[] = {
217 /* VT3409 no PCI-E */
218 0x00, 0xFF, NB_APIC_REG(0x61), 0xFF, 0x0E, // Set Exxxxxxx as pcie mmio config range
219 0x00, 0xFF, NB_APIC_REG(0x60), 0xF4, 0x0B, // Support extended cfg address of pcie
Uwe Hermannd64f4032009-06-07 14:38:32 +0000220 // 0x00, 0xFF, NB_APIC_REG(0x42), 0xF9, 0x02, // APIC Interrupt((BT_INTR)) Control
Uwe Hermann0ffff342009-06-07 13:46:50 +0000221 // Set ROMSIP value by software
Uwe Hermann20a98c92009-06-05 23:02:43 +0000222
Uwe Hermann0ffff342009-06-07 13:46:50 +0000223 /*
224 0x00, 0xFF, NB_HOST_REG(0x70), 0x77, 0x33, // 2x Host Adr Strobe/Pad Pullup Driving = 3
225 0x00, 0xFF, NB_HOST_REG(0x71), 0x77, 0x33, // 2x Host Adr Strobe/Pad Pulldown Driving = 3
226 0x00, 0xFF, NB_HOST_REG(0x72), 0x77, 0x33, // 4x Host Dat Strobe/Pad Pullup Driving = 3
227 0x00, 0xFF, NB_HOST_REG(0x73), 0x77, 0x33, // 4x Host Dat Strobe/Pad Pulldown Driving = 3
228 0x00, 0xFF, NB_HOST_REG(0x74), 0xFF, 0x21, // Memory I/F timing ctrl
229 0x00, 0xFF, NB_HOST_REG(0x74), 0xFF, 0xE1, // Memory I/F timing ctrl
230 0x00, 0xFF, NB_HOST_REG(0x75), 0xFF, 0x18, // AGTL+ I/O Circuit
231 0x00, 0xFF, NB_HOST_REG(0x76), 0xFB, 0x0C, // AGTL+ Compensation Status
232 0x00, 0xFF, NB_HOST_REG(0x78), 0xFF, 0x33, // 2X AGTL+ Auto Compensation Offset
233 0x00, 0xFF, NB_HOST_REG(0x79), 0xFF, 0x33, // 4X AGTL+ Auto Compensation Offset
234 0x00, 0xFF, NB_HOST_REG(0x7A), 0x3F, 0x72, // AGTL Compensation Status
235 0x00, 0xFF, NB_HOST_REG(0x7A), 0x3F, 0x77, // AGTL Compensation Status
236 0x00, 0xFF, NB_HOST_REG(0x7B), 0xFF, 0x44, // Input Host Address / Host Strobe Delay Control for HA Group
237 0x00, 0xFF, NB_HOST_REG(0x7B), 0xFF, 0x22, // Input Host Address / Host Strobe Delay Control for HA Group
238 0x00, 0xFF, NB_HOST_REG(0x7C), 0xFF, 0x00, // Output Delay Control of PAD for HA Group
239 0x00, 0xFF, NB_HOST_REG(0x7D), 0xFF, 0xAA, // Host Address / Address Clock Output Delay Control (Only for P4 Bus)
240 0x00, 0xFF, NB_HOST_REG(0x7E), 0xFF, 0x10, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
241 0x00, 0xFF, NB_HOST_REG(0x7E), 0xFF, 0x40, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
242 0x00, 0xFF, NB_HOST_REG(0x7F), 0xFF, 0x10, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
243 0x00, 0xFF, NB_HOST_REG(0x7F), 0xFF, 0x40, // Host Address CKG Rising / Falling Time Control (Only for P4 Bus)
244 0x00, 0xFF, NB_HOST_REG(0x80), 0x3F, 0x44, // Host Data Receiving Strobe Delay Ctrl 1
245 0x00, 0xFF, NB_HOST_REG(0x81), 0xFF, 0x44, // Host Data Receiving Strobe Delay Ctrl 2
246 0x00, 0xFF, NB_HOST_REG(0x82), 0xFF, 0x00, // Output Delay of PAD for HDSTB
247 0x00, 0xFF, NB_HOST_REG(0x83), 0xFF, 0x00, // Output Delay of PAD for HD
248 0x00, 0xFF, NB_HOST_REG(0x84), 0xFF, 0x44, // Host Data / Strobe CKG Control (Group 0)
249 0x00, 0xFF, NB_HOST_REG(0x85), 0xFF, 0x44, // Host Data / Strobe CKG Control (Group 1)
250 0x00, 0xFF, NB_HOST_REG(0x86), 0xFF, 0x44, // Host Data / Strobe CKG Control (Group 2)
Uwe Hermannd64f4032009-06-07 14:38:32 +0000251 0x00, 0xFF, NB_HOST_REG(0x87), 0xFF, 0x44, // Host Data / Strobe CKG Control (Group 3)
252 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000253
Uwe Hermann0ffff342009-06-07 13:46:50 +0000254 // CPU Host Bus Control
255 0x00, 0xFF, NB_HOST_REG(0x50), 0x1F, 0x08, // Request phase ctrl: Dynamic Defer Snoop Stall Count = 8
Uwe Hermannd64f4032009-06-07 14:38:32 +0000256 // 0x00, 0xFF, NB_HOST_REG(0x51), 0xFF, 0x7F, // CPU I/F Ctrl-1: Disable Fast DRDY and RAW
Uwe Hermann0ffff342009-06-07 13:46:50 +0000257 0x00, 0xFF, NB_HOST_REG(0x51), 0xFF, 0x7C, // CPU I/F Ctrl-1: Disable Fast DRDY and RAW
258 0x00, 0xFF, NB_HOST_REG(0x52), 0xCB, 0xCB, // CPU I/F Ctrl-2: Enable all for performance
Uwe Hermannd64f4032009-06-07 14:38:32 +0000259 // 0x00, 0xFF, NB_HOST_REG(0x53), 0xFF, 0x88, // Arbitration: Host/Master Occupancy timer = 8*4 HCLK
Uwe Hermann0ffff342009-06-07 13:46:50 +0000260 0x00, 0xFF, NB_HOST_REG(0x53), 0xFF, 0x44, // Arbitration: Host/Master Occupancy timer = 4*4 HCLK
261 0x00, 0xFF, NB_HOST_REG(0x54), 0x1E, 0x1C, // Misc Ctrl: Enable 8QW burst Mem Access
Uwe Hermannd64f4032009-06-07 14:38:32 +0000262 // 0x00, 0xFF, NB_HOST_REG(0x55), 0x06, 0x06, // Miscellaneous Control 2
Uwe Hermann0ffff342009-06-07 13:46:50 +0000263 0x00, 0xFF, NB_HOST_REG(0x55), 0x06, 0x04, // Miscellaneous Control 2
264 0x00, 0xFF, NB_HOST_REG(0x56), 0xF7, 0x63, // Write Policy 1
Uwe Hermannd64f4032009-06-07 14:38:32 +0000265 // 0x00, 0xFF, NB_HOST_REG(0x59), 0x3D, 0x01, // CPU Miscellaneous Control 1, enable Lowest-Priority IPL
266 // 0x00, 0xFF, NB_HOST_REG(0x5c), 0xFF, 0x00, // CPU Miscellaneous Control 2
Uwe Hermann0ffff342009-06-07 13:46:50 +0000267 0x00, 0xFF, NB_HOST_REG(0x5D), 0xFF, 0xA2, // Write Policy
268 0x00, 0xFF, NB_HOST_REG(0x5E), 0xFF, 0x88, // Bandwidth Timer
269 0x00, 0xFF, NB_HOST_REG(0x5F), 0x46, 0x46, // CPU Misc Ctrl
Uwe Hermannd64f4032009-06-07 14:38:32 +0000270 // 0x00, 0xFF, NB_HOST_REG(0x90), 0xFF, 0x0B, // CPU Miscellaneous Control 3
271 // 0x00, 0xFF, NB_HOST_REG(0x96), 0x0B, 0x0B, // CPU Miscellaneous Control 2
Uwe Hermann0ffff342009-06-07 13:46:50 +0000272 0x00, 0xFF, NB_HOST_REG(0x96), 0x0B, 0x0A, // CPU Miscellaneous Control 2
273 0x00, 0xFF, NB_HOST_REG(0x98), 0xC1, 0x41, // CPU Miscellaneous Control 3
274 0x00, 0xFF, NB_HOST_REG(0x99), 0x0E, 0x06, // CPU Miscellaneous Control 4
Uwe Hermann20a98c92009-06-05 23:02:43 +0000275
Uwe Hermann0ffff342009-06-07 13:46:50 +0000276 // Set APIC and SMRAM
277 0x00, 0xFF, NB_HOST_REG(0x97), 0xFF, 0x00, // APIC Related Control
278 0x00, 0xFF, NB_DRAMC_REG(0x86), 0xD6, 0x29, // SMM and APIC Decoding: enable APIC, MSI and SMRAM A-Seg
279 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 // End of the table
Uwe Hermann20a98c92009-06-05 23:02:43 +0000280};
281
Uwe Hermann0ffff342009-06-07 13:46:50 +0000282#define USE_VCP 1 /* 0 means "use DVP". */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000283#define USE_COM1 1
284#define USE_COM2 0
285
286#define gCom1Base 0x3f8
287#define gCom2Base 0x2f8
Uwe Hermann0ffff342009-06-07 13:46:50 +0000288
Uwe Hermannd64f4032009-06-07 14:38:32 +0000289void EmbedComInit(void)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000290{
Uwe Hermann0ffff342009-06-07 13:46:50 +0000291 u8 ByteVal;
292 u16 ComBase;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000293
Uwe Hermann0ffff342009-06-07 13:46:50 +0000294 /* Enable NB multiple function control. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000295 ByteVal = pci_read_config8(PCI_DEV(0, 0, 0), 0x4f);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000296 ByteVal = ByteVal | 0x01;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000297 pci_write_config8(PCI_DEV(0, 0, 0), 0x4f, ByteVal);
298
Uwe Hermann0ffff342009-06-07 13:46:50 +0000299 /* VGA enable. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000300 ByteVal = pci_read_config8(PCI_DEV(0, 0, 3), 0xA1);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000301 ByteVal = ByteVal | 0x80;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000302 pci_write_config8(PCI_DEV(0, 0, 3), 0xA1, ByteVal);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000303
Uwe Hermann20a98c92009-06-05 23:02:43 +0000304 ByteVal = pci_read_config8(PCI_DEV(0, 0, 3), 0xA7);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000305 ByteVal = ByteVal | 0x08;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000306 pci_write_config8(PCI_DEV(0, 0, 3), 0xA7, ByteVal);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000307
308 /* Enable P2P IO/mem. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000309 ByteVal = pci_read_config8(PCI_DEV(0, 1, 0), 0x4);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000310 ByteVal = ByteVal | 0x07;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000311 pci_write_config8(PCI_DEV(0, 1, 0), 0x4, ByteVal);
312
Uwe Hermann0ffff342009-06-07 13:46:50 +0000313 /* Turn on graphic chip I/O port port access. */
314 ByteVal = inb(0x3C3);
315 ByteVal = ByteVal | 0x01;
316 outb(ByteVal, 0x3C3);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000317
Uwe Hermann0ffff342009-06-07 13:46:50 +0000318 /* Turn off graphic chip register protection. */
319 outb(0x10, 0x3C4);
320 ByteVal = inb(0x3C5);
321 ByteVal = ByteVal | 0x01;
322 outb(ByteVal, 0x3C5);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000323
Uwe Hermann0ffff342009-06-07 13:46:50 +0000324 /* South module pad share enable 0x3C5.78[7]. */
325 outb(0x78, 0x3C4);
326 ByteVal = inb(0x3C5);
327 ByteVal = ByteVal | 0x80;
328 outb(ByteVal, 0x3C5);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000329
Uwe Hermann0ffff342009-06-07 13:46:50 +0000330 /* Enable UART function multiplex with DVP or VCP pad D17F0Rx46[7,6]. */
331 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0x46);
332 if (USE_VCP == 1)
333 ByteVal = (ByteVal & 0x3F) | 0x40; /* Multiplex with VCP. */
334 else
335 ByteVal = (ByteVal & 0x3F) | 0xC0; /* Multiplex with DVP. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000336 pci_write_config8(PCI_DEV(0, 17, 0), 0x46, ByteVal);
337
Uwe Hermann0ffff342009-06-07 13:46:50 +0000338 /* Enable embedded COM1 and COM2 D17F0RxB0[5,4]. */
339 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xB0);
340 ByteVal = ByteVal & 0xcf;
341 /* Multiplex with VCP. */
342 if (USE_COM1 == 1)
343 ByteVal = ByteVal | 0x10;
344 if (USE_COM2 == 1)
345 ByteVal = ByteVal | 0x20;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000346 pci_write_config8(PCI_DEV(0, 17, 0), 0xB0, ByteVal);
347
Uwe Hermann0ffff342009-06-07 13:46:50 +0000348 if (USE_COM1 == 1)
349 ComBase = gCom1Base;
350 else
351 ComBase = gCom2Base;
352
Uwe Hermann20a98c92009-06-05 23:02:43 +0000353//noharddrive
354
Uwe Hermannd64f4032009-06-07 14:38:32 +0000355 /* Set embedded COM1 I/O base = 0x3E8 (D17F0RB4, ByteVal = 0xFD) */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000356 if (USE_COM1 == 1) {
357 ByteVal = (u8) ((gCom1Base >> 3) | 0x80);
358 pci_write_config8(PCI_DEV(0, 17, 0), 0xB4, ByteVal);
359 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xb2);
360 ByteVal = (ByteVal & 0xf0) | 0x04;
361 pci_write_config8(PCI_DEV(0, 17, 0), 0xB2, ByteVal);
362 }
Uwe Hermann20a98c92009-06-05 23:02:43 +0000363
Uwe Hermannd64f4032009-06-07 14:38:32 +0000364 /* Set embedded COM2 I/O base = 0x2E8 (D17F0RB5, ByteVal = 0xDD). */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000365 if (USE_COM2 == 1) {
366 ByteVal = (u8) ((gCom2Base >> 3) | 0x80);
367 pci_write_config8(PCI_DEV(0, 17, 0), 0xB5, ByteVal);
368 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xb2);
369 ByteVal = (ByteVal & 0x0f) | 0x30;
370 pci_write_config8(PCI_DEV(0, 17, 0), 0xB2, ByteVal);
371 }
372 /* No port 80 biger then 0x10. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000373
Uwe Hermann0ffff342009-06-07 13:46:50 +0000374 /* Disable interrupt. */
375 ByteVal = inb(ComBase + 3);
376 outb(ByteVal & 0x7F, ComBase + 3);
377 outb(0x00, ComBase + 1);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000378
Uwe Hermann0ffff342009-06-07 13:46:50 +0000379 /* Set BAUD rate. */
380 ByteVal = inb(ComBase + 3);
381 outb(ByteVal | 0x80, ComBase + 3);
382 outb(0x01, ComBase);
383 outb(0x00, ComBase + 1);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000384
Uwe Hermann0ffff342009-06-07 13:46:50 +0000385 /* Set frame format. */
386 ByteVal = inb(ComBase + 3);
387 outb(ByteVal & 0x3F, ComBase + 3);
388 outb(0x03, ComBase + 3);
389 outb(0x00, ComBase + 2);
390 outb(0x00, ComBase + 4);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000391
Uwe Hermann0ffff342009-06-07 13:46:50 +0000392 /* SOutput("Embedded COM output\n"); */
393 /* while(1); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000394}
395
Uwe Hermann0ffff342009-06-07 13:46:50 +0000396/* cache_as_ram.inc jumps to here. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000397void amd64_main(unsigned long bist)
Uwe Hermann0ffff342009-06-07 13:46:50 +0000398{
399 unsigned cpu_reset = 0;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000400 u16 boot_mode;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000401 u8 rambits, Data8, Data;
402 device_t device;
403 /* device_t dev; */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000404
Uwe Hermann0ffff342009-06-07 13:46:50 +0000405 /*
406 * Enable multifunction for northbridge. These 4 lines (until
407 * console_init()) are the same with epia-cn port.
408 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000409 pci_write_config8(PCI_DEV(0, 0, 0), 0x4f, 0x01);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000410 EmbedComInit();
411 /* enable_vx800_serial(); */
412 /* uart_init(); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000413
Uwe Hermann0ffff342009-06-07 13:46:50 +0000414 /*
415 * 1. D15F0
416 * a) RxBAh = 71h
417 * b) RxBBh = 05h
418 * c) RxBEh = 71h
419 * d) RxBFh = 05h
420 *
421 * 2. D17F0
422 * a) RxA0h = 06h
423 * b) RxA1h = 11h
424 * c) RxA2h = 27h
425 * d) RxA3h = 32h
426 * e) Rx79h = 40h
427 * f) Rx72h = 27h
428 * g) Rx73h = 32h
429 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000430
Uwe Hermann0ffff342009-06-07 13:46:50 +0000431 jason_tsc_count_car();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000432
Uwe Hermann0ffff342009-06-07 13:46:50 +0000433 pci_write_config16(PCI_DEV(0, 0xf, 0), 0xBA,
434 PCI_DEVICE_ID_VIA_VX855_IDE);
435 pci_write_config16(PCI_DEV(0, 0xf, 0), 0xBE,
436 PCI_DEVICE_ID_VIA_VX855_IDE);
437 pci_write_config16(PCI_DEV(0, 0x11, 0), 0xA0, PCI_VENDOR_ID_VIA);
438 pci_write_config16(PCI_DEV(0, 0x11, 0), 0xA2,
439 PCI_DEVICE_ID_VIA_VX855_LPC);
440 Data8 = pci_read_config8(PCI_DEV(0, 0x11, 0), 0x79);
441 Data8 &= ~0x40;
442 Data8 |= 0x40;
443 pci_write_config8(PCI_DEV(0, 0x11, 0), 0x79, Data8);
444 pci_write_config16(PCI_DEV(0, 0x11, 0), 0x72,
445 PCI_DEVICE_ID_VIA_VX855_LPC);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000446
Uwe Hermann0ffff342009-06-07 13:46:50 +0000447 /*
448 * There are two function definitions of console_init(), while the
449 * src/arch/i386/lib is the right one.
450 */
451 console_init();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000452
Uwe Hermann0ffff342009-06-07 13:46:50 +0000453 /* Decide if this is a s3 wakeup or a normal boot. */
454 boot_mode = acpi_is_wakeup_early_via_vx800();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000455
Uwe Hermann0ffff342009-06-07 13:46:50 +0000456 /*
457 * 2008-11-27 Add this, to transfer "cpu restart" to "cold boot".
458 * When this boot is not a S3 resume, and PCI registers had been
459 * written, then this must be a CPU restart (result of OS reboot cmd),
460 * so we need a real "cold boot".
461 */
462 jason_tsc_count_car();
463 if ((boot_mode != 3)
464 && (pci_read_config8(PCI_DEV(0, 0, 3), 0x80) != 0)) {
465 outb(6, 0xcf9);
466 }
Uwe Hermann20a98c92009-06-05 23:02:43 +0000467
Uwe Hermann0ffff342009-06-07 13:46:50 +0000468 /* x86 cold boot I/O cmd. */
469 /* These 2 lines are the same with epia-cn port. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000470 enable_smbus();
Uwe Hermann0ffff342009-06-07 13:46:50 +0000471 jason_tsc_count_car();
472
473 /* This fix does help vx800!, but vx855 doesn't need this. */
474 /* smbus_fixup(&ctrl); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000475
476 if (bist == 0) {
Uwe Hermann0ffff342009-06-07 13:46:50 +0000477 /*
478 * CAR needs MTRR until memory is ok, so disable this
479 * early_mtrr_init() call.
480 */
481#if 0
482 print_debug("doing early_mtrr\r\n");
483 early_mtrr_init();
484#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000485 }
486
487 /* Halt if there was a built-in self test failure. */
488 report_bist_failure(bist);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000489
Uwe Hermann20a98c92009-06-05 23:02:43 +0000490 print_debug("Enabling mainboard devices\r\n");
491 enable_mainboard_devices();
492
Uwe Hermann0ffff342009-06-07 13:46:50 +0000493 /*
494 * Get NB chip revision from D0F4RxF6, revision will be used in
495 * via_pci_inittable.
496 */
497 device = PCI_DEV(0, 0, 4);
498 Data = pci_read_config8(device, 0xf6);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000499 print_debug("NB chip revision =");
Uwe Hermann0ffff342009-06-07 13:46:50 +0000500 print_debug_hex8(Data);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000501 print_debug("\r\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000502
Uwe Hermann0ffff342009-06-07 13:46:50 +0000503 /* Make NB ready before DRAM init. */
504 via_pci_inittable(Data, mNbStage1InitTbl);
505
506 /*
507 * When resume from s3, DRAM init is skipped, so need to recovery
508 * any PCI register related to DRAM init. d0f3 didn't lose its power
509 * during whole s3 time, so any register not belonging to d0f3 needs
510 * to be recovered.
511 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000512#if 1
Uwe Hermann0ffff342009-06-07 13:46:50 +0000513 if (boot_mode == 3) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000514 u8 i;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000515 u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 };
Uwe Hermann20a98c92009-06-05 23:02:43 +0000516 DRAM_SYS_ATTR DramAttr;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000517
Uwe Hermann0ffff342009-06-07 13:46:50 +0000518 print_debug("This is an S3 wakeup\r\n");
519
520 memset(&DramAttr, 0, sizeof(DRAM_SYS_ATTR));
521 /*
522 * Step 1: DRAM detection; DDR1 or DDR2; Get SPD Data;
523 * Rank Presence; 64 or 128bit; Unbuffered or registered;
524 * 1T or 2T.
525 */
526 DRAMDetect(&DramAttr);
527
528 /*
529 * Begin to get RAM size, 43,42 41 40 contains the end
530 * address of last rank in DDR2 slot.
531 */
532 device = PCI_DEV(0, 0, 3);
533 for (rambits = 0, i = 0; i < ARRAY_SIZE(ramregs); i++) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000534 rambits = pci_read_config8(device, ramregs[i]);
535 if (rambits != 0)
536 break;
537 }
538
Uwe Hermann0ffff342009-06-07 13:46:50 +0000539 DRAMDRDYSetting(&DramAttr);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000540
Uwe Hermann0ffff342009-06-07 13:46:50 +0000541 Data = 0x80; /* This value is same with DevInit.c. */
542 pci_write_config8(PCI_DEV(0, 0, 4), 0xa3, Data);
543 pci_write_config8(PCI_DEV(0, 17, 7), 0x60, rambits << 2);
544 Data = pci_read_config8(MEMCTRL, 0x88);
545 pci_write_config8(PCI_DEV(0, 17, 7), 0xE5, Data);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000546
Uwe Hermann0ffff342009-06-07 13:46:50 +0000547 /* Just copy this function from draminit to here! */
548 DRAMRegFinalValue(&DramAttr);
549
550 /* Just copy this function from draminit to here! */
551 SetUMARam();
552
553 print_debug("Resume from S3, RAM init was ignored\r\n");
554 } else {
555 ddr2_ram_setup();
556 ram_check(0, 640 * 1024);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000557 }
558#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000559
Uwe Hermann0ffff342009-06-07 13:46:50 +0000560 /* ddr2_ram_setup(); */
561 /* This line is the same with cx700 port. */
562 enable_shadow_ram();
563
564 jason_tsc_count_car();
565
566 /*
567 * For coreboot most time of S3 resume is the same as normal boot,
568 * so some memory area under 1M become dirty, so before this happen,
569 * I need to backup the content of mem to top-mem.
570 *
571 * I will reserve the 1M top-men in LBIO table in coreboot_table.c
572 * and recovery the content of 1M-mem in wakeup.c.
573 */
574#if PAYLOAD_IS_SEABIOS == 1
575 if (boot_mode == 3) {
576 /* An idea of Libo.Feng at amd.com in http://www.coreboot.org/pipermail/coreboot/2008-December/043111.html
577 *
578 * I want move the 1M data, I have to set some MTRRs myself.
579 * Setting MTRR before back memory save s3 resume time about
580 * 0.14 seconds.
581 *
582 * !!! Since CAR stack uses cache, and we are using cache
583 * here, we must be careful:
584 *
585 * 1. during this MTRR code, must no function call (after
586 * this MTRR, I think it should be OK to use function).
587 * 2. Before stack switch, no use variable that have value
588 * set before this.
589 * 3. Due to 2, take care of "cpu_reset", I directlly set it
590 * to ZERO.
Uwe Hermann20a98c92009-06-05 23:02:43 +0000591 */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000592 u32 memtop = *(u32 *) WAKE_MEM_INFO;
593 u32 memtop1 = *(u32 *) WAKE_MEM_INFO - 0x100000;
594 u32 memtop2 = *(u32 *) WAKE_MEM_INFO - 0x200000;
595 u32 memtop3 = *(u32 *) WAKE_MEM_INFO - 64 * 1024 - 0x100000;
596 u32 memtop4 =
597 *(u32 *) WAKE_MEM_INFO - 64 * 1024 - 0x100000 + 0xe0000;
598#if 0
599 __asm__ volatile (
600 "movl $0x204, %%ecx\n\t"
601 "xorl %%edx, %%edx\n\t"
602 "movl %0,%%eax\n\t"
603 "orl $(0 | 6), %%eax\n\t"
604 "wrmsr\n\t"
Uwe Hermann20a98c92009-06-05 23:02:43 +0000605
Uwe Hermann0ffff342009-06-07 13:46:50 +0000606 "movl $0x205, %%ecx\n\t"
607 "xorl %%edx, %%edx\n\t"
608 "movl $0x100000,%%eax\n\t"
609 "decl %%eax\n\t"
610 "notl %%eax\n\t"
611 "orl $(0 | 0x800), %%eax\n\t"
612 "wrmsr\n\t"
613 ::"g"(memtop2)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000614 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000615
Uwe Hermann0ffff342009-06-07 13:46:50 +0000616 __asm__ volatile (
617 "movl $0x206, %%ecx\n\t"
618 "xorl %%edx, %%edx\n\t"
619 "movl %0,%%eax\n\t"
620 "orl $(0 | 6), %%eax\n\t"
621 "wrmsr\n\t"
622
623 "movl $0x207, %%ecx\n\t"
624 "xorl %%edx, %%edx\n\t"
625 "movl $0x100000,%%eax\n\t"
626 "decl %%eax\n\t"
627 "notl %%eax\n\t"
628 "orl $(0 | 0x800), %%eax\n\t"
629 "wrmsr\n\t"
630 ::"g"(memtop1)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000631 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000632
Uwe Hermann0ffff342009-06-07 13:46:50 +0000633 __asm__ volatile (
634 "movl $0x208, %ecx\n\t"
635 "xorl %edx, %edx\n\t"
636 "movl $0,%eax\n\t"
637 "orl $(0 | 6), %eax\n\t"
638 "wrmsr\n\t"
639
640 "movl $0x209, %ecx\n\t"
641 "xorl %edx, %edx\n\t"
642 "movl $0x100000,%eax\n\t"
643 "decl %eax\n\t"
644 "notl %eax\n\t"
645 "orl $(0 | 0x800), %eax\n\t"
646 "wrmsr\n\t"
Uwe Hermann20a98c92009-06-05 23:02:43 +0000647 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000648#endif
649
Uwe Hermann0ffff342009-06-07 13:46:50 +0000650 /*
651 * WAKE_MEM_INFO is inited in get_set_top_available_mem()
652 * in tables.c these two memcpy() not not be enabled if set
653 * the MTRR around this two lines.
654 */
655#if 0
656 __asm__ volatile (
657 "movl $0, %%esi\n\t"
658 "movl %0, %%edi\n\t"
659 "movl $0xa0000, %%ecx\n\t"
660 "shrl $2, %%ecx\n\t"
661 "rep movsd\n\t"
662 ::"g"(memtop3)
663 );
664
665 __asm__ volatile (
666 "movl $0xe0000, %%esi\n\t"
667 "movl %0, %%edi\n\t"
668 "movl $0x20000, %%ecx\n\t"
669 "shrl $2, %%ecx\n\t"
670 "rep movsd\n\t"
671 ::"g"(memtop4)
672 );
673#endif
674 /* This can have function call, because no variable used before this. */
675 print_debug("Copy memory to high memory to protect s3 wakeup vector code \r\n");
676 memcpy((unsigned char *)((*(u32 *) WAKE_MEM_INFO) - 64 * 1024 -
677 0x100000), (unsigned char *)0, 0xa0000);
678 memcpy((unsigned char *)((*(u32 *) WAKE_MEM_INFO) - 64 * 1024 -
679 0x100000 + 0xe0000), (unsigned char *)0xe0000, 0x20000);
680
681 /* Restore the MTRR previously modified. */
682#if 0
683 __asm__ volatile (
684 "wbinvd\n\t"
685 "xorl %edx, %edx\n\t"
686 "xorl %eax, %eax\n\t"
687 "movl $0x204, %ecx\n\t"
688 "wrmsr\n\t"
689 "movl $0x205, %ecx\n\t"
690 "wrmsr\n\t"
691 "movl $0x206, %ecx\n\t"
692 "wrmsr\n\t"
693 "movl $0x207, %ecx\n\t"
694 "wrmsr\n\t"
695 "movl $0x208, %ecx\n\t"
696 "wrmsr\n\t"
697 "movl $0x209, %ecx\n\t"
698 "wrmsr\n\t"
699 );
700#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000701 }
Uwe Hermann0ffff342009-06-07 13:46:50 +0000702
703#endif
704
705/*
706 * The following code is copied from tyan\s2735\cache_as_ram_auto.c.
707 * Only the code around CLEAR_FIRST_1M_RAM is changed. Removed all the code
708 * around CLEAR_FIRST_1M_RAM and #include "cpu/x86/car/cache_as_ram_post.c".
709 * The CLEAR_FIRST_1M_RAM seems to make cpu/x86/car/cache_as_ram_post.c stop
710 * at somewhere, and cpu/x86/car/cache_as_ram_post.c do not cache my
711 * $XIP_ROM_BASE+SIZE area.
712 *
713 * Use #include "cpu/via/car/cache_as_ram_post.c". This version post.c have
714 * some diff with x86-version.
715 */
716#if 1
717 {
718 /*
719 * Check value of esp to verify if we have enough ROM for
720 * stack in Cache as RAM.
721 */
722 unsigned v_esp;
723 __asm__ volatile ("movl %%esp, %0\n\t":"=a" (v_esp));
724#if CONFIG_USE_INIT
725 printk_debug("v_esp=%08x\r\n", v_esp);
726#else
727 print_debug("v_esp=");
728 print_debug_hex32(v_esp);
729 print_debug("\r\n");
730#endif
731 }
732#endif
733
734#if 1
735cpu_reset_x:
736
737 /* It seems that cpu_reset is not used before this, so I just reset
738 * it, (this is because the s3 resume, setting in MTRR and copy data
739 * may destroy stack.
740 */
741 cpu_reset = 0;
742
743#if CONFIG_USE_INIT
744 printk_debug("cpu_reset = %08x\r\n", cpu_reset);
745#else
746 print_debug("cpu_reset = ");
747 print_debug_hex32(cpu_reset);
748 print_debug("\r\n");
749#endif
750
751 if (cpu_reset == 0)
752 print_debug("Clearing initial memory region: ");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000753 print_debug("No cache as ram now - ");
754
Uwe Hermann0ffff342009-06-07 13:46:50 +0000755 /* Store cpu_reset to ebx. */
756 __asm__ volatile ("movl %0, %%ebx\n\t"::"a" (cpu_reset));
Uwe Hermann20a98c92009-06-05 23:02:43 +0000757
Uwe Hermann0ffff342009-06-07 13:46:50 +0000758 /*
759 * Cancel these lines, CLEAR_FIRST_1M_RAM cause the
760 * cpu/x86/car/cache_as_ram_post.c stop at somewhere.
761 */
762#if 0
763 if (cpu_reset == 0) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000764#define CLEAR_FIRST_1M_RAM 1
Uwe Hermann0ffff342009-06-07 13:46:50 +0000765#include "cpu/via/car/cache_as_ram_post.c"
766 } else {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000767#undef CLEAR_FIRST_1M_RAM
768#include "cpu/via/car/cache_as_ram_post.c"
769 }
Uwe Hermann0ffff342009-06-07 13:46:50 +0000770#endif
771
772#include "cpu/via/car/cache_as_ram_post.c"
773/* #include "cpu/x86/car/cache_as_ram_post.c" */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000774 __asm__ volatile (
Uwe Hermann0ffff342009-06-07 13:46:50 +0000775 /* Set new esp *//* before _RAMBASE */
776 "subl %0, %%ebp\n\t"
777 "subl %0, %%esp\n\t"::
778 "a" ((DCACHE_RAM_BASE + DCACHE_RAM_SIZE) - _RAMBASE)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000779 );
780
781 {
782 unsigned new_cpu_reset;
783
Uwe Hermann0ffff342009-06-07 13:46:50 +0000784 /* Get back cpu_reset from ebx. */
785 __asm__ volatile ("movl %%ebx, %0\n\t":"=a" (new_cpu_reset));
Uwe Hermann20a98c92009-06-05 23:02:43 +0000786
Uwe Hermann0ffff342009-06-07 13:46:50 +0000787 /* We can't go back anymore, we lost old stack data in CAR. */
788 if (new_cpu_reset == 0)
789 print_debug("Use Ram as Stack now - done\r\n");
790 else
791 print_debug("Use Ram as Stack now - \r\n");
792
Uwe Hermann20a98c92009-06-05 23:02:43 +0000793#if CONFIG_USE_INIT
Uwe Hermann0ffff342009-06-07 13:46:50 +0000794 printk_debug("new_cpu_reset = %08x\r\n", new_cpu_reset);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000795#else
Uwe Hermann0ffff342009-06-07 13:46:50 +0000796 print_debug("new_cpu_reset = ");
797 print_debug_hex32(new_cpu_reset);
798 print_debug("\r\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000799#endif
Uwe Hermann0ffff342009-06-07 13:46:50 +0000800
801 jason_tsc_count_car();
802 /* Copy and execute coreboot_ram. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000803 copy_and_run(new_cpu_reset);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000804 /* We will not return. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000805 }
806#endif
807
Uwe Hermann20a98c92009-06-05 23:02:43 +0000808 print_debug("should not be here -\r\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000809}