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

嵌入式Linux

开发平台:

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