Paul Mundt | 9edef28 | 2010-02-17 16:28:00 +0900 | [diff] [blame] | 1 | #include <linux/init.h> |
Paul Mundt | 5b34d1e | 2010-03-10 16:46:58 +0900 | [diff] [blame] | 2 | #include <linux/module.h> |
Paul Mundt | 9edef28 | 2010-02-17 16:28:00 +0900 | [diff] [blame] | 3 | #include <asm/sizes.h> |
| 4 | #include <asm/page.h> |
Paul Mundt | 40d1f00 | 2010-03-08 21:03:21 +0900 | [diff] [blame] | 5 | #include <asm/addrspace.h> |
Paul Mundt | 9edef28 | 2010-02-17 16:28:00 +0900 | [diff] [blame] | 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; |
| 19 | unsigned long uncached_start, uncached_end; |
Paul Mundt | 5b34d1e | 2010-03-10 16:46:58 +0900 | [diff] [blame] | 20 | EXPORT_SYMBOL(uncached_start); |
| 21 | EXPORT_SYMBOL(uncached_end); |
Paul Mundt | 9edef28 | 2010-02-17 16:28:00 +0900 | [diff] [blame] | 22 | |
| 23 | int virt_addr_uncached(unsigned long kaddr) |
| 24 | { |
| 25 | return (kaddr >= uncached_start) && (kaddr < uncached_end); |
| 26 | } |
Paul Mundt | 5b34d1e | 2010-03-10 16:46:58 +0900 | [diff] [blame] | 27 | EXPORT_SYMBOL(virt_addr_uncached); |
Paul Mundt | 9edef28 | 2010-02-17 16:28:00 +0900 | [diff] [blame] | 28 | |
| 29 | void __init uncached_init(void) |
| 30 | { |
Paul Mundt | e2fcf74 | 2010-11-04 12:32:24 +0900 | [diff] [blame] | 31 | #if defined(CONFIG_29BIT) || !defined(CONFIG_MMU) |
Paul Mundt | 40d1f00 | 2010-03-08 21:03:21 +0900 | [diff] [blame] | 32 | uncached_start = P2SEG; |
| 33 | #else |
Paul Mundt | 9edef28 | 2010-02-17 16:28:00 +0900 | [diff] [blame] | 34 | uncached_start = memory_end; |
Paul Mundt | 40d1f00 | 2010-03-08 21:03:21 +0900 | [diff] [blame] | 35 | #endif |
Paul Mundt | 9edef28 | 2010-02-17 16:28:00 +0900 | [diff] [blame] | 36 | uncached_end = uncached_start + uncached_size; |
| 37 | } |
Paul Mundt | d01447b | 2010-02-18 18:13:51 +0900 | [diff] [blame] | 38 | |
| 39 | void __init uncached_resize(unsigned long size) |
| 40 | { |
| 41 | uncached_size = size; |
| 42 | uncached_end = uncached_start + uncached_size; |
| 43 | } |