c5e01b137dd9a7ce8674e5ddba07189b8a627870
[coreboot.git] / src / cpu / amd / mtrr / amd_mtrr.c
1 #include <console/console.h>
2 #include <device/device.h>
3 #include <arch/cpu.h>
4 #include <cpu/x86/mtrr.h>
5 #include <cpu/amd/mtrr.h>
6 #include <cpu/x86/cache.h>
7 #include <cpu/x86/msr.h>
8
9 #if CONFIG_GFXUMA == 1
10 extern uint64_t uma_memory_size;
11 #endif
12
13 static unsigned long resk(uint64_t value)
14 {
15         unsigned long resultk;
16         if (value < (1ULL << 42)) {
17                 resultk = value >> 10;
18         }
19         else {
20                 resultk = 0xffffffff;
21         }
22         return resultk;
23 }
24
25 static unsigned fixed_mtrr_index(unsigned long addrk)
26 {
27         unsigned index;
28         index = (addrk - 0) >> 6;
29         if (index >= 8) {
30                 index = ((addrk - 8*64) >> 4) + 8;
31         }
32         if (index >= 24) {
33                 index = ((addrk - (8*64 + 16*16)) >> 2) + 24;
34         }
35         if (index > NUM_FIXED_RANGES) {
36                 index = NUM_FIXED_RANGES;
37         }
38         return index;
39 }
40
41 static unsigned int mtrr_msr[] = {
42         MTRRfix64K_00000_MSR, MTRRfix16K_80000_MSR, MTRRfix16K_A0000_MSR,
43         MTRRfix4K_C0000_MSR, MTRRfix4K_C8000_MSR, MTRRfix4K_D0000_MSR, MTRRfix4K_D8000_MSR,
44         MTRRfix4K_E0000_MSR, MTRRfix4K_E8000_MSR, MTRRfix4K_F0000_MSR, MTRRfix4K_F8000_MSR,
45 };
46
47 static void set_fixed_mtrrs(unsigned int first, unsigned int last, unsigned char type)
48 {
49         unsigned int i;
50         unsigned int fixed_msr = NUM_FIXED_RANGES >> 3;
51         msr_t msr;
52         msr.lo = msr.hi = 0; /* Shut up gcc */
53         for (i = first; i < last; i++) {
54                 /* When I switch to a new msr read it in */
55                 if (fixed_msr != i >> 3) {
56                         /* But first write out the old msr */
57                         if (fixed_msr < (NUM_FIXED_RANGES >> 3)) {
58                                 disable_cache();
59                                 wrmsr(mtrr_msr[fixed_msr], msr);
60                                 enable_cache();
61                         }
62                         fixed_msr = i>>3;
63                         msr = rdmsr(mtrr_msr[fixed_msr]);
64                 }
65                 if ((i & 7) < 4) {
66                         msr.lo &= ~(0xff << ((i&3)*8));
67                         msr.lo |= type << ((i&3)*8);
68                 } else {
69                         msr.hi &= ~(0xff << ((i&3)*8));
70                         msr.hi |= type << ((i&3)*8);
71                 }
72         }
73         /* Write out the final msr */
74         if (fixed_msr < (NUM_FIXED_RANGES >> 3)) {
75                 disable_cache();
76                 wrmsr(mtrr_msr[fixed_msr], msr);
77                 enable_cache();
78         }
79 }
80
81 struct mem_state {
82         unsigned long mmio_basek, tomk;
83 };
84 static void set_fixed_mtrr_resource(void *gp, struct device *dev, struct resource *res)
85 {
86         struct mem_state *state = gp;
87         unsigned long topk;
88         unsigned int start_mtrr;
89         unsigned int last_mtrr;
90
91         topk = resk(res->base + res->size);
92         if (state->tomk < topk) {
93                 state->tomk = topk;
94         }
95         if ((topk < 4*1024*1024) && (state->mmio_basek < topk)) {
96                 state->mmio_basek = topk;
97         }
98         start_mtrr = fixed_mtrr_index(resk(res->base));
99         last_mtrr  = fixed_mtrr_index(resk((res->base + res->size)));
100         if (start_mtrr >= NUM_FIXED_RANGES) {
101                 return;
102         }
103         printk(BIOS_DEBUG, "Setting fixed MTRRs(%d-%d) Type: WB, RdMEM, WrMEM\n",
104                 start_mtrr, last_mtrr);
105         set_fixed_mtrrs(start_mtrr, last_mtrr, MTRR_TYPE_WRBACK | MTRR_READ_MEM | MTRR_WRITE_MEM);
106
107 }
108
109 void amd_setup_mtrrs(void)
110 {
111         unsigned long address_bits;
112         struct mem_state state;
113         unsigned long i;
114         msr_t msr, sys_cfg;
115         // Test if this CPU is a Fam 0Fh rev. F or later
116         const int cpu_id = cpuid_eax(0x80000001);
117         const int has_tom2wb =
118                  (((cpu_id>>8 )&0xf)  > 0xf) || // Family > 0F
119                 ((((cpu_id>>8 )&0xf) == 0xf) && // Family == 0F
120                  (((cpu_id>>16)&0xf) >= 0x4));  // Rev>=F deduced from rev tables
121         if(has_tom2wb)
122                 printk(BIOS_DEBUG, "CPU is Fam 0Fh rev.F or later, using TOM2WB instead of MTRR above 4GB\n");
123
124         /* Enable the access to AMD RdDram and WrDram extension bits */
125         disable_cache();
126         sys_cfg = rdmsr(SYSCFG_MSR);
127         sys_cfg.lo |= SYSCFG_MSR_MtrrFixDramModEn;
128         wrmsr(SYSCFG_MSR, sys_cfg);
129         enable_cache();
130
131         printk(BIOS_DEBUG, "\n");
132         /* Initialized the fixed_mtrrs to uncached */
133         printk(BIOS_DEBUG, "Setting fixed MTRRs(%d-%d) type: UC\n",
134                 0, NUM_FIXED_RANGES);
135         set_fixed_mtrrs(0, NUM_FIXED_RANGES, MTRR_TYPE_UNCACHEABLE);
136
137         /* Except for the PCI MMIO hole just before 4GB there are no
138          * significant holes in the address space, so just account
139          * for those two and move on.
140          */
141         state.mmio_basek = state.tomk = 0;
142         search_global_resources(
143                 IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
144                 set_fixed_mtrr_resource, &state);
145         printk(BIOS_DEBUG, "DONE fixed MTRRs\n");
146
147         if (state.mmio_basek > state.tomk) {
148                 state.mmio_basek = state.tomk;
149         }
150         /* Round state.mmio_basek down to the nearst size that will fit in TOP_MEM */
151         state.mmio_basek = state.mmio_basek & ~TOP_MEM_MASK_KB;
152         /* Round state.tomk up to the next greater size that will fit in TOP_MEM */
153         state.tomk = (state.tomk + TOP_MEM_MASK_KB) & ~TOP_MEM_MASK_KB;
154
155         disable_cache();
156
157         /* Setup TOP_MEM */
158         msr.hi = state.mmio_basek >> 22;
159         msr.lo = state.mmio_basek << 10;
160
161         /* If UMA graphics is enabled, the frame buffer memory
162          * has been deducted from the size of memory below 4GB.
163          * When setting TOM, include UMA DRAM
164          */
165         #if CONFIG_GFXUMA == 1
166         msr.lo += uma_memory_size;
167         #endif
168         wrmsr(TOP_MEM, msr);
169
170         sys_cfg.lo &= ~(SYSCFG_MSR_TOM2En | SYSCFG_MSR_TOM2WB);
171         if(state.tomk > (4*1024*1024)) {
172                 /* DRAM above 4GB: set TOM2, SYSCFG_MSR_TOM2En
173                  * and SYSCFG_MSR_TOM2WB
174                  */
175                 msr.hi = state.tomk >> 22;
176                 msr.lo = state.tomk << 10;
177                 wrmsr(TOP_MEM2, msr);
178                 sys_cfg.lo |= SYSCFG_MSR_TOM2En;
179                 if(has_tom2wb)
180                         sys_cfg.lo |= SYSCFG_MSR_TOM2WB;
181         }
182
183         /* zero the IORR's before we enable to prevent
184          * undefined side effects.
185          */
186         msr.lo = msr.hi = 0;
187         for(i = IORR_FIRST; i <= IORR_LAST; i++) {
188                 wrmsr(i, msr);
189         }
190
191         /* Enable Variable Mtrrs
192          * Enable the RdMem and WrMem bits in the fixed mtrrs.
193          * Disable access to the RdMem and WrMem in the fixed mtrr.
194          */
195         sys_cfg.lo |= SYSCFG_MSR_MtrrVarDramEn | SYSCFG_MSR_MtrrFixDramEn;
196         sys_cfg.lo &= ~SYSCFG_MSR_MtrrFixDramModEn;
197         wrmsr(SYSCFG_MSR, sys_cfg);
198
199         enable_fixed_mtrr();
200
201         enable_cache();
202
203         address_bits = CONFIG_CPU_ADDR_BITS; //K8 could be 40, and GH could be 48
204
205         /* AMD specific cpuid function to query number of address bits */
206         if (cpuid_eax(0x80000000) >= 0x80000008) {
207                 address_bits = cpuid_eax(0x80000008) & 0xff;
208         }
209
210         /* Now that I have mapped what is memory and what is not
211          * Setup the mtrrs so we can cache the memory.
212          */
213
214         // Rev. F K8 supports has SYSCFG_MSR_TOM2WB and dont need
215         // variable MTRR to span memory above 4GB
216         // Lower revisions K8 need variable MTRR over 4GB
217         x86_setup_var_mtrrs(address_bits, has_tom2wb ? 0 : 1);
218 }