blob: 95cabf124705ef5349f83eb6edfb5db401e0e275 [file] [log] [blame]
Eric Biedermanc84c1902004-10-14 20:13:01 +00001#ifndef CPU_X86_MTRR_H
2#define CPU_X86_MTRR_H
3
Eric Biedermanc84c1902004-10-14 20:13:01 +00004/* These are the region types */
5#define MTRR_TYPE_UNCACHEABLE 0
6#define MTRR_TYPE_WRCOMB 1
7/*#define MTRR_TYPE_ 2*/
8/*#define MTRR_TYPE_ 3*/
9#define MTRR_TYPE_WRTHROUGH 4
10#define MTRR_TYPE_WRPROT 5
11#define MTRR_TYPE_WRBACK 6
12#define MTRR_NUM_TYPES 7
13
14#define MTRRcap_MSR 0x0fe
15#define MTRRdefType_MSR 0x2ff
16
Uwe Hermann66d16872010-10-01 07:27:51 +000017#define MTRRdefTypeEn (1 << 11)
18#define MTRRdefTypeFixEn (1 << 10)
19
Duncan Laurie7b678922012-01-09 22:05:18 -080020#define SMRRphysBase_MSR 0x1f2
21#define SMRRphysMask_MSR 0x1f3
22
Eric Biedermanc84c1902004-10-14 20:13:01 +000023#define MTRRphysBase_MSR(reg) (0x200 + 2 * (reg))
24#define MTRRphysMask_MSR(reg) (0x200 + 2 * (reg) + 1)
25
Kevin O'Connor5bb9fd62011-01-19 06:32:35 +000026#define MTRRphysMaskValid (1 << 11)
27
Eric Biedermanc84c1902004-10-14 20:13:01 +000028#define NUM_FIXED_RANGES 88
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050029#define RANGES_PER_FIXED_MTRR 8
Eric Biedermanc84c1902004-10-14 20:13:01 +000030#define MTRRfix64K_00000_MSR 0x250
31#define MTRRfix16K_80000_MSR 0x258
32#define MTRRfix16K_A0000_MSR 0x259
33#define MTRRfix4K_C0000_MSR 0x268
34#define MTRRfix4K_C8000_MSR 0x269
35#define MTRRfix4K_D0000_MSR 0x26a
36#define MTRRfix4K_D8000_MSR 0x26b
37#define MTRRfix4K_E0000_MSR 0x26c
38#define MTRRfix4K_E8000_MSR 0x26d
39#define MTRRfix4K_F0000_MSR 0x26e
40#define MTRRfix4K_F8000_MSR 0x26f
41
Stefan Reinauer61aee5f2011-04-10 04:15:23 +000042#if !defined (__ASSEMBLER__) && !defined(__PRE_RAM__)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050043
44/*
45 * The MTRR code has some side effects that the callers should be aware for.
46 * 1. The call sequence matters. x86_setup_mtrrs() calls
47 * x86_setup_fixed_mtrrs_no_enable() then enable_fixed_mtrrs() (equivalent
48 * of x86_setup_fixed_mtrrs()) then x86_setup_var_mtrrs(). If the callers
49 * want to call the components of x86_setup_mtrrs() because of other
Martin Roth0cb07e32013-07-09 21:46:01 -060050 * requirements the ordering should still preserved.
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050051 * 2. enable_fixed_mtrr() will enable both variable and fixed MTRRs because
52 * of the nature of the global MTRR enable flag. Therefore, all direct
53 * or indirect callers of enable_fixed_mtrr() should ensure that the
54 * variable MTRR MSRs do not contain bad ranges.
Ronald G. Minnich69efaa02013-02-26 10:07:40 -080055 */
Sven Schnelleadfbcb792012-01-10 12:01:43 +010056void x86_setup_mtrrs(void);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050057/*
58 * x86_setup_var_mtrrs() parameters:
59 * address_bits - number of physical address bits supported by cpu
60 * above4gb - 2 means dynamically detect number of variable MTRRs available.
61 * non-zero means handle memory ranges above 4GiB.
62 * 0 means ignore memory ranges above 4GiB
63 */
64void x86_setup_var_mtrrs(unsigned int address_bits, unsigned int above4gb);
65void enable_fixed_mtrr(void);
Maciej Pijankaea921852009-10-27 14:29:29 +000066void x86_setup_fixed_mtrrs(void);
Aaron Durbin57686f82013-03-20 15:50:59 -050067/* Set up fixed MTRRs but do not enable them. */
68void x86_setup_fixed_mtrrs_no_enable(void);
Kyösti Mälkki38a8fb02014-06-30 13:48:18 +030069void x86_mtrr_check(void);
Stefan Reinauer35b6bbb2010-03-28 21:26:54 +000070#endif
Eric Biedermanc84c1902004-10-14 20:13:01 +000071
Kyösti Mälkki88a67f02013-12-12 12:27:53 +020072#if !defined(__ASSEMBLER__) && defined(__PRE_RAM__) && !defined(__ROMCC__)
73void set_var_mtrr(unsigned reg, unsigned base, unsigned size, unsigned type);
74#endif
75
Kyösti Mälkki107f72e2014-01-06 11:06:26 +020076/* Align up to next power of 2, suitable for ROMCC and assembler too.
77 * Range of result 256kB to 128MB is good enough here.
78 */
79#define _POW2_MASK(x) ((x>>1)|(x>>2)|(x>>3)|(x>>4)|(x>>5)| \
80 (x>>6)|(x>>7)|(x>>8)|((1<<18)-1))
81#define _ALIGN_UP_POW2(x) ((x + _POW2_MASK(x)) & ~_POW2_MASK(x))
82
Stefan Reinauer8f2c6162010-04-06 21:50:21 +000083#if !defined(CONFIG_RAMTOP)
84# error "CONFIG_RAMTOP not defined"
85#endif
86
Patrick Georgi784544b2011-10-31 17:07:52 +010087#if ((CONFIG_XIP_ROM_SIZE & (CONFIG_XIP_ROM_SIZE -1)) != 0)
Stefan Reinauer8f2c6162010-04-06 21:50:21 +000088# error "CONFIG_XIP_ROM_SIZE is not a power of 2"
89#endif
Stefan Reinauer8f2c6162010-04-06 21:50:21 +000090
Kyösti Mälkki107f72e2014-01-06 11:06:26 +020091/* Select CACHE_ROM_SIZE to use with MTRR setup. For most cases this
92 * resolves to a suitable CONFIG_ROM_SIZE but some odd cases need to
93 * use CONFIG_CACHE_ROM_SIZE_OVERRIDE in the mainboard Kconfig.
94 */
95#if (CONFIG_CACHE_ROM_SIZE_OVERRIDE != 0)
96# define CACHE_ROM_SIZE CONFIG_CACHE_ROM_SIZE_OVERRIDE
97#else
98# if ((CONFIG_ROM_SIZE & (CONFIG_ROM_SIZE-1)) == 0)
99# define CACHE_ROM_SIZE CONFIG_ROM_SIZE
100# else
101# define CACHE_ROM_SIZE _ALIGN_UP_POW2(CONFIG_ROM_SIZE)
102# if (CACHE_ROM_SIZE < CONFIG_ROM_SIZE) || (CACHE_ROM_SIZE >= (2 * CONFIG_ROM_SIZE))
103# error "CACHE_ROM_SIZE is not optimal."
104# endif
105# endif
Kyösti Mälkki5458b9d2012-06-30 11:41:08 +0300106#endif
107
Kyösti Mälkki107f72e2014-01-06 11:06:26 +0200108#if ((CACHE_ROM_SIZE & (CACHE_ROM_SIZE-1)) != 0)
109# error "CACHE_ROM_SIZE is not a power of 2."
110#endif
111
112#define CACHE_ROM_BASE (((1<<20) - (CACHE_ROM_SIZE>>12))<<12)
113
Stefan Reinauer1d888a92011-04-21 20:24:43 +0000114#if (CONFIG_RAMTOP & (CONFIG_RAMTOP - 1)) != 0
Stefan Reinauer8f2c6162010-04-06 21:50:21 +0000115# error "CONFIG_RAMTOP must be a power of 2"
116#endif
117
Eric Biedermanc84c1902004-10-14 20:13:01 +0000118#endif /* CPU_X86_MTRR_H */