/qemu/hw/isa/ |
A D | isa-superio.c | 41 for (i = 0; i < k->parallel.count; i++) { in isa_superio_realize() 42 if (i >= ARRAY_SIZE(sio->parallel)) { in isa_superio_realize() 44 k->parallel.count - ARRAY_SIZE(sio->parallel)); in isa_superio_realize() 47 if (!k->parallel.is_enabled || k->parallel.is_enabled(sio, i)) { in isa_superio_realize() 59 if (k->parallel.get_iobase) { in isa_superio_realize() 61 k->parallel.get_iobase(sio, i)); in isa_superio_realize() 63 if (k->parallel.get_irq) { in isa_superio_realize() 64 qdev_prop_set_uint32(d, "irq", k->parallel.get_irq(sio, i)); in isa_superio_realize() 69 sio->parallel[i] = isa; in isa_superio_realize() 71 k->parallel.get_iobase ? in isa_superio_realize() [all …]
|
A D | fdc37m81x-superio.c | 19 sc->parallel.count = 1; in fdc37m81x_class_init()
|
A D | smc37c669-superio.c | 65 sc->parallel = (ISASuperIOFuncs){ in smc37c669_class_init()
|
A D | vt82c686.c | 333 isa_parallel_set_enabled(s->superio.parallel[0], (data & 0x3) != 3); in via_superio_devices_enable() 394 isa_parallel_set_iobase(sc->superio.parallel[0], data << 2); in vt82c686b_superio_cfg_write() 466 sc->parallel.count = 1; in vt82c686b_superio_class_init() 514 isa_parallel_set_iobase(sc->superio.parallel[0], data << 2); in vt8231_superio_cfg_write() 575 sc->parallel.count = 1; in vt8231_superio_class_init()
|
A D | pc87312.c | 347 sc->parallel = (ISASuperIOFuncs){ in pc87312_class_init()
|
/qemu/hw/char/ |
A D | parallel-isa.c | 45 void isa_parallel_set_iobase(ISADevice *parallel, hwaddr iobase) in isa_parallel_set_iobase() argument 47 ISAParallelState *s = ISA_PARALLEL(parallel); in isa_parallel_set_iobase() 49 parallel->ioport_id = iobase; in isa_parallel_set_iobase() 54 void isa_parallel_set_enabled(ISADevice *parallel, bool enabled) in isa_parallel_set_enabled() argument 56 portio_list_set_enabled(&ISA_PARALLEL(parallel)->portio_list, enabled); in isa_parallel_set_enabled()
|
A D | meson.build | 8 system_ss.add(when: 'CONFIG_ISA_BUS', if_true: files('parallel-isa.c')) 11 system_ss.add(when: 'CONFIG_PARALLEL', if_true: files('parallel.c'))
|
/qemu/target/hppa/ |
A D | op_helper.c | 100 bool parallel, uintptr_t ra) in do_stby_b() argument 111 if (parallel) { in do_stby_b() 136 if (parallel) { in do_stdby_b() 148 if (parallel) { in do_stdby_b() 157 if (parallel) { in do_stdby_b() 166 if (parallel) { in do_stdby_b() 208 if (parallel) { in do_stby_e() 235 if (parallel) { in do_stdby_e() 246 if (parallel) { in do_stdby_e() 256 if (parallel) { in do_stdby_e() [all …]
|
/qemu/chardev/ |
A D | char-parallel.c | 247 ChardevHostdev *parallel = backend->u.parallel.data; in qmp_chardev_open_parallel() local 250 fd = qmp_chardev_open_file_source(parallel->device, O_RDWR, errp); in qmp_chardev_open_parallel() 261 ChardevHostdev *parallel; in qemu_chr_parse_parallel() local 268 parallel = backend->u.parallel.data = g_new0(ChardevHostdev, 1); in qemu_chr_parse_parallel() 269 qemu_chr_parse_common(opts, qapi_ChardevHostdev_base(parallel)); in qemu_chr_parse_parallel() 270 parallel->device = g_strdup(device); in qemu_chr_parse_parallel()
|
A D | meson.build | 24 'char-parallel.c',
|
/qemu/include/hw/char/ |
A D | parallel-isa.h | 32 void isa_parallel_set_iobase(ISADevice *parallel, hwaddr iobase); 33 void isa_parallel_set_enabled(ISADevice *parallel, bool enabled);
|
/qemu/include/hw/isa/ |
A D | superio.h | 30 ISADevice *parallel[MAX_PARALLEL_PORTS]; member 51 ISASuperIOFuncs parallel; member
|
/qemu/docs/system/ |
A D | target-i386-desc.rst.inc | 50 Note that, by default, GUS shares IRQ(7) with parallel ports and so QEMU 51 must be told to not have parallel ports to have working GUS. 55 |qemu_system_x86| dos.img -device gus -parallel none
|
A D | gdb.rst | 86 parallel flows of execution is a two layer one: it supports multiple 142 running several tests in parallel, or if you do not have a known free TCP
|
/qemu/accel/tcg/ |
A D | tcg-accel-ops.c | 49 void tcg_cpu_init_cflags(CPUState *cpu, bool parallel) in tcg_cpu_init_cflags() argument 63 cflags |= parallel ? CF_PARALLEL : 0; in tcg_cpu_init_cflags()
|
A D | tcg-accel-ops.h | 20 void tcg_cpu_init_cflags(CPUState *cpu, bool parallel);
|
/qemu/docs/interop/ |
A D | vhost-user.json | 223 # or they can provide a parallel QEMU GPU with higher priority 227 # or they can provide a parallel QEMU GPU with lower priority
|
/qemu/docs/ |
A D | qdev-device-use.txt | 178 * -parallel becomes -device isa-parallel,iobase=IOADDR,irq=IRQ,index=IDX 219 * /dev/parportN becomes -chardev parallel,file=/dev/parportN 393 parallel isa-parallel
|
A D | COLO-FT.txt | 18 Both primary VM (PVM) and secondary VM (SVM) run in parallel. They receive the 19 same request from client, and generate response in parallel too. 29 PVM and SVM execute in parallel and generate output of response packets for
|
/qemu/qapi/ |
A D | char.json | 468 # @parallel: parallel host device 517 { 'name': 'parallel', 'if': 'HAVE_CHARDEV_PARALLEL' }, 698 'parallel': { 'type': 'ChardevHostdevWrapper',
|
/qemu/tests/ |
A D | Makefile.include | 146 $(AVOCADO_CMDLINE_TAGS) --max-parallel-tasks=1 \
|
/qemu/python/ |
A D | setup.cfg | 209 parallel = true
|
/qemu/docs/devel/migration/ |
A D | mapped-ram.rst | 6 with ``multifd``. This enables parallel migration of a guest's RAM to
|
/qemu/target/m68k/ |
A D | op_helper.c | 786 bool parallel) in do_cas2l() argument 803 if (parallel) { in do_cas2l()
|
/qemu/docs/devel/testing/ |
A D | fuzzing.rst | 70 parallel (4 fuzzing jobs in 4 worker processes). Alternatively, with only 73 machine. Make sure to specify a ``CORPUS_DIR``, which will allow the parallel
|