[1] | 1 | /* |
---|
| 2 | * hal_uspace.h - Generic User Space Access API definition |
---|
[17] | 3 | * |
---|
[23] | 4 | * Authors Alain Greiner (2016,2017) |
---|
[1] | 5 | * |
---|
| 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
[17] | 7 | * |
---|
[1] | 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
| 24 | #ifndef _HAL_USPACE_H_ |
---|
| 25 | #define _HAL_USPACE_H_ |
---|
| 26 | |
---|
[457] | 27 | #include <hal_kernel_types.h> |
---|
[1] | 28 | |
---|
| 29 | ////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 30 | // User space access API (implementation in hal_uspace.c) |
---|
[17] | 31 | // |
---|
[1] | 32 | // When moving data between user space and kernel space, the user address is always |
---|
[95] | 33 | // a virtual address, but the kernel address can be a physical address, on 32 bits |
---|
| 34 | // architectures, and require MMU dynamic activation/deactivation. |
---|
| 35 | // For sake of portability, user/kernel data transfers must use the following API. |
---|
[1] | 36 | ////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 37 | |
---|
| 38 | |
---|
| 39 | /***************************************************************************************** |
---|
| 40 | * This function tranfers a data buffer from the user space to the kernel space. |
---|
[23] | 41 | * If the kernel uses physical addresses, it activates the MMU to access the user buffer. |
---|
[1] | 42 | ***************************************************************************************** |
---|
| 43 | * @ k_dst : destination address in kernel space. |
---|
| 44 | * @ u_src : source buffer address in user space. |
---|
| 45 | * @ size : size (number of bytes). |
---|
| 46 | ****************************************************************************************/ |
---|
| 47 | extern void hal_copy_from_uspace( void * k_dst, |
---|
| 48 | void * u_src, |
---|
| 49 | uint32_t size ); |
---|
| 50 | |
---|
| 51 | /***************************************************************************************** |
---|
| 52 | * This function tranfers a data buffer from the kernel space to the user space. |
---|
[23] | 53 | * If the kernel uses physical addresses, it activates the MMU to access the user buffer. |
---|
[1] | 54 | ***************************************************************************************** |
---|
[23] | 55 | * @ u_dst : destination buffer address in user space. |
---|
[1] | 56 | * @ k_src : source address in kernel space. |
---|
| 57 | * @ size : size (number of bytes). |
---|
| 58 | ****************************************************************************************/ |
---|
[23] | 59 | extern void hal_copy_to_uspace( void * u_dst, |
---|
| 60 | void * k_src, |
---|
[1] | 61 | uint32_t size ); |
---|
| 62 | |
---|
| 63 | /***************************************************************************************** |
---|
[407] | 64 | * This function tranfers a string from the user space to the kernel space. |
---|
| 65 | * The transfer stops after the first encountered NUL character, and no more than |
---|
| 66 | * <max_size> characters are actually copied to target buffer. |
---|
[95] | 67 | * If the kernel uses physical addresses, it activates the MMU to access the user buffer. |
---|
| 68 | ***************************************************************************************** |
---|
| 69 | * @ u_dst : destination buffer address in user space. |
---|
| 70 | * @ k_src : source address in kernel space. |
---|
[121] | 71 | * @ max_size : max number of characters to be copied. |
---|
[95] | 72 | ****************************************************************************************/ |
---|
[407] | 73 | extern void hal_strcpy_from_uspace( char * k_dst, |
---|
| 74 | char * u_src, |
---|
| 75 | uint32_t max_size ); |
---|
[95] | 76 | |
---|
| 77 | /***************************************************************************************** |
---|
[407] | 78 | * This function tranfers a string from the kernel space to the user space. |
---|
| 79 | * The transfer stops after the first encountered NUL character, and no more than |
---|
| 80 | * <max_size> characters are actually copied to target buffer. |
---|
[95] | 81 | * If the kernel uses physical addresses, it activates the MMU to access the user buffer. |
---|
| 82 | ***************************************************************************************** |
---|
| 83 | * @ u_dst : destination buffer address in user space. |
---|
| 84 | * @ k_src : source address in kernel space. |
---|
[121] | 85 | * @ max_size : max number of characters to be copied. |
---|
[95] | 86 | ****************************************************************************************/ |
---|
[407] | 87 | extern void hal_strcpy_to_uspace( char * u_dst, |
---|
| 88 | char * k_src, |
---|
| 89 | uint32_t max_size ); |
---|
[95] | 90 | |
---|
| 91 | /***************************************************************************************** |
---|
[23] | 92 | * This function computes the length of a string in user space. |
---|
| 93 | * If the kernel uses physical addresses, it activates the MMU to access the user buffer. |
---|
[1] | 94 | ***************************************************************************************** |
---|
| 95 | * @ u_str : string address in user space. |
---|
| 96 | * @ return length of the string. |
---|
| 97 | ****************************************************************************************/ |
---|
[95] | 98 | uint32_t hal_strlen_from_uspace( char * string ); |
---|
[1] | 99 | |
---|
| 100 | |
---|
| 101 | #endif /* _HAL_USPACE_H_ */ |
---|