blob: a7b8a40dfdb4a55c9605e947acd622b4fcb1f68c [file] [log] [blame]
Frank Vibrans69da1b62011-02-14 19:04:45 +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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Frank Vibrans69da1b62011-02-14 19:04:45 +000018 */
19
Kerry Sheh01f7ab92012-01-19 13:18:36 +080020#include <lib.h>
Frank Vibrans69da1b62011-02-14 19:04:45 +000021#include <stdint.h>
22#include <string.h>
23#include <device/pci_def.h>
24#include <device/pci_ids.h>
25#include <arch/io.h>
26#include <arch/stages.h>
27#include <device/pnp_def.h>
Kerry Sheh01f7ab92012-01-19 13:18:36 +080028#include <arch/cpu.h>
Frank Vibrans69da1b62011-02-14 19:04:45 +000029#include <cpu/x86/lapic.h>
30#include <console/console.h>
31#include <console/loglevel.h>
Kyösti Mälkki107f72e2014-01-06 11:06:26 +020032#include <cpu/x86/mtrr.h>
Kyösti Mälkki2458f422014-04-22 16:46:31 +030033#include "cpu/amd/car.h"
Kerry Sheh01f7ab92012-01-19 13:18:36 +080034#include "agesawrapper.h"
Frank Vibrans69da1b62011-02-14 19:04:45 +000035#include "cpu/x86/bist.h"
Edward O'Callaghanf5bde442014-06-02 12:20:11 +100036#include <superio/smsc/kbc1100/kbc1100.h>
Kyösti Mälkkic66f1cb2013-08-12 16:09:00 +030037#include "cpu/x86/lapic.h"
Paul Menzel69743962013-04-19 10:05:57 +020038#include <sb_cimx.h>
Frank Vibrans69da1b62011-02-14 19:04:45 +000039#include "SBPLATFORM.h"
Frank Vibrans69da1b62011-02-14 19:04:45 +000040
Edward O'Callaghanf5bde442014-06-02 12:20:11 +100041#define SERIAL_DEV PNP_DEV(0x2e, SMSCSUPERIO_SP1)
42
Frank Vibrans69da1b62011-02-14 19:04:45 +000043void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
44{
Marc Jonesc9ea3272012-01-17 15:41:03 -070045 u32 val;
Frank Vibrans69da1b62011-02-14 19:04:45 +000046
Kerry Sheh01f7ab92012-01-19 13:18:36 +080047 /* 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);
Kerry Sheh01f7ab92012-01-19 13:18:36 +080052
53 /* all cores: set pstate 0 (1600 MHz) early to save a few ms of boot time
54 */
55 __writemsr (0xc0010062, 0);
56
Marc Jonesc9ea3272012-01-17 15:41:03 -070057 if (!cpu_init_detectedx && boot_cpu()) {
58 post_code(0x30);
59 sb_Poweron_Init();
Frank Vibrans69da1b62011-02-14 19:04:45 +000060
Marc Jonesc9ea3272012-01-17 15:41:03 -070061 post_code(0x31);
Edward O'Callaghanf5bde442014-06-02 12:20:11 +100062 kbc1100_early_init(0x2e);
63 kbc1100_early_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Marc Jonesc9ea3272012-01-17 15:41:03 -070064 console_init();
65 }
Frank Vibrans69da1b62011-02-14 19:04:45 +000066
Marc Jonesc9ea3272012-01-17 15:41:03 -070067 /* Halt if there was a built in self test failure */
68 post_code(0x34);
69 report_bist_failure(bist);
Frank Vibrans69da1b62011-02-14 19:04:45 +000070
Marc Jones938ae3e2012-01-17 16:51:24 -070071 /* Load MPB */
Marc Jonesc9ea3272012-01-17 15:41:03 -070072 val = cpuid_eax(1);
73 printk(BIOS_DEBUG, "BSP Family_Model: %08x \n", val);
74 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx \n", cpu_init_detectedx);
Frank Vibrans69da1b62011-02-14 19:04:45 +000075
Marc Jonesc9ea3272012-01-17 15:41:03 -070076 post_code(0x35);
Marc Jones938ae3e2012-01-17 16:51:24 -070077 printk(BIOS_DEBUG, "agesawrapper_amdinitmmio ");
Marc Jonesc9ea3272012-01-17 15:41:03 -070078 val = agesawrapper_amdinitmmio();
Marc Jones938ae3e2012-01-17 16:51:24 -070079 if (val)
80 printk(BIOS_DEBUG, "error level: %x \n", val);
81 else
82 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +000083
Marc Jonesc9ea3272012-01-17 15:41:03 -070084 post_code(0x37);
Marc Jones938ae3e2012-01-17 16:51:24 -070085 printk(BIOS_DEBUG, "agesawrapper_amdinitreset ");
Marc Jonesc9ea3272012-01-17 15:41:03 -070086 val = agesawrapper_amdinitreset();
Marc Jones938ae3e2012-01-17 16:51:24 -070087 if (val)
88 printk(BIOS_DEBUG, "error level: %x \n", val);
89 else
90 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +000091
Marc Jonesc9ea3272012-01-17 15:41:03 -070092 post_code(0x39);
Marc Jones938ae3e2012-01-17 16:51:24 -070093 printk(BIOS_DEBUG, "agesawrapper_amdinitearly ");
Marc Jonesc9ea3272012-01-17 15:41:03 -070094 val = agesawrapper_amdinitearly();
Marc Jones938ae3e2012-01-17 16:51:24 -070095 if (val)
96 printk(BIOS_DEBUG, "error level: %x \n", val);
97 else
98 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +000099
Marc Jonesc9ea3272012-01-17 15:41:03 -0700100 post_code(0x40);
Marc Jones938ae3e2012-01-17 16:51:24 -0700101 printk(BIOS_DEBUG, "agesawrapper_amdinitpost ");
Marc Jonesc9ea3272012-01-17 15:41:03 -0700102 val = agesawrapper_amdinitpost();
Marc Jones938ae3e2012-01-17 16:51:24 -0700103 if (val)
104 printk(BIOS_DEBUG, "error level: %x \n", val);
105 else
106 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +0000107
Marc Jonesc9ea3272012-01-17 15:41:03 -0700108 post_code(0x41);
Marc Jones938ae3e2012-01-17 16:51:24 -0700109 printk(BIOS_DEBUG, "agesawrapper_amdinitenv ");
Marc Jonesc9ea3272012-01-17 15:41:03 -0700110 val = agesawrapper_amdinitenv();
Marc Jones938ae3e2012-01-17 16:51:24 -0700111 if (val)
112 printk(BIOS_DEBUG, "error level: %x \n", val);
113 else
114 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +0000115
Marc Jonesc9ea3272012-01-17 15:41:03 -0700116 post_code(0x50);
Stefan Reinauer648d1662013-05-06 18:05:39 -0700117 copy_and_run();
Marc Jones938ae3e2012-01-17 16:51:24 -0700118 printk(BIOS_ERR, "Error: copy_and_run() returned!\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +0000119
Marc Jones938ae3e2012-01-17 16:51:24 -0700120 post_code(0x54); /* Should never see this post code. */
Frank Vibrans69da1b62011-02-14 19:04:45 +0000121}