blob: 9661b636cc16d6df96ecd2e202f50f4535b79600 [file] [log] [blame]
Eric Biedermanc84c1902004-10-14 20:13:01 +00001#ifndef CPU_AMD_MTRR_H
2#define CPU_AMD_MTRR_H
3
4#define IORR_FIRST 0xC0010016
5#define IORR_LAST 0xC0010019
6
7#define MTRR_READ_MEM (1 << 4)
8#define MTRR_WRITE_MEM (1 << 3)
9
10#define SYSCFG_MSR 0xC0010010
Scott Duplichanf3cce2f2010-11-13 19:07:59 +000011#define SYSCFG_MSR_TOM2WB (1 << 22)
Eric Biedermanc84c1902004-10-14 20:13:01 +000012#define SYSCFG_MSR_TOM2En (1 << 21)
13#define SYSCFG_MSR_MtrrVarDramEn (1 << 20)
14#define SYSCFG_MSR_MtrrFixDramModEn (1 << 19)
15#define SYSCFG_MSR_MtrrFixDramEn (1 << 18)
16#define SYSCFG_MSR_UcLockEn (1 << 17)
17#define SYSCFG_MSR_ChxToDirtyDis (1 << 16)
18#define SYSCFG_MSR_ClVicBlkEn (1 << 11)
19#define SYSCFG_MSR_SetDirtyEnO (1 << 10)
20#define SYSCFG_MSR_SetDirtyEnS (1 << 9)
21#define SYSCFG_MSR_SetDirtyEnE (1 << 8)
22#define SYSCFG_MSR_SysVicLimitMask ((1 << 8) - (1 << 5))
23#define SYSCFG_MSR_SysAckLimitMask ((1 << 5) - (1 << 0))
24
Warren Turkal4ffde942010-10-12 06:13:40 +000025#define IORRBase_MSR(reg) (0xC0010016 + 2 * (reg))
26#define IORRMask_MSR(reg) (0xC0010016 + 2 * (reg) + 1)
27
Kyösti Mälkki0127c6c2015-03-05 14:35:04 +020028#if defined(__ASSEMBLER__)
29#define TOP_MEM 0xC001001A
30#define TOP_MEM2 0xC001001D
31#else
32#define TOP_MEM 0xC001001Aul
33#define TOP_MEM2 0xC001001Dul
efdesign9878834b72011-08-04 16:18:16 -060034#endif
Eric Biedermanc84c1902004-10-14 20:13:01 +000035
36#define TOP_MEM_MASK 0x007fffff
37#define TOP_MEM_MASK_KB (TOP_MEM_MASK >> 10)
38
Stefan Reinauer61aee5f2011-04-10 04:15:23 +000039#if !defined(__PRE_RAM__) && !defined(__ASSEMBLER__)
Kyösti Mälkki4607cac2016-12-06 14:14:19 +020040
Aaron Durbin75a62e72018-09-13 02:10:45 -060041#include <compiler.h>
Kyösti Mälkki4607cac2016-12-06 14:14:19 +020042#include <cpu/x86/msr.h>
43
Eric Biedermanc84c1902004-10-14 20:13:01 +000044void amd_setup_mtrrs(void);
Kyösti Mälkki17bb2252017-04-19 19:55:54 +030045struct device;
46void add_uma_resource_below_tolm(struct device *nb, int idx);
Kyösti Mälkkidbc47392012-08-05 12:11:40 +030047
Aaron Durbin75a62e72018-09-13 02:10:45 -060048static __always_inline msr_t rdmsr_amd(unsigned int index)
Kyösti Mälkki190011e2013-03-25 12:48:49 +020049{
50 msr_t result;
51 __asm__ __volatile__ (
52 "rdmsr"
53 : "=a" (result.lo), "=d" (result.hi)
54 : "c"(index), "D"(0x9c5a203a)
55 );
56 return result;
57}
58
Aaron Durbin75a62e72018-09-13 02:10:45 -060059static __always_inline void wrmsr_amd(unsigned int index, msr_t msr)
Kyösti Mälkki190011e2013-03-25 12:48:49 +020060{
61 __asm__ __volatile__ (
62 "wrmsr"
63 : /* No outputs */
64 : "c" (index), "a" (msr.lo), "d" (msr.hi), "D" (0x9c5a203a)
65 );
66}
67
Kyösti Mälkkidbc47392012-08-05 12:11:40 +030068/* To distribute topmem MSRs to APs. */
69void setup_bsp_ramtop(void);
70uint64_t bsp_topmem(void);
71uint64_t bsp_topmem2(void);
Stefan Reinauer35b6bbb2010-03-28 21:26:54 +000072#endif
Eric Biedermanc84c1902004-10-14 20:13:01 +000073
74#endif /* CPU_AMD_MTRR_H */