Files
kernel-tenderloin-3.0/include/linux/i2c/isa1200.h
Bryan Huntsman 3f2bc4d6eb Initial Contribution
msm-2.6.38: tag AU_LINUX_ANDROID_GINGERBREAD.02.03.04.00.142

Signed-off-by: Bryan Huntsman <bryanh@codeaurora.org>
2011-10-03 09:57:10 -07:00

47 lines
1.2 KiB
C

/*
* isa1200.h - ISA1200 Haptic Motor driver
*
* Copyright (C) 2009 Samsung Electronics
* Kyungmin Park <kyungmin.park@samsung.com>
* Copyright (c) 2010, Code Aurora Forum. 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 version 2 as
* published by the Free Software Foundation.
*/
#ifndef __LINUX_ISA1200_H
#define __LINUX_ISA1200_H
enum mode_control {
POWER_DOWN_MODE = 0,
PWM_INPUT_MODE,
PWM_GEN_MODE,
WAVE_GEN_MODE
};
union pwm_div_freq {
unsigned int pwm_div; /* PWM gen mode */
unsigned int pwm_freq; /* PWM input mode */
};
struct isa1200_platform_data {
const char *name;
unsigned int pwm_ch_id; /* pwm channel id */
unsigned int max_timeout;
unsigned int hap_en_gpio;
bool overdrive_high; /* high/low overdrive */
bool overdrive_en; /* enable/disable overdrive */
enum mode_control mode_ctrl; /* input/generation/wave */
union pwm_div_freq pwm_fd;
bool smart_en; /* smart mode enable/disable */
bool is_erm;
bool ext_clk_en;
unsigned int chip_en;
unsigned int duty;
int (*power_on)(int on);
int (*dev_setup)(bool on);
};
#endif /* __LINUX_ISA1200_H */