- get rid of ASM_CONSOLE_LOGLEVEL except in two assembler files.
[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/mtrr.h>
25 #include <cpu/amd/mtrr.h>
26
27         /* Save the BIST result */
28         movl    %eax, %ebp
29
30 cache_as_ram:
31         post_code(0x20)
32
33         /* Send INIT IPI to all excluding ourself */
34         movl    $0x000C4500, %eax
35         movl    $0xFEE00300, %esi
36         movl    %eax, (%esi)
37
38         /* Zero out all Fixed Range and Variable Range MTRRs */
39         movl    $mtrr_table, %esi
40         movl    $( (mtrr_table_end - mtrr_table) / 2), %edi
41         xorl    %eax, %eax
42         xorl    %edx, %edx
43 clear_mtrrs:
44         movw    (%esi), %bx
45         movzx   %bx, %ecx
46         wrmsr
47         add     $2, %esi
48         dec     %edi
49         jnz     clear_mtrrs
50
51         /* Configure the default memory type to uncacheable */
52         movl    $MTRRdefType_MSR, %ecx
53         rdmsr
54         andl    $(~0x00000cff), %eax
55         wrmsr
56
57         /* Set cache as ram base address */
58         movl    $(MTRRphysBase_MSR(0)), %ecx
59         movl    $(CACHE_AS_RAM_BASE | MTRR_TYPE_WRBACK), %eax
60         xorl    %edx, %edx
61         wrmsr
62
63         /* Set cache as ram mask */
64         movl    $(MTRRphysMask_MSR(0)), %ecx
65         movl    $(~((CACHE_AS_RAM_SIZE-1)) | (1 << 11)), %eax
66         movl    $0x0000000f, %edx
67         wrmsr
68
69         /* Enable MTRR */
70         movl    $MTRRdefType_MSR, %ecx
71         rdmsr
72         orl     $(1 << 11), %eax
73         wrmsr
74
75         /* Enable L2 Cache */
76         movl    $0x11e, %ecx
77         rdmsr
78         orl     $(1 << 8), %eax
79         wrmsr
80
81         /* CR0.CD = 0, CR0.NW = 0 */
82         movl    %cr0, %eax
83         andl    $( ~( (1 << 30) | (1 << 29) ) ), %eax
84         invd
85         movl    %eax, %cr0
86
87         /* Clear the cache memory reagion */
88         movl    $CACHE_AS_RAM_BASE, %esi
89         movl    %esi, %edi
90         movl    $(CACHE_AS_RAM_SIZE / 4), %ecx
91         //movl  $0x23322332, %eax
92         xorl    %eax, %eax
93         rep     stosl
94
95         /* Enable Cache As RAM mode by disabling cache */
96         movl    %cr0, %eax
97         orl     $(1 << 30), %eax
98         movl    %eax, %cr0
99
100 #if defined(CONFIG_XIP_ROM_SIZE) && defined(CONFIG_XIP_ROM_BASE)
101         /* Enable cache for our code in Flash because we do XIP here */
102         movl    $MTRRphysBase_MSR(1), %ecx
103         xorl    %edx, %edx
104 #if defined(CONFIG_TINY_BOOTBLOCK) && CONFIG_TINY_BOOTBLOCK
105 #define REAL_XIP_ROM_BASE AUTO_XIP_ROM_BASE
106 #else
107 #define REAL_XIP_ROM_BASE CONFIG_XIP_ROM_BASE
108 #endif
109         movl    $REAL_XIP_ROM_BASE, %eax
110         orl     $MTRR_TYPE_WRBACK, %eax
111         wrmsr
112
113         movl    $MTRRphysMask_MSR(1), %ecx
114         movl    $0x0000000f, %edx
115         movl    $(~(CONFIG_XIP_ROM_SIZE - 1) | 0x800), %eax
116         wrmsr
117 #endif /* CONFIG_XIP_ROM_SIZE && CONFIG_XIP_ROM_BASE */
118
119         /* enable cache */
120         movl    %cr0, %eax
121         andl    $( ~( (1 << 30) | (1 << 29) ) ), %eax
122         movl    %eax, %cr0
123
124         /* Set up stack pointer */
125 #if defined(CONFIG_USBDEBUG_DIRECT) && (CONFIG_USBDEBUG_DIRECT == 1)
126         /* leave some space for the struct ehci_debug_info */
127         movl    $(CACHE_AS_RAM_BASE + CACHE_AS_RAM_SIZE - 4 - 128), %eax
128 #else
129         movl    $(CACHE_AS_RAM_BASE + CACHE_AS_RAM_SIZE - 4), %eax
130 #endif
131         movl    %eax, %esp
132
133         /* Restore the BIST result */
134         movl    %ebp, %eax
135         movl    %esp, %ebp
136         pushl   %eax
137
138         post_code(0x23)
139
140         call    stage1_main
141
142         post_code(0x2f)
143 error:
144         hlt
145         jmp     error
146
147 mtrr_table:
148         /* Fixed MTRRs */
149         .word 0x250, 0x258, 0x259
150         .word 0x268, 0x269, 0x26A
151         .word 0x26B, 0x26C, 0x26D
152         .word 0x26E, 0x26F
153         /* Variable MTRRs */
154         .word 0x200, 0x201, 0x202, 0x203
155         .word 0x204, 0x205, 0x206, 0x207
156         .word 0x208, 0x209, 0x20A, 0x20B
157         .word 0x20C, 0x20D, 0x20E, 0x20F
158 mtrr_table_end:
159