#ifndef __UM_FIXMAP_H1#define __UM_FIXMAP_H23#include <asm/processor.h>4#include <asm/system.h>5#include <asm/kmap_types.h>6#include <asm/archparam.h>7#include <asm/page.h>8#include <linux/threads.h>910/*11* Here we define all the compile-time 'special' virtual12* addresses. The point is to have a constant address at13* compile time, but to set the physical address only14* in the boot process. We allocate these special addresses15* from the end of virtual memory (0xfffff000) backwards.16* Also this lets us do fail-safe vmalloc(), we17* can guarantee that these special addresses and18* vmalloc()-ed addresses never overlap.19*20* these 'compile-time allocated' memory buffers are21* fixed-size 4k pages. (or larger if used with an increment22* highger than 1) use fixmap_set(idx,phys) to associate23* physical memory with fixmap indices.24*25* TLB entries of such buffers will not be flushed across26* task switches.27*/2829/*30* on UP currently we will have no trace of the fixmap mechanizm,31* no page table allocations, etc. This might change in the32* future, say framebuffers for the console driver(s) could be33* fix-mapped?34*/35enum fixed_addresses {36#ifdef CONFIG_HIGHMEM37FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */38FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,39#endif40__end_of_fixed_addresses41};4243extern void __set_fixmap (enum fixed_addresses idx,44unsigned long phys, pgprot_t flags);4546#define set_fixmap(idx, phys) \47__set_fixmap(idx, phys, PAGE_KERNEL)48/*49* Some hardware wants to get fixmapped without caching.50*/51#define set_fixmap_nocache(idx, phys) \52__set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)53/*54* used by vmalloc.c.55*56* Leave one empty page between vmalloc'ed areas and57* the start of the fixmap, and leave one page empty58* at the top of mem..59*/6061#define FIXADDR_TOP (TASK_SIZE - 2 * PAGE_SIZE)62#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)63#define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)6465#define __fix_to_virt(x) (FIXADDR_TOP - ((x) << PAGE_SHIFT))66#define __virt_to_fix(x) ((FIXADDR_TOP - ((x)&PAGE_MASK)) >> PAGE_SHIFT)6768extern void __this_fixmap_does_not_exist(void);6970/*71* 'index to address' translation. If anyone tries to use the idx72* directly without tranlation, we catch the bug with a NULL-deference73* kernel oops. Illegal ranges of incoming indices are caught too.74*/75static inline unsigned long fix_to_virt(const unsigned int idx)76{77/*78* this branch gets completely eliminated after inlining,79* except when someone tries to use fixaddr indices in an80* illegal way. (such as mixing up address types or using81* out-of-range indices).82*83* If it doesn't get removed, the linker will complain84* loudly with a reasonably clear error message..85*/86if (idx >= __end_of_fixed_addresses)87__this_fixmap_does_not_exist();8889return __fix_to_virt(idx);90}9192static inline unsigned long virt_to_fix(const unsigned long vaddr)93{94BUG_ON(vaddr >= FIXADDR_TOP || vaddr < FIXADDR_START);95return __virt_to_fix(vaddr);96}9798#endif99100101