Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 26) sorted by relevance

12

/devicemodel/arch/x86/
A Dpm.c58 reset_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in reset_handler() argument
65 if (in) in reset_handler()
169 pm1_status_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in pm1_status_handler() argument
176 if (in) in pm1_status_handler()
202 pm1_enable_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in pm1_enable_handler() argument
209 if (in) in pm1_enable_handler()
255 pm1_control_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in pm1_control_handler() argument
260 if (in) in pm1_control_handler()
297 smi_cmd_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in smi_cmd_handler() argument
300 if (in || (bytes != 1)) in smi_cmd_handler()
/devicemodel/core/
A Dinout.c49 default_inout(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in default_inout() argument
52 if (in) { in default_inout()
92 int bytes, flags, in, port; in emulate_inout() local
98 in = (pio_request->direction == ACRN_IOREQ_DIR_READ); in emulate_inout()
116 retval = handler(ctx, *pvcpu, in, port, bytes, in emulate_inout()
A Dpost.c33 post_data_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in post_data_handler() argument
36 if ((in != 1) || (bytes != 1)) in post_data_handler()
A Dmain.c377 int bytes, port, in; in vmexit_inout() local
381 in = (io_req->reqs.pio_request.direction == ACRN_IOREQ_DIR_READ); in vmexit_inout()
386 in ? "in" : "out", in vmexit_inout()
390 if (in) { in vmexit_inout()
423 int err, in = (io_req->reqs.pci_request.direction == ACRN_IOREQ_DIR_READ); in vmexit_pci_emul() local
425 err = emulate_pci_cfgrw(ctx, *pvcpu, in, in vmexit_pci_emul()
439 if (in) { in vmexit_pci_emul()
/devicemodel/hw/platform/
A Dcmos_io.c43 cmos_io_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in cmos_io_handler() argument
55 __func__, port, in, bytes, (uint8_t)*eax, next_ops); in cmos_io_handler()
75 if (in) { in cmos_io_handler()
A Ddebugexit.c40 debugexit_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in debugexit_handler() argument
43 if (in) in debugexit_handler()
A Dpit.c514 vpit_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in vpit_handler() argument
530 if (in) { in vpit_handler()
544 pr_err("invalid %s op @ io port 0x%x", in ? "in" : "out", port); in vpit_handler()
552 if (in) { in vpit_handler()
627 vpit_nmisc_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in vpit_nmisc_handler() argument
635 if (in) { in vpit_nmisc_handler()
A Datkbdc.c203 atkbdc_data_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in atkbdc_data_handler() argument
216 if (in) { in atkbdc_data_handler()
290 atkbdc_sts_ctl_handler(struct vmctx *ctx, int vcpu, int in, int port, in atkbdc_sts_ctl_handler() argument
304 if (in) { in atkbdc_sts_ctl_handler()
A Drtc.c897 vrtc_addr_handler(struct vmctx *ctx, int vcpu, int in, int port, in vrtc_addr_handler() argument
905 if (in) { in vrtc_addr_handler()
924 vrtc_data_handler(struct vmctx *ctx, int vcpu, int in, int port, in vrtc_data_handler() argument
959 if (in) { in vrtc_data_handler()
A Dusb_pmapper.c191 maxp = usb_dev_get_ep_maxp(r->udev, r->in, xfer->epid / 2); in usb_dev_comp_cb()
278 if (r->in == TOKEN_IN) { in usb_dev_comp_cb()
330 usb_dev_alloc_req(struct usb_dev *udev, struct usb_xfer *xfer, int in, in usb_dev_alloc_req() argument
344 req->in = in; in usb_dev_alloc_req()
/devicemodel/bios/
A Dchangelog_ovmf.txt38 - GvtGopDxe: Adjust the offset of gop in pvinfo page
70 - 8906f076de - CryptoPkg/OpensslLib: Add missing header files in INF file
72 - 51f7a3e6c5 - CryptoPkg/OpensslLib: Exclude err_all.c in process_files.pl
86 - 7eee048894 - CryptoPkg/OpensslLib: Exclude unnecessary files in
107 - Add support for VRING_USED_F_NO_NOTIFY in virtio devices
135 - Remove debug code in release build
147 - fix backspace issue in UEFI shell
148 - clear CD bit in SEC
A Dchangelog_vsbl.txt14 Support Crash mode, which uses vFastboot in vSBL as Crash mode target.
21 Support to append SSDT to ACPI table for First Stage Mount in AaaG.
23 …Enable to set boot target to CrashOS when panic happens in vSBL debug version, release version is …
/devicemodel/include/
A Drtc.h51 int vrtc_addr_handler(struct vmctx *ctx, int vcpu, int in, int port,
53 int vrtc_data_handler(struct vmctx *ctx, int vcpu, int in, int port,
A Dvga.h189 int vga_port_in_handler(struct vmctx *ctx, int in, int port, int bytes,
191 int vga_port_out_handler(struct vmctx *ctx, int in, int port, int bytes,
A Dinout.h39 typedef int (*inout_func_t)(struct vmctx *ctx, int vcpu, int in, int port,
A Dusb_pmapper.h69 int in; member
A Dpci_core.h394 int emulate_pci_cfgrw(struct vmctx *ctx, int vcpu, int in, int bus,
/devicemodel/hw/platform/tpm/
A Dtpm_emulator.c200 static bool tpm_is_selftest(const uint8_t *in, uint32_t in_len) in tpm_is_selftest() argument
203 return tpm_cmd_get_ordinal(in) == TPM_ORD_ContinueSelfTest; in tpm_is_selftest()
455 const uint8_t *in, uint32_t in_len, in swtpm_cmdcmd() argument
461 if (!in || !out) { in swtpm_cmdcmd()
468 is_selftest = tpm_is_selftest(in, in_len); in swtpm_cmdcmd()
471 ret = cmd_chan_write(cmd_chan_fd, (uint8_t *)in, in_len); in swtpm_cmdcmd()
734 swtpm_cmdcmd(tpm_context.cmd_chan_fd, cmd->in, cmd->in_len, in swtpm_handle_request()
A Dtpm_internal.h21 const uint8_t *in; member
/devicemodel/
A DREADME.rst8 Service VM and post-launched User VMs. It is a component that is used in
/devicemodel/hw/
A Dvga.c735 vga_port_in_handler(struct vmctx *ctx, int in, int port, int bytes, in vga_port_in_handler() argument
961 vga_port_out_handler(struct vmctx *ctx, int in, int port, int bytes, in vga_port_out_handler() argument
1236 vga_port_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in vga_port_handler() argument
1244 if (in) { in vga_port_handler()
1246 error = vga_port_in_handler(ctx, in, port, 1, in vga_port_handler()
1253 error = vga_port_out_handler(ctx, in, port, 1, in vga_port_handler()
1258 if (in) { in vga_port_handler()
1260 error = vga_port_in_handler(ctx, in, port, 1, in vga_port_handler()
1265 error = vga_port_in_handler(ctx, in, port + 1, 1, in vga_port_handler()
1272 error = vga_port_out_handler(ctx, in, port, 1, in vga_port_handler()
[all …]
/devicemodel/hw/pci/
A Dlpc.c153 lpc_uart_io_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes, in lpc_uart_io_handler() argument
163 if (in) in lpc_uart_io_handler()
169 if (in) { in lpc_uart_io_handler()
A Dcore.c108 static void pci_cfgrw(struct vmctx *ctx, int vcpu, int in, int bus, int slot,
510 if (in) { in pci_emul_io_handler()
1472 int bus, slot, func, coff, in; in pci_emul_ecfg_handler() local
1478 in = (dir == MEM_F_READ); in pci_emul_ecfg_handler()
1479 if (in) in pci_emul_ecfg_handler()
1481 pci_cfgrw(ctx, vcpu, in, bus, slot, func, coff, bytes, (uint32_t *)val); in pci_emul_ecfg_handler()
2401 if (in) in pci_cfgrw()
2418 if (in) { in pci_cfgrw()
2437 if (in) { in pci_cfgrw()
2564 emulate_pci_cfgrw(struct vmctx *ctx, int vcpu, int in, int bus, int slot, in emulate_pci_cfgrw() argument
[all …]
/devicemodel/hw/platform/acpi/
A Dacpi.c935 basl_start(struct basl_fio *in, struct basl_fio *out) in basl_start() argument
939 err = basl_open(in, 0); in basl_start()
943 basl_close(in); in basl_start()
951 basl_end(struct basl_fio *in, struct basl_fio *out) in basl_end() argument
953 basl_close(in); in basl_end()
/devicemodel/hw/pci/virtio/
A Dvirtio_gpio.c268 struct virtio_gpio_response *rsp, bool in);
1586 struct virtio_gpio_response *rsp, bool in) in print_virtio_gpio_info() argument
1607 if (in) in print_virtio_gpio_info()

Completed in 40 milliseconds

12