page.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1994 - 1999, 2000 by Ralf Baechle
  7.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8.  */
  9. #ifndef _ASM_PAGE_H
  10. #define _ASM_PAGE_H
  11. #include <linux/config.h>
  12. /* PAGE_SHIFT determines the page size */
  13. #define PAGE_SHIFT 12
  14. #define PAGE_SIZE (1UL << PAGE_SHIFT)
  15. #define PAGE_MASK (~(PAGE_SIZE-1))
  16. #ifdef __KERNEL__
  17. #ifndef _LANGUAGE_ASSEMBLY
  18. #define BUG() do { printk("kernel BUG at %s:%d!n", __FILE__, __LINE__); *(int *)0=0; } while (0)
  19. #define PAGE_BUG(page) do {  BUG(); } while (0)
  20. extern void (*_clear_page)(void * page);
  21. extern void (*_copy_page)(void * to, void * from);
  22. #define clear_page(page) _clear_page(page)
  23. #define copy_page(to, from) _copy_page(to, from)
  24. #define clear_user_page(page, vaddr) clear_page(page)
  25. #define copy_user_page(to, from, vaddr) copy_page(to, from)
  26. /*
  27.  * These are used to make use of C type-checking..
  28.  */
  29. typedef struct { unsigned long pte; } pte_t;
  30. typedef struct { unsigned long pmd; } pmd_t;
  31. typedef struct { unsigned long pgd; } pgd_t;
  32. typedef struct { unsigned long pgprot; } pgprot_t;
  33. #define pte_val(x) ((x).pte)
  34. #define pmd_val(x) ((x).pmd)
  35. #define pgd_val(x) ((x).pgd)
  36. #define pgprot_val(x) ((x).pgprot)
  37. #define __pte(x) ((pte_t) { (x) } )
  38. #define __pme(x) ((pme_t) { (x) } )
  39. #define __pgd(x) ((pgd_t) { (x) } )
  40. #define __pgprot(x) ((pgprot_t) { (x) } )
  41. #endif /* _LANGUAGE_ASSEMBLY */
  42. /* to align the pointer to the (next) page boundary */
  43. #define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
  44. /*
  45.  * This handles the memory map.
  46.  * We handle pages at KSEG0 for kernels with upto 512mb of memory,
  47.  * at XKPHYS for kernels with more than that.
  48.  */
  49. #ifdef CONFIG_SGI_IP22
  50. #define PAGE_OFFSET 0xffffffff80000000UL
  51. #endif
  52. #ifdef CONFIG_SGI_IP27
  53. #define PAGE_OFFSET 0xa800000000000000UL
  54. #endif
  55. #define __pa(x) ((unsigned long) (x) - PAGE_OFFSET)
  56. #define __va(x) ((void *)((unsigned long) (x) + PAGE_OFFSET))
  57. #ifndef CONFIG_DISCONTIGMEM
  58. #define virt_to_page(kaddr) (mem_map + (__pa(kaddr) >> PAGE_SHIFT))
  59. #define VALID_PAGE(page) ((page - mem_map) < max_mapnr)
  60. #endif
  61. #endif /* defined (__KERNEL__) */
  62. #endif /* _ASM_PAGE_H */