hypervisor.h 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109
  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 currently 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. #ifndef __ASSEMBLY__
  1157. extern unsigned long sun4v_intr_getenabled(unsigned long sysino);
  1158. #endif
  1159. /* intr_setenabled()
  1160. * TRAP: HV_FAST_TRAP
  1161. * FUNCTION: HV_FAST_INTR_SETENABLED
  1162. * ARG0: sysino
  1163. * ARG1: intr_enabled (HV_INTR_{DISABLED,ENABLED})
  1164. * RET0: status
  1165. * ERRORS: EINVAL Invalid sysino or intr_enabled value
  1166. *
  1167. * Set the 'enabled' state of the interrupt sysino.
  1168. */
  1169. #define HV_FAST_INTR_SETENABLED 0xa2
  1170. #ifndef __ASSEMBLY__
  1171. extern unsigned long sun4v_intr_setenabled(unsigned long sysino, unsigned long intr_enabled);
  1172. #endif
  1173. /* intr_getstate()
  1174. * TRAP: HV_FAST_TRAP
  1175. * FUNCTION: HV_FAST_INTR_GETSTATE
  1176. * ARG0: sysino
  1177. * RET0: status
  1178. * RET1: intr_state (HV_INTR_STATE_*)
  1179. * ERRORS: EINVAL Invalid sysino
  1180. *
  1181. * Returns current state of the interrupt defined by the given sysino.
  1182. */
  1183. #define HV_FAST_INTR_GETSTATE 0xa3
  1184. #ifndef __ASSEMBLY__
  1185. extern unsigned long sun4v_intr_getstate(unsigned long sysino);
  1186. #endif
  1187. /* intr_setstate()
  1188. * TRAP: HV_FAST_TRAP
  1189. * FUNCTION: HV_FAST_INTR_SETSTATE
  1190. * ARG0: sysino
  1191. * ARG1: intr_state (HV_INTR_STATE_*)
  1192. * RET0: status
  1193. * ERRORS: EINVAL Invalid sysino or intr_state value
  1194. *
  1195. * Sets the current state of the interrupt described by the given sysino
  1196. * value.
  1197. *
  1198. * Note: Setting the state to HV_INTR_STATE_IDLE clears any pending
  1199. * interrupt for sysino.
  1200. */
  1201. #define HV_FAST_INTR_SETSTATE 0xa4
  1202. #ifndef __ASSEMBLY__
  1203. extern unsigned long sun4v_intr_setstate(unsigned long sysino, unsigned long intr_state);
  1204. #endif
  1205. /* intr_gettarget()
  1206. * TRAP: HV_FAST_TRAP
  1207. * FUNCTION: HV_FAST_INTR_GETTARGET
  1208. * ARG0: sysino
  1209. * RET0: status
  1210. * RET1: cpuid
  1211. * ERRORS: EINVAL Invalid sysino
  1212. *
  1213. * Returns CPU that is the current target of the interrupt defined by
  1214. * the given sysino. The CPU value returned is undefined if the target
  1215. * has not been set via intr_settarget().
  1216. */
  1217. #define HV_FAST_INTR_GETTARGET 0xa5
  1218. #ifndef __ASSEMBLY__
  1219. extern unsigned long sun4v_intr_gettarget(unsigned long sysino);
  1220. #endif
  1221. /* intr_settarget()
  1222. * TRAP: HV_FAST_TRAP
  1223. * FUNCTION: HV_FAST_INTR_SETTARGET
  1224. * ARG0: sysino
  1225. * ARG1: cpuid
  1226. * RET0: status
  1227. * ERRORS: EINVAL Invalid sysino
  1228. * ENOCPU Invalid cpuid
  1229. *
  1230. * Set the target CPU for the interrupt defined by the given sysino.
  1231. */
  1232. #define HV_FAST_INTR_SETTARGET 0xa6
  1233. #ifndef __ASSEMBLY__
  1234. extern unsigned long sun4v_intr_settarget(unsigned long sysino, unsigned long cpuid);
  1235. #endif
  1236. /* PCI IO services.
  1237. *
  1238. * See the terminology descriptions in the device interrupt services
  1239. * section above as those apply here too. Here are terminology
  1240. * definitions specific to these PCI IO services:
  1241. *
  1242. * tsbnum TSB number. Indentifies which io-tsb is used.
  1243. * For this version of the specification, tsbnum
  1244. * must be zero.
  1245. *
  1246. * tsbindex TSB index. Identifies which entry in the TSB
  1247. * is used. The first entry is zero.
  1248. *
  1249. * tsbid A 64-bit aligned data structure which contains
  1250. * a tsbnum and a tsbindex. Bits 63:32 contain the
  1251. * tsbnum and bits 31:00 contain the tsbindex.
  1252. *
  1253. * Use the HV_PCI_TSBID() macro to construct such
  1254. * values.
  1255. *
  1256. * io_attributes IO attributes for IOMMU mappings. One of more
  1257. * of the attritbute bits are stores in a 64-bit
  1258. * value. The values are defined below.
  1259. *
  1260. * r_addr 64-bit real address
  1261. *
  1262. * pci_device PCI device address. A PCI device address identifies
  1263. * a specific device on a specific PCI bus segment.
  1264. * A PCI device address ia a 32-bit unsigned integer
  1265. * with the following format:
  1266. *
  1267. * 00000000.bbbbbbbb.dddddfff.00000000
  1268. *
  1269. * Use the HV_PCI_DEVICE_BUILD() macro to construct
  1270. * such values.
  1271. *
  1272. * pci_config_offset
  1273. * PCI configureation space offset. For conventional
  1274. * PCI a value between 0 and 255. For extended
  1275. * configuration space, a value between 0 and 4095.
  1276. *
  1277. * Note: For PCI configuration space accesses, the offset
  1278. * must be aligned to the access size.
  1279. *
  1280. * error_flag A return value which specifies if the action succeeded
  1281. * or failed. 0 means no error, non-0 means some error
  1282. * occurred while performing the service.
  1283. *
  1284. * io_sync_direction
  1285. * Direction definition for pci_dma_sync(), defined
  1286. * below in HV_PCI_SYNC_*.
  1287. *
  1288. * io_page_list A list of io_page_addresses, an io_page_address is
  1289. * a real address.
  1290. *
  1291. * io_page_list_p A pointer to an io_page_list.
  1292. *
  1293. * "size based byte swap" - Some functions do size based byte swapping
  1294. * which allows sw to access pointers and
  1295. * counters in native form when the processor
  1296. * operates in a different endianness than the
  1297. * IO bus. Size-based byte swapping converts a
  1298. * multi-byte field between big-endian and
  1299. * little-endian format.
  1300. */
  1301. #define HV_PCI_MAP_ATTR_READ 0x01
  1302. #define HV_PCI_MAP_ATTR_WRITE 0x02
  1303. #define HV_PCI_DEVICE_BUILD(b,d,f) \
  1304. ((((b) & 0xff) << 16) | \
  1305. (((d) & 0x1f) << 11) | \
  1306. (((f) & 0x07) << 8))
  1307. #define HV_PCI_TSBID(__tsb_num, __tsb_index) \
  1308. ((((u64)(__tsb_num)) << 32UL) | ((u64)(__tsb_index)))
  1309. #define HV_PCI_SYNC_FOR_DEVICE 0x01
  1310. #define HV_PCI_SYNC_FOR_CPU 0x02
  1311. /* pci_iommu_map()
  1312. * TRAP: HV_FAST_TRAP
  1313. * FUNCTION: HV_FAST_PCI_IOMMU_MAP
  1314. * ARG0: devhandle
  1315. * ARG1: tsbid
  1316. * ARG2: #ttes
  1317. * ARG3: io_attributes
  1318. * ARG4: io_page_list_p
  1319. * RET0: status
  1320. * RET1: #ttes mapped
  1321. * ERRORS: EINVAL Invalid devhandle/tsbnum/tsbindex/io_attributes
  1322. * EBADALIGN Improperly aligned real address
  1323. * ENORADDR Invalid real address
  1324. *
  1325. * Create IOMMU mappings in the sun4v device defined by the given
  1326. * devhandle. The mappings are created in the TSB defined by the
  1327. * tsbnum component of the given tsbid. The first mapping is created
  1328. * in the TSB i ndex defined by the tsbindex component of the given tsbid.
  1329. * The call creates up to #ttes mappings, the first one at tsbnum, tsbindex,
  1330. * the second at tsbnum, tsbindex + 1, etc.
  1331. *
  1332. * All mappings are created with the attributes defined by the io_attributes
  1333. * argument. The page mapping addresses are described in the io_page_list
  1334. * defined by the given io_page_list_p, which is a pointer to the io_page_list.
  1335. * The first entry in the io_page_list is the address for the first iotte, the
  1336. * 2nd for the 2nd iotte, and so on.
  1337. *
  1338. * Each io_page_address in the io_page_list must be appropriately aligned.
  1339. * #ttes must be greater than zero. For this version of the spec, the tsbnum
  1340. * component of the given tsbid must be zero.
  1341. *
  1342. * Returns the actual number of mappings creates, which may be less than
  1343. * or equal to the argument #ttes. If the function returns a value which
  1344. * is less than the #ttes, the caller may continus to call the function with
  1345. * an updated tsbid, #ttes, io_page_list_p arguments until all pages are
  1346. * mapped.
  1347. *
  1348. * Note: This function does not imply an iotte cache flush. The guest must
  1349. * demap an entry before re-mapping it.
  1350. */
  1351. #define HV_FAST_PCI_IOMMU_MAP 0xb0
  1352. /* pci_iommu_demap()
  1353. * TRAP: HV_FAST_TRAP
  1354. * FUNCTION: HV_FAST_PCI_IOMMU_DEMAP
  1355. * ARG0: devhandle
  1356. * ARG1: tsbid
  1357. * ARG2: #ttes
  1358. * RET0: status
  1359. * RET1: #ttes demapped
  1360. * ERRORS: EINVAL Invalid devhandle/tsbnum/tsbindex
  1361. *
  1362. * Demap and flush IOMMU mappings in the device defined by the given
  1363. * devhandle. Demaps up to #ttes entries in the TSB defined by the tsbnum
  1364. * component of the given tsbid, starting at the TSB index defined by the
  1365. * tsbindex component of the given tsbid.
  1366. *
  1367. * For this version of the spec, the tsbnum of the given tsbid must be zero.
  1368. * #ttes must be greater than zero.
  1369. *
  1370. * Returns the actual number of ttes demapped, which may be less than or equal
  1371. * to the argument #ttes. If #ttes demapped is less than #ttes, the caller
  1372. * may continue to call this function with updated tsbid and #ttes arguments
  1373. * until all pages are demapped.
  1374. *
  1375. * Note: Entries do not have to be mapped to be demapped. A demap of an
  1376. * unmapped page will flush the entry from the tte cache.
  1377. */
  1378. #define HV_FAST_PCI_IOMMU_DEMAP 0xb1
  1379. /* pci_iommu_getmap()
  1380. * TRAP: HV_FAST_TRAP
  1381. * FUNCTION: HV_FAST_PCI_IOMMU_GETMAP
  1382. * ARG0: devhandle
  1383. * ARG1: tsbid
  1384. * RET0: status
  1385. * RET1: io_attributes
  1386. * RET2: real address
  1387. * ERRORS: EINVAL Invalid devhandle/tsbnum/tsbindex
  1388. * ENOMAP Mapping is not valid, no translation exists
  1389. *
  1390. * Read and return the mapping in the device described by the given devhandle
  1391. * and tsbid. If successful, the io_attributes shall be returned in RET1
  1392. * and the page address of the mapping shall be returned in RET2.
  1393. *
  1394. * For this version of the spec, the tsbnum component of the given tsbid
  1395. * must be zero.
  1396. */
  1397. #define HV_FAST_PCI_IOMMU_GETMAP 0xb2
  1398. /* pci_iommu_getbypass()
  1399. * TRAP: HV_FAST_TRAP
  1400. * FUNCTION: HV_FAST_PCI_IOMMU_GETBYPASS
  1401. * ARG0: devhandle
  1402. * ARG1: real address
  1403. * ARG2: io_attributes
  1404. * RET0: status
  1405. * RET1: io_addr
  1406. * ERRORS: EINVAL Invalid devhandle/io_attributes
  1407. * ENORADDR Invalid real address
  1408. * ENOTSUPPORTED Function not supported in this implementation.
  1409. *
  1410. * Create a "special" mapping in the device described by the given devhandle,
  1411. * for the given real address and attributes. Return the IO address in RET1
  1412. * if successful.
  1413. */
  1414. #define HV_FAST_PCI_IOMMU_GETBYPASS 0xb3
  1415. /* pci_config_get()
  1416. * TRAP: HV_FAST_TRAP
  1417. * FUNCTION: HV_FAST_PCI_CONFIG_GET
  1418. * ARG0: devhandle
  1419. * ARG1: pci_device
  1420. * ARG2: pci_config_offset
  1421. * ARG3: size
  1422. * RET0: status
  1423. * RET1: error_flag
  1424. * RET2: data
  1425. * ERRORS: EINVAL Invalid devhandle/pci_device/offset/size
  1426. * EBADALIGN pci_config_offset not size aligned
  1427. * ENOACCESS Access to this offset is not permitted
  1428. *
  1429. * Read PCI configuration space for the adapter described by the given
  1430. * devhandle. Read size (1, 2, or 4) bytes of data from the given
  1431. * pci_device, at pci_config_offset from the beginning of the device's
  1432. * configuration space. If there was no error, RET1 is set to zero and
  1433. * RET2 is set to the data read. Insignificant bits in RET2 are not
  1434. * guarenteed to have any specific value and therefore must be ignored.
  1435. *
  1436. * The data returned in RET2 is size based byte swapped.
  1437. *
  1438. * If an error occurs during the read, set RET1 to a non-zero value. The
  1439. * given pci_config_offset must be 'size' aligned.
  1440. */
  1441. #define HV_FAST_PCI_CONFIG_GET 0xb4
  1442. /* pci_config_put()
  1443. * TRAP: HV_FAST_TRAP
  1444. * FUNCTION: HV_FAST_PCI_CONFIG_PUT
  1445. * ARG0: devhandle
  1446. * ARG1: pci_device
  1447. * ARG2: pci_config_offset
  1448. * ARG3: size
  1449. * ARG4: data
  1450. * RET0: status
  1451. * RET1: error_flag
  1452. * ERRORS: EINVAL Invalid devhandle/pci_device/offset/size
  1453. * EBADALIGN pci_config_offset not size aligned
  1454. * ENOACCESS Access to this offset is not permitted
  1455. *
  1456. * Write PCI configuration space for the adapter described by the given
  1457. * devhandle. Write size (1, 2, or 4) bytes of data in a single operation,
  1458. * at pci_config_offset from the beginning of the device's configuration
  1459. * space. The data argument contains the data to be written to configuration
  1460. * space. Prior to writing, the data is size based byte swapped.
  1461. *
  1462. * If an error occurs during the write access, do not generate an error
  1463. * report, do set RET1 to a non-zero value. Otherwise RET1 is zero.
  1464. * The given pci_config_offset must be 'size' aligned.
  1465. *
  1466. * This function is permitted to read from offset zero in the configuration
  1467. * space described by the given pci_device if necessary to ensure that the
  1468. * write access to config space completes.
  1469. */
  1470. #define HV_FAST_PCI_CONFIG_PUT 0xb5
  1471. /* pci_peek()
  1472. * TRAP: HV_FAST_TRAP
  1473. * FUNCTION: HV_FAST_PCI_PEEK
  1474. * ARG0: devhandle
  1475. * ARG1: real address
  1476. * ARG2: size
  1477. * RET0: status
  1478. * RET1: error_flag
  1479. * RET2: data
  1480. * ERRORS: EINVAL Invalid devhandle or size
  1481. * EBADALIGN Improperly aligned real address
  1482. * ENORADDR Bad real address
  1483. * ENOACCESS Guest access prohibited
  1484. *
  1485. * Attempt to read the IO address given by the given devhandle, real address,
  1486. * and size. Size must be 1, 2, 4, or 8. The read is performed as a single
  1487. * access operation using the given size. If an error occurs when reading
  1488. * from the given location, do not generate an error report, but return a
  1489. * non-zero value in RET1. If the read was successful, return zero in RET1
  1490. * and return the actual data read in RET2. The data returned is size based
  1491. * byte swapped.
  1492. *
  1493. * Non-significant bits in RET2 are not guarenteed to have any specific value
  1494. * and therefore must be ignored. If RET1 is returned as non-zero, the data
  1495. * value is not guarenteed to have any specific value and should be ignored.
  1496. *
  1497. * The caller must have permission to read from the given devhandle, real
  1498. * address, which must be an IO address. The argument real address must be a
  1499. * size aligned address.
  1500. *
  1501. * The hypervisor implementation of this function must block access to any
  1502. * IO address that the guest does not have explicit permission to access.
  1503. */
  1504. #define HV_FAST_PCI_PEEK 0xb6
  1505. /* pci_poke()
  1506. * TRAP: HV_FAST_TRAP
  1507. * FUNCTION: HV_FAST_PCI_POKE
  1508. * ARG0: devhandle
  1509. * ARG1: real address
  1510. * ARG2: size
  1511. * ARG3: data
  1512. * ARG4: pci_device
  1513. * RET0: status
  1514. * RET1: error_flag
  1515. * ERRORS: EINVAL Invalid devhandle, size, or pci_device
  1516. * EBADALIGN Improperly aligned real address
  1517. * ENORADDR Bad real address
  1518. * ENOACCESS Guest access prohibited
  1519. * ENOTSUPPORTED Function is not supported by implementation
  1520. *
  1521. * Attempt to write data to the IO address given by the given devhandle,
  1522. * real address, and size. Size must be 1, 2, 4, or 8. The write is
  1523. * performed as a single access operation using the given size. Prior to
  1524. * writing the data is size based swapped.
  1525. *
  1526. * If an error occurs when writing to the given location, do not generate an
  1527. * error report, but return a non-zero value in RET1. If the write was
  1528. * successful, return zero in RET1.
  1529. *
  1530. * pci_device describes the configuration address of the device being
  1531. * written to. The implementation may safely read from offset 0 with
  1532. * the configuration space of the device described by devhandle and
  1533. * pci_device in order to guarantee that the write portion of the operation
  1534. * completes
  1535. *
  1536. * Any error that occurs due to the read shall be reported using the normal
  1537. * error reporting mechanisms .. the read error is not suppressed.
  1538. *
  1539. * The caller must have permission to write to the given devhandle, real
  1540. * address, which must be an IO address. The argument real address must be a
  1541. * size aligned address. The caller must have permission to read from
  1542. * the given devhandle, pci_device cofiguration space offset 0.
  1543. *
  1544. * The hypervisor implementation of this function must block access to any
  1545. * IO address that the guest does not have explicit permission to access.
  1546. */
  1547. #define HV_FAST_PCI_POKE 0xb7
  1548. /* pci_dma_sync()
  1549. * TRAP: HV_FAST_TRAP
  1550. * FUNCTION: HV_FAST_PCI_DMA_SYNC
  1551. * ARG0: devhandle
  1552. * ARG1: real address
  1553. * ARG2: size
  1554. * ARG3: io_sync_direction
  1555. * RET0: status
  1556. * RET1: #synced
  1557. * ERRORS: EINVAL Invalid devhandle or io_sync_direction
  1558. * ENORADDR Bad real address
  1559. *
  1560. * Synchronize a memory region described by the given real address and size,
  1561. * for the device defined by the given devhandle using the direction(s)
  1562. * defined by the given io_sync_direction. The argument size is the size of
  1563. * the memory region in bytes.
  1564. *
  1565. * Return the actual number of bytes synchronized in the return value #synced,
  1566. * which may be less than or equal to the argument size. If the return
  1567. * value #synced is less than size, the caller must continue to call this
  1568. * function with updated real address and size arguments until the entire
  1569. * memory region is synchronized.
  1570. */
  1571. #define HV_FAST_PCI_DMA_SYNC 0xb8
  1572. /* PCI MSI services. */
  1573. #define HV_MSITYPE_MSI32 0x00
  1574. #define HV_MSITYPE_MSI64 0x01
  1575. #define HV_MSIQSTATE_IDLE 0x00
  1576. #define HV_MSIQSTATE_ERROR 0x01
  1577. #define HV_MSIQ_INVALID 0x00
  1578. #define HV_MSIQ_VALID 0x01
  1579. #define HV_MSISTATE_IDLE 0x00
  1580. #define HV_MSISTATE_DELIVERED 0x01
  1581. #define HV_MSIVALID_INVALID 0x00
  1582. #define HV_MSIVALID_VALID 0x01
  1583. #define HV_PCIE_MSGTYPE_PME_MSG 0x18
  1584. #define HV_PCIE_MSGTYPE_PME_ACK_MSG 0x1b
  1585. #define HV_PCIE_MSGTYPE_CORR_MSG 0x30
  1586. #define HV_PCIE_MSGTYPE_NONFATAL_MSG 0x31
  1587. #define HV_PCIE_MSGTYPE_FATAL_MSG 0x33
  1588. #define HV_MSG_INVALID 0x00
  1589. #define HV_MSG_VALID 0x01
  1590. /* pci_msiq_conf()
  1591. * TRAP: HV_FAST_TRAP
  1592. * FUNCTION: HV_FAST_PCI_MSIQ_CONF
  1593. * ARG0: devhandle
  1594. * ARG1: msiqid
  1595. * ARG2: real address
  1596. * ARG3: number of entries
  1597. * RET0: status
  1598. * ERRORS: EINVAL Invalid devhandle, msiqid or nentries
  1599. * EBADALIGN Improperly aligned real address
  1600. * ENORADDR Bad real address
  1601. *
  1602. * Configure the MSI queue given by the devhandle and msiqid arguments,
  1603. * and to be placed at the given real address and be of the given
  1604. * number of entries. The real address must be aligned exactly to match
  1605. * the queue size. Each queue entry is 64-bytes long, so f.e. a 32 entry
  1606. * queue must be aligned on a 2048 byte real address boundary. The MSI-EQ
  1607. * Head and Tail are initialized so that the MSI-EQ is 'empty'.
  1608. *
  1609. * Implementation Note: Certain implementations have fixed sized queues. In
  1610. * that case, number of entries must contain the correct
  1611. * value.
  1612. */
  1613. #define HV_FAST_PCI_MSIQ_CONF 0xc0
  1614. /* pci_msiq_info()
  1615. * TRAP: HV_FAST_TRAP
  1616. * FUNCTION: HV_FAST_PCI_MSIQ_INFO
  1617. * ARG0: devhandle
  1618. * ARG1: msiqid
  1619. * RET0: status
  1620. * RET1: real address
  1621. * RET2: number of entries
  1622. * ERRORS: EINVAL Invalid devhandle or msiqid
  1623. *
  1624. * Return the configuration information for the MSI queue described
  1625. * by the given devhandle and msiqid. The base address of the queue
  1626. * is returned in ARG1 and the number of entries is returned in ARG2.
  1627. * If the queue is unconfigured, the real address is undefined and the
  1628. * number of entries will be returned as zero.
  1629. */
  1630. #define HV_FAST_PCI_MSIQ_INFO 0xc1
  1631. /* pci_msiq_getvalid()
  1632. * TRAP: HV_FAST_TRAP
  1633. * FUNCTION: HV_FAST_PCI_MSIQ_GETVALID
  1634. * ARG0: devhandle
  1635. * ARG1: msiqid
  1636. * RET0: status
  1637. * RET1: msiqvalid (HV_MSIQ_VALID or HV_MSIQ_INVALID)
  1638. * ERRORS: EINVAL Invalid devhandle or msiqid
  1639. *
  1640. * Get the valid state of the MSI-EQ described by the given devhandle and
  1641. * msiqid.
  1642. */
  1643. #define HV_FAST_PCI_MSIQ_GETVALID 0xc2
  1644. /* pci_msiq_setvalid()
  1645. * TRAP: HV_FAST_TRAP
  1646. * FUNCTION: HV_FAST_PCI_MSIQ_SETVALID
  1647. * ARG0: devhandle
  1648. * ARG1: msiqid
  1649. * ARG2: msiqvalid (HV_MSIQ_VALID or HV_MSIQ_INVALID)
  1650. * RET0: status
  1651. * ERRORS: EINVAL Invalid devhandle or msiqid or msiqvalid
  1652. * value or MSI EQ is uninitialized
  1653. *
  1654. * Set the valid state of the MSI-EQ described by the given devhandle and
  1655. * msiqid to the given msiqvalid.
  1656. */
  1657. #define HV_FAST_PCI_MSIQ_SETVALID 0xc3
  1658. /* pci_msiq_getstate()
  1659. * TRAP: HV_FAST_TRAP
  1660. * FUNCTION: HV_FAST_PCI_MSIQ_GETSTATE
  1661. * ARG0: devhandle
  1662. * ARG1: msiqid
  1663. * RET0: status
  1664. * RET1: msiqstate (HV_MSIQSTATE_IDLE or HV_MSIQSTATE_ERROR)
  1665. * ERRORS: EINVAL Invalid devhandle or msiqid
  1666. *
  1667. * Get the state of the MSI-EQ described by the given devhandle and
  1668. * msiqid.
  1669. */
  1670. #define HV_FAST_PCI_MSIQ_GETSTATE 0xc4
  1671. /* pci_msiq_getvalid()
  1672. * TRAP: HV_FAST_TRAP
  1673. * FUNCTION: HV_FAST_PCI_MSIQ_GETVALID
  1674. * ARG0: devhandle
  1675. * ARG1: msiqid
  1676. * ARG2: msiqstate (HV_MSIQSTATE_IDLE or HV_MSIQSTATE_ERROR)
  1677. * RET0: status
  1678. * ERRORS: EINVAL Invalid devhandle or msiqid or msiqstate
  1679. * value or MSI EQ is uninitialized
  1680. *
  1681. * Set the state of the MSI-EQ described by the given devhandle and
  1682. * msiqid to the given msiqvalid.
  1683. */
  1684. #define HV_FAST_PCI_MSIQ_SETSTATE 0xc5
  1685. /* pci_msiq_gethead()
  1686. * TRAP: HV_FAST_TRAP
  1687. * FUNCTION: HV_FAST_PCI_MSIQ_GETHEAD
  1688. * ARG0: devhandle
  1689. * ARG1: msiqid
  1690. * RET0: status
  1691. * RET1: msiqhead
  1692. * ERRORS: EINVAL Invalid devhandle or msiqid
  1693. *
  1694. * Get the current MSI EQ queue head for the MSI-EQ described by the
  1695. * given devhandle and msiqid.
  1696. */
  1697. #define HV_FAST_PCI_MSIQ_GETHEAD 0xc6
  1698. /* pci_msiq_sethead()
  1699. * TRAP: HV_FAST_TRAP
  1700. * FUNCTION: HV_FAST_PCI_MSIQ_SETHEAD
  1701. * ARG0: devhandle
  1702. * ARG1: msiqid
  1703. * ARG2: msiqhead
  1704. * RET0: status
  1705. * ERRORS: EINVAL Invalid devhandle or msiqid or msiqhead,
  1706. * or MSI EQ is uninitialized
  1707. *
  1708. * Set the current MSI EQ queue head for the MSI-EQ described by the
  1709. * given devhandle and msiqid.
  1710. */
  1711. #define HV_FAST_PCI_MSIQ_SETHEAD 0xc7
  1712. /* pci_msiq_gettail()
  1713. * TRAP: HV_FAST_TRAP
  1714. * FUNCTION: HV_FAST_PCI_MSIQ_GETTAIL
  1715. * ARG0: devhandle
  1716. * ARG1: msiqid
  1717. * RET0: status
  1718. * RET1: msiqtail
  1719. * ERRORS: EINVAL Invalid devhandle or msiqid
  1720. *
  1721. * Get the current MSI EQ queue tail for the MSI-EQ described by the
  1722. * given devhandle and msiqid.
  1723. */
  1724. #define HV_FAST_PCI_MSIQ_GETTAIL 0xc8
  1725. /* pci_msi_getvalid()
  1726. * TRAP: HV_FAST_TRAP
  1727. * FUNCTION: HV_FAST_PCI_MSI_GETVALID
  1728. * ARG0: devhandle
  1729. * ARG1: msinum
  1730. * RET0: status
  1731. * RET1: msivalidstate
  1732. * ERRORS: EINVAL Invalid devhandle or msinum
  1733. *
  1734. * Get the current valid/enabled state for the MSI defined by the
  1735. * given devhandle and msinum.
  1736. */
  1737. #define HV_FAST_PCI_MSI_GETVALID 0xc9
  1738. /* pci_msi_setvalid()
  1739. * TRAP: HV_FAST_TRAP
  1740. * FUNCTION: HV_FAST_PCI_MSI_SETVALID
  1741. * ARG0: devhandle
  1742. * ARG1: msinum
  1743. * ARG2: msivalidstate
  1744. * RET0: status
  1745. * ERRORS: EINVAL Invalid devhandle or msinum or msivalidstate
  1746. *
  1747. * Set the current valid/enabled state for the MSI defined by the
  1748. * given devhandle and msinum.
  1749. */
  1750. #define HV_FAST_PCI_MSI_SETVALID 0xca
  1751. /* pci_msi_getmsiq()
  1752. * TRAP: HV_FAST_TRAP
  1753. * FUNCTION: HV_FAST_PCI_MSI_GETMSIQ
  1754. * ARG0: devhandle
  1755. * ARG1: msinum
  1756. * RET0: status
  1757. * RET1: msiqid
  1758. * ERRORS: EINVAL Invalid devhandle or msinum or MSI is unbound
  1759. *
  1760. * Get the MSI EQ that the MSI defined by the given devhandle and
  1761. * msinum is bound to.
  1762. */
  1763. #define HV_FAST_PCI_MSI_GETMSIQ 0xcb
  1764. /* pci_msi_setmsiq()
  1765. * TRAP: HV_FAST_TRAP
  1766. * FUNCTION: HV_FAST_PCI_MSI_SETMSIQ
  1767. * ARG0: devhandle
  1768. * ARG1: msinum
  1769. * ARG2: msitype
  1770. * ARG3: msiqid
  1771. * RET0: status
  1772. * ERRORS: EINVAL Invalid devhandle or msinum or msiqid
  1773. *
  1774. * Set the MSI EQ that the MSI defined by the given devhandle and
  1775. * msinum is bound to.
  1776. */
  1777. #define HV_FAST_PCI_MSI_SETMSIQ 0xcc
  1778. /* pci_msi_getstate()
  1779. * TRAP: HV_FAST_TRAP
  1780. * FUNCTION: HV_FAST_PCI_MSI_GETSTATE
  1781. * ARG0: devhandle
  1782. * ARG1: msinum
  1783. * RET0: status
  1784. * RET1: msistate
  1785. * ERRORS: EINVAL Invalid devhandle or msinum
  1786. *
  1787. * Get the state of the MSI defined by the given devhandle and msinum.
  1788. * If not initialized, return HV_MSISTATE_IDLE.
  1789. */
  1790. #define HV_FAST_PCI_MSI_GETSTATE 0xcd
  1791. /* pci_msi_setstate()
  1792. * TRAP: HV_FAST_TRAP
  1793. * FUNCTION: HV_FAST_PCI_MSI_SETSTATE
  1794. * ARG0: devhandle
  1795. * ARG1: msinum
  1796. * ARG2: msistate
  1797. * RET0: status
  1798. * ERRORS: EINVAL Invalid devhandle or msinum or msistate
  1799. *
  1800. * Set the state of the MSI defined by the given devhandle and msinum.
  1801. */
  1802. #define HV_FAST_PCI_MSI_SETSTATE 0xce
  1803. /* pci_msg_getmsiq()
  1804. * TRAP: HV_FAST_TRAP
  1805. * FUNCTION: HV_FAST_PCI_MSG_GETMSIQ
  1806. * ARG0: devhandle
  1807. * ARG1: msgtype
  1808. * RET0: status
  1809. * RET1: msiqid
  1810. * ERRORS: EINVAL Invalid devhandle or msgtype
  1811. *
  1812. * Get the MSI EQ of the MSG defined by the given devhandle and msgtype.
  1813. */
  1814. #define HV_FAST_PCI_MSG_GETMSIQ 0xd0
  1815. /* pci_msg_setmsiq()
  1816. * TRAP: HV_FAST_TRAP
  1817. * FUNCTION: HV_FAST_PCI_MSG_SETMSIQ
  1818. * ARG0: devhandle
  1819. * ARG1: msgtype
  1820. * ARG2: msiqid
  1821. * RET0: status
  1822. * ERRORS: EINVAL Invalid devhandle, msgtype, or msiqid
  1823. *
  1824. * Set the MSI EQ of the MSG defined by the given devhandle and msgtype.
  1825. */
  1826. #define HV_FAST_PCI_MSG_SETMSIQ 0xd1
  1827. /* pci_msg_getvalid()
  1828. * TRAP: HV_FAST_TRAP
  1829. * FUNCTION: HV_FAST_PCI_MSG_GETVALID
  1830. * ARG0: devhandle
  1831. * ARG1: msgtype
  1832. * RET0: status
  1833. * RET1: msgvalidstate
  1834. * ERRORS: EINVAL Invalid devhandle or msgtype
  1835. *
  1836. * Get the valid/enabled state of the MSG defined by the given
  1837. * devhandle and msgtype.
  1838. */
  1839. #define HV_FAST_PCI_MSG_GETVALID 0xd2
  1840. /* pci_msg_setvalid()
  1841. * TRAP: HV_FAST_TRAP
  1842. * FUNCTION: HV_FAST_PCI_MSG_SETVALID
  1843. * ARG0: devhandle
  1844. * ARG1: msgtype
  1845. * ARG2: msgvalidstate
  1846. * RET0: status
  1847. * ERRORS: EINVAL Invalid devhandle or msgtype or msgvalidstate
  1848. *
  1849. * Set the valid/enabled state of the MSG defined by the given
  1850. * devhandle and msgtype.
  1851. */
  1852. #define HV_FAST_PCI_MSG_SETVALID 0xd3
  1853. /* Performance counter services. */
  1854. #define HV_PERF_JBUS_PERF_CTRL_REG 0x00
  1855. #define HV_PERF_JBUS_PERF_CNT_REG 0x01
  1856. #define HV_PERF_DRAM_PERF_CTRL_REG_0 0x02
  1857. #define HV_PERF_DRAM_PERF_CNT_REG_0 0x03
  1858. #define HV_PERF_DRAM_PERF_CTRL_REG_1 0x04
  1859. #define HV_PERF_DRAM_PERF_CNT_REG_1 0x05
  1860. #define HV_PERF_DRAM_PERF_CTRL_REG_2 0x06
  1861. #define HV_PERF_DRAM_PERF_CNT_REG_2 0x07
  1862. #define HV_PERF_DRAM_PERF_CTRL_REG_3 0x08
  1863. #define HV_PERF_DRAM_PERF_CNT_REG_3 0x09
  1864. /* get_perfreg()
  1865. * TRAP: HV_FAST_TRAP
  1866. * FUNCTION: HV_FAST_GET_PERFREG
  1867. * ARG0: performance reg number
  1868. * RET0: status
  1869. * RET1: performance reg value
  1870. * ERRORS: EINVAL Invalid performance register number
  1871. * ENOACCESS No access allowed to performance counters
  1872. *
  1873. * Read the value of the given DRAM/JBUS performance counter/control register.
  1874. */
  1875. #define HV_FAST_GET_PERFREG 0x100
  1876. /* set_perfreg()
  1877. * TRAP: HV_FAST_TRAP
  1878. * FUNCTION: HV_FAST_SET_PERFREG
  1879. * ARG0: performance reg number
  1880. * ARG1: performance reg value
  1881. * RET0: status
  1882. * ERRORS: EINVAL Invalid performance register number
  1883. * ENOACCESS No access allowed to performance counters
  1884. *
  1885. * Write the given performance reg value to the given DRAM/JBUS
  1886. * performance counter/control register.
  1887. */
  1888. #define HV_FAST_SET_PERFREG 0x101
  1889. /* MMU statistics services.
  1890. *
  1891. * The hypervisor maintains MMU statistics and privileged code provides
  1892. * a buffer where these statistics can be collected. It is continually
  1893. * updated once configured. The layout is as follows:
  1894. */
  1895. #ifndef __ASSEMBLY__
  1896. struct hv_mmu_statistics {
  1897. unsigned long immu_tsb_hits_ctx0_8k_tte;
  1898. unsigned long immu_tsb_ticks_ctx0_8k_tte;
  1899. unsigned long immu_tsb_hits_ctx0_64k_tte;
  1900. unsigned long immu_tsb_ticks_ctx0_64k_tte;
  1901. unsigned long __reserved1[2];
  1902. unsigned long immu_tsb_hits_ctx0_4mb_tte;
  1903. unsigned long immu_tsb_ticks_ctx0_4mb_tte;
  1904. unsigned long __reserved2[2];
  1905. unsigned long immu_tsb_hits_ctx0_256mb_tte;
  1906. unsigned long immu_tsb_ticks_ctx0_256mb_tte;
  1907. unsigned long __reserved3[4];
  1908. unsigned long immu_tsb_hits_ctxnon0_8k_tte;
  1909. unsigned long immu_tsb_ticks_ctxnon0_8k_tte;
  1910. unsigned long immu_tsb_hits_ctxnon0_64k_tte;
  1911. unsigned long immu_tsb_ticks_ctxnon0_64k_tte;
  1912. unsigned long __reserved4[2];
  1913. unsigned long immu_tsb_hits_ctxnon0_4mb_tte;
  1914. unsigned long immu_tsb_ticks_ctxnon0_4mb_tte;
  1915. unsigned long __reserved5[2];
  1916. unsigned long immu_tsb_hits_ctxnon0_256mb_tte;
  1917. unsigned long immu_tsb_ticks_ctxnon0_256mb_tte;
  1918. unsigned long __reserved6[4];
  1919. unsigned long dmmu_tsb_hits_ctx0_8k_tte;
  1920. unsigned long dmmu_tsb_ticks_ctx0_8k_tte;
  1921. unsigned long dmmu_tsb_hits_ctx0_64k_tte;
  1922. unsigned long dmmu_tsb_ticks_ctx0_64k_tte;
  1923. unsigned long __reserved7[2];
  1924. unsigned long dmmu_tsb_hits_ctx0_4mb_tte;
  1925. unsigned long dmmu_tsb_ticks_ctx0_4mb_tte;
  1926. unsigned long __reserved8[2];
  1927. unsigned long dmmu_tsb_hits_ctx0_256mb_tte;
  1928. unsigned long dmmu_tsb_ticks_ctx0_256mb_tte;
  1929. unsigned long __reserved9[4];
  1930. unsigned long dmmu_tsb_hits_ctxnon0_8k_tte;
  1931. unsigned long dmmu_tsb_ticks_ctxnon0_8k_tte;
  1932. unsigned long dmmu_tsb_hits_ctxnon0_64k_tte;
  1933. unsigned long dmmu_tsb_ticks_ctxnon0_64k_tte;
  1934. unsigned long __reserved10[2];
  1935. unsigned long dmmu_tsb_hits_ctxnon0_4mb_tte;
  1936. unsigned long dmmu_tsb_ticks_ctxnon0_4mb_tte;
  1937. unsigned long __reserved11[2];
  1938. unsigned long dmmu_tsb_hits_ctxnon0_256mb_tte;
  1939. unsigned long dmmu_tsb_ticks_ctxnon0_256mb_tte;
  1940. unsigned long __reserved12[4];
  1941. };
  1942. #endif
  1943. /* mmustat_conf()
  1944. * TRAP: HV_FAST_TRAP
  1945. * FUNCTION: HV_FAST_MMUSTAT_CONF
  1946. * ARG0: real address
  1947. * RET0: status
  1948. * RET1: real address
  1949. * ERRORS: ENORADDR Invalid real address
  1950. * EBADALIGN Real address not aligned on 64-byte boundary
  1951. * EBADTRAP API not supported on this processor
  1952. *
  1953. * Enable MMU statistic gathering using the buffer at the given real
  1954. * address on the current virtual CPU. The new buffer real address
  1955. * is given in ARG1, and the previously specified buffer real address
  1956. * is returned in RET1, or is returned as zero for the first invocation.
  1957. *
  1958. * If the passed in real address argument is zero, this will disable
  1959. * MMU statistic collection on the current virtual CPU. If an error is
  1960. * returned then no statistics are collected.
  1961. *
  1962. * The buffer contents should be initialized to all zeros before being
  1963. * given to the hypervisor or else the statistics will be meaningless.
  1964. */
  1965. #define HV_FAST_MMUSTAT_CONF 0x102
  1966. /* mmustat_info()
  1967. * TRAP: HV_FAST_TRAP
  1968. * FUNCTION: HV_FAST_MMUSTAT_INFO
  1969. * RET0: status
  1970. * RET1: real address
  1971. * ERRORS: EBADTRAP API not supported on this processor
  1972. *
  1973. * Return the current state and real address of the currently configured
  1974. * MMU statistics buffer on the current virtual CPU.
  1975. */
  1976. #define HV_FAST_MMUSTAT_INFO 0x103
  1977. /* Function numbers for HV_CORE_TRAP. */
  1978. #define HV_CORE_VER 0x00
  1979. #define HV_CORE_PUTCHAR 0x01
  1980. #define HV_CORE_EXIT 0x02
  1981. #endif /* !(_SPARC64_HYPERVISOR_H) */