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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-tbox/memory.h
  3.  *
  4.  * Copyright (c) 1996-1999 Russell King.
  5.  * Copyright (c) 1998-1999 Phil Blundell
  6.  */
  7. #ifndef __ASM_ARCH_MEMORY_H
  8. #define __ASM_ARCH_MEMORY_H
  9. /*
  10.  * Task size: 3GB
  11.  */
  12. #define TASK_SIZE (0xc0000000UL)
  13. #define TASK_SIZE_26 (0x04000000UL)
  14. /*
  15.  * This decides where the kernel will search for a free chunk of vm
  16.  * space during mmap's.
  17.  */
  18. #define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
  19. /*
  20.  * Page offset: 3GB
  21.  */
  22. #define PAGE_OFFSET (0xc0000000UL)
  23. #define PHYS_OFFSET (0x80000000UL)
  24. /*
  25.  * DRAM is contiguous
  26.  */
  27. #define __virt_to_phys(vpage) ((vpage) - PAGE_OFFSET + PHYS_OFFSET)
  28. #define __phys_to_virt(ppage) ((ppage) + PAGE_OFFSET - PHYS_OFFSET)
  29. #define __virt_to_phys__is_a_macro
  30. #define __phys_to_virt__is_a_macro
  31. /*
  32.  * Bus view is the same as physical view
  33.  */
  34. #define __virt_to_bus__is_a_macro
  35. #define __virt_to_bus(x) __virt_to_phys(x)
  36. #define __bus_to_virt__is_a_macro
  37. #define __bus_to_virt(x) __phys_to_virt(x)
  38. #define PHYS_TO_NID(addr) (0)
  39. #endif