fixmap.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * fixmap.h: compile-time virtual memory allocation
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 1998 Ingo Molnar
  9.  *
  10.  * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
  11.  */
  12. #ifndef _ASM_FIXMAP_H
  13. #define _ASM_FIXMAP_H
  14. #include <linux/config.h>
  15. #include <linux/kernel.h>
  16. #include <asm/apicdef.h>
  17. #include <asm/page.h>
  18. #include <asm/vsyscall.h>
  19. /*
  20.  * Here we define all the compile-time 'special' virtual
  21.  * addresses. The point is to have a constant address at
  22.  * compile time, but to set the physical address only
  23.  * in the boot process.
  24.  *
  25.  * these 'compile-time allocated' memory buffers are
  26.  * fixed-size 4k pages. (or larger if used with an increment
  27.  * highger than 1) use fixmap_set(idx,phys) to associate
  28.  * physical memory with fixmap indices.
  29.  *
  30.  * TLB entries of such buffers will not be flushed across
  31.  * task switches.
  32.  */
  33. enum fixed_addresses {
  34. VSYSCALL_LAST_PAGE,
  35. VSYSCALL_FIRST_PAGE = VSYSCALL_LAST_PAGE + ((VSYSCALL_END-VSYSCALL_START) >> PAGE_SHIFT) - 1,
  36. VSYSCALL_HPET,
  37. FIX_HPET_BASE,
  38. #ifdef CONFIG_X86_LOCAL_APIC
  39. FIX_APIC_BASE, /* local (CPU) APIC) -- required for SMP or not */
  40. #endif
  41. #ifdef CONFIG_X86_IO_APIC
  42. FIX_IO_APIC_BASE_0,
  43. FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS-1,
  44. #endif
  45. __end_of_fixed_addresses
  46. };
  47. extern void __set_fixmap (enum fixed_addresses idx,
  48. unsigned long phys, pgprot_t flags);
  49. #define set_fixmap(idx, phys) 
  50. __set_fixmap(idx, phys, PAGE_KERNEL)
  51. /*
  52.  * Some hardware wants to get fixmapped without caching.
  53.  */
  54. #define set_fixmap_nocache(idx, phys) 
  55. __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
  56. #define FIXADDR_TOP (VSYSCALL_END-PAGE_SIZE)
  57. #define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
  58. #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
  59. #define __fix_to_virt(x) (FIXADDR_TOP - ((x) << PAGE_SHIFT))
  60. extern void __this_fixmap_does_not_exist(void);
  61. /*
  62.  * 'index to address' translation. If anyone tries to use the idx
  63.  * directly without tranlation, we catch the bug with a NULL-deference
  64.  * kernel oops. Illegal ranges of incoming indices are caught too.
  65.  */
  66. extern inline unsigned long fix_to_virt(const unsigned int idx)
  67. {
  68. /*
  69.  * this branch gets completely eliminated after inlining,
  70.  * except when someone tries to use fixaddr indices in an
  71.  * illegal way. (such as mixing up address types or using
  72.  * out-of-range indices).
  73.  *
  74.  * If it doesn't get removed, the linker will complain
  75.  * loudly with a reasonably clear error message..
  76.  */
  77. if (idx >= __end_of_fixed_addresses)
  78. __this_fixmap_does_not_exist();
  79.         return __fix_to_virt(idx);
  80. }
  81. #endif