blob: 88c018ea3f3ce85ec13dd9bb687545758769f29d [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
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
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>
27#include <arch/romcc_io.h>
28#include <cpu/x86/lapic.h>
29#include <console/console.h>
30#include <console/loglevel.h>
31#include "cpu/x86/bist.h"
32#include "superio/smsc/kbc1100/kbc1100_early_init.c"
33#include "cpu/x86/lapic/boot_cpu.c"
34#include "pc80/i8254.c"
35#include "pc80/i8259.c"
Kerry Shefeed3292011-08-18 18:03:44 +080036#include "sb_cimx.h"
Frank Vibrans69da1b62011-02-14 19:04:45 +000037#include "SBPLATFORM.h"
38#include <arch/cpu.h>
39
40void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx);
Marc Jonesc9ea3272012-01-17 15:41:03 -070041u32 agesawrapper_amdinitmmio(void);
42u32 agesawrapper_amdinitreset(void);
43u32 agesawrapper_amdinitearly(void);
44u32 agesawrapper_amdinitenv(void);
45u32 agesawrapper_amdinitlate(void);
46u32 agesawrapper_amdinitpost(void);
47u32 agesawrapper_amdinitmid(void);
Frank Vibrans69da1b62011-02-14 19:04:45 +000048
49void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
50{
Marc Jonesc9ea3272012-01-17 15:41:03 -070051 u32 val;
Frank Vibrans69da1b62011-02-14 19:04:45 +000052
Marc Jonesc9ea3272012-01-17 15:41:03 -070053 if (!cpu_init_detectedx && boot_cpu()) {
54 post_code(0x30);
55 sb_Poweron_Init();
Frank Vibrans69da1b62011-02-14 19:04:45 +000056
Marc Jonesc9ea3272012-01-17 15:41:03 -070057 post_code(0x31);
58 kbc1100_early_init(CONFIG_SIO_PORT);
59 console_init();
60 }
Frank Vibrans69da1b62011-02-14 19:04:45 +000061
Marc Jonesc9ea3272012-01-17 15:41:03 -070062 /* Halt if there was a built in self test failure */
63 post_code(0x34);
64 report_bist_failure(bist);
Frank Vibrans69da1b62011-02-14 19:04:45 +000065
Marc Jones938ae3e2012-01-17 16:51:24 -070066 /* Load MPB */
Marc Jonesc9ea3272012-01-17 15:41:03 -070067 val = cpuid_eax(1);
68 printk(BIOS_DEBUG, "BSP Family_Model: %08x \n", val);
69 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx \n", cpu_init_detectedx);
Frank Vibrans69da1b62011-02-14 19:04:45 +000070
Marc Jonesc9ea3272012-01-17 15:41:03 -070071 post_code(0x35);
Marc Jones938ae3e2012-01-17 16:51:24 -070072 printk(BIOS_DEBUG, "agesawrapper_amdinitmmio ");
Marc Jonesc9ea3272012-01-17 15:41:03 -070073 val = agesawrapper_amdinitmmio();
Marc Jones938ae3e2012-01-17 16:51:24 -070074 if (val)
75 printk(BIOS_DEBUG, "error level: %x \n", val);
76 else
77 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +000078
Marc Jonesc9ea3272012-01-17 15:41:03 -070079 post_code(0x37);
Marc Jones938ae3e2012-01-17 16:51:24 -070080 printk(BIOS_DEBUG, "agesawrapper_amdinitreset ");
Marc Jonesc9ea3272012-01-17 15:41:03 -070081 val = agesawrapper_amdinitreset();
Marc Jones938ae3e2012-01-17 16:51:24 -070082 if (val)
83 printk(BIOS_DEBUG, "error level: %x \n", val);
84 else
85 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +000086
Marc Jonesc9ea3272012-01-17 15:41:03 -070087 post_code(0x39);
Marc Jones938ae3e2012-01-17 16:51:24 -070088 printk(BIOS_DEBUG, "agesawrapper_amdinitearly ");
Marc Jonesc9ea3272012-01-17 15:41:03 -070089 val = agesawrapper_amdinitearly();
Marc Jones938ae3e2012-01-17 16:51:24 -070090 if (val)
91 printk(BIOS_DEBUG, "error level: %x \n", val);
92 else
93 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +000094
Marc Jonesc9ea3272012-01-17 15:41:03 -070095 post_code(0x40);
Marc Jones938ae3e2012-01-17 16:51:24 -070096 printk(BIOS_DEBUG, "agesawrapper_amdinitpost ");
Marc Jonesc9ea3272012-01-17 15:41:03 -070097 val = agesawrapper_amdinitpost();
Marc Jones938ae3e2012-01-17 16:51:24 -070098 if (val)
99 printk(BIOS_DEBUG, "error level: %x \n", val);
100 else
101 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +0000102
Marc Jonesc9ea3272012-01-17 15:41:03 -0700103 post_code(0x41);
Marc Jones938ae3e2012-01-17 16:51:24 -0700104 printk(BIOS_DEBUG, "agesawrapper_amdinitenv ");
Marc Jonesc9ea3272012-01-17 15:41:03 -0700105 val = agesawrapper_amdinitenv();
Marc Jones938ae3e2012-01-17 16:51:24 -0700106 if (val)
107 printk(BIOS_DEBUG, "error level: %x \n", val);
108 else
109 printk(BIOS_DEBUG, "passed.\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +0000110
Marc Jonesc9ea3272012-01-17 15:41:03 -0700111 /* Initialize i8259 pic */
112 post_code(0x41);
113 setup_i8259();
Frank Vibrans69da1b62011-02-14 19:04:45 +0000114
Marc Jonesc9ea3272012-01-17 15:41:03 -0700115 /* Initialize i8254 timers */
116 post_code(0x42);
117 setup_i8254();
Frank Vibrans69da1b62011-02-14 19:04:45 +0000118
Marc Jonesc9ea3272012-01-17 15:41:03 -0700119 post_code(0x50);
120 copy_and_run(0);
Marc Jones938ae3e2012-01-17 16:51:24 -0700121 printk(BIOS_ERR, "Error: copy_and_run() returned!\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +0000122
Marc Jones938ae3e2012-01-17 16:51:24 -0700123 post_code(0x54); /* Should never see this post code. */
Frank Vibrans69da1b62011-02-14 19:04:45 +0000124}