blob: e390c1899c47fb666df0a534856981ab2f70c22c [file] [log] [blame]
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2017 Kyösti Mälkki
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
16#include <arch/acpi.h>
17#include <arch/cpu.h>
Kyösti Mälkkiba22e152016-11-23 06:47:15 +020018#include <cbmem.h>
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020019#include <cpu/amd/car.h>
Kyösti Mälkkiba22e152016-11-23 06:47:15 +020020#include <cpu/amd/agesa/s3_resume.h>
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020021#include <cpu/x86/bist.h>
Kyösti Mälkkiba22e152016-11-23 06:47:15 +020022#include <cpu/x86/mtrr.h>
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020023#include <console/console.h>
Kyösti Mälkkiba22e152016-11-23 06:47:15 +020024#include <halt.h>
25#include <program_loading.h>
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020026#include <smp/node.h>
27#include <string.h>
Kyösti Mälkkiba22e152016-11-23 06:47:15 +020028#include <northbridge/amd/agesa/agesa_helper.h>
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020029#include <northbridge/amd/agesa/state_machine.h>
30
Kyösti Mälkkib0931d32017-07-17 11:58:06 +030031void asmlinkage early_all_cores(void)
32{
33 amd_initmmio();
34}
35
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020036static void fill_sysinfo(struct sysinfo *cb)
37{
38 memset(cb, 0, sizeof(*cb));
39 cb->s3resume = acpi_is_wakeup_s3();
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020040
41 if (!HAS_LEGACY_WRAPPER)
42 agesa_set_interface(cb);
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020043}
44
45void * asmlinkage romstage_main(unsigned long bist)
46{
47 struct sysinfo romstage_state;
48 struct sysinfo *cb = &romstage_state;
49 u8 initial_apic_id = (u8) (cpuid_ebx(1) >> 24);
50
51 fill_sysinfo(cb);
52
53 if ((initial_apic_id == 0) && boot_cpu()) {
54
55 platform_once(cb);
56
57 console_init();
58 }
59
60 printk(BIOS_DEBUG, "APIC %02d: CPU Family_Model = %08x\n",
61 initial_apic_id, cpuid_eax(1));
62
63 /* Halt if there was a built in self test failure */
64 report_bist_failure(bist);
65
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020066 if (!HAS_LEGACY_WRAPPER) {
67
68 agesa_execute_state(cb, AMD_INIT_RESET);
69
70 agesa_execute_state(cb, AMD_INIT_EARLY);
71
72 if (!cb->s3resume)
73 agesa_execute_state(cb, AMD_INIT_POST);
74 else
75 agesa_execute_state(cb, AMD_INIT_RESUME);
76
77 } else {
78
79 agesa_main(cb);
80
81 }
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020082
Kyösti Mälkkiba22e152016-11-23 06:47:15 +020083 uintptr_t stack_top = CACHE_TMP_RAMTOP;
84 if (cb->s3resume) {
85 if (cbmem_recovery(1)) {
86 printk(BIOS_EMERG, "Unable to recover CBMEM\n");
87 halt();
88 }
89 stack_top = romstage_ram_stack_base(HIGH_ROMSTAGE_STACK_SIZE,
90 ROMSTAGE_STACK_CBMEM);
91 stack_top += HIGH_ROMSTAGE_STACK_SIZE;
92 }
93
94 printk(BIOS_DEBUG, "Move CAR stack.\n");
95 return (void*)stack_top;
96}
97
98void asmlinkage romstage_after_car(void)
99{
100 struct sysinfo romstage_state;
101 struct sysinfo *cb = &romstage_state;
102
103 printk(BIOS_DEBUG, "CAR disabled.\n");
104
105 fill_sysinfo(cb);
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +0200106
107 if (!HAS_LEGACY_WRAPPER) {
108 if (!cb->s3resume)
109 agesa_execute_state(cb, AMD_INIT_ENV);
110 else
111 agesa_execute_state(cb, AMD_S3LATE_RESTORE);
112 } else {
113
114 agesa_postcar(cb);
115 }
Kyösti Mälkkiba22e152016-11-23 06:47:15 +0200116
117 if (cb->s3resume)
118 set_resume_cache();
119
120 run_ramstage();
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +0200121}