summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/stoneyridge/include/soc/cpu.h
blob: ea51f76a3e5ee3e1e3b22edb709a8ffa326efccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-only */

#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__ */