bios_uv.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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 <rja@sgi.com>
  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. s64 uv_bios_call(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3, u64 a4, u64 a5)
  30. {
  31. struct uv_systab *tab = uv_systab;
  32. s64 ret;
  33. if (!tab || !tab->function)
  34. /*
  35. * BIOS does not support UV systab
  36. */
  37. return BIOS_STATUS_UNIMPLEMENTED;
  38. /*
  39. * If EFI_OLD_MEMMAP is set, we need to fall back to using our old EFI
  40. * callback method, which uses efi_call() directly, with the kernel page tables:
  41. */
  42. if (unlikely(test_bit(EFI_OLD_MEMMAP, &efi.flags)))
  43. ret = efi_call((void *)__va(tab->function), (u64)which, a1, a2, a3, a4, a5);
  44. else
  45. ret = efi_call_virt_pointer(tab, function, (u64)which, a1, a2, a3, a4, a5);
  46. return ret;
  47. }
  48. EXPORT_SYMBOL_GPL(uv_bios_call);
  49. s64 uv_bios_call_irqsave(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3,
  50. u64 a4, u64 a5)
  51. {
  52. unsigned long bios_flags;
  53. s64 ret;
  54. local_irq_save(bios_flags);
  55. ret = uv_bios_call(which, a1, a2, a3, a4, a5);
  56. local_irq_restore(bios_flags);
  57. return ret;
  58. }
  59. s64 uv_bios_call_reentrant(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3,
  60. u64 a4, u64 a5)
  61. {
  62. s64 ret;
  63. preempt_disable();
  64. ret = uv_bios_call(which, a1, a2, a3, a4, a5);
  65. preempt_enable();
  66. return ret;
  67. }
  68. long sn_partition_id;
  69. EXPORT_SYMBOL_GPL(sn_partition_id);
  70. long sn_coherency_id;
  71. EXPORT_SYMBOL_GPL(sn_coherency_id);
  72. long sn_region_size;
  73. EXPORT_SYMBOL_GPL(sn_region_size);
  74. long system_serial_number;
  75. EXPORT_SYMBOL_GPL(system_serial_number);
  76. int uv_type;
  77. EXPORT_SYMBOL_GPL(uv_type);
  78. s64 uv_bios_get_sn_info(int fc, int *uvtype, long *partid, long *coher,
  79. long *region, long *ssn)
  80. {
  81. s64 ret;
  82. u64 v0, v1;
  83. union partition_info_u part;
  84. ret = uv_bios_call_irqsave(UV_BIOS_GET_SN_INFO, fc,
  85. (u64)(&v0), (u64)(&v1), 0, 0);
  86. if (ret != BIOS_STATUS_SUCCESS)
  87. return ret;
  88. part.val = v0;
  89. if (uvtype)
  90. *uvtype = part.hub_version;
  91. if (partid)
  92. *partid = part.partition_id;
  93. if (coher)
  94. *coher = part.coherence_id;
  95. if (region)
  96. *region = part.region_size;
  97. if (ssn)
  98. *ssn = v1;
  99. return ret;
  100. }
  101. EXPORT_SYMBOL_GPL(uv_bios_get_sn_info);
  102. int
  103. uv_bios_mq_watchlist_alloc(unsigned long addr, unsigned int mq_size,
  104. unsigned long *intr_mmr_offset)
  105. {
  106. u64 watchlist;
  107. s64 ret;
  108. /*
  109. * bios returns watchlist number or negative error number.
  110. */
  111. ret = (int)uv_bios_call_irqsave(UV_BIOS_WATCHLIST_ALLOC, addr,
  112. mq_size, (u64)intr_mmr_offset,
  113. (u64)&watchlist, 0);
  114. if (ret < BIOS_STATUS_SUCCESS)
  115. return ret;
  116. return watchlist;
  117. }
  118. EXPORT_SYMBOL_GPL(uv_bios_mq_watchlist_alloc);
  119. int
  120. uv_bios_mq_watchlist_free(int blade, int watchlist_num)
  121. {
  122. return (int)uv_bios_call_irqsave(UV_BIOS_WATCHLIST_FREE,
  123. blade, watchlist_num, 0, 0, 0);
  124. }
  125. EXPORT_SYMBOL_GPL(uv_bios_mq_watchlist_free);
  126. s64
  127. uv_bios_change_memprotect(u64 paddr, u64 len, enum uv_memprotect perms)
  128. {
  129. return uv_bios_call_irqsave(UV_BIOS_MEMPROTECT, paddr, len,
  130. perms, 0, 0);
  131. }
  132. EXPORT_SYMBOL_GPL(uv_bios_change_memprotect);
  133. s64
  134. uv_bios_reserved_page_pa(u64 buf, u64 *cookie, u64 *addr, u64 *len)
  135. {
  136. return uv_bios_call_irqsave(UV_BIOS_GET_PARTITION_ADDR, (u64)cookie,
  137. (u64)addr, buf, (u64)len, 0);
  138. }
  139. EXPORT_SYMBOL_GPL(uv_bios_reserved_page_pa);
  140. s64 uv_bios_freq_base(u64 clock_type, u64 *ticks_per_second)
  141. {
  142. return uv_bios_call(UV_BIOS_FREQ_BASE, clock_type,
  143. (u64)ticks_per_second, 0, 0, 0);
  144. }
  145. EXPORT_SYMBOL_GPL(uv_bios_freq_base);
  146. /*
  147. * uv_bios_set_legacy_vga_target - Set Legacy VGA I/O Target
  148. * @decode: true to enable target, false to disable target
  149. * @domain: PCI domain number
  150. * @bus: PCI bus number
  151. *
  152. * Returns:
  153. * 0: Success
  154. * -EINVAL: Invalid domain or bus number
  155. * -ENOSYS: Capability not available
  156. * -EBUSY: Legacy VGA I/O cannot be retargeted at this time
  157. */
  158. int uv_bios_set_legacy_vga_target(bool decode, int domain, int bus)
  159. {
  160. return uv_bios_call(UV_BIOS_SET_LEGACY_VGA_TARGET,
  161. (u64)decode, (u64)domain, (u64)bus, 0, 0);
  162. }
  163. EXPORT_SYMBOL_GPL(uv_bios_set_legacy_vga_target);
  164. #ifdef CONFIG_EFI
  165. void uv_bios_init(void)
  166. {
  167. uv_systab = NULL;
  168. if ((efi.uv_systab == EFI_INVALID_TABLE_ADDR) ||
  169. !efi.uv_systab || efi_runtime_disabled()) {
  170. pr_crit("UV: UVsystab: missing\n");
  171. return;
  172. }
  173. uv_systab = ioremap(efi.uv_systab, sizeof(struct uv_systab));
  174. if (!uv_systab || strncmp(uv_systab->signature, UV_SYSTAB_SIG, 4)) {
  175. pr_err("UV: UVsystab: bad signature!\n");
  176. iounmap(uv_systab);
  177. return;
  178. }
  179. /* Starting with UV4 the UV systab size is variable */
  180. if (uv_systab->revision >= UV_SYSTAB_VERSION_UV4) {
  181. int size = uv_systab->size;
  182. iounmap(uv_systab);
  183. uv_systab = ioremap(efi.uv_systab, size);
  184. if (!uv_systab) {
  185. pr_err("UV: UVsystab: ioremap(%d) failed!\n", size);
  186. return;
  187. }
  188. }
  189. pr_info("UV: UVsystab: Revision:%x\n", uv_systab->revision);
  190. }
  191. #endif