blob: 8095b81ec8158991a4b1d8e20c811731ff3f46e2 [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 Hermann20a98c92009-06-05 23:02:43 +000051#include "mainboard/via/6413e/DrivingClkPhaseData.c"
52
53#include "northbridge/via/vx800/raminit.h"
54#include "northbridge/via/vx800/raminit.c"
55#include "cpu/x86/car/copy_and_run.c"
56#include "mainboard/via/6413e/wakeup.h"
57
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
220 //0x00, 0xFF, NB_APIC_REG(0x42), 0xF9, 0x02, // APIC Interrupt((BT_INTR)) Control
221 // 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)
251 0x00, 0xFF, NB_HOST_REG(0x87), 0xFF, 0x44, // Host Data / Strobe CKG Control (Group 3) */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000252
Uwe Hermann0ffff342009-06-07 13:46:50 +0000253 // CPU Host Bus Control
254 0x00, 0xFF, NB_HOST_REG(0x50), 0x1F, 0x08, // Request phase ctrl: Dynamic Defer Snoop Stall Count = 8
255 //0x00, 0xFF, NB_HOST_REG(0x51), 0xFF, 0x7F, // CPU I/F Ctrl-1: Disable Fast DRDY and RAW
256 0x00, 0xFF, NB_HOST_REG(0x51), 0xFF, 0x7C, // CPU I/F Ctrl-1: Disable Fast DRDY and RAW
257 0x00, 0xFF, NB_HOST_REG(0x52), 0xCB, 0xCB, // CPU I/F Ctrl-2: Enable all for performance
258 //0x00, 0xFF, NB_HOST_REG(0x53), 0xFF, 0x88, // Arbitration: Host/Master Occupancy timer = 8*4 HCLK
259 0x00, 0xFF, NB_HOST_REG(0x53), 0xFF, 0x44, // Arbitration: Host/Master Occupancy timer = 4*4 HCLK
260 0x00, 0xFF, NB_HOST_REG(0x54), 0x1E, 0x1C, // Misc Ctrl: Enable 8QW burst Mem Access
261 //0x00, 0xFF, NB_HOST_REG(0x55), 0x06, 0x06, // Miscellaneous Control 2
262 0x00, 0xFF, NB_HOST_REG(0x55), 0x06, 0x04, // Miscellaneous Control 2
263 0x00, 0xFF, NB_HOST_REG(0x56), 0xF7, 0x63, // Write Policy 1
264 //0x00, 0xFF, NB_HOST_REG(0x59), 0x3D, 0x01, // CPU Miscellaneous Control 1, enable Lowest-Priority IPL
265 //0x00, 0xFF, NB_HOST_REG(0x5c), 0xFF, 0x00, // CPU Miscellaneous Control 2
266 0x00, 0xFF, NB_HOST_REG(0x5D), 0xFF, 0xA2, // Write Policy
267 0x00, 0xFF, NB_HOST_REG(0x5E), 0xFF, 0x88, // Bandwidth Timer
268 0x00, 0xFF, NB_HOST_REG(0x5F), 0x46, 0x46, // CPU Misc Ctrl
269 // 0x00, 0xFF, NB_HOST_REG(0x90), 0xFF, 0x0B, // CPU Miscellaneous Control 3
270 //0x00, 0xFF, NB_HOST_REG(0x96), 0x0B, 0x0B, // CPU Miscellaneous Control 2
271 0x00, 0xFF, NB_HOST_REG(0x96), 0x0B, 0x0A, // CPU Miscellaneous Control 2
272 0x00, 0xFF, NB_HOST_REG(0x98), 0xC1, 0x41, // CPU Miscellaneous Control 3
273 0x00, 0xFF, NB_HOST_REG(0x99), 0x0E, 0x06, // CPU Miscellaneous Control 4
Uwe Hermann20a98c92009-06-05 23:02:43 +0000274
Uwe Hermann0ffff342009-06-07 13:46:50 +0000275 // Set APIC and SMRAM
276 0x00, 0xFF, NB_HOST_REG(0x97), 0xFF, 0x00, // APIC Related Control
277 0x00, 0xFF, NB_DRAMC_REG(0x86), 0xD6, 0x29, // SMM and APIC Decoding: enable APIC, MSI and SMRAM A-Seg
278 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 // End of the table
Uwe Hermann20a98c92009-06-05 23:02:43 +0000279};
280
Uwe Hermann0ffff342009-06-07 13:46:50 +0000281#define USE_VCP 1 /* 0 means "use DVP". */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000282#define USE_COM1 1
283#define USE_COM2 0
284
285#define gCom1Base 0x3f8
286#define gCom2Base 0x2f8
Uwe Hermann0ffff342009-06-07 13:46:50 +0000287
Uwe Hermann20a98c92009-06-05 23:02:43 +0000288void EmbedComInit()
289{
Uwe Hermann0ffff342009-06-07 13:46:50 +0000290 u8 ByteVal;
291 u16 ComBase;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000292
Uwe Hermann0ffff342009-06-07 13:46:50 +0000293 /* Enable NB multiple function control. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000294 ByteVal = pci_read_config8(PCI_DEV(0, 0, 0), 0x4f);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000295 ByteVal = ByteVal | 0x01;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000296 pci_write_config8(PCI_DEV(0, 0, 0), 0x4f, ByteVal);
297
Uwe Hermann0ffff342009-06-07 13:46:50 +0000298 /* VGA enable. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000299 ByteVal = pci_read_config8(PCI_DEV(0, 0, 3), 0xA1);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000300 ByteVal = ByteVal | 0x80;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000301 pci_write_config8(PCI_DEV(0, 0, 3), 0xA1, ByteVal);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000302
Uwe Hermann20a98c92009-06-05 23:02:43 +0000303 ByteVal = pci_read_config8(PCI_DEV(0, 0, 3), 0xA7);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000304 ByteVal = ByteVal | 0x08;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000305 pci_write_config8(PCI_DEV(0, 0, 3), 0xA7, ByteVal);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000306
307 /* Enable P2P IO/mem. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000308 ByteVal = pci_read_config8(PCI_DEV(0, 1, 0), 0x4);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000309 ByteVal = ByteVal | 0x07;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000310 pci_write_config8(PCI_DEV(0, 1, 0), 0x4, ByteVal);
311
Uwe Hermann0ffff342009-06-07 13:46:50 +0000312 /* Turn on graphic chip I/O port port access. */
313 ByteVal = inb(0x3C3);
314 ByteVal = ByteVal | 0x01;
315 outb(ByteVal, 0x3C3);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000316
Uwe Hermann0ffff342009-06-07 13:46:50 +0000317 /* Turn off graphic chip register protection. */
318 outb(0x10, 0x3C4);
319 ByteVal = inb(0x3C5);
320 ByteVal = ByteVal | 0x01;
321 outb(ByteVal, 0x3C5);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000322
Uwe Hermann0ffff342009-06-07 13:46:50 +0000323 /* South module pad share enable 0x3C5.78[7]. */
324 outb(0x78, 0x3C4);
325 ByteVal = inb(0x3C5);
326 ByteVal = ByteVal | 0x80;
327 outb(ByteVal, 0x3C5);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000328
Uwe Hermann0ffff342009-06-07 13:46:50 +0000329 /* Enable UART function multiplex with DVP or VCP pad D17F0Rx46[7,6]. */
330 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0x46);
331 if (USE_VCP == 1)
332 ByteVal = (ByteVal & 0x3F) | 0x40; /* Multiplex with VCP. */
333 else
334 ByteVal = (ByteVal & 0x3F) | 0xC0; /* Multiplex with DVP. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000335 pci_write_config8(PCI_DEV(0, 17, 0), 0x46, ByteVal);
336
Uwe Hermann0ffff342009-06-07 13:46:50 +0000337 /* Enable embedded COM1 and COM2 D17F0RxB0[5,4]. */
338 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xB0);
339 ByteVal = ByteVal & 0xcf;
340 /* Multiplex with VCP. */
341 if (USE_COM1 == 1)
342 ByteVal = ByteVal | 0x10;
343 if (USE_COM2 == 1)
344 ByteVal = ByteVal | 0x20;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000345 pci_write_config8(PCI_DEV(0, 17, 0), 0xB0, ByteVal);
346
Uwe Hermann0ffff342009-06-07 13:46:50 +0000347 if (USE_COM1 == 1)
348 ComBase = gCom1Base;
349 else
350 ComBase = gCom2Base;
351
Uwe Hermann20a98c92009-06-05 23:02:43 +0000352//noharddrive
353
Uwe Hermann0ffff342009-06-07 13:46:50 +0000354 /* Set embedded COM1 I/O base = 0x3E8 */
355 //D17F0RB4
356 //ByteVal = 0xFD;
357 if (USE_COM1 == 1) {
358 ByteVal = (u8) ((gCom1Base >> 3) | 0x80);
359 pci_write_config8(PCI_DEV(0, 17, 0), 0xB4, ByteVal);
360 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xb2);
361 ByteVal = (ByteVal & 0xf0) | 0x04;
362 pci_write_config8(PCI_DEV(0, 17, 0), 0xB2, ByteVal);
363 }
Uwe Hermann20a98c92009-06-05 23:02:43 +0000364
Uwe Hermann0ffff342009-06-07 13:46:50 +0000365 /* Set embedded COM2 I/O base = 0x2E8. */
366 //D17F0RB5
367 //ByteVal = 0xDD;
368 if (USE_COM2 == 1) {
369 ByteVal = (u8) ((gCom2Base >> 3) | 0x80);
370 pci_write_config8(PCI_DEV(0, 17, 0), 0xB5, ByteVal);
371 ByteVal = pci_read_config8(PCI_DEV(0, 17, 0), 0xb2);
372 ByteVal = (ByteVal & 0x0f) | 0x30;
373 pci_write_config8(PCI_DEV(0, 17, 0), 0xB2, ByteVal);
374 }
375 /* No port 80 biger then 0x10. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000376
Uwe Hermann0ffff342009-06-07 13:46:50 +0000377 /* Disable interrupt. */
378 ByteVal = inb(ComBase + 3);
379 outb(ByteVal & 0x7F, ComBase + 3);
380 outb(0x00, ComBase + 1);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000381
Uwe Hermann0ffff342009-06-07 13:46:50 +0000382 /* Set BAUD rate. */
383 ByteVal = inb(ComBase + 3);
384 outb(ByteVal | 0x80, ComBase + 3);
385 outb(0x01, ComBase);
386 outb(0x00, ComBase + 1);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000387
Uwe Hermann0ffff342009-06-07 13:46:50 +0000388 /* Set frame format. */
389 ByteVal = inb(ComBase + 3);
390 outb(ByteVal & 0x3F, ComBase + 3);
391 outb(0x03, ComBase + 3);
392 outb(0x00, ComBase + 2);
393 outb(0x00, ComBase + 4);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000394
Uwe Hermann0ffff342009-06-07 13:46:50 +0000395 /* SOutput("Embedded COM output\n"); */
396 /* while(1); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000397}
398
Uwe Hermann0ffff342009-06-07 13:46:50 +0000399/* cache_as_ram.inc jumps to here. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000400void amd64_main(unsigned long bist)
Uwe Hermann0ffff342009-06-07 13:46:50 +0000401{
402 unsigned cpu_reset = 0;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000403 u16 boot_mode;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000404 u8 rambits, Data8, Data;
405 device_t device;
406 /* device_t dev; */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000407
Uwe Hermann0ffff342009-06-07 13:46:50 +0000408 /*
409 * Enable multifunction for northbridge. These 4 lines (until
410 * console_init()) are the same with epia-cn port.
411 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000412 pci_write_config8(PCI_DEV(0, 0, 0), 0x4f, 0x01);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000413 EmbedComInit();
414 /* enable_vx800_serial(); */
415 /* uart_init(); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000416
Uwe Hermann0ffff342009-06-07 13:46:50 +0000417 /*
418 * 1. D15F0
419 * a) RxBAh = 71h
420 * b) RxBBh = 05h
421 * c) RxBEh = 71h
422 * d) RxBFh = 05h
423 *
424 * 2. D17F0
425 * a) RxA0h = 06h
426 * b) RxA1h = 11h
427 * c) RxA2h = 27h
428 * d) RxA3h = 32h
429 * e) Rx79h = 40h
430 * f) Rx72h = 27h
431 * g) Rx73h = 32h
432 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000433
Uwe Hermann0ffff342009-06-07 13:46:50 +0000434 jason_tsc_count_car();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000435
Uwe Hermann0ffff342009-06-07 13:46:50 +0000436 pci_write_config16(PCI_DEV(0, 0xf, 0), 0xBA,
437 PCI_DEVICE_ID_VIA_VX855_IDE);
438 pci_write_config16(PCI_DEV(0, 0xf, 0), 0xBE,
439 PCI_DEVICE_ID_VIA_VX855_IDE);
440 pci_write_config16(PCI_DEV(0, 0x11, 0), 0xA0, PCI_VENDOR_ID_VIA);
441 pci_write_config16(PCI_DEV(0, 0x11, 0), 0xA2,
442 PCI_DEVICE_ID_VIA_VX855_LPC);
443 Data8 = pci_read_config8(PCI_DEV(0, 0x11, 0), 0x79);
444 Data8 &= ~0x40;
445 Data8 |= 0x40;
446 pci_write_config8(PCI_DEV(0, 0x11, 0), 0x79, Data8);
447 pci_write_config16(PCI_DEV(0, 0x11, 0), 0x72,
448 PCI_DEVICE_ID_VIA_VX855_LPC);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000449
Uwe Hermann0ffff342009-06-07 13:46:50 +0000450 /*
451 * There are two function definitions of console_init(), while the
452 * src/arch/i386/lib is the right one.
453 */
454 console_init();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000455
Uwe Hermann0ffff342009-06-07 13:46:50 +0000456 /* Decide if this is a s3 wakeup or a normal boot. */
457 boot_mode = acpi_is_wakeup_early_via_vx800();
Uwe Hermann20a98c92009-06-05 23:02:43 +0000458
Uwe Hermann0ffff342009-06-07 13:46:50 +0000459 /*
460 * 2008-11-27 Add this, to transfer "cpu restart" to "cold boot".
461 * When this boot is not a S3 resume, and PCI registers had been
462 * written, then this must be a CPU restart (result of OS reboot cmd),
463 * so we need a real "cold boot".
464 */
465 jason_tsc_count_car();
466 if ((boot_mode != 3)
467 && (pci_read_config8(PCI_DEV(0, 0, 3), 0x80) != 0)) {
468 outb(6, 0xcf9);
469 }
Uwe Hermann20a98c92009-06-05 23:02:43 +0000470
Uwe Hermann0ffff342009-06-07 13:46:50 +0000471 /* x86 cold boot I/O cmd. */
472 /* These 2 lines are the same with epia-cn port. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000473 enable_smbus();
Uwe Hermann0ffff342009-06-07 13:46:50 +0000474 jason_tsc_count_car();
475
476 /* This fix does help vx800!, but vx855 doesn't need this. */
477 /* smbus_fixup(&ctrl); */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000478
479 if (bist == 0) {
Uwe Hermann0ffff342009-06-07 13:46:50 +0000480 /*
481 * CAR needs MTRR until memory is ok, so disable this
482 * early_mtrr_init() call.
483 */
484#if 0
485 print_debug("doing early_mtrr\r\n");
486 early_mtrr_init();
487#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000488 }
489
490 /* Halt if there was a built-in self test failure. */
491 report_bist_failure(bist);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000492
Uwe Hermann20a98c92009-06-05 23:02:43 +0000493 print_debug("Enabling mainboard devices\r\n");
494 enable_mainboard_devices();
495
Uwe Hermann0ffff342009-06-07 13:46:50 +0000496 /*
497 * Get NB chip revision from D0F4RxF6, revision will be used in
498 * via_pci_inittable.
499 */
500 device = PCI_DEV(0, 0, 4);
501 Data = pci_read_config8(device, 0xf6);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000502 print_debug("NB chip revision =");
Uwe Hermann0ffff342009-06-07 13:46:50 +0000503 print_debug_hex8(Data);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000504 print_debug("\r\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000505
Uwe Hermann0ffff342009-06-07 13:46:50 +0000506 /* Make NB ready before DRAM init. */
507 via_pci_inittable(Data, mNbStage1InitTbl);
508
509 /*
510 * When resume from s3, DRAM init is skipped, so need to recovery
511 * any PCI register related to DRAM init. d0f3 didn't lose its power
512 * during whole s3 time, so any register not belonging to d0f3 needs
513 * to be recovered.
514 */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000515#if 1
Uwe Hermann0ffff342009-06-07 13:46:50 +0000516 if (boot_mode == 3) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000517 u8 i;
Uwe Hermann0ffff342009-06-07 13:46:50 +0000518 u8 ramregs[] = { 0x43, 0x42, 0x41, 0x40 };
Uwe Hermann20a98c92009-06-05 23:02:43 +0000519 DRAM_SYS_ATTR DramAttr;
Uwe Hermann20a98c92009-06-05 23:02:43 +0000520
Uwe Hermann0ffff342009-06-07 13:46:50 +0000521 print_debug("This is an S3 wakeup\r\n");
522
523 memset(&DramAttr, 0, sizeof(DRAM_SYS_ATTR));
524 /*
525 * Step 1: DRAM detection; DDR1 or DDR2; Get SPD Data;
526 * Rank Presence; 64 or 128bit; Unbuffered or registered;
527 * 1T or 2T.
528 */
529 DRAMDetect(&DramAttr);
530
531 /*
532 * Begin to get RAM size, 43,42 41 40 contains the end
533 * address of last rank in DDR2 slot.
534 */
535 device = PCI_DEV(0, 0, 3);
536 for (rambits = 0, i = 0; i < ARRAY_SIZE(ramregs); i++) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000537 rambits = pci_read_config8(device, ramregs[i]);
538 if (rambits != 0)
539 break;
540 }
541
Uwe Hermann0ffff342009-06-07 13:46:50 +0000542 DRAMDRDYSetting(&DramAttr);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000543
Uwe Hermann0ffff342009-06-07 13:46:50 +0000544 Data = 0x80; /* This value is same with DevInit.c. */
545 pci_write_config8(PCI_DEV(0, 0, 4), 0xa3, Data);
546 pci_write_config8(PCI_DEV(0, 17, 7), 0x60, rambits << 2);
547 Data = pci_read_config8(MEMCTRL, 0x88);
548 pci_write_config8(PCI_DEV(0, 17, 7), 0xE5, Data);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000549
Uwe Hermann0ffff342009-06-07 13:46:50 +0000550 /* Just copy this function from draminit to here! */
551 DRAMRegFinalValue(&DramAttr);
552
553 /* Just copy this function from draminit to here! */
554 SetUMARam();
555
556 print_debug("Resume from S3, RAM init was ignored\r\n");
557 } else {
558 ddr2_ram_setup();
559 ram_check(0, 640 * 1024);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000560 }
561#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000562
Uwe Hermann0ffff342009-06-07 13:46:50 +0000563 /* ddr2_ram_setup(); */
564 /* This line is the same with cx700 port. */
565 enable_shadow_ram();
566
567 jason_tsc_count_car();
568
569 /*
570 * For coreboot most time of S3 resume is the same as normal boot,
571 * so some memory area under 1M become dirty, so before this happen,
572 * I need to backup the content of mem to top-mem.
573 *
574 * I will reserve the 1M top-men in LBIO table in coreboot_table.c
575 * and recovery the content of 1M-mem in wakeup.c.
576 */
577#if PAYLOAD_IS_SEABIOS == 1
578 if (boot_mode == 3) {
579 /* An idea of Libo.Feng at amd.com in http://www.coreboot.org/pipermail/coreboot/2008-December/043111.html
580 *
581 * I want move the 1M data, I have to set some MTRRs myself.
582 * Setting MTRR before back memory save s3 resume time about
583 * 0.14 seconds.
584 *
585 * !!! Since CAR stack uses cache, and we are using cache
586 * here, we must be careful:
587 *
588 * 1. during this MTRR code, must no function call (after
589 * this MTRR, I think it should be OK to use function).
590 * 2. Before stack switch, no use variable that have value
591 * set before this.
592 * 3. Due to 2, take care of "cpu_reset", I directlly set it
593 * to ZERO.
Uwe Hermann20a98c92009-06-05 23:02:43 +0000594 */
Uwe Hermann0ffff342009-06-07 13:46:50 +0000595 u32 memtop = *(u32 *) WAKE_MEM_INFO;
596 u32 memtop1 = *(u32 *) WAKE_MEM_INFO - 0x100000;
597 u32 memtop2 = *(u32 *) WAKE_MEM_INFO - 0x200000;
598 u32 memtop3 = *(u32 *) WAKE_MEM_INFO - 64 * 1024 - 0x100000;
599 u32 memtop4 =
600 *(u32 *) WAKE_MEM_INFO - 64 * 1024 - 0x100000 + 0xe0000;
601#if 0
602 __asm__ volatile (
603 "movl $0x204, %%ecx\n\t"
604 "xorl %%edx, %%edx\n\t"
605 "movl %0,%%eax\n\t"
606 "orl $(0 | 6), %%eax\n\t"
607 "wrmsr\n\t"
Uwe Hermann20a98c92009-06-05 23:02:43 +0000608
Uwe Hermann0ffff342009-06-07 13:46:50 +0000609 "movl $0x205, %%ecx\n\t"
610 "xorl %%edx, %%edx\n\t"
611 "movl $0x100000,%%eax\n\t"
612 "decl %%eax\n\t"
613 "notl %%eax\n\t"
614 "orl $(0 | 0x800), %%eax\n\t"
615 "wrmsr\n\t"
616 ::"g"(memtop2)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000617 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000618
Uwe Hermann0ffff342009-06-07 13:46:50 +0000619 __asm__ volatile (
620 "movl $0x206, %%ecx\n\t"
621 "xorl %%edx, %%edx\n\t"
622 "movl %0,%%eax\n\t"
623 "orl $(0 | 6), %%eax\n\t"
624 "wrmsr\n\t"
625
626 "movl $0x207, %%ecx\n\t"
627 "xorl %%edx, %%edx\n\t"
628 "movl $0x100000,%%eax\n\t"
629 "decl %%eax\n\t"
630 "notl %%eax\n\t"
631 "orl $(0 | 0x800), %%eax\n\t"
632 "wrmsr\n\t"
633 ::"g"(memtop1)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000634 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000635
Uwe Hermann0ffff342009-06-07 13:46:50 +0000636 __asm__ volatile (
637 "movl $0x208, %ecx\n\t"
638 "xorl %edx, %edx\n\t"
639 "movl $0,%eax\n\t"
640 "orl $(0 | 6), %eax\n\t"
641 "wrmsr\n\t"
642
643 "movl $0x209, %ecx\n\t"
644 "xorl %edx, %edx\n\t"
645 "movl $0x100000,%eax\n\t"
646 "decl %eax\n\t"
647 "notl %eax\n\t"
648 "orl $(0 | 0x800), %eax\n\t"
649 "wrmsr\n\t"
Uwe Hermann20a98c92009-06-05 23:02:43 +0000650 );
Uwe Hermann20a98c92009-06-05 23:02:43 +0000651#endif
652
Uwe Hermann0ffff342009-06-07 13:46:50 +0000653 /*
654 * WAKE_MEM_INFO is inited in get_set_top_available_mem()
655 * in tables.c these two memcpy() not not be enabled if set
656 * the MTRR around this two lines.
657 */
658#if 0
659 __asm__ volatile (
660 "movl $0, %%esi\n\t"
661 "movl %0, %%edi\n\t"
662 "movl $0xa0000, %%ecx\n\t"
663 "shrl $2, %%ecx\n\t"
664 "rep movsd\n\t"
665 ::"g"(memtop3)
666 );
667
668 __asm__ volatile (
669 "movl $0xe0000, %%esi\n\t"
670 "movl %0, %%edi\n\t"
671 "movl $0x20000, %%ecx\n\t"
672 "shrl $2, %%ecx\n\t"
673 "rep movsd\n\t"
674 ::"g"(memtop4)
675 );
676#endif
677 /* This can have function call, because no variable used before this. */
678 print_debug("Copy memory to high memory to protect s3 wakeup vector code \r\n");
679 memcpy((unsigned char *)((*(u32 *) WAKE_MEM_INFO) - 64 * 1024 -
680 0x100000), (unsigned char *)0, 0xa0000);
681 memcpy((unsigned char *)((*(u32 *) WAKE_MEM_INFO) - 64 * 1024 -
682 0x100000 + 0xe0000), (unsigned char *)0xe0000, 0x20000);
683
684 /* Restore the MTRR previously modified. */
685#if 0
686 __asm__ volatile (
687 "wbinvd\n\t"
688 "xorl %edx, %edx\n\t"
689 "xorl %eax, %eax\n\t"
690 "movl $0x204, %ecx\n\t"
691 "wrmsr\n\t"
692 "movl $0x205, %ecx\n\t"
693 "wrmsr\n\t"
694 "movl $0x206, %ecx\n\t"
695 "wrmsr\n\t"
696 "movl $0x207, %ecx\n\t"
697 "wrmsr\n\t"
698 "movl $0x208, %ecx\n\t"
699 "wrmsr\n\t"
700 "movl $0x209, %ecx\n\t"
701 "wrmsr\n\t"
702 );
703#endif
Uwe Hermann20a98c92009-06-05 23:02:43 +0000704 }
Uwe Hermann0ffff342009-06-07 13:46:50 +0000705
706#endif
707
708/*
709 * The following code is copied from tyan\s2735\cache_as_ram_auto.c.
710 * Only the code around CLEAR_FIRST_1M_RAM is changed. Removed all the code
711 * around CLEAR_FIRST_1M_RAM and #include "cpu/x86/car/cache_as_ram_post.c".
712 * The CLEAR_FIRST_1M_RAM seems to make cpu/x86/car/cache_as_ram_post.c stop
713 * at somewhere, and cpu/x86/car/cache_as_ram_post.c do not cache my
714 * $XIP_ROM_BASE+SIZE area.
715 *
716 * Use #include "cpu/via/car/cache_as_ram_post.c". This version post.c have
717 * some diff with x86-version.
718 */
719#if 1
720 {
721 /*
722 * Check value of esp to verify if we have enough ROM for
723 * stack in Cache as RAM.
724 */
725 unsigned v_esp;
726 __asm__ volatile ("movl %%esp, %0\n\t":"=a" (v_esp));
727#if CONFIG_USE_INIT
728 printk_debug("v_esp=%08x\r\n", v_esp);
729#else
730 print_debug("v_esp=");
731 print_debug_hex32(v_esp);
732 print_debug("\r\n");
733#endif
734 }
735#endif
736
737#if 1
738cpu_reset_x:
739
740 /* It seems that cpu_reset is not used before this, so I just reset
741 * it, (this is because the s3 resume, setting in MTRR and copy data
742 * may destroy stack.
743 */
744 cpu_reset = 0;
745
746#if CONFIG_USE_INIT
747 printk_debug("cpu_reset = %08x\r\n", cpu_reset);
748#else
749 print_debug("cpu_reset = ");
750 print_debug_hex32(cpu_reset);
751 print_debug("\r\n");
752#endif
753
754 if (cpu_reset == 0)
755 print_debug("Clearing initial memory region: ");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000756 print_debug("No cache as ram now - ");
757
Uwe Hermann0ffff342009-06-07 13:46:50 +0000758 /* Store cpu_reset to ebx. */
759 __asm__ volatile ("movl %0, %%ebx\n\t"::"a" (cpu_reset));
Uwe Hermann20a98c92009-06-05 23:02:43 +0000760
Uwe Hermann0ffff342009-06-07 13:46:50 +0000761 /*
762 * Cancel these lines, CLEAR_FIRST_1M_RAM cause the
763 * cpu/x86/car/cache_as_ram_post.c stop at somewhere.
764 */
765#if 0
766 if (cpu_reset == 0) {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000767#define CLEAR_FIRST_1M_RAM 1
Uwe Hermann0ffff342009-06-07 13:46:50 +0000768#include "cpu/via/car/cache_as_ram_post.c"
769 } else {
Uwe Hermann20a98c92009-06-05 23:02:43 +0000770#undef CLEAR_FIRST_1M_RAM
771#include "cpu/via/car/cache_as_ram_post.c"
772 }
Uwe Hermann0ffff342009-06-07 13:46:50 +0000773#endif
774
775#include "cpu/via/car/cache_as_ram_post.c"
776/* #include "cpu/x86/car/cache_as_ram_post.c" */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000777 __asm__ volatile (
Uwe Hermann0ffff342009-06-07 13:46:50 +0000778 /* Set new esp *//* before _RAMBASE */
779 "subl %0, %%ebp\n\t"
780 "subl %0, %%esp\n\t"::
781 "a" ((DCACHE_RAM_BASE + DCACHE_RAM_SIZE) - _RAMBASE)
Uwe Hermann20a98c92009-06-05 23:02:43 +0000782 );
783
784 {
785 unsigned new_cpu_reset;
786
Uwe Hermann0ffff342009-06-07 13:46:50 +0000787 /* Get back cpu_reset from ebx. */
788 __asm__ volatile ("movl %%ebx, %0\n\t":"=a" (new_cpu_reset));
Uwe Hermann20a98c92009-06-05 23:02:43 +0000789
Uwe Hermann0ffff342009-06-07 13:46:50 +0000790 /* We can't go back anymore, we lost old stack data in CAR. */
791 if (new_cpu_reset == 0)
792 print_debug("Use Ram as Stack now - done\r\n");
793 else
794 print_debug("Use Ram as Stack now - \r\n");
795
Uwe Hermann20a98c92009-06-05 23:02:43 +0000796#if CONFIG_USE_INIT
Uwe Hermann0ffff342009-06-07 13:46:50 +0000797 printk_debug("new_cpu_reset = %08x\r\n", new_cpu_reset);
Uwe Hermann20a98c92009-06-05 23:02:43 +0000798#else
Uwe Hermann0ffff342009-06-07 13:46:50 +0000799 print_debug("new_cpu_reset = ");
800 print_debug_hex32(new_cpu_reset);
801 print_debug("\r\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000802#endif
Uwe Hermann0ffff342009-06-07 13:46:50 +0000803
804 jason_tsc_count_car();
805 /* Copy and execute coreboot_ram. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000806 copy_and_run(new_cpu_reset);
Uwe Hermann0ffff342009-06-07 13:46:50 +0000807 /* We will not return. */
Uwe Hermann20a98c92009-06-05 23:02:43 +0000808 }
809#endif
810
Uwe Hermann20a98c92009-06-05 23:02:43 +0000811 print_debug("should not be here -\r\n");
Uwe Hermann20a98c92009-06-05 23:02:43 +0000812}