Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __UM_FIXMAP_H |
| 2 | #define __UM_FIXMAP_H |
| 3 | |
Jeff Dike | 536788f | 2008-02-08 04:22:07 -0800 | [diff] [blame] | 4 | #include <asm/processor.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <asm/kmap_types.h> |
| 6 | #include <asm/archparam.h> |
Jeff Dike | 8192ab4 | 2008-02-04 22:30:53 -0800 | [diff] [blame] | 7 | #include <asm/page.h> |
Al Viro | fe1cd98 | 2008-08-18 04:15:12 -0400 | [diff] [blame] | 8 | #include <linux/threads.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | /* |
| 11 | * Here we define all the compile-time 'special' virtual |
| 12 | * addresses. The point is to have a constant address at |
| 13 | * compile time, but to set the physical address only |
| 14 | * in the boot process. We allocate these special addresses |
| 15 | * from the end of virtual memory (0xfffff000) backwards. |
| 16 | * Also this lets us do fail-safe vmalloc(), we |
| 17 | * can guarantee that these special addresses and |
| 18 | * vmalloc()-ed addresses never overlap. |
| 19 | * |
| 20 | * these 'compile-time allocated' memory buffers are |
| 21 | * fixed-size 4k pages. (or larger if used with an increment |
| 22 | * highger than 1) use fixmap_set(idx,phys) to associate |
| 23 | * physical memory with fixmap indices. |
| 24 | * |
| 25 | * TLB entries of such buffers will not be flushed across |
| 26 | * task switches. |
| 27 | */ |
| 28 | |
| 29 | /* |
| 30 | * on UP currently we will have no trace of the fixmap mechanizm, |
| 31 | * no page table allocations, etc. This might change in the |
| 32 | * future, say framebuffers for the console driver(s) could be |
| 33 | * fix-mapped? |
| 34 | */ |
| 35 | enum fixed_addresses { |
| 36 | #ifdef CONFIG_HIGHMEM |
| 37 | FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */ |
| 38 | FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1, |
| 39 | #endif |
| 40 | __end_of_fixed_addresses |
| 41 | }; |
| 42 | |
| 43 | extern void __set_fixmap (enum fixed_addresses idx, |
| 44 | unsigned long phys, pgprot_t flags); |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* |
| 47 | * used by vmalloc.c. |
| 48 | * |
| 49 | * Leave one empty page between vmalloc'ed areas and |
| 50 | * the start of the fixmap, and leave one page empty |
| 51 | * at the top of mem.. |
| 52 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Jeff Dike | 536788f | 2008-02-08 04:22:07 -0800 | [diff] [blame] | 54 | #define FIXADDR_TOP (TASK_SIZE - 2 * PAGE_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT) |
| 56 | #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE) |
| 57 | |
Mark Salter | a6ce711 | 2014-01-23 15:53:58 -0800 | [diff] [blame] | 58 | #include <asm-generic/fixmap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | #endif |