blob: 4622fe08ae6625c82d4eb873ae99f3d6272487ed [file] [log] [blame]
Siyuan Wang80cf7d52013-07-09 17:42:43 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 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
Zheng Bao7797ffa2013-11-20 15:09:23 +080017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Siyuan Wang80cf7d52013-07-09 17:42:43 +080018 */
19
20#include <stdint.h>
21#include <string.h>
22#include <device/pci_def.h>
23#include <device/pci_ids.h>
Kyösti Mälkki207880c2013-12-10 09:03:17 +020024#include <arch/acpi.h>
Siyuan Wang80cf7d52013-07-09 17:42:43 +080025#include <arch/io.h>
26#include <arch/stages.h>
27#include <device/pnp_def.h>
28#include <arch/cpu.h>
29#include <cpu/x86/lapic.h>
30#include <console/console.h>
31#include <console/loglevel.h>
Edward O'Callaghanbf9d1222014-10-29 09:26:00 +110032#include <cpu/amd/car.h>
Siyuan Wang80cf7d52013-07-09 17:42:43 +080033#include "agesawrapper.h"
Kyösti Mälkki7b23ae02014-07-04 16:14:37 +030034#include <northbridge/amd/agesa/agesawrapper_call.h>
Siyuan Wang80cf7d52013-07-09 17:42:43 +080035#include "cpu/x86/bist.h"
Kyösti Mälkkic66f1cb2013-08-12 16:09:00 +030036#include "cpu/x86/lapic.h"
Siyuan Wang80cf7d52013-07-09 17:42:43 +080037#include "southbridge/amd/agesa/hudson/hudson.h"
38#include "cpu/amd/agesa/s3_resume.h"
Siyuan Wang80cf7d52013-07-09 17:42:43 +080039#include "cbmem.h"
40
Siyuan Wang80cf7d52013-07-09 17:42:43 +080041
42void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
43{
44 u32 val;
Siyuan Wang80cf7d52013-07-09 17:42:43 +080045
46 /* In Hudson RRG, PMIOxD2[5:4] is "Drive strength control for
47 * LpcClk[1:0]". To be consistent with Parmer, setting to 4mA
48 * even though the register is not documented in the Kabini BKDG.
49 * Otherwise the serial output is bad code.
50 */
51 outb(0xD2, 0xcd6);
52 outb(0x00, 0xcd7);
53
Kyösti Mälkki30fbb4c2014-10-20 07:04:55 +030054 AGESAWRAPPER_PRE_CONSOLE(amdinitmmio);
Siyuan Wang80cf7d52013-07-09 17:42:43 +080055
56 hudson_lpc_port80();
57
58 if (!cpu_init_detectedx && boot_cpu()) {
59 post_code(0x30);
60
61 post_code(0x31);
62 console_init();
63 }
64
65 /* Halt if there was a built in self test failure */
66 post_code(0x34);
67 report_bist_failure(bist);
68
69 /* Load MPB */
70 val = cpuid_eax(1);
Elyes HAOUASaedcc102014-07-21 08:07:19 +020071 printk(BIOS_DEBUG, "BSP Family_Model: %08x\n", val);
72 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx\n", cpu_init_detectedx);
Siyuan Wang80cf7d52013-07-09 17:42:43 +080073
74 /* On Larne, after LpcClkDrvSth is set, it needs some time to be stable, because of the buffer ICS551M */
75 int i;
76 for(i = 0; i < 200000; i++)
77 val = inb(0xcd6);
78
79 post_code(0x37);
Kyösti Mälkki7b23ae02014-07-04 16:14:37 +030080 AGESAWRAPPER(amdinitreset);
Siyuan Wang80cf7d52013-07-09 17:42:43 +080081 post_code(0x38);
Bruce Griffith4e08a952013-07-07 02:04:16 -060082 printk(BIOS_DEBUG, "Got past yangtze_early_setup\n");
Siyuan Wang80cf7d52013-07-09 17:42:43 +080083
84 post_code(0x39);
85
Kyösti Mälkki7b23ae02014-07-04 16:14:37 +030086 AGESAWRAPPER(amdinitearly);
Kyösti Mälkkie1b468e2014-06-18 09:10:53 +030087 int s3resume = acpi_is_wakeup_early() && acpi_s3_resume_allowed();
88 if (!s3resume) {
Siyuan Wang80cf7d52013-07-09 17:42:43 +080089 post_code(0x40);
Kyösti Mälkki7b23ae02014-07-04 16:14:37 +030090 AGESAWRAPPER(amdinitpost);
Siyuan Wang80cf7d52013-07-09 17:42:43 +080091 post_code(0x41);
Kyösti Mälkki7b23ae02014-07-04 16:14:37 +030092 AGESAWRAPPER(amdinitenv);
Siyuan Wang80cf7d52013-07-09 17:42:43 +080093 /* TODO: Disable cache is not ok. */
94 disable_cache_as_ram();
Siyuan Wang80cf7d52013-07-09 17:42:43 +080095 } else { /* S3 detect */
96 printk(BIOS_INFO, "S3 detected\n");
97
98 post_code(0x60);
Kyösti Mälkki7b23ae02014-07-04 16:14:37 +030099 AGESAWRAPPER(amdinitresume);
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800100
Kyösti Mälkki7b23ae02014-07-04 16:14:37 +0300101 AGESAWRAPPER(amds3laterestore);
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800102
103 post_code(0x61);
Kyösti Mälkki23b4f0c2014-06-18 09:55:26 +0300104 prepare_for_resume();
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800105 }
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800106
107 outb(0xEA, 0xCD6);
108 outb(0x1, 0xcd7);
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800109
110 post_code(0x50);
111 copy_and_run();
112
113 post_code(0x54); /* Should never see this post code. */
114}