upload tizen1.0 source
[kernel/linux-2.6.36.git] / drivers / media / video / samsung / ump / linux / ump_ukk_ref_wrappers.c
1 /*
2  * Copyright (C) 2010 ARM Limited. All rights reserved.
3  * 
4  * This program is free software and is provided to you under the terms of the GNU General Public License version 2
5  * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
6  * 
7  * A copy of the licence is included with the program, and can also be obtained from Free Software
8  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
9  */
10
11 /**
12  * @file ump_ukk_wrappers.c
13  * Defines the wrapper functions which turn Linux IOCTL calls into _ukk_ calls for the reference implementation
14  */
15
16
17 #include <asm/uaccess.h>             /* user space access */
18
19 #include "ump_osk.h"
20 #include "ump_uk_types.h"
21 #include "ump_ukk.h"
22 #include "ump_kernel_common.h"
23
24 /*
25  * IOCTL operation; Allocate UMP memory
26  */
27 int ump_allocate_wrapper(u32 __user * argument, struct ump_session_data  * session_data)
28 {
29         _ump_uk_allocate_s user_interaction;
30         _mali_osk_errcode_t err;
31
32         /* Sanity check input parameters */
33         if (NULL == argument || NULL == session_data)
34         {
35                 MSG_ERR(("NULL parameter in ump_ioctl_allocate()\n"));
36                 return -ENOTTY;
37         }
38
39         /* Copy the user space memory to kernel space (so we safely can read it) */
40         if (0 != copy_from_user(&user_interaction, argument, sizeof(user_interaction)))
41         {
42                 MSG_ERR(("copy_from_user() in ump_ioctl_allocate()\n"));
43                 return -EFAULT;
44         }
45
46         user_interaction.ctx = (void *) session_data;
47
48         err = _ump_ukk_allocate( &user_interaction );
49         if( _MALI_OSK_ERR_OK != err )
50         {
51                 DBG_MSG(1, ("_ump_ukk_allocate() failed in ump_ioctl_allocate()\n"));
52                 return map_errcode(err);
53         }
54         user_interaction.ctx = NULL;
55
56         if (0 != copy_to_user(argument, &user_interaction, sizeof(user_interaction)))
57         {
58                 /* If the copy fails then we should release the memory. We can use the IOCTL release to accomplish this */
59                 _ump_uk_release_s release_args;
60
61                 MSG_ERR(("copy_to_user() failed in ump_ioctl_allocate()\n"));
62
63                 release_args.ctx = (void *) session_data;
64                 release_args.secure_id = user_interaction.secure_id;
65
66                 err = _ump_ukk_release( &release_args );
67                 if(_MALI_OSK_ERR_OK != err)
68                 {
69                         MSG_ERR(("_ump_ukk_release() also failed when trying to release newly allocated memory in ump_ioctl_allocate()\n"));
70                 }
71
72                 return -EFAULT;
73         }
74
75         return 0; /* success */
76 }