memory.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* include/asm-arm/arch-lh7a40x/memory.h
  2.  *
  3.  *  Copyright (C) 2004 Coastal Environmental Systems
  4.  *
  5.  *  This program is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU General Public License
  7.  *  version 2 as published by the Free Software Foundation.
  8.  *
  9.  *
  10.  *  Refer to <file:Documentation/arm/Sharp-LH/SDRAM> for more information.
  11.  *
  12.  */
  13. #ifndef __ASM_ARCH_MEMORY_H
  14. #define __ASM_ARCH_MEMORY_H
  15. /*
  16.  * Physical DRAM offset.
  17.  */
  18. #define PHYS_OFFSET (0xc0000000UL)
  19. /*
  20.  * Virtual view <-> DMA view memory address translations
  21.  * virt_to_bus: Used to translate the virtual address to an
  22.  * address suitable to be passed to set_dma_addr
  23.  * bus_to_virt: Used to convert an address for DMA operations
  24.  * to an address that the kernel can use.
  25.  */
  26. #define __virt_to_bus(x)  __virt_to_phys(x)
  27. #define __bus_to_virt(x)  __phys_to_virt(x)
  28. #ifdef CONFIG_DISCONTIGMEM
  29. #define NODES_SHIFT 4 /* Up to 16 nodes */
  30. /*
  31.  * Given a kernel address, find the home node of the underlying memory.
  32.  */
  33. # ifdef CONFIG_LH7A40X_ONE_BANK_PER_NODE
  34. #  define KVADDR_TO_NID(addr) 
  35.   (  ((((unsigned long) (addr) - PAGE_OFFSET) >> 24) &  1)
  36.    | ((((unsigned long) (addr) - PAGE_OFFSET) >> 25) & ~1))
  37. # else  /* 2 banks per node */
  38. #  define KVADDR_TO_NID(addr) 
  39.       (((unsigned long) (addr) - PAGE_OFFSET) >> 26)
  40. # endif
  41. /*
  42.  * Given a page frame number, convert it to a node id.
  43.  */
  44. # ifdef CONFIG_LH7A40X_ONE_BANK_PER_NODE
  45. #  define PFN_TO_NID(pfn) 
  46.   (((((pfn) - PHYS_PFN_OFFSET) >> (24 - PAGE_SHIFT)) &  1)
  47.  | ((((pfn) - PHYS_PFN_OFFSET) >> (25 - PAGE_SHIFT)) & ~1))
  48. # else  /* 2 banks per node */
  49. #  define PFN_TO_NID(pfn) 
  50.     (((pfn) - PHYS_PFN_OFFSET) >> (26 - PAGE_SHIFT))
  51. #endif
  52. /*
  53.  * Given a kaddr, ADDR_TO_MAPBASE finds the owning node of the memory
  54.  * and return the mem_map of that node.
  55.  */
  56. # define ADDR_TO_MAPBASE(kaddr) NODE_MEM_MAP(KVADDR_TO_NID(kaddr))
  57. /*
  58.  * Given a page frame number, find the owning node of the memory
  59.  * and return the mem_map of that node.
  60.  */
  61. # define PFN_TO_MAPBASE(pfn) NODE_MEM_MAP(PFN_TO_NID(pfn))
  62. /*
  63.  * Given a kaddr, LOCAL_MEM_MAP finds the owning node of the memory
  64.  * and returns the index corresponding to the appropriate page in the
  65.  * node's mem_map.
  66.  */
  67. # ifdef CONFIG_LH7A40X_ONE_BANK_PER_NODE
  68. #  define LOCAL_MAP_NR(addr) 
  69.        (((unsigned long)(addr) & 0x003fffff) >> PAGE_SHIFT)
  70. # else  /* 2 banks per node */
  71. #  define LOCAL_MAP_NR(addr) 
  72.        (((unsigned long)(addr) & 0x01ffffff) >> PAGE_SHIFT)
  73. # endif
  74. #endif
  75. #endif