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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * CRIS MMU constants and PTE layout
  3.  */
  4. #ifndef _CRIS_MMU_H
  5. #define _CRIS_MMU_H
  6. /* type used in struct mm to couple an MMU context to an active mm */
  7. typedef unsigned int mm_context_t;
  8. /* kernel memory segments */
  9. #define KSEG_F 0xf0000000UL
  10. #define KSEG_E 0xe0000000UL
  11. #define KSEG_D 0xd0000000UL
  12. #define KSEG_C 0xc0000000UL
  13. #define KSEG_B 0xb0000000UL
  14. #define KSEG_A 0xa0000000UL
  15. #define KSEG_9 0x90000000UL
  16. #define KSEG_8 0x80000000UL
  17. #define KSEG_7 0x70000000UL
  18. #define KSEG_6 0x60000000UL
  19. #define KSEG_5 0x50000000UL
  20. #define KSEG_4 0x40000000UL
  21. #define KSEG_3 0x30000000UL
  22. #define KSEG_2 0x20000000UL
  23. #define KSEG_1 0x10000000UL
  24. #define KSEG_0 0x00000000UL
  25. /* CRIS PTE bits (see R_TLB_LO in the register description)
  26.  *
  27.  *   Bit:  31-13 12-------4    3        2       1       0  
  28.  *         ________________________________________________
  29.  *        | pfn | reserved | global | valid | kernel | we  |
  30.  *        |_____|__________|________|_______|________|_____|
  31.  *
  32.  * (pfn = physical frame number)
  33.  */
  34. /* Real HW-based PTE bits. We use some synonym names so that
  35.  * things become less confusing in combination with the SW-based
  36.  * bits further below.
  37.  *
  38.  */
  39. #define _PAGE_WE    (1<<0) /* page is write-enabled */
  40. #define _PAGE_SILENT_WRITE (1<<0) /* synonym */
  41. #define _PAGE_KERNEL    (1<<1) /* page is kernel only */
  42. #define _PAGE_VALID    (1<<2) /* page is valid */
  43. #define _PAGE_SILENT_READ  (1<<2) /* synonym */
  44. #define _PAGE_GLOBAL       (1<<3) /* global page - context is ignored */
  45. /* Bits the HW doesn't care about but the kernel uses them in SW */
  46. #define _PAGE_PRESENT   (1<<4)  /* page present in memory */
  47. #define _PAGE_ACCESSED (1<<5)  /* simulated in software using valid bit */
  48. #define _PAGE_MODIFIED (1<<6)  /* simulated in software using we bit */
  49. #define _PAGE_READ      (1<<7)  /* read-enabled */
  50. #define _PAGE_WRITE     (1<<8)  /* write-enabled */
  51. #endif