lineage_kernel_xcoverpro/drivers/misc/tzdev/tztui.h

41 lines
1.2 KiB
C
Executable File

/*
* Copyright (C) 2015 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 __TZTUI_H__
#define __TZTUI_H__
#include "tzdev.h"
/*#define TZTUI_DEBUG*/
#ifdef TZTUI_DEBUG
#define DBG(...) pr_info( "[tztui] DBG : " __VA_ARGS__)
#define ERR(...) pr_alert("[tztui] ERR : " __VA_ARGS__)
#else
#define DBG(...)
#define ERR(...) pr_alert("[tztui] ERR : " __VA_ARGS__)
#endif
/* SMC Commands list */
#define TZTUI_SMC_TUI_EVENT 0x0000000a
/* TUI Events list */
#define TUI_EVENT_TOUCH_IRQ 0x00000001
#define TUI_EVENT_CANCEL 0x00000002
#define TUI_EVENT_TIMEOUT 0x00000004
#define tztui_smc_tui_event(tui_event) tzdev_smc_cmd(TZTUI_SMC_TUI_EVENT, tui_event, 0x0ul, 0x0ul, 0)
#endif /* __TZTUI_H__ */