4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28 #include <sys/types.h>
34 #include "arch_init.h"
35 #include "audio/audio.h"
38 #include "hw/audiodev.h"
40 #include "migration.h"
43 #include "hw/smbios.h"
44 #include "exec-memory.h"
46 #include "qemu/page_cache.h"
47 #include "qmp-commands.h"
49 #ifdef DEBUG_ARCH_INIT
50 #define DPRINTF(fmt, ...) \
51 do { fprintf(stdout, "arch_init: " fmt, ## __VA_ARGS__); } while (0)
53 #define DPRINTF(fmt, ...) \
58 int graphic_width
= 1024;
59 int graphic_height
= 768;
60 int graphic_depth
= 8;
62 int graphic_width
= 800;
63 int graphic_height
= 600;
64 int graphic_depth
= 15;
68 #if defined(TARGET_ALPHA)
69 #define QEMU_ARCH QEMU_ARCH_ALPHA
70 #elif defined(TARGET_ARM)
71 #define QEMU_ARCH QEMU_ARCH_ARM
72 #elif defined(TARGET_CRIS)
73 #define QEMU_ARCH QEMU_ARCH_CRIS
74 #elif defined(TARGET_I386)
75 #define QEMU_ARCH QEMU_ARCH_I386
76 #elif defined(TARGET_M68K)
77 #define QEMU_ARCH QEMU_ARCH_M68K
78 #elif defined(TARGET_LM32)
79 #define QEMU_ARCH QEMU_ARCH_LM32
80 #elif defined(TARGET_MICROBLAZE)
81 #define QEMU_ARCH QEMU_ARCH_MICROBLAZE
82 #elif defined(TARGET_MIPS)
83 #define QEMU_ARCH QEMU_ARCH_MIPS
84 #elif defined(TARGET_OPENRISC)
85 #define QEMU_ARCH QEMU_ARCH_OPENRISC
86 #elif defined(TARGET_PPC)
87 #define QEMU_ARCH QEMU_ARCH_PPC
88 #elif defined(TARGET_S390X)
89 #define QEMU_ARCH QEMU_ARCH_S390X
90 #elif defined(TARGET_SH4)
91 #define QEMU_ARCH QEMU_ARCH_SH4
92 #elif defined(TARGET_SPARC)
93 #define QEMU_ARCH QEMU_ARCH_SPARC
94 #elif defined(TARGET_XTENSA)
95 #define QEMU_ARCH QEMU_ARCH_XTENSA
96 #elif defined(TARGET_UNICORE32)
97 #define QEMU_ARCH QEMU_ARCH_UNICORE32
100 const uint32_t arch_type
= QEMU_ARCH
;
102 /***********************************************************/
103 /* ram save/restore */
105 #define RAM_SAVE_FLAG_FULL 0x01 /* Obsolete, not used anymore */
106 #define RAM_SAVE_FLAG_COMPRESS 0x02
107 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
108 #define RAM_SAVE_FLAG_PAGE 0x08
109 #define RAM_SAVE_FLAG_EOS 0x10
110 #define RAM_SAVE_FLAG_CONTINUE 0x20
111 #define RAM_SAVE_FLAG_XBZRLE 0x40
115 #define VECTYPE vector unsigned char
116 #define SPLAT(p) vec_splat(vec_ld(0, p), 0)
117 #define ALL_EQ(v1, v2) vec_all_eq(v1, v2)
118 /* altivec.h may redefine the bool macro as vector type.
119 * Reset it to POSIX semantics. */
122 #elif defined __SSE2__
123 #include <emmintrin.h>
124 #define VECTYPE __m128i
125 #define SPLAT(p) _mm_set1_epi8(*(p))
126 #define ALL_EQ(v1, v2) (_mm_movemask_epi8(_mm_cmpeq_epi8(v1, v2)) == 0xFFFF)
128 #define VECTYPE unsigned long
129 #define SPLAT(p) (*(p) * (~0UL / 255))
130 #define ALL_EQ(v1, v2) ((v1) == (v2))
134 static struct defconfig_file
{
135 const char *filename
;
136 /* Indicates it is an user config file (disabled by -no-user-config) */
138 } default_config_files
[] = {
139 { CONFIG_QEMU_DATADIR
"/cpus-" TARGET_ARCH
".conf", false },
140 { CONFIG_QEMU_CONFDIR
"/qemu.conf", true },
141 { CONFIG_QEMU_CONFDIR
"/target-" TARGET_ARCH
".conf", true },
142 { NULL
}, /* end of list */
146 int qemu_read_default_config_files(bool userconfig
)
149 struct defconfig_file
*f
;
151 for (f
= default_config_files
; f
->filename
; f
++) {
152 if (!userconfig
&& f
->userconfig
) {
155 ret
= qemu_read_config_file(f
->filename
);
156 if (ret
< 0 && ret
!= -ENOENT
) {
164 static int is_dup_page(uint8_t *page
)
166 VECTYPE
*p
= (VECTYPE
*)page
;
167 VECTYPE val
= SPLAT(page
);
170 for (i
= 0; i
< TARGET_PAGE_SIZE
/ sizeof(VECTYPE
); i
++) {
171 if (!ALL_EQ(val
, p
[i
])) {
179 /* struct contains XBZRLE cache and a static page
180 used by the compression */
182 /* buffer used for XBZRLE encoding */
183 uint8_t *encoded_buf
;
184 /* buffer for storing page content */
185 uint8_t *current_buf
;
186 /* buffer used for XBZRLE decoding */
187 uint8_t *decoded_buf
;
188 /* Cache for XBZRLE */
198 int64_t xbzrle_cache_resize(int64_t new_size
)
200 if (XBZRLE
.cache
!= NULL
) {
201 return cache_resize(XBZRLE
.cache
, new_size
/ TARGET_PAGE_SIZE
) *
204 return pow2floor(new_size
);
207 /* accounting for migration statistics */
208 typedef struct AccountingInfo
{
212 uint64_t xbzrle_bytes
;
213 uint64_t xbzrle_pages
;
214 uint64_t xbzrle_cache_miss
;
215 uint64_t xbzrle_overflows
;
218 static AccountingInfo acct_info
;
220 static void acct_clear(void)
222 memset(&acct_info
, 0, sizeof(acct_info
));
225 uint64_t dup_mig_bytes_transferred(void)
227 return acct_info
.dup_pages
* TARGET_PAGE_SIZE
;
230 uint64_t dup_mig_pages_transferred(void)
232 return acct_info
.dup_pages
;
235 uint64_t norm_mig_bytes_transferred(void)
237 return acct_info
.norm_pages
* TARGET_PAGE_SIZE
;
240 uint64_t norm_mig_pages_transferred(void)
242 return acct_info
.norm_pages
;
245 uint64_t xbzrle_mig_bytes_transferred(void)
247 return acct_info
.xbzrle_bytes
;
250 uint64_t xbzrle_mig_pages_transferred(void)
252 return acct_info
.xbzrle_pages
;
255 uint64_t xbzrle_mig_pages_cache_miss(void)
257 return acct_info
.xbzrle_cache_miss
;
260 uint64_t xbzrle_mig_pages_overflow(void)
262 return acct_info
.xbzrle_overflows
;
265 static void save_block_hdr(QEMUFile
*f
, RAMBlock
*block
, ram_addr_t offset
,
268 qemu_put_be64(f
, offset
| cont
| flag
);
270 qemu_put_byte(f
, strlen(block
->idstr
));
271 qemu_put_buffer(f
, (uint8_t *)block
->idstr
,
272 strlen(block
->idstr
));
277 #define ENCODING_FLAG_XBZRLE 0x1
279 static int save_xbzrle_page(QEMUFile
*f
, uint8_t *current_data
,
280 ram_addr_t current_addr
, RAMBlock
*block
,
281 ram_addr_t offset
, int cont
, bool last_stage
)
283 int encoded_len
= 0, bytes_sent
= -1;
284 uint8_t *prev_cached_page
;
286 if (!cache_is_cached(XBZRLE
.cache
, current_addr
)) {
288 cache_insert(XBZRLE
.cache
, current_addr
,
289 g_memdup(current_data
, TARGET_PAGE_SIZE
));
291 acct_info
.xbzrle_cache_miss
++;
295 prev_cached_page
= get_cached_data(XBZRLE
.cache
, current_addr
);
297 /* save current buffer into memory */
298 memcpy(XBZRLE
.current_buf
, current_data
, TARGET_PAGE_SIZE
);
300 /* XBZRLE encoding (if there is no overflow) */
301 encoded_len
= xbzrle_encode_buffer(prev_cached_page
, XBZRLE
.current_buf
,
302 TARGET_PAGE_SIZE
, XBZRLE
.encoded_buf
,
304 if (encoded_len
== 0) {
305 DPRINTF("Skipping unmodified page\n");
307 } else if (encoded_len
== -1) {
308 DPRINTF("Overflow\n");
309 acct_info
.xbzrle_overflows
++;
310 /* update data in the cache */
311 memcpy(prev_cached_page
, current_data
, TARGET_PAGE_SIZE
);
315 /* we need to update the data in the cache, in order to get the same data */
317 memcpy(prev_cached_page
, XBZRLE
.current_buf
, TARGET_PAGE_SIZE
);
320 /* Send XBZRLE based compressed page */
321 save_block_hdr(f
, block
, offset
, cont
, RAM_SAVE_FLAG_XBZRLE
);
322 qemu_put_byte(f
, ENCODING_FLAG_XBZRLE
);
323 qemu_put_be16(f
, encoded_len
);
324 qemu_put_buffer(f
, XBZRLE
.encoded_buf
, encoded_len
);
325 bytes_sent
= encoded_len
+ 1 + 2;
326 acct_info
.xbzrle_pages
++;
327 acct_info
.xbzrle_bytes
+= bytes_sent
;
332 static RAMBlock
*last_block
;
333 static ram_addr_t last_offset
;
336 * ram_save_block: Writes a page of memory to the stream f
338 * Returns: 0: if the page hasn't changed
339 * -1: if there are no more dirty pages
340 * n: the amount of bytes written in other case
343 static int ram_save_block(QEMUFile
*f
, bool last_stage
)
345 RAMBlock
*block
= last_block
;
346 ram_addr_t offset
= last_offset
;
349 ram_addr_t current_addr
;
352 block
= QLIST_FIRST(&ram_list
.blocks
);
356 if (memory_region_get_dirty(mr
, offset
, TARGET_PAGE_SIZE
,
357 DIRTY_MEMORY_MIGRATION
)) {
359 int cont
= (block
== last_block
) ? RAM_SAVE_FLAG_CONTINUE
: 0;
361 memory_region_reset_dirty(mr
, offset
, TARGET_PAGE_SIZE
,
362 DIRTY_MEMORY_MIGRATION
);
364 p
= memory_region_get_ram_ptr(mr
) + offset
;
366 if (is_dup_page(p
)) {
367 acct_info
.dup_pages
++;
368 save_block_hdr(f
, block
, offset
, cont
, RAM_SAVE_FLAG_COMPRESS
);
369 qemu_put_byte(f
, *p
);
371 } else if (migrate_use_xbzrle()) {
372 current_addr
= block
->offset
+ offset
;
373 bytes_sent
= save_xbzrle_page(f
, p
, current_addr
, block
,
374 offset
, cont
, last_stage
);
376 p
= get_cached_data(XBZRLE
.cache
, current_addr
);
380 /* either we didn't send yet (we may have had XBZRLE overflow) */
381 if (bytes_sent
== -1) {
382 save_block_hdr(f
, block
, offset
, cont
, RAM_SAVE_FLAG_PAGE
);
383 qemu_put_buffer(f
, p
, TARGET_PAGE_SIZE
);
384 bytes_sent
= TARGET_PAGE_SIZE
;
385 acct_info
.norm_pages
++;
388 /* if page is unmodified, continue to the next */
389 if (bytes_sent
!= 0) {
394 offset
+= TARGET_PAGE_SIZE
;
395 if (offset
>= block
->length
) {
397 block
= QLIST_NEXT(block
, next
);
399 block
= QLIST_FIRST(&ram_list
.blocks
);
401 } while (block
!= last_block
|| offset
!= last_offset
);
404 last_offset
= offset
;
409 static uint64_t bytes_transferred
;
411 static ram_addr_t
ram_save_remaining(void)
413 return ram_list
.dirty_pages
;
416 uint64_t ram_bytes_remaining(void)
418 return ram_save_remaining() * TARGET_PAGE_SIZE
;
421 uint64_t ram_bytes_transferred(void)
423 return bytes_transferred
;
426 uint64_t ram_bytes_total(void)
431 QLIST_FOREACH(block
, &ram_list
.blocks
, next
)
432 total
+= block
->length
;
437 static int block_compar(const void *a
, const void *b
)
439 RAMBlock
* const *ablock
= a
;
440 RAMBlock
* const *bblock
= b
;
442 return strcmp((*ablock
)->idstr
, (*bblock
)->idstr
);
445 static void sort_ram_list(void)
447 RAMBlock
*block
, *nblock
, **blocks
;
450 QLIST_FOREACH(block
, &ram_list
.blocks
, next
) {
453 blocks
= g_malloc(n
* sizeof *blocks
);
455 QLIST_FOREACH_SAFE(block
, &ram_list
.blocks
, next
, nblock
) {
457 QLIST_REMOVE(block
, next
);
459 qsort(blocks
, n
, sizeof *blocks
, block_compar
);
461 QLIST_INSERT_HEAD(&ram_list
.blocks
, blocks
[n
], next
);
466 static void migration_end(void)
468 memory_global_dirty_log_stop();
470 if (migrate_use_xbzrle()) {
471 cache_fini(XBZRLE
.cache
);
472 g_free(XBZRLE
.cache
);
473 g_free(XBZRLE
.encoded_buf
);
474 g_free(XBZRLE
.current_buf
);
475 g_free(XBZRLE
.decoded_buf
);
480 static void ram_migration_cancel(void *opaque
)
485 #define MAX_WAIT 50 /* ms, half buffered_file limit */
487 static int ram_save_setup(QEMUFile
*f
, void *opaque
)
492 bytes_transferred
= 0;
497 if (migrate_use_xbzrle()) {
498 XBZRLE
.cache
= cache_init(migrate_xbzrle_cache_size() /
502 DPRINTF("Error creating cache\n");
505 XBZRLE
.encoded_buf
= g_malloc0(TARGET_PAGE_SIZE
);
506 XBZRLE
.current_buf
= g_malloc(TARGET_PAGE_SIZE
);
510 /* Make sure all dirty bits are set */
511 QLIST_FOREACH(block
, &ram_list
.blocks
, next
) {
512 for (addr
= 0; addr
< block
->length
; addr
+= TARGET_PAGE_SIZE
) {
513 if (!memory_region_get_dirty(block
->mr
, addr
, TARGET_PAGE_SIZE
,
514 DIRTY_MEMORY_MIGRATION
)) {
515 memory_region_set_dirty(block
->mr
, addr
, TARGET_PAGE_SIZE
);
520 memory_global_dirty_log_start();
522 qemu_put_be64(f
, ram_bytes_total() | RAM_SAVE_FLAG_MEM_SIZE
);
524 QLIST_FOREACH(block
, &ram_list
.blocks
, next
) {
525 qemu_put_byte(f
, strlen(block
->idstr
));
526 qemu_put_buffer(f
, (uint8_t *)block
->idstr
, strlen(block
->idstr
));
527 qemu_put_be64(f
, block
->length
);
530 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
535 static int ram_save_iterate(QEMUFile
*f
, void *opaque
)
537 uint64_t bytes_transferred_last
;
541 uint64_t expected_time
;
543 bytes_transferred_last
= bytes_transferred
;
544 bwidth
= qemu_get_clock_ns(rt_clock
);
547 while ((ret
= qemu_file_rate_limit(f
)) == 0) {
550 bytes_sent
= ram_save_block(f
, false);
551 /* no more blocks to sent */
552 if (bytes_sent
< 0) {
555 bytes_transferred
+= bytes_sent
;
556 acct_info
.iterations
++;
557 /* we want to check in the 1st loop, just in case it was the 1st time
558 and we had to sync the dirty bitmap.
559 qemu_get_clock_ns() is a bit expensive, so we only check each some
563 uint64_t t1
= (qemu_get_clock_ns(rt_clock
) - bwidth
) / 1000000;
565 DPRINTF("big wait: " PRIu64
" milliseconds, %d iterations\n",
577 bwidth
= qemu_get_clock_ns(rt_clock
) - bwidth
;
578 bwidth
= (bytes_transferred
- bytes_transferred_last
) / bwidth
;
580 /* if we haven't transferred anything this round, force expected_time to a
581 * a very high value, but without crashing */
586 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
588 expected_time
= ram_save_remaining() * TARGET_PAGE_SIZE
/ bwidth
;
590 DPRINTF("ram_save_live: expected(" PRIu64
") <= max(" PRIu64
")?\n",
591 expected_time
, migrate_max_downtime());
593 if (expected_time
<= migrate_max_downtime()) {
594 memory_global_sync_dirty_bitmap(get_system_memory());
595 expected_time
= ram_save_remaining() * TARGET_PAGE_SIZE
/ bwidth
;
597 return expected_time
<= migrate_max_downtime();
602 static int ram_save_complete(QEMUFile
*f
, void *opaque
)
604 memory_global_sync_dirty_bitmap(get_system_memory());
606 /* try transferring iterative blocks of memory */
608 /* flush all remaining blocks regardless of rate limiting */
612 bytes_sent
= ram_save_block(f
, true);
613 /* no more blocks to sent */
614 if (bytes_sent
< 0) {
617 bytes_transferred
+= bytes_sent
;
619 memory_global_dirty_log_stop();
621 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
626 static int load_xbzrle(QEMUFile
*f
, ram_addr_t addr
, void *host
)
632 if (!XBZRLE
.decoded_buf
) {
633 XBZRLE
.decoded_buf
= g_malloc(TARGET_PAGE_SIZE
);
636 /* extract RLE header */
637 xh_flags
= qemu_get_byte(f
);
638 xh_len
= qemu_get_be16(f
);
640 if (xh_flags
!= ENCODING_FLAG_XBZRLE
) {
641 fprintf(stderr
, "Failed to load XBZRLE page - wrong compression!\n");
645 if (xh_len
> TARGET_PAGE_SIZE
) {
646 fprintf(stderr
, "Failed to load XBZRLE page - len overflow!\n");
649 /* load data and decode */
650 qemu_get_buffer(f
, XBZRLE
.decoded_buf
, xh_len
);
653 ret
= xbzrle_decode_buffer(XBZRLE
.decoded_buf
, xh_len
, host
,
656 fprintf(stderr
, "Failed to load XBZRLE page - decode error!\n");
658 } else if (ret
> TARGET_PAGE_SIZE
) {
659 fprintf(stderr
, "Failed to load XBZRLE page - size %d exceeds %d!\n",
660 ret
, TARGET_PAGE_SIZE
);
667 static inline void *host_from_stream_offset(QEMUFile
*f
,
671 static RAMBlock
*block
= NULL
;
675 if (flags
& RAM_SAVE_FLAG_CONTINUE
) {
677 fprintf(stderr
, "Ack, bad migration stream!\n");
681 return memory_region_get_ram_ptr(block
->mr
) + offset
;
684 len
= qemu_get_byte(f
);
685 qemu_get_buffer(f
, (uint8_t *)id
, len
);
688 QLIST_FOREACH(block
, &ram_list
.blocks
, next
) {
689 if (!strncmp(id
, block
->idstr
, sizeof(id
)))
690 return memory_region_get_ram_ptr(block
->mr
) + offset
;
693 fprintf(stderr
, "Can't find block %s!\n", id
);
697 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
702 static uint64_t seq_iter
;
706 if (version_id
< 4 || version_id
> 4) {
711 addr
= qemu_get_be64(f
);
713 flags
= addr
& ~TARGET_PAGE_MASK
;
714 addr
&= TARGET_PAGE_MASK
;
716 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
717 if (version_id
== 4) {
718 /* Synchronize RAM block list */
721 ram_addr_t total_ram_bytes
= addr
;
723 while (total_ram_bytes
) {
727 len
= qemu_get_byte(f
);
728 qemu_get_buffer(f
, (uint8_t *)id
, len
);
730 length
= qemu_get_be64(f
);
732 QLIST_FOREACH(block
, &ram_list
.blocks
, next
) {
733 if (!strncmp(id
, block
->idstr
, sizeof(id
))) {
734 if (block
->length
!= length
) {
743 fprintf(stderr
, "Unknown ramblock \"%s\", cannot "
744 "accept migration\n", id
);
749 total_ram_bytes
-= length
;
754 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
758 host
= host_from_stream_offset(f
, addr
, flags
);
763 ch
= qemu_get_byte(f
);
764 memset(host
, ch
, TARGET_PAGE_SIZE
);
767 (!kvm_enabled() || kvm_has_sync_mmu())) {
768 qemu_madvise(host
, TARGET_PAGE_SIZE
, QEMU_MADV_DONTNEED
);
771 } else if (flags
& RAM_SAVE_FLAG_PAGE
) {
774 host
= host_from_stream_offset(f
, addr
, flags
);
779 qemu_get_buffer(f
, host
, TARGET_PAGE_SIZE
);
780 } else if (flags
& RAM_SAVE_FLAG_XBZRLE
) {
781 if (!migrate_use_xbzrle()) {
784 void *host
= host_from_stream_offset(f
, addr
, flags
);
789 if (load_xbzrle(f
, addr
, host
) < 0) {
794 error
= qemu_file_get_error(f
);
799 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
802 DPRINTF("Completed load of VM with exit code %d seq iteration " PRIu64
"\n",
807 SaveVMHandlers savevm_ram_handlers
= {
808 .save_live_setup
= ram_save_setup
,
809 .save_live_iterate
= ram_save_iterate
,
810 .save_live_complete
= ram_save_complete
,
811 .load_state
= ram_load
,
812 .cancel
= ram_migration_cancel
,
822 int (*init_isa
) (ISABus
*bus
);
823 int (*init_pci
) (PCIBus
*bus
);
827 static struct soundhw soundhw
[] = {
828 #ifdef HAS_AUDIO_CHOICE
835 { .init_isa
= pcspk_audio_init
}
842 "Creative Sound Blaster 16",
845 { .init_isa
= SB16_init
}
849 #ifdef CONFIG_CS4231A
855 { .init_isa
= cs4231a_init
}
863 "Yamaha YMF262 (OPL3)",
865 "Yamaha YM3812 (OPL2)",
869 { .init_isa
= Adlib_init
}
876 "Gravis Ultrasound GF1",
879 { .init_isa
= GUS_init
}
886 "Intel 82801AA AC97 Audio",
889 { .init_pci
= ac97_init
}
896 "ENSONIQ AudioPCI ES1370",
899 { .init_pci
= es1370_init
}
909 { .init_pci
= intel_hda_and_codec_init
}
913 #endif /* HAS_AUDIO_CHOICE */
915 { NULL
, NULL
, 0, 0, { NULL
} }
918 void select_soundhw(const char *optarg
)
922 if (is_help_option(optarg
)) {
925 printf("Valid sound card names (comma separated):\n");
926 for (c
= soundhw
; c
->name
; ++c
) {
927 printf ("%-11s %s\n", c
->name
, c
->descr
);
929 printf("\n-soundhw all will enable all of the above\n");
930 exit(!is_help_option(optarg
));
938 if (!strcmp(optarg
, "all")) {
939 for (c
= soundhw
; c
->name
; ++c
) {
948 l
= !e
? strlen(p
) : (size_t) (e
- p
);
950 for (c
= soundhw
; c
->name
; ++c
) {
951 if (!strncmp(c
->name
, p
, l
) && !c
->name
[l
]) {
960 "Unknown sound card name (too big to show)\n");
963 fprintf(stderr
, "Unknown sound card name `%.*s'\n",
968 p
+= l
+ (e
!= NULL
);
972 goto show_valid_cards
;
977 void audio_init(ISABus
*isa_bus
, PCIBus
*pci_bus
)
981 for (c
= soundhw
; c
->name
; ++c
) {
985 c
->init
.init_isa(isa_bus
);
989 c
->init
.init_pci(pci_bus
);
996 void select_soundhw(const char *optarg
)
999 void audio_init(ISABus
*isa_bus
, PCIBus
*pci_bus
)
1004 int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
1008 if (strlen(str
) != 36) {
1012 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
1013 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
1014 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14],
1021 smbios_add_field(1, offsetof(struct smbios_type_1
, uuid
), 16, uuid
);
1026 void do_acpitable_option(const char *optarg
)
1029 if (acpi_table_add(optarg
) < 0) {
1030 fprintf(stderr
, "Wrong acpi table provided\n");
1036 void do_smbios_option(const char *optarg
)
1039 if (smbios_entry_add(optarg
) < 0) {
1040 fprintf(stderr
, "Wrong smbios provided\n");
1046 void cpudef_init(void)
1048 #if defined(cpudef_setup)
1049 cpudef_setup(); /* parse cpu definitions in target config file */
1053 int audio_available(void)
1062 int tcg_available(void)
1067 int kvm_available(void)
1076 int xen_available(void)
1086 TargetInfo
*qmp_query_target(Error
**errp
)
1088 TargetInfo
*info
= g_malloc0(sizeof(*info
));
1090 info
->arch
= TARGET_TYPE
;