HvCall.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * HvCall.h
  3. * Copyright (C) 2001 Mike Corrigan IBM Corporation
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. /*
  20. * This file contains the "hypervisor call" interface which is used to
  21. * drive the hypervisor from the OS.
  22. */
  23. #ifndef _HVCALL_H
  24. #define _HVCALL_H
  25. #include <asm/iSeries/HvCallSc.h>
  26. #include <asm/iSeries/HvTypes.h>
  27. #include <asm/paca.h>
  28. /* Type of yield for HvCallBaseYieldProcessor */
  29. #define HvCall_YieldTimed 0 /* Yield until specified time (tb) */
  30. #define HvCall_YieldToActive 1 /* Yield until all active procs have run */
  31. #define HvCall_YieldToProc 2 /* Yield until the specified processor has run */
  32. /* interrupt masks for setEnabledInterrupts */
  33. #define HvCall_MaskIPI 0x00000001
  34. #define HvCall_MaskLpEvent 0x00000002
  35. #define HvCall_MaskLpProd 0x00000004
  36. #define HvCall_MaskTimeout 0x00000008
  37. /* Log buffer formats */
  38. #define HvCall_LogBuffer_ASCII 0
  39. #define HvCall_LogBuffer_EBCDIC 1
  40. #define HvCallBaseAckDeferredInts HvCallBase + 0
  41. #define HvCallBaseCpmPowerOff HvCallBase + 1
  42. #define HvCallBaseGetHwPatch HvCallBase + 2
  43. #define HvCallBaseReIplSpAttn HvCallBase + 3
  44. #define HvCallBaseSetASR HvCallBase + 4
  45. #define HvCallBaseSetASRAndRfi HvCallBase + 5
  46. #define HvCallBaseSetIMR HvCallBase + 6
  47. #define HvCallBaseSendIPI HvCallBase + 7
  48. #define HvCallBaseTerminateMachine HvCallBase + 8
  49. #define HvCallBaseTerminateMachineSrc HvCallBase + 9
  50. #define HvCallBaseProcessPlicInterrupts HvCallBase + 10
  51. #define HvCallBaseIsPrimaryCpmOrMsdIpl HvCallBase + 11
  52. #define HvCallBaseSetVirtualSIT HvCallBase + 12
  53. #define HvCallBaseVaryOffThisProcessor HvCallBase + 13
  54. #define HvCallBaseVaryOffMemoryChunk HvCallBase + 14
  55. #define HvCallBaseVaryOffInteractivePercentage HvCallBase + 15
  56. #define HvCallBaseSendLpProd HvCallBase + 16
  57. #define HvCallBaseSetEnabledInterrupts HvCallBase + 17
  58. #define HvCallBaseYieldProcessor HvCallBase + 18
  59. #define HvCallBaseVaryOffSharedProcUnits HvCallBase + 19
  60. #define HvCallBaseSetVirtualDecr HvCallBase + 20
  61. #define HvCallBaseClearLogBuffer HvCallBase + 21
  62. #define HvCallBaseGetLogBufferCodePage HvCallBase + 22
  63. #define HvCallBaseGetLogBufferFormat HvCallBase + 23
  64. #define HvCallBaseGetLogBufferLength HvCallBase + 24
  65. #define HvCallBaseReadLogBuffer HvCallBase + 25
  66. #define HvCallBaseSetLogBufferFormatAndCodePage HvCallBase + 26
  67. #define HvCallBaseWriteLogBuffer HvCallBase + 27
  68. #define HvCallBaseRouter28 HvCallBase + 28
  69. #define HvCallBaseRouter29 HvCallBase + 29
  70. #define HvCallBaseRouter30 HvCallBase + 30
  71. #define HvCallBaseSetDebugBus HvCallBase + 31
  72. #define HvCallCcSetDABR HvCallCc + 7
  73. static inline void HvCall_setVirtualDecr(void)
  74. {
  75. /*
  76. * Ignore any error return codes - most likely means that the
  77. * target value for the LP has been increased and this vary off
  78. * would bring us below the new target.
  79. */
  80. HvCall0(HvCallBaseSetVirtualDecr);
  81. }
  82. static inline void HvCall_yieldProcessor(unsigned typeOfYield, u64 yieldParm)
  83. {
  84. HvCall2(HvCallBaseYieldProcessor, typeOfYield, yieldParm);
  85. }
  86. static inline void HvCall_setEnabledInterrupts(u64 enabledInterrupts)
  87. {
  88. HvCall1(HvCallBaseSetEnabledInterrupts, enabledInterrupts);
  89. }
  90. static inline void HvCall_setLogBufferFormatAndCodepage(int format,
  91. u32 codePage)
  92. {
  93. HvCall2(HvCallBaseSetLogBufferFormatAndCodePage, format, codePage);
  94. }
  95. extern void HvCall_writeLogBuffer(const void *buffer, u64 bufLen);
  96. static inline void HvCall_sendIPI(struct paca_struct *targetPaca)
  97. {
  98. HvCall1(HvCallBaseSendIPI, targetPaca->paca_index);
  99. }
  100. #endif /* _HVCALL_H */