blob: cd4ff4d57f6f86add5da76c4c2e48c013c78cc00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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__ */
|