blob: df55efa7494ff18217643b75d942d18b7baffc6c [file] [log] [blame]
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2016 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
Elyes HAOUAS19f5ba82018-10-14 14:52:06 +020016#include <Porting.h>
17#include <AGESA.h>
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030018#include <arch/io.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020019#include <cbmem.h>
Nico Huber3e1b3b12018-10-07 12:45:47 +020020#include <cf9_reset.h>
Elyes HAOUAS20eaef02019-03-29 17:45:28 +010021#include <console/console.h>
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030022#include <device/device.h>
23#include <device/pci_def.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020024#include <device/pci_ops.h>
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030025#include <smp/node.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020026#include <northbridge/amd/agesa/state_machine.h>
27#include <northbridge/amd/agesa/agesa_helper.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020028#include <sb_cimx.h>
29
30void platform_BeforeInitReset(struct sysinfo *cb, AMD_RESET_PARAMS *Reset)
31{
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030032 /* Reboots with outb(3,0x92), outb(4,0xcf9) or triple-fault all
33 * would fail later in AmdInitPost(), when DRAM is already configured
34 * and C6DramLock bit has been set.
35 *
36 * As a workaround, do a hard reset to clear C6DramLock bit.
37 */
38#ifdef __SIMPLE_DEVICE__
39 pci_devfn_t dev = PCI_DEV(0, 0x18, 2);
40#else
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +030041 struct device *dev = pcidev_on_root(0x18, 2);
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030042#endif
43 if (boot_cpu()) {
44 u32 mct_cfg_lo = pci_read_config32(dev, 0x118);
45 if (mct_cfg_lo & (1<<19)) {
46 printk(BIOS_CRIT, "C6DramLock is set, resetting\n");
Nico Huber3e1b3b12018-10-07 12:45:47 +020047 system_reset();
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030048 }
49 }
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020050}
51
52void platform_BeforeInitEarly(struct sysinfo *cb, AMD_EARLY_PARAMS *Early)
53{
54}
55
56void platform_BeforeInitPost(struct sysinfo *cb, AMD_POST_PARAMS *Post)
57{
58}
59
60void platform_AfterInitPost(struct sysinfo *cb, AMD_POST_PARAMS *Post)
61{
62 backup_top_of_low_cacheable(Post->MemConfig.Sub4GCacheTop);
63}
64
65void platform_BeforeInitResume(struct sysinfo *cb, AMD_RESUME_PARAMS *Resume)
66{
67 OemInitResume(&Resume->S3DataBlock);
68}
69
70void platform_AfterInitResume(struct sysinfo *cb, AMD_RESUME_PARAMS *Resume)
71{
72}
73
74void platform_BeforeInitEnv(struct sysinfo *cb, AMD_ENV_PARAMS *Env)
75{
76 EmptyHeap();
77}
78
79void platform_AfterInitEnv(struct sysinfo *cb, AMD_ENV_PARAMS *Env)
80{
81 amd_initenv();
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020082}
83
84void platform_BeforeS3LateRestore(struct sysinfo *cb, AMD_S3LATE_PARAMS *S3Late)
85{
86 OemS3LateRestore(&S3Late->S3DataBlock);
87}
88
89void platform_AfterS3LateRestore(struct sysinfo *cb, AMD_S3LATE_PARAMS *S3Late)
90{
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020091}
92
93void platform_BeforeInitMid(struct sysinfo *cb, AMD_MID_PARAMS *Mid)
94{
95 sb_After_Pci_Init();
96 sb_Mid_Post_Init();
97
98 amd_initcpuio();
99}
100
101void platform_AfterInitLate(struct sysinfo *cb, AMD_LATE_PARAMS *Late)
102{
103 sb_Late_Post();
104}
105
106void platform_AfterS3Save(struct sysinfo *cb, AMD_S3SAVE_PARAMS *S3Save)
107{
108 OemS3Save(&S3Save->S3DataBlock);
109}