In 2007 Adrian Reber suggested that we drop ASSEMBLY in favor of __ASSEMBLER__.
[coreboot.git] / src / include / cpu / x86 / mtrr.h
1 #ifndef CPU_X86_MTRR_H
2 #define CPU_X86_MTRR_H
3
4
5 /*  These are the region types  */
6 #define MTRR_TYPE_UNCACHEABLE 0
7 #define MTRR_TYPE_WRCOMB     1
8 /*#define MTRR_TYPE_         2*/
9 /*#define MTRR_TYPE_         3*/
10 #define MTRR_TYPE_WRTHROUGH  4
11 #define MTRR_TYPE_WRPROT     5
12 #define MTRR_TYPE_WRBACK     6
13 #define MTRR_NUM_TYPES       7
14
15 #define MTRRcap_MSR     0x0fe
16 #define MTRRdefType_MSR 0x2ff
17
18 #define MTRRdefTypeEn           (1 << 11)
19 #define MTRRdefTypeFixEn        (1 << 10)
20
21 #define MTRRphysBase_MSR(reg) (0x200 + 2 * (reg))
22 #define MTRRphysMask_MSR(reg) (0x200 + 2 * (reg) + 1)
23
24 #define MTRRphysMaskValid       (1 << 11)
25
26 #define NUM_FIXED_RANGES 88
27 #define MTRRfix64K_00000_MSR 0x250
28 #define MTRRfix16K_80000_MSR 0x258
29 #define MTRRfix16K_A0000_MSR 0x259
30 #define MTRRfix4K_C0000_MSR 0x268
31 #define MTRRfix4K_C8000_MSR 0x269
32 #define MTRRfix4K_D0000_MSR 0x26a
33 #define MTRRfix4K_D8000_MSR 0x26b
34 #define MTRRfix4K_E0000_MSR 0x26c
35 #define MTRRfix4K_E8000_MSR 0x26d
36 #define MTRRfix4K_F0000_MSR 0x26e
37 #define MTRRfix4K_F8000_MSR 0x26f
38
39 #if !defined (__ASSEMBLER__) && !defined(__PRE_RAM__)
40 #include <device/device.h>
41 void enable_fixed_mtrr(void);
42 void x86_setup_var_mtrrs(unsigned int address_bits, unsigned int above4gb);
43 void x86_setup_mtrrs(unsigned address_bits);
44 int x86_mtrr_check(void);
45 void set_var_mtrr_resource(void *gp, struct device *dev, struct resource *res);
46 void x86_setup_fixed_mtrrs(void);
47 #endif
48
49 /* Validate CONFIG_XIP_ROM_SIZE and CONFIG_XIP_ROM_BASE */
50 #if defined(CONFIG_XIP_ROM_SIZE) && !defined(CONFIG_XIP_ROM_BASE)
51 # error "CONFIG_XIP_ROM_SIZE without CONFIG_XIP_ROM_BASE"
52 #endif
53 #if defined(CONFIG_XIP_ROM_BASE) && !defined(CONFIG_XIP_ROM_SIZE)
54 # error "CONFIG_XIP_ROM_BASE without CONFIG_XIP_ROM_SIZE"
55 #endif
56 #if !defined(CONFIG_RAMTOP)
57 # error "CONFIG_RAMTOP not defined"
58 #endif
59
60 #if defined(CONFIG_XIP_ROM_SIZE) && ((CONFIG_XIP_ROM_SIZE & (CONFIG_XIP_ROM_SIZE -1)) != 0)
61 # error "CONFIG_XIP_ROM_SIZE is not a power of 2"
62 #endif
63 #if defined(CONFIG_XIP_ROM_SIZE) && ((CONFIG_XIP_ROM_BASE % CONFIG_XIP_ROM_SIZE) != 0)
64 # error "CONFIG_XIP_ROM_BASE is not a multiple of CONFIG_XIP_ROM_SIZE"
65 #endif
66
67 #if (CONFIG_RAMTOP & (CONFIG_RAMTOP -1)) != 0
68 # error "CONFIG_RAMTOP must be a power of 2"
69 #endif
70
71
72 #if !defined (__ASSEMBLER__)
73 #if defined(CONFIG_XIP_ROM_SIZE)
74 # if defined(CONFIG_TINY_BOOTBLOCK) && CONFIG_TINY_BOOTBLOCK
75    extern unsigned long AUTO_XIP_ROM_BASE;
76 #  define REAL_XIP_ROM_BASE AUTO_XIP_ROM_BASE
77 # else
78 #  define REAL_XIP_ROM_BASE CONFIG_XIP_ROM_BASE
79 # endif
80 #endif
81
82 #endif
83
84 #endif /* CPU_X86_MTRR_H */