Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 1 | /* |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 2 | * This file is part of the coreboot project. |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 3 | * |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000,2007 Ronald G. Minnich <rminnich@gmail.com> |
| 5 | * Copyright (C) 2005 Eswar Nallusamy, LANL |
| 6 | * Copyright (C) 2005 Tyan |
| 7 | * (Written by Yinghai Lu <yhlu@tyan.com> for Tyan) |
| 8 | * Copyright (C) 2007 coresystems GmbH |
| 9 | * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH) |
| 10 | * Copyright (C) 2007,2008 Carl-Daniel Hailfinger |
| 11 | * Copyright (C) 2008 VIA Technologies, Inc. |
| 12 | * (Written by Jason Zhao <jasonzhao@viatech.com.cn> for VIA) |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 13 | * |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License as published by |
| 16 | * the Free Software Foundation; version 2 of the License. |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 17 | * |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 18 | * This program is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | * GNU General Public License for more details. |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 22 | * |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 23 | * You should have received a copy of the GNU General Public License |
| 24 | * along with this program; if not, write to the Free Software |
| 25 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 26 | */ |
| 27 | |
Stefan Reinauer | e08c29e | 2010-04-25 21:43:29 +0000 | [diff] [blame] | 28 | #include <cpu/x86/stack.h> |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 29 | #include <cpu/x86/mtrr.h> |
Alexandru Gagniuc | 5005bb06 | 2011-04-11 20:17:22 +0000 | [diff] [blame] | 30 | #include <console/post_codes.h> |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 31 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 32 | #define CacheSize CONFIG_DCACHE_RAM_SIZE |
| 33 | #define CacheBase CONFIG_DCACHE_RAM_BASE |
| 34 | |
Stefan Reinauer | 7b0500c | 2011-01-19 06:54:42 +0000 | [diff] [blame] | 35 | /* Save the BIST result. */ |
| 36 | movl %eax, %ebp |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 37 | |
| 38 | CacheAsRam: |
| 39 | |
Stefan Reinauer | 7b0500c | 2011-01-19 06:54:42 +0000 | [diff] [blame] | 40 | /* Disable cache. */ |
| 41 | movl %cr0, %eax |
| 42 | orl $(1 << 30), %eax |
| 43 | movl %eax, %cr0 |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 44 | invd |
| 45 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 46 | /* Set the default memory type and enable fixed and variable MTRRs. */ |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 47 | movl $MTRRdefType_MSR, %ecx |
| 48 | xorl %edx, %edx |
Uwe Hermann | 66d1687 | 2010-10-01 07:27:51 +0000 | [diff] [blame] | 49 | movl $(MTRRdefTypeEn | MTRRdefTypeFixEn), %eax |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 50 | wrmsr |
| 51 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 52 | /* Clear all MTRRs. */ |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 53 | xorl %edx, %edx |
Warren Turkal | 4ffde94 | 2010-10-12 06:13:40 +0000 | [diff] [blame] | 54 | movl $all_mtrr_msrs, %esi |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 55 | |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 56 | clear_fixed_var_mtrr: |
| 57 | lodsl (%esi), %eax |
| 58 | testl %eax, %eax |
| 59 | jz clear_fixed_var_mtrr_out |
| 60 | |
| 61 | movl %eax, %ecx |
| 62 | xorl %eax, %eax |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 63 | wrmsr |
| 64 | |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 65 | jmp clear_fixed_var_mtrr |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 66 | |
Warren Turkal | 4ffde94 | 2010-10-12 06:13:40 +0000 | [diff] [blame] | 67 | all_mtrr_msrs: |
| 68 | /* fixed MTRR MSRs */ |
| 69 | .long MTRRfix64K_00000_MSR |
| 70 | .long MTRRfix16K_80000_MSR |
| 71 | .long MTRRfix16K_A0000_MSR |
| 72 | .long MTRRfix4K_C0000_MSR |
| 73 | .long MTRRfix4K_C8000_MSR |
| 74 | .long MTRRfix4K_D0000_MSR |
| 75 | .long MTRRfix4K_D8000_MSR |
| 76 | .long MTRRfix4K_E0000_MSR |
| 77 | .long MTRRfix4K_E8000_MSR |
| 78 | .long MTRRfix4K_F0000_MSR |
| 79 | .long MTRRfix4K_F8000_MSR |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 80 | |
Warren Turkal | 4ffde94 | 2010-10-12 06:13:40 +0000 | [diff] [blame] | 81 | /* var MTRR MSRs */ |
| 82 | .long MTRRphysBase_MSR(0) |
| 83 | .long MTRRphysMask_MSR(0) |
| 84 | .long MTRRphysBase_MSR(1) |
| 85 | .long MTRRphysMask_MSR(1) |
| 86 | .long MTRRphysBase_MSR(2) |
| 87 | .long MTRRphysMask_MSR(2) |
| 88 | .long MTRRphysBase_MSR(3) |
| 89 | .long MTRRphysMask_MSR(3) |
| 90 | .long MTRRphysBase_MSR(4) |
| 91 | .long MTRRphysMask_MSR(4) |
| 92 | .long MTRRphysBase_MSR(5) |
| 93 | .long MTRRphysMask_MSR(5) |
| 94 | .long MTRRphysBase_MSR(6) |
| 95 | .long MTRRphysMask_MSR(6) |
| 96 | .long MTRRphysBase_MSR(7) |
| 97 | .long MTRRphysMask_MSR(7) |
| 98 | |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 99 | .long 0x000 /* NULL, end of table */ |
| 100 | |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 101 | clear_fixed_var_mtrr_out: |
Uwe Hermann | 1d36d6d | 2010-09-30 21:22:40 +0000 | [diff] [blame] | 102 | movl $MTRRphysBase_MSR(0), %ecx |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 103 | xorl %edx, %edx |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 104 | movl $(CacheBase | MTRR_TYPE_WRBACK), %eax |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 105 | wrmsr |
| 106 | |
Uwe Hermann | 1d36d6d | 2010-09-30 21:22:40 +0000 | [diff] [blame] | 107 | movl $MTRRphysMask_MSR(0), %ecx |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 108 | /* This assumes we never access addresses above 2^36 in CAR. */ |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 109 | movl $0x0000000f, %edx |
Kevin O'Connor | 5bb9fd6 | 2011-01-19 06:32:35 +0000 | [diff] [blame] | 110 | movl $(~(CacheSize - 1) | MTRRphysMaskValid), %eax |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 111 | wrmsr |
| 112 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 113 | /* |
| 114 | * Enable write base caching so we can do execute in place (XIP) |
| 115 | * on the flash ROM. |
Uwe Hermann | 1d36d6d | 2010-09-30 21:22:40 +0000 | [diff] [blame] | 116 | */ |
| 117 | movl $MTRRphysBase_MSR(1), %ecx |
| 118 | xorl %edx, %edx |
Uwe Hermann | 36455aa | 2010-10-02 20:51:29 +0000 | [diff] [blame] | 119 | /* |
Patrick Georgi | 1da1046 | 2011-10-28 20:28:03 +0200 | [diff] [blame] | 120 | * IMPORTANT: The following calculation _must_ be done at runtime. See |
Uwe Hermann | 36455aa | 2010-10-02 20:51:29 +0000 | [diff] [blame] | 121 | * http://www.coreboot.org/pipermail/coreboot/2010-October/060855.html |
| 122 | */ |
Patrick Georgi | 1da1046 | 2011-10-28 20:28:03 +0200 | [diff] [blame] | 123 | movl copy_and_run, %eax |
| 124 | andl $(~(CONFIG_XIP_ROM_SIZE - 1)), %eax |
Stefan Reinauer | f11b81d | 2010-10-01 12:24:57 +0000 | [diff] [blame] | 125 | orl $MTRR_TYPE_WRBACK, %eax |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 126 | wrmsr |
| 127 | |
Uwe Hermann | 1d36d6d | 2010-09-30 21:22:40 +0000 | [diff] [blame] | 128 | movl $MTRRphysMask_MSR(1), %ecx |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 129 | movl $0x0000000f, %edx |
Kevin O'Connor | 5bb9fd6 | 2011-01-19 06:32:35 +0000 | [diff] [blame] | 130 | movl $(~(CONFIG_XIP_ROM_SIZE - 1) | MTRRphysMaskValid), %eax |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 131 | wrmsr |
| 132 | |
Uwe Hermann | 66d1687 | 2010-10-01 07:27:51 +0000 | [diff] [blame] | 133 | /* Set the default memory type and enable fixed and variable MTRRs. */ |
| 134 | /* TODO: Or also enable fixed MTRRs? Bug in the code? */ |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 135 | movl $MTRRdefType_MSR, %ecx |
| 136 | xorl %edx, %edx |
Uwe Hermann | 66d1687 | 2010-10-01 07:27:51 +0000 | [diff] [blame] | 137 | movl $(MTRRdefTypeEn), %eax |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 138 | wrmsr |
| 139 | |
Stefan Reinauer | 7b0500c | 2011-01-19 06:54:42 +0000 | [diff] [blame] | 140 | /* Enable cache. */ |
| 141 | movl %cr0, %eax |
| 142 | andl $(~((1 << 30) | (1 << 29))), %eax |
| 143 | movl %eax, %cr0 |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 144 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 145 | /* Read the range with lodsl. */ |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 146 | cld |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 147 | movl $CacheBase, %esi |
| 148 | movl %esi, %edi |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 149 | movl $(CacheSize >> 2), %ecx |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 150 | rep lodsl |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 151 | |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 152 | movl $CacheBase, %esi |
| 153 | movl %esi, %edi |
| 154 | movl $(CacheSize >> 2), %ecx |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 155 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 156 | /* |
| 157 | * 0x5c5c5c5c is a memory test pattern. |
| 158 | * TODO: Check if everything works with the zero pattern as well. |
| 159 | */ |
| 160 | /* xorl %eax, %eax */ |
| 161 | xorl $0x5c5c5c5c, %eax |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 162 | rep stosl |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 163 | |
Kevin O'Connor | 24f83a7 | 2010-09-08 10:53:44 +0000 | [diff] [blame] | 164 | #ifdef CARTEST |
Patrick Georgi | 1da1046 | 2011-10-28 20:28:03 +0200 | [diff] [blame] | 165 | /* |
| 166 | * IMPORTANT: The following calculation _must_ be done at runtime. See |
| 167 | * http://www.coreboot.org/pipermail/coreboot/2010-October/060855.html |
| 168 | */ |
| 169 | movl copy_and_run, %esi |
| 170 | andl $(~(CONFIG_XIP_ROM_SIZE - 1)), %ei |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 171 | movl %esi, %edi |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 172 | movl $(CONFIG_XIP_ROM_SIZE >> 2), %ecx |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 173 | rep lodsl |
Kevin O'Connor | 24f83a7 | 2010-09-08 10:53:44 +0000 | [diff] [blame] | 174 | #endif |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 175 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 176 | /* |
| 177 | * The key point of this CAR code is C7 cache does not turn into |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 178 | * "no fill" mode, which is not compatible with general CAR code. |
| 179 | */ |
| 180 | |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 181 | movl $(CacheBase + CacheSize - 4), %eax |
| 182 | movl %eax, %esp |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 183 | |
Myles Watson | 0bc6154 | 2009-10-17 13:25:07 +0000 | [diff] [blame] | 184 | #ifdef CARTEST |
Stefan Reinauer | aed9920 | 2010-06-07 08:29:36 +0000 | [diff] [blame] | 185 | testok: |
| 186 | post_code(0x40) |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 187 | xorl %edx, %edx |
| 188 | xorl %eax, %eax |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 189 | movl $0x5c5c, %edx |
| 190 | pushl %edx |
| 191 | pushl %edx |
| 192 | pushl %edx |
| 193 | pushl %edx |
| 194 | pushl %edx |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 195 | popl %esi |
| 196 | popl %esi |
| 197 | popl %eax |
| 198 | popl %eax |
| 199 | popl %eax |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 200 | cmpl %edx, %eax |
| 201 | jne stackerr |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 202 | #endif |
| 203 | |
Stefan Reinauer | 7b0500c | 2011-01-19 06:54:42 +0000 | [diff] [blame] | 204 | /* Restore the BIST result. */ |
| 205 | movl %ebp, %eax |
Myles Watson | 707fad0 | 2009-10-23 18:22:27 +0000 | [diff] [blame] | 206 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 207 | /* We need to set EBP? No need. */ |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 208 | movl %esp, %ebp |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 209 | pushl %eax /* BIST */ |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 210 | call main |
Carl-Daniel Hailfinger | 92f3eda | 2008-10-03 15:17:47 +0000 | [diff] [blame] | 211 | |
Stefan Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 212 | /* |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 213 | * TODO: Backup stack in CACHE_AS_RAM into MMX and SSE and after we |
| 214 | * get STACK up, we restore that. It is only needed if we |
| 215 | * want to go back. |
| 216 | */ |
Stefan Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 217 | |
Uwe Hermann | 66d1687 | 2010-10-01 07:27:51 +0000 | [diff] [blame] | 218 | /* We don't need CAR from now on. */ |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 219 | |
Stefan Reinauer | 7b0500c | 2011-01-19 06:54:42 +0000 | [diff] [blame] | 220 | /* Disable cache. */ |
| 221 | movl %cr0, %eax |
| 222 | orl $(1 << 30), %eax |
| 223 | movl %eax, %cr0 |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 224 | |
Uwe Hermann | 66d1687 | 2010-10-01 07:27:51 +0000 | [diff] [blame] | 225 | /* Set the default memory type and enable variable MTRRs. */ |
| 226 | /* TODO: Or also enable fixed MTRRs? Bug in the code? */ |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 227 | movl $MTRRdefType_MSR, %ecx |
| 228 | xorl %edx, %edx |
Uwe Hermann | 66d1687 | 2010-10-01 07:27:51 +0000 | [diff] [blame] | 229 | movl $(MTRRdefTypeEn), %eax |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 230 | wrmsr |
| 231 | |
Kevin O'Connor | 5bb9fd6 | 2011-01-19 06:32:35 +0000 | [diff] [blame] | 232 | /* Enable caching for CONFIG_RAMBASE..CONFIG_RAMTOP. */ |
Uwe Hermann | 1d36d6d | 2010-09-30 21:22:40 +0000 | [diff] [blame] | 233 | movl $MTRRphysBase_MSR(0), %ecx |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 234 | xorl %edx, %edx |
Kevin O'Connor | 5bb9fd6 | 2011-01-19 06:32:35 +0000 | [diff] [blame] | 235 | movl $(CONFIG_RAMBASE | MTRR_TYPE_WRBACK), %eax |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 236 | wrmsr |
Stefan Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 237 | |
Uwe Hermann | 1d36d6d | 2010-09-30 21:22:40 +0000 | [diff] [blame] | 238 | movl $MTRRphysMask_MSR(0), %ecx |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 239 | movl $0x0000000f, %edx /* AMD 40 bit 0xff */ |
Kevin O'Connor | 5bb9fd6 | 2011-01-19 06:32:35 +0000 | [diff] [blame] | 240 | movl $(~(CONFIG_RAMTOP - CONFIG_RAMBASE - 1) | MTRRphysMaskValid), %eax |
Stefan Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 241 | wrmsr |
| 242 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 243 | /* Cache XIP_ROM_BASE-SIZE to speedup coreboot code. */ |
Kevin O'Connor | 5bb9fd6 | 2011-01-19 06:32:35 +0000 | [diff] [blame] | 244 | movl $MTRRphysBase_MSR(1), %ecx |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 245 | xorl %edx, %edx |
Patrick Georgi | 1da1046 | 2011-10-28 20:28:03 +0200 | [diff] [blame] | 246 | /* |
| 247 | * IMPORTANT: The following calculation _must_ be done at runtime. See |
| 248 | * http://www.coreboot.org/pipermail/coreboot/2010-October/060855.html |
| 249 | */ |
| 250 | movl copy_and_run, %eax |
| 251 | andl $(~(CONFIG_XIP_ROM_SIZE - 1)), %eax |
Stefan Reinauer | f11b81d | 2010-10-01 12:24:57 +0000 | [diff] [blame] | 252 | orl $MTRR_TYPE_WRBACK, %eax |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 253 | wrmsr |
| 254 | |
Kevin O'Connor | 5bb9fd6 | 2011-01-19 06:32:35 +0000 | [diff] [blame] | 255 | movl $MTRRphysMask_MSR(1), %ecx |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 256 | xorl %edx, %edx |
Kevin O'Connor | 5bb9fd6 | 2011-01-19 06:32:35 +0000 | [diff] [blame] | 257 | movl $(~(CONFIG_XIP_ROM_SIZE - 1) | MTRRphysMaskValid), %eax |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 258 | wrmsr |
| 259 | |
Stefan Reinauer | 7b0500c | 2011-01-19 06:54:42 +0000 | [diff] [blame] | 260 | /* Enable cache. */ |
| 261 | movl %cr0, %eax |
| 262 | andl $(~((1 << 30) | (1 << 29))), %eax |
| 263 | movl %eax, %cr0 |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 264 | invd |
| 265 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 266 | /* Clear boot_complete flag. */ |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 267 | xorl %ebp, %ebp |
| 268 | __main: |
Alexandru Gagniuc | 5005bb06 | 2011-04-11 20:17:22 +0000 | [diff] [blame] | 269 | post_code(POST_PREPARE_RAMSTAGE) |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 270 | cld /* Clear direction flag. */ |
Stefan Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 271 | |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 272 | movl %ebp, %esi |
| 273 | |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 274 | movl $ROMSTAGE_STACK, %esp |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 275 | movl %esp, %ebp |
Uwe Hermann | 4292684 | 2010-09-30 23:15:36 +0000 | [diff] [blame] | 276 | pushl %esi |
| 277 | call copy_and_run |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 278 | |
Stefan Reinauer | 14e2277 | 2010-04-27 06:56:47 +0000 | [diff] [blame] | 279 | .Lhlt: |
Alexandru Gagniuc | 5005bb06 | 2011-04-11 20:17:22 +0000 | [diff] [blame] | 280 | post_code(POST_DEAD_CODE) |
Stefan Reinauer | 314e551 | 2010-04-09 20:36:29 +0000 | [diff] [blame] | 281 | hlt |
| 282 | jmp .Lhlt |
| 283 | |