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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-sa1100/memory.h
  3.  *
  4.  * Copyright (C) 1999-2000 Nicolas Pitre <nico@cam.org>
  5.  */
  6. #ifndef __ASM_ARCH_MEMORY_H
  7. #define __ASM_ARCH_MEMORY_H
  8. #include <linux/config.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. /*
  24.  * Physical DRAM offset is 0xc0000000 on the SA1100
  25.  */
  26. #define PHYS_OFFSET (0xc0000000UL)
  27. /*
  28.  * We take advantage of the fact that physical and virtual address can be the
  29.  * same.  The NUMA code is handling the large holes that might exist between
  30.  * all memory banks.
  31.  */
  32. #define __virt_to_phys__is_a_macro
  33. #define __phys_to_virt__is_a_macro
  34. #define __virt_to_phys(x) (x)
  35. #define __phys_to_virt(x) (x)
  36. /*
  37.  * Virtual view <-> DMA view memory address translations
  38.  * virt_to_bus: Used to translate the virtual address to an
  39.  * address suitable to be passed to set_dma_addr
  40.  * bus_to_virt: Used to convert an address for DMA operations
  41.  * to an address that the kernel can use.
  42.  *
  43.  * On the SA1100, bus addresses are equivalent to physical addresses.
  44.  */
  45. #define __virt_to_bus__is_a_macro
  46. #define __bus_to_virt__is_a_macro
  47. #define __virt_to_bus(x)  __virt_to_phys(x)
  48. #define __bus_to_virt(x)  __phys_to_virt(x)
  49. #ifdef CONFIG_DISCONTIGMEM
  50. /*
  51.  * Because of the wide memory address space between physical RAM banks on the 
  52.  * SA1100, it's much more convenient to use Linux's NUMA support to implement
  53.  * our memory map representation.  Assuming all memory nodes have equal access 
  54.  * characteristics, we then have generic discontiguous memory support.
  55.  *
  56.  * Of course, all this isn't mandatory for SA1100 implementations with only
  57.  * one used memory bank.  For those, simply undefine CONFIG_DISCONTIGMEM.
  58.  *
  59.  * The nodes are matched with the physical memory bank addresses which are 
  60.  * incidentally the same as virtual addresses.
  61.  * 
  62.  *  node 0:  0xc0000000 - 0xc7ffffff
  63.  *  node 1:  0xc8000000 - 0xcfffffff
  64.  *  node 2:  0xd0000000 - 0xd7ffffff
  65.  *  node 3:  0xd8000000 - 0xdfffffff
  66.  */
  67. #define NR_NODES 4
  68. /*
  69.  * Given a kernel address, find the home node of the underlying memory.
  70.  */
  71. #define KVADDR_TO_NID(addr) 
  72. (((unsigned long)(addr) - 0xc0000000) >> 27)
  73. /*
  74.  * Given a physical address, convert it to a node id.
  75.  */
  76. #define PHYS_TO_NID(addr) KVADDR_TO_NID(__phys_to_virt(addr))
  77. /*
  78.  * Given a kaddr, ADDR_TO_MAPBASE finds the owning node of the memory
  79.  * and returns the mem_map of that node.
  80.  */
  81. #define ADDR_TO_MAPBASE(kaddr) 
  82. NODE_MEM_MAP(KVADDR_TO_NID((unsigned long)(kaddr)))
  83. /*
  84.  * Given a kaddr, LOCAL_MEM_MAP finds the owning node of the memory
  85.  * and returns the index corresponding to the appropriate page in the
  86.  * node's mem_map.
  87.  */
  88. #define LOCAL_MAP_NR(kvaddr) 
  89. (((unsigned long)(kvaddr) & 0x07ffffff) >> PAGE_SHIFT)
  90. /*
  91.  * Given a kaddr, virt_to_page returns a pointer to the corresponding 
  92.  * mem_map entry.
  93.  */
  94. #define virt_to_page(kaddr) 
  95. (ADDR_TO_MAPBASE(kaddr) + LOCAL_MAP_NR(kaddr))
  96. /*
  97.  * VALID_PAGE returns a non-zero value if given page pointer is valid.
  98.  * This assumes all node's mem_maps are stored within the node they refer to.
  99.  */
  100. #define VALID_PAGE(page) 
  101. ({ unsigned int node = KVADDR_TO_NID(page); 
  102.    ( (node < NR_NODES) && 
  103.      ((unsigned)((page) - NODE_MEM_MAP(node)) < NODE_DATA(node)->node_size) ); 
  104. })
  105. #else
  106. #define PHYS_TO_NID(addr) (0)
  107. #endif
  108. #endif