ip27-klnuma.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Ported from IRIX to Linux by Kanoj Sarcar, 06/08/00.
  3.  * Copyright 2000 - 2001 Silicon Graphics, Inc.
  4.  * Copyright 2000 - 2001 Kanoj Sarcar (kanoj@sgi.com)
  5.  */
  6. #include <linux/config.h>
  7. #include <linux/init.h>
  8. #include <linux/mmzone.h>
  9. #include <linux/kernel.h>
  10. #include <linux/string.h>
  11. #include <asm/page.h>
  12. #include <asm/smp.h>
  13. #include <asm/sn/types.h>
  14. #include <asm/sn/arch.h>
  15. #include <asm/sn/gda.h>
  16. #include <asm/mmzone.h>
  17. #include <asm/sn/klkernvars.h>
  18. #include <asm/sn/mapped_kernel.h>
  19. #include <asm/sn/sn_private.h>
  20. extern char _end;
  21. static cpumask_t ktext_repmask;
  22. /*
  23.  * XXX - This needs to be much smarter about where it puts copies of the
  24.  * kernel.  For example, we should never put a copy on a headless node,
  25.  * and we should respect the topology of the machine.
  26.  */
  27. void __init setup_replication_mask(int maxnodes)
  28. {
  29. static int  numa_kernel_replication_ratio;
  30. cnodeid_t cnode;
  31. /* Set only the master cnode's bit.  The master cnode is always 0. */
  32. CPUMASK_CLRALL(ktext_repmask);
  33. CPUMASK_SETB(ktext_repmask, 0);
  34. numa_kernel_replication_ratio = 0;
  35. #ifdef CONFIG_REPLICATE_KTEXT
  36. #ifndef CONFIG_MAPPED_KERNEL
  37. #error Kernel replication works with mapped kernel support. No calias support.
  38. #endif
  39. numa_kernel_replication_ratio = 1;
  40. #endif
  41. for (cnode = 1; cnode < numnodes; cnode++) {
  42. /* See if this node should get a copy of the kernel */
  43. if (numa_kernel_replication_ratio &&
  44.     !(cnode % numa_kernel_replication_ratio)) {
  45. /* Advertise that we have a copy of the kernel */
  46. CPUMASK_SETB(ktext_repmask, cnode);
  47. }
  48. }
  49. /* Set up a GDA pointer to the replication mask. */
  50. GDA->g_ktext_repmask = &ktext_repmask;
  51. }
  52. static __init void set_ktext_source(nasid_t client_nasid, nasid_t server_nasid)
  53. {
  54. kern_vars_t *kvp;
  55. cnodeid_t client_cnode;
  56. client_cnode = NASID_TO_COMPACT_NODEID(client_nasid);
  57. kvp = &(PLAT_NODE_DATA(client_cnode)->kern_vars);
  58. KERN_VARS_ADDR(client_nasid) = (unsigned long)kvp;
  59. kvp->kv_magic = KV_MAGIC;
  60. kvp->kv_ro_nasid = server_nasid;
  61. kvp->kv_rw_nasid = master_nasid;
  62. kvp->kv_ro_baseaddr = NODE_CAC_BASE(server_nasid);
  63. kvp->kv_rw_baseaddr = NODE_CAC_BASE(master_nasid);
  64. printk("REPLICATION: ON nasid %d, ktext from nasid %d, kdata from nasid %dn", client_nasid, server_nasid, master_nasid);
  65. }
  66. /* XXX - When the BTE works, we should use it instead of this. */
  67. static __init void copy_kernel(nasid_t dest_nasid)
  68. {
  69. extern char _stext, _etext;
  70. unsigned long dest_kern_start, source_start, source_end, kern_size;
  71. source_start = (unsigned long)&_stext;
  72. source_end = (unsigned long)&_etext;
  73. kern_size = source_end - source_start;
  74. dest_kern_start = CHANGE_ADDR_NASID(MAPPED_KERN_RO_TO_K0(source_start),
  75.     dest_nasid);
  76. memcpy((void *)dest_kern_start, (void *)source_start, kern_size);
  77. }
  78. void __init replicate_kernel_text(int maxnodes)
  79. {
  80. cnodeid_t cnode;
  81. nasid_t client_nasid;
  82. nasid_t server_nasid;
  83. server_nasid = master_nasid;
  84. /* Record where the master node should get its kernel text */
  85. set_ktext_source(master_nasid, master_nasid);
  86. for (cnode = 1; cnode < maxnodes; cnode++) {
  87. client_nasid = COMPACT_TO_NASID_NODEID(cnode);
  88. /* Check if this node should get a copy of the kernel */
  89. if (CPUMASK_TSTB(ktext_repmask, cnode)) {
  90. server_nasid = client_nasid;
  91. copy_kernel(server_nasid);
  92. }
  93. /* Record where this node should get its kernel text */
  94. set_ktext_source(client_nasid, server_nasid);
  95. }
  96. }
  97. /*
  98.  * Return pfn of first free page of memory on a node. PROM may allocate
  99.  * data structures on the first couple of pages of the first slot of each 
  100.  * node. If this is the case, getfirstfree(node) > getslotstart(node, 0).
  101.  */
  102. pfn_t node_getfirstfree(cnodeid_t cnode)
  103. {
  104. unsigned long loadbase = CKSEG0;
  105. nasid_t nasid = COMPACT_TO_NASID_NODEID(cnode);
  106. unsigned long offset;
  107. #ifdef CONFIG_MAPPED_KERNEL
  108. loadbase = CKSSEG + 16777216;
  109. #endif
  110. offset = PAGE_ALIGN((unsigned long)(&_end)) - loadbase;
  111. if ((cnode == 0) || (CPUMASK_TSTB(ktext_repmask, cnode)))
  112. return (TO_NODE(nasid, offset) >> PAGE_SHIFT);
  113. else
  114. return (KDM_TO_PHYS(PAGE_ALIGN(SYMMON_STK_ADDR(nasid, 0))) >> 
  115. PAGE_SHIFT);
  116. }