bios_uv.c 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /*
  2. * BIOS run time interface routines.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. *
  18. * Copyright (c) 2008-2009 Silicon Graphics, Inc. All Rights Reserved.
  19. * Copyright (c) Russ Anderson <[email protected]>
  20. */
  21. #include <linux/efi.h>
  22. #include <linux/export.h>
  23. #include <linux/slab.h>
  24. #include <asm/efi.h>
  25. #include <linux/io.h>
  26. #include <asm/uv/bios.h>
  27. #include <asm/uv/uv_hub.h>
  28. struct uv_systab *uv_systab;
  29. static s64 __uv_bios_call(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3,
  30. u64 a4, u64 a5)
  31. {
  32. struct uv_systab *tab = uv_systab;
  33. s64 ret;
  34. if (!tab || !tab->function)
  35. /*
  36. * BIOS does not support UV systab
  37. */
  38. return BIOS_STATUS_UNIMPLEMENTED;
  39. /*
  40. * If EFI_OLD_MEMMAP is set, we need to fall back to using our old EFI
  41. * callback method, which uses efi_call() directly, with the kernel page tables:
  42. */
  43. if (unlikely(test_bit(EFI_OLD_MEMMAP, &efi.flags)))
  44. ret = efi_call((void *)__va(tab->function), (u64)which, a1, a2, a3, a4, a5);
  45. else
  46. ret = efi_call_virt_pointer(tab, function, (u64)which, a1, a2, a3, a4, a5);
  47. return ret;
  48. }
  49. s64 uv_bios_call(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3, u64 a4, u64 a5)
  50. {
  51. s64 ret;
  52. if (down_interruptible(&__efi_uv_runtime_lock))
  53. return BIOS_STATUS_ABORT;
  54. ret = __uv_bios_call(which, a1, a2, a3, a4, a5);
  55. up(&__efi_uv_runtime_lock);
  56. return ret;
  57. }
  58. EXPORT_SYMBOL_GPL(uv_bios_call);
  59. s64 uv_bios_call_irqsave(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3,
  60. u64 a4, u64 a5)
  61. {
  62. unsigned long bios_flags;
  63. s64 ret;
  64. if (down_interruptible(&__efi_uv_runtime_lock))
  65. return BIOS_STATUS_ABORT;
  66. local_irq_save(bios_flags);
  67. ret = __uv_bios_call(which, a1, a2, a3, a4, a5);
  68. local_irq_restore(bios_flags);
  69. up(&__efi_uv_runtime_lock);
  70. return ret;
  71. }
  72. s64 uv_bios_call_reentrant(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3,
  73. u64 a4, u64 a5)
  74. {
  75. s64 ret;
  76. preempt_disable();
  77. ret = uv_bios_call(which, a1, a2, a3, a4, a5);
  78. preempt_enable();
  79. return ret;
  80. }
  81. long sn_partition_id;
  82. EXPORT_SYMBOL_GPL(sn_partition_id);
  83. long sn_coherency_id;
  84. EXPORT_SYMBOL_GPL(sn_coherency_id);
  85. long sn_region_size;
  86. EXPORT_SYMBOL_GPL(sn_region_size);
  87. long system_serial_number;
  88. EXPORT_SYMBOL_GPL(system_serial_number);
  89. int uv_type;
  90. EXPORT_SYMBOL_GPL(uv_type);
  91. s64 uv_bios_get_sn_info(int fc, int *uvtype, long *partid, long *coher,
  92. long *region, long *ssn)
  93. {
  94. s64 ret;
  95. u64 v0, v1;
  96. union partition_info_u part;
  97. ret = uv_bios_call_irqsave(UV_BIOS_GET_SN_INFO, fc,
  98. (u64)(&v0), (u64)(&v1), 0, 0);
  99. if (ret != BIOS_STATUS_SUCCESS)
  100. return ret;
  101. part.val = v0;
  102. if (uvtype)
  103. *uvtype = part.hub_version;
  104. if (partid)
  105. *partid = part.partition_id;
  106. if (coher)
  107. *coher = part.coherence_id;
  108. if (region)
  109. *region = part.region_size;
  110. if (ssn)
  111. *ssn = v1;
  112. return ret;
  113. }
  114. EXPORT_SYMBOL_GPL(uv_bios_get_sn_info);
  115. int
  116. uv_bios_mq_watchlist_alloc(unsigned long addr, unsigned int mq_size,
  117. unsigned long *intr_mmr_offset)
  118. {
  119. u64 watchlist;
  120. s64 ret;
  121. /*
  122. * bios returns watchlist number or negative error number.
  123. */
  124. ret = (int)uv_bios_call_irqsave(UV_BIOS_WATCHLIST_ALLOC, addr,
  125. mq_size, (u64)intr_mmr_offset,
  126. (u64)&watchlist, 0);
  127. if (ret < BIOS_STATUS_SUCCESS)
  128. return ret;
  129. return watchlist;
  130. }
  131. EXPORT_SYMBOL_GPL(uv_bios_mq_watchlist_alloc);
  132. int
  133. uv_bios_mq_watchlist_free(int blade, int watchlist_num)
  134. {
  135. return (int)uv_bios_call_irqsave(UV_BIOS_WATCHLIST_FREE,
  136. blade, watchlist_num, 0, 0, 0);
  137. }
  138. EXPORT_SYMBOL_GPL(uv_bios_mq_watchlist_free);
  139. s64
  140. uv_bios_change_memprotect(u64 paddr, u64 len, enum uv_memprotect perms)
  141. {
  142. return uv_bios_call_irqsave(UV_BIOS_MEMPROTECT, paddr, len,
  143. perms, 0, 0);
  144. }
  145. EXPORT_SYMBOL_GPL(uv_bios_change_memprotect);
  146. s64
  147. uv_bios_reserved_page_pa(u64 buf, u64 *cookie, u64 *addr, u64 *len)
  148. {
  149. return uv_bios_call_irqsave(UV_BIOS_GET_PARTITION_ADDR, (u64)cookie,
  150. (u64)addr, buf, (u64)len, 0);
  151. }
  152. EXPORT_SYMBOL_GPL(uv_bios_reserved_page_pa);
  153. s64 uv_bios_freq_base(u64 clock_type, u64 *ticks_per_second)
  154. {
  155. return uv_bios_call(UV_BIOS_FREQ_BASE, clock_type,
  156. (u64)ticks_per_second, 0, 0, 0);
  157. }
  158. EXPORT_SYMBOL_GPL(uv_bios_freq_base);
  159. /*
  160. * uv_bios_set_legacy_vga_target - Set Legacy VGA I/O Target
  161. * @decode: true to enable target, false to disable target
  162. * @domain: PCI domain number
  163. * @bus: PCI bus number
  164. *
  165. * Returns:
  166. * 0: Success
  167. * -EINVAL: Invalid domain or bus number
  168. * -ENOSYS: Capability not available
  169. * -EBUSY: Legacy VGA I/O cannot be retargeted at this time
  170. */
  171. int uv_bios_set_legacy_vga_target(bool decode, int domain, int bus)
  172. {
  173. return uv_bios_call(UV_BIOS_SET_LEGACY_VGA_TARGET,
  174. (u64)decode, (u64)domain, (u64)bus, 0, 0);
  175. }
  176. EXPORT_SYMBOL_GPL(uv_bios_set_legacy_vga_target);
  177. #ifdef CONFIG_EFI
  178. void uv_bios_init(void)
  179. {
  180. uv_systab = NULL;
  181. if ((efi.uv_systab == EFI_INVALID_TABLE_ADDR) ||
  182. !efi.uv_systab || efi_runtime_disabled()) {
  183. pr_crit("UV: UVsystab: missing\n");
  184. return;
  185. }
  186. uv_systab = ioremap(efi.uv_systab, sizeof(struct uv_systab));
  187. if (!uv_systab || strncmp(uv_systab->signature, UV_SYSTAB_SIG, 4)) {
  188. pr_err("UV: UVsystab: bad signature!\n");
  189. iounmap(uv_systab);
  190. return;
  191. }
  192. /* Starting with UV4 the UV systab size is variable */
  193. if (uv_systab->revision >= UV_SYSTAB_VERSION_UV4) {
  194. int size = uv_systab->size;
  195. iounmap(uv_systab);
  196. uv_systab = ioremap(efi.uv_systab, size);
  197. if (!uv_systab) {
  198. pr_err("UV: UVsystab: ioremap(%d) failed!\n", size);
  199. return;
  200. }
  201. }
  202. pr_info("UV: UVsystab: Revision:%x\n", uv_systab->revision);
  203. }
  204. #endif