hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * Copyright (C) 2013, 2016-2017 ARM Limited. All rights reserved.
 * 
 * This program is free software and is provided to you under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
 * 
 * A copy of the licence is included with the program, and can also be obtained from Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
#include <linux/fs.h>       /* file system operations */
#include <linux/uaccess.h>  /* user space access */
 
#include "mali_ukk.h"
#include "mali_osk.h"
#include "mali_kernel_common.h"
#include "mali_session.h"
#include "mali_ukk_wrappers.h"
 
#include "mali_timeline.h"
#include "mali_timeline_fence_wait.h"
#include "mali_timeline_sync_fence.h"
 
int timeline_get_latest_point_wrapper(struct mali_session_data *session, _mali_uk_timeline_get_latest_point_s __user *uargs)
{
   u32 val;
   mali_timeline_id timeline;
   mali_timeline_point point;
 
   MALI_DEBUG_ASSERT_POINTER(session);
 
   if (0 != get_user(val, &uargs->timeline)) return -EFAULT;
 
   if (MALI_UK_TIMELINE_MAX <= val) {
       return -EINVAL;
   }
 
   timeline = (mali_timeline_id)val;
 
   point = mali_timeline_system_get_latest_point(session->timeline_system, timeline);
 
   if (0 != put_user(point, &uargs->point)) return -EFAULT;
 
   return 0;
}
 
int timeline_wait_wrapper(struct mali_session_data *session, _mali_uk_timeline_wait_s __user *uargs)
{
   u32 timeout, status;
   mali_bool ret;
   _mali_uk_fence_t uk_fence;
   struct mali_timeline_fence fence;
 
   MALI_DEBUG_ASSERT_POINTER(session);
 
   if (0 != copy_from_user(&uk_fence, &uargs->fence, sizeof(_mali_uk_fence_t))) return -EFAULT;
   if (0 != get_user(timeout, &uargs->timeout)) return -EFAULT;
 
   mali_timeline_fence_copy_uk_fence(&fence, &uk_fence);
 
   ret = mali_timeline_fence_wait(session->timeline_system, &fence, timeout);
   status = (MALI_TRUE == ret ? 1 : 0);
 
   if (0 != put_user(status, &uargs->status)) return -EFAULT;
 
   return 0;
}
 
int timeline_create_sync_fence_wrapper(struct mali_session_data *session, _mali_uk_timeline_create_sync_fence_s __user *uargs)
{
   s32 sync_fd = -1;
   _mali_uk_fence_t uk_fence;
   struct mali_timeline_fence fence;
 
   MALI_DEBUG_ASSERT_POINTER(session);
 
   if (0 != copy_from_user(&uk_fence, &uargs->fence, sizeof(_mali_uk_fence_t))) return -EFAULT;
   mali_timeline_fence_copy_uk_fence(&fence, &uk_fence);
 
#if defined(CONFIG_SYNC) || defined(CONFIG_SYNC_FILE)
   sync_fd = mali_timeline_sync_fence_create(session->timeline_system, &fence);
#else
   sync_fd = -1;
#endif /* defined(CONFIG_SYNC) || defined(CONFIG_SYNC_FILE) */
 
   if (0 != put_user(sync_fd, &uargs->sync_fd)) return -EFAULT;
 
   return 0;
}