diff options
Diffstat (limited to 'include/linux/input/cypress-touchkey.h')
-rwxr-xr-x | include/linux/input/cypress-touchkey.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/include/linux/input/cypress-touchkey.h b/include/linux/input/cypress-touchkey.h new file mode 100755 index 0000000..cd4ff4d --- /dev/null +++ b/include/linux/input/cypress-touchkey.h @@ -0,0 +1,42 @@ +/* + * Copyright 2006-2010, Cypress Semiconductor Corporation. + * Copyright (C) 2010, Samsung Electronics Co. Ltd. All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ +#ifndef _CYPRESS_TOUCHKEY_H__ +#define _CYPRESS_TOUCHKEY_H__ + +#define CYPRESS_TOUCHKEY_DEV_NAME "cypress_touchkey" + +struct touchkey_platform_data { + int keycode_cnt; + const int *keycode; + void (*touchkey_onoff) (int); + void (*touchkey_sleep_onoff) (int); + const char *fw_name; + int scl_pin; + int sda_pin; + int en_pin; +}; + +enum { + TOUCHKEY_OFF, + TOUCHKEY_ON, +}; + +extern int touchkey_flash_firmware(struct touchkey_platform_data *, const u8 *); + +#endif /* _CYPRESS_TOUCHKEY_H__ */ |