blob: cdfb31adc921ab507dcb1c6352e882a1d66b6278 [file] [log] [blame]
Jens Rottmann73d49652013-02-28 09:56:20 +01001/*
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.
Jens Rottmann73d49652013-02-28 09:56:20 +010014 */
15
16#include <stdint.h>
17#include <string.h>
18#include <device/pci_def.h>
19#include <device/pci_ids.h>
Kyösti Mälkki207880c2013-12-10 09:03:17 +020020#include <arch/acpi.h>
Jens Rottmann73d49652013-02-28 09:56:20 +010021#include <arch/io.h>
22#include <arch/stages.h>
23#include <device/pnp_def.h>
Jens Rottmann73d49652013-02-28 09:56:20 +010024#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>
Edward O'Callaghanfdceb482014-06-02 07:58:14 +100032#include <superio/smsc/smscsuperio/smscsuperio.h>
Edward O'Callaghan77757c22015-01-04 21:33:39 +110033#include <cpu/x86/lapic.h>
Jens Rottmann73d49652013-02-28 09:56:20 +010034#include <cpu/x86/cache.h>
Paul Menzel69743962013-04-19 10:05:57 +020035#include <sb_cimx.h>
Jens Rottmann73d49652013-02-28 09:56:20 +010036#include "SBPLATFORM.h"
37#include "cbmem.h"
Edward O'Callaghan77757c22015-01-04 21:33:39 +110038#include <cpu/amd/mtrr.h>
39#include <cpu/amd/agesa/s3_resume.h>
Jens Rottmann73d49652013-02-28 09:56:20 +010040
Jens Rottmann73d49652013-02-28 09:56:20 +010041
Jens Rottmann23d13b12013-02-28 10:24:20 +010042#define SERIAL_DEV PNP_DEV(0x4e, SMSCSUPERIO_SP1)
Jens Rottmann73d49652013-02-28 09:56:20 +010043
44void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
45{
46 u32 val;
47
Jens Rottmann73d49652013-02-28 09:56:20 +010048 /*
49 * All cores: allow caching of flash chip code and data
50 * (there are no cache-as-ram reliability concerns with family 14h)
51 */
Kyösti Mälkki107f72e2014-01-06 11:06:26 +020052 __writemsr (0x20c, (0x0100000000ull - CACHE_ROM_SIZE) | 5);
53 __writemsr (0x20d, (0x1000000000ull - CACHE_ROM_SIZE) | 0x800);
Jens Rottmann73d49652013-02-28 09:56:20 +010054
55 /* All cores: set pstate 0 (1600 MHz) early to save a few ms of boot time */
56 __writemsr (0xc0010062, 0);
57
Kyösti Mälkki48518f02014-11-25 14:20:57 +020058 amd_initmmio();
Kyösti Mälkkie453b9a2014-11-25 14:03:29 +020059
Jens Rottmann73d49652013-02-28 09:56:20 +010060 if (!cpu_init_detectedx && boot_cpu()) {
61 post_code(0x30);
62 sb_Poweron_Init();
63
64 post_code(0x31);
Jens Rottmann23d13b12013-02-28 10:24:20 +010065 smscsuperio_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Jens Rottmann73d49652013-02-28 09:56:20 +010066 console_init();
67 }
68
69 /* Halt if there was a built in self test failure */
70 post_code(0x34);
71 report_bist_failure(bist);
72
73 /* Load MPB */
74 val = cpuid_eax(1);
Elyes HAOUASaedcc102014-07-21 08:07:19 +020075 printk(BIOS_DEBUG, "BSP Family_Model: %08x\n", val);
76 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx\n", cpu_init_detectedx);
Jens Rottmann73d49652013-02-28 09:56:20 +010077
Jens Rottmann73d49652013-02-28 09:56:20 +010078 post_code(0x37);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030079 agesawrapper_amdinitreset();
Jens Rottmann73d49652013-02-28 09:56:20 +010080
81 post_code(0x39);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030082 agesawrapper_amdinitearly();
Jens Rottmann73d49652013-02-28 09:56:20 +010083
Kyösti Mälkki78c5d582015-01-09 23:48:47 +020084 int s3resume = acpi_is_wakeup_s3();
Kyösti Mälkkie1b468e2014-06-18 09:10:53 +030085 if (!s3resume) {
Jens Rottmann73d49652013-02-28 09:56:20 +010086 post_code(0x40);
Jens Rottmannf91c8f22013-03-01 19:01:00 +010087 /* Reboots with outb(3,0x92), outb(4,0xcf9) or triple-fault all
88 * hang, looks like DRAM re-init goes wrong, don't know why. */
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030089 val = agesawrapper_amdinitpost();
Jens Rottmannf91c8f22013-03-01 19:01:00 +010090 if (val == 7) /* fatal, amdinitenv below is going to hang */
91 outb(0x06, 0x0cf9); /* reset system harder instead */
Jens Rottmann73d49652013-02-28 09:56:20 +010092
93 post_code(0x42);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030094 agesawrapper_amdinitenv();
Kyösti Mälkki4a08e152014-12-14 19:41:54 +020095 amd_initenv();
Jens Rottmann73d49652013-02-28 09:56:20 +010096
Jens Rottmann73d49652013-02-28 09:56:20 +010097 } else { /* S3 detect */
98 printk(BIOS_INFO, "S3 detected\n");
99
100 post_code(0x60);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +0300101 agesawrapper_amdinitresume();
Jens Rottmann73d49652013-02-28 09:56:20 +0100102
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +0300103 agesawrapper_amds3laterestore();
Jens Rottmann73d49652013-02-28 09:56:20 +0100104
105 post_code(0x61);
Kyösti Mälkki23b4f0c2014-06-18 09:55:26 +0300106 prepare_for_resume();
Jens Rottmann73d49652013-02-28 09:56:20 +0100107 }
Jens Rottmann73d49652013-02-28 09:56:20 +0100108
Jens Rottmann73d49652013-02-28 09:56:20 +0100109 post_code(0x50);
Stefan Reinauer648d1662013-05-06 18:05:39 -0700110 copy_and_run();
Jens Rottmann73d49652013-02-28 09:56:20 +0100111 printk(BIOS_ERR, "Error: copy_and_run() returned!\n");
112
113 post_code(0x54); /* Should never see this post code. */
114}