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
/*
 * Copyright (C) 2012-2014, 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.
 */
 
/**
 * @file mali_osk_wait_queue.c
 * Implemenation of the OS abstraction layer for the kernel device driver
 */
 
#include <linux/wait.h>
#include <linux/slab.h>
#include <linux/sched.h>
 
#include "mali_osk.h"
#include "mali_kernel_common.h"
 
struct _mali_osk_wait_queue_t_struct {
   wait_queue_head_t wait_queue;
};
 
_mali_osk_wait_queue_t *_mali_osk_wait_queue_init(void)
{
   _mali_osk_wait_queue_t *ret = NULL;
 
   ret = kmalloc(sizeof(_mali_osk_wait_queue_t), GFP_KERNEL);
 
   if (NULL == ret) {
       return ret;
   }
 
   init_waitqueue_head(&ret->wait_queue);
   MALI_DEBUG_ASSERT(!waitqueue_active(&ret->wait_queue));
 
   return ret;
}
 
void _mali_osk_wait_queue_wait_event(_mali_osk_wait_queue_t *queue, mali_bool(*condition)(void *), void *data)
{
   MALI_DEBUG_ASSERT_POINTER(queue);
   MALI_DEBUG_PRINT(6, ("Adding to wait queue %p\n", queue));
   wait_event(queue->wait_queue, condition(data));
}
 
void _mali_osk_wait_queue_wait_event_timeout(_mali_osk_wait_queue_t *queue, mali_bool(*condition)(void *), void *data, u32 timeout)
{
   MALI_DEBUG_ASSERT_POINTER(queue);
   MALI_DEBUG_PRINT(6, ("Adding to wait queue %p\n", queue));
   wait_event_timeout(queue->wait_queue, condition(data), _mali_osk_time_mstoticks(timeout));
}
 
void _mali_osk_wait_queue_wake_up(_mali_osk_wait_queue_t *queue)
{
   MALI_DEBUG_ASSERT_POINTER(queue);
 
   /* if queue is empty, don't attempt to wake up its elements */
   if (!waitqueue_active(&queue->wait_queue)) return;
 
   MALI_DEBUG_PRINT(6, ("Waking up elements in wait queue %p ....\n", queue));
 
   wake_up_all(&queue->wait_queue);
 
   MALI_DEBUG_PRINT(6, ("... elements in wait queue %p woken up\n", queue));
}
 
void _mali_osk_wait_queue_term(_mali_osk_wait_queue_t *queue)
{
   /* Parameter validation  */
   MALI_DEBUG_ASSERT_POINTER(queue);
 
   /* Linux requires no explicit termination of wait queues */
   kfree(queue);
}