blob: 8fd426108165c0d17132661d7a9d602125711a01 [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 */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -07005#define MTRR_TYPE_UNCACHEABLE 0
6#define MTRR_TYPE_WRCOMB 1
7#define MTRR_TYPE_WRTHROUGH 4
8#define MTRR_TYPE_WRPROT 5
9#define MTRR_TYPE_WRBACK 6
10#define MTRR_NUM_TYPES 7
Eric Biedermanc84c1902004-10-14 20:13:01 +000011
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070012#define MTRR_CAP_MSR 0x0fe
Lee Leahybfdf2482015-06-18 10:55:19 -070013
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070014#define MTRR_CAP_SMRR (1 << 11)
15#define MTRR_CAP_WC (1 << 10)
16#define MTRR_CAP_FIX (1 << 8)
17#define MTRR_CAP_VCNT 0xff
Lee Leahybfdf2482015-06-18 10:55:19 -070018
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070019#define MTRR_DEF_TYPE_MSR 0x2ff
20#define MTRR_DEF_TYPE_MASK 0xff
21#define MTRR_DEF_TYPE_EN (1 << 11)
22#define MTRR_DEF_TYPE_FIX_EN (1 << 10)
Eric Biedermanc84c1902004-10-14 20:13:01 +000023
Uwe Hermann66d16872010-10-01 07:27:51 +000024
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070025#define SMRR_PHYS_BASE 0x1f2
26#define SMRR_PHYS_MASK 0x1f3
Duncan Laurie7b678922012-01-09 22:05:18 -080027
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070028#define MTRR_PHYS_BASE(reg) (0x200 + 2 * (reg))
29#define MTRR_PHYS_MASK(reg) (MTRR_PHYS_BASE(reg) + 1)
30#define MTRR_PHYS_MASK_VALID (1 << 11)
Eric Biedermanc84c1902004-10-14 20:13:01 +000031
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070032#define NUM_FIXED_RANGES 88
33#define RANGES_PER_FIXED_MTRR 8
34#define MTRR_FIX_64K_00000 0x250
35#define MTRR_FIX_16K_80000 0x258
36#define MTRR_FIX_16K_A0000 0x259
37#define MTRR_FIX_4K_C0000 0x268
38#define MTRR_FIX_4K_C8000 0x269
39#define MTRR_FIX_4K_D0000 0x26a
40#define MTRR_FIX_4K_D8000 0x26b
41#define MTRR_FIX_4K_E0000 0x26c
42#define MTRR_FIX_4K_E8000 0x26d
43#define MTRR_FIX_4K_F0000 0x26e
44#define MTRR_FIX_4K_F8000 0x26f
Eric Biedermanc84c1902004-10-14 20:13:01 +000045
Stefan Reinauer61aee5f2011-04-10 04:15:23 +000046#if !defined (__ASSEMBLER__) && !defined(__PRE_RAM__)
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050047
48/*
49 * The MTRR code has some side effects that the callers should be aware for.
50 * 1. The call sequence matters. x86_setup_mtrrs() calls
51 * x86_setup_fixed_mtrrs_no_enable() then enable_fixed_mtrrs() (equivalent
52 * of x86_setup_fixed_mtrrs()) then x86_setup_var_mtrrs(). If the callers
53 * want to call the components of x86_setup_mtrrs() because of other
Martin Roth0cb07e32013-07-09 21:46:01 -060054 * requirements the ordering should still preserved.
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050055 * 2. enable_fixed_mtrr() will enable both variable and fixed MTRRs because
56 * of the nature of the global MTRR enable flag. Therefore, all direct
57 * or indirect callers of enable_fixed_mtrr() should ensure that the
58 * variable MTRR MSRs do not contain bad ranges.
Ronald G. Minnich69efaa02013-02-26 10:07:40 -080059 */
Sven Schnelleadfbcb792012-01-10 12:01:43 +010060void x86_setup_mtrrs(void);
Aaron Durbinbb4e79a2013-03-26 14:09:47 -050061/*
62 * x86_setup_var_mtrrs() parameters:
63 * address_bits - number of physical address bits supported by cpu
64 * above4gb - 2 means dynamically detect number of variable MTRRs available.
65 * non-zero means handle memory ranges above 4GiB.
66 * 0 means ignore memory ranges above 4GiB
67 */
68void x86_setup_var_mtrrs(unsigned int address_bits, unsigned int above4gb);
69void enable_fixed_mtrr(void);
Maciej Pijankaea921852009-10-27 14:29:29 +000070void x86_setup_fixed_mtrrs(void);
Aaron Durbin57686f82013-03-20 15:50:59 -050071/* Set up fixed MTRRs but do not enable them. */
72void x86_setup_fixed_mtrrs_no_enable(void);
Kyösti Mälkki38a8fb02014-06-30 13:48:18 +030073void x86_mtrr_check(void);
Stefan Reinauer35b6bbb2010-03-28 21:26:54 +000074#endif
Eric Biedermanc84c1902004-10-14 20:13:01 +000075
Kyösti Mälkki88a67f02013-12-12 12:27:53 +020076#if !defined(__ASSEMBLER__) && defined(__PRE_RAM__) && !defined(__ROMCC__)
77void set_var_mtrr(unsigned reg, unsigned base, unsigned size, unsigned type);
78#endif
79
Kyösti Mälkki107f72e2014-01-06 11:06:26 +020080/* Align up to next power of 2, suitable for ROMCC and assembler too.
81 * Range of result 256kB to 128MB is good enough here.
82 */
83#define _POW2_MASK(x) ((x>>1)|(x>>2)|(x>>3)|(x>>4)|(x>>5)| \
84 (x>>6)|(x>>7)|(x>>8)|((1<<18)-1))
85#define _ALIGN_UP_POW2(x) ((x + _POW2_MASK(x)) & ~_POW2_MASK(x))
86
Martin Roth46cf9f72015-07-11 13:56:58 -060087#if !defined(CONFIG_RAMTOP) || !CONFIG_RAMTOP
88# error "CONFIG_RAMTOP not configured"
Stefan Reinauer8f2c6162010-04-06 21:50:21 +000089#endif
90
Patrick Georgi784544b2011-10-31 17:07:52 +010091#if ((CONFIG_XIP_ROM_SIZE & (CONFIG_XIP_ROM_SIZE -1)) != 0)
Stefan Reinauer8f2c6162010-04-06 21:50:21 +000092# error "CONFIG_XIP_ROM_SIZE is not a power of 2"
93#endif
Stefan Reinauer8f2c6162010-04-06 21:50:21 +000094
Kyösti Mälkki107f72e2014-01-06 11:06:26 +020095/* Select CACHE_ROM_SIZE to use with MTRR setup. For most cases this
96 * resolves to a suitable CONFIG_ROM_SIZE but some odd cases need to
97 * use CONFIG_CACHE_ROM_SIZE_OVERRIDE in the mainboard Kconfig.
98 */
99#if (CONFIG_CACHE_ROM_SIZE_OVERRIDE != 0)
100# define CACHE_ROM_SIZE CONFIG_CACHE_ROM_SIZE_OVERRIDE
101#else
102# if ((CONFIG_ROM_SIZE & (CONFIG_ROM_SIZE-1)) == 0)
103# define CACHE_ROM_SIZE CONFIG_ROM_SIZE
104# else
105# define CACHE_ROM_SIZE _ALIGN_UP_POW2(CONFIG_ROM_SIZE)
106# if (CACHE_ROM_SIZE < CONFIG_ROM_SIZE) || (CACHE_ROM_SIZE >= (2 * CONFIG_ROM_SIZE))
107# error "CACHE_ROM_SIZE is not optimal."
108# endif
109# endif
Kyösti Mälkki5458b9d2012-06-30 11:41:08 +0300110#endif
111
Kyösti Mälkki107f72e2014-01-06 11:06:26 +0200112#if ((CACHE_ROM_SIZE & (CACHE_ROM_SIZE-1)) != 0)
113# error "CACHE_ROM_SIZE is not a power of 2."
114#endif
115
116#define CACHE_ROM_BASE (((1<<20) - (CACHE_ROM_SIZE>>12))<<12)
117
Stefan Reinauer1d888a92011-04-21 20:24:43 +0000118#if (CONFIG_RAMTOP & (CONFIG_RAMTOP - 1)) != 0
Stefan Reinauer8f2c6162010-04-06 21:50:21 +0000119# error "CONFIG_RAMTOP must be a power of 2"
120#endif
121
Eric Biedermanc84c1902004-10-14 20:13:01 +0000122#endif /* CPU_X86_MTRR_H */