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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * System Abstraction Layer (SAL) interface routines.
  3.  *
  4.  * Copyright (C) 1998, 1999, 2001 Hewlett-Packard Co
  5.  * David Mosberger-Tang <davidm@hpl.hp.com>
  6.  * Copyright (C) 1999 VA Linux Systems
  7.  * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
  8.  */
  9. #include <linux/config.h>
  10. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/smp.h>
  13. #include <linux/spinlock.h>
  14. #include <linux/string.h>
  15. #include <asm/page.h>
  16. #include <asm/sal.h>
  17. #include <asm/pal.h>
  18. spinlock_t sal_lock __cacheline_aligned = SPIN_LOCK_UNLOCKED;
  19. unsigned long sal_platform_features;
  20. static struct {
  21. void *addr; /* function entry point */
  22. void *gpval; /* gp value to use */
  23. } pdesc;
  24. static long
  25. default_handler (void)
  26. {
  27. return -1;
  28. }
  29. ia64_sal_handler ia64_sal = (ia64_sal_handler) default_handler;
  30. ia64_sal_desc_ptc_t *ia64_ptc_domain_info;
  31. const char *
  32. ia64_sal_strerror (long status)
  33. {
  34. const char *str;
  35. switch (status) {
  36.       case 0: str = "Call completed without error"; break;
  37.       case 1: str = "Effect a warm boot of the system to complete "
  38.       "the update"; break;
  39.       case -1: str = "Not implemented"; break;
  40.       case -2: str = "Invalid argument"; break;
  41.       case -3: str = "Call completed with error"; break;
  42.       case -4: str = "Virtual address not registered"; break;
  43.       case -5: str = "No information available"; break;
  44.       case -6: str = "Insufficient space to add the entry"; break;
  45.       case -7: str = "Invalid entry_addr value"; break;
  46.       case -8: str = "Invalid interrupt vector"; break;
  47.       case -9: str = "Requested memory not available"; break;
  48.       case -10: str = "Unable to write to the NVM device"; break;
  49.       case -11: str = "Invalid partition type specified"; break;
  50.       case -12: str = "Invalid NVM_Object id specified"; break;
  51.       case -13: str = "NVM_Object already has the maximum number "
  52. "of partitions"; break;
  53.       case -14: str = "Insufficient space in partition for the "
  54. "requested write sub-function"; break;
  55.       case -15: str = "Insufficient data buffer space for the "
  56. "requested read record sub-function"; break;
  57.       case -16: str = "Scratch buffer required for the write/delete "
  58. "sub-function"; break;
  59.       case -17: str = "Insufficient space in the NVM_Object for the "
  60. "requested create sub-function"; break;
  61.       case -18: str = "Invalid value specified in the partition_rec "
  62. "argument"; break;
  63.       case -19: str = "Record oriented I/O not supported for this "
  64. "partition"; break;
  65.       case -20: str = "Bad format of record to be written or "
  66. "required keyword variable not "
  67. "specified"; break;
  68.       default: str = "Unknown SAL status code"; break;
  69. }
  70. return str;
  71. }
  72. static void __init
  73. ia64_sal_handler_init (void *entry_point, void *gpval)
  74. {
  75. /* fill in the SAL procedure descriptor and point ia64_sal to it: */
  76. pdesc.addr = entry_point;
  77. pdesc.gpval = gpval;
  78. ia64_sal = (ia64_sal_handler) &pdesc;
  79. }
  80. void __init
  81. ia64_sal_init (struct ia64_sal_systab *systab)
  82. {
  83. unsigned long min, max;
  84. char *p;
  85. struct ia64_sal_desc_entry_point *ep;
  86. int i;
  87. if (!systab) {
  88. printk("Hmm, no SAL System Table.n");
  89. return;
  90. }
  91. if (strncmp(systab->signature, "SST_", 4) != 0)
  92. printk("bad signature in system table!");
  93. /*
  94.  * revisions are coded in BCD, so %x does the job for us
  95.  */
  96. printk("SAL v%x.%02x: oem=%.32s, product=%.32sn",
  97.        systab->sal_rev_major, systab->sal_rev_minor,
  98.        systab->oem_id, systab->product_id);
  99. min = ~0UL;
  100. max = 0;
  101. p = (char *) (systab + 1);
  102. for (i = 0; i < systab->entry_count; i++) {
  103. /*
  104.  * The first byte of each entry type contains the type desciptor.
  105.  */
  106. switch (*p) {
  107.       case SAL_DESC_ENTRY_POINT:
  108. ep = (struct ia64_sal_desc_entry_point *) p;
  109. printk("SAL: entry: pal_proc=0x%lx, sal_proc=0x%lxn",
  110.        ep->pal_proc, ep->sal_proc);
  111. ia64_pal_handler_init(__va(ep->pal_proc));
  112. ia64_sal_handler_init(__va(ep->sal_proc), __va(ep->gp));
  113. break;
  114.       case SAL_DESC_PTC:
  115. ia64_ptc_domain_info = (ia64_sal_desc_ptc_t *)p;
  116. break;
  117.       case SAL_DESC_AP_WAKEUP:
  118. #ifdef CONFIG_SMP
  119.       {
  120.       struct ia64_sal_desc_ap_wakeup *ap = (void *) p;
  121.       switch (ap->mechanism) {
  122.     case IA64_SAL_AP_EXTERNAL_INT:
  123.       ap_wakeup_vector = ap->vector;
  124.       printk("SAL: AP wakeup using external interrupt "
  125.      "vector 0x%lxn", ap_wakeup_vector);
  126.       break;
  127.     default:
  128.       printk("SAL: AP wakeup mechanism unsupported!n");
  129.       break;
  130.       }
  131.       break;
  132.       }
  133. #endif
  134.       case SAL_DESC_PLATFORM_FEATURE:
  135.       {
  136.       struct ia64_sal_desc_platform_feature *pf = (void *) p;
  137.       sal_platform_features = pf->feature_mask;
  138.       printk("SAL: Platform features ");
  139.       if (pf->feature_mask & IA64_SAL_PLATFORM_FEATURE_BUS_LOCK)
  140.       printk("BusLock ");
  141.       if (pf->feature_mask & IA64_SAL_PLATFORM_FEATURE_IRQ_REDIR_HINT) {
  142.       printk("IRQ_Redirection ");
  143. #ifdef CONFIG_SMP
  144.       if (no_int_routing)
  145.       smp_int_redirect &= ~SMP_IRQ_REDIRECTION;
  146.       else
  147.       smp_int_redirect |= SMP_IRQ_REDIRECTION;
  148. #endif
  149.       }
  150.       if (pf->feature_mask & IA64_SAL_PLATFORM_FEATURE_IPI_REDIR_HINT) {
  151.       printk("IPI_Redirection ");
  152. #ifdef CONFIG_SMP
  153.       if (no_int_routing)
  154.       smp_int_redirect &= ~SMP_IPI_REDIRECTION;
  155.       else
  156.       smp_int_redirect |= SMP_IPI_REDIRECTION;
  157. #endif
  158.       }
  159.       if (pf->feature_mask & IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT)
  160.       printk("ITC_Drift ");
  161.       printk("n");
  162.       break;
  163.         }
  164. }
  165. p += SAL_DESC_SIZE(*p);
  166. }
  167. }