Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
uncached.c
Go to the documentation of this file.
1 #include <linux/init.h>
2 #include <linux/module.h>
3 #include <asm/sizes.h>
4 #include <asm/page.h>
5 #include <asm/addrspace.h>
6 
7 /*
8  * This is the offset of the uncached section from its cached alias.
9  *
10  * Legacy platforms handle trivial transitions between cached and
11  * uncached segments by making use of the 1:1 mapping relationship in
12  * 512MB lowmem, others via a special uncached mapping.
13  *
14  * Default value only valid in 29 bit mode, in 32bit mode this will be
15  * updated by the early PMB initialization code.
16  */
17 unsigned long cached_to_uncached = SZ_512M;
18 unsigned long uncached_size = SZ_512M;
22 
23 int virt_addr_uncached(unsigned long kaddr)
24 {
25  return (kaddr >= uncached_start) && (kaddr < uncached_end);
26 }
28 
30 {
31 #if defined(CONFIG_29BIT) || !defined(CONFIG_MMU)
33 #else
35 #endif
37 }
38 
39 void __init uncached_resize(unsigned long size)
40 {
43 }