2 * QEMU host SGX EPC memory backend
4 * Copyright (C) 2019 Intel Corporation
7 * Sean Christopherson <sean.j.christopherson@intel.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include <sys/ioctl.h>
15 #include "qom/object_interfaces.h"
16 #include "qapi/error.h"
17 #include "sysemu/hostmem.h"
18 #include "hw/i386/hostmem-epc.h"
21 sgx_epc_backend_memory_alloc(HostMemoryBackend
*backend
, Error
**errp
)
28 error_setg(errp
, "can't create backend with size 0");
32 fd
= qemu_open_old("/dev/sgx_vepc", O_RDWR
);
34 error_setg_errno(errp
, errno
,
35 "failed to open /dev/sgx_vepc to alloc SGX EPC");
39 name
= object_get_canonical_path(OBJECT(backend
));
40 ram_flags
= (backend
->share
? RAM_SHARED
: 0) | RAM_PROTECTED
;
41 memory_region_init_ram_from_fd(&backend
->mr
, OBJECT(backend
),
42 name
, backend
->size
, ram_flags
,
47 static void sgx_epc_backend_instance_init(Object
*obj
)
49 HostMemoryBackend
*m
= MEMORY_BACKEND(obj
);
56 static void sgx_epc_backend_class_init(ObjectClass
*oc
, void *data
)
58 HostMemoryBackendClass
*bc
= MEMORY_BACKEND_CLASS(oc
);
60 bc
->alloc
= sgx_epc_backend_memory_alloc
;
63 static const TypeInfo sgx_epc_backed_info
= {
64 .name
= TYPE_MEMORY_BACKEND_EPC
,
65 .parent
= TYPE_MEMORY_BACKEND
,
66 .instance_init
= sgx_epc_backend_instance_init
,
67 .class_init
= sgx_epc_backend_class_init
,
68 .instance_size
= sizeof(HostMemoryBackendEpc
),
71 static void register_types(void)
73 int fd
= qemu_open_old("/dev/sgx_vepc", O_RDWR
);
77 type_register_static(&sgx_epc_backed_info
);
81 type_init(register_types
);