summaryrefslogtreecommitdiff
path: root/src/cpu/amd/car/disable_cache_as_ram.c
blob: 56e60eefb709df3ea4ca52af36cfb2e7c36a2ae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* by yhlu 6.2005 */
/* be warned, this file will be used other cores and core 0 / node 0 */
static inline __attribute__((always_inline)) void disable_cache_as_ram(void)
{
        __asm__ volatile (

        /* We don't need cache as ram for now on */
        /* disable cache */
        "movl    %cr0, %eax\n\t"
        "orl    $(0x1<<30),%eax\n\t"
        "movl    %eax, %cr0\n\t"

        /* clear sth */
        "movl    $0x269, %ecx\n\t"  /* fix4k_c8000*/
        "xorl    %edx, %edx\n\t"
        "xorl    %eax, %eax\n\t"
	"wrmsr\n\t"
#if DCACHE_RAM_SIZE > 0x8000
	"movl    $0x268, %ecx\n\t"  /* fix4k_c0000*/
        "wrmsr\n\t"
#endif

        /* disable fixed mtrr from now on, it will be enabled by linuxbios_ram again*/
        "movl    $0xC0010010, %ecx\n\t"
//        "movl    $SYSCFG_MSR, %ecx\n\t"
        "rdmsr\n\t"
        "andl    $(~(3<<18)), %eax\n\t"
//        "andl    $(~(SYSCFG_MSR_MtrrFixDramModEn | SYSCFG_MSR_MtrrFixDramEn)), %eax\n\t"
        "wrmsr\n\t"

        /* Set the default memory type and disable fixed and enable variable MTRRs */
        "movl    $0x2ff, %ecx\n\t"
//        "movl    $MTRRdefType_MSR, %ecx\n\t"
        "xorl    %edx, %edx\n\t"
        /* Enable Variable and Disable Fixed MTRRs */
        "movl    $0x00000800, %eax\n\t"
        "wrmsr\n\t"

        /* enable cache */
        "movl    %cr0, %eax\n\t"
        "andl    $0x9fffffff,%eax\n\t"
        "movl    %eax, %cr0\n\t"

        );
}
/* be warned, this file will be used core 0 / node 0 and ram stack is ready*/

static void disable_cache_as_ram_bsp(void)
{
        __asm__ volatile (

        "pushl	%ecx\n\t"
        "pushl 	%edx\n\t"
        "pushl 	%eax\n\t"

	);

	disable_cache_as_ram();

	__asm__ volatile (

        "popl   %eax\n\t"
        "popl   %edx\n\t"
        "popl   %ecx\n\t"

        );
}