blob: 7e806fab490cbe36282409fda6ebbd895693765a [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.
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
Scott Duplichana649a962011-02-24 05:00:33 +000018 */
19
20#include <stdint.h>
21#include <string.h>
22#include <device/pci_def.h>
23#include <device/pci_ids.h>
24#include <arch/io.h>
25#include <arch/stages.h>
26#include <device/pnp_def.h>
Scott Duplichana649a962011-02-24 05:00:33 +000027#include <arch/cpu.h>
28#include <cpu/x86/lapic.h>
29#include <console/console.h>
30#include <console/loglevel.h>
31#include "agesawrapper.h"
32#include "cpu/x86/bist.h"
Scott Duplichan63896e72011-02-26 17:49:49 +000033#include "superio/winbond/w83627hf/early_serial.c"
Scott Duplichana649a962011-02-24 05:00:33 +000034#include "cpu/x86/lapic/boot_cpu.c"
Stefan Reinauerae5e11d2012-04-27 02:31:28 +020035#include "drivers/pc80/i8254.c"
36#include "drivers/pc80/i8259.c"
Paul Menzel69743962013-04-19 10:05:57 +020037#include <sb_cimx.h>
Scott Duplichana649a962011-02-24 05:00:33 +000038#include "SBPLATFORM.h"
39
40void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx);
41
Scott Duplichan63896e72011-02-26 17:49:49 +000042#define SERIAL_DEV PNP_DEV(CONFIG_SIO_PORT, W83627HF_SP1)
Scott Duplichana649a962011-02-24 05:00:33 +000043
44void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
45{
Stefan Reinauer44c1d312011-06-04 10:36:21 -070046 u32 val;
Scott Duplichana649a962011-02-24 05:00:33 +000047
Marc Jones938ae3e2012-01-17 16:51:24 -070048 /*
49 * All cores: allow caching of flash chip code and data
50 * (there are no cache-as-ram reliability concerns with family 14h)
51 */
Stefan Reinauer44c1d312011-06-04 10:36:21 -070052 __writemsr(0x20c, (0x0100000000ull - CONFIG_ROM_SIZE) | 5);
53 __writemsr(0x20d, (0x1000000000ull - CONFIG_ROM_SIZE) | 0x800);
Marshall Buschman314f4a22011-06-04 15:47:05 +000054
Marc Jones938ae3e2012-01-17 16:51:24 -070055 /* All cores: set pstate 0 (1600 MHz) early to save a few ms of boot time */
Stefan Reinauer44c1d312011-06-04 10:36:21 -070056 __writemsr(0xc0010062, 0);
Marshall Buschmanfd460e62011-06-04 15:44:54 +000057
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);
63 w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
64 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);
73 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(0x35);
Marc Jones938ae3e2012-01-17 16:51:24 -070077 printk(BIOS_DEBUG, "agesawrapper_amdinitmmio ");
Stefan Reinauer44c1d312011-06-04 10:36:21 -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");
Scott Duplichana649a962011-02-24 05:00:33 +000083
Stefan Reinauer44c1d312011-06-04 10:36:21 -070084 post_code(0x37);
Marc Jones938ae3e2012-01-17 16:51:24 -070085 printk(BIOS_DEBUG, "agesawrapper_amdinitreset ");
Stefan Reinauer44c1d312011-06-04 10:36:21 -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");
Scott Duplichana649a962011-02-24 05:00:33 +000091
Stefan Reinauer44c1d312011-06-04 10:36:21 -070092 post_code(0x39);
Marc Jones938ae3e2012-01-17 16:51:24 -070093 printk(BIOS_DEBUG, "agesawrapper_amdinitearly ");
Stefan Reinauer44c1d312011-06-04 10:36:21 -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");
Scott Duplichana649a962011-02-24 05:00:33 +000099
Stefan Reinauer44c1d312011-06-04 10:36:21 -0700100 post_code(0x40);
Marc Jones938ae3e2012-01-17 16:51:24 -0700101 printk(BIOS_DEBUG, "agesawrapper_amdinitpost ");
Stefan Reinauer44c1d312011-06-04 10:36:21 -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");
Scott Duplichana649a962011-02-24 05:00:33 +0000107
Stefan Reinauer44c1d312011-06-04 10:36:21 -0700108 post_code(0x41);
Marc Jones938ae3e2012-01-17 16:51:24 -0700109 printk(BIOS_DEBUG, "agesawrapper_amdinitenv ");
Stefan Reinauer44c1d312011-06-04 10:36:21 -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");
Scott Duplichana649a962011-02-24 05:00:33 +0000115
Stefan Reinauer44c1d312011-06-04 10:36:21 -0700116 /* Initialize i8259 pic */
117 post_code(0x41);
118 setup_i8259();
Scott Duplichana649a962011-02-24 05:00:33 +0000119
Stefan Reinauer44c1d312011-06-04 10:36:21 -0700120 /* Initialize i8254 timers */
121 post_code(0x42);
122 setup_i8254();
Scott Duplichana649a962011-02-24 05:00:33 +0000123
Stefan Reinauer44c1d312011-06-04 10:36:21 -0700124 post_code(0x50);
Stefan Reinauer648d1662013-05-06 18:05:39 -0700125 copy_and_run();
Marc Jones938ae3e2012-01-17 16:51:24 -0700126 printk(BIOS_ERR, "Error: copy_and_run() returned!\n");
Scott Duplichana649a962011-02-24 05:00:33 +0000127
Marc Jones938ae3e2012-01-17 16:51:24 -0700128 post_code(0x54); /* Should never see this post code. */
Scott Duplichana649a962011-02-24 05:00:33 +0000129}