| /* |
| * Copyright (C) 2016 Samsung Electronics, Inc. |
| * |
| * This software is licensed under the terms of the GNU General Public |
| * License version 2, as published by the Free Software Foundation, and |
| * may be copied, distributed, and modified under those terms. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| */ |
| |
| #ifndef __TZ_PLATFORM_H__ |
| #define __TZ_PLATFORM_H__ |
| |
| #include "tz_common.h" |
| |
| int tzdev_platform_register(void); |
| void tzdev_platform_unregister(void); |
| int tzdev_platform_open(void); |
| int tzdev_platform_close(void); |
| int tzdev_platform_ioctl(unsigned int cmd, unsigned long arg); |
| int tzdev_platform_smc_call(struct tzio_smc_data *data); |
| |
| #endif /* __TZ_PLATFORM_H__ */ |