Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / include / cpu / x86 / cache.h
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2004 Eric W. Biederman
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19
20 #ifndef CPU_X86_CACHE
21 #define CPU_X86_CACHE
22
23 static inline unsigned long read_cr0(void)
24 {
25         unsigned long cr0;
26         asm volatile ("movl %%cr0, %0" : "=r" (cr0));
27         return cr0;
28 }
29
30 static inline void write_cr0(unsigned long cr0)
31 {
32         asm volatile ("movl %0, %%cr0" : : "r" (cr0));
33 }
34
35 static inline void invd(void)
36 {
37         asm volatile("invd" ::: "memory");
38 }
39
40 static inline void wbinvd(void)
41 {
42         asm volatile ("wbinvd");
43 }
44
45 static inline void enable_cache(void)
46 {
47         unsigned long cr0;
48         cr0 = read_cr0();
49         cr0 &= 0x9fffffff;
50         write_cr0(cr0);
51 }
52
53 static inline void disable_cache(void)
54 {
55         /* Disable and write back the cache */
56         unsigned long cr0;
57         cr0 = read_cr0();
58         cr0 |= 0x40000000;
59         wbinvd();
60         write_cr0(cr0);
61         wbinvd();
62 }
63
64 #if !defined(__PRE_RAM__)
65 void x86_enable_cache(void);
66 #endif
67
68 #endif /* CPU_X86_CACHE */