Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / cpu / intel / model_6ex / cache_as_ram.inc
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2000,2007 Ronald G. Minnich <rminnich@gmail.com>
5  * Copyright (C) 2007-2008 coresystems GmbH
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; version 2 of the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #define CACHE_AS_RAM_SIZE CONFIG_DCACHE_RAM_SIZE
22 #define CACHE_AS_RAM_BASE CONFIG_DCACHE_RAM_BASE
23
24 #include <cpu/x86/stack.h>
25 #include <cpu/x86/mtrr.h>
26 #include <cpu/amd/mtrr.h>
27
28         /* Save the BIST result */
29         movl    %eax, %ebp
30
31 cache_as_ram:
32         post_code(0x20)
33
34         /* Send INIT IPI to all excluding ourself */
35         movl    $0x000C4500, %eax
36         movl    $0xFEE00300, %esi
37         movl    %eax, (%esi)
38
39         /* Zero out all Fixed Range and Variable Range MTRRs */
40         movl    $mtrr_table, %esi
41         movl    $( (mtrr_table_end - mtrr_table) / 2), %edi
42         xorl    %eax, %eax
43         xorl    %edx, %edx
44 clear_mtrrs:
45         movw    (%esi), %bx
46         movzx   %bx, %ecx
47         wrmsr
48         add     $2, %esi
49         dec     %edi
50         jnz     clear_mtrrs
51
52         /* Configure the default memory type to uncacheable */
53         movl    $MTRRdefType_MSR, %ecx
54         rdmsr
55         andl    $(~0x00000cff), %eax
56         wrmsr
57
58         /* Set cache as ram base address */
59         movl    $(MTRRphysBase_MSR(0)), %ecx
60         movl    $(CACHE_AS_RAM_BASE | MTRR_TYPE_WRBACK), %eax
61         xorl    %edx, %edx
62         wrmsr
63
64         /* Set cache as ram mask */
65         movl    $(MTRRphysMask_MSR(0)), %ecx
66         movl    $(~((CACHE_AS_RAM_SIZE-1)) | (1 << 11)), %eax
67         movl    $0x0000000f, %edx
68         wrmsr
69
70         /* Enable MTRR */
71         movl    $MTRRdefType_MSR, %ecx
72         rdmsr
73         orl     $(1 << 11), %eax
74         wrmsr
75
76         /* Enable L2 Cache */
77         movl    $0x11e, %ecx
78         rdmsr
79         orl     $(1 << 8), %eax
80         wrmsr
81
82         /* CR0.CD = 0, CR0.NW = 0 */
83         movl    %cr0, %eax
84         andl    $( ~( (1 << 30) | (1 << 29) ) ), %eax
85         invd
86         movl    %eax, %cr0
87
88         /* Clear the cache memory reagion */
89         movl    $CACHE_AS_RAM_BASE, %esi
90         movl    %esi, %edi
91         movl    $(CACHE_AS_RAM_SIZE / 4), %ecx
92         //movl  $0x23322332, %eax
93         xorl    %eax, %eax
94         rep     stosl
95
96         /* Enable Cache As RAM mode by disabling cache */
97         movl    %cr0, %eax
98         orl     $(1 << 30), %eax
99         movl    %eax, %cr0
100
101 #if defined(CONFIG_XIP_ROM_SIZE) && defined(CONFIG_XIP_ROM_BASE)
102         /* Enable cache for our code in Flash because we do XIP here */
103         movl    $MTRRphysBase_MSR(1), %ecx
104         xorl    %edx, %edx
105 #if defined(CONFIG_TINY_BOOTBLOCK) && CONFIG_TINY_BOOTBLOCK
106 #define REAL_XIP_ROM_BASE AUTO_XIP_ROM_BASE
107 #else
108 #define REAL_XIP_ROM_BASE CONFIG_XIP_ROM_BASE
109 #endif
110         movl    $REAL_XIP_ROM_BASE, %eax
111         orl     $MTRR_TYPE_WRBACK, %eax
112         wrmsr
113
114         movl    $MTRRphysMask_MSR(1), %ecx
115         movl    $0x0000000f, %edx
116         movl    $(~(CONFIG_XIP_ROM_SIZE - 1) | 0x800), %eax
117         wrmsr
118 #endif /* CONFIG_XIP_ROM_SIZE && CONFIG_XIP_ROM_BASE */
119
120         /* enable cache */
121         movl    %cr0, %eax
122         andl    $( ~( (1 << 30) | (1 << 29) ) ), %eax
123         movl    %eax, %cr0
124
125         /* Set up stack pointer */
126 #if defined(CONFIG_USBDEBUG_DIRECT) && (CONFIG_USBDEBUG_DIRECT == 1)
127         /* leave some space for the struct ehci_debug_info */
128         movl    $(CACHE_AS_RAM_BASE + CACHE_AS_RAM_SIZE - 4 - 128), %eax
129 #else
130         movl    $(CACHE_AS_RAM_BASE + CACHE_AS_RAM_SIZE - 4), %eax
131 #endif
132         movl    %eax, %esp
133
134         /* Restore the BIST result */
135         movl    %ebp, %eax
136         movl    %esp, %ebp
137         pushl   %eax
138
139         post_code(0x23)
140
141         /* Call romstage.c main function */
142         call    main
143
144         post_code(0x2f)
145
146         post_code(0x30)
147
148         /* Disable Cache */
149         movl    %cr0, %eax
150         orl    $(1 << 30), %eax
151         movl    %eax, %cr0
152
153         post_code(0x31)
154
155         /* Disable MTRR */
156         movl    $MTRRdefType_MSR, %ecx
157         rdmsr
158         andl    $(~(1 << 11)), %eax
159         wrmsr
160
161         post_code(0x31)
162
163         invd
164 #if 0
165         xorl    %eax, %eax
166         xorl    %edx, %edx
167         movl    $MTRRphysBase_MSR(0), %ecx
168         wrmsr
169         movl    $MTRRphysMask_MSR(0), %ecx
170         wrmsr
171         movl    $MTRRphysBase_MSR(1), %ecx
172         wrmsr
173         movl    $MTRRphysMask_MSR(1), %ecx
174         wrmsr
175 #endif
176
177         post_code(0x33)
178
179 #undef CLEAR_FIRST_1M_RAM
180 #ifdef CLEAR_FIRST_1M_RAM
181         post_code(0x34)
182         /* Enable Write Combining and Speculative Reads for the first 1MB */
183         movl    $MTRRphysBase_MSR(0), %ecx
184         movl    $(0x00000000 | MTRR_TYPE_WRCOMB), %eax
185         xorl    %edx, %edx
186         wrmsr
187         movl    $MTRRphysMask_MSR(0), %ecx
188         movl    $(~(1024*1024 -1) | (1 << 11)), %eax
189         movl    $0x0000000f, %edx       // 36bit address space
190         wrmsr
191         post_code(0x35)
192 #endif
193
194         /* Enable Cache */
195         movl    %cr0, %eax
196         andl    $~( (1 << 30) | (1 << 29) ), %eax
197         movl    %eax, %cr0
198
199
200         post_code(0x36)
201 #ifdef CLEAR_FIRST_1M_RAM
202
203         /* Clear first 1MB of RAM */
204         movl    $0x00000000, %edi
205         cld
206         xorl    %eax, %eax
207         movl    $((1024*1024) / 4), %ecx
208         rep stosl
209
210         post_code(0x37)
211 #endif
212
213         /* Disable Cache */
214         movl    %cr0, %eax
215         orl    $(1 << 30), %eax
216         movl    %eax, %cr0
217
218         post_code(0x38)
219
220         /* Enable Write Back and Speculative Reads for the first 1MB */
221         movl    $MTRRphysBase_MSR(0), %ecx
222         movl    $(0x00000000 | MTRR_TYPE_WRBACK), %eax
223         xorl    %edx, %edx
224         wrmsr
225         movl    $MTRRphysMask_MSR(0), %ecx
226         movl    $(~(1024*1024 -1) | (1 << 11)), %eax
227         movl    $0x0000000f, %edx       // 36bit address space
228         wrmsr
229
230         post_code(0x39)
231
232         /* And Enable Cache again after setting MTRRs */
233         movl    %cr0, %eax
234         andl    $~( (1 << 30) | (1 << 29) ), %eax
235         movl    %eax, %cr0
236
237         post_code(0x3a)
238
239         /* Enable MTRR */
240         movl    $MTRRdefType_MSR, %ecx
241         rdmsr
242         orl     $(1 << 11), %eax
243         wrmsr
244
245         post_code(0x3b)
246
247         /* Invalidate the cache again */
248         invd
249
250         post_code(0x3c)
251
252         /* clear boot_complete flag */
253         xorl    %ebp, %ebp
254 __main:
255         post_code(0x11)
256         cld                     /* clear direction flag */
257
258         movl    %ebp, %esi
259
260         movl $ROMSTAGE_STACK, %esp
261         movl    %esp, %ebp
262         pushl %esi
263         call copy_and_run
264
265 .Lhlt:
266         post_code(0xee)
267         hlt
268         jmp     .Lhlt
269
270 mtrr_table:
271         /* Fixed MTRRs */
272         .word 0x250, 0x258, 0x259
273         .word 0x268, 0x269, 0x26A
274         .word 0x26B, 0x26C, 0x26D
275         .word 0x26E, 0x26F
276         /* Variable MTRRs */
277         .word 0x200, 0x201, 0x202, 0x203
278         .word 0x204, 0x205, 0x206, 0x207
279         .word 0x208, 0x209, 0x20A, 0x20B
280         .word 0x20C, 0x20D, 0x20E, 0x20F
281 mtrr_table_end:
282