blob: b5f7c54664915acc4e7f66f9452ef45b50c2269c [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.
Frank Vibrans69da1b62011-02-14 19:04:45 +000014 */
15
Kerry Sheh01f7ab92012-01-19 13:18:36 +080016#include <lib.h>
Frank Vibrans69da1b62011-02-14 19:04:45 +000017#include <stdint.h>
18#include <string.h>
19#include <device/pci_def.h>
20#include <device/pci_ids.h>
21#include <arch/io.h>
22#include <arch/stages.h>
23#include <device/pnp_def.h>
Kerry Sheh01f7ab92012-01-19 13:18:36 +080024#include <arch/cpu.h>
Frank Vibrans69da1b62011-02-14 19:04:45 +000025#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>
Kyösti Mälkkid610c582017-03-05 06:28:18 +020031#include <northbridge/amd/agesa/agesa_helper.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110032#include <cpu/x86/bist.h>
Edward O'Callaghanf5bde442014-06-02 12:20:11 +100033#include <superio/smsc/kbc1100/kbc1100.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>
Frank Vibrans69da1b62011-02-14 19:04:45 +000036#include "SBPLATFORM.h"
Frank Vibrans69da1b62011-02-14 19:04:45 +000037
Edward O'Callaghanf5bde442014-06-02 12:20:11 +100038#define SERIAL_DEV PNP_DEV(0x2e, SMSCSUPERIO_SP1)
39
Frank Vibrans69da1b62011-02-14 19:04:45 +000040void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
41{
Marc Jonesc9ea3272012-01-17 15:41:03 -070042 u32 val;
Frank Vibrans69da1b62011-02-14 19:04:45 +000043
Kyösti Mälkki59e03342016-11-20 11:03:13 +020044 /* Must come first to enable PCI MMCONF. */
Kyösti Mälkki48518f02014-11-25 14:20:57 +020045 amd_initmmio();
Kyösti Mälkkie453b9a2014-11-25 14:03:29 +020046
Marc Jonesc9ea3272012-01-17 15:41:03 -070047 if (!cpu_init_detectedx && boot_cpu()) {
48 post_code(0x30);
49 sb_Poweron_Init();
Frank Vibrans69da1b62011-02-14 19:04:45 +000050
Marc Jonesc9ea3272012-01-17 15:41:03 -070051 post_code(0x31);
Edward O'Callaghanf5bde442014-06-02 12:20:11 +100052 kbc1100_early_init(0x2e);
53 kbc1100_early_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Marc Jonesc9ea3272012-01-17 15:41:03 -070054 console_init();
55 }
Frank Vibrans69da1b62011-02-14 19:04:45 +000056
Marc Jonesc9ea3272012-01-17 15:41:03 -070057 /* Halt if there was a built in self test failure */
58 post_code(0x34);
59 report_bist_failure(bist);
Frank Vibrans69da1b62011-02-14 19:04:45 +000060
Marc Jones938ae3e2012-01-17 16:51:24 -070061 /* Load MPB */
Marc Jonesc9ea3272012-01-17 15:41:03 -070062 val = cpuid_eax(1);
Elyes HAOUASaedcc102014-07-21 08:07:19 +020063 printk(BIOS_DEBUG, "BSP Family_Model: %08x\n", val);
64 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx\n", cpu_init_detectedx);
Frank Vibrans69da1b62011-02-14 19:04:45 +000065
Marc Jonesc9ea3272012-01-17 15:41:03 -070066 post_code(0x37);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030067 agesawrapper_amdinitreset();
Frank Vibrans69da1b62011-02-14 19:04:45 +000068
Marc Jonesc9ea3272012-01-17 15:41:03 -070069 post_code(0x39);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030070 agesawrapper_amdinitearly();
Frank Vibrans69da1b62011-02-14 19:04:45 +000071
Marc Jonesc9ea3272012-01-17 15:41:03 -070072 post_code(0x40);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030073 agesawrapper_amdinitpost();
Frank Vibrans69da1b62011-02-14 19:04:45 +000074
Marc Jonesc9ea3272012-01-17 15:41:03 -070075 post_code(0x41);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030076 agesawrapper_amdinitenv();
Kyösti Mälkki4a08e152014-12-14 19:41:54 +020077 amd_initenv();
Frank Vibrans69da1b62011-02-14 19:04:45 +000078
Marc Jonesc9ea3272012-01-17 15:41:03 -070079 post_code(0x50);
Stefan Reinauer648d1662013-05-06 18:05:39 -070080 copy_and_run();
Marc Jones938ae3e2012-01-17 16:51:24 -070081 printk(BIOS_ERR, "Error: copy_and_run() returned!\n");
Frank Vibrans69da1b62011-02-14 19:04:45 +000082
Marc Jones938ae3e2012-01-17 16:51:24 -070083 post_code(0x54); /* Should never see this post code. */
Frank Vibrans69da1b62011-02-14 19:04:45 +000084}