highmem.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * highmem.h: virtual kernel memory mappings for high memory
  3. *
  4. * Used in CONFIG_HIGHMEM systems for memory pages which
  5. * are not addressable by direct kernel virtual addresses.
  6. *
  7. * Copyright (C) 1999 Gerhard Wichert, Siemens AG
  8. * Gerhard.Wichert@pdb.siemens.de
  9. *
  10. *
  11. * Redesigned the x86 32-bit VM architecture to deal with
  12. * up to 16 Terabyte physical memory. With current x86 CPUs
  13. * we now support up to 64 Gigabytes physical RAM.
  14. *
  15. * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
  16. */
  17. #ifndef _ASM_X86_HIGHMEM_H
  18. #define _ASM_X86_HIGHMEM_H
  19. #ifdef __KERNEL__
  20. #include <linux/interrupt.h>
  21. #include <linux/threads.h>
  22. #include <asm/kmap_types.h>
  23. #include <asm/tlbflush.h>
  24. #include <asm/paravirt.h>
  25. #include <asm/fixmap.h>
  26. /* declarations for highmem.c */
  27. extern unsigned long highstart_pfn, highend_pfn;
  28. /*
  29. * Right now we initialize only a single pte table. It can be extended
  30. * easily, subsequent pte tables have to be allocated in one physical
  31. * chunk of RAM.
  32. */
  33. /*
  34. * Ordering is:
  35. *
  36. * high memory on: high_memory off:
  37. * FIXADDR_TOP FIXADDR_TOP
  38. * fixed addresses fixed addresses
  39. * FIXADDR_START FIXADDR_START
  40. * temp fixed addresses/persistent kmap area VMALLOC_END
  41. * PKMAP_BASE temp fixed addresses/vmalloc area
  42. * VMALLOC_END VMALLOC_START
  43. * vmalloc area high_memory
  44. * VMALLOC_START
  45. * high_memory
  46. *
  47. * The temp fixed area is only used during boot for early_ioremap(), and
  48. * it is unused when the ioremap() is functional. vmalloc/pkmap area become
  49. * available after early boot so the temp fixed area is available for re-use.
  50. */
  51. #define LAST_PKMAP_MASK (LAST_PKMAP-1)
  52. #define PKMAP_NR(virt) ((virt-PKMAP_BASE) >> PAGE_SHIFT)
  53. #define PKMAP_ADDR(nr) (PKMAP_BASE + ((nr) << PAGE_SHIFT))
  54. extern void *kmap_high(struct page *page);
  55. extern void kunmap_high(struct page *page);
  56. void *kmap(struct page *page);
  57. void kunmap(struct page *page);
  58. void *kmap_atomic_prot(struct page *page, pgprot_t prot);
  59. void *kmap_atomic(struct page *page);
  60. void __kunmap_atomic(void *kvaddr);
  61. void *kmap_atomic_pfn(unsigned long pfn);
  62. void *kmap_atomic_prot_pfn(unsigned long pfn, pgprot_t prot);
  63. #define flush_cache_kmaps() do { } while (0)
  64. extern void add_highpages_with_active_regions(int nid, unsigned long start_pfn,
  65. unsigned long end_pfn);
  66. #endif /* __KERNEL__ */
  67. #endif /* _ASM_X86_HIGHMEM_H */