blob: d29656cd22e41d82852ca52e7077e04117d354a5 [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älkki28c4d2f2016-11-25 11:21:02 +020018
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030019#include <arch/io.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020020#include <cbmem.h>
Nico Huber3e1b3b12018-10-07 12:45:47 +020021#include <cf9_reset.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>
28
29#include <sb_cimx.h>
30
31void platform_BeforeInitReset(struct sysinfo *cb, AMD_RESET_PARAMS *Reset)
32{
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030033 /* Reboots with outb(3,0x92), outb(4,0xcf9) or triple-fault all
34 * would fail later in AmdInitPost(), when DRAM is already configured
35 * and C6DramLock bit has been set.
36 *
37 * As a workaround, do a hard reset to clear C6DramLock bit.
38 */
39#ifdef __SIMPLE_DEVICE__
40 pci_devfn_t dev = PCI_DEV(0, 0x18, 2);
41#else
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +030042 struct device *dev = pcidev_on_root(0x18, 2);
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030043#endif
44 if (boot_cpu()) {
45 u32 mct_cfg_lo = pci_read_config32(dev, 0x118);
46 if (mct_cfg_lo & (1<<19)) {
47 printk(BIOS_CRIT, "C6DramLock is set, resetting\n");
Nico Huber3e1b3b12018-10-07 12:45:47 +020048 system_reset();
Kyösti Mälkki64df52e2017-09-01 06:13:08 +030049 }
50 }
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020051}
52
53void platform_BeforeInitEarly(struct sysinfo *cb, AMD_EARLY_PARAMS *Early)
54{
55}
56
57void platform_BeforeInitPost(struct sysinfo *cb, AMD_POST_PARAMS *Post)
58{
59}
60
61void platform_AfterInitPost(struct sysinfo *cb, AMD_POST_PARAMS *Post)
62{
63 backup_top_of_low_cacheable(Post->MemConfig.Sub4GCacheTop);
64}
65
66void platform_BeforeInitResume(struct sysinfo *cb, AMD_RESUME_PARAMS *Resume)
67{
68 OemInitResume(&Resume->S3DataBlock);
69}
70
71void platform_AfterInitResume(struct sysinfo *cb, AMD_RESUME_PARAMS *Resume)
72{
73}
74
75void platform_BeforeInitEnv(struct sysinfo *cb, AMD_ENV_PARAMS *Env)
76{
77 EmptyHeap();
78}
79
80void platform_AfterInitEnv(struct sysinfo *cb, AMD_ENV_PARAMS *Env)
81{
82 amd_initenv();
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020083}
84
85void platform_BeforeS3LateRestore(struct sysinfo *cb, AMD_S3LATE_PARAMS *S3Late)
86{
87 OemS3LateRestore(&S3Late->S3DataBlock);
88}
89
90void platform_AfterS3LateRestore(struct sysinfo *cb, AMD_S3LATE_PARAMS *S3Late)
91{
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020092}
93
94void platform_BeforeInitMid(struct sysinfo *cb, AMD_MID_PARAMS *Mid)
95{
96 sb_After_Pci_Init();
97 sb_Mid_Post_Init();
98
99 amd_initcpuio();
100}
101
102void platform_AfterInitLate(struct sysinfo *cb, AMD_LATE_PARAMS *Late)
103{
104 sb_Late_Post();
105}
106
107void platform_AfterS3Save(struct sysinfo *cb, AMD_S3SAVE_PARAMS *S3Save)
108{
109 OemS3Save(&S3Save->S3DataBlock);
110}