summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/stoneyridge/include/soc/cpu.h
blob: 73a80830d2335a5e374538c878c9234933ab03e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef __STONEYRIDGE_CPU_H__
#define __STONEYRIDGE_CPU_H__

#include <device/device.h>

/*
 *  Set a variable MTRR in bootblock and/or romstage.  AGESA will use the lowest
 *  numbered registers.  Any values defined below are subtracted from the
 *  highest numbered registers.
 *
 *  todo: Revisit this once AGESA no longer programs MTRRs.
 */
#define SOC_EARLY_VMTRR_FLASH 1
#define SOC_EARLY_VMTRR_CAR_HEAP 2
#define SOC_EARLY_VMTRR_TEMPRAM 3

void stoney_init_cpus(struct device *dev);
void check_mca(void);

#endif /* __STONEYRIDGE_CPU_H__ */