Lines Matching +full:under +full:-
1 // SPDX-License-Identifier: GPL-2.0
12 #include <xen/xen-ops.h>
19 #include "xen-ops.h"
33 .con_in_handle = EFI_INVALID_TABLE_ADDR, /* Not used under Xen. */
34 .con_in = NULL, /* Not used under Xen. */
35 .con_out_handle = EFI_INVALID_TABLE_ADDR, /* Not used under Xen. */
36 .con_out = NULL, /* Not used under Xen. */
37 .stderr_handle = EFI_INVALID_TABLE_ADDR, /* Not used under Xen. */
38 .stderr = EFI_INVALID_TABLE_ADDR, /* Not used under Xen. */
40 /* Not used under Xen. */
42 /* Not used under Xen. */
64 efi_systab_xen.tables = info->cfg.addr; in xen_efi_probe()
65 efi_systab_xen.nr_tables = info->cfg.nent; in xen_efi_probe()
70 info->vendor.bufsz = sizeof(vendor); in xen_efi_probe()
71 set_xen_guest_handle(info->vendor.name, vendor); in xen_efi_probe()
75 efi_systab_xen.fw_revision = info->vendor.revision; in xen_efi_probe()
84 efi_systab_xen.hdr.revision = info->version; in xen_efi_probe()
91 efi.runtime_version = info->version; in xen_efi_probe()
141 strscpy((char *)&boot_params->efi_info.efi_loader_signature, "Xen", in xen_efi_init()
142 sizeof(boot_params->efi_info.efi_loader_signature)); in xen_efi_init()
143 boot_params->efi_info.efi_systab = (__u32)__pa(efi_systab_xen); in xen_efi_init()
144 boot_params->efi_info.efi_systab_hi = (__u32)(__pa(efi_systab_xen) >> 32); in xen_efi_init()
146 boot_params->secure_boot = xen_efi_get_secureboot(); in xen_efi_init()