]>
Commit | Line | Data |
---|---|---|
da76ee76 PB |
1 | HXCOMM Use DEFHEADING() to define headings in both help text and texi |
2 | HXCOMM Text between STEXI and ETEXI are copied to texi version and | |
3 | HXCOMM discarded from C version | |
4 | HXCOMM DEF(command, args, callback, arg_string, help) is used to construct | |
5 | HXCOMM monitor info commands | |
6 | HXCOMM HXCOMM can be used for comments, discarded from both texi and C | |
7 | ||
8 | STEXI | |
9 | @table @option | |
2cd8af2d PB |
10 | @item info @var{subcommand} |
11 | @findex info | |
12 | Show various information about the system state. | |
13 | @table @option | |
da76ee76 PB |
14 | ETEXI |
15 | ||
16 | { | |
17 | .name = "version", | |
18 | .args_type = "", | |
19 | .params = "", | |
20 | .help = "show the version of QEMU", | |
2b9e3576 | 21 | .cmd = hmp_info_version, |
8c7c7ecb | 22 | .flags = "p", |
da76ee76 PB |
23 | }, |
24 | ||
25 | STEXI | |
26 | @item info version | |
1b591700 | 27 | @findex info version |
da76ee76 PB |
28 | Show the version of QEMU. |
29 | ETEXI | |
30 | ||
31 | { | |
32 | .name = "network", | |
33 | .args_type = "", | |
34 | .params = "", | |
35 | .help = "show the network state", | |
2b9e3576 | 36 | .cmd = hmp_info_network, |
da76ee76 PB |
37 | }, |
38 | ||
39 | STEXI | |
40 | @item info network | |
1b591700 | 41 | @findex info network |
da76ee76 PB |
42 | Show the network state. |
43 | ETEXI | |
44 | ||
45 | { | |
46 | .name = "chardev", | |
47 | .args_type = "", | |
48 | .params = "", | |
49 | .help = "show the character devices", | |
2b9e3576 | 50 | .cmd = hmp_info_chardev, |
8c7c7ecb | 51 | .flags = "p", |
da76ee76 PB |
52 | }, |
53 | ||
54 | STEXI | |
55 | @item info chardev | |
1b591700 | 56 | @findex info chardev |
da76ee76 PB |
57 | Show the character devices. |
58 | ETEXI | |
59 | ||
60 | { | |
61 | .name = "block", | |
62 | .args_type = "nodes:-n,verbose:-v,device:B?", | |
63 | .params = "[-n] [-v] [device]", | |
64 | .help = "show info of one block device or all block devices " | |
65 | "(-n: show named nodes; -v: show details)", | |
2b9e3576 | 66 | .cmd = hmp_info_block, |
da76ee76 PB |
67 | }, |
68 | ||
69 | STEXI | |
70 | @item info block | |
1b591700 | 71 | @findex info block |
da76ee76 PB |
72 | Show info of one block device or all block devices. |
73 | ETEXI | |
74 | ||
75 | { | |
76 | .name = "blockstats", | |
77 | .args_type = "", | |
78 | .params = "", | |
79 | .help = "show block device statistics", | |
2b9e3576 | 80 | .cmd = hmp_info_blockstats, |
da76ee76 PB |
81 | }, |
82 | ||
83 | STEXI | |
84 | @item info blockstats | |
1b591700 | 85 | @findex info blockstats |
da76ee76 PB |
86 | Show block device statistics. |
87 | ETEXI | |
88 | ||
89 | { | |
90 | .name = "block-jobs", | |
91 | .args_type = "", | |
92 | .params = "", | |
93 | .help = "show progress of ongoing block device operations", | |
2b9e3576 | 94 | .cmd = hmp_info_block_jobs, |
da76ee76 PB |
95 | }, |
96 | ||
97 | STEXI | |
98 | @item info block-jobs | |
1b591700 | 99 | @findex info block-jobs |
da76ee76 PB |
100 | Show progress of ongoing block device operations. |
101 | ETEXI | |
102 | ||
103 | { | |
104 | .name = "registers", | |
18f08282 SJS |
105 | .args_type = "cpustate_all:-a", |
106 | .params = "[-a]", | |
107 | .help = "show the cpu registers (-a: all - show register info for all cpus)", | |
2b9e3576 | 108 | .cmd = hmp_info_registers, |
da76ee76 PB |
109 | }, |
110 | ||
111 | STEXI | |
112 | @item info registers | |
1b591700 | 113 | @findex info registers |
da76ee76 | 114 | Show the cpu registers. |
1f871d49 PB |
115 | ETEXI |
116 | ||
117 | #if defined(TARGET_I386) | |
118 | { | |
119 | .name = "lapic", | |
1bef2284 YW |
120 | .args_type = "apic-id:i?", |
121 | .params = "[apic-id]", | |
122 | .help = "show local apic state (apic-id: local apic to read, default is which of current CPU)", | |
123 | ||
2b9e3576 | 124 | .cmd = hmp_info_local_apic, |
1f871d49 PB |
125 | }, |
126 | #endif | |
127 | ||
128 | STEXI | |
129 | @item info lapic | |
1b591700 | 130 | @findex info lapic |
1f871d49 | 131 | Show local APIC state |
d665d696 PB |
132 | ETEXI |
133 | ||
134 | #if defined(TARGET_I386) | |
135 | { | |
136 | .name = "ioapic", | |
137 | .args_type = "", | |
138 | .params = "", | |
139 | .help = "show io apic state", | |
2b9e3576 | 140 | .cmd = hmp_info_io_apic, |
d665d696 PB |
141 | }, |
142 | #endif | |
143 | ||
144 | STEXI | |
145 | @item info ioapic | |
1b591700 | 146 | @findex info ioapic |
d665d696 | 147 | Show io APIC state |
da76ee76 PB |
148 | ETEXI |
149 | ||
150 | { | |
151 | .name = "cpus", | |
152 | .args_type = "", | |
153 | .params = "", | |
154 | .help = "show infos for each CPU", | |
2b9e3576 | 155 | .cmd = hmp_info_cpus, |
da76ee76 PB |
156 | }, |
157 | ||
158 | STEXI | |
159 | @item info cpus | |
1b591700 | 160 | @findex info cpus |
da76ee76 PB |
161 | Show infos for each CPU. |
162 | ETEXI | |
163 | ||
164 | { | |
165 | .name = "history", | |
166 | .args_type = "", | |
167 | .params = "", | |
168 | .help = "show the command line history", | |
2b9e3576 | 169 | .cmd = hmp_info_history, |
8c7c7ecb | 170 | .flags = "p", |
da76ee76 PB |
171 | }, |
172 | ||
173 | STEXI | |
174 | @item info history | |
1b591700 | 175 | @findex info history |
da76ee76 PB |
176 | Show the command line history. |
177 | ETEXI | |
178 | ||
da76ee76 PB |
179 | { |
180 | .name = "irq", | |
181 | .args_type = "", | |
182 | .params = "", | |
183 | .help = "show the interrupts statistics (if available)", | |
2b9e3576 | 184 | .cmd = hmp_info_irq, |
da76ee76 PB |
185 | }, |
186 | ||
187 | STEXI | |
188 | @item info irq | |
1b591700 | 189 | @findex info irq |
da76ee76 PB |
190 | Show the interrupts statistics (if available). |
191 | ETEXI | |
192 | ||
193 | { | |
194 | .name = "pic", | |
195 | .args_type = "", | |
196 | .params = "", | |
254316fa | 197 | .help = "show PIC state", |
2b9e3576 | 198 | .cmd = hmp_info_pic, |
da76ee76 | 199 | }, |
da76ee76 PB |
200 | |
201 | STEXI | |
202 | @item info pic | |
1b591700 | 203 | @findex info pic |
0cda9d87 | 204 | Show PIC state. |
f4b2c02a YS |
205 | ETEXI |
206 | ||
207 | { | |
208 | .name = "rdma", | |
209 | .args_type = "", | |
210 | .params = "", | |
211 | .help = "show RDMA state", | |
212 | .cmd = hmp_info_rdma, | |
213 | }, | |
214 | ||
215 | STEXI | |
216 | @item info rdma | |
217 | @findex info rdma | |
218 | Show RDMA state. | |
abadcbc8 PB |
219 | ETEXI |
220 | ||
221 | { | |
222 | .name = "pci", | |
223 | .args_type = "", | |
224 | .params = "", | |
225 | .help = "show PCI info", | |
2b9e3576 | 226 | .cmd = hmp_info_pci, |
abadcbc8 PB |
227 | }, |
228 | ||
229 | STEXI | |
230 | @item info pci | |
1b591700 | 231 | @findex info pci |
abadcbc8 | 232 | Show PCI information. |
da76ee76 PB |
233 | ETEXI |
234 | ||
235 | #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \ | |
2097dca6 | 236 | defined(TARGET_PPC) || defined(TARGET_XTENSA) || defined(TARGET_M68K) |
da76ee76 PB |
237 | { |
238 | .name = "tlb", | |
239 | .args_type = "", | |
240 | .params = "", | |
241 | .help = "show virtual to physical memory mappings", | |
2b9e3576 | 242 | .cmd = hmp_info_tlb, |
da76ee76 PB |
243 | }, |
244 | #endif | |
245 | ||
246 | STEXI | |
247 | @item info tlb | |
1b591700 | 248 | @findex info tlb |
da76ee76 PB |
249 | Show virtual to physical memory mappings. |
250 | ETEXI | |
251 | ||
252 | #if defined(TARGET_I386) | |
253 | { | |
254 | .name = "mem", | |
255 | .args_type = "", | |
256 | .params = "", | |
257 | .help = "show the active virtual memory mappings", | |
2b9e3576 | 258 | .cmd = hmp_info_mem, |
da76ee76 PB |
259 | }, |
260 | #endif | |
261 | ||
262 | STEXI | |
263 | @item info mem | |
1b591700 | 264 | @findex info mem |
da76ee76 PB |
265 | Show the active virtual memory mappings. |
266 | ETEXI | |
267 | ||
268 | { | |
269 | .name = "mtree", | |
fc051ae6 AK |
270 | .args_type = "flatview:-f,dispatch_tree:-d,owner:-o", |
271 | .params = "[-f][-d][-o]", | |
5e8fd947 | 272 | .help = "show memory tree (-f: dump flat view for address spaces;" |
fc051ae6 AK |
273 | "-d: dump dispatch tree, valid with -f only);" |
274 | "-o: dump region owners/parents", | |
2b9e3576 | 275 | .cmd = hmp_info_mtree, |
da76ee76 PB |
276 | }, |
277 | ||
278 | STEXI | |
279 | @item info mtree | |
1b591700 | 280 | @findex info mtree |
da76ee76 PB |
281 | Show memory tree. |
282 | ETEXI | |
283 | ||
f0d14a95 | 284 | #if defined(CONFIG_TCG) |
da76ee76 PB |
285 | { |
286 | .name = "jit", | |
287 | .args_type = "", | |
288 | .params = "", | |
289 | .help = "show dynamic compiler info", | |
2b9e3576 | 290 | .cmd = hmp_info_jit, |
da76ee76 | 291 | }, |
f0d14a95 | 292 | #endif |
da76ee76 PB |
293 | |
294 | STEXI | |
295 | @item info jit | |
1b591700 | 296 | @findex info jit |
da76ee76 PB |
297 | Show dynamic compiler info. |
298 | ETEXI | |
299 | ||
f0d14a95 | 300 | #if defined(CONFIG_TCG) |
da76ee76 PB |
301 | { |
302 | .name = "opcount", | |
303 | .args_type = "", | |
304 | .params = "", | |
305 | .help = "show dynamic compiler opcode counters", | |
2b9e3576 | 306 | .cmd = hmp_info_opcount, |
da76ee76 | 307 | }, |
f0d14a95 | 308 | #endif |
da76ee76 PB |
309 | |
310 | STEXI | |
311 | @item info opcount | |
1b591700 | 312 | @findex info opcount |
da76ee76 | 313 | Show dynamic compiler opcode counters |
97bfafe2 EC |
314 | ETEXI |
315 | ||
316 | { | |
317 | .name = "sync-profile", | |
318 | .args_type = "mean:-m,no_coalesce:-n,max:i?", | |
319 | .params = "[-m] [-n] [max]", | |
320 | .help = "show synchronization profiling info, up to max entries " | |
321 | "(default: 10), sorted by total wait time. (-m: sort by " | |
322 | "mean wait time; -n: do not coalesce objects with the " | |
323 | "same call site)", | |
324 | .cmd = hmp_info_sync_profile, | |
325 | }, | |
326 | ||
327 | STEXI | |
328 | @item info sync-profile [-m|-n] [@var{max}] | |
329 | @findex info sync-profile | |
330 | Show synchronization profiling info, up to @var{max} entries (default: 10), | |
331 | sorted by total wait time. | |
332 | -m: sort by mean wait time | |
333 | -n: do not coalesce objects with the same call site | |
334 | When different objects that share the same call site are coalesced, the "Object" | |
335 | field shows---enclosed in brackets---the number of objects being coalesced. | |
da76ee76 PB |
336 | ETEXI |
337 | ||
338 | { | |
339 | .name = "kvm", | |
340 | .args_type = "", | |
341 | .params = "", | |
342 | .help = "show KVM information", | |
2b9e3576 | 343 | .cmd = hmp_info_kvm, |
da76ee76 PB |
344 | }, |
345 | ||
346 | STEXI | |
347 | @item info kvm | |
1b591700 | 348 | @findex info kvm |
da76ee76 PB |
349 | Show KVM information. |
350 | ETEXI | |
351 | ||
352 | { | |
353 | .name = "numa", | |
354 | .args_type = "", | |
355 | .params = "", | |
356 | .help = "show NUMA information", | |
2b9e3576 | 357 | .cmd = hmp_info_numa, |
da76ee76 PB |
358 | }, |
359 | ||
360 | STEXI | |
361 | @item info numa | |
1b591700 | 362 | @findex info numa |
da76ee76 PB |
363 | Show NUMA information. |
364 | ETEXI | |
365 | ||
366 | { | |
367 | .name = "usb", | |
368 | .args_type = "", | |
369 | .params = "", | |
370 | .help = "show guest USB devices", | |
2b9e3576 | 371 | .cmd = hmp_info_usb, |
da76ee76 PB |
372 | }, |
373 | ||
374 | STEXI | |
375 | @item info usb | |
1b591700 | 376 | @findex info usb |
da76ee76 PB |
377 | Show guest USB devices. |
378 | ETEXI | |
379 | ||
380 | { | |
381 | .name = "usbhost", | |
382 | .args_type = "", | |
383 | .params = "", | |
384 | .help = "show host USB devices", | |
2b9e3576 | 385 | .cmd = hmp_info_usbhost, |
da76ee76 PB |
386 | }, |
387 | ||
388 | STEXI | |
389 | @item info usbhost | |
1b591700 | 390 | @findex info usbhost |
da76ee76 PB |
391 | Show host USB devices. |
392 | ETEXI | |
393 | ||
394 | { | |
395 | .name = "profile", | |
396 | .args_type = "", | |
397 | .params = "", | |
398 | .help = "show profiling information", | |
2b9e3576 | 399 | .cmd = hmp_info_profile, |
da76ee76 PB |
400 | }, |
401 | ||
402 | STEXI | |
403 | @item info profile | |
1b591700 | 404 | @findex info profile |
da76ee76 PB |
405 | Show profiling information. |
406 | ETEXI | |
407 | ||
408 | { | |
409 | .name = "capture", | |
410 | .args_type = "", | |
411 | .params = "", | |
412 | .help = "show capture information", | |
2b9e3576 | 413 | .cmd = hmp_info_capture, |
da76ee76 PB |
414 | }, |
415 | ||
416 | STEXI | |
417 | @item info capture | |
1b591700 | 418 | @findex info capture |
da76ee76 PB |
419 | Show capture information. |
420 | ETEXI | |
421 | ||
422 | { | |
423 | .name = "snapshots", | |
424 | .args_type = "", | |
425 | .params = "", | |
426 | .help = "show the currently saved VM snapshots", | |
2b9e3576 | 427 | .cmd = hmp_info_snapshots, |
da76ee76 PB |
428 | }, |
429 | ||
430 | STEXI | |
431 | @item info snapshots | |
1b591700 | 432 | @findex info snapshots |
da76ee76 PB |
433 | Show the currently saved VM snapshots. |
434 | ETEXI | |
435 | ||
436 | { | |
437 | .name = "status", | |
438 | .args_type = "", | |
439 | .params = "", | |
440 | .help = "show the current VM status (running|paused)", | |
2b9e3576 | 441 | .cmd = hmp_info_status, |
8c7c7ecb | 442 | .flags = "p", |
da76ee76 PB |
443 | }, |
444 | ||
445 | STEXI | |
446 | @item info status | |
1b591700 | 447 | @findex info status |
da76ee76 PB |
448 | Show the current VM status (running|paused). |
449 | ETEXI | |
450 | ||
451 | { | |
452 | .name = "mice", | |
453 | .args_type = "", | |
454 | .params = "", | |
455 | .help = "show which guest mouse is receiving events", | |
2b9e3576 | 456 | .cmd = hmp_info_mice, |
da76ee76 PB |
457 | }, |
458 | ||
459 | STEXI | |
460 | @item info mice | |
1b591700 | 461 | @findex info mice |
da76ee76 PB |
462 | Show which guest mouse is receiving events. |
463 | ETEXI | |
464 | ||
05eb4a25 | 465 | #if defined(CONFIG_VNC) |
da76ee76 PB |
466 | { |
467 | .name = "vnc", | |
468 | .args_type = "", | |
469 | .params = "", | |
470 | .help = "show the vnc server status", | |
2b9e3576 | 471 | .cmd = hmp_info_vnc, |
da76ee76 | 472 | }, |
05eb4a25 | 473 | #endif |
da76ee76 PB |
474 | |
475 | STEXI | |
476 | @item info vnc | |
1b591700 | 477 | @findex info vnc |
da76ee76 PB |
478 | Show the vnc server status. |
479 | ETEXI | |
480 | ||
481 | #if defined(CONFIG_SPICE) | |
482 | { | |
483 | .name = "spice", | |
484 | .args_type = "", | |
485 | .params = "", | |
486 | .help = "show the spice server status", | |
2b9e3576 | 487 | .cmd = hmp_info_spice, |
da76ee76 PB |
488 | }, |
489 | #endif | |
490 | ||
491 | STEXI | |
492 | @item info spice | |
1b591700 | 493 | @findex info spice |
da76ee76 PB |
494 | Show the spice server status. |
495 | ETEXI | |
496 | ||
497 | { | |
498 | .name = "name", | |
499 | .args_type = "", | |
500 | .params = "", | |
501 | .help = "show the current VM name", | |
2b9e3576 | 502 | .cmd = hmp_info_name, |
8c7c7ecb | 503 | .flags = "p", |
da76ee76 PB |
504 | }, |
505 | ||
506 | STEXI | |
507 | @item info name | |
1b591700 | 508 | @findex info name |
da76ee76 PB |
509 | Show the current VM name. |
510 | ETEXI | |
511 | ||
512 | { | |
513 | .name = "uuid", | |
514 | .args_type = "", | |
515 | .params = "", | |
516 | .help = "show the current VM UUID", | |
2b9e3576 | 517 | .cmd = hmp_info_uuid, |
8c7c7ecb | 518 | .flags = "p", |
da76ee76 PB |
519 | }, |
520 | ||
521 | STEXI | |
522 | @item info uuid | |
1b591700 | 523 | @findex info uuid |
da76ee76 PB |
524 | Show the current VM UUID. |
525 | ETEXI | |
526 | ||
527 | { | |
528 | .name = "cpustats", | |
529 | .args_type = "", | |
530 | .params = "", | |
531 | .help = "show CPU statistics", | |
2b9e3576 | 532 | .cmd = hmp_info_cpustats, |
da76ee76 PB |
533 | }, |
534 | ||
535 | STEXI | |
536 | @item info cpustats | |
1b591700 | 537 | @findex info cpustats |
da76ee76 PB |
538 | Show CPU statistics. |
539 | ETEXI | |
540 | ||
541 | #if defined(CONFIG_SLIRP) | |
542 | { | |
543 | .name = "usernet", | |
544 | .args_type = "", | |
545 | .params = "", | |
546 | .help = "show user network stack connection states", | |
2b9e3576 | 547 | .cmd = hmp_info_usernet, |
da76ee76 PB |
548 | }, |
549 | #endif | |
550 | ||
551 | STEXI | |
552 | @item info usernet | |
1b591700 | 553 | @findex info usernet |
da76ee76 PB |
554 | Show user network stack connection states. |
555 | ETEXI | |
556 | ||
557 | { | |
558 | .name = "migrate", | |
559 | .args_type = "", | |
560 | .params = "", | |
561 | .help = "show migration status", | |
2b9e3576 | 562 | .cmd = hmp_info_migrate, |
da76ee76 PB |
563 | }, |
564 | ||
565 | STEXI | |
566 | @item info migrate | |
1b591700 | 567 | @findex info migrate |
da76ee76 PB |
568 | Show migration status. |
569 | ETEXI | |
570 | ||
571 | { | |
572 | .name = "migrate_capabilities", | |
573 | .args_type = "", | |
574 | .params = "", | |
575 | .help = "show current migration capabilities", | |
2b9e3576 | 576 | .cmd = hmp_info_migrate_capabilities, |
da76ee76 PB |
577 | }, |
578 | ||
579 | STEXI | |
580 | @item info migrate_capabilities | |
1b591700 | 581 | @findex info migrate_capabilities |
da76ee76 PB |
582 | Show current migration capabilities. |
583 | ETEXI | |
584 | ||
585 | { | |
586 | .name = "migrate_parameters", | |
587 | .args_type = "", | |
588 | .params = "", | |
589 | .help = "show current migration parameters", | |
2b9e3576 | 590 | .cmd = hmp_info_migrate_parameters, |
da76ee76 PB |
591 | }, |
592 | ||
593 | STEXI | |
594 | @item info migrate_parameters | |
1b591700 | 595 | @findex info migrate_parameters |
da76ee76 PB |
596 | Show current migration parameters. |
597 | ETEXI | |
598 | ||
599 | { | |
600 | .name = "migrate_cache_size", | |
601 | .args_type = "", | |
602 | .params = "", | |
603 | .help = "show current migration xbzrle cache size", | |
2b9e3576 | 604 | .cmd = hmp_info_migrate_cache_size, |
da76ee76 PB |
605 | }, |
606 | ||
607 | STEXI | |
608 | @item info migrate_cache_size | |
1b591700 | 609 | @findex info migrate_cache_size |
da76ee76 PB |
610 | Show current migration xbzrle cache size. |
611 | ETEXI | |
612 | ||
613 | { | |
614 | .name = "balloon", | |
615 | .args_type = "", | |
616 | .params = "", | |
617 | .help = "show balloon information", | |
2b9e3576 | 618 | .cmd = hmp_info_balloon, |
da76ee76 PB |
619 | }, |
620 | ||
621 | STEXI | |
622 | @item info balloon | |
1b591700 | 623 | @findex info balloon |
da76ee76 PB |
624 | Show balloon information. |
625 | ETEXI | |
626 | ||
627 | { | |
628 | .name = "qtree", | |
629 | .args_type = "", | |
630 | .params = "", | |
631 | .help = "show device tree", | |
2b9e3576 | 632 | .cmd = hmp_info_qtree, |
da76ee76 PB |
633 | }, |
634 | ||
635 | STEXI | |
636 | @item info qtree | |
1b591700 | 637 | @findex info qtree |
da76ee76 PB |
638 | Show device tree. |
639 | ETEXI | |
640 | ||
641 | { | |
642 | .name = "qdm", | |
643 | .args_type = "", | |
644 | .params = "", | |
645 | .help = "show qdev device model list", | |
2b9e3576 | 646 | .cmd = hmp_info_qdm, |
da76ee76 PB |
647 | }, |
648 | ||
649 | STEXI | |
650 | @item info qdm | |
1b591700 | 651 | @findex info qdm |
da76ee76 PB |
652 | Show qdev device model list. |
653 | ETEXI | |
654 | ||
655 | { | |
656 | .name = "qom-tree", | |
657 | .args_type = "path:s?", | |
658 | .params = "[path]", | |
659 | .help = "show QOM composition tree", | |
2b9e3576 | 660 | .cmd = hmp_info_qom_tree, |
8c7c7ecb | 661 | .flags = "p", |
da76ee76 PB |
662 | }, |
663 | ||
664 | STEXI | |
665 | @item info qom-tree | |
1b591700 | 666 | @findex info qom-tree |
da76ee76 PB |
667 | Show QOM composition tree. |
668 | ETEXI | |
669 | ||
670 | { | |
671 | .name = "roms", | |
672 | .args_type = "", | |
673 | .params = "", | |
674 | .help = "show roms", | |
2b9e3576 | 675 | .cmd = hmp_info_roms, |
da76ee76 PB |
676 | }, |
677 | ||
678 | STEXI | |
679 | @item info roms | |
1b591700 | 680 | @findex info roms |
da76ee76 PB |
681 | Show roms. |
682 | ETEXI | |
683 | ||
684 | { | |
685 | .name = "trace-events", | |
77e2b172 LV |
686 | .args_type = "name:s?,vcpu:i?", |
687 | .params = "[name] [vcpu]", | |
bd71211d | 688 | .help = "show available trace-events & their state " |
77e2b172 | 689 | "(name: event name pattern; vcpu: vCPU to query, default is any)", |
2b9e3576 | 690 | .cmd = hmp_info_trace_events, |
bd71211d | 691 | .command_completion = info_trace_events_completion, |
da76ee76 PB |
692 | }, |
693 | ||
694 | STEXI | |
695 | @item info trace-events | |
1b591700 | 696 | @findex info trace-events |
da76ee76 PB |
697 | Show available trace-events & their state. |
698 | ETEXI | |
699 | ||
700 | { | |
701 | .name = "tpm", | |
702 | .args_type = "", | |
703 | .params = "", | |
704 | .help = "show the TPM device", | |
2b9e3576 | 705 | .cmd = hmp_info_tpm, |
da76ee76 PB |
706 | }, |
707 | ||
708 | STEXI | |
709 | @item info tpm | |
1b591700 | 710 | @findex info tpm |
da76ee76 PB |
711 | Show the TPM device. |
712 | ETEXI | |
713 | ||
714 | { | |
715 | .name = "memdev", | |
716 | .args_type = "", | |
717 | .params = "", | |
718 | .help = "show memory backends", | |
2b9e3576 | 719 | .cmd = hmp_info_memdev, |
8c7c7ecb | 720 | .flags = "p", |
da76ee76 PB |
721 | }, |
722 | ||
723 | STEXI | |
724 | @item info memdev | |
1b591700 | 725 | @findex info memdev |
da76ee76 PB |
726 | Show memory backends |
727 | ETEXI | |
728 | ||
729 | { | |
730 | .name = "memory-devices", | |
731 | .args_type = "", | |
732 | .params = "", | |
733 | .help = "show memory devices", | |
2b9e3576 | 734 | .cmd = hmp_info_memory_devices, |
da76ee76 PB |
735 | }, |
736 | ||
737 | STEXI | |
738 | @item info memory-devices | |
1b591700 | 739 | @findex info memory-devices |
da76ee76 PB |
740 | Show memory devices. |
741 | ETEXI | |
742 | ||
743 | { | |
744 | .name = "iothreads", | |
745 | .args_type = "", | |
746 | .params = "", | |
747 | .help = "show iothreads", | |
2b9e3576 | 748 | .cmd = hmp_info_iothreads, |
8c7c7ecb | 749 | .flags = "p", |
da76ee76 PB |
750 | }, |
751 | ||
752 | STEXI | |
753 | @item info iothreads | |
1b591700 | 754 | @findex info iothreads |
da76ee76 PB |
755 | Show iothread's identifiers. |
756 | ETEXI | |
757 | ||
758 | { | |
759 | .name = "rocker", | |
760 | .args_type = "name:s", | |
761 | .params = "name", | |
762 | .help = "Show rocker switch", | |
2b9e3576 | 763 | .cmd = hmp_rocker, |
da76ee76 PB |
764 | }, |
765 | ||
766 | STEXI | |
767 | @item info rocker @var{name} | |
1b591700 | 768 | @findex info rocker |
da76ee76 PB |
769 | Show rocker switch. |
770 | ETEXI | |
771 | ||
772 | { | |
773 | .name = "rocker-ports", | |
774 | .args_type = "name:s", | |
775 | .params = "name", | |
776 | .help = "Show rocker ports", | |
2b9e3576 | 777 | .cmd = hmp_rocker_ports, |
da76ee76 PB |
778 | }, |
779 | ||
780 | STEXI | |
c325ccd3 | 781 | @item info rocker-ports @var{name}-ports |
1b591700 | 782 | @findex info rocker-ports |
da76ee76 PB |
783 | Show rocker ports. |
784 | ETEXI | |
785 | ||
786 | { | |
787 | .name = "rocker-of-dpa-flows", | |
788 | .args_type = "name:s,tbl_id:i?", | |
789 | .params = "name [tbl_id]", | |
790 | .help = "Show rocker OF-DPA flow tables", | |
2b9e3576 | 791 | .cmd = hmp_rocker_of_dpa_flows, |
da76ee76 PB |
792 | }, |
793 | ||
794 | STEXI | |
c325ccd3 | 795 | @item info rocker-of-dpa-flows @var{name} [@var{tbl_id}] |
1b591700 | 796 | @findex info rocker-of-dpa-flows |
da76ee76 PB |
797 | Show rocker OF-DPA flow tables. |
798 | ETEXI | |
799 | ||
800 | { | |
801 | .name = "rocker-of-dpa-groups", | |
802 | .args_type = "name:s,type:i?", | |
803 | .params = "name [type]", | |
804 | .help = "Show rocker OF-DPA groups", | |
2b9e3576 | 805 | .cmd = hmp_rocker_of_dpa_groups, |
da76ee76 PB |
806 | }, |
807 | ||
808 | STEXI | |
809 | @item info rocker-of-dpa-groups @var{name} [@var{type}] | |
1b591700 | 810 | @findex info rocker-of-dpa-groups |
da76ee76 PB |
811 | Show rocker OF-DPA groups. |
812 | ETEXI | |
813 | ||
814 | #if defined(TARGET_S390X) | |
815 | { | |
816 | .name = "skeys", | |
817 | .args_type = "addr:l", | |
818 | .params = "address", | |
819 | .help = "Display the value of a storage key", | |
2b9e3576 | 820 | .cmd = hmp_info_skeys, |
da76ee76 PB |
821 | }, |
822 | #endif | |
823 | ||
824 | STEXI | |
825 | @item info skeys @var{address} | |
1b591700 | 826 | @findex info skeys |
da76ee76 | 827 | Display the value of a storage key (s390 only) |
f860d497 CI |
828 | ETEXI |
829 | ||
830 | #if defined(TARGET_S390X) | |
831 | { | |
832 | .name = "cmma", | |
833 | .args_type = "addr:l,count:l?", | |
834 | .params = "address [count]", | |
835 | .help = "Display the values of the CMMA storage attributes for a range of pages", | |
836 | .cmd = hmp_info_cmma, | |
837 | }, | |
838 | #endif | |
839 | ||
840 | STEXI | |
841 | @item info cmma @var{address} | |
1b591700 | 842 | @findex info cmma |
f860d497 | 843 | Display the values of the CMMA storage attributes for a range of pages (s390 only) |
4a6b52d6 PX |
844 | ETEXI |
845 | ||
846 | { | |
847 | .name = "dump", | |
848 | .args_type = "", | |
849 | .params = "", | |
850 | .help = "Display the latest dump status", | |
2b9e3576 | 851 | .cmd = hmp_info_dump, |
4a6b52d6 PX |
852 | }, |
853 | ||
854 | STEXI | |
855 | @item info dump | |
1b591700 | 856 | @findex info dump |
4a6b52d6 | 857 | Display the latest dump status. |
be9b23c4 PX |
858 | ETEXI |
859 | ||
860 | { | |
861 | .name = "ramblock", | |
862 | .args_type = "", | |
863 | .params = "", | |
864 | .help = "Display system ramblock information", | |
865 | .cmd = hmp_info_ramblock, | |
866 | }, | |
867 | ||
868 | STEXI | |
869 | @item info ramblock | |
1b591700 | 870 | @findex info ramblock |
be9b23c4 | 871 | Dump all the ramblocks of the system. |
d2d8d46f BR |
872 | ETEXI |
873 | ||
874 | { | |
875 | .name = "hotpluggable-cpus", | |
876 | .args_type = "", | |
877 | .params = "", | |
878 | .help = "Show information about hotpluggable CPUs", | |
2b9e3576 | 879 | .cmd = hmp_hotpluggable_cpus, |
8c7c7ecb | 880 | .flags = "p", |
d2d8d46f BR |
881 | }, |
882 | ||
883 | STEXI | |
884 | @item info hotpluggable-cpus | |
1b591700 | 885 | @findex info hotpluggable-cpus |
d2d8d46f | 886 | Show information about hotpluggable CPUs |
39164c13 IM |
887 | ETEXI |
888 | ||
889 | { | |
890 | .name = "vm-generation-id", | |
891 | .args_type = "", | |
892 | .params = "", | |
893 | .help = "Show Virtual Machine Generation ID", | |
894 | .cmd = hmp_info_vm_generation_id, | |
895 | }, | |
896 | ||
d0f63c1e | 897 | STEXI |
a9272513 | 898 | @item info vm-generation-id |
1b591700 | 899 | @findex info vm-generation-id |
a9272513 | 900 | Show Virtual Machine Generation ID |
d0f63c1e VG |
901 | ETEXI |
902 | ||
903 | { | |
904 | .name = "memory_size_summary", | |
905 | .args_type = "", | |
906 | .params = "", | |
907 | .help = "show the amount of initially allocated and " | |
908 | "present hotpluggable (if enabled) memory in bytes.", | |
909 | .cmd = hmp_info_memory_size_summary, | |
910 | }, | |
911 | ||
a9272513 MA |
912 | STEXI |
913 | @item info memory_size_summary | |
1b591700 | 914 | @findex info memory_size_summary |
a9272513 MA |
915 | Display the amount of initially allocated and present hotpluggable (if |
916 | enabled) memory in bytes. | |
917 | ETEXI | |
918 | ||
63036314 BS |
919 | #if defined(TARGET_I386) |
920 | { | |
921 | .name = "sev", | |
922 | .args_type = "", | |
923 | .params = "", | |
924 | .help = "show SEV information", | |
925 | .cmd = hmp_info_sev, | |
926 | }, | |
927 | #endif | |
928 | ||
929 | STEXI | |
930 | @item info sev | |
931 | @findex info sev | |
932 | Show SEV information. | |
933 | ETEXI | |
934 | ||
da76ee76 PB |
935 | STEXI |
936 | @end table | |
937 | ETEXI | |
2cd8af2d PB |
938 | |
939 | STEXI | |
940 | @end table | |
941 | ETEXI |