blob: 50f3f6b56a8f716dbe2b679951849833e2a221fd [file] [log] [blame]
Scott Duplichana649a962011-02-24 05:00:33 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, 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.
Scott Duplichana649a962011-02-24 05:00:33 +000014 */
15
16#include <stdint.h>
17#include <string.h>
18#include <device/pci_def.h>
19#include <device/pci_ids.h>
Kyösti Mälkki68825742015-10-27 14:31:18 +020020#include <arch/acpi.h>
Scott Duplichana649a962011-02-24 05:00:33 +000021#include <arch/io.h>
22#include <arch/stages.h>
23#include <device/pnp_def.h>
Scott Duplichana649a962011-02-24 05:00:33 +000024#include <arch/cpu.h>
25#include <cpu/x86/lapic.h>
26#include <console/console.h>
Aaron Durbindc9f5cd2015-09-08 13:34:43 -050027#include <commonlib/loglevel.h>
Kyösti Mälkki107f72e2014-01-06 11:06:26 +020028#include <cpu/x86/mtrr.h>
Edward O'Callaghanbf9d1222014-10-29 09:26:00 +110029#include <cpu/amd/car.h>
Kyösti Mälkkif21c2ac2014-10-19 09:35:18 +030030#include <northbridge/amd/agesa/agesawrapper.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110031#include <cpu/x86/bist.h>
Felix Heldc1869662014-07-19 00:21:43 +020032#include <superio/nuvoton/common/nuvoton.h>
33#include <superio/nuvoton/nct5572d/nct5572d.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110034#include <cpu/x86/lapic.h>
Paul Menzel69743962013-04-19 10:05:57 +020035#include <sb_cimx.h>
Scott Duplichana649a962011-02-24 05:00:33 +000036#include "SBPLATFORM.h"
Kyösti Mälkki68825742015-10-27 14:31:18 +020037#include <cpu/amd/agesa/s3_resume.h>
Scott Duplichana649a962011-02-24 05:00:33 +000038
Scott Duplichana649a962011-02-24 05:00:33 +000039
Felix Heldc1869662014-07-19 00:21:43 +020040#define SERIAL_DEV PNP_DEV(0x2e, NCT5572D_SP1)
Scott Duplichana649a962011-02-24 05:00:33 +000041
42void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
43{
Stefan Reinauer44c1d312011-06-04 10:36:21 -070044 u32 val;
Scott Duplichana649a962011-02-24 05:00:33 +000045
Marc Jones938ae3e2012-01-17 16:51:24 -070046 /*
47 * All cores: allow caching of flash chip code and data
48 * (there are no cache-as-ram reliability concerns with family 14h)
49 */
Kyösti Mälkki107f72e2014-01-06 11:06:26 +020050 __writemsr(0x20c, (0x0100000000ull - CACHE_ROM_SIZE) | 5);
51 __writemsr(0x20d, (0x1000000000ull - CACHE_ROM_SIZE) | 0x800);
Marshall Buschman314f4a22011-06-04 15:47:05 +000052
Marc Jones938ae3e2012-01-17 16:51:24 -070053 /* All cores: set pstate 0 (1600 MHz) early to save a few ms of boot time */
Stefan Reinauer44c1d312011-06-04 10:36:21 -070054 __writemsr(0xc0010062, 0);
Marshall Buschmanfd460e62011-06-04 15:44:54 +000055
Kyösti Mälkki48518f02014-11-25 14:20:57 +020056 amd_initmmio();
Kyösti Mälkkie453b9a2014-11-25 14:03:29 +020057
Stefan Reinauer44c1d312011-06-04 10:36:21 -070058 if (!cpu_init_detectedx && boot_cpu()) {
59 post_code(0x30);
Kerry Shefeed3292011-08-18 18:03:44 +080060 sb_Poweron_Init();
Marshall Buschmanb3ee0d62011-06-04 15:44:31 +000061
Stefan Reinauer44c1d312011-06-04 10:36:21 -070062 post_code(0x31);
Felix Heldc1869662014-07-19 00:21:43 +020063 nuvoton_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Stefan Reinauer44c1d312011-06-04 10:36:21 -070064 console_init();
65 }
Scott Duplichana649a962011-02-24 05:00:33 +000066
Stefan Reinauer44c1d312011-06-04 10:36:21 -070067 /* Halt if there was a built in self test failure */
68 post_code(0x34);
69 report_bist_failure(bist);
Scott Duplichana649a962011-02-24 05:00:33 +000070
Marc Jones938ae3e2012-01-17 16:51:24 -070071 /* Load MPB */
Stefan Reinauer44c1d312011-06-04 10:36:21 -070072 val = cpuid_eax(1);
Elyes HAOUASaedcc102014-07-21 08:07:19 +020073 printk(BIOS_DEBUG, "BSP Family_Model: %08x\n", val);
74 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx\n", cpu_init_detectedx);
Scott Duplichana649a962011-02-24 05:00:33 +000075
Stefan Reinauer44c1d312011-06-04 10:36:21 -070076 post_code(0x37);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030077 agesawrapper_amdinitreset();
Scott Duplichana649a962011-02-24 05:00:33 +000078
Stefan Reinauer44c1d312011-06-04 10:36:21 -070079 post_code(0x39);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030080 agesawrapper_amdinitearly();
Scott Duplichana649a962011-02-24 05:00:33 +000081
Kyösti Mälkki68825742015-10-27 14:31:18 +020082 int s3resume = acpi_is_wakeup_s3();
83 if (!s3resume) {
84 post_code(0x40);
85 agesawrapper_amdinitpost();
Scott Duplichana649a962011-02-24 05:00:33 +000086
Kyösti Mälkki68825742015-10-27 14:31:18 +020087 post_code(0x42);
88 agesawrapper_amdinitenv();
89 amd_initenv();
90
91 } else { /* S3 detect */
92 printk(BIOS_INFO, "S3 detected\n");
93
94 post_code(0x60);
95 agesawrapper_amdinitresume();
96
97 agesawrapper_amds3laterestore();
98
99 post_code(0x61);
100 prepare_for_resume();
101 }
Scott Duplichana649a962011-02-24 05:00:33 +0000102
Stefan Reinauer44c1d312011-06-04 10:36:21 -0700103 post_code(0x50);
Stefan Reinauer648d1662013-05-06 18:05:39 -0700104 copy_and_run();
Marc Jones938ae3e2012-01-17 16:51:24 -0700105 printk(BIOS_ERR, "Error: copy_and_run() returned!\n");
Scott Duplichana649a962011-02-24 05:00:33 +0000106
Marc Jones938ae3e2012-01-17 16:51:24 -0700107 post_code(0x54); /* Should never see this post code. */
Scott Duplichana649a962011-02-24 05:00:33 +0000108}