hypervisor.h 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085
  1. #ifndef _SPARC64_HYPERVISOR_H
  2. #define _SPARC64_HYPERVISOR_H
  3. /* Sun4v hypervisor interfaces and defines.
  4. *
  5. * Hypervisor calls are made via traps to software traps number 0x80
  6. * and above. Registers %o0 to %o5 serve as argument, status, and
  7. * return value registers.
  8. *
  9. * There are two kinds of these traps. First there are the normal
  10. * "fast traps" which use software trap 0x80 and encode the function
  11. * to invoke by number in register %o5. Argument and return value
  12. * handling is as follows:
  13. *
  14. * -----------------------------------------------
  15. * | %o5 | function number | undefined |
  16. * | %o0 | argument 0 | return status |
  17. * | %o1 | argument 1 | return value 1 |
  18. * | %o2 | argument 2 | return value 2 |
  19. * | %o3 | argument 3 | return value 3 |
  20. * | %o4 | argument 4 | return value 4 |
  21. * -----------------------------------------------
  22. *
  23. * The second type are "hyper-fast traps" which encode the function
  24. * number in the software trap number itself. So these use trap
  25. * numbers > 0x80. The register usage for hyper-fast traps is as
  26. * follows:
  27. *
  28. * -----------------------------------------------
  29. * | %o0 | argument 0 | return status |
  30. * | %o1 | argument 1 | return value 1 |
  31. * | %o2 | argument 2 | return value 2 |
  32. * | %o3 | argument 3 | return value 3 |
  33. * | %o4 | argument 4 | return value 4 |
  34. * -----------------------------------------------
  35. *
  36. * Registers providing explicit arguments to the hypervisor calls
  37. * are volatile across the call. Upon return their values are
  38. * undefined unless explicitly specified as containing a particular
  39. * return value by the specific call. The return status is always
  40. * returned in register %o0, zero indicates a successful execution of
  41. * the hypervisor call and other values indicate an error status as
  42. * defined below. So, for example, if a hyper-fast trap takes
  43. * arguments 0, 1, and 2, then %o0, %o1, and %o2 are volatile across
  44. * the call and %o3, %o4, and %o5 would be preserved.
  45. *
  46. * If the hypervisor trap is invalid, or the fast trap function number
  47. * is invalid, HV_EBADTRAP will be returned in %o0. Also, all 64-bits
  48. * of the argument and return values are significant.
  49. */
  50. /* Trap numbers. */
  51. #define HV_FAST_TRAP 0x80
  52. #define HV_MMU_MAP_ADDR_TRAP 0x83
  53. #define HV_MMU_UNMAP_ADDR_TRAP 0x84
  54. #define HV_TTRACE_ADDENTRY_TRAP 0x85
  55. #define HV_CORE_TRAP 0xff
  56. /* Error codes. */
  57. #define HV_EOK 0 /* Successful return */
  58. #define HV_ENOCPU 1 /* Invalid CPU id */
  59. #define HV_ENORADDR 2 /* Invalid real address */
  60. #define HV_ENOINTR 3 /* Invalid interrupt id */
  61. #define HV_EBADPGSZ 4 /* Invalid pagesize encoding */
  62. #define HV_EBADTSB 5 /* Invalid TSB description */
  63. #define HV_EINVAL 6 /* Invalid argument */
  64. #define HV_EBADTRAP 7 /* Invalid function number */
  65. #define HV_EBADALIGN 8 /* Invalid address alignment */
  66. #define HV_EWOULDBLOCK 9 /* Cannot complete w/o blocking */
  67. #define HV_ENOACCESS 10 /* No access to resource */
  68. #define HV_EIO 11 /* I/O error */
  69. #define HV_ECPUERROR 12 /* CPU in error state */
  70. #define HV_ENOTSUPPORTED 13 /* Function not supported */
  71. #define HV_ENOMAP 14 /* No mapping found */
  72. #define HV_ETOOMANY 15 /* Too many items specified */
  73. /* mach_exit()
  74. * TRAP: HV_FAST_TRAP
  75. * FUNCTION: HV_FAST_MACH_EXIT
  76. * ARG0: exit code
  77. * ERRORS: This service does not return.
  78. *
  79. * Stop all CPUs in the virtual domain and place them into the stopped
  80. * state. The 64-bit exit code may be passed to a service entity as
  81. * the domain's exit status. On systems without a service entity, the
  82. * domain will undergo a reset, and the boot firmware will be
  83. * reloaded.
  84. *
  85. * This function will never return to the guest that invokes it.
  86. *
  87. * Note: By convention an exit code of zero denotes a successful exit by
  88. * the guest code. A non-zero exit code denotes a guest specific
  89. * error indication.
  90. *
  91. */
  92. #define HV_FAST_MACH_EXIT 0x00
  93. /* Domain services. */
  94. /* mach_desc()
  95. * TRAP: HV_FAST_TRAP
  96. * FUNCTION: HV_FAST_MACH_DESC
  97. * ARG0: buffer
  98. * ARG1: length
  99. * RET0: status
  100. * RET1: length
  101. * ERRORS: HV_EBADALIGN Buffer is badly aligned
  102. * HV_ENORADDR Buffer is to an illegal real address.
  103. * HV_EINVAL Buffer length is too small for complete
  104. * machine description.
  105. *
  106. * Copy the most current machine description into the buffer indicated
  107. * by the real address in ARG0. The buffer provided must be 16 byte
  108. * aligned. Upon success or HV_EINVAL, this service returns the
  109. * actual size of the machine description in the RET1 return value.
  110. *
  111. * Note: A method of determining the appropriate buffer size for the
  112. * machine description is to first call this service with a buffer
  113. * length of 0 bytes.
  114. */
  115. #define HV_FAST_MACH_DESC 0x01
  116. /* mach_exit()
  117. * TRAP: HV_FAST_TRAP
  118. * FUNCTION: HV_FAST_MACH_SIR
  119. * ERRORS: This service does not return.
  120. *
  121. * Perform a software initiated reset of the virtual machine domain.
  122. * All CPUs are captured as soon as possible, all hardware devices are
  123. * returned to the entry default state, and the domain is restarted at
  124. * the SIR (trap type 0x04) real trap table (RTBA) entry point on one
  125. * of the CPUs. The single CPU restarted is selected as determined by
  126. * platform specific policy. Memory is preserved across this
  127. * operation.
  128. */
  129. #define HV_FAST_MACH_SIR 0x02
  130. /* mach_set_soft_state()
  131. * TRAP: HV_FAST_TRAP
  132. * FUNCTION: HV_FAST_MACH_SET_SOFT_STATE
  133. * ARG0: software state
  134. * ARG1: software state description pointer
  135. * RET0: status
  136. * ERRORS: EINVAL software state not valid or software state
  137. * description is not NULL terminated
  138. * ENORADDR software state description pointer is not a
  139. * valid real address
  140. * EBADALIGNED software state description is not correctly
  141. * aligned
  142. *
  143. * This allows the guest to report it's soft state to the hypervisor. There
  144. * are two primary components to this state. The first part states whether
  145. * the guest software is running or not. The second containts optional
  146. * details specific to the software.
  147. *
  148. * The software state argument is defined below in HV_SOFT_STATE_*, and
  149. * indicates whether the guest is operating normally or in a transitional
  150. * state.
  151. *
  152. * The software state description argument is a real address of a data buffer
  153. * of size 32-bytes aligned on a 32-byte boundary. It is treated as a NULL
  154. * terminated 7-bit ASCII string of up to 31 characters not including the
  155. * NULL termination.
  156. */
  157. #define HV_FAST_MACH_SET_SOFT_STATE 0x03
  158. #define HV_SOFT_STATE_NORMAL 0x01
  159. #define HV_SOFT_STATE_TRANSITION 0x02
  160. /* mach_get_soft_state()
  161. * TRAP: HV_FAST_TRAP
  162. * FUNCTION: HV_FAST_MACH_GET_SOFT_STATE
  163. * ARG0: software state description pointer
  164. * RET0: status
  165. * RET1: software state
  166. * ERRORS: ENORADDR software state description pointer is not a
  167. * valid real address
  168. * EBADALIGNED software state description is not correctly
  169. * aligned
  170. *
  171. * Retrieve the current value of the guest's software state. The rules
  172. * for the software state pointer are the same as for mach_set_soft_state()
  173. * above.
  174. */
  175. #define HV_FAST_MACH_GET_SOFT_STATE 0x04
  176. /* CPU services.
  177. *
  178. * CPUs represent devices that can execute software threads. A single
  179. * chip that contains multiple cores or strands is represented as
  180. * multiple CPUs with unique CPU identifiers. CPUs are exported to
  181. * OBP via the machine description (and to the OS via the OBP device
  182. * tree). CPUs are always in one of three states: stopped, running,
  183. * or error.
  184. *
  185. * A CPU ID is a pre-assigned 16-bit value that uniquely identifies a
  186. * CPU within a logical domain. Operations that are to be performed
  187. * on multiple CPUs specify them via a CPU list. A CPU list is an
  188. * array in real memory, of which each 16-bit word is a CPU ID. CPU
  189. * lists are passed through the API as two arguments. The first is
  190. * the number of entries (16-bit words) in the CPU list, and the
  191. * second is the (real address) pointer to the CPU ID list.
  192. */
  193. /* cpu_start()
  194. * TRAP: HV_FAST_TRAP
  195. * FUNCTION: HV_FAST_CPU_START
  196. * ARG0: CPU ID
  197. * ARG1: PC
  198. * ARG1: RTBA
  199. * ARG1: target ARG0
  200. * RET0: status
  201. * ERRORS: ENOCPU Invalid CPU ID
  202. * EINVAL Target CPU ID is not in the stopped state
  203. * ENORADDR Invalid PC or RTBA real address
  204. * EBADALIGN Unaligned PC or unaligned RTBA
  205. * EWOULDBLOCK Starting resources are not available
  206. *
  207. * Start CPU with given CPU ID with PC in %pc and with a real trap
  208. * base address value of RTBA. The indicated CPU must be in the
  209. * stopped state. The supplied RTBA must be aligned on a 256 byte
  210. * boundary. On successful completion, the specified CPU will be in
  211. * the running state and will be supplied with "target ARG0" in %o0
  212. * and RTBA in %tba.
  213. */
  214. #define HV_FAST_CPU_START 0x10
  215. /* cpu_stop()
  216. * TRAP: HV_FAST_TRAP
  217. * FUNCTION: HV_FAST_CPU_STOP
  218. * ARG0: CPU ID
  219. * RET0: status
  220. * ERRORS: ENOCPU Invalid CPU ID
  221. * EINVAL Target CPU ID is the current cpu
  222. * EINVAL Target CPU ID is not in the running state
  223. * EWOULDBLOCK Stopping resources are not available
  224. * ENOTSUPPORTED Not supported on this platform
  225. *
  226. * The specified CPU is stopped. The indicated CPU must be in the
  227. * running state. On completion, it will be in the stopped state. It
  228. * is not legal to stop the current CPU.
  229. *
  230. * Note: As this service cannot be used to stop the current cpu, this service
  231. * may not be used to stop the last running CPU in a domain. To stop
  232. * and exit a running domain, a guest must use the mach_exit() service.
  233. */
  234. #define HV_FAST_CPU_STOP 0x11
  235. /* cpu_yield()
  236. * TRAP: HV_FAST_TRAP
  237. * FUNCTION: HV_FAST_CPU_YIELD
  238. * RET0: status
  239. * ERRORS: No possible error.
  240. *
  241. * Suspend execution on the current CPU. Execution will resume when
  242. * an interrupt (device, %stick_compare, or cross-call) is targeted to
  243. * the CPU. On some CPUs, this API may be used by the hypervisor to
  244. * save power by disabling hardware strands.
  245. */
  246. #define HV_FAST_CPU_YIELD 0x12
  247. /* cpu_qconf()
  248. * TRAP: HV_FAST_TRAP
  249. * FUNCTION: HV_FAST_CPU_QCONF
  250. * ARG0: queue
  251. * ARG1: base real address
  252. * ARG2: number of entries
  253. * RET0: status
  254. * ERRORS: ENORADDR Invalid base real address
  255. * EINVAL Invalid queue or number of entries is less
  256. * than 2 or too large.
  257. * EBADALIGN Base real address is not correctly aligned
  258. * for size.
  259. *
  260. * Configure the given queue to be placed at the given base real
  261. * address, with the given number of entries. The number of entries
  262. * must be a power of 2. The base real address must be aligned
  263. * exactly to match the queue size. Each queue entry is 64 bytes
  264. * long, so for example a 32 entry queue must be aligned on a 2048
  265. * byte real address boundary.
  266. *
  267. * The specified queue is unconfigured if the number of entries is given
  268. * as zero.
  269. *
  270. * For the current version of this API service, the argument queue is defined
  271. * as follows:
  272. *
  273. * queue description
  274. * ----- -------------------------
  275. * 0x3c cpu mondo queue
  276. * 0x3d device mondo queue
  277. * 0x3e resumable error queue
  278. * 0x3f non-resumable error queue
  279. *
  280. * Note: The maximum number of entries for each queue for a specific cpu may
  281. * be determined from the machine description.
  282. */
  283. #define HV_FAST_CPU_QCONF 0x14
  284. #define HV_CPU_QUEUE_CPU_MONDO 0x3c
  285. #define HV_CPU_QUEUE_DEVICE_MONDO 0x3d
  286. #define HV_CPU_QUEUE_RES_ERROR 0x3e
  287. #define HV_CPU_QUEUE_NONRES_ERROR 0x3f
  288. /* cpu_qinfo()
  289. * TRAP: HV_FAST_TRAP
  290. * FUNCTION: HV_FAST_CPU_QINFO
  291. * ARG0: queue
  292. * RET0: status
  293. * RET1: base real address
  294. * RET1: number of entries
  295. * ERRORS: EINVAL Invalid queue
  296. *
  297. * Return the configuration info for the given queue. The base real
  298. * address and number of entries of the defined queue are returned.
  299. * The queue argument values are the same as for cpu_qconf() above.
  300. *
  301. * If the specified queue is a valid queue number, but no queue has
  302. * been defined, the number of entries will be set to zero and the
  303. * base real address returned is undefined.
  304. */
  305. #define HV_FAST_CPU_QINFO 0x15
  306. /* cpu_mondo_send()
  307. * TRAP: HV_FAST_TRAP
  308. * FUNCTION: HV_FAST_CPU_MONDO_SEND
  309. * ARG0-1: CPU list
  310. * ARG2: data real address
  311. * RET0: status
  312. * ERRORS: EBADALIGN Mondo data is not 64-byte aligned or CPU list
  313. * is not 2-byte aligned.
  314. * ENORADDR Invalid data mondo address, or invalid cpu list
  315. * address.
  316. * ENOCPU Invalid cpu in CPU list
  317. * EWOULDBLOCK Some or all of the listed CPUs did not receive
  318. * the mondo
  319. * EINVAL CPU list includes caller's CPU ID
  320. *
  321. * Send a mondo interrupt to the CPUs in the given CPU list with the
  322. * 64-bytes at the given data real address. The data must be 64-byte
  323. * aligned. The mondo data will be delivered to the cpu_mondo queues
  324. * of the recipient CPUs.
  325. *
  326. * In all cases, error or not, the CPUs in the CPU list to which the
  327. * mondo has been successfully delivered will be indicated by having
  328. * their entry in CPU list updated with the value 0xffff.
  329. */
  330. #define HV_FAST_CPU_MONDO_SEND 0x42
  331. /* cpu_myid()
  332. * TRAP: HV_FAST_TRAP
  333. * FUNCTION: HV_FAST_CPU_MYID
  334. * RET0: status
  335. * RET1: CPU ID
  336. * ERRORS: No errors defined.
  337. *
  338. * Return the hypervisor ID handle for the current CPU. Use by a
  339. * virtual CPU to discover it's own identity.
  340. */
  341. #define HV_FAST_CPU_MYID 0x16
  342. /* cpu_state()
  343. * TRAP: HV_FAST_TRAP
  344. * FUNCTION: HV_FAST_CPU_STATE
  345. * ARG0: CPU ID
  346. * RET0: status
  347. * RET1: state
  348. * ERRORS: ENOCPU Invalid CPU ID
  349. *
  350. * Retrieve the current state of the CPU with the given CPU ID.
  351. */
  352. #define HV_FAST_CPU_STATE 0x17
  353. #define HV_CPU_STATE_STOPPED 0x01
  354. #define HV_CPU_STATE_RUNNING 0x02
  355. #define HV_CPU_STATE_ERROR 0x03
  356. /* cpu_set_rtba()
  357. * TRAP: HV_FAST_TRAP
  358. * FUNCTION: HV_FAST_CPU_SET_RTBA
  359. * ARG0: RTBA
  360. * RET0: status
  361. * RET1: previous RTBA
  362. * ERRORS: ENORADDR Invalid RTBA real address
  363. * EBADALIGN RTBA is incorrectly aligned for a trap table
  364. *
  365. * Set the real trap base address of the local cpu to the given RTBA.
  366. * The supplied RTBA must be aligned on a 256 byte boundary. Upon
  367. * success the previous value of the RTBA is returned in RET1.
  368. *
  369. * Note: This service does not affect %tba
  370. */
  371. #define HV_FAST_CPU_SET_RTBA 0x18
  372. /* cpu_set_rtba()
  373. * TRAP: HV_FAST_TRAP
  374. * FUNCTION: HV_FAST_CPU_GET_RTBA
  375. * RET0: status
  376. * RET1: previous RTBA
  377. * ERRORS: No possible error.
  378. *
  379. * Returns the current value of RTBA in RET1.
  380. */
  381. #define HV_FAST_CPU_GET_RTBA 0x19
  382. /* MMU services.
  383. *
  384. * Layout of a TSB description for mmu_tsb_ctx{,non}0() calls.
  385. */
  386. #ifndef __ASSEMBLY__
  387. struct hv_tsb_descr {
  388. unsigned short pgsz_idx;
  389. unsigned short assoc;
  390. unsigned int num_ttes; /* in TTEs */
  391. unsigned int ctx_idx;
  392. unsigned int pgsz_mask;
  393. unsigned long tsb_base;
  394. unsigned long resv;
  395. };
  396. #endif
  397. #define HV_TSB_DESCR_PGSZ_IDX_OFFSET 0x00
  398. #define HV_TSB_DESCR_ASSOC_OFFSET 0x02
  399. #define HV_TSB_DESCR_NUM_TTES_OFFSET 0x04
  400. #define HV_TSB_DESCR_CTX_IDX_OFFSET 0x08
  401. #define HV_TSB_DESCR_PGSZ_MASK_OFFSET 0x0c
  402. #define HV_TSB_DESCR_TSB_BASE_OFFSET 0x10
  403. #define HV_TSB_DESCR_RESV_OFFSET 0x18
  404. /* Page size bitmask. */
  405. #define HV_PGSZ_MASK_8K (1 << 0)
  406. #define HV_PGSZ_MASK_64K (1 << 1)
  407. #define HV_PGSZ_MASK_512K (1 << 2)
  408. #define HV_PGSZ_MASK_4MB (1 << 3)
  409. #define HV_PGSZ_MASK_32MB (1 << 4)
  410. #define HV_PGSZ_MASK_256MB (1 << 5)
  411. #define HV_PGSZ_MASK_2GB (1 << 6)
  412. #define HV_PGSZ_MASK_16GB (1 << 7)
  413. /* Page size index. The value given in the TSB descriptor must correspond
  414. * to the smallest page size specified in the pgsz_mask page size bitmask.
  415. */
  416. #define HV_PGSZ_IDX_8K 0
  417. #define HV_PGSZ_IDX_64K 1
  418. #define HV_PGSZ_IDX_512K 2
  419. #define HV_PGSZ_IDX_4MB 3
  420. #define HV_PGSZ_IDX_32MB 4
  421. #define HV_PGSZ_IDX_256MB 5
  422. #define HV_PGSZ_IDX_2GB 6
  423. #define HV_PGSZ_IDX_16GB 7
  424. /* MMU fault status area.
  425. *
  426. * MMU related faults have their status and fault address information
  427. * placed into a memory region made available by privileged code. Each
  428. * virtual processor must make a mmu_fault_area_conf() call to tell the
  429. * hypervisor where that processor's fault status should be stored.
  430. *
  431. * The fault status block is a multiple of 64-bytes and must be aligned
  432. * on a 64-byte boundary.
  433. */
  434. #ifndef __ASSEMBLY__
  435. struct hv_fault_status {
  436. unsigned long i_fault_type;
  437. unsigned long i_fault_addr;
  438. unsigned long i_fault_ctx;
  439. unsigned long i_reserved[5];
  440. unsigned long d_fault_type;
  441. unsigned long d_fault_addr;
  442. unsigned long d_fault_ctx;
  443. unsigned long d_reserved[5];
  444. };
  445. #endif
  446. #define HV_FAULT_I_TYPE_OFFSET 0x00
  447. #define HV_FAULT_I_ADDR_OFFSET 0x08
  448. #define HV_FAULT_I_CTX_OFFSET 0x10
  449. #define HV_FAULT_D_TYPE_OFFSET 0x40
  450. #define HV_FAULT_D_ADDR_OFFSET 0x48
  451. #define HV_FAULT_D_CTX_OFFSET 0x50
  452. #define HV_FAULT_TYPE_FAST_MISS 1
  453. #define HV_FAULT_TYPE_FAST_PROT 2
  454. #define HV_FAULT_TYPE_MMU_MISS 3
  455. #define HV_FAULT_TYPE_INV_RA 4
  456. #define HV_FAULT_TYPE_PRIV_VIOL 5
  457. #define HV_FAULT_TYPE_PROT_VIOL 6
  458. #define HV_FAULT_TYPE_NFO 7
  459. #define HV_FAULT_TYPE_NFO_SEFF 8
  460. #define HV_FAULT_TYPE_INV_VA 9
  461. #define HV_FAULT_TYPE_INV_ASI 10
  462. #define HV_FAULT_TYPE_NC_ATOMIC 11
  463. #define HV_FAULT_TYPE_PRIV_ACT 12
  464. #define HV_FAULT_TYPE_RESV1 13
  465. #define HV_FAULT_TYPE_UNALIGNED 14
  466. #define HV_FAULT_TYPE_INV_PGSZ 15
  467. /* Values 16 --> -2 are reserved. */
  468. #define HV_FAULT_TYPE_MULTIPLE -1
  469. /* Flags argument for mmu_{map,unmap}_addr(), mmu_demap_{page,context,all}(),
  470. * and mmu_{map,unmap}_perm_addr().
  471. */
  472. #define HV_MMU_DMMU 0x01
  473. #define HV_MMU_IMMU 0x02
  474. #define HV_MMU_ALL (HV_MMU_DMMU | HV_MMU_IMMU)
  475. /* mmu_map_addr()
  476. * TRAP: HV_MMU_MAP_ADDR_TRAP
  477. * ARG0: virtual address
  478. * ARG1: mmu context
  479. * ARG2: TTE
  480. * ARG3: flags (HV_MMU_{IMMU,DMMU})
  481. * ERRORS: EINVAL Invalid virtual address, mmu context, or flags
  482. * EBADPGSZ Invalid page size value
  483. * ENORADDR Invalid real address in TTE
  484. *
  485. * Create a non-permanent mapping using the given TTE, virtual
  486. * address, and mmu context. The flags argument determines which
  487. * (data, or instruction, or both) TLB the mapping gets loaded into.
  488. *
  489. * The behavior is undefined if the valid bit is clear in the TTE.
  490. *
  491. * Note: This API call is for privileged code to specify temporary translation
  492. * mappings without the need to create and manage a TSB.
  493. */
  494. /* mmu_unmap_addr()
  495. * TRAP: HV_MMU_UNMAP_ADDR_TRAP
  496. * ARG0: virtual address
  497. * ARG1: mmu context
  498. * ARG2: flags (HV_MMU_{IMMU,DMMU})
  499. * ERRORS: EINVAL Invalid virtual address, mmu context, or flags
  500. *
  501. * Demaps the given virtual address in the given mmu context on this
  502. * CPU. This function is intended to be used to demap pages mapped
  503. * with mmu_map_addr. This service is equivalent to invoking
  504. * mmu_demap_page() with only the current CPU in the CPU list. The
  505. * flags argument determines which (data, or instruction, or both) TLB
  506. * the mapping gets unmapped from.
  507. *
  508. * Attempting to perform an unmap operation for a previously defined
  509. * permanent mapping will have undefined results.
  510. */
  511. /* mmu_tsb_ctx0()
  512. * TRAP: HV_FAST_TRAP
  513. * FUNCTION: HV_FAST_MMU_TSB_CTX0
  514. * ARG0: number of TSB descriptions
  515. * ARG1: TSB descriptions pointer
  516. * RET0: status
  517. * ERRORS: ENORADDR Invalid TSB descriptions pointer or
  518. * TSB base within a descriptor
  519. * EBADALIGN TSB descriptions pointer is not aligned
  520. * to an 8-byte boundary, or TSB base
  521. * within a descriptor is not aligned for
  522. * the given TSB size
  523. * EBADPGSZ Invalid page size in a TSB descriptor
  524. * EBADTSB Invalid associativity or size in a TSB
  525. * descriptor
  526. * EINVAL Invalid number of TSB descriptions, or
  527. * invalid context index in a TSB
  528. * descriptor, or index page size not
  529. * equal to smallest page size in page
  530. * size bitmask field.
  531. *
  532. * Configures the TSBs for the current CPU for virtual addresses with
  533. * context zero. The TSB descriptions pointer is a pointer to an
  534. * array of the given number of TSB descriptions.
  535. *
  536. * Note: The maximum number of TSBs available to a virtual CPU is given by the
  537. * mmu-max-#tsbs property of the cpu's corresponding "cpu" node in the
  538. * machine description.
  539. */
  540. #define HV_FAST_MMU_TSB_CTX0 0x20
  541. /* mmu_tsb_ctxnon0()
  542. * TRAP: HV_FAST_TRAP
  543. * FUNCTION: HV_FAST_MMU_TSB_CTXNON0
  544. * ARG0: number of TSB descriptions
  545. * ARG1: TSB descriptions pointer
  546. * RET0: status
  547. * ERRORS: Same as for mmu_tsb_ctx0() above.
  548. *
  549. * Configures the TSBs for the current CPU for virtual addresses with
  550. * non-zero contexts. The TSB descriptions pointer is a pointer to an
  551. * array of the given number of TSB descriptions.
  552. *
  553. * Note: A maximum of 16 TSBs may be specified in the TSB description list.
  554. */
  555. #define HV_FAST_MMU_TSB_CTXNON0 0x21
  556. /* mmu_demap_page()
  557. * TRAP: HV_FAST_TRAP
  558. * FUNCTION: HV_FAST_MMU_DEMAP_PAGE
  559. * ARG0: reserved, must be zero
  560. * ARG1: reserved, must be zero
  561. * ARG2: virtual address
  562. * ARG3: mmu context
  563. * ARG4: flags (HV_MMU_{IMMU,DMMU})
  564. * RET0: status
  565. * ERRORS: EINVAL Invalid virutal address, context, or
  566. * flags value
  567. * ENOTSUPPORTED ARG0 or ARG1 is non-zero
  568. *
  569. * Demaps any page mapping of the given virtual address in the given
  570. * mmu context for the current virtual CPU. Any virtually tagged
  571. * caches are guaranteed to be kept consistent. The flags argument
  572. * determines which TLB (instruction, or data, or both) participate in
  573. * the operation.
  574. *
  575. * ARG0 and ARG1 are both reserved and must be set to zero.
  576. */
  577. #define HV_FAST_MMU_DEMAP_PAGE 0x22
  578. /* mmu_demap_ctx()
  579. * TRAP: HV_FAST_TRAP
  580. * FUNCTION: HV_FAST_MMU_DEMAP_CTX
  581. * ARG0: reserved, must be zero
  582. * ARG1: reserved, must be zero
  583. * ARG2: mmu context
  584. * ARG3: flags (HV_MMU_{IMMU,DMMU})
  585. * RET0: status
  586. * ERRORS: EINVAL Invalid context or flags value
  587. * ENOTSUPPORTED ARG0 or ARG1 is non-zero
  588. *
  589. * Demaps all non-permanent virtual page mappings previously specified
  590. * for the given context for the current virtual CPU. Any virtual
  591. * tagged caches are guaranteed to be kept consistent. The flags
  592. * argument determines which TLB (instruction, or data, or both)
  593. * participate in the operation.
  594. *
  595. * ARG0 and ARG1 are both reserved and must be set to zero.
  596. */
  597. #define HV_FAST_MMU_DEMAP_CTX 0x23
  598. /* mmu_demap_all()
  599. * TRAP: HV_FAST_TRAP
  600. * FUNCTION: HV_FAST_MMU_DEMAP_ALL
  601. * ARG0: reserved, must be zero
  602. * ARG1: reserved, must be zero
  603. * ARG2: flags (HV_MMU_{IMMU,DMMU})
  604. * RET0: status
  605. * ERRORS: EINVAL Invalid flags value
  606. * ENOTSUPPORTED ARG0 or ARG1 is non-zero
  607. *
  608. * Demaps all non-permanent virtual page mappings previously specified
  609. * for the current virtual CPU. Any virtual tagged caches are
  610. * guaranteed to be kept consistent. The flags argument determines
  611. * which TLB (instruction, or data, or both) participate in the
  612. * operation.
  613. *
  614. * ARG0 and ARG1 are both reserved and must be set to zero.
  615. */
  616. #define HV_FAST_MMU_DEMAP_ALL 0x24
  617. /* mmu_map_perm_addr()
  618. * TRAP: HV_FAST_TRAP
  619. * FUNCTION: HV_FAST_MMU_MAP_PERM_ADDR
  620. * ARG0: virtual address
  621. * ARG1: reserved, must be zero
  622. * ARG2: TTE
  623. * ARG3: flags (HV_MMU_{IMMU,DMMU})
  624. * RET0: status
  625. * ERRORS: EINVAL Invalid virutal address or flags value
  626. * EBADPGSZ Invalid page size value
  627. * ENORADDR Invalid real address in TTE
  628. * ETOOMANY Too many mappings (max of 8 reached)
  629. *
  630. * Create a permanent mapping using the given TTE and virtual address
  631. * for context 0 on the calling virtual CPU. A maximum of 8 such
  632. * permanent mappings may be specified by privileged code. Mappings
  633. * may be removed with mmu_unmap_perm_addr().
  634. *
  635. * The behavior is undefined if a TTE with the valid bit clear is given.
  636. *
  637. * Note: This call is used to specify address space mappings for which
  638. * privileged code does not expect to receive misses. For example,
  639. * this mechanism can be used to map kernel nucleus code and data.
  640. */
  641. #define HV_FAST_MMU_MAP_PERM_ADDR 0x25
  642. /* mmu_fault_area_conf()
  643. * TRAP: HV_FAST_TRAP
  644. * FUNCTION: HV_FAST_MMU_FAULT_AREA_CONF
  645. * ARG0: real address
  646. * RET0: status
  647. * RET1: previous mmu fault area real address
  648. * ERRORS: ENORADDR Invalid real address
  649. * EBADALIGN Invalid alignment for fault area
  650. *
  651. * Configure the MMU fault status area for the calling CPU. A 64-byte
  652. * aligned real address specifies where MMU fault status information
  653. * is placed. The return value is the previously specified area, or 0
  654. * for the first invocation. Specifying a fault area at real address
  655. * 0 is not allowed.
  656. */
  657. #define HV_FAST_MMU_FAULT_AREA_CONF 0x26
  658. /* mmu_enable()
  659. * TRAP: HV_FAST_TRAP
  660. * FUNCTION: HV_FAST_MMU_ENABLE
  661. * ARG0: enable flag
  662. * ARG1: return target address
  663. * RET0: status
  664. * ERRORS: ENORADDR Invalid real address when disabling
  665. * translation.
  666. * EBADALIGN The return target address is not
  667. * aligned to an instruction.
  668. * EINVAL The enable flag request the current
  669. * operating mode (e.g. disable if already
  670. * disabled)
  671. *
  672. * Enable or disable virtual address translation for the calling CPU
  673. * within the virtual machine domain. If the enable flag is zero,
  674. * translation is disabled, any non-zero value will enable
  675. * translation.
  676. *
  677. * When this function returns, the newly selected translation mode
  678. * will be active. If the mmu is being enabled, then the return
  679. * target address is a virtual address else it is a real address.
  680. *
  681. * Upon successful completion, control will be returned to the given
  682. * return target address (ie. the cpu will jump to that address). On
  683. * failure, the previous mmu mode remains and the trap simply returns
  684. * as normal with the appropriate error code in RET0.
  685. */
  686. #define HV_FAST_MMU_ENABLE 0x27
  687. /* mmu_unmap_perm_addr()
  688. * TRAP: HV_FAST_TRAP
  689. * FUNCTION: HV_FAST_MMU_UNMAP_PERM_ADDR
  690. * ARG0: virtual address
  691. * ARG1: reserved, must be zero
  692. * ARG2: flags (HV_MMU_{IMMU,DMMU})
  693. * RET0: status
  694. * ERRORS: EINVAL Invalid virutal address or flags value
  695. * ENOMAP Specified mapping was not found
  696. *
  697. * Demaps any permanent page mapping (established via
  698. * mmu_map_perm_addr()) at the given virtual address for context 0 on
  699. * the current virtual CPU. Any virtual tagged caches are guaranteed
  700. * to be kept consistent.
  701. */
  702. #define HV_FAST_MMU_UNMAP_PERM_ADDR 0x28
  703. /* mmu_tsb_ctx0_info()
  704. * TRAP: HV_FAST_TRAP
  705. * FUNCTION: HV_FAST_MMU_TSB_CTX0_INFO
  706. * ARG0: max TSBs
  707. * ARG1: buffer pointer
  708. * RET0: status
  709. * RET1: number of TSBs
  710. * ERRORS: EINVAL Supplied buffer is too small
  711. * EBADALIGN The buffer pointer is badly aligned
  712. * ENORADDR Invalid real address for buffer pointer
  713. *
  714. * Return the TSB configuration as previous defined by mmu_tsb_ctx0()
  715. * into the provided buffer. The size of the buffer is given in ARG1
  716. * in terms of the number of TSB description entries.
  717. *
  718. * Upon return, RET1 always contains the number of TSB descriptions
  719. * previously configured. If zero TSBs were configured, EOK is
  720. * returned with RET1 containing 0.
  721. */
  722. #define HV_FAST_MMU_TSB_CTX0_INFO 0x29
  723. /* mmu_tsb_ctxnon0_info()
  724. * TRAP: HV_FAST_TRAP
  725. * FUNCTION: HV_FAST_MMU_TSB_CTXNON0_INFO
  726. * ARG0: max TSBs
  727. * ARG1: buffer pointer
  728. * RET0: status
  729. * RET1: number of TSBs
  730. * ERRORS: EINVAL Supplied buffer is too small
  731. * EBADALIGN The buffer pointer is badly aligned
  732. * ENORADDR Invalid real address for buffer pointer
  733. *
  734. * Return the TSB configuration as previous defined by
  735. * mmu_tsb_ctxnon0() into the provided buffer. The size of the buffer
  736. * is given in ARG1 in terms of the number of TSB description entries.
  737. *
  738. * Upon return, RET1 always contains the number of TSB descriptions
  739. * previously configured. If zero TSBs were configured, EOK is
  740. * returned with RET1 containing 0.
  741. */
  742. #define HV_FAST_MMU_TSB_CTXNON0_INFO 0x2a
  743. /* mmu_fault_area_info()
  744. * TRAP: HV_FAST_TRAP
  745. * FUNCTION: HV_FAST_MMU_FAULT_AREA_INFO
  746. * RET0: status
  747. * RET1: fault area real address
  748. * ERRORS: No errors defined.
  749. *
  750. * Return the currently defined MMU fault status area for the current
  751. * CPU. The real address of the fault status area is returned in
  752. * RET1, or 0 is returned in RET1 if no fault status area is defined.
  753. *
  754. * Note: mmu_fault_area_conf() may be called with the return value (RET1)
  755. * from this service if there is a need to save and restore the fault
  756. * area for a cpu.
  757. */
  758. #define HV_FAST_MMU_FAULT_AREA_INFO 0x2b
  759. /* Cache and Memory services. */
  760. /* mem_scrub()
  761. * TRAP: HV_FAST_TRAP
  762. * FUNCTION: HV_FAST_MEM_SCRUB
  763. * ARG0: real address
  764. * ARG1: length
  765. * RET0: status
  766. * RET1: length scrubbed
  767. * ERRORS: ENORADDR Invalid real address
  768. * EBADALIGN Start address or length are not correctly
  769. * aligned
  770. * EINVAL Length is zero
  771. *
  772. * Zero the memory contents in the range real address to real address
  773. * plus length minus 1. Also, valid ECC will be generated for that
  774. * memory address range. Scrubbing is started at the given real
  775. * address, but may not scrub the entire given length. The actual
  776. * length scrubbed will be returned in RET1.
  777. *
  778. * The real address and length must be aligned on an 8K boundary, or
  779. * contain the start address and length from a sun4v error report.
  780. *
  781. * Note: There are two uses for this function. The first use is to block clear
  782. * and initialize memory and the second is to scrub an u ncorrectable
  783. * error reported via a resumable or non-resumable trap. The second
  784. * use requires the arguments to be equal to the real address and length
  785. * provided in a sun4v memory error report.
  786. */
  787. #define HV_FAST_MEM_SCRUB 0x31
  788. /* mem_sync()
  789. * TRAP: HV_FAST_TRAP
  790. * FUNCTION: HV_FAST_MEM_SYNC
  791. * ARG0: real address
  792. * ARG1: length
  793. * RET0: status
  794. * RET1: length synced
  795. * ERRORS: ENORADDR Invalid real address
  796. * EBADALIGN Start address or length are not correctly
  797. * aligned
  798. * EINVAL Length is zero
  799. *
  800. * Force the next access within the real address to real address plus
  801. * length minus 1 to be fetches from main system memory. Less than
  802. * the given length may be synced, the actual amount synced is
  803. * returned in RET1. The real address and length must be aligned on
  804. * an 8K boundary.
  805. */
  806. #define HV_FAST_MEM_SYNC 0x32
  807. /* Time of day services.
  808. *
  809. * The hypervisor maintains the time of day on a per-domain basis.
  810. * Changing the time of day in one domain does not affect the time of
  811. * day on any other domain.
  812. *
  813. * Time is described by a single unsigned 64-bit word which is the
  814. * number of seconds since the UNIX Epoch (00:00:00 UTC, January 1,
  815. * 1970).
  816. */
  817. /* tod_get()
  818. * TRAP: HV_FAST_TRAP
  819. * FUNCTION: HV_FAST_TOD_GET
  820. * RET0: status
  821. * RET1: TOD
  822. * ERRORS: EWOULDBLOCK TOD resource is temporarily unavailable
  823. * ENOTSUPPORTED If TOD not supported on this platform
  824. *
  825. * Return the current time of day. May block if TOD access is
  826. * temporarily not possible.
  827. */
  828. #define HV_FAST_TOD_GET 0x50
  829. /* tod_set()
  830. * TRAP: HV_FAST_TRAP
  831. * FUNCTION: HV_FAST_TOD_SET
  832. * ARG0: TOD
  833. * RET0: status
  834. * ERRORS: EWOULDBLOCK TOD resource is temporarily unavailable
  835. * ENOTSUPPORTED If TOD not supported on this platform
  836. *
  837. * The current time of day is set to the value specified in ARG0. May
  838. * block if TOD access is temporarily not possible.
  839. */
  840. #define HV_FAST_TOD_SET 0x51
  841. /* Console services */
  842. /* con_getchar()
  843. * TRAP: HV_FAST_TRAP
  844. * FUNCTION: HV_FAST_CONS_GETCHAR
  845. * RET0: status
  846. * RET1: character
  847. * ERRORS: EWOULDBLOCK No character available.
  848. *
  849. * Returns a character from the console device. If no character is
  850. * available then an EWOULDBLOCK error is returned. If a character is
  851. * available, then the returned status is EOK and the character value
  852. * is in RET1.
  853. *
  854. * A virtual BREAK is represented by the 64-bit value -1.
  855. *
  856. * A virtual HUP signal is represented by the 64-bit value -2.
  857. */
  858. #define HV_FAST_CONS_GETCHAR 0x60
  859. /* con_putchar()
  860. * TRAP: HV_FAST_TRAP
  861. * FUNCTION: HV_FAST_CONS_PUTCHAR
  862. * ARG0: character
  863. * RET0: status
  864. * ERRORS: EINVAL Illegal character
  865. * EWOULDBLOCK Output buffer currentl full, would block
  866. *
  867. * Send a character to the console device. Only character values
  868. * between 0 and 255 may be used. Values outside this range are
  869. * invalid except for the 64-bit value -1 which is used to send a
  870. * virtual BREAK.
  871. */
  872. #define HV_FAST_CONS_PUTCHAR 0x61
  873. /* Trap trace services.
  874. *
  875. * The hypervisor provides a trap tracing capability for privileged
  876. * code running on each virtual CPU. Privileged code provides a
  877. * round-robin trap trace queue within which the hypervisor writes
  878. * 64-byte entries detailing hyperprivileged traps taken n behalf of
  879. * privileged code. This is provided as a debugging capability for
  880. * privileged code.
  881. *
  882. * The trap trace control structure is 64-bytes long and placed at the
  883. * start (offset 0) of the trap trace buffer, and is described as
  884. * follows:
  885. */
  886. #ifndef __ASSEMBLY__
  887. struct hv_trap_trace_control {
  888. unsigned long head_offset;
  889. unsigned long tail_offset;
  890. unsigned long __reserved[0x30 / sizeof(unsigned long)];
  891. };
  892. #endif
  893. #define HV_TRAP_TRACE_CTRL_HEAD_OFFSET 0x00
  894. #define HV_TRAP_TRACE_CTRL_TAIL_OFFSET 0x08
  895. /* The head offset is the offset of the most recently completed entry
  896. * in the trap-trace buffer. The tail offset is the offset of the
  897. * next entry to be written. The control structure is owned and
  898. * modified by the hypervisor. A guest may not modify the control
  899. * structure contents. Attempts to do so will result in undefined
  900. * behavior for the guest.
  901. *
  902. * Each trap trace buffer entry is layed out as follows:
  903. */
  904. #ifndef __ASSEMBLY__
  905. struct hv_trap_trace_entry {
  906. unsigned char type; /* Hypervisor or guest entry? */
  907. unsigned char hpstate; /* Hyper-privileged state */
  908. unsigned char tl; /* Trap level */
  909. unsigned char gl; /* Global register level */
  910. unsigned short tt; /* Trap type */
  911. unsigned short tag; /* Extended trap identifier */
  912. unsigned long tstate; /* Trap state */
  913. unsigned long tick; /* Tick */
  914. unsigned long tpc; /* Trap PC */
  915. unsigned long f1; /* Entry specific */
  916. unsigned long f2; /* Entry specific */
  917. unsigned long f3; /* Entry specific */
  918. unsigned long f4; /* Entry specific */
  919. };
  920. #endif
  921. #define HV_TRAP_TRACE_ENTRY_TYPE 0x00
  922. #define HV_TRAP_TRACE_ENTRY_HPSTATE 0x01
  923. #define HV_TRAP_TRACE_ENTRY_TL 0x02
  924. #define HV_TRAP_TRACE_ENTRY_GL 0x03
  925. #define HV_TRAP_TRACE_ENTRY_TT 0x04
  926. #define HV_TRAP_TRACE_ENTRY_TAG 0x06
  927. #define HV_TRAP_TRACE_ENTRY_TSTATE 0x08
  928. #define HV_TRAP_TRACE_ENTRY_TICK 0x10
  929. #define HV_TRAP_TRACE_ENTRY_TPC 0x18
  930. #define HV_TRAP_TRACE_ENTRY_F1 0x20
  931. #define HV_TRAP_TRACE_ENTRY_F2 0x28
  932. #define HV_TRAP_TRACE_ENTRY_F3 0x30
  933. #define HV_TRAP_TRACE_ENTRY_F4 0x38
  934. /* The type field is encoded as follows. */
  935. #define HV_TRAP_TYPE_UNDEF 0x00 /* Entry content undefined */
  936. #define HV_TRAP_TYPE_HV 0x01 /* Hypervisor trap entry */
  937. #define HV_TRAP_TYPE_GUEST 0xff /* Added via ttrace_addentry() */
  938. /* ttrace_buf_conf()
  939. * TRAP: HV_FAST_TRAP
  940. * FUNCTION: HV_FAST_TTRACE_BUF_CONF
  941. * ARG0: real address
  942. * ARG1: number of entries
  943. * RET0: status
  944. * RET1: number of entries
  945. * ERRORS: ENORADDR Invalid real address
  946. * EINVAL Size is too small
  947. * EBADALIGN Real address not aligned on 64-byte boundary
  948. *
  949. * Requests hypervisor trap tracing and declares a virtual CPU's trap
  950. * trace buffer to the hypervisor. The real address supplies the real
  951. * base address of the trap trace queue and must be 64-byte aligned.
  952. * Specifying a value of 0 for the number of entries disables trap
  953. * tracing for the calling virtual CPU. The buffer allocated must be
  954. * sized for a power of two number of 64-byte trap trace entries plus
  955. * an initial 64-byte control structure.
  956. *
  957. * This may be invoked any number of times so that a virtual CPU may
  958. * relocate a trap trace buffer or create "snapshots" of information.
  959. *
  960. * If the real address is illegal or badly aligned, then trap tracing
  961. * is disabled and an error is returned.
  962. *
  963. * Upon failure with EINVAL, this service call returns in RET1 the
  964. * minimum number of buffer entries required. Upon other failures
  965. * RET1 is undefined.
  966. */
  967. #define HV_FAST_TTRACE_BUF_CONF 0x90
  968. /* ttrace_buf_info()
  969. * TRAP: HV_FAST_TRAP
  970. * FUNCTION: HV_FAST_TTRACE_BUF_INFO
  971. * RET0: status
  972. * RET1: real address
  973. * RET2: size
  974. * ERRORS: None defined.
  975. *
  976. * Returns the size and location of the previously declared trap-trace
  977. * buffer. In the event that no buffer was previously defined, or the
  978. * buffer is disabled, this call will return a size of zero bytes.
  979. */
  980. #define HV_FAST_TTRACE_BUF_INFO 0x91
  981. /* ttrace_enable()
  982. * TRAP: HV_FAST_TRAP
  983. * FUNCTION: HV_FAST_TTRACE_ENABLE
  984. * ARG0: enable
  985. * RET0: status
  986. * RET1: previous enable state
  987. * ERRORS: EINVAL No trap trace buffer currently defined
  988. *
  989. * Enable or disable trap tracing, and return the previous enabled
  990. * state in RET1. Future systems may define various flags for the
  991. * enable argument (ARG0), for the moment a guest should pass
  992. * "(uint64_t) -1" to enable, and "(uint64_t) 0" to disable all
  993. * tracing - which will ensure future compatability.
  994. */
  995. #define HV_FAST_TTRACE_ENABLE 0x92
  996. /* ttrace_freeze()
  997. * TRAP: HV_FAST_TRAP
  998. * FUNCTION: HV_FAST_TTRACE_FREEZE
  999. * ARG0: freeze
  1000. * RET0: status
  1001. * RET1: previous freeze state
  1002. * ERRORS: EINVAL No trap trace buffer currently defined
  1003. *
  1004. * Freeze or unfreeze trap tracing, returning the previous freeze
  1005. * state in RET1. A guest should pass a non-zero value to freeze and
  1006. * a zero value to unfreeze all tracing. The returned previous state
  1007. * is 0 for not frozen and 1 for frozen.
  1008. */
  1009. #define HV_FAST_TTRACE_FREEZE 0x93
  1010. /* ttrace_addentry()
  1011. * TRAP: HV_TTRACE_ADDENTRY_TRAP
  1012. * ARG0: tag (16-bits)
  1013. * ARG1: data word 0
  1014. * ARG2: data word 1
  1015. * ARG3: data word 2
  1016. * ARG4: data word 3
  1017. * RET0: status
  1018. * ERRORS: EINVAL No trap trace buffer currently defined
  1019. *
  1020. * Add an entry to the trap trace buffer. Upon return only ARG0/RET0
  1021. * is modified - none of the other registers holding arguments are
  1022. * volatile across this hypervisor service.
  1023. */
  1024. /* Core dump services.
  1025. *
  1026. * Since the hypervisor viraulizes and thus obscures a lot of the
  1027. * physical machine layout and state, traditional OS crash dumps can
  1028. * be difficult to diagnose especially when the problem is a
  1029. * configuration error of some sort.
  1030. *
  1031. * The dump services provide an opaque buffer into which the
  1032. * hypervisor can place it's internal state in order to assist in
  1033. * debugging such situations. The contents are opaque and extremely
  1034. * platform and hypervisor implementation specific. The guest, during
  1035. * a core dump, requests that the hypervisor update any information in
  1036. * the dump buffer in preparation to being dumped as part of the
  1037. * domain's memory image.
  1038. */
  1039. /* dump_buf_update()
  1040. * TRAP: HV_FAST_TRAP
  1041. * FUNCTION: HV_FAST_DUMP_BUF_UPDATE
  1042. * ARG0: real address
  1043. * ARG1: size
  1044. * RET0: status
  1045. * RET1: required size of dump buffer
  1046. * ERRORS: ENORADDR Invalid real address
  1047. * EBADALIGN Real address is not aligned on a 64-byte
  1048. * boundary
  1049. * EINVAL Size is non-zero but less than minimum size
  1050. * required
  1051. * ENOTSUPPORTED Operation not supported on current logical
  1052. * domain
  1053. *
  1054. * Declare a domain dump buffer to the hypervisor. The real address
  1055. * provided for the domain dump buffer must be 64-byte aligned. The
  1056. * size specifies the size of the dump buffer and may be larger than
  1057. * the minimum size specified in the machine description. The
  1058. * hypervisor will fill the dump buffer with opaque data.
  1059. *
  1060. * Note: A guest may elect to include dump buffer contents as part of a crash
  1061. * dump to assist with debugging. This function may be called any number
  1062. * of times so that a guest may relocate a dump buffer, or create
  1063. * "snapshots" of any dump-buffer information. Each call to
  1064. * dump_buf_update() atomically declares the new dump buffer to the
  1065. * hypervisor.
  1066. *
  1067. * A specified size of 0 unconfigures the dump buffer. If the real
  1068. * address is illegal or badly aligned, then any currently active dump
  1069. * buffer is disabled and an error is returned.
  1070. *
  1071. * In the event that the call fails with EINVAL, RET1 contains the
  1072. * minimum size requires by the hypervisor for a valid dump buffer.
  1073. */
  1074. #define HV_FAST_DUMP_BUF_UPDATE 0x94
  1075. /* dump_buf_info()
  1076. * TRAP: HV_FAST_TRAP
  1077. * FUNCTION: HV_FAST_DUMP_BUF_INFO
  1078. * RET0: status
  1079. * RET1: real address of current dump buffer
  1080. * RET2: size of current dump buffer
  1081. * ERRORS: No errors defined.
  1082. *
  1083. * Return the currently configures dump buffer description. A
  1084. * returned size of 0 bytes indicates an undefined dump buffer. In
  1085. * this case the return address in RET1 is undefined.
  1086. */
  1087. #define HV_FAST_DUMP_BUF_INFO 0x95
  1088. /* Device interrupt services.
  1089. *
  1090. * Device interrupts are allocated to system bus bridges by the hypervisor,
  1091. * and described to OBP in the machine description. OBP then describes
  1092. * these interrupts to the OS via properties in the device tree.
  1093. *
  1094. * Terminology:
  1095. *
  1096. * cpuid Unique opaque value which represents a target cpu.
  1097. *
  1098. * devhandle Device handle. It uniquely identifies a device, and
  1099. * consistes of the lower 28-bits of the hi-cell of the
  1100. * first entry of the device's "reg" property in the
  1101. * OBP device tree.
  1102. *
  1103. * devino Device interrupt number. Specifies the relative
  1104. * interrupt number within the device. The unique
  1105. * combination of devhandle and devino are used to
  1106. * identify a specific device interrupt.
  1107. *
  1108. * Note: The devino value is the same as the values in the
  1109. * "interrupts" property or "interrupt-map" property
  1110. * in the OBP device tree for that device.
  1111. *
  1112. * sysino System interrupt number. A 64-bit unsigned interger
  1113. * representing a unique interrupt within a virtual
  1114. * machine.
  1115. *
  1116. * intr_state A flag representing the interrupt state for a given
  1117. * sysino. The state values are defined below.
  1118. *
  1119. * intr_enabled A flag representing the 'enabled' state for a given
  1120. * sysino. The enable values are defined below.
  1121. */
  1122. #define HV_INTR_STATE_IDLE 0 /* Nothing pending */
  1123. #define HV_INTR_STATE_RECEIVED 1 /* Interrupt received by hardware */
  1124. #define HV_INTR_STATE_DELIVERED 2 /* Interrupt delivered to queue */
  1125. #define HV_INTR_DISABLED 0 /* sysino not enabled */
  1126. #define HV_INTR_ENABLED 1 /* sysino enabled */
  1127. /* intr_devino_to_sysino()
  1128. * TRAP: HV_FAST_TRAP
  1129. * FUNCTION: HV_FAST_INTR_DEVINO2SYSINO
  1130. * ARG0: devhandle
  1131. * ARG1: devino
  1132. * RET0: status
  1133. * RET1: sysino
  1134. * ERRORS: EINVAL Invalid devhandle/devino
  1135. *
  1136. * Converts a device specific interrupt number of the given
  1137. * devhandle/devino into a system specific ino (sysino).
  1138. */
  1139. #define HV_FAST_INTR_DEVINO2SYSINO 0xa0
  1140. #ifndef __ASSEMBLY__
  1141. extern unsigned long sun4v_devino_to_sysino(unsigned long devhandle,
  1142. unsigned long devino);
  1143. #endif
  1144. /* intr_getenabled()
  1145. * TRAP: HV_FAST_TRAP
  1146. * FUNCTION: HV_FAST_INTR_GETENABLED
  1147. * ARG0: sysino
  1148. * RET0: status
  1149. * RET1: intr_enabled (HV_INTR_{DISABLED,ENABLED})
  1150. * ERRORS: EINVAL Invalid sysino
  1151. *
  1152. * Returns interrupt enabled state in RET1 for the interrupt defined
  1153. * by the given sysino.
  1154. */
  1155. #define HV_FAST_INTR_GETENABLED 0xa1
  1156. /* intr_setenabled()
  1157. * TRAP: HV_FAST_TRAP
  1158. * FUNCTION: HV_FAST_INTR_SETENABLED
  1159. * ARG0: sysino
  1160. * ARG1: intr_enabled (HV_INTR_{DISABLED,ENABLED})
  1161. * RET0: status
  1162. * ERRORS: EINVAL Invalid sysino or intr_enabled value
  1163. *
  1164. * Set the 'enabled' state of the interrupt sysino.
  1165. */
  1166. #define HV_FAST_INTR_SETENABLED 0xa2
  1167. /* intr_getstate()
  1168. * TRAP: HV_FAST_TRAP
  1169. * FUNCTION: HV_FAST_INTR_GETSTATE
  1170. * ARG0: sysino
  1171. * RET0: status
  1172. * RET1: intr_state (HV_INTR_STATE_*)
  1173. * ERRORS: EINVAL Invalid sysino
  1174. *
  1175. * Returns current state of the interrupt defined by the given sysino.
  1176. */
  1177. #define HV_FAST_INTR_GETSTATE 0xa3
  1178. /* intr_setstate()
  1179. * TRAP: HV_FAST_TRAP
  1180. * FUNCTION: HV_FAST_INTR_SETSTATE
  1181. * ARG0: sysino
  1182. * ARG1: intr_state (HV_INTR_STATE_*)
  1183. * RET0: status
  1184. * ERRORS: EINVAL Invalid sysino or intr_state value
  1185. *
  1186. * Sets the current state of the interrupt described by the given sysino
  1187. * value.
  1188. *
  1189. * Note: Setting the state to HV_INTR_STATE_IDLE clears any pending
  1190. * interrupt for sysino.
  1191. */
  1192. #define HV_FAST_INTR_SETSTATE 0xa4
  1193. /* intr_gettarget()
  1194. * TRAP: HV_FAST_TRAP
  1195. * FUNCTION: HV_FAST_INTR_GETTARGET
  1196. * ARG0: sysino
  1197. * RET0: status
  1198. * RET1: cpuid
  1199. * ERRORS: EINVAL Invalid sysino
  1200. *
  1201. * Returns CPU that is the current target of the interrupt defined by
  1202. * the given sysino. The CPU value returned is undefined if the target
  1203. * has not been set via intr_settarget().
  1204. */
  1205. #define HV_FAST_INTR_GETTARGET 0xa5
  1206. /* intr_settarget()
  1207. * TRAP: HV_FAST_TRAP
  1208. * FUNCTION: HV_FAST_INTR_SETTARGET
  1209. * ARG0: sysino
  1210. * ARG1: cpuid
  1211. * RET0: status
  1212. * ERRORS: EINVAL Invalid sysino
  1213. * ENOCPU Invalid cpuid
  1214. *
  1215. * Set the target CPU for the interrupt defined by the given sysino.
  1216. */
  1217. #define HV_FAST_INTR_SETTARGET 0xa6
  1218. /* PCI IO services.
  1219. *
  1220. * See the terminology descriptions in the device interrupt services
  1221. * section above as those apply here too. Here are terminology
  1222. * definitions specific to these PCI IO services:
  1223. *
  1224. * tsbnum TSB number. Indentifies which io-tsb is used.
  1225. * For this version of the specification, tsbnum
  1226. * must be zero.
  1227. *
  1228. * tsbindex TSB index. Identifies which entry in the TSB
  1229. * is used. The first entry is zero.
  1230. *
  1231. * tsbid A 64-bit aligned data structure which contains
  1232. * a tsbnum and a tsbindex. Bits 63:32 contain the
  1233. * tsbnum and bits 31:00 contain the tsbindex.
  1234. *
  1235. * Use the HV_PCI_TSBID() macro to construct such
  1236. * values.
  1237. *
  1238. * io_attributes IO attributes for IOMMU mappings. One of more
  1239. * of the attritbute bits are stores in a 64-bit
  1240. * value. The values are defined below.
  1241. *
  1242. * r_addr 64-bit real address
  1243. *
  1244. * pci_device PCI device address. A PCI device address identifies
  1245. * a specific device on a specific PCI bus segment.
  1246. * A PCI device address ia a 32-bit unsigned integer
  1247. * with the following format:
  1248. *
  1249. * 00000000.bbbbbbbb.dddddfff.00000000
  1250. *
  1251. * Use the HV_PCI_DEVICE_BUILD() macro to construct
  1252. * such values.
  1253. *
  1254. * pci_config_offset
  1255. * PCI configureation space offset. For conventional
  1256. * PCI a value between 0 and 255. For extended
  1257. * configuration space, a value between 0 and 4095.
  1258. *
  1259. * Note: For PCI configuration space accesses, the offset
  1260. * must be aligned to the access size.
  1261. *
  1262. * error_flag A return value which specifies if the action succeeded
  1263. * or failed. 0 means no error, non-0 means some error
  1264. * occurred while performing the service.
  1265. *
  1266. * io_sync_direction
  1267. * Direction definition for pci_dma_sync(), defined
  1268. * below in HV_PCI_SYNC_*.
  1269. *
  1270. * io_page_list A list of io_page_addresses, an io_page_address is
  1271. * a real address.
  1272. *
  1273. * io_page_list_p A pointer to an io_page_list.
  1274. *
  1275. * "size based byte swap" - Some functions do size based byte swapping
  1276. * which allows sw to access pointers and
  1277. * counters in native form when the processor
  1278. * operates in a different endianness than the
  1279. * IO bus. Size-based byte swapping converts a
  1280. * multi-byte field between big-endian and
  1281. * little-endian format.
  1282. */
  1283. #define HV_PCI_MAP_ATTR_READ 0x01
  1284. #define HV_PCI_MAP_ATTR_WRITE 0x02
  1285. #define HV_PCI_DEVICE_BUILD(b,d,f) \
  1286. ((((b) & 0xff) << 16) | \
  1287. (((d) & 0x1f) << 11) | \
  1288. (((f) & 0x07) << 8))
  1289. #define HV_PCI_TSBID(__tsb_num, __tsb_index) \
  1290. ((((u64)(__tsb_num)) << 32UL) | ((u64)(__tsb_index)))
  1291. #define HV_PCI_SYNC_FOR_DEVICE 0x01
  1292. #define HV_PCI_SYNC_FOR_CPU 0x02
  1293. /* pci_iommu_map()
  1294. * TRAP: HV_FAST_TRAP
  1295. * FUNCTION: HV_FAST_PCI_IOMMU_MAP
  1296. * ARG0: devhandle
  1297. * ARG1: tsbid
  1298. * ARG2: #ttes
  1299. * ARG3: io_attributes
  1300. * ARG4: io_page_list_p
  1301. * RET0: status
  1302. * RET1: #ttes mapped
  1303. * ERRORS: EINVAL Invalid devhandle/tsbnum/tsbindex/io_attributes
  1304. * EBADALIGN Improperly aligned real address
  1305. * ENORADDR Invalid real address
  1306. *
  1307. * Create IOMMU mappings in the sun4v device defined by the given
  1308. * devhandle. The mappings are created in the TSB defined by the
  1309. * tsbnum component of the given tsbid. The first mapping is created
  1310. * in the TSB i ndex defined by the tsbindex component of the given tsbid.
  1311. * The call creates up to #ttes mappings, the first one at tsbnum, tsbindex,
  1312. * the second at tsbnum, tsbindex + 1, etc.
  1313. *
  1314. * All mappings are created with the attributes defined by the io_attributes
  1315. * argument. The page mapping addresses are described in the io_page_list
  1316. * defined by the given io_page_list_p, which is a pointer to the io_page_list.
  1317. * The first entry in the io_page_list is the address for the first iotte, the
  1318. * 2nd for the 2nd iotte, and so on.
  1319. *
  1320. * Each io_page_address in the io_page_list must be appropriately aligned.
  1321. * #ttes must be greater than zero. For this version of the spec, the tsbnum
  1322. * component of the given tsbid must be zero.
  1323. *
  1324. * Returns the actual number of mappings creates, which may be less than
  1325. * or equal to the argument #ttes. If the function returns a value which
  1326. * is less than the #ttes, the caller may continus to call the function with
  1327. * an updated tsbid, #ttes, io_page_list_p arguments until all pages are
  1328. * mapped.
  1329. *
  1330. * Note: This function does not imply an iotte cache flush. The guest must
  1331. * demap an entry before re-mapping it.
  1332. */
  1333. #define HV_FAST_PCI_IOMMU_MAP 0xb0
  1334. /* pci_iommu_demap()
  1335. * TRAP: HV_FAST_TRAP
  1336. * FUNCTION: HV_FAST_PCI_IOMMU_DEMAP
  1337. * ARG0: devhandle
  1338. * ARG1: tsbid
  1339. * ARG2: #ttes
  1340. * RET0: status
  1341. * RET1: #ttes demapped
  1342. * ERRORS: EINVAL Invalid devhandle/tsbnum/tsbindex
  1343. *
  1344. * Demap and flush IOMMU mappings in the device defined by the given
  1345. * devhandle. Demaps up to #ttes entries in the TSB defined by the tsbnum
  1346. * component of the given tsbid, starting at the TSB index defined by the
  1347. * tsbindex component of the given tsbid.
  1348. *
  1349. * For this version of the spec, the tsbnum of the given tsbid must be zero.
  1350. * #ttes must be greater than zero.
  1351. *
  1352. * Returns the actual number of ttes demapped, which may be less than or equal
  1353. * to the argument #ttes. If #ttes demapped is less than #ttes, the caller
  1354. * may continue to call this function with updated tsbid and #ttes arguments
  1355. * until all pages are demapped.
  1356. *
  1357. * Note: Entries do not have to be mapped to be demapped. A demap of an
  1358. * unmapped page will flush the entry from the tte cache.
  1359. */
  1360. #define HV_FAST_PCI_IOMMU_DEMAP 0xb1
  1361. /* pci_iommu_getmap()
  1362. * TRAP: HV_FAST_TRAP
  1363. * FUNCTION: HV_FAST_PCI_IOMMU_GETMAP
  1364. * ARG0: devhandle
  1365. * ARG1: tsbid
  1366. * RET0: status
  1367. * RET1: io_attributes
  1368. * RET2: real address
  1369. * ERRORS: EINVAL Invalid devhandle/tsbnum/tsbindex
  1370. * ENOMAP Mapping is not valid, no translation exists
  1371. *
  1372. * Read and return the mapping in the device described by the given devhandle
  1373. * and tsbid. If successful, the io_attributes shall be returned in RET1
  1374. * and the page address of the mapping shall be returned in RET2.
  1375. *
  1376. * For this version of the spec, the tsbnum component of the given tsbid
  1377. * must be zero.
  1378. */
  1379. #define HV_FAST_PCI_IOMMU_GETMAP 0xb2
  1380. /* pci_iommu_getbypass()
  1381. * TRAP: HV_FAST_TRAP
  1382. * FUNCTION: HV_FAST_PCI_IOMMU_GETBYPASS
  1383. * ARG0: devhandle
  1384. * ARG1: real address
  1385. * ARG2: io_attributes
  1386. * RET0: status
  1387. * RET1: io_addr
  1388. * ERRORS: EINVAL Invalid devhandle/io_attributes
  1389. * ENORADDR Invalid real address
  1390. * ENOTSUPPORTED Function not supported in this implementation.
  1391. *
  1392. * Create a "special" mapping in the device described by the given devhandle,
  1393. * for the given real address and attributes. Return the IO address in RET1
  1394. * if successful.
  1395. */
  1396. #define HV_FAST_PCI_IOMMU_GETBYPASS 0xb3
  1397. /* pci_config_get()
  1398. * TRAP: HV_FAST_TRAP
  1399. * FUNCTION: HV_FAST_PCI_CONFIG_GET
  1400. * ARG0: devhandle
  1401. * ARG1: pci_device
  1402. * ARG2: pci_config_offset
  1403. * ARG3: size
  1404. * RET0: status
  1405. * RET1: error_flag
  1406. * RET2: data
  1407. * ERRORS: EINVAL Invalid devhandle/pci_device/offset/size
  1408. * EBADALIGN pci_config_offset not size aligned
  1409. * ENOACCESS Access to this offset is not permitted
  1410. *
  1411. * Read PCI configuration space for the adapter described by the given
  1412. * devhandle. Read size (1, 2, or 4) bytes of data from the given
  1413. * pci_device, at pci_config_offset from the beginning of the device's
  1414. * configuration space. If there was no error, RET1 is set to zero and
  1415. * RET2 is set to the data read. Insignificant bits in RET2 are not
  1416. * guarenteed to have any specific value and therefore must be ignored.
  1417. *
  1418. * The data returned in RET2 is size based byte swapped.
  1419. *
  1420. * If an error occurs during the read, set RET1 to a non-zero value. The
  1421. * given pci_config_offset must be 'size' aligned.
  1422. */
  1423. #define HV_FAST_PCI_CONFIG_GET 0xb4
  1424. /* pci_config_put()
  1425. * TRAP: HV_FAST_TRAP
  1426. * FUNCTION: HV_FAST_PCI_CONFIG_PUT
  1427. * ARG0: devhandle
  1428. * ARG1: pci_device
  1429. * ARG2: pci_config_offset
  1430. * ARG3: size
  1431. * ARG4: data
  1432. * RET0: status
  1433. * RET1: error_flag
  1434. * ERRORS: EINVAL Invalid devhandle/pci_device/offset/size
  1435. * EBADALIGN pci_config_offset not size aligned
  1436. * ENOACCESS Access to this offset is not permitted
  1437. *
  1438. * Write PCI configuration space for the adapter described by the given
  1439. * devhandle. Write size (1, 2, or 4) bytes of data in a single operation,
  1440. * at pci_config_offset from the beginning of the device's configuration
  1441. * space. The data argument contains the data to be written to configuration
  1442. * space. Prior to writing, the data is size based byte swapped.
  1443. *
  1444. * If an error occurs during the write access, do not generate an error
  1445. * report, do set RET1 to a non-zero value. Otherwise RET1 is zero.
  1446. * The given pci_config_offset must be 'size' aligned.
  1447. *
  1448. * This function is permitted to read from offset zero in the configuration
  1449. * space described by the given pci_device if necessary to ensure that the
  1450. * write access to config space completes.
  1451. */
  1452. #define HV_FAST_PCI_CONFIG_PUT 0xb5
  1453. /* pci_peek()
  1454. * TRAP: HV_FAST_TRAP
  1455. * FUNCTION: HV_FAST_PCI_PEEK
  1456. * ARG0: devhandle
  1457. * ARG1: real address
  1458. * ARG2: size
  1459. * RET0: status
  1460. * RET1: error_flag
  1461. * RET2: data
  1462. * ERRORS: EINVAL Invalid devhandle or size
  1463. * EBADALIGN Improperly aligned real address
  1464. * ENORADDR Bad real address
  1465. * ENOACCESS Guest access prohibited
  1466. *
  1467. * Attempt to read the IO address given by the given devhandle, real address,
  1468. * and size. Size must be 1, 2, 4, or 8. The read is performed as a single
  1469. * access operation using the given size. If an error occurs when reading
  1470. * from the given location, do not generate an error report, but return a
  1471. * non-zero value in RET1. If the read was successful, return zero in RET1
  1472. * and return the actual data read in RET2. The data returned is size based
  1473. * byte swapped.
  1474. *
  1475. * Non-significant bits in RET2 are not guarenteed to have any specific value
  1476. * and therefore must be ignored. If RET1 is returned as non-zero, the data
  1477. * value is not guarenteed to have any specific value and should be ignored.
  1478. *
  1479. * The caller must have permission to read from the given devhandle, real
  1480. * address, which must be an IO address. The argument real address must be a
  1481. * size aligned address.
  1482. *
  1483. * The hypervisor implementation of this function must block access to any
  1484. * IO address that the guest does not have explicit permission to access.
  1485. */
  1486. #define HV_FAST_PCI_PEEK 0xb6
  1487. /* pci_poke()
  1488. * TRAP: HV_FAST_TRAP
  1489. * FUNCTION: HV_FAST_PCI_POKE
  1490. * ARG0: devhandle
  1491. * ARG1: real address
  1492. * ARG2: size
  1493. * ARG3: data
  1494. * ARG4: pci_device
  1495. * RET0: status
  1496. * RET1: error_flag
  1497. * ERRORS: EINVAL Invalid devhandle, size, or pci_device
  1498. * EBADALIGN Improperly aligned real address
  1499. * ENORADDR Bad real address
  1500. * ENOACCESS Guest access prohibited
  1501. * ENOTSUPPORTED Function is not supported by implementation
  1502. *
  1503. * Attempt to write data to the IO address given by the given devhandle,
  1504. * real address, and size. Size must be 1, 2, 4, or 8. The write is
  1505. * performed as a single access operation using the given size. Prior to
  1506. * writing the data is size based swapped.
  1507. *
  1508. * If an error occurs when writing to the given location, do not generate an
  1509. * error report, but return a non-zero value in RET1. If the write was
  1510. * successful, return zero in RET1.
  1511. *
  1512. * pci_device describes the configuration address of the device being
  1513. * written to. The implementation may safely read from offset 0 with
  1514. * the configuration space of the device described by devhandle and
  1515. * pci_device in order to guarantee that the write portion of the operation
  1516. * completes
  1517. *
  1518. * Any error that occurs due to the read shall be reported using the normal
  1519. * error reporting mechanisms .. the read error is not suppressed.
  1520. *
  1521. * The caller must have permission to write to the given devhandle, real
  1522. * address, which must be an IO address. The argument real address must be a
  1523. * size aligned address. The caller must have permission to read from
  1524. * the given devhandle, pci_device cofiguration space offset 0.
  1525. *
  1526. * The hypervisor implementation of this function must block access to any
  1527. * IO address that the guest does not have explicit permission to access.
  1528. */
  1529. #define HV_FAST_PCI_POKE 0xb7
  1530. /* pci_dma_sync()
  1531. * TRAP: HV_FAST_TRAP
  1532. * FUNCTION: HV_FAST_PCI_DMA_SYNC
  1533. * ARG0: devhandle
  1534. * ARG1: real address
  1535. * ARG2: size
  1536. * ARG3: io_sync_direction
  1537. * RET0: status
  1538. * RET1: #synced
  1539. * ERRORS: EINVAL Invalid devhandle or io_sync_direction
  1540. * ENORADDR Bad real address
  1541. *
  1542. * Synchronize a memory region described by the given real address and size,
  1543. * for the device defined by the given devhandle using the direction(s)
  1544. * defined by the given io_sync_direction. The argument size is the size of
  1545. * the memory region in bytes.
  1546. *
  1547. * Return the actual number of bytes synchronized in the return value #synced,
  1548. * which may be less than or equal to the argument size. If the return
  1549. * value #synced is less than size, the caller must continue to call this
  1550. * function with updated real address and size arguments until the entire
  1551. * memory region is synchronized.
  1552. */
  1553. #define HV_FAST_PCI_DMA_SYNC 0xb8
  1554. /* PCI MSI services. */
  1555. #define HV_MSITYPE_MSI32 0x00
  1556. #define HV_MSITYPE_MSI64 0x01
  1557. #define HV_MSIQSTATE_IDLE 0x00
  1558. #define HV_MSIQSTATE_ERROR 0x01
  1559. #define HV_MSIQ_INVALID 0x00
  1560. #define HV_MSIQ_VALID 0x01
  1561. #define HV_MSISTATE_IDLE 0x00
  1562. #define HV_MSISTATE_DELIVERED 0x01
  1563. #define HV_MSIVALID_INVALID 0x00
  1564. #define HV_MSIVALID_VALID 0x01
  1565. #define HV_PCIE_MSGTYPE_PME_MSG 0x18
  1566. #define HV_PCIE_MSGTYPE_PME_ACK_MSG 0x1b
  1567. #define HV_PCIE_MSGTYPE_CORR_MSG 0x30
  1568. #define HV_PCIE_MSGTYPE_NONFATAL_MSG 0x31
  1569. #define HV_PCIE_MSGTYPE_FATAL_MSG 0x33
  1570. #define HV_MSG_INVALID 0x00
  1571. #define HV_MSG_VALID 0x01
  1572. /* pci_msiq_conf()
  1573. * TRAP: HV_FAST_TRAP
  1574. * FUNCTION: HV_FAST_PCI_MSIQ_CONF
  1575. * ARG0: devhandle
  1576. * ARG1: msiqid
  1577. * ARG2: real address
  1578. * ARG3: number of entries
  1579. * RET0: status
  1580. * ERRORS: EINVAL Invalid devhandle, msiqid or nentries
  1581. * EBADALIGN Improperly aligned real address
  1582. * ENORADDR Bad real address
  1583. *
  1584. * Configure the MSI queue given by the devhandle and msiqid arguments,
  1585. * and to be placed at the given real address and be of the given
  1586. * number of entries. The real address must be aligned exactly to match
  1587. * the queue size. Each queue entry is 64-bytes long, so f.e. a 32 entry
  1588. * queue must be aligned on a 2048 byte real address boundary. The MSI-EQ
  1589. * Head and Tail are initialized so that the MSI-EQ is 'empty'.
  1590. *
  1591. * Implementation Note: Certain implementations have fixed sized queues. In
  1592. * that case, number of entries must contain the correct
  1593. * value.
  1594. */
  1595. #define HV_FAST_PCI_MSIQ_CONF 0xc0
  1596. /* pci_msiq_info()
  1597. * TRAP: HV_FAST_TRAP
  1598. * FUNCTION: HV_FAST_PCI_MSIQ_INFO
  1599. * ARG0: devhandle
  1600. * ARG1: msiqid
  1601. * RET0: status
  1602. * RET1: real address
  1603. * RET2: number of entries
  1604. * ERRORS: EINVAL Invalid devhandle or msiqid
  1605. *
  1606. * Return the configuration information for the MSI queue described
  1607. * by the given devhandle and msiqid. The base address of the queue
  1608. * is returned in ARG1 and the number of entries is returned in ARG2.
  1609. * If the queue is unconfigured, the real address is undefined and the
  1610. * number of entries will be returned as zero.
  1611. */
  1612. #define HV_FAST_PCI_MSIQ_INFO 0xc1
  1613. /* pci_msiq_getvalid()
  1614. * TRAP: HV_FAST_TRAP
  1615. * FUNCTION: HV_FAST_PCI_MSIQ_GETVALID
  1616. * ARG0: devhandle
  1617. * ARG1: msiqid
  1618. * RET0: status
  1619. * RET1: msiqvalid (HV_MSIQ_VALID or HV_MSIQ_INVALID)
  1620. * ERRORS: EINVAL Invalid devhandle or msiqid
  1621. *
  1622. * Get the valid state of the MSI-EQ described by the given devhandle and
  1623. * msiqid.
  1624. */
  1625. #define HV_FAST_PCI_MSIQ_GETVALID 0xc2
  1626. /* pci_msiq_setvalid()
  1627. * TRAP: HV_FAST_TRAP
  1628. * FUNCTION: HV_FAST_PCI_MSIQ_SETVALID
  1629. * ARG0: devhandle
  1630. * ARG1: msiqid
  1631. * ARG2: msiqvalid (HV_MSIQ_VALID or HV_MSIQ_INVALID)
  1632. * RET0: status
  1633. * ERRORS: EINVAL Invalid devhandle or msiqid or msiqvalid
  1634. * value or MSI EQ is uninitialized
  1635. *
  1636. * Set the valid state of the MSI-EQ described by the given devhandle and
  1637. * msiqid to the given msiqvalid.
  1638. */
  1639. #define HV_FAST_PCI_MSIQ_SETVALID 0xc3
  1640. /* pci_msiq_getstate()
  1641. * TRAP: HV_FAST_TRAP
  1642. * FUNCTION: HV_FAST_PCI_MSIQ_GETSTATE
  1643. * ARG0: devhandle
  1644. * ARG1: msiqid
  1645. * RET0: status
  1646. * RET1: msiqstate (HV_MSIQSTATE_IDLE or HV_MSIQSTATE_ERROR)
  1647. * ERRORS: EINVAL Invalid devhandle or msiqid
  1648. *
  1649. * Get the state of the MSI-EQ described by the given devhandle and
  1650. * msiqid.
  1651. */
  1652. #define HV_FAST_PCI_MSIQ_GETSTATE 0xc4
  1653. /* pci_msiq_getvalid()
  1654. * TRAP: HV_FAST_TRAP
  1655. * FUNCTION: HV_FAST_PCI_MSIQ_GETVALID
  1656. * ARG0: devhandle
  1657. * ARG1: msiqid
  1658. * ARG2: msiqstate (HV_MSIQSTATE_IDLE or HV_MSIQSTATE_ERROR)
  1659. * RET0: status
  1660. * ERRORS: EINVAL Invalid devhandle or msiqid or msiqstate
  1661. * value or MSI EQ is uninitialized
  1662. *
  1663. * Set the state of the MSI-EQ described by the given devhandle and
  1664. * msiqid to the given msiqvalid.
  1665. */
  1666. #define HV_FAST_PCI_MSIQ_SETSTATE 0xc5
  1667. /* pci_msiq_gethead()
  1668. * TRAP: HV_FAST_TRAP
  1669. * FUNCTION: HV_FAST_PCI_MSIQ_GETHEAD
  1670. * ARG0: devhandle
  1671. * ARG1: msiqid
  1672. * RET0: status
  1673. * RET1: msiqhead
  1674. * ERRORS: EINVAL Invalid devhandle or msiqid
  1675. *
  1676. * Get the current MSI EQ queue head for the MSI-EQ described by the
  1677. * given devhandle and msiqid.
  1678. */
  1679. #define HV_FAST_PCI_MSIQ_GETHEAD 0xc6
  1680. /* pci_msiq_sethead()
  1681. * TRAP: HV_FAST_TRAP
  1682. * FUNCTION: HV_FAST_PCI_MSIQ_SETHEAD
  1683. * ARG0: devhandle
  1684. * ARG1: msiqid
  1685. * ARG2: msiqhead
  1686. * RET0: status
  1687. * ERRORS: EINVAL Invalid devhandle or msiqid or msiqhead,
  1688. * or MSI EQ is uninitialized
  1689. *
  1690. * Set the current MSI EQ queue head for the MSI-EQ described by the
  1691. * given devhandle and msiqid.
  1692. */
  1693. #define HV_FAST_PCI_MSIQ_SETHEAD 0xc7
  1694. /* pci_msiq_gettail()
  1695. * TRAP: HV_FAST_TRAP
  1696. * FUNCTION: HV_FAST_PCI_MSIQ_GETTAIL
  1697. * ARG0: devhandle
  1698. * ARG1: msiqid
  1699. * RET0: status
  1700. * RET1: msiqtail
  1701. * ERRORS: EINVAL Invalid devhandle or msiqid
  1702. *
  1703. * Get the current MSI EQ queue tail for the MSI-EQ described by the
  1704. * given devhandle and msiqid.
  1705. */
  1706. #define HV_FAST_PCI_MSIQ_GETTAIL 0xc8
  1707. /* pci_msi_getvalid()
  1708. * TRAP: HV_FAST_TRAP
  1709. * FUNCTION: HV_FAST_PCI_MSI_GETVALID
  1710. * ARG0: devhandle
  1711. * ARG1: msinum
  1712. * RET0: status
  1713. * RET1: msivalidstate
  1714. * ERRORS: EINVAL Invalid devhandle or msinum
  1715. *
  1716. * Get the current valid/enabled state for the MSI defined by the
  1717. * given devhandle and msinum.
  1718. */
  1719. #define HV_FAST_PCI_MSI_GETVALID 0xc9
  1720. /* pci_msi_setvalid()
  1721. * TRAP: HV_FAST_TRAP
  1722. * FUNCTION: HV_FAST_PCI_MSI_SETVALID
  1723. * ARG0: devhandle
  1724. * ARG1: msinum
  1725. * ARG2: msivalidstate
  1726. * RET0: status
  1727. * ERRORS: EINVAL Invalid devhandle or msinum or msivalidstate
  1728. *
  1729. * Set the current valid/enabled state for the MSI defined by the
  1730. * given devhandle and msinum.
  1731. */
  1732. #define HV_FAST_PCI_MSI_SETVALID 0xca
  1733. /* pci_msi_getmsiq()
  1734. * TRAP: HV_FAST_TRAP
  1735. * FUNCTION: HV_FAST_PCI_MSI_GETMSIQ
  1736. * ARG0: devhandle
  1737. * ARG1: msinum
  1738. * RET0: status
  1739. * RET1: msiqid
  1740. * ERRORS: EINVAL Invalid devhandle or msinum or MSI is unbound
  1741. *
  1742. * Get the MSI EQ that the MSI defined by the given devhandle and
  1743. * msinum is bound to.
  1744. */
  1745. #define HV_FAST_PCI_MSI_GETMSIQ 0xcb
  1746. /* pci_msi_setmsiq()
  1747. * TRAP: HV_FAST_TRAP
  1748. * FUNCTION: HV_FAST_PCI_MSI_SETMSIQ
  1749. * ARG0: devhandle
  1750. * ARG1: msinum
  1751. * ARG2: msitype
  1752. * ARG3: msiqid
  1753. * RET0: status
  1754. * ERRORS: EINVAL Invalid devhandle or msinum or msiqid
  1755. *
  1756. * Set the MSI EQ that the MSI defined by the given devhandle and
  1757. * msinum is bound to.
  1758. */
  1759. #define HV_FAST_PCI_MSI_SETMSIQ 0xcc
  1760. /* pci_msi_getstate()
  1761. * TRAP: HV_FAST_TRAP
  1762. * FUNCTION: HV_FAST_PCI_MSI_GETSTATE
  1763. * ARG0: devhandle
  1764. * ARG1: msinum
  1765. * RET0: status
  1766. * RET1: msistate
  1767. * ERRORS: EINVAL Invalid devhandle or msinum
  1768. *
  1769. * Get the state of the MSI defined by the given devhandle and msinum.
  1770. * If not initialized, return HV_MSISTATE_IDLE.
  1771. */
  1772. #define HV_FAST_PCI_MSI_GETSTATE 0xcd
  1773. /* pci_msi_setstate()
  1774. * TRAP: HV_FAST_TRAP
  1775. * FUNCTION: HV_FAST_PCI_MSI_SETSTATE
  1776. * ARG0: devhandle
  1777. * ARG1: msinum
  1778. * ARG2: msistate
  1779. * RET0: status
  1780. * ERRORS: EINVAL Invalid devhandle or msinum or msistate
  1781. *
  1782. * Set the state of the MSI defined by the given devhandle and msinum.
  1783. */
  1784. #define HV_FAST_PCI_MSI_SETSTATE 0xce
  1785. /* pci_msg_getmsiq()
  1786. * TRAP: HV_FAST_TRAP
  1787. * FUNCTION: HV_FAST_PCI_MSG_GETMSIQ
  1788. * ARG0: devhandle
  1789. * ARG1: msgtype
  1790. * RET0: status
  1791. * RET1: msiqid
  1792. * ERRORS: EINVAL Invalid devhandle or msgtype
  1793. *
  1794. * Get the MSI EQ of the MSG defined by the given devhandle and msgtype.
  1795. */
  1796. #define HV_FAST_PCI_MSG_GETMSIQ 0xd0
  1797. /* pci_msg_setmsiq()
  1798. * TRAP: HV_FAST_TRAP
  1799. * FUNCTION: HV_FAST_PCI_MSG_SETMSIQ
  1800. * ARG0: devhandle
  1801. * ARG1: msgtype
  1802. * ARG2: msiqid
  1803. * RET0: status
  1804. * ERRORS: EINVAL Invalid devhandle, msgtype, or msiqid
  1805. *
  1806. * Set the MSI EQ of the MSG defined by the given devhandle and msgtype.
  1807. */
  1808. #define HV_FAST_PCI_MSG_SETMSIQ 0xd1
  1809. /* pci_msg_getvalid()
  1810. * TRAP: HV_FAST_TRAP
  1811. * FUNCTION: HV_FAST_PCI_MSG_GETVALID
  1812. * ARG0: devhandle
  1813. * ARG1: msgtype
  1814. * RET0: status
  1815. * RET1: msgvalidstate
  1816. * ERRORS: EINVAL Invalid devhandle or msgtype
  1817. *
  1818. * Get the valid/enabled state of the MSG defined by the given
  1819. * devhandle and msgtype.
  1820. */
  1821. #define HV_FAST_PCI_MSG_GETVALID 0xd2
  1822. /* pci_msg_setvalid()
  1823. * TRAP: HV_FAST_TRAP
  1824. * FUNCTION: HV_FAST_PCI_MSG_SETVALID
  1825. * ARG0: devhandle
  1826. * ARG1: msgtype
  1827. * ARG2: msgvalidstate
  1828. * RET0: status
  1829. * ERRORS: EINVAL Invalid devhandle or msgtype or msgvalidstate
  1830. *
  1831. * Set the valid/enabled state of the MSG defined by the given
  1832. * devhandle and msgtype.
  1833. */
  1834. #define HV_FAST_PCI_MSG_SETVALID 0xd3
  1835. /* Performance counter services. */
  1836. #define HV_PERF_JBUS_PERF_CTRL_REG 0x00
  1837. #define HV_PERF_JBUS_PERF_CNT_REG 0x01
  1838. #define HV_PERF_DRAM_PERF_CTRL_REG_0 0x02
  1839. #define HV_PERF_DRAM_PERF_CNT_REG_0 0x03
  1840. #define HV_PERF_DRAM_PERF_CTRL_REG_1 0x04
  1841. #define HV_PERF_DRAM_PERF_CNT_REG_1 0x05
  1842. #define HV_PERF_DRAM_PERF_CTRL_REG_2 0x06
  1843. #define HV_PERF_DRAM_PERF_CNT_REG_2 0x07
  1844. #define HV_PERF_DRAM_PERF_CTRL_REG_3 0x08
  1845. #define HV_PERF_DRAM_PERF_CNT_REG_3 0x09
  1846. /* get_perfreg()
  1847. * TRAP: HV_FAST_TRAP
  1848. * FUNCTION: HV_FAST_GET_PERFREG
  1849. * ARG0: performance reg number
  1850. * RET0: status
  1851. * RET1: performance reg value
  1852. * ERRORS: EINVAL Invalid performance register number
  1853. * ENOACCESS No access allowed to performance counters
  1854. *
  1855. * Read the value of the given DRAM/JBUS performance counter/control register.
  1856. */
  1857. #define HV_FAST_GET_PERFREG 0x100
  1858. /* set_perfreg()
  1859. * TRAP: HV_FAST_TRAP
  1860. * FUNCTION: HV_FAST_SET_PERFREG
  1861. * ARG0: performance reg number
  1862. * ARG1: performance reg value
  1863. * RET0: status
  1864. * ERRORS: EINVAL Invalid performance register number
  1865. * ENOACCESS No access allowed to performance counters
  1866. *
  1867. * Write the given performance reg value to the given DRAM/JBUS
  1868. * performance counter/control register.
  1869. */
  1870. #define HV_FAST_SET_PERFREG 0x101
  1871. /* MMU statistics services.
  1872. *
  1873. * The hypervisor maintains MMU statistics and privileged code provides
  1874. * a buffer where these statistics can be collected. It is continually
  1875. * updated once configured. The layout is as follows:
  1876. */
  1877. #ifndef __ASSEMBLY__
  1878. struct hv_mmu_statistics {
  1879. unsigned long immu_tsb_hits_ctx0_8k_tte;
  1880. unsigned long immu_tsb_ticks_ctx0_8k_tte;
  1881. unsigned long immu_tsb_hits_ctx0_64k_tte;
  1882. unsigned long immu_tsb_ticks_ctx0_64k_tte;
  1883. unsigned long __reserved1[2];
  1884. unsigned long immu_tsb_hits_ctx0_4mb_tte;
  1885. unsigned long immu_tsb_ticks_ctx0_4mb_tte;
  1886. unsigned long __reserved2[2];
  1887. unsigned long immu_tsb_hits_ctx0_256mb_tte;
  1888. unsigned long immu_tsb_ticks_ctx0_256mb_tte;
  1889. unsigned long __reserved3[4];
  1890. unsigned long immu_tsb_hits_ctxnon0_8k_tte;
  1891. unsigned long immu_tsb_ticks_ctxnon0_8k_tte;
  1892. unsigned long immu_tsb_hits_ctxnon0_64k_tte;
  1893. unsigned long immu_tsb_ticks_ctxnon0_64k_tte;
  1894. unsigned long __reserved4[2];
  1895. unsigned long immu_tsb_hits_ctxnon0_4mb_tte;
  1896. unsigned long immu_tsb_ticks_ctxnon0_4mb_tte;
  1897. unsigned long __reserved5[2];
  1898. unsigned long immu_tsb_hits_ctxnon0_256mb_tte;
  1899. unsigned long immu_tsb_ticks_ctxnon0_256mb_tte;
  1900. unsigned long __reserved6[4];
  1901. unsigned long dmmu_tsb_hits_ctx0_8k_tte;
  1902. unsigned long dmmu_tsb_ticks_ctx0_8k_tte;
  1903. unsigned long dmmu_tsb_hits_ctx0_64k_tte;
  1904. unsigned long dmmu_tsb_ticks_ctx0_64k_tte;
  1905. unsigned long __reserved7[2];
  1906. unsigned long dmmu_tsb_hits_ctx0_4mb_tte;
  1907. unsigned long dmmu_tsb_ticks_ctx0_4mb_tte;
  1908. unsigned long __reserved8[2];
  1909. unsigned long dmmu_tsb_hits_ctx0_256mb_tte;
  1910. unsigned long dmmu_tsb_ticks_ctx0_256mb_tte;
  1911. unsigned long __reserved9[4];
  1912. unsigned long dmmu_tsb_hits_ctxnon0_8k_tte;
  1913. unsigned long dmmu_tsb_ticks_ctxnon0_8k_tte;
  1914. unsigned long dmmu_tsb_hits_ctxnon0_64k_tte;
  1915. unsigned long dmmu_tsb_ticks_ctxnon0_64k_tte;
  1916. unsigned long __reserved10[2];
  1917. unsigned long dmmu_tsb_hits_ctxnon0_4mb_tte;
  1918. unsigned long dmmu_tsb_ticks_ctxnon0_4mb_tte;
  1919. unsigned long __reserved11[2];
  1920. unsigned long dmmu_tsb_hits_ctxnon0_256mb_tte;
  1921. unsigned long dmmu_tsb_ticks_ctxnon0_256mb_tte;
  1922. unsigned long __reserved12[4];
  1923. };
  1924. #endif
  1925. /* mmustat_conf()
  1926. * TRAP: HV_FAST_TRAP
  1927. * FUNCTION: HV_FAST_MMUSTAT_CONF
  1928. * ARG0: real address
  1929. * RET0: status
  1930. * RET1: real address
  1931. * ERRORS: ENORADDR Invalid real address
  1932. * EBADALIGN Real address not aligned on 64-byte boundary
  1933. * EBADTRAP API not supported on this processor
  1934. *
  1935. * Enable MMU statistic gathering using the buffer at the given real
  1936. * address on the current virtual CPU. The new buffer real address
  1937. * is given in ARG1, and the previously specified buffer real address
  1938. * is returned in RET1, or is returned as zero for the first invocation.
  1939. *
  1940. * If the passed in real address argument is zero, this will disable
  1941. * MMU statistic collection on the current virtual CPU. If an error is
  1942. * returned then no statistics are collected.
  1943. *
  1944. * The buffer contents should be initialized to all zeros before being
  1945. * given to the hypervisor or else the statistics will be meaningless.
  1946. */
  1947. #define HV_FAST_MMUSTAT_CONF 0x102
  1948. /* mmustat_info()
  1949. * TRAP: HV_FAST_TRAP
  1950. * FUNCTION: HV_FAST_MMUSTAT_INFO
  1951. * RET0: status
  1952. * RET1: real address
  1953. * ERRORS: EBADTRAP API not supported on this processor
  1954. *
  1955. * Return the current state and real address of the currently configured
  1956. * MMU statistics buffer on the current virtual CPU.
  1957. */
  1958. #define HV_FAST_MMUSTAT_INFO 0x103
  1959. /* Function numbers for HV_CORE_TRAP. */
  1960. #define HV_CORE_VER 0x00
  1961. #define HV_CORE_PUTCHAR 0x01
  1962. #define HV_CORE_EXIT 0x02
  1963. #endif /* !(_SPARC64_HYPERVISOR_H) */