/qemu/include/hw/misc/ |
H A D | iotkit-secctl.h | 19 * + named GPIO output "sec_resp_cfg" indicating whether blocked accesses 21 * + named GPIO output "nsc_cfg" whose value tracks the NSCCFG register value 22 * + named GPIO output "msc_irq" for the combined IRQ line from the MSCs 24 * + named GPIO outputs apb_ppc0_nonsec[0..2] and apb_ppc1_nonsec 25 * + named GPIO outputs apb_ppc0_ap[0..2] and apb_ppc1_ap 26 * + named GPIO outputs apb_ppc{0,1}_irq_enable 27 * + named GPIO outputs apb_ppc{0,1}_irq_clear 28 * + named GPIO inputs apb_ppc{0,1}_irq_status 31 * + named GPIO outputs apb_ppcexp{0,1,2,3}_nonsec[0..15] 32 * + named GPIO outputs apb_ppcexp{0,1,2,3}_ap[0..15] [all …]
|
H A D | tz-ppc.h | 50 * + Named GPIO inputs "cfg_nonsec[0..15]": set to 1 if the port should be 52 * + Named GPIO inputs "cfg_ap[0..15]": set to 1 if the port should be 54 * + Named GPIO input "cfg_sec_resp": set to 1 if a rejected transaction should 56 * + Named GPIO input "irq_enable": set to 1 to enable interrupts 57 * + Named GPIO input "irq_clear": set to 1 to clear a pending interrupt 58 * + Named GPIO output "irq": set for a transaction-failed interrupt
|
H A D | nrf51_rng.h | 11 * + Named GPIO output "irq": Interrupt line of the peripheral. Must be 13 * + Named GPIO output "eep_valrdy": Event set when new random value is ready 15 * + Named GPIO input "tep_start": Task that triggers start of continuous 17 * + Named GPIO input "tep_stop": Task that ends continuous generation of
|
H A D | xlnx-versal-pmc-iou-slcr.h | 44 * + Named GPIO output "sd-emmc-sel[0]": Enables 0: SD mode or 1: eMMC mode on 46 * + Named GPIO output "sd-emmc-sel[1]": Enables 0: SD mode or 1: eMMC mode on 48 * + Named GPIO output "qspi-ospi-mux-sel": Selects 0: QSPI linear region or 1: 50 * + Named GPIO output "ospi-mux-sel": Selects 0: OSPI Indirect access mode or
|
H A D | tz-msc.h | 34 * + Named GPIO input "cfg_nonsec": set to 1 if the bus master should be 36 * + Named GPIO input "cfg_sec_resp": set to 1 if a rejected transaction should 38 * + Named GPIO input "irq_clear": set to 1 to clear a pending interrupt 39 * + Named GPIO output "irq": set for a transaction-failed interrupt
|
/qemu/include/hw/arm/ |
H A D | armsse.h | 62 * + Named GPIO inputs "EXP_IRQ" 0..n are the expansion interrupts for CPU 0, 64 * + Named GPIO inputs "EXP_CPU1_IRQ" 0..n are the expansion interrupts for 71 * + named GPIO outputs apb_ppcexp{0,1,2,3}_nonsec[0..15] 72 * + named GPIO outputs apb_ppcexp{0,1,2,3}_ap[0..15] 73 * + named GPIO outputs apb_ppcexp{0,1,2,3}_irq_enable 74 * + named GPIO outputs apb_ppcexp{0,1,2,3}_irq_clear 75 * + named GPIO inputs apb_ppcexp{0,1,2,3}_irq_status 78 * + named GPIO outputs ahb_ppcexp{0,1,2,3}_nonsec[0..15] 79 * + named GPIO outputs ahb_ppcexp{0,1,2,3}_ap[0..15] 80 * + named GPIO outputs ahb_ppcexp{0,1,2,3}_irq_enable [all …]
|
/qemu/scripts/codeconverter/codeconverter/ |
H A D | qom_macros.py | 28 regexp = S(r'^[ \t]*#[ \t]*define', CPP_SPACE, NAMED('name', RE_IDENTIFIER), r'\b') 32 regexp = S(r'^[ \t]*#[ \t]*define', CPP_SPACE, NAMED('name', RE_IDENTIFIER), 33 CPP_SPACE, NAMED('value', RE_EXPRESSION), r'[ \t]*\n') 40 regexp = S(r'^[ \t]*#[ \t]*define', CPP_SPACE, NAMED('name', RE_IDENTIFIER), 41 CPP_SPACE, NAMED('value', RE_CONSTANT), r'[ \t]*\n') 105 NAMED('typedef_type', RE_TYPE), SP, 106 NAMED('name', RE_IDENTIFIER), r'\s*;[ \t]*\n') 108 RE_MACRO_DEFINE = S(r'^[ \t]*#\s*define\s+', NAMED('name', RE_IDENTIFIER), 116 NAMED('body', r'{\n', 129 NAMED('name', RE_IDENTIFIER), r'\s*;[ \t]*\n') [all …]
|
H A D | regexps.py | 31 def NAMED(name, *regexps) -> str: function 32 """Make named group using <P<name>...) syntax 34 >>> NAMED('mygroup', 'xyz', 'abc') 55 r = NAMED(name, r) 92 RE_INCLUDE = S(r'^[ \t]*#[ \t]*include[ \t]+', NAMED('includepath', RE_INCLUDEPATH), r'[ \t]*\n') 103 RE_SIZEOF = S(r'sizeof\s*\(\s*', NAMED('sizeoftype', RE_TYPE), r'\s*\)') 107 RE_ARRAY_ITEM = S(r'{\s*', NAMED('arrayitem', M(RE_SIMPLE_VALUE, n='?')), r'\s*}\s*,?') 111 NAMED('arrayitems', RE_ARRAY_ITEMS),
|
H A D | qom_type_info.py | 20 RE_TI_FIELD_INIT = S(r'[ \t]*', NAMED('comments', RE_COMMENTS), 21 r'\.', NAMED('field', RE_TI_FIELD_NAME), r'\s*=\s*', 22 NAMED('value', RE_EXPRESSION), r'[ \t]*,?[ \t]*\n') 26 NAMED('name', RE_IDENTIFIER), r'\s*=\s*{[ \t]*\n') 100 regexp = S(NAMED('begin', RE_TYPEINFO_START), 101 M(NAMED('fields', RE_TI_FIELDS), 102 NAMED('endcomments', SP, RE_COMMENTS), 103 NAMED('end', r'};?\n'), 429 NAMED('name', RE_IDENTIFIER), r'\s*,\s*', 430 NAMED('instancetype', RE_IDENTIFIER), r'\s*,\s*', [all …]
|
H A D | test_patching.py | 50 regexp = S(r'BEGIN\s+', NAMED('name', RE_IDENTIFIER), r'\n', 54 regexp = S(r'^\s*', NAMED('name', RE_IDENTIFIER), r'\(\)\n')
|
/qemu/linux-headers/linux/ |
H A D | stddef.h | 19 * __struct_group() - Create a mirrored named and anonyomous struct 21 * @TAG: The tag name for the named sub-struct (usually empty) 27 * and size: one anonymous and one named. The former's members can be used 30 * The named struct can also be explicitly tagged for layer reuse (C only), 52 * named member, but that member can be empty.
|
/qemu/include/hw/input/ |
H A D | i8042.h | 45 * + Named GPIO input "ps2-kbd-input-irq": set to 1 if the downstream PS2 47 * + Named GPIO input "ps2-mouse-input-irq": set to 1 if the downstream PS2 49 * + Named GPIO output "a20": A20 line for x86 PCs 70 * + Named GPIO input "ps2-kbd-input-irq": set to 1 if the downstream PS2 72 * + Named GPIO input "ps2-mouse-input-irq": set to 1 if the downstream PS2
|
/qemu/docs/devel/ |
H A D | decodetree.rst | 45 A format can include fields that refer to named fields that are 48 named fields that are defined in the format it uses. However you 50 a field A that refers to a named field B that is defined in P, and P 51 has a field C that refers to a named field D that is defined in F). 57 named function, taking and returning an integral value. 60 a *parameter*, and the named function is only passed the ``DisasContext`` 108 pattern and the ``OR`` pattern put their operands into the same named 150 same argument set be used with disjoint named fields. 177 A pattern that does not specify a named format will have one inferred
|
/qemu/bsd-user/aarch64/ |
H A D | target_syscall.h | 24 * The aarch64 registers are named: 28 * For instructions dealing with the stack, it is the stack pointer, named rsp 30 * read and discards data when written - named rzr (xzr, wzr)
|
/qemu/docs/system/ |
H A D | cpu-models-x86.rst.inc | 22 (2) **Named model** 24 QEMU comes with a number of predefined named CPU models, that 34 model". This uses the QEMU "Named model" feature, automatically picking 126 all, of the named CPU models listed above. In general all of these 304 all, of the named CPU models listed above. In general all of these 433 Named CPU models: 439 Named CPU models with feature customization: 470 Named model:: 476 Named model with feature customization::
|
/qemu/include/net/ |
H A D | announce.h | 27 * If 'free_named' true and the timer is a named timer, then remove 28 * it from the list of named timers and free the AnnounceTimer itself.
|
/qemu/tests/decode/ |
H A D | succ_named_field.decode | 9 # references a named field defined in the insn pattern: 16 # Here the named field is defined in the format and referenced
|
/qemu/include/hw/ |
H A D | qdev-core.h | 264 * @gpios: QLIST of named GPIOs the device provides. 268 * @clocks: QLIST of named clocks the device provides. 624 * For named input GPIO lines, use qdev_get_gpio_in_named(). 631 * qdev_get_gpio_in_named: Get one of a device's named input GPIO lines 637 * in a named array of input GPIO lines on a device (which the device 646 * Return: qemu_irq corresponding to named input GPIO line 677 * For named output GPIO lines, use qdev_connect_gpio_out_named(). 682 * qdev_connect_gpio_out_named: Connect one of a device's named output 689 * This function connects a single GPIO output in a named array of output 765 * anonymous and named GPIO lines. Stylistically, named GPIOs are [all …]
|
/qemu/tests/qemu-iotests/ |
H A D | 191 | 47 # An external data file would change the query-named-block-nodes output 91 _send_qemu_cmd $h "{ 'execute': 'query-named-block-nodes' }" "^}" | 139 _send_qemu_cmd $h "{ 'execute': 'query-named-block-nodes' }" "^}" |
|
H A D | 045 | 109 'File descriptor named \'fdset-id:3, fd:%d\' not found' % fd_image3) 117 'File descriptor named \'fdset-id:2, fd:999\' not found') 171 "File descriptor named '%s' not found" % fdname)
|
H A D | common.qemu | 220 # Check event cache for a named QMP event 225 # Checks if the named QMP event that was previously captured 257 # Wait for a named QMP event 263 # Checks if the named QMP even was previously captured
|
/qemu/docs/interop/ |
H A D | nbd.rst | 28 is named with the following form:: 39 the image, with a single metadata context named::
|
H A D | virtio-balloon-stats.rst | 27 * A key named 'stats', containing all available stats. If the guest 42 * A key named last-update, which contains the last stats update
|
/qemu/target/riscv/ |
H A D | cpu_cfg_fields.h.inc | 117 /* Named features */ 124 * Always 'true' booleans for named features
|
/qemu/include/hw/nvram/ |
H A D | fw_cfg.h | 224 * Add a new NAMED fw_cfg item as a raw "blob" of the given size. The data 246 * Add a new NAMED fw_cfg item as a raw "blob" of the given size. The data 271 * Replace a NAMED fw_cfg item. If an existing item is found, its callback 292 * If the @part object generates content, add a new NAMED fw_cfg item with it.
|