blob: 25a89c86dd22dc48606cf892502a5bd8c0eafb9f [file] [log] [blame]
/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (c) 2019, Linaro Limited
*/
#ifndef __KERNEL_USER_MODE_CTX_STRUCT_H
#define __KERNEL_USER_MODE_CTX_STRUCT_H
#include <kernel/tee_ta_manager.h>
#include <mm/tee_mmu_types.h>
struct user_mode_ctx {
struct vm_info vm_info;
struct tee_pager_area_head *areas;
struct tee_ta_ctx ctx;
};
#endif /*__KERNEL_USER_MODE_CTX_STRUCT_H*/