mmzone_sn1.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_SN_MMZONE_SN1_H
  2. #define _ASM_IA64_SN_MMZONE_SN1_H
  3. /*
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (c) 2000-2002 Silicon Graphics, Inc.  All rights reserved.
  9.  */
  10. #include <linux/config.h>
  11. /*
  12.  * SGI SN1 Arch defined values
  13.  *
  14.  *  An SN1 physical address is broken down as follows:
  15.  *
  16.  *             +-----------------------------------------+
  17.  *             |         |    |      |   node offset     |
  18.  *             | unused  | AS | node |-------------------|
  19.  *             |         |    |      | cn | clump offset |
  20.  *             +-----------------------------------------+
  21.  *              6       4 4  4 3    3 3  3 2            0
  22.  *              3       4 3  0 9    3 2  0 9            0
  23.  *
  24.  * bits 63-44 Unused - must be zero
  25.  * bits 43-40 Address space ID. Cached memory has a value of 0.
  26.  * Chipset & IO addresses have non-zero values.
  27.  * bits 39-33 Node number. Note that some configurations do NOT
  28.  * have a node zero.
  29.  * bits 32-0 Node offset.
  30.  *
  31.  * The node offset can be further broken down as:
  32.  * bits 32-30 Clump (bank) number.
  33.  * bits 29-0 Clump (bank) offset.
  34.  *
  35.  * A node consists of up to 8 clumps (banks) of memory. A clump may be empty, or may be
  36.  * populated with a single contiguous block of memory starting at clump
  37.  * offset 0. The size of the block is (2**n) * 64MB, where 0<n<5.
  38.  *
  39.  *
  40.  * NOTE: This file exports symbols prefixed with "PLAT_". Symbols prefixed with
  41.  *  "SN_" are intended for internal use only and should not be used in
  42.  *  any platform independent code. 
  43.  *
  44.  *  This file is also responsible for exporting the following definitions:
  45.  * cnodeid_t Define a compact node id. 
  46.  */
  47. typedef signed short cnodeid_t;
  48. #define SN1_BANKS_PER_NODE 8
  49. #define SN1_NODE_SIZE (8UL*1024*1024*1024) /* 8 GB per node */
  50. #define SN1_BANK_SIZE (SN1_NODE_SIZE/SN1_BANKS_PER_NODE)
  51. #define SN1_NODE_SHIFT 33
  52. #define SN1_NODE_MASK 0x7fUL
  53. #define SN1_NODE_OFFSET_MASK (SN1_NODE_SIZE-1)
  54. #define SN1_NODE_NUMBER(addr) (((unsigned long)(addr) >> SN1_NODE_SHIFT) & SN1_NODE_MASK)
  55. #define SN1_NODE_CLUMP_NUMBER(addr) (((unsigned long)(addr) >>30) & 7)
  56. #define SN1_NODE_OFFSET(addr) (((unsigned long)(addr)) & SN1_NODE_OFFSET_MASK)
  57. #define SN1_KADDR(nasid, offset) (((unsigned long)(nasid)<<SN1_NODE_SHIFT) | (offset) | PAGE_OFFSET)
  58. #define PLAT_MAX_NODE_NUMBER 128 /* Maximum node number +1 */
  59. #define PLAT_MAX_COMPACT_NODES 128 /* Maximum number of nodes in SSI */
  60. #define PLAT_MAX_PHYS_MEMORY (1UL << 40)
  61. /*
  62.  * On the SN platforms, a clump is the same as a memory bank.
  63.  */
  64. #define PLAT_CLUMPS_PER_NODE SN1_BANKS_PER_NODE
  65. #define PLAT_CLUMP_OFFSET(addr) ((unsigned long)(addr) & 0x3fffffffUL)
  66. #define PLAT_CLUMPSIZE                  (SN1_NODE_SIZE/PLAT_CLUMPS_PER_NODE)
  67. #define PLAT_MAXCLUMPS (PLAT_CLUMPS_PER_NODE*PLAT_MAX_COMPACT_NODES)
  68. /*
  69.  * PLAT_VALID_MEM_KADDR returns a boolean to indicate if a kaddr is potentially a
  70.  * valid cacheable identity mapped RAM memory address.
  71.  * Note that the RAM may or may not actually be present!!
  72.  */
  73. #define SN1_VALID_KERN_ADDR_MASK 0xffffff0000000000UL
  74. #define SN1_VALID_KERN_ADDR_VALUE 0xe000000000000000UL
  75. #define PLAT_VALID_MEM_KADDR(kaddr) (((unsigned long)(kaddr) & SN1_VALID_KERN_ADDR_MASK) == SN1_VALID_KERN_ADDR_VALUE)
  76. /*
  77.  * Memory is conceptually divided into chunks. A chunk is either
  78.  * completely present, or else the kernel assumes it is completely
  79.  * absent. Each node consists of a number of possibly discontiguous chunks.
  80.  */
  81. #define SN1_CHUNKSHIFT 26 /* 64 MB */
  82. #define PLAT_CHUNKSIZE (1UL << SN1_CHUNKSHIFT)
  83. #define PLAT_CHUNKNUM(addr) (((addr) & (PLAT_MAX_PHYS_MEMORY-1)) >> SN1_CHUNKSHIFT)
  84. /*
  85.  * Given a kaddr, find the nid (compact nodeid)
  86.  */
  87. #ifdef CONFIG_IA64_SGI_SN_DEBUG
  88. #define DISCONBUG(kaddr) panic("DISCONTIG BUG: line %d, %s. kaddr 0x%lx",  
  89. __LINE__, __FILE__, (long)(kaddr))
  90. #define KVADDR_TO_NID(kaddr) ({long _ktn=(long)(kaddr);
  91. kern_addr_valid(_ktn) ? 
  92. local_node_data->physical_node_map[SN1_NODE_NUMBER(_ktn)] :
  93. (DISCONBUG(_ktn), 0UL);})
  94. #else
  95. #define KVADDR_TO_NID(kaddr) (local_node_data->physical_node_map[SN1_NODE_NUMBER(kaddr)])
  96. #endif
  97. /*
  98.  * Given a kaddr, find the index into the clump_mem_map_base array of the page struct entry
  99.  * for the first page of the clump.
  100.  */
  101. #define PLAT_CLUMP_MEM_MAP_INDEX(kaddr) ({long _kmmi=(long)(kaddr);
  102. KVADDR_TO_NID(_kmmi) * PLAT_CLUMPS_PER_NODE +
  103. SN1_NODE_CLUMP_NUMBER(_kmmi);})
  104. /*
  105.  * Calculate a "goal" value to be passed to __alloc_bootmem_node for allocating structures on
  106.  * nodes so that they dont alias to the same line in the cache as the previous allocated structure.
  107.  * This macro takes an address of the end of previous allocation, rounds it to a page boundary & 
  108.  * changes the node number.
  109.  */
  110. #define PLAT_BOOTMEM_ALLOC_GOAL(cnode,kaddr) __pa(SN1_KADDR(PLAT_PXM_TO_PHYS_NODE_NUMBER(nid_to_pxm_map[cnode]),
  111.   (SN1_NODE_OFFSET(kaddr) + PAGE_SIZE - 1) >> PAGE_SHIFT << PAGE_SHIFT))
  112. /*
  113.  * Convert a proximity domain number (from the ACPI tables) into a physical node number.
  114.  */
  115. #define PLAT_PXM_TO_PHYS_NODE_NUMBER(pxm) (pxm)
  116. #endif /* _ASM_IA64_SN_MMZONE_SN1_H */