blob: abab68844a58512842fae5ccffc186f170ddbbfd [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>
Kyösti Mälkkif21c2ac2014-10-19 09:35:18 +030033#include <northbridge/amd/agesa/agesawrapper.h>
Siyuan Wang80cf7d52013-07-09 17:42:43 +080034#include "cpu/x86/bist.h"
Kyösti Mälkkic66f1cb2013-08-12 16:09:00 +030035#include "cpu/x86/lapic.h"
Siyuan Wang80cf7d52013-07-09 17:42:43 +080036#include "southbridge/amd/agesa/hudson/hudson.h"
37#include "cpu/amd/agesa/s3_resume.h"
Siyuan Wang80cf7d52013-07-09 17:42:43 +080038#include "cbmem.h"
39
Siyuan Wang80cf7d52013-07-09 17:42:43 +080040
41void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
42{
43 u32 val;
Siyuan Wang80cf7d52013-07-09 17:42:43 +080044
45 /* In Hudson RRG, PMIOxD2[5:4] is "Drive strength control for
46 * LpcClk[1:0]". To be consistent with Parmer, setting to 4mA
47 * even though the register is not documented in the Kabini BKDG.
48 * Otherwise the serial output is bad code.
49 */
50 outb(0xD2, 0xcd6);
51 outb(0x00, 0xcd7);
52
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030053 agesawrapper_amdinitmmio();
Siyuan Wang80cf7d52013-07-09 17:42:43 +080054
Kyösti Mälkki88ff8b52014-11-21 17:40:37 +020055 /* Set LPC decode enables. */
56 pci_devfn_t dev = PCI_DEV(0, 0x14, 3);
57 pci_write_config32(dev, 0x44, 0xff03ffd5);
58
Siyuan Wang80cf7d52013-07-09 17:42:43 +080059 hudson_lpc_port80();
60
61 if (!cpu_init_detectedx && boot_cpu()) {
62 post_code(0x30);
63
64 post_code(0x31);
65 console_init();
66 }
67
68 /* Halt if there was a built in self test failure */
69 post_code(0x34);
70 report_bist_failure(bist);
71
72 /* Load MPB */
73 val = cpuid_eax(1);
Elyes HAOUASaedcc102014-07-21 08:07:19 +020074 printk(BIOS_DEBUG, "BSP Family_Model: %08x\n", val);
75 printk(BIOS_DEBUG, "cpu_init_detectedx = %08lx\n", cpu_init_detectedx);
Siyuan Wang80cf7d52013-07-09 17:42:43 +080076
77 /* On Larne, after LpcClkDrvSth is set, it needs some time to be stable, because of the buffer ICS551M */
78 int i;
79 for(i = 0; i < 200000; i++)
80 val = inb(0xcd6);
81
82 post_code(0x37);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030083 agesawrapper_amdinitreset();
Siyuan Wang80cf7d52013-07-09 17:42:43 +080084 post_code(0x38);
Bruce Griffith4e08a952013-07-07 02:04:16 -060085 printk(BIOS_DEBUG, "Got past yangtze_early_setup\n");
Siyuan Wang80cf7d52013-07-09 17:42:43 +080086
87 post_code(0x39);
88
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030089 agesawrapper_amdinitearly();
Kyösti Mälkkie1b468e2014-06-18 09:10:53 +030090 int s3resume = acpi_is_wakeup_early() && acpi_s3_resume_allowed();
91 if (!s3resume) {
Siyuan Wang80cf7d52013-07-09 17:42:43 +080092 post_code(0x40);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030093 agesawrapper_amdinitpost();
Siyuan Wang80cf7d52013-07-09 17:42:43 +080094 post_code(0x41);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +030095 agesawrapper_amdinitenv();
Siyuan Wang80cf7d52013-07-09 17:42:43 +080096 /* TODO: Disable cache is not ok. */
97 disable_cache_as_ram();
Siyuan Wang80cf7d52013-07-09 17:42:43 +080098 } else { /* S3 detect */
99 printk(BIOS_INFO, "S3 detected\n");
100
101 post_code(0x60);
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +0300102 agesawrapper_amdinitresume();
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800103
Kyösti Mälkkib139b5e2014-10-20 07:41:20 +0300104 agesawrapper_amdinitcpuio();
Kyösti Mälkki1aa35c62014-10-21 14:19:04 +0300105 agesawrapper_amds3laterestore();
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800106
107 post_code(0x61);
Kyösti Mälkki23b4f0c2014-06-18 09:55:26 +0300108 prepare_for_resume();
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800109 }
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800110
111 outb(0xEA, 0xCD6);
112 outb(0x1, 0xcd7);
Siyuan Wang80cf7d52013-07-09 17:42:43 +0800113
114 post_code(0x50);
115 copy_and_run();
116
117 post_code(0x54); /* Should never see this post code. */
118}