blob: 4422b66bb2290b14d9176823859855f93e4865df [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
31static void fill_sysinfo(struct sysinfo *cb)
32{
33 memset(cb, 0, sizeof(*cb));
34 cb->s3resume = acpi_is_wakeup_s3();
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020035
36 if (!HAS_LEGACY_WRAPPER)
37 agesa_set_interface(cb);
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020038}
39
40void * asmlinkage romstage_main(unsigned long bist)
41{
42 struct sysinfo romstage_state;
43 struct sysinfo *cb = &romstage_state;
44 u8 initial_apic_id = (u8) (cpuid_ebx(1) >> 24);
45
46 fill_sysinfo(cb);
47
48 if ((initial_apic_id == 0) && boot_cpu()) {
49
50 platform_once(cb);
51
52 console_init();
53 }
54
55 printk(BIOS_DEBUG, "APIC %02d: CPU Family_Model = %08x\n",
56 initial_apic_id, cpuid_eax(1));
57
58 /* Halt if there was a built in self test failure */
59 report_bist_failure(bist);
60
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020061 if (!HAS_LEGACY_WRAPPER) {
62
63 agesa_execute_state(cb, AMD_INIT_RESET);
64
65 agesa_execute_state(cb, AMD_INIT_EARLY);
66
67 if (!cb->s3resume)
68 agesa_execute_state(cb, AMD_INIT_POST);
69 else
70 agesa_execute_state(cb, AMD_INIT_RESUME);
71
72 } else {
73
74 agesa_main(cb);
75
76 }
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020077
Kyösti Mälkkiba22e152016-11-23 06:47:15 +020078 uintptr_t stack_top = CACHE_TMP_RAMTOP;
79 if (cb->s3resume) {
80 if (cbmem_recovery(1)) {
81 printk(BIOS_EMERG, "Unable to recover CBMEM\n");
82 halt();
83 }
84 stack_top = romstage_ram_stack_base(HIGH_ROMSTAGE_STACK_SIZE,
85 ROMSTAGE_STACK_CBMEM);
86 stack_top += HIGH_ROMSTAGE_STACK_SIZE;
87 }
88
89 printk(BIOS_DEBUG, "Move CAR stack.\n");
90 return (void*)stack_top;
91}
92
93void asmlinkage romstage_after_car(void)
94{
95 struct sysinfo romstage_state;
96 struct sysinfo *cb = &romstage_state;
97
98 printk(BIOS_DEBUG, "CAR disabled.\n");
99
100 fill_sysinfo(cb);
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +0200101
102 if (!HAS_LEGACY_WRAPPER) {
103 if (!cb->s3resume)
104 agesa_execute_state(cb, AMD_INIT_ENV);
105 else
106 agesa_execute_state(cb, AMD_S3LATE_RESTORE);
107 } else {
108
109 agesa_postcar(cb);
110 }
Kyösti Mälkkiba22e152016-11-23 06:47:15 +0200111
112 if (cb->s3resume)
113 set_resume_cache();
114
115 run_ramstage();
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +0200116}