2 * Copyright (c) 2015-2016, Linaro Limited
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
17 #include <linux/cdev.h>
18 #include <linux/completion.h>
19 #include <linux/device.h>
20 #include <linux/kref.h>
21 #include <linux/mutex.h>
22 #include <linux/types.h>
25 * struct tee_shm_pool - shared memory pool
26 * @private_mgr: pool manager for shared memory only between kernel
28 * @dma_buf_mgr: pool manager for shared memory exported to user space
31 struct tee_shm_pool_mgr
*private_mgr
;
32 struct tee_shm_pool_mgr
*dma_buf_mgr
;
35 #define TEE_DEVICE_FLAG_REGISTERED 0x1
36 #define TEE_MAX_DEV_NAME_LEN 32
39 * struct tee_device - TEE Device representation
40 * @name: name of device
41 * @desc: description of device
42 * @id: unique id of device
43 * @flags: represented by TEE_DEVICE_FLAG_REGISTERED above
44 * @dev: embedded basic device structure
45 * @cdev: embedded cdev
46 * @num_users: number of active users of this device
47 * @c_no_user: completion used when unregistering the device
48 * @mutex: mutex protecting @num_users and @idr
49 * @idr: register of shared memory object allocated on this device
50 * @pool: shared memory pool
53 char name
[TEE_MAX_DEV_NAME_LEN
];
54 const struct tee_desc
*desc
;
62 struct completion c_no_users
;
63 struct mutex mutex
; /* protects num_users and idr */
66 struct tee_shm_pool
*pool
;
69 int tee_shm_init(void);
71 int tee_shm_get_fd(struct tee_shm
*shm
);
73 bool tee_device_get(struct tee_device
*teedev
);
74 void tee_device_put(struct tee_device
*teedev
);
76 void teedev_ctx_get(struct tee_context
*ctx
);
77 void teedev_ctx_put(struct tee_context
*ctx
);
79 #endif /*TEE_PRIVATE_H*/