Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Synaptics RMI4 touchscreen driver |
| 3 | * |
| 4 | * Copyright (C) 2012 Synaptics Incorporated |
| 5 | * |
| 6 | * Copyright (C) 2012 Alexandra Chin <alexandra.chin@tw.synaptics.com> |
| 7 | * Copyright (C) 2012 Scott Lin <scott.lin@tw.synaptics.com> |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 8 | * Copyright (c) 2013, The Linux Foundation. All rights reserved. |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | */ |
| 20 | |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/slab.h> |
| 24 | #include <linux/i2c.h> |
| 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/input.h> |
| 28 | #include <linux/gpio.h> |
| 29 | #include <linux/regulator/consumer.h> |
| 30 | #include <linux/input/synaptics_dsx.h> |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 31 | #include <linux/of_gpio.h> |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 32 | #include "synaptics_i2c_rmi4.h" |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 33 | #include <linux/input/mt.h> |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 34 | |
| 35 | #define DRIVER_NAME "synaptics_rmi4_i2c" |
| 36 | #define INPUT_PHYS_NAME "synaptics_rmi4_i2c/input0" |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 37 | #define DEBUGFS_DIR_NAME "ts_debug" |
Alexandra Chin | 3a74752 | 2013-04-15 12:13:38 -0700 | [diff] [blame] | 38 | |
| 39 | #define RESET_DELAY 100 |
| 40 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 41 | #define TYPE_B_PROTOCOL |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 42 | |
| 43 | #define NO_0D_WHILE_2D |
| 44 | /* |
| 45 | #define REPORT_2D_Z |
| 46 | */ |
| 47 | #define REPORT_2D_W |
| 48 | |
| 49 | #define RPT_TYPE (1 << 0) |
| 50 | #define RPT_X_LSB (1 << 1) |
| 51 | #define RPT_X_MSB (1 << 2) |
| 52 | #define RPT_Y_LSB (1 << 3) |
| 53 | #define RPT_Y_MSB (1 << 4) |
| 54 | #define RPT_Z (1 << 5) |
| 55 | #define RPT_WX (1 << 6) |
| 56 | #define RPT_WY (1 << 7) |
| 57 | #define RPT_DEFAULT (RPT_TYPE | RPT_X_LSB | RPT_X_MSB | RPT_Y_LSB | RPT_Y_MSB) |
| 58 | |
| 59 | #define EXP_FN_DET_INTERVAL 1000 /* ms */ |
| 60 | #define POLLING_PERIOD 1 /* ms */ |
| 61 | #define SYN_I2C_RETRY_TIMES 10 |
| 62 | #define MAX_ABS_MT_TOUCH_MAJOR 15 |
| 63 | |
| 64 | #define F01_STD_QUERY_LEN 21 |
| 65 | #define F01_BUID_ID_OFFSET 18 |
| 66 | #define F11_STD_QUERY_LEN 9 |
| 67 | #define F11_STD_CTRL_LEN 10 |
| 68 | #define F11_STD_DATA_LEN 12 |
| 69 | |
| 70 | #define NORMAL_OPERATION (0 << 0) |
| 71 | #define SENSOR_SLEEP (1 << 0) |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 72 | #define NO_SLEEP_OFF (0 << 2) |
| 73 | #define NO_SLEEP_ON (1 << 2) |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 74 | |
Alexandra Chin | 3a74752 | 2013-04-15 12:13:38 -0700 | [diff] [blame] | 75 | enum device_status { |
| 76 | STATUS_NO_ERROR = 0x00, |
| 77 | STATUS_RESET_OCCURED = 0x01, |
| 78 | STATUS_INVALID_CONFIG = 0x02, |
| 79 | STATUS_DEVICE_FAILURE = 0x03, |
| 80 | STATUS_CONFIG_CRC_FAILURE = 0x04, |
| 81 | STATUS_FIRMWARE_CRC_FAILURE = 0x05, |
| 82 | STATUS_CRC_IN_PROGRESS = 0x06 |
| 83 | }; |
| 84 | |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 85 | #define RMI4_VTG_MIN_UV 2700000 |
| 86 | #define RMI4_VTG_MAX_UV 3300000 |
| 87 | #define RMI4_ACTIVE_LOAD_UA 15000 |
| 88 | #define RMI4_LPM_LOAD_UA 10 |
| 89 | |
| 90 | #define RMI4_I2C_VTG_MIN_UV 1800000 |
| 91 | #define RMI4_I2C_VTG_MAX_UV 1800000 |
| 92 | #define RMI4_I2C_LOAD_UA 10000 |
| 93 | #define RMI4_I2C_LPM_LOAD_UA 10 |
| 94 | |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 95 | #define RMI4_GPIO_SLEEP_LOW_US 10000 |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 96 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 97 | static int synaptics_rmi4_i2c_read(struct synaptics_rmi4_data *rmi4_data, |
| 98 | unsigned short addr, unsigned char *data, |
| 99 | unsigned short length); |
| 100 | |
| 101 | static int synaptics_rmi4_i2c_write(struct synaptics_rmi4_data *rmi4_data, |
| 102 | unsigned short addr, unsigned char *data, |
| 103 | unsigned short length); |
| 104 | |
| 105 | static int synaptics_rmi4_reset_device(struct synaptics_rmi4_data *rmi4_data); |
| 106 | |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 107 | #ifdef CONFIG_PM |
| 108 | static int synaptics_rmi4_suspend(struct device *dev); |
| 109 | |
| 110 | static int synaptics_rmi4_resume(struct device *dev); |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 111 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 112 | static ssize_t synaptics_rmi4_full_pm_cycle_show(struct device *dev, |
| 113 | struct device_attribute *attr, char *buf); |
| 114 | |
| 115 | static ssize_t synaptics_rmi4_full_pm_cycle_store(struct device *dev, |
| 116 | struct device_attribute *attr, const char *buf, size_t count); |
| 117 | |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 118 | #if defined(CONFIG_FB) |
| 119 | static int fb_notifier_callback(struct notifier_block *self, |
| 120 | unsigned long event, void *data); |
| 121 | #elif defined(CONFIG_HAS_EARLYSUSPEND) |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 122 | static void synaptics_rmi4_early_suspend(struct early_suspend *h); |
| 123 | |
| 124 | static void synaptics_rmi4_late_resume(struct early_suspend *h); |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 125 | #endif |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 126 | #endif |
| 127 | |
| 128 | static ssize_t synaptics_rmi4_f01_reset_store(struct device *dev, |
| 129 | struct device_attribute *attr, const char *buf, size_t count); |
| 130 | |
| 131 | static ssize_t synaptics_rmi4_f01_productinfo_show(struct device *dev, |
| 132 | struct device_attribute *attr, char *buf); |
| 133 | |
| 134 | static ssize_t synaptics_rmi4_f01_buildid_show(struct device *dev, |
| 135 | struct device_attribute *attr, char *buf); |
| 136 | |
| 137 | static ssize_t synaptics_rmi4_f01_flashprog_show(struct device *dev, |
| 138 | struct device_attribute *attr, char *buf); |
| 139 | |
| 140 | static ssize_t synaptics_rmi4_0dbutton_show(struct device *dev, |
| 141 | struct device_attribute *attr, char *buf); |
| 142 | |
| 143 | static ssize_t synaptics_rmi4_0dbutton_store(struct device *dev, |
| 144 | struct device_attribute *attr, const char *buf, size_t count); |
| 145 | |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 146 | static ssize_t synaptics_rmi4_flipx_show(struct device *dev, |
| 147 | struct device_attribute *attr, char *buf); |
| 148 | |
| 149 | static ssize_t synaptics_rmi4_flipx_store(struct device *dev, |
| 150 | struct device_attribute *attr, const char *buf, size_t count); |
| 151 | |
| 152 | static ssize_t synaptics_rmi4_flipy_show(struct device *dev, |
| 153 | struct device_attribute *attr, char *buf); |
| 154 | |
| 155 | static ssize_t synaptics_rmi4_flipy_store(struct device *dev, |
| 156 | struct device_attribute *attr, const char *buf, size_t count); |
| 157 | |
| 158 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 159 | struct synaptics_rmi4_f01_device_status { |
| 160 | union { |
| 161 | struct { |
| 162 | unsigned char status_code:4; |
| 163 | unsigned char reserved:2; |
| 164 | unsigned char flash_prog:1; |
| 165 | unsigned char unconfigured:1; |
| 166 | } __packed; |
| 167 | unsigned char data[1]; |
| 168 | }; |
| 169 | }; |
| 170 | |
| 171 | struct synaptics_rmi4_f1a_query { |
| 172 | union { |
| 173 | struct { |
| 174 | unsigned char max_button_count:3; |
| 175 | unsigned char reserved:5; |
| 176 | unsigned char has_general_control:1; |
| 177 | unsigned char has_interrupt_enable:1; |
| 178 | unsigned char has_multibutton_select:1; |
| 179 | unsigned char has_tx_rx_map:1; |
| 180 | unsigned char has_perbutton_threshold:1; |
| 181 | unsigned char has_release_threshold:1; |
| 182 | unsigned char has_strongestbtn_hysteresis:1; |
| 183 | unsigned char has_filter_strength:1; |
| 184 | } __packed; |
| 185 | unsigned char data[2]; |
| 186 | }; |
| 187 | }; |
| 188 | |
| 189 | struct synaptics_rmi4_f1a_control_0 { |
| 190 | union { |
| 191 | struct { |
| 192 | unsigned char multibutton_report:2; |
| 193 | unsigned char filter_mode:2; |
| 194 | unsigned char reserved:4; |
| 195 | } __packed; |
| 196 | unsigned char data[1]; |
| 197 | }; |
| 198 | }; |
| 199 | |
| 200 | struct synaptics_rmi4_f1a_control_3_4 { |
| 201 | unsigned char transmitterbutton; |
| 202 | unsigned char receiverbutton; |
| 203 | }; |
| 204 | |
| 205 | struct synaptics_rmi4_f1a_control { |
| 206 | struct synaptics_rmi4_f1a_control_0 general_control; |
| 207 | unsigned char *button_int_enable; |
| 208 | unsigned char *multi_button; |
| 209 | struct synaptics_rmi4_f1a_control_3_4 *electrode_map; |
| 210 | unsigned char *button_threshold; |
| 211 | unsigned char button_release_threshold; |
| 212 | unsigned char strongest_button_hysteresis; |
| 213 | unsigned char filter_strength; |
| 214 | }; |
| 215 | |
| 216 | struct synaptics_rmi4_f1a_handle { |
| 217 | int button_bitmask_size; |
| 218 | unsigned char button_count; |
| 219 | unsigned char valid_button_count; |
| 220 | unsigned char *button_data_buffer; |
| 221 | unsigned char *button_map; |
| 222 | struct synaptics_rmi4_f1a_query button_query; |
| 223 | struct synaptics_rmi4_f1a_control button_control; |
| 224 | }; |
| 225 | |
| 226 | struct synaptics_rmi4_exp_fn { |
| 227 | enum exp_fn fn_type; |
| 228 | bool inserted; |
| 229 | int (*func_init)(struct synaptics_rmi4_data *rmi4_data); |
| 230 | void (*func_remove)(struct synaptics_rmi4_data *rmi4_data); |
| 231 | void (*func_attn)(struct synaptics_rmi4_data *rmi4_data, |
| 232 | unsigned char intr_mask); |
| 233 | struct list_head link; |
| 234 | }; |
| 235 | |
| 236 | static struct device_attribute attrs[] = { |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 237 | #ifdef CONFIG_PM |
Amy Maloche | 8b99ec9 | 2013-06-24 17:13:42 -0700 | [diff] [blame] | 238 | __ATTR(full_pm_cycle, (S_IRUGO | S_IWUSR | S_IWGRP), |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 239 | synaptics_rmi4_full_pm_cycle_show, |
| 240 | synaptics_rmi4_full_pm_cycle_store), |
| 241 | #endif |
Amy Maloche | 8b99ec9 | 2013-06-24 17:13:42 -0700 | [diff] [blame] | 242 | __ATTR(reset, S_IRUGO | S_IWUSR | S_IWGRP, |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 243 | synaptics_rmi4_show_error, |
| 244 | synaptics_rmi4_f01_reset_store), |
| 245 | __ATTR(productinfo, S_IRUGO, |
| 246 | synaptics_rmi4_f01_productinfo_show, |
| 247 | synaptics_rmi4_store_error), |
| 248 | __ATTR(buildid, S_IRUGO, |
| 249 | synaptics_rmi4_f01_buildid_show, |
| 250 | synaptics_rmi4_store_error), |
| 251 | __ATTR(flashprog, S_IRUGO, |
| 252 | synaptics_rmi4_f01_flashprog_show, |
| 253 | synaptics_rmi4_store_error), |
Amy Maloche | 8b99ec9 | 2013-06-24 17:13:42 -0700 | [diff] [blame] | 254 | __ATTR(0dbutton, (S_IRUGO | S_IWUSR | S_IWGRP), |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 255 | synaptics_rmi4_0dbutton_show, |
| 256 | synaptics_rmi4_0dbutton_store), |
Amy Maloche | 8b99ec9 | 2013-06-24 17:13:42 -0700 | [diff] [blame] | 257 | __ATTR(flipx, (S_IRUGO | S_IWUSR | S_IWGRP), |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 258 | synaptics_rmi4_flipx_show, |
| 259 | synaptics_rmi4_flipx_store), |
Amy Maloche | 8b99ec9 | 2013-06-24 17:13:42 -0700 | [diff] [blame] | 260 | __ATTR(flipy, (S_IRUGO | S_IWUSR | S_IWGRP), |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 261 | synaptics_rmi4_flipy_show, |
| 262 | synaptics_rmi4_flipy_store), |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 263 | }; |
| 264 | |
| 265 | static bool exp_fn_inited; |
| 266 | static struct mutex exp_fn_list_mutex; |
| 267 | static struct list_head exp_fn_list; |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 268 | #ifdef CONFIG_PM |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 269 | static ssize_t synaptics_rmi4_full_pm_cycle_show(struct device *dev, |
| 270 | struct device_attribute *attr, char *buf) |
| 271 | { |
| 272 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 273 | |
| 274 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 275 | rmi4_data->full_pm_cycle); |
| 276 | } |
| 277 | |
| 278 | static ssize_t synaptics_rmi4_full_pm_cycle_store(struct device *dev, |
| 279 | struct device_attribute *attr, const char *buf, size_t count) |
| 280 | { |
| 281 | unsigned int input; |
| 282 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 283 | |
| 284 | if (sscanf(buf, "%u", &input) != 1) |
| 285 | return -EINVAL; |
| 286 | |
| 287 | rmi4_data->full_pm_cycle = input > 0 ? 1 : 0; |
| 288 | |
| 289 | return count; |
| 290 | } |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 291 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 292 | static int synaptics_rmi4_debug_suspend_set(void *_data, u64 val) |
Amy Maloche | 5210eeb | 2013-06-04 16:05:27 -0700 | [diff] [blame] | 293 | { |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 294 | struct synaptics_rmi4_data *rmi4_data = _data; |
Amy Maloche | 5210eeb | 2013-06-04 16:05:27 -0700 | [diff] [blame] | 295 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 296 | if (val) |
| 297 | synaptics_rmi4_suspend(&rmi4_data->input_dev->dev); |
| 298 | else |
| 299 | synaptics_rmi4_resume(&rmi4_data->input_dev->dev); |
Amy Maloche | 5210eeb | 2013-06-04 16:05:27 -0700 | [diff] [blame] | 300 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 301 | return 0; |
Amy Maloche | 5210eeb | 2013-06-04 16:05:27 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 304 | static ssize_t synaptics_rmi4_debug_suspend_get(void *_data, u64 *val) |
Amy Maloche | 5210eeb | 2013-06-04 16:05:27 -0700 | [diff] [blame] | 305 | { |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 306 | struct synaptics_rmi4_data *rmi4_data = _data; |
Amy Maloche | 5210eeb | 2013-06-04 16:05:27 -0700 | [diff] [blame] | 307 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 308 | *val = rmi4_data->suspended; |
Amy Maloche | 5210eeb | 2013-06-04 16:05:27 -0700 | [diff] [blame] | 309 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 310 | return 0; |
Amy Maloche | 5210eeb | 2013-06-04 16:05:27 -0700 | [diff] [blame] | 311 | } |
| 312 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 313 | DEFINE_SIMPLE_ATTRIBUTE(debug_suspend_fops, synaptics_rmi4_debug_suspend_get, |
| 314 | synaptics_rmi4_debug_suspend_set, "%lld\n"); |
| 315 | |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 316 | #ifdef CONFIG_FB |
| 317 | static void configure_sleep(struct synaptics_rmi4_data *rmi4_data) |
| 318 | { |
| 319 | int retval = 0; |
| 320 | |
| 321 | rmi4_data->fb_notif.notifier_call = fb_notifier_callback; |
| 322 | |
| 323 | retval = fb_register_client(&rmi4_data->fb_notif); |
| 324 | if (retval) |
| 325 | dev_err(&rmi4_data->i2c_client->dev, |
| 326 | "Unable to register fb_notifier: %d\n", retval); |
| 327 | return; |
| 328 | } |
| 329 | #elif defined CONFIG_HAS_EARLYSUSPEND |
| 330 | static void configure_sleep(struct synaptics_rmi4_data *rmi4_data) |
| 331 | { |
| 332 | rmi4_data->early_suspend.level = EARLY_SUSPEND_LEVEL_BLANK_SCREEN + 1; |
| 333 | rmi4_data->early_suspend.suspend = synaptics_rmi4_early_suspend; |
| 334 | rmi4_data->early_suspend.resume = synaptics_rmi4_late_resume; |
| 335 | register_early_suspend(&rmi4_data->early_suspend); |
| 336 | |
| 337 | return; |
| 338 | } |
| 339 | #else |
| 340 | static void configure_sleep(struct synaptics_rmi4_data *rmi4_data) |
| 341 | { |
| 342 | return; |
| 343 | } |
| 344 | #endif |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 345 | #endif |
| 346 | |
| 347 | static ssize_t synaptics_rmi4_f01_reset_store(struct device *dev, |
| 348 | struct device_attribute *attr, const char *buf, size_t count) |
| 349 | { |
| 350 | int retval; |
| 351 | unsigned int reset; |
| 352 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 353 | |
| 354 | if (sscanf(buf, "%u", &reset) != 1) |
| 355 | return -EINVAL; |
| 356 | |
| 357 | if (reset != 1) |
| 358 | return -EINVAL; |
| 359 | |
| 360 | retval = synaptics_rmi4_reset_device(rmi4_data); |
| 361 | if (retval < 0) { |
| 362 | dev_err(dev, |
| 363 | "%s: Failed to issue reset command, error = %d\n", |
| 364 | __func__, retval); |
| 365 | return retval; |
| 366 | } |
| 367 | |
| 368 | return count; |
| 369 | } |
| 370 | |
| 371 | static ssize_t synaptics_rmi4_f01_productinfo_show(struct device *dev, |
| 372 | struct device_attribute *attr, char *buf) |
| 373 | { |
| 374 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 375 | |
| 376 | return snprintf(buf, PAGE_SIZE, "0x%02x 0x%02x\n", |
| 377 | (rmi4_data->rmi4_mod_info.product_info[0]), |
| 378 | (rmi4_data->rmi4_mod_info.product_info[1])); |
| 379 | } |
| 380 | |
| 381 | static ssize_t synaptics_rmi4_f01_buildid_show(struct device *dev, |
| 382 | struct device_attribute *attr, char *buf) |
| 383 | { |
| 384 | unsigned int build_id; |
| 385 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 386 | struct synaptics_rmi4_device_info *rmi; |
| 387 | |
| 388 | rmi = &(rmi4_data->rmi4_mod_info); |
| 389 | |
| 390 | build_id = (unsigned int)rmi->build_id[0] + |
| 391 | (unsigned int)rmi->build_id[1] * 0x100 + |
| 392 | (unsigned int)rmi->build_id[2] * 0x10000; |
| 393 | |
| 394 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 395 | build_id); |
| 396 | } |
| 397 | |
| 398 | static ssize_t synaptics_rmi4_f01_flashprog_show(struct device *dev, |
| 399 | struct device_attribute *attr, char *buf) |
| 400 | { |
| 401 | int retval; |
| 402 | struct synaptics_rmi4_f01_device_status device_status; |
| 403 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 404 | |
| 405 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 406 | rmi4_data->f01_data_base_addr, |
| 407 | device_status.data, |
| 408 | sizeof(device_status.data)); |
| 409 | if (retval < 0) { |
| 410 | dev_err(dev, |
| 411 | "%s: Failed to read device status, error = %d\n", |
| 412 | __func__, retval); |
| 413 | return retval; |
| 414 | } |
| 415 | |
| 416 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 417 | device_status.flash_prog); |
| 418 | } |
| 419 | |
| 420 | static ssize_t synaptics_rmi4_0dbutton_show(struct device *dev, |
| 421 | struct device_attribute *attr, char *buf) |
| 422 | { |
| 423 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 424 | |
| 425 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 426 | rmi4_data->button_0d_enabled); |
| 427 | } |
| 428 | |
| 429 | static ssize_t synaptics_rmi4_0dbutton_store(struct device *dev, |
| 430 | struct device_attribute *attr, const char *buf, size_t count) |
| 431 | { |
| 432 | int retval; |
| 433 | unsigned int input; |
| 434 | unsigned char ii; |
| 435 | unsigned char intr_enable; |
| 436 | struct synaptics_rmi4_fn *fhandler; |
| 437 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 438 | struct synaptics_rmi4_device_info *rmi; |
| 439 | |
| 440 | rmi = &(rmi4_data->rmi4_mod_info); |
| 441 | |
| 442 | if (sscanf(buf, "%u", &input) != 1) |
| 443 | return -EINVAL; |
| 444 | |
| 445 | input = input > 0 ? 1 : 0; |
| 446 | |
| 447 | if (rmi4_data->button_0d_enabled == input) |
| 448 | return count; |
| 449 | |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 450 | if (!list_empty(&rmi->support_fn_list)) { |
| 451 | list_for_each_entry(fhandler, &rmi->support_fn_list, link) { |
| 452 | if (fhandler->fn_number == SYNAPTICS_RMI4_F1A) { |
| 453 | ii = fhandler->intr_reg_num; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 454 | |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 455 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 456 | rmi4_data->f01_ctrl_base_addr + |
| 457 | 1 + ii, |
| 458 | &intr_enable, |
| 459 | sizeof(intr_enable)); |
| 460 | if (retval < 0) |
| 461 | return retval; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 462 | |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 463 | if (input == 1) |
| 464 | intr_enable |= fhandler->intr_mask; |
| 465 | else |
| 466 | intr_enable &= ~fhandler->intr_mask; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 467 | |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 468 | retval = synaptics_rmi4_i2c_write(rmi4_data, |
| 469 | rmi4_data->f01_ctrl_base_addr + |
| 470 | 1 + ii, |
| 471 | &intr_enable, |
| 472 | sizeof(intr_enable)); |
| 473 | if (retval < 0) |
| 474 | return retval; |
| 475 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 476 | } |
| 477 | } |
| 478 | |
| 479 | rmi4_data->button_0d_enabled = input; |
| 480 | |
| 481 | return count; |
| 482 | } |
| 483 | |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 484 | static ssize_t synaptics_rmi4_flipx_show(struct device *dev, |
| 485 | struct device_attribute *attr, char *buf) |
| 486 | { |
| 487 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 488 | |
| 489 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 490 | rmi4_data->flip_x); |
| 491 | } |
| 492 | |
| 493 | static ssize_t synaptics_rmi4_flipx_store(struct device *dev, |
| 494 | struct device_attribute *attr, const char *buf, size_t count) |
| 495 | { |
| 496 | unsigned int input; |
| 497 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 498 | |
| 499 | if (sscanf(buf, "%u", &input) != 1) |
| 500 | return -EINVAL; |
| 501 | |
| 502 | rmi4_data->flip_x = input > 0 ? 1 : 0; |
| 503 | |
| 504 | return count; |
| 505 | } |
| 506 | |
| 507 | static ssize_t synaptics_rmi4_flipy_show(struct device *dev, |
| 508 | struct device_attribute *attr, char *buf) |
| 509 | { |
| 510 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 511 | |
| 512 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 513 | rmi4_data->flip_y); |
| 514 | } |
| 515 | |
| 516 | static ssize_t synaptics_rmi4_flipy_store(struct device *dev, |
| 517 | struct device_attribute *attr, const char *buf, size_t count) |
| 518 | { |
| 519 | unsigned int input; |
| 520 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
| 521 | |
| 522 | if (sscanf(buf, "%u", &input) != 1) |
| 523 | return -EINVAL; |
| 524 | |
| 525 | rmi4_data->flip_y = input > 0 ? 1 : 0; |
| 526 | |
| 527 | return count; |
| 528 | } |
| 529 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 530 | /** |
| 531 | * synaptics_rmi4_set_page() |
| 532 | * |
| 533 | * Called by synaptics_rmi4_i2c_read() and synaptics_rmi4_i2c_write(). |
| 534 | * |
| 535 | * This function writes to the page select register to switch to the |
| 536 | * assigned page. |
| 537 | */ |
| 538 | static int synaptics_rmi4_set_page(struct synaptics_rmi4_data *rmi4_data, |
| 539 | unsigned int address) |
| 540 | { |
| 541 | int retval = 0; |
| 542 | unsigned char retry; |
| 543 | unsigned char buf[PAGE_SELECT_LEN]; |
| 544 | unsigned char page; |
| 545 | struct i2c_client *i2c = rmi4_data->i2c_client; |
| 546 | |
| 547 | page = ((address >> 8) & MASK_8BIT); |
| 548 | if (page != rmi4_data->current_page) { |
| 549 | buf[0] = MASK_8BIT; |
| 550 | buf[1] = page; |
| 551 | for (retry = 0; retry < SYN_I2C_RETRY_TIMES; retry++) { |
| 552 | retval = i2c_master_send(i2c, buf, PAGE_SELECT_LEN); |
| 553 | if (retval != PAGE_SELECT_LEN) { |
| 554 | dev_err(&i2c->dev, |
| 555 | "%s: I2C retry %d\n", |
| 556 | __func__, retry + 1); |
| 557 | msleep(20); |
| 558 | } else { |
| 559 | rmi4_data->current_page = page; |
| 560 | break; |
| 561 | } |
| 562 | } |
| 563 | } else |
| 564 | return PAGE_SELECT_LEN; |
| 565 | return (retval == PAGE_SELECT_LEN) ? retval : -EIO; |
| 566 | } |
| 567 | |
| 568 | /** |
| 569 | * synaptics_rmi4_i2c_read() |
| 570 | * |
| 571 | * Called by various functions in this driver, and also exported to |
| 572 | * other expansion Function modules such as rmi_dev. |
| 573 | * |
| 574 | * This function reads data of an arbitrary length from the sensor, |
| 575 | * starting from an assigned register address of the sensor, via I2C |
| 576 | * with a retry mechanism. |
| 577 | */ |
| 578 | static int synaptics_rmi4_i2c_read(struct synaptics_rmi4_data *rmi4_data, |
| 579 | unsigned short addr, unsigned char *data, unsigned short length) |
| 580 | { |
| 581 | int retval; |
| 582 | unsigned char retry; |
| 583 | unsigned char buf; |
| 584 | struct i2c_msg msg[] = { |
| 585 | { |
| 586 | .addr = rmi4_data->i2c_client->addr, |
| 587 | .flags = 0, |
| 588 | .len = 1, |
| 589 | .buf = &buf, |
| 590 | }, |
| 591 | { |
| 592 | .addr = rmi4_data->i2c_client->addr, |
| 593 | .flags = I2C_M_RD, |
| 594 | .len = length, |
| 595 | .buf = data, |
| 596 | }, |
| 597 | }; |
| 598 | |
| 599 | buf = addr & MASK_8BIT; |
| 600 | |
| 601 | mutex_lock(&(rmi4_data->rmi4_io_ctrl_mutex)); |
| 602 | |
| 603 | retval = synaptics_rmi4_set_page(rmi4_data, addr); |
| 604 | if (retval != PAGE_SELECT_LEN) |
| 605 | goto exit; |
| 606 | |
| 607 | for (retry = 0; retry < SYN_I2C_RETRY_TIMES; retry++) { |
| 608 | if (i2c_transfer(rmi4_data->i2c_client->adapter, msg, 2) == 2) { |
| 609 | retval = length; |
| 610 | break; |
| 611 | } |
| 612 | dev_err(&rmi4_data->i2c_client->dev, |
| 613 | "%s: I2C retry %d\n", |
| 614 | __func__, retry + 1); |
| 615 | msleep(20); |
| 616 | } |
| 617 | |
| 618 | if (retry == SYN_I2C_RETRY_TIMES) { |
| 619 | dev_err(&rmi4_data->i2c_client->dev, |
| 620 | "%s: I2C read over retry limit\n", |
| 621 | __func__); |
| 622 | retval = -EIO; |
| 623 | } |
| 624 | |
| 625 | exit: |
| 626 | mutex_unlock(&(rmi4_data->rmi4_io_ctrl_mutex)); |
| 627 | |
| 628 | return retval; |
| 629 | } |
| 630 | |
| 631 | /** |
| 632 | * synaptics_rmi4_i2c_write() |
| 633 | * |
| 634 | * Called by various functions in this driver, and also exported to |
| 635 | * other expansion Function modules such as rmi_dev. |
| 636 | * |
| 637 | * This function writes data of an arbitrary length to the sensor, |
| 638 | * starting from an assigned register address of the sensor, via I2C with |
| 639 | * a retry mechanism. |
| 640 | */ |
| 641 | static int synaptics_rmi4_i2c_write(struct synaptics_rmi4_data *rmi4_data, |
| 642 | unsigned short addr, unsigned char *data, unsigned short length) |
| 643 | { |
| 644 | int retval; |
| 645 | unsigned char retry; |
| 646 | unsigned char buf[length + 1]; |
| 647 | struct i2c_msg msg[] = { |
| 648 | { |
| 649 | .addr = rmi4_data->i2c_client->addr, |
| 650 | .flags = 0, |
| 651 | .len = length + 1, |
| 652 | .buf = buf, |
| 653 | } |
| 654 | }; |
| 655 | |
| 656 | mutex_lock(&(rmi4_data->rmi4_io_ctrl_mutex)); |
| 657 | |
| 658 | retval = synaptics_rmi4_set_page(rmi4_data, addr); |
| 659 | if (retval != PAGE_SELECT_LEN) |
| 660 | goto exit; |
| 661 | |
| 662 | buf[0] = addr & MASK_8BIT; |
| 663 | memcpy(&buf[1], &data[0], length); |
| 664 | |
| 665 | for (retry = 0; retry < SYN_I2C_RETRY_TIMES; retry++) { |
| 666 | if (i2c_transfer(rmi4_data->i2c_client->adapter, msg, 1) == 1) { |
| 667 | retval = length; |
| 668 | break; |
| 669 | } |
| 670 | dev_err(&rmi4_data->i2c_client->dev, |
| 671 | "%s: I2C retry %d\n", |
| 672 | __func__, retry + 1); |
| 673 | msleep(20); |
| 674 | } |
| 675 | |
| 676 | if (retry == SYN_I2C_RETRY_TIMES) { |
| 677 | dev_err(&rmi4_data->i2c_client->dev, |
| 678 | "%s: I2C write over retry limit\n", |
| 679 | __func__); |
| 680 | retval = -EIO; |
| 681 | } |
| 682 | |
| 683 | exit: |
| 684 | mutex_unlock(&(rmi4_data->rmi4_io_ctrl_mutex)); |
| 685 | |
| 686 | return retval; |
| 687 | } |
| 688 | |
| 689 | /** |
| 690 | * synaptics_rmi4_f11_abs_report() |
| 691 | * |
| 692 | * Called by synaptics_rmi4_report_touch() when valid Function $11 |
| 693 | * finger data has been detected. |
| 694 | * |
| 695 | * This function reads the Function $11 data registers, determines the |
| 696 | * status of each finger supported by the Function, processes any |
| 697 | * necessary coordinate manipulation, reports the finger data to |
| 698 | * the input subsystem, and returns the number of fingers detected. |
| 699 | */ |
| 700 | static int synaptics_rmi4_f11_abs_report(struct synaptics_rmi4_data *rmi4_data, |
| 701 | struct synaptics_rmi4_fn *fhandler) |
| 702 | { |
| 703 | int retval; |
| 704 | unsigned char touch_count = 0; /* number of touch points */ |
| 705 | unsigned char reg_index; |
| 706 | unsigned char finger; |
| 707 | unsigned char fingers_supported; |
| 708 | unsigned char num_of_finger_status_regs; |
| 709 | unsigned char finger_shift; |
| 710 | unsigned char finger_status; |
| 711 | unsigned char data_reg_blk_size; |
| 712 | unsigned char finger_status_reg[3]; |
| 713 | unsigned char data[F11_STD_DATA_LEN]; |
| 714 | unsigned short data_addr; |
| 715 | unsigned short data_offset; |
| 716 | int x; |
| 717 | int y; |
| 718 | int wx; |
| 719 | int wy; |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 720 | int z; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 721 | |
| 722 | /* |
| 723 | * The number of finger status registers is determined by the |
| 724 | * maximum number of fingers supported - 2 bits per finger. So |
| 725 | * the number of finger status registers to read is: |
| 726 | * register_count = ceil(max_num_of_fingers / 4) |
| 727 | */ |
| 728 | fingers_supported = fhandler->num_of_data_points; |
| 729 | num_of_finger_status_regs = (fingers_supported + 3) / 4; |
| 730 | data_addr = fhandler->full_addr.data_base; |
| 731 | data_reg_blk_size = fhandler->size_of_data_register_block; |
| 732 | |
| 733 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 734 | data_addr, |
| 735 | finger_status_reg, |
| 736 | num_of_finger_status_regs); |
| 737 | if (retval < 0) |
| 738 | return 0; |
| 739 | |
| 740 | for (finger = 0; finger < fingers_supported; finger++) { |
| 741 | reg_index = finger / 4; |
| 742 | finger_shift = (finger % 4) * 2; |
| 743 | finger_status = (finger_status_reg[reg_index] >> finger_shift) |
| 744 | & MASK_2BIT; |
| 745 | |
| 746 | /* |
| 747 | * Each 2-bit finger status field represents the following: |
| 748 | * 00 = finger not present |
| 749 | * 01 = finger present and data accurate |
| 750 | * 10 = finger present but data may be inaccurate |
| 751 | * 11 = reserved |
| 752 | */ |
| 753 | #ifdef TYPE_B_PROTOCOL |
| 754 | input_mt_slot(rmi4_data->input_dev, finger); |
| 755 | input_mt_report_slot_state(rmi4_data->input_dev, |
| 756 | MT_TOOL_FINGER, finger_status != 0); |
| 757 | #endif |
| 758 | |
| 759 | if (finger_status) { |
| 760 | data_offset = data_addr + |
| 761 | num_of_finger_status_regs + |
| 762 | (finger * data_reg_blk_size); |
| 763 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 764 | data_offset, |
| 765 | data, |
| 766 | data_reg_blk_size); |
| 767 | if (retval < 0) |
| 768 | return 0; |
| 769 | |
| 770 | x = (data[0] << 4) | (data[2] & MASK_4BIT); |
| 771 | y = (data[1] << 4) | ((data[2] >> 4) & MASK_4BIT); |
| 772 | wx = (data[3] & MASK_4BIT); |
| 773 | wy = (data[3] >> 4) & MASK_4BIT; |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 774 | z = data[4]; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 775 | |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 776 | if (rmi4_data->flip_x) |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 777 | x = rmi4_data->sensor_max_x - x; |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 778 | if (rmi4_data->flip_y) |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 779 | y = rmi4_data->sensor_max_y - y; |
| 780 | |
| 781 | dev_dbg(&rmi4_data->i2c_client->dev, |
| 782 | "%s: Finger %d:\n" |
| 783 | "status = 0x%02x\n" |
| 784 | "x = %d\n" |
| 785 | "y = %d\n" |
| 786 | "wx = %d\n" |
| 787 | "wy = %d\n", |
| 788 | __func__, finger, |
| 789 | finger_status, |
| 790 | x, y, wx, wy); |
| 791 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 792 | input_report_abs(rmi4_data->input_dev, |
| 793 | ABS_MT_POSITION_X, x); |
| 794 | input_report_abs(rmi4_data->input_dev, |
| 795 | ABS_MT_POSITION_Y, y); |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 796 | input_report_abs(rmi4_data->input_dev, |
| 797 | ABS_MT_PRESSURE, z); |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 798 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 799 | #ifdef REPORT_2D_W |
| 800 | input_report_abs(rmi4_data->input_dev, |
| 801 | ABS_MT_TOUCH_MAJOR, max(wx, wy)); |
| 802 | input_report_abs(rmi4_data->input_dev, |
| 803 | ABS_MT_TOUCH_MINOR, min(wx, wy)); |
| 804 | #endif |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 805 | #ifndef TYPE_B_PROTOCOL |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 806 | input_mt_sync(rmi4_data->input_dev); |
| 807 | #endif |
| 808 | touch_count++; |
| 809 | } |
| 810 | } |
| 811 | |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 812 | input_report_key(rmi4_data->input_dev, BTN_TOUCH, touch_count > 0); |
| 813 | input_report_key(rmi4_data->input_dev, |
| 814 | BTN_TOOL_FINGER, touch_count > 0); |
| 815 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 816 | #ifndef TYPE_B_PROTOCOL |
| 817 | if (!touch_count) |
| 818 | input_mt_sync(rmi4_data->input_dev); |
| 819 | #else |
| 820 | /* sync after groups of events */ |
| 821 | #ifdef KERNEL_ABOVE_3_7 |
| 822 | input_mt_sync_frame(rmi4_data->input_dev); |
| 823 | #endif |
| 824 | #endif |
| 825 | |
| 826 | input_sync(rmi4_data->input_dev); |
| 827 | |
| 828 | return touch_count; |
| 829 | } |
| 830 | |
| 831 | static void synaptics_rmi4_f1a_report(struct synaptics_rmi4_data *rmi4_data, |
| 832 | struct synaptics_rmi4_fn *fhandler) |
| 833 | { |
| 834 | int retval; |
| 835 | unsigned char button; |
| 836 | unsigned char index; |
| 837 | unsigned char shift; |
| 838 | unsigned char status; |
| 839 | unsigned char *data; |
| 840 | unsigned short data_addr = fhandler->full_addr.data_base; |
| 841 | struct synaptics_rmi4_f1a_handle *f1a = fhandler->data; |
| 842 | static unsigned char do_once = 1; |
| 843 | static bool current_status[MAX_NUMBER_OF_BUTTONS]; |
| 844 | #ifdef NO_0D_WHILE_2D |
| 845 | static bool before_2d_status[MAX_NUMBER_OF_BUTTONS]; |
| 846 | static bool while_2d_status[MAX_NUMBER_OF_BUTTONS]; |
| 847 | #endif |
| 848 | |
| 849 | if (do_once) { |
| 850 | memset(current_status, 0, sizeof(current_status)); |
| 851 | #ifdef NO_0D_WHILE_2D |
| 852 | memset(before_2d_status, 0, sizeof(before_2d_status)); |
| 853 | memset(while_2d_status, 0, sizeof(while_2d_status)); |
| 854 | #endif |
| 855 | do_once = 0; |
| 856 | } |
| 857 | |
| 858 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 859 | data_addr, |
| 860 | f1a->button_data_buffer, |
| 861 | f1a->button_bitmask_size); |
| 862 | if (retval < 0) { |
| 863 | dev_err(&rmi4_data->i2c_client->dev, |
| 864 | "%s: Failed to read button data registers\n", |
| 865 | __func__); |
| 866 | return; |
| 867 | } |
| 868 | |
| 869 | data = f1a->button_data_buffer; |
| 870 | |
| 871 | for (button = 0; button < f1a->valid_button_count; button++) { |
| 872 | index = button / 8; |
| 873 | shift = button % 8; |
| 874 | status = ((data[index] >> shift) & MASK_1BIT); |
| 875 | |
| 876 | if (current_status[button] == status) |
| 877 | continue; |
| 878 | else |
| 879 | current_status[button] = status; |
| 880 | |
| 881 | dev_dbg(&rmi4_data->i2c_client->dev, |
| 882 | "%s: Button %d (code %d) ->%d\n", |
| 883 | __func__, button, |
| 884 | f1a->button_map[button], |
| 885 | status); |
| 886 | #ifdef NO_0D_WHILE_2D |
| 887 | if (rmi4_data->fingers_on_2d == false) { |
| 888 | if (status == 1) { |
| 889 | before_2d_status[button] = 1; |
| 890 | } else { |
| 891 | if (while_2d_status[button] == 1) { |
| 892 | while_2d_status[button] = 0; |
| 893 | continue; |
| 894 | } else { |
| 895 | before_2d_status[button] = 0; |
| 896 | } |
| 897 | } |
| 898 | input_report_key(rmi4_data->input_dev, |
| 899 | f1a->button_map[button], |
| 900 | status); |
| 901 | } else { |
| 902 | if (before_2d_status[button] == 1) { |
| 903 | before_2d_status[button] = 0; |
| 904 | input_report_key(rmi4_data->input_dev, |
| 905 | f1a->button_map[button], |
| 906 | status); |
| 907 | } else { |
| 908 | if (status == 1) |
| 909 | while_2d_status[button] = 1; |
| 910 | else |
| 911 | while_2d_status[button] = 0; |
| 912 | } |
| 913 | } |
| 914 | #else |
| 915 | input_report_key(rmi4_data->input_dev, |
| 916 | f1a->button_map[button], |
| 917 | status); |
| 918 | #endif |
| 919 | } |
| 920 | |
| 921 | input_sync(rmi4_data->input_dev); |
| 922 | |
| 923 | return; |
| 924 | } |
| 925 | |
| 926 | /** |
| 927 | * synaptics_rmi4_report_touch() |
| 928 | * |
| 929 | * Called by synaptics_rmi4_sensor_report(). |
| 930 | * |
| 931 | * This function calls the appropriate finger data reporting function |
| 932 | * based on the function handler it receives and returns the number of |
| 933 | * fingers detected. |
| 934 | */ |
| 935 | static void synaptics_rmi4_report_touch(struct synaptics_rmi4_data *rmi4_data, |
| 936 | struct synaptics_rmi4_fn *fhandler, |
| 937 | unsigned char *touch_count) |
| 938 | { |
| 939 | unsigned char touch_count_2d; |
| 940 | |
| 941 | dev_dbg(&rmi4_data->i2c_client->dev, |
| 942 | "%s: Function %02x reporting\n", |
| 943 | __func__, fhandler->fn_number); |
| 944 | |
| 945 | switch (fhandler->fn_number) { |
| 946 | case SYNAPTICS_RMI4_F11: |
| 947 | touch_count_2d = synaptics_rmi4_f11_abs_report(rmi4_data, |
| 948 | fhandler); |
| 949 | |
| 950 | *touch_count += touch_count_2d; |
| 951 | |
| 952 | if (touch_count_2d) |
| 953 | rmi4_data->fingers_on_2d = true; |
| 954 | else |
| 955 | rmi4_data->fingers_on_2d = false; |
| 956 | break; |
| 957 | |
| 958 | case SYNAPTICS_RMI4_F1A: |
| 959 | synaptics_rmi4_f1a_report(rmi4_data, fhandler); |
| 960 | break; |
| 961 | |
| 962 | default: |
| 963 | break; |
| 964 | } |
| 965 | |
| 966 | return; |
| 967 | } |
| 968 | |
| 969 | /** |
| 970 | * synaptics_rmi4_sensor_report() |
| 971 | * |
| 972 | * Called by synaptics_rmi4_irq(). |
| 973 | * |
| 974 | * This function determines the interrupt source(s) from the sensor |
| 975 | * and calls synaptics_rmi4_report_touch() with the appropriate |
| 976 | * function handler for each function with valid data inputs. |
| 977 | */ |
| 978 | static int synaptics_rmi4_sensor_report(struct synaptics_rmi4_data *rmi4_data) |
| 979 | { |
| 980 | int retval; |
| 981 | unsigned char touch_count = 0; |
| 982 | unsigned char intr[MAX_INTR_REGISTERS]; |
| 983 | struct synaptics_rmi4_fn *fhandler; |
| 984 | struct synaptics_rmi4_exp_fn *exp_fhandler; |
| 985 | struct synaptics_rmi4_device_info *rmi; |
| 986 | |
| 987 | rmi = &(rmi4_data->rmi4_mod_info); |
| 988 | |
| 989 | /* |
| 990 | * Get interrupt status information from F01 Data1 register to |
| 991 | * determine the source(s) that are flagging the interrupt. |
| 992 | */ |
| 993 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 994 | rmi4_data->f01_data_base_addr + 1, |
| 995 | intr, |
| 996 | rmi4_data->num_of_intr_regs); |
| 997 | if (retval < 0) |
| 998 | return retval; |
| 999 | |
| 1000 | /* |
| 1001 | * Traverse the function handler list and service the source(s) |
| 1002 | * of the interrupt accordingly. |
| 1003 | */ |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1004 | if (!list_empty(&rmi->support_fn_list)) { |
| 1005 | list_for_each_entry(fhandler, &rmi->support_fn_list, link) { |
| 1006 | if (fhandler->num_of_data_sources) { |
| 1007 | if (fhandler->intr_mask & |
| 1008 | intr[fhandler->intr_reg_num]) { |
| 1009 | synaptics_rmi4_report_touch(rmi4_data, |
| 1010 | fhandler, &touch_count); |
| 1011 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1012 | } |
| 1013 | } |
| 1014 | } |
| 1015 | |
| 1016 | mutex_lock(&exp_fn_list_mutex); |
| 1017 | if (!list_empty(&exp_fn_list)) { |
| 1018 | list_for_each_entry(exp_fhandler, &exp_fn_list, link) { |
| 1019 | if (exp_fhandler->inserted && |
| 1020 | (exp_fhandler->func_attn != NULL)) |
| 1021 | exp_fhandler->func_attn(rmi4_data, intr[0]); |
| 1022 | } |
| 1023 | } |
| 1024 | mutex_unlock(&exp_fn_list_mutex); |
| 1025 | |
| 1026 | return touch_count; |
| 1027 | } |
| 1028 | |
| 1029 | /** |
| 1030 | * synaptics_rmi4_irq() |
| 1031 | * |
| 1032 | * Called by the kernel when an interrupt occurs (when the sensor |
| 1033 | * asserts the attention irq). |
| 1034 | * |
| 1035 | * This function is the ISR thread and handles the acquisition |
| 1036 | * and the reporting of finger data when the presence of fingers |
| 1037 | * is detected. |
| 1038 | */ |
| 1039 | static irqreturn_t synaptics_rmi4_irq(int irq, void *data) |
| 1040 | { |
| 1041 | struct synaptics_rmi4_data *rmi4_data = data; |
| 1042 | |
| 1043 | synaptics_rmi4_sensor_report(rmi4_data); |
| 1044 | |
| 1045 | return IRQ_HANDLED; |
| 1046 | } |
| 1047 | |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 1048 | static int synaptics_rmi4_parse_dt(struct device *dev, |
| 1049 | struct synaptics_rmi4_platform_data *rmi4_pdata) |
| 1050 | { |
| 1051 | struct device_node *np = dev->of_node; |
| 1052 | struct property *prop; |
| 1053 | u32 temp_val, num_buttons; |
| 1054 | u32 button_map[MAX_NUMBER_OF_BUTTONS]; |
| 1055 | int rc, i; |
| 1056 | |
| 1057 | rmi4_pdata->i2c_pull_up = of_property_read_bool(np, |
| 1058 | "synaptics,i2c-pull-up"); |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 1059 | rmi4_pdata->power_down_enable = of_property_read_bool(np, |
| 1060 | "synaptics,power-down"); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 1061 | rmi4_pdata->x_flip = of_property_read_bool(np, "synaptics,x-flip"); |
| 1062 | rmi4_pdata->y_flip = of_property_read_bool(np, "synaptics,y-flip"); |
| 1063 | |
| 1064 | rc = of_property_read_u32(np, "synaptics,panel-x", &temp_val); |
| 1065 | if (rc && (rc != -EINVAL)) { |
| 1066 | dev_err(dev, "Unable to read panel X dimension\n"); |
| 1067 | return rc; |
| 1068 | } else { |
| 1069 | rmi4_pdata->panel_x = temp_val; |
| 1070 | } |
| 1071 | |
| 1072 | rc = of_property_read_u32(np, "synaptics,panel-y", &temp_val); |
| 1073 | if (rc && (rc != -EINVAL)) { |
| 1074 | dev_err(dev, "Unable to read panel Y dimension\n"); |
| 1075 | return rc; |
| 1076 | } else { |
| 1077 | rmi4_pdata->panel_y = temp_val; |
| 1078 | } |
| 1079 | |
Amy Maloche | cb83583 | 2013-03-26 18:06:05 -0700 | [diff] [blame] | 1080 | rc = of_property_read_string(np, "synaptics,fw-image-name", |
| 1081 | &rmi4_pdata->fw_image_name); |
| 1082 | if (rc && (rc != -EINVAL)) { |
| 1083 | dev_err(dev, "Unable to read fw image name\n"); |
| 1084 | return rc; |
| 1085 | } |
| 1086 | |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 1087 | /* reset, irq gpio info */ |
| 1088 | rmi4_pdata->reset_gpio = of_get_named_gpio_flags(np, |
| 1089 | "synaptics,reset-gpio", 0, &rmi4_pdata->reset_flags); |
| 1090 | rmi4_pdata->irq_gpio = of_get_named_gpio_flags(np, |
| 1091 | "synaptics,irq-gpio", 0, &rmi4_pdata->irq_flags); |
| 1092 | |
| 1093 | prop = of_find_property(np, "synaptics,button-map", NULL); |
| 1094 | if (prop) { |
| 1095 | num_buttons = prop->length / sizeof(temp_val); |
| 1096 | |
| 1097 | rmi4_pdata->capacitance_button_map = devm_kzalloc(dev, |
| 1098 | sizeof(*rmi4_pdata->capacitance_button_map), |
| 1099 | GFP_KERNEL); |
| 1100 | if (!rmi4_pdata->capacitance_button_map) |
| 1101 | return -ENOMEM; |
| 1102 | |
| 1103 | rmi4_pdata->capacitance_button_map->map = devm_kzalloc(dev, |
| 1104 | sizeof(*rmi4_pdata->capacitance_button_map->map) * |
| 1105 | MAX_NUMBER_OF_BUTTONS, GFP_KERNEL); |
| 1106 | if (!rmi4_pdata->capacitance_button_map->map) |
| 1107 | return -ENOMEM; |
| 1108 | |
| 1109 | if (num_buttons <= MAX_NUMBER_OF_BUTTONS) { |
| 1110 | rc = of_property_read_u32_array(np, |
| 1111 | "synaptics,button-map", button_map, |
| 1112 | num_buttons); |
| 1113 | if (rc) { |
| 1114 | dev_err(dev, "Unable to read key codes\n"); |
| 1115 | return rc; |
| 1116 | } |
| 1117 | for (i = 0; i < num_buttons; i++) |
| 1118 | rmi4_pdata->capacitance_button_map->map[i] = |
| 1119 | button_map[i]; |
| 1120 | rmi4_pdata->capacitance_button_map->nbuttons = |
| 1121 | num_buttons; |
| 1122 | } else { |
| 1123 | return -EINVAL; |
| 1124 | } |
| 1125 | } |
| 1126 | return 0; |
| 1127 | } |
| 1128 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1129 | /** |
| 1130 | * synaptics_rmi4_irq_enable() |
| 1131 | * |
| 1132 | * Called by synaptics_rmi4_probe() and the power management functions |
| 1133 | * in this driver and also exported to other expansion Function modules |
| 1134 | * such as rmi_dev. |
| 1135 | * |
| 1136 | * This function handles the enabling and disabling of the attention |
| 1137 | * irq including the setting up of the ISR thread. |
| 1138 | */ |
| 1139 | static int synaptics_rmi4_irq_enable(struct synaptics_rmi4_data *rmi4_data, |
| 1140 | bool enable) |
| 1141 | { |
| 1142 | int retval = 0; |
Amy Maloche | 5c7b5d5 | 2013-04-29 10:40:41 -0700 | [diff] [blame] | 1143 | unsigned char *intr_status; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1144 | |
| 1145 | if (enable) { |
| 1146 | if (rmi4_data->irq_enabled) |
| 1147 | return retval; |
| 1148 | |
Amy Maloche | 5c7b5d5 | 2013-04-29 10:40:41 -0700 | [diff] [blame] | 1149 | intr_status = kzalloc(rmi4_data->num_of_intr_regs, GFP_KERNEL); |
| 1150 | if (!intr_status) { |
| 1151 | dev_err(&rmi4_data->i2c_client->dev, |
| 1152 | "%s: Failed to alloc memory\n", |
| 1153 | __func__); |
| 1154 | return -ENOMEM; |
| 1155 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1156 | /* Clear interrupts first */ |
| 1157 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1158 | rmi4_data->f01_data_base_addr + 1, |
Amy Maloche | 5c7b5d5 | 2013-04-29 10:40:41 -0700 | [diff] [blame] | 1159 | intr_status, |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1160 | rmi4_data->num_of_intr_regs); |
Amy Maloche | 5c7b5d5 | 2013-04-29 10:40:41 -0700 | [diff] [blame] | 1161 | kfree(intr_status); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1162 | if (retval < 0) |
| 1163 | return retval; |
| 1164 | |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 1165 | enable_irq(rmi4_data->irq); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1166 | |
| 1167 | rmi4_data->irq_enabled = true; |
| 1168 | } else { |
| 1169 | if (rmi4_data->irq_enabled) { |
| 1170 | disable_irq(rmi4_data->irq); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1171 | rmi4_data->irq_enabled = false; |
| 1172 | } |
| 1173 | } |
| 1174 | |
| 1175 | return retval; |
| 1176 | } |
| 1177 | |
| 1178 | /** |
| 1179 | * synaptics_rmi4_f11_init() |
| 1180 | * |
| 1181 | * Called by synaptics_rmi4_query_device(). |
| 1182 | * |
| 1183 | * This funtion parses information from the Function 11 registers |
| 1184 | * and determines the number of fingers supported, x and y data ranges, |
| 1185 | * offset to the associated interrupt status register, interrupt bit |
| 1186 | * mask, and gathers finger data acquisition capabilities from the query |
| 1187 | * registers. |
| 1188 | */ |
| 1189 | static int synaptics_rmi4_f11_init(struct synaptics_rmi4_data *rmi4_data, |
| 1190 | struct synaptics_rmi4_fn *fhandler, |
| 1191 | struct synaptics_rmi4_fn_desc *fd, |
| 1192 | unsigned int intr_count) |
| 1193 | { |
| 1194 | int retval; |
| 1195 | unsigned char ii; |
| 1196 | unsigned char intr_offset; |
| 1197 | unsigned char abs_data_size; |
| 1198 | unsigned char abs_data_blk_size; |
| 1199 | unsigned char query[F11_STD_QUERY_LEN]; |
| 1200 | unsigned char control[F11_STD_CTRL_LEN]; |
| 1201 | |
| 1202 | fhandler->fn_number = fd->fn_number; |
| 1203 | fhandler->num_of_data_sources = fd->intr_src_count; |
| 1204 | |
| 1205 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1206 | fhandler->full_addr.query_base, |
| 1207 | query, |
| 1208 | sizeof(query)); |
| 1209 | if (retval < 0) |
| 1210 | return retval; |
| 1211 | |
| 1212 | /* Maximum number of fingers supported */ |
| 1213 | if ((query[1] & MASK_3BIT) <= 4) |
| 1214 | fhandler->num_of_data_points = (query[1] & MASK_3BIT) + 1; |
| 1215 | else if ((query[1] & MASK_3BIT) == 5) |
| 1216 | fhandler->num_of_data_points = 10; |
| 1217 | |
| 1218 | rmi4_data->num_of_fingers = fhandler->num_of_data_points; |
| 1219 | |
| 1220 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1221 | fhandler->full_addr.ctrl_base, |
| 1222 | control, |
| 1223 | sizeof(control)); |
| 1224 | if (retval < 0) |
| 1225 | return retval; |
| 1226 | |
| 1227 | /* Maximum x and y */ |
| 1228 | rmi4_data->sensor_max_x = ((control[6] & MASK_8BIT) << 0) | |
| 1229 | ((control[7] & MASK_4BIT) << 8); |
| 1230 | rmi4_data->sensor_max_y = ((control[8] & MASK_8BIT) << 0) | |
| 1231 | ((control[9] & MASK_4BIT) << 8); |
| 1232 | dev_dbg(&rmi4_data->i2c_client->dev, |
| 1233 | "%s: Function %02x max x = %d max y = %d\n", |
| 1234 | __func__, fhandler->fn_number, |
| 1235 | rmi4_data->sensor_max_x, |
| 1236 | rmi4_data->sensor_max_y); |
| 1237 | |
| 1238 | fhandler->intr_reg_num = (intr_count + 7) / 8; |
| 1239 | if (fhandler->intr_reg_num != 0) |
| 1240 | fhandler->intr_reg_num -= 1; |
| 1241 | |
| 1242 | /* Set an enable bit for each data source */ |
| 1243 | intr_offset = intr_count % 8; |
| 1244 | fhandler->intr_mask = 0; |
| 1245 | for (ii = intr_offset; |
| 1246 | ii < ((fd->intr_src_count & MASK_3BIT) + |
| 1247 | intr_offset); |
| 1248 | ii++) |
| 1249 | fhandler->intr_mask |= 1 << ii; |
| 1250 | |
| 1251 | abs_data_size = query[5] & MASK_2BIT; |
| 1252 | abs_data_blk_size = 3 + (2 * (abs_data_size == 0 ? 1 : 0)); |
| 1253 | fhandler->size_of_data_register_block = abs_data_blk_size; |
| 1254 | |
| 1255 | return retval; |
| 1256 | } |
| 1257 | |
| 1258 | static int synaptics_rmi4_f1a_alloc_mem(struct synaptics_rmi4_data *rmi4_data, |
| 1259 | struct synaptics_rmi4_fn *fhandler) |
| 1260 | { |
| 1261 | int retval; |
| 1262 | struct synaptics_rmi4_f1a_handle *f1a; |
| 1263 | |
| 1264 | f1a = kzalloc(sizeof(*f1a), GFP_KERNEL); |
| 1265 | if (!f1a) { |
| 1266 | dev_err(&rmi4_data->i2c_client->dev, |
| 1267 | "%s: Failed to alloc mem for function handle\n", |
| 1268 | __func__); |
| 1269 | return -ENOMEM; |
| 1270 | } |
| 1271 | |
| 1272 | fhandler->data = (void *)f1a; |
| 1273 | |
| 1274 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1275 | fhandler->full_addr.query_base, |
| 1276 | f1a->button_query.data, |
| 1277 | sizeof(f1a->button_query.data)); |
| 1278 | if (retval < 0) { |
| 1279 | dev_err(&rmi4_data->i2c_client->dev, |
| 1280 | "%s: Failed to read query registers\n", |
| 1281 | __func__); |
| 1282 | return retval; |
| 1283 | } |
| 1284 | |
| 1285 | f1a->button_count = f1a->button_query.max_button_count + 1; |
| 1286 | f1a->button_bitmask_size = (f1a->button_count + 7) / 8; |
| 1287 | |
| 1288 | f1a->button_data_buffer = kcalloc(f1a->button_bitmask_size, |
| 1289 | sizeof(*(f1a->button_data_buffer)), GFP_KERNEL); |
| 1290 | if (!f1a->button_data_buffer) { |
| 1291 | dev_err(&rmi4_data->i2c_client->dev, |
| 1292 | "%s: Failed to alloc mem for data buffer\n", |
| 1293 | __func__); |
| 1294 | return -ENOMEM; |
| 1295 | } |
| 1296 | |
| 1297 | f1a->button_map = kcalloc(f1a->button_count, |
| 1298 | sizeof(*(f1a->button_map)), GFP_KERNEL); |
| 1299 | if (!f1a->button_map) { |
| 1300 | dev_err(&rmi4_data->i2c_client->dev, |
| 1301 | "%s: Failed to alloc mem for button map\n", |
| 1302 | __func__); |
| 1303 | return -ENOMEM; |
| 1304 | } |
| 1305 | |
| 1306 | return 0; |
| 1307 | } |
| 1308 | |
| 1309 | static int synaptics_rmi4_capacitance_button_map( |
| 1310 | struct synaptics_rmi4_data *rmi4_data, |
| 1311 | struct synaptics_rmi4_fn *fhandler) |
| 1312 | { |
| 1313 | unsigned char ii; |
| 1314 | struct synaptics_rmi4_f1a_handle *f1a = fhandler->data; |
| 1315 | const struct synaptics_rmi4_platform_data *pdata = rmi4_data->board; |
| 1316 | |
| 1317 | if (!pdata->capacitance_button_map) { |
| 1318 | dev_err(&rmi4_data->i2c_client->dev, |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1319 | "%s: capacitance_button_map is" \ |
| 1320 | "NULL in board file\n", |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1321 | __func__); |
| 1322 | return -ENODEV; |
| 1323 | } else if (!pdata->capacitance_button_map->map) { |
| 1324 | dev_err(&rmi4_data->i2c_client->dev, |
| 1325 | "%s: Button map is missing in board file\n", |
| 1326 | __func__); |
| 1327 | return -ENODEV; |
| 1328 | } else { |
| 1329 | if (pdata->capacitance_button_map->nbuttons != |
| 1330 | f1a->button_count) { |
| 1331 | f1a->valid_button_count = min(f1a->button_count, |
| 1332 | pdata->capacitance_button_map->nbuttons); |
| 1333 | } else { |
| 1334 | f1a->valid_button_count = f1a->button_count; |
| 1335 | } |
| 1336 | |
| 1337 | for (ii = 0; ii < f1a->valid_button_count; ii++) |
| 1338 | f1a->button_map[ii] = |
| 1339 | pdata->capacitance_button_map->map[ii]; |
| 1340 | } |
| 1341 | |
| 1342 | return 0; |
| 1343 | } |
| 1344 | |
| 1345 | static void synaptics_rmi4_f1a_kfree(struct synaptics_rmi4_fn *fhandler) |
| 1346 | { |
| 1347 | struct synaptics_rmi4_f1a_handle *f1a = fhandler->data; |
| 1348 | |
| 1349 | if (f1a) { |
| 1350 | kfree(f1a->button_data_buffer); |
| 1351 | kfree(f1a->button_map); |
| 1352 | kfree(f1a); |
| 1353 | fhandler->data = NULL; |
| 1354 | } |
| 1355 | |
| 1356 | return; |
| 1357 | } |
| 1358 | |
| 1359 | static int synaptics_rmi4_f1a_init(struct synaptics_rmi4_data *rmi4_data, |
| 1360 | struct synaptics_rmi4_fn *fhandler, |
| 1361 | struct synaptics_rmi4_fn_desc *fd, |
| 1362 | unsigned int intr_count) |
| 1363 | { |
| 1364 | int retval; |
| 1365 | unsigned char ii; |
| 1366 | unsigned short intr_offset; |
| 1367 | |
| 1368 | fhandler->fn_number = fd->fn_number; |
| 1369 | fhandler->num_of_data_sources = fd->intr_src_count; |
| 1370 | |
| 1371 | fhandler->intr_reg_num = (intr_count + 7) / 8; |
| 1372 | if (fhandler->intr_reg_num != 0) |
| 1373 | fhandler->intr_reg_num -= 1; |
| 1374 | |
| 1375 | /* Set an enable bit for each data source */ |
| 1376 | intr_offset = intr_count % 8; |
| 1377 | fhandler->intr_mask = 0; |
| 1378 | for (ii = intr_offset; |
| 1379 | ii < ((fd->intr_src_count & MASK_3BIT) + |
| 1380 | intr_offset); |
| 1381 | ii++) |
| 1382 | fhandler->intr_mask |= 1 << ii; |
| 1383 | |
| 1384 | retval = synaptics_rmi4_f1a_alloc_mem(rmi4_data, fhandler); |
| 1385 | if (retval < 0) |
| 1386 | goto error_exit; |
| 1387 | |
| 1388 | retval = synaptics_rmi4_capacitance_button_map(rmi4_data, fhandler); |
| 1389 | if (retval < 0) |
| 1390 | goto error_exit; |
| 1391 | |
| 1392 | rmi4_data->button_0d_enabled = 1; |
| 1393 | |
| 1394 | return 0; |
| 1395 | |
| 1396 | error_exit: |
| 1397 | synaptics_rmi4_f1a_kfree(fhandler); |
| 1398 | |
| 1399 | return retval; |
| 1400 | } |
| 1401 | |
| 1402 | static int synaptics_rmi4_alloc_fh(struct synaptics_rmi4_fn **fhandler, |
| 1403 | struct synaptics_rmi4_fn_desc *rmi_fd, int page_number) |
| 1404 | { |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 1405 | *fhandler = kzalloc(sizeof(**fhandler), GFP_KERNEL); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1406 | if (!(*fhandler)) |
| 1407 | return -ENOMEM; |
| 1408 | |
| 1409 | (*fhandler)->full_addr.data_base = |
| 1410 | (rmi_fd->data_base_addr | |
| 1411 | (page_number << 8)); |
| 1412 | (*fhandler)->full_addr.ctrl_base = |
| 1413 | (rmi_fd->ctrl_base_addr | |
| 1414 | (page_number << 8)); |
| 1415 | (*fhandler)->full_addr.cmd_base = |
| 1416 | (rmi_fd->cmd_base_addr | |
| 1417 | (page_number << 8)); |
| 1418 | (*fhandler)->full_addr.query_base = |
| 1419 | (rmi_fd->query_base_addr | |
| 1420 | (page_number << 8)); |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 1421 | (*fhandler)->fn_number = rmi_fd->fn_number; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1422 | |
| 1423 | return 0; |
| 1424 | } |
| 1425 | |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1426 | |
| 1427 | /** |
| 1428 | * synaptics_rmi4_query_device_info() |
| 1429 | * |
| 1430 | * Called by synaptics_rmi4_query_device(). |
| 1431 | * |
| 1432 | */ |
| 1433 | static int synaptics_rmi4_query_device_info( |
| 1434 | struct synaptics_rmi4_data *rmi4_data) |
| 1435 | { |
| 1436 | int retval; |
| 1437 | unsigned char f01_query[F01_STD_QUERY_LEN]; |
| 1438 | struct synaptics_rmi4_device_info *rmi = &(rmi4_data->rmi4_mod_info); |
| 1439 | |
| 1440 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1441 | rmi4_data->f01_query_base_addr, |
| 1442 | f01_query, |
| 1443 | sizeof(f01_query)); |
| 1444 | if (retval < 0) |
| 1445 | return retval; |
| 1446 | |
| 1447 | /* RMI Version 4.0 currently supported */ |
| 1448 | rmi->version_major = 4; |
| 1449 | rmi->version_minor = 0; |
| 1450 | |
| 1451 | rmi->manufacturer_id = f01_query[0]; |
| 1452 | rmi->product_props = f01_query[1]; |
| 1453 | rmi->product_info[0] = f01_query[2] & MASK_7BIT; |
| 1454 | rmi->product_info[1] = f01_query[3] & MASK_7BIT; |
| 1455 | rmi->date_code[0] = f01_query[4] & MASK_5BIT; |
| 1456 | rmi->date_code[1] = f01_query[5] & MASK_4BIT; |
| 1457 | rmi->date_code[2] = f01_query[6] & MASK_5BIT; |
| 1458 | rmi->tester_id = ((f01_query[7] & MASK_7BIT) << 8) | |
| 1459 | (f01_query[8] & MASK_7BIT); |
| 1460 | rmi->serial_number = ((f01_query[9] & MASK_7BIT) << 8) | |
| 1461 | (f01_query[10] & MASK_7BIT); |
| 1462 | memcpy(rmi->product_id_string, &f01_query[11], 10); |
| 1463 | |
| 1464 | if (rmi->manufacturer_id != 1) { |
| 1465 | dev_err(&rmi4_data->i2c_client->dev, |
| 1466 | "%s: Non-Synaptics device found, manufacturer ID = %d\n", |
| 1467 | __func__, rmi->manufacturer_id); |
| 1468 | } |
| 1469 | |
| 1470 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1471 | rmi4_data->f01_query_base_addr + F01_BUID_ID_OFFSET, |
| 1472 | rmi->build_id, |
| 1473 | sizeof(rmi->build_id)); |
| 1474 | if (retval < 0) { |
| 1475 | dev_err(&rmi4_data->i2c_client->dev, |
| 1476 | "%s: Failed to read firmware build id (code %d)\n", |
| 1477 | __func__, retval); |
| 1478 | return retval; |
| 1479 | } |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 1480 | return 0; |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1481 | } |
| 1482 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1483 | /** |
| 1484 | * synaptics_rmi4_query_device() |
| 1485 | * |
| 1486 | * Called by synaptics_rmi4_probe(). |
| 1487 | * |
| 1488 | * This funtion scans the page description table, records the offsets |
| 1489 | * to the register types of Function $01, sets up the function handlers |
| 1490 | * for Function $11 and Function $12, determines the number of interrupt |
| 1491 | * sources from the sensor, adds valid Functions with data inputs to the |
| 1492 | * Function linked list, parses information from the query registers of |
| 1493 | * Function $01, and enables the interrupt sources from the valid Functions |
| 1494 | * with data inputs. |
| 1495 | */ |
| 1496 | static int synaptics_rmi4_query_device(struct synaptics_rmi4_data *rmi4_data) |
| 1497 | { |
| 1498 | int retval; |
| 1499 | unsigned char ii; |
| 1500 | unsigned char page_number; |
| 1501 | unsigned char intr_count = 0; |
| 1502 | unsigned char data_sources = 0; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1503 | unsigned short pdt_entry_addr; |
| 1504 | unsigned short intr_addr; |
| 1505 | struct synaptics_rmi4_f01_device_status status; |
| 1506 | struct synaptics_rmi4_fn_desc rmi_fd; |
| 1507 | struct synaptics_rmi4_fn *fhandler; |
| 1508 | struct synaptics_rmi4_device_info *rmi; |
| 1509 | |
| 1510 | rmi = &(rmi4_data->rmi4_mod_info); |
| 1511 | |
| 1512 | INIT_LIST_HEAD(&rmi->support_fn_list); |
| 1513 | |
| 1514 | /* Scan the page description tables of the pages to service */ |
| 1515 | for (page_number = 0; page_number < PAGES_TO_SERVICE; page_number++) { |
| 1516 | for (pdt_entry_addr = PDT_START; pdt_entry_addr > PDT_END; |
| 1517 | pdt_entry_addr -= PDT_ENTRY_SIZE) { |
| 1518 | pdt_entry_addr |= (page_number << 8); |
| 1519 | |
| 1520 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1521 | pdt_entry_addr, |
| 1522 | (unsigned char *)&rmi_fd, |
| 1523 | sizeof(rmi_fd)); |
| 1524 | if (retval < 0) |
| 1525 | return retval; |
| 1526 | |
| 1527 | fhandler = NULL; |
| 1528 | |
| 1529 | if (rmi_fd.fn_number == 0) { |
| 1530 | dev_dbg(&rmi4_data->i2c_client->dev, |
| 1531 | "%s: Reached end of PDT\n", |
| 1532 | __func__); |
| 1533 | break; |
| 1534 | } |
| 1535 | |
| 1536 | dev_dbg(&rmi4_data->i2c_client->dev, |
| 1537 | "%s: F%02x found (page %d)\n", |
| 1538 | __func__, rmi_fd.fn_number, |
| 1539 | page_number); |
| 1540 | |
| 1541 | switch (rmi_fd.fn_number) { |
| 1542 | case SYNAPTICS_RMI4_F01: |
| 1543 | rmi4_data->f01_query_base_addr = |
| 1544 | rmi_fd.query_base_addr; |
| 1545 | rmi4_data->f01_ctrl_base_addr = |
| 1546 | rmi_fd.ctrl_base_addr; |
| 1547 | rmi4_data->f01_data_base_addr = |
| 1548 | rmi_fd.data_base_addr; |
| 1549 | rmi4_data->f01_cmd_base_addr = |
| 1550 | rmi_fd.cmd_base_addr; |
| 1551 | |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1552 | retval = |
| 1553 | synaptics_rmi4_query_device_info(rmi4_data); |
| 1554 | if (retval < 0) |
| 1555 | return retval; |
| 1556 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1557 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1558 | rmi4_data->f01_data_base_addr, |
| 1559 | status.data, |
| 1560 | sizeof(status.data)); |
| 1561 | if (retval < 0) |
| 1562 | return retval; |
| 1563 | |
Alexandra Chin | 3a74752 | 2013-04-15 12:13:38 -0700 | [diff] [blame] | 1564 | while (status.status_code == STATUS_CRC_IN_PROGRESS) { |
| 1565 | msleep(1); |
| 1566 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1567 | rmi4_data->f01_data_base_addr, |
| 1568 | status.data, |
| 1569 | sizeof(status.data)); |
| 1570 | if (retval < 0) |
| 1571 | return retval; |
| 1572 | } |
| 1573 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1574 | if (status.flash_prog == 1) { |
| 1575 | pr_notice("%s: In flash prog mode, status = 0x%02x\n", |
| 1576 | __func__, |
| 1577 | status.status_code); |
| 1578 | goto flash_prog_mode; |
| 1579 | } |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1580 | break; |
| 1581 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1582 | case SYNAPTICS_RMI4_F11: |
| 1583 | if (rmi_fd.intr_src_count == 0) |
| 1584 | break; |
| 1585 | |
| 1586 | retval = synaptics_rmi4_alloc_fh(&fhandler, |
| 1587 | &rmi_fd, page_number); |
| 1588 | if (retval < 0) { |
| 1589 | dev_err(&rmi4_data->i2c_client->dev, |
| 1590 | "%s: Failed to alloc for F%d\n", |
| 1591 | __func__, |
| 1592 | rmi_fd.fn_number); |
| 1593 | return retval; |
| 1594 | } |
| 1595 | |
| 1596 | retval = synaptics_rmi4_f11_init(rmi4_data, |
| 1597 | fhandler, &rmi_fd, intr_count); |
| 1598 | if (retval < 0) |
| 1599 | return retval; |
| 1600 | break; |
| 1601 | |
| 1602 | case SYNAPTICS_RMI4_F1A: |
| 1603 | if (rmi_fd.intr_src_count == 0) |
| 1604 | break; |
| 1605 | |
| 1606 | retval = synaptics_rmi4_alloc_fh(&fhandler, |
| 1607 | &rmi_fd, page_number); |
| 1608 | if (retval < 0) { |
| 1609 | dev_err(&rmi4_data->i2c_client->dev, |
| 1610 | "%s: Failed to alloc for F%d\n", |
| 1611 | __func__, |
| 1612 | rmi_fd.fn_number); |
| 1613 | return retval; |
| 1614 | } |
| 1615 | |
| 1616 | retval = synaptics_rmi4_f1a_init(rmi4_data, |
| 1617 | fhandler, &rmi_fd, intr_count); |
| 1618 | if (retval < 0) |
| 1619 | return retval; |
| 1620 | break; |
| 1621 | } |
| 1622 | |
| 1623 | /* Accumulate the interrupt count */ |
| 1624 | intr_count += (rmi_fd.intr_src_count & MASK_3BIT); |
| 1625 | |
| 1626 | if (fhandler && rmi_fd.intr_src_count) { |
| 1627 | list_add_tail(&fhandler->link, |
| 1628 | &rmi->support_fn_list); |
| 1629 | } |
| 1630 | } |
| 1631 | } |
| 1632 | |
| 1633 | flash_prog_mode: |
| 1634 | rmi4_data->num_of_intr_regs = (intr_count + 7) / 8; |
| 1635 | dev_dbg(&rmi4_data->i2c_client->dev, |
| 1636 | "%s: Number of interrupt registers = %d\n", |
| 1637 | __func__, rmi4_data->num_of_intr_regs); |
| 1638 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1639 | memset(rmi4_data->intr_mask, 0x00, sizeof(rmi4_data->intr_mask)); |
| 1640 | |
| 1641 | /* |
| 1642 | * Map out the interrupt bit masks for the interrupt sources |
| 1643 | * from the registered function handlers. |
| 1644 | */ |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1645 | if (!list_empty(&rmi->support_fn_list)) { |
| 1646 | list_for_each_entry(fhandler, &rmi->support_fn_list, link) |
| 1647 | data_sources += fhandler->num_of_data_sources; |
| 1648 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1649 | if (data_sources) { |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1650 | if (!list_empty(&rmi->support_fn_list)) { |
| 1651 | list_for_each_entry(fhandler, |
| 1652 | &rmi->support_fn_list, link) { |
| 1653 | if (fhandler->num_of_data_sources) { |
| 1654 | rmi4_data->intr_mask[fhandler->intr_reg_num] |= |
| 1655 | fhandler->intr_mask; |
| 1656 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1657 | } |
| 1658 | } |
| 1659 | } |
| 1660 | |
| 1661 | /* Enable the interrupt sources */ |
| 1662 | for (ii = 0; ii < rmi4_data->num_of_intr_regs; ii++) { |
| 1663 | if (rmi4_data->intr_mask[ii] != 0x00) { |
| 1664 | dev_dbg(&rmi4_data->i2c_client->dev, |
| 1665 | "%s: Interrupt enable mask %d = 0x%02x\n", |
| 1666 | __func__, ii, rmi4_data->intr_mask[ii]); |
| 1667 | intr_addr = rmi4_data->f01_ctrl_base_addr + 1 + ii; |
| 1668 | retval = synaptics_rmi4_i2c_write(rmi4_data, |
| 1669 | intr_addr, |
| 1670 | &(rmi4_data->intr_mask[ii]), |
| 1671 | sizeof(rmi4_data->intr_mask[ii])); |
| 1672 | if (retval < 0) |
| 1673 | return retval; |
| 1674 | } |
| 1675 | } |
| 1676 | |
| 1677 | return 0; |
| 1678 | } |
| 1679 | |
Alexandra Chin | c556cf0 | 2013-03-19 17:46:05 -0700 | [diff] [blame] | 1680 | static int synaptics_rmi4_reset_command(struct synaptics_rmi4_data *rmi4_data) |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1681 | { |
| 1682 | int retval; |
Alexandra Chin | c556cf0 | 2013-03-19 17:46:05 -0700 | [diff] [blame] | 1683 | int page_number; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1684 | unsigned char command = 0x01; |
Alexandra Chin | c556cf0 | 2013-03-19 17:46:05 -0700 | [diff] [blame] | 1685 | unsigned short pdt_entry_addr; |
| 1686 | struct synaptics_rmi4_fn_desc rmi_fd; |
| 1687 | bool done = false; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1688 | |
Alexandra Chin | c556cf0 | 2013-03-19 17:46:05 -0700 | [diff] [blame] | 1689 | /* Scan the page description tables of the pages to service */ |
| 1690 | for (page_number = 0; page_number < PAGES_TO_SERVICE; page_number++) { |
| 1691 | for (pdt_entry_addr = PDT_START; pdt_entry_addr > PDT_END; |
| 1692 | pdt_entry_addr -= PDT_ENTRY_SIZE) { |
| 1693 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 1694 | pdt_entry_addr, |
| 1695 | (unsigned char *)&rmi_fd, |
| 1696 | sizeof(rmi_fd)); |
| 1697 | if (retval < 0) |
| 1698 | return retval; |
| 1699 | |
| 1700 | if (rmi_fd.fn_number == 0) |
| 1701 | break; |
| 1702 | |
| 1703 | switch (rmi_fd.fn_number) { |
| 1704 | case SYNAPTICS_RMI4_F01: |
| 1705 | rmi4_data->f01_cmd_base_addr = |
| 1706 | rmi_fd.cmd_base_addr; |
| 1707 | done = true; |
| 1708 | break; |
| 1709 | } |
| 1710 | } |
| 1711 | if (done) { |
| 1712 | dev_info(&rmi4_data->i2c_client->dev, |
| 1713 | "%s: Find F01 in page description table 0x%x\n", |
| 1714 | __func__, rmi4_data->f01_cmd_base_addr); |
| 1715 | break; |
| 1716 | } |
| 1717 | } |
| 1718 | |
| 1719 | if (!done) { |
| 1720 | dev_err(&rmi4_data->i2c_client->dev, |
| 1721 | "%s: Cannot find F01 in page description table\n", |
| 1722 | __func__); |
| 1723 | return -EINVAL; |
| 1724 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1725 | |
| 1726 | retval = synaptics_rmi4_i2c_write(rmi4_data, |
| 1727 | rmi4_data->f01_cmd_base_addr, |
| 1728 | &command, |
| 1729 | sizeof(command)); |
| 1730 | if (retval < 0) { |
| 1731 | dev_err(&rmi4_data->i2c_client->dev, |
| 1732 | "%s: Failed to issue reset command, error = %d\n", |
| 1733 | __func__, retval); |
| 1734 | return retval; |
| 1735 | } |
| 1736 | |
Alexandra Chin | 3a74752 | 2013-04-15 12:13:38 -0700 | [diff] [blame] | 1737 | msleep(RESET_DELAY); |
Alexandra Chin | c556cf0 | 2013-03-19 17:46:05 -0700 | [diff] [blame] | 1738 | return retval; |
| 1739 | }; |
| 1740 | |
| 1741 | static int synaptics_rmi4_reset_device(struct synaptics_rmi4_data *rmi4_data) |
| 1742 | { |
| 1743 | int retval; |
| 1744 | struct synaptics_rmi4_fn *fhandler; |
| 1745 | struct synaptics_rmi4_device_info *rmi; |
| 1746 | |
| 1747 | rmi = &(rmi4_data->rmi4_mod_info); |
| 1748 | |
| 1749 | retval = synaptics_rmi4_reset_command(rmi4_data); |
| 1750 | if (retval < 0) { |
| 1751 | dev_err(&rmi4_data->i2c_client->dev, |
| 1752 | "%s: Failed to send command reset\n", |
| 1753 | __func__); |
| 1754 | return retval; |
| 1755 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1756 | |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1757 | if (!list_empty(&rmi->support_fn_list)) { |
| 1758 | list_for_each_entry(fhandler, &rmi->support_fn_list, link) { |
| 1759 | if (fhandler->fn_number == SYNAPTICS_RMI4_F1A) |
| 1760 | synaptics_rmi4_f1a_kfree(fhandler); |
| 1761 | else |
| 1762 | kfree(fhandler->data); |
| 1763 | kfree(fhandler); |
| 1764 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1765 | } |
| 1766 | |
| 1767 | retval = synaptics_rmi4_query_device(rmi4_data); |
| 1768 | if (retval < 0) { |
| 1769 | dev_err(&rmi4_data->i2c_client->dev, |
| 1770 | "%s: Failed to query device\n", |
| 1771 | __func__); |
| 1772 | return retval; |
| 1773 | } |
| 1774 | |
| 1775 | return 0; |
| 1776 | } |
| 1777 | |
| 1778 | /** |
| 1779 | * synaptics_rmi4_detection_work() |
| 1780 | * |
| 1781 | * Called by the kernel at the scheduled time. |
| 1782 | * |
| 1783 | * This function is a self-rearming work thread that checks for the |
| 1784 | * insertion and removal of other expansion Function modules such as |
| 1785 | * rmi_dev and calls their initialization and removal callback functions |
| 1786 | * accordingly. |
| 1787 | */ |
| 1788 | static void synaptics_rmi4_detection_work(struct work_struct *work) |
| 1789 | { |
| 1790 | struct synaptics_rmi4_exp_fn *exp_fhandler, *next_list_entry; |
| 1791 | struct synaptics_rmi4_data *rmi4_data = |
| 1792 | container_of(work, struct synaptics_rmi4_data, |
| 1793 | det_work.work); |
| 1794 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1795 | mutex_lock(&exp_fn_list_mutex); |
| 1796 | if (!list_empty(&exp_fn_list)) { |
| 1797 | list_for_each_entry_safe(exp_fhandler, |
| 1798 | next_list_entry, |
| 1799 | &exp_fn_list, |
| 1800 | link) { |
| 1801 | if ((exp_fhandler->func_init != NULL) && |
| 1802 | (exp_fhandler->inserted == false)) { |
| 1803 | exp_fhandler->func_init(rmi4_data); |
| 1804 | exp_fhandler->inserted = true; |
| 1805 | } else if ((exp_fhandler->func_init == NULL) && |
| 1806 | (exp_fhandler->inserted == true)) { |
| 1807 | exp_fhandler->func_remove(rmi4_data); |
| 1808 | list_del(&exp_fhandler->link); |
| 1809 | kfree(exp_fhandler); |
| 1810 | } |
| 1811 | } |
| 1812 | } |
| 1813 | mutex_unlock(&exp_fn_list_mutex); |
| 1814 | |
| 1815 | return; |
| 1816 | } |
| 1817 | |
| 1818 | /** |
| 1819 | * synaptics_rmi4_new_function() |
| 1820 | * |
| 1821 | * Called by other expansion Function modules in their module init and |
| 1822 | * module exit functions. |
| 1823 | * |
| 1824 | * This function is used by other expansion Function modules such as |
| 1825 | * rmi_dev to register themselves with the driver by providing their |
| 1826 | * initialization and removal callback function pointers so that they |
| 1827 | * can be inserted or removed dynamically at module init and exit times, |
| 1828 | * respectively. |
| 1829 | */ |
| 1830 | void synaptics_rmi4_new_function(enum exp_fn fn_type, bool insert, |
| 1831 | int (*func_init)(struct synaptics_rmi4_data *rmi4_data), |
| 1832 | void (*func_remove)(struct synaptics_rmi4_data *rmi4_data), |
| 1833 | void (*func_attn)(struct synaptics_rmi4_data *rmi4_data, |
| 1834 | unsigned char intr_mask)) |
| 1835 | { |
| 1836 | struct synaptics_rmi4_exp_fn *exp_fhandler; |
| 1837 | |
| 1838 | if (!exp_fn_inited) { |
| 1839 | mutex_init(&exp_fn_list_mutex); |
| 1840 | INIT_LIST_HEAD(&exp_fn_list); |
| 1841 | exp_fn_inited = 1; |
| 1842 | } |
| 1843 | |
| 1844 | mutex_lock(&exp_fn_list_mutex); |
| 1845 | if (insert) { |
| 1846 | exp_fhandler = kzalloc(sizeof(*exp_fhandler), GFP_KERNEL); |
| 1847 | if (!exp_fhandler) { |
| 1848 | pr_err("%s: Failed to alloc mem for expansion function\n", |
| 1849 | __func__); |
| 1850 | goto exit; |
| 1851 | } |
| 1852 | exp_fhandler->fn_type = fn_type; |
| 1853 | exp_fhandler->func_init = func_init; |
| 1854 | exp_fhandler->func_attn = func_attn; |
| 1855 | exp_fhandler->func_remove = func_remove; |
| 1856 | exp_fhandler->inserted = false; |
| 1857 | list_add_tail(&exp_fhandler->link, &exp_fn_list); |
| 1858 | } else { |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 1859 | if (!list_empty(&exp_fn_list)) { |
| 1860 | list_for_each_entry(exp_fhandler, &exp_fn_list, link) { |
| 1861 | if (exp_fhandler->func_init == func_init) { |
| 1862 | exp_fhandler->inserted = false; |
| 1863 | exp_fhandler->func_init = NULL; |
| 1864 | exp_fhandler->func_attn = NULL; |
| 1865 | goto exit; |
| 1866 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 1867 | } |
| 1868 | } |
| 1869 | } |
| 1870 | |
| 1871 | exit: |
| 1872 | mutex_unlock(&exp_fn_list_mutex); |
| 1873 | |
| 1874 | return; |
| 1875 | } |
| 1876 | EXPORT_SYMBOL(synaptics_rmi4_new_function); |
| 1877 | |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1878 | |
| 1879 | static int reg_set_optimum_mode_check(struct regulator *reg, int load_uA) |
| 1880 | { |
| 1881 | return (regulator_count_voltages(reg) > 0) ? |
| 1882 | regulator_set_optimum_mode(reg, load_uA) : 0; |
| 1883 | } |
| 1884 | |
| 1885 | static int synaptics_rmi4_regulator_configure(struct synaptics_rmi4_data |
| 1886 | *rmi4_data, bool on) |
| 1887 | { |
| 1888 | int retval; |
| 1889 | |
| 1890 | if (on == false) |
| 1891 | goto hw_shutdown; |
| 1892 | |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 1893 | rmi4_data->vdd = regulator_get(&rmi4_data->i2c_client->dev, |
| 1894 | "vdd"); |
| 1895 | if (IS_ERR(rmi4_data->vdd)) { |
| 1896 | dev_err(&rmi4_data->i2c_client->dev, |
| 1897 | "%s: Failed to get vdd regulator\n", |
| 1898 | __func__); |
| 1899 | return PTR_ERR(rmi4_data->vdd); |
| 1900 | } |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1901 | |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 1902 | if (regulator_count_voltages(rmi4_data->vdd) > 0) { |
| 1903 | retval = regulator_set_voltage(rmi4_data->vdd, |
| 1904 | RMI4_VTG_MIN_UV, RMI4_VTG_MAX_UV); |
| 1905 | if (retval) { |
| 1906 | dev_err(&rmi4_data->i2c_client->dev, |
| 1907 | "regulator set_vtg failed retval =%d\n", |
| 1908 | retval); |
| 1909 | goto err_set_vtg_vdd; |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1910 | } |
| 1911 | } |
| 1912 | |
| 1913 | if (rmi4_data->board->i2c_pull_up) { |
| 1914 | rmi4_data->vcc_i2c = regulator_get(&rmi4_data->i2c_client->dev, |
| 1915 | "vcc_i2c"); |
| 1916 | if (IS_ERR(rmi4_data->vcc_i2c)) { |
| 1917 | dev_err(&rmi4_data->i2c_client->dev, |
| 1918 | "%s: Failed to get i2c regulator\n", |
| 1919 | __func__); |
| 1920 | retval = PTR_ERR(rmi4_data->vcc_i2c); |
| 1921 | goto err_get_vtg_i2c; |
| 1922 | } |
| 1923 | |
| 1924 | if (regulator_count_voltages(rmi4_data->vcc_i2c) > 0) { |
| 1925 | retval = regulator_set_voltage(rmi4_data->vcc_i2c, |
| 1926 | RMI4_I2C_VTG_MIN_UV, RMI4_I2C_VTG_MAX_UV); |
| 1927 | if (retval) { |
| 1928 | dev_err(&rmi4_data->i2c_client->dev, |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 1929 | "reg set i2c vtg failed retval =%d\n", |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1930 | retval); |
| 1931 | goto err_set_vtg_i2c; |
| 1932 | } |
| 1933 | } |
| 1934 | } |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 1935 | return 0; |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1936 | |
| 1937 | err_set_vtg_i2c: |
| 1938 | if (rmi4_data->board->i2c_pull_up) |
| 1939 | regulator_put(rmi4_data->vcc_i2c); |
| 1940 | err_get_vtg_i2c: |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 1941 | if (regulator_count_voltages(rmi4_data->vdd) > 0) |
| 1942 | regulator_set_voltage(rmi4_data->vdd, 0, |
| 1943 | RMI4_VTG_MAX_UV); |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1944 | err_set_vtg_vdd: |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 1945 | regulator_put(rmi4_data->vdd); |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1946 | return retval; |
| 1947 | |
| 1948 | hw_shutdown: |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 1949 | if (regulator_count_voltages(rmi4_data->vdd) > 0) |
| 1950 | regulator_set_voltage(rmi4_data->vdd, 0, |
| 1951 | RMI4_VTG_MAX_UV); |
| 1952 | regulator_put(rmi4_data->vdd); |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1953 | if (rmi4_data->board->i2c_pull_up) { |
| 1954 | if (regulator_count_voltages(rmi4_data->vcc_i2c) > 0) |
| 1955 | regulator_set_voltage(rmi4_data->vcc_i2c, 0, |
| 1956 | RMI4_I2C_VTG_MAX_UV); |
| 1957 | regulator_put(rmi4_data->vcc_i2c); |
| 1958 | } |
| 1959 | return 0; |
| 1960 | }; |
| 1961 | |
| 1962 | static int synaptics_rmi4_power_on(struct synaptics_rmi4_data *rmi4_data, |
| 1963 | bool on) { |
| 1964 | int retval; |
| 1965 | |
| 1966 | if (on == false) |
| 1967 | goto power_off; |
| 1968 | |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 1969 | retval = reg_set_optimum_mode_check(rmi4_data->vdd, |
| 1970 | RMI4_ACTIVE_LOAD_UA); |
| 1971 | if (retval < 0) { |
| 1972 | dev_err(&rmi4_data->i2c_client->dev, |
| 1973 | "Regulator vdd set_opt failed rc=%d\n", |
| 1974 | retval); |
| 1975 | return retval; |
| 1976 | } |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1977 | |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 1978 | retval = regulator_enable(rmi4_data->vdd); |
| 1979 | if (retval) { |
| 1980 | dev_err(&rmi4_data->i2c_client->dev, |
| 1981 | "Regulator vdd enable failed rc=%d\n", |
| 1982 | retval); |
| 1983 | goto error_reg_en_vdd; |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 1984 | } |
| 1985 | |
| 1986 | if (rmi4_data->board->i2c_pull_up) { |
| 1987 | retval = reg_set_optimum_mode_check(rmi4_data->vcc_i2c, |
| 1988 | RMI4_I2C_LOAD_UA); |
| 1989 | if (retval < 0) { |
| 1990 | dev_err(&rmi4_data->i2c_client->dev, |
| 1991 | "Regulator vcc_i2c set_opt failed rc=%d\n", |
| 1992 | retval); |
| 1993 | goto error_reg_opt_i2c; |
| 1994 | } |
| 1995 | |
| 1996 | retval = regulator_enable(rmi4_data->vcc_i2c); |
| 1997 | if (retval) { |
| 1998 | dev_err(&rmi4_data->i2c_client->dev, |
| 1999 | "Regulator vcc_i2c enable failed rc=%d\n", |
| 2000 | retval); |
| 2001 | goto error_reg_en_vcc_i2c; |
| 2002 | } |
| 2003 | } |
| 2004 | return 0; |
| 2005 | |
| 2006 | error_reg_en_vcc_i2c: |
| 2007 | if (rmi4_data->board->i2c_pull_up) |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 2008 | reg_set_optimum_mode_check(rmi4_data->vcc_i2c, 0); |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2009 | error_reg_opt_i2c: |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 2010 | regulator_disable(rmi4_data->vdd); |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2011 | error_reg_en_vdd: |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 2012 | reg_set_optimum_mode_check(rmi4_data->vdd, 0); |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2013 | return retval; |
| 2014 | |
| 2015 | power_off: |
Amy Maloche | 836c0b0 | 2013-06-04 15:49:02 -0700 | [diff] [blame] | 2016 | reg_set_optimum_mode_check(rmi4_data->vdd, 0); |
| 2017 | regulator_disable(rmi4_data->vdd); |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2018 | if (rmi4_data->board->i2c_pull_up) { |
| 2019 | reg_set_optimum_mode_check(rmi4_data->vcc_i2c, 0); |
| 2020 | regulator_disable(rmi4_data->vcc_i2c); |
| 2021 | } |
| 2022 | return 0; |
| 2023 | } |
| 2024 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2025 | /** |
| 2026 | * synaptics_rmi4_probe() |
| 2027 | * |
| 2028 | * Called by the kernel when an association with an I2C device of the |
| 2029 | * same name is made (after doing i2c_add_driver). |
| 2030 | * |
| 2031 | * This funtion allocates and initializes the resources for the driver |
| 2032 | * as an input driver, turns on the power to the sensor, queries the |
| 2033 | * sensor for its supported Functions and characteristics, registers |
| 2034 | * the driver to the input subsystem, sets up the interrupt, handles |
| 2035 | * the registration of the early_suspend and late_resume functions, |
| 2036 | * and creates a work queue for detection of other expansion Function |
| 2037 | * modules. |
| 2038 | */ |
| 2039 | static int __devinit synaptics_rmi4_probe(struct i2c_client *client, |
| 2040 | const struct i2c_device_id *dev_id) |
| 2041 | { |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2042 | int retval = 0; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2043 | unsigned char ii; |
| 2044 | unsigned char attr_count; |
| 2045 | struct synaptics_rmi4_f1a_handle *f1a; |
| 2046 | struct synaptics_rmi4_fn *fhandler; |
| 2047 | struct synaptics_rmi4_data *rmi4_data; |
| 2048 | struct synaptics_rmi4_device_info *rmi; |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2049 | struct synaptics_rmi4_platform_data *platform_data = |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2050 | client->dev.platform_data; |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2051 | struct dentry *temp; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2052 | |
| 2053 | if (!i2c_check_functionality(client->adapter, |
| 2054 | I2C_FUNC_SMBUS_BYTE_DATA)) { |
| 2055 | dev_err(&client->dev, |
| 2056 | "%s: SMBus byte data not supported\n", |
| 2057 | __func__); |
| 2058 | return -EIO; |
| 2059 | } |
| 2060 | |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2061 | if (client->dev.of_node) { |
| 2062 | platform_data = devm_kzalloc(&client->dev, |
| 2063 | sizeof(*platform_data), |
| 2064 | GFP_KERNEL); |
| 2065 | if (!platform_data) { |
| 2066 | dev_err(&client->dev, "Failed to allocate memory\n"); |
| 2067 | return -ENOMEM; |
| 2068 | } |
| 2069 | |
| 2070 | retval = synaptics_rmi4_parse_dt(&client->dev, platform_data); |
| 2071 | if (retval) |
| 2072 | return retval; |
| 2073 | } else { |
| 2074 | platform_data = client->dev.platform_data; |
| 2075 | } |
| 2076 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2077 | if (!platform_data) { |
| 2078 | dev_err(&client->dev, |
| 2079 | "%s: No platform data found\n", |
| 2080 | __func__); |
| 2081 | return -EINVAL; |
| 2082 | } |
| 2083 | |
| 2084 | rmi4_data = kzalloc(sizeof(*rmi4_data) * 2, GFP_KERNEL); |
| 2085 | if (!rmi4_data) { |
| 2086 | dev_err(&client->dev, |
| 2087 | "%s: Failed to alloc mem for rmi4_data\n", |
| 2088 | __func__); |
| 2089 | return -ENOMEM; |
| 2090 | } |
| 2091 | |
| 2092 | rmi = &(rmi4_data->rmi4_mod_info); |
| 2093 | |
| 2094 | rmi4_data->input_dev = input_allocate_device(); |
| 2095 | if (rmi4_data->input_dev == NULL) { |
| 2096 | dev_err(&client->dev, |
| 2097 | "%s: Failed to allocate input device\n", |
| 2098 | __func__); |
| 2099 | retval = -ENOMEM; |
| 2100 | goto err_input_device; |
| 2101 | } |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 2102 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2103 | rmi4_data->i2c_client = client; |
| 2104 | rmi4_data->current_page = MASK_8BIT; |
| 2105 | rmi4_data->board = platform_data; |
| 2106 | rmi4_data->touch_stopped = false; |
| 2107 | rmi4_data->sensor_sleep = false; |
| 2108 | rmi4_data->irq_enabled = false; |
Amy Maloche | b494b9a | 2013-05-13 18:01:53 -0700 | [diff] [blame] | 2109 | rmi4_data->fw_updating = false; |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2110 | rmi4_data->suspended = false; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2111 | |
| 2112 | rmi4_data->i2c_read = synaptics_rmi4_i2c_read; |
| 2113 | rmi4_data->i2c_write = synaptics_rmi4_i2c_write; |
| 2114 | rmi4_data->irq_enable = synaptics_rmi4_irq_enable; |
| 2115 | rmi4_data->reset_device = synaptics_rmi4_reset_device; |
| 2116 | |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 2117 | rmi4_data->flip_x = rmi4_data->board->x_flip; |
| 2118 | rmi4_data->flip_y = rmi4_data->board->y_flip; |
| 2119 | |
Amy Maloche | b494b9a | 2013-05-13 18:01:53 -0700 | [diff] [blame] | 2120 | if (rmi4_data->board->fw_image_name) |
| 2121 | snprintf(rmi4_data->fw_image_name, NAME_BUFFER_SIZE, "%s", |
| 2122 | rmi4_data->board->fw_image_name); |
Amy Maloche | cb83583 | 2013-03-26 18:06:05 -0700 | [diff] [blame] | 2123 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2124 | rmi4_data->input_dev->name = DRIVER_NAME; |
| 2125 | rmi4_data->input_dev->phys = INPUT_PHYS_NAME; |
| 2126 | rmi4_data->input_dev->id.bustype = BUS_I2C; |
Alexandra Chin | 5d2999d | 2013-02-22 15:09:29 -0800 | [diff] [blame] | 2127 | rmi4_data->input_dev->id.product = SYNAPTICS_DSX_DRIVER_PRODUCT; |
| 2128 | rmi4_data->input_dev->id.version = SYNAPTICS_DSX_DRIVER_VERSION; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2129 | rmi4_data->input_dev->dev.parent = &client->dev; |
| 2130 | input_set_drvdata(rmi4_data->input_dev, rmi4_data); |
| 2131 | |
| 2132 | set_bit(EV_SYN, rmi4_data->input_dev->evbit); |
| 2133 | set_bit(EV_KEY, rmi4_data->input_dev->evbit); |
| 2134 | set_bit(EV_ABS, rmi4_data->input_dev->evbit); |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 2135 | set_bit(BTN_TOUCH, rmi4_data->input_dev->keybit); |
| 2136 | set_bit(BTN_TOOL_FINGER, rmi4_data->input_dev->keybit); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2137 | |
| 2138 | #ifdef INPUT_PROP_DIRECT |
| 2139 | set_bit(INPUT_PROP_DIRECT, rmi4_data->input_dev->propbit); |
| 2140 | #endif |
| 2141 | |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2142 | retval = synaptics_rmi4_regulator_configure(rmi4_data, true); |
| 2143 | if (retval < 0) { |
| 2144 | dev_err(&client->dev, "Failed to configure regulators\n"); |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2145 | goto err_reg_configure; |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2146 | } |
| 2147 | |
| 2148 | retval = synaptics_rmi4_power_on(rmi4_data, true); |
| 2149 | if (retval < 0) { |
| 2150 | dev_err(&client->dev, "Failed to power on\n"); |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2151 | goto err_power_device; |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2152 | } |
| 2153 | |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2154 | if (gpio_is_valid(platform_data->irq_gpio)) { |
| 2155 | /* configure touchscreen irq gpio */ |
| 2156 | retval = gpio_request(platform_data->irq_gpio, "rmi4_irq_gpio"); |
| 2157 | if (retval) { |
| 2158 | dev_err(&client->dev, "unable to request gpio [%d]\n", |
| 2159 | platform_data->irq_gpio); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2160 | goto err_irq_gpio_req; |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2161 | } |
| 2162 | retval = gpio_direction_input(platform_data->irq_gpio); |
| 2163 | if (retval) { |
| 2164 | dev_err(&client->dev, |
| 2165 | "unable to set direction for gpio [%d]\n", |
| 2166 | platform_data->irq_gpio); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2167 | goto err_irq_gpio_dir; |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2168 | } |
| 2169 | } else { |
| 2170 | dev_err(&client->dev, "irq gpio not provided\n"); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2171 | goto err_irq_gpio_req; |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2172 | } |
| 2173 | |
| 2174 | if (gpio_is_valid(platform_data->reset_gpio)) { |
| 2175 | /* configure touchscreen reset out gpio */ |
| 2176 | retval = gpio_request(platform_data->reset_gpio, |
| 2177 | "rmi4_reset_gpio"); |
| 2178 | if (retval) { |
| 2179 | dev_err(&client->dev, "unable to request gpio [%d]\n", |
| 2180 | platform_data->reset_gpio); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2181 | goto err_irq_gpio_dir; |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2182 | } |
| 2183 | |
| 2184 | retval = gpio_direction_output(platform_data->reset_gpio, 1); |
| 2185 | if (retval) { |
| 2186 | dev_err(&client->dev, |
| 2187 | "unable to set direction for gpio [%d]\n", |
| 2188 | platform_data->reset_gpio); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2189 | goto err_reset_gpio_dir; |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2190 | } |
| 2191 | |
| 2192 | gpio_set_value(platform_data->reset_gpio, 0); |
| 2193 | usleep(RMI4_GPIO_SLEEP_LOW_US); |
| 2194 | gpio_set_value(platform_data->reset_gpio, 1); |
Alexandra Chin | 3a74752 | 2013-04-15 12:13:38 -0700 | [diff] [blame] | 2195 | msleep(RESET_DELAY); |
Alexandra Chin | c556cf0 | 2013-03-19 17:46:05 -0700 | [diff] [blame] | 2196 | } else |
| 2197 | synaptics_rmi4_reset_command(rmi4_data); |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2198 | |
| 2199 | |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2200 | init_waitqueue_head(&rmi4_data->wait); |
| 2201 | mutex_init(&(rmi4_data->rmi4_io_ctrl_mutex)); |
| 2202 | |
| 2203 | retval = synaptics_rmi4_query_device(rmi4_data); |
| 2204 | if (retval < 0) { |
| 2205 | dev_err(&client->dev, |
| 2206 | "%s: Failed to query device\n", |
| 2207 | __func__); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2208 | goto err_reset_gpio_dir; |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2209 | } |
| 2210 | |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2211 | input_set_abs_params(rmi4_data->input_dev, |
| 2212 | ABS_MT_POSITION_X, 0, |
| 2213 | rmi4_data->sensor_max_x, 0, 0); |
| 2214 | input_set_abs_params(rmi4_data->input_dev, |
| 2215 | ABS_MT_POSITION_Y, 0, |
| 2216 | rmi4_data->sensor_max_y, 0, 0); |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 2217 | input_set_abs_params(rmi4_data->input_dev, |
| 2218 | ABS_PRESSURE, 0, 255, 0, 0); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2219 | #ifdef REPORT_2D_W |
| 2220 | input_set_abs_params(rmi4_data->input_dev, |
| 2221 | ABS_MT_TOUCH_MAJOR, 0, |
| 2222 | MAX_ABS_MT_TOUCH_MAJOR, 0, 0); |
| 2223 | #endif |
| 2224 | |
| 2225 | #ifdef TYPE_B_PROTOCOL |
| 2226 | input_mt_init_slots(rmi4_data->input_dev, |
| 2227 | rmi4_data->num_of_fingers); |
| 2228 | #endif |
| 2229 | |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2230 | i2c_set_clientdata(client, rmi4_data); |
| 2231 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2232 | f1a = NULL; |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 2233 | if (!list_empty(&rmi->support_fn_list)) { |
| 2234 | list_for_each_entry(fhandler, &rmi->support_fn_list, link) { |
| 2235 | if (fhandler->fn_number == SYNAPTICS_RMI4_F1A) |
| 2236 | f1a = fhandler->data; |
| 2237 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2238 | } |
| 2239 | |
| 2240 | if (f1a) { |
| 2241 | for (ii = 0; ii < f1a->valid_button_count; ii++) { |
| 2242 | set_bit(f1a->button_map[ii], |
| 2243 | rmi4_data->input_dev->keybit); |
| 2244 | input_set_capability(rmi4_data->input_dev, |
| 2245 | EV_KEY, f1a->button_map[ii]); |
| 2246 | } |
| 2247 | } |
| 2248 | |
| 2249 | retval = input_register_device(rmi4_data->input_dev); |
| 2250 | if (retval) { |
| 2251 | dev_err(&client->dev, |
| 2252 | "%s: Failed to register input device\n", |
| 2253 | __func__); |
| 2254 | goto err_register_input; |
| 2255 | } |
| 2256 | |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 2257 | configure_sleep(rmi4_data); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2258 | |
| 2259 | if (!exp_fn_inited) { |
| 2260 | mutex_init(&exp_fn_list_mutex); |
| 2261 | INIT_LIST_HEAD(&exp_fn_list); |
| 2262 | exp_fn_inited = 1; |
| 2263 | } |
| 2264 | |
| 2265 | rmi4_data->det_workqueue = |
| 2266 | create_singlethread_workqueue("rmi_det_workqueue"); |
| 2267 | INIT_DELAYED_WORK(&rmi4_data->det_work, |
| 2268 | synaptics_rmi4_detection_work); |
| 2269 | queue_delayed_work(rmi4_data->det_workqueue, |
| 2270 | &rmi4_data->det_work, |
| 2271 | msecs_to_jiffies(EXP_FN_DET_INTERVAL)); |
| 2272 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2273 | rmi4_data->irq = gpio_to_irq(platform_data->irq_gpio); |
| 2274 | |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 2275 | retval = request_threaded_irq(rmi4_data->irq, NULL, |
| 2276 | synaptics_rmi4_irq, platform_data->irq_flags, |
| 2277 | DRIVER_NAME, rmi4_data); |
| 2278 | rmi4_data->irq_enabled = true; |
| 2279 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2280 | if (retval < 0) { |
| 2281 | dev_err(&client->dev, |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 2282 | "%s: Failed to create irq thread\n", |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2283 | __func__); |
| 2284 | goto err_enable_irq; |
| 2285 | } |
| 2286 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2287 | rmi4_data->dir = debugfs_create_dir(DEBUGFS_DIR_NAME, NULL); |
| 2288 | if (rmi4_data->dir == NULL || IS_ERR(rmi4_data->dir)) { |
| 2289 | dev_err(&client->dev, |
| 2290 | "%s: Failed to create debugfs directory, rc = %ld\n", |
| 2291 | __func__, PTR_ERR(rmi4_data->dir)); |
| 2292 | retval = PTR_ERR(rmi4_data->dir); |
| 2293 | goto err_create_debugfs_dir; |
| 2294 | } |
| 2295 | |
| 2296 | temp = debugfs_create_file("suspend", S_IRUSR | S_IWUSR, rmi4_data->dir, |
| 2297 | rmi4_data, &debug_suspend_fops); |
| 2298 | if (temp == NULL || IS_ERR(temp)) { |
| 2299 | dev_err(&client->dev, |
| 2300 | "%s: Failed to create suspend debugfs file, rc = %ld\n", |
| 2301 | __func__, PTR_ERR(temp)); |
| 2302 | retval = PTR_ERR(temp); |
| 2303 | goto err_create_debugfs_file; |
| 2304 | } |
| 2305 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2306 | for (attr_count = 0; attr_count < ARRAY_SIZE(attrs); attr_count++) { |
Amy Maloche | 4d54ac4 | 2013-06-11 12:09:44 -0700 | [diff] [blame] | 2307 | retval = sysfs_create_file(&client->dev.kobj, |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2308 | &attrs[attr_count].attr); |
| 2309 | if (retval < 0) { |
| 2310 | dev_err(&client->dev, |
| 2311 | "%s: Failed to create sysfs attributes\n", |
| 2312 | __func__); |
| 2313 | goto err_sysfs; |
| 2314 | } |
| 2315 | } |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 2316 | retval = synaptics_rmi4_irq_enable(rmi4_data, true); |
| 2317 | if (retval < 0) { |
| 2318 | dev_err(&client->dev, |
| 2319 | "%s: Failed to enable attention interrupt\n", |
| 2320 | __func__); |
| 2321 | goto err_sysfs; |
| 2322 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2323 | |
| 2324 | return retval; |
| 2325 | |
| 2326 | err_sysfs: |
| 2327 | for (attr_count--; attr_count >= 0; attr_count--) { |
| 2328 | sysfs_remove_file(&rmi4_data->input_dev->dev.kobj, |
| 2329 | &attrs[attr_count].attr); |
| 2330 | } |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2331 | err_create_debugfs_file: |
| 2332 | debugfs_remove_recursive(rmi4_data->dir); |
| 2333 | err_create_debugfs_dir: |
| 2334 | free_irq(rmi4_data->irq, rmi4_data); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2335 | err_enable_irq: |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2336 | cancel_delayed_work_sync(&rmi4_data->det_work); |
| 2337 | flush_workqueue(rmi4_data->det_workqueue); |
| 2338 | destroy_workqueue(rmi4_data->det_workqueue); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2339 | input_unregister_device(rmi4_data->input_dev); |
| 2340 | |
| 2341 | err_register_input: |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 2342 | if (!list_empty(&rmi->support_fn_list)) { |
| 2343 | list_for_each_entry(fhandler, &rmi->support_fn_list, link) { |
| 2344 | if (fhandler->fn_number == SYNAPTICS_RMI4_F1A) |
| 2345 | synaptics_rmi4_f1a_kfree(fhandler); |
| 2346 | else |
| 2347 | kfree(fhandler->data); |
| 2348 | kfree(fhandler); |
| 2349 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2350 | } |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2351 | err_reset_gpio_dir: |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2352 | if (gpio_is_valid(platform_data->reset_gpio)) |
| 2353 | gpio_free(platform_data->reset_gpio); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2354 | err_irq_gpio_dir: |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2355 | if (gpio_is_valid(platform_data->irq_gpio)) |
| 2356 | gpio_free(platform_data->irq_gpio); |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2357 | err_irq_gpio_req: |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2358 | synaptics_rmi4_power_on(rmi4_data, false); |
| 2359 | err_power_device: |
| 2360 | synaptics_rmi4_regulator_configure(rmi4_data, false); |
| 2361 | err_reg_configure: |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2362 | input_free_device(rmi4_data->input_dev); |
| 2363 | rmi4_data->input_dev = NULL; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2364 | err_input_device: |
| 2365 | kfree(rmi4_data); |
| 2366 | |
| 2367 | return retval; |
| 2368 | } |
| 2369 | |
| 2370 | /** |
| 2371 | * synaptics_rmi4_remove() |
| 2372 | * |
| 2373 | * Called by the kernel when the association with an I2C device of the |
| 2374 | * same name is broken (when the driver is unloaded). |
| 2375 | * |
| 2376 | * This funtion terminates the work queue, stops sensor data acquisition, |
| 2377 | * frees the interrupt, unregisters the driver from the input subsystem, |
| 2378 | * turns off the power to the sensor, and frees other allocated resources. |
| 2379 | */ |
| 2380 | static int __devexit synaptics_rmi4_remove(struct i2c_client *client) |
| 2381 | { |
| 2382 | unsigned char attr_count; |
| 2383 | struct synaptics_rmi4_fn *fhandler; |
| 2384 | struct synaptics_rmi4_data *rmi4_data = i2c_get_clientdata(client); |
| 2385 | struct synaptics_rmi4_device_info *rmi; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2386 | |
| 2387 | rmi = &(rmi4_data->rmi4_mod_info); |
| 2388 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2389 | debugfs_remove_recursive(rmi4_data->dir); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2390 | cancel_delayed_work_sync(&rmi4_data->det_work); |
| 2391 | flush_workqueue(rmi4_data->det_workqueue); |
| 2392 | destroy_workqueue(rmi4_data->det_workqueue); |
| 2393 | |
| 2394 | rmi4_data->touch_stopped = true; |
| 2395 | wake_up(&rmi4_data->wait); |
| 2396 | |
Alexandra Chin | fb798fa | 2013-03-26 17:15:38 -0700 | [diff] [blame] | 2397 | free_irq(rmi4_data->irq, rmi4_data); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2398 | |
| 2399 | for (attr_count = 0; attr_count < ARRAY_SIZE(attrs); attr_count++) { |
| 2400 | sysfs_remove_file(&rmi4_data->input_dev->dev.kobj, |
| 2401 | &attrs[attr_count].attr); |
| 2402 | } |
| 2403 | |
| 2404 | input_unregister_device(rmi4_data->input_dev); |
| 2405 | |
Alexandra Chin | d5591a6 | 2013-02-07 12:59:15 -0800 | [diff] [blame] | 2406 | if (!list_empty(&rmi->support_fn_list)) { |
| 2407 | list_for_each_entry(fhandler, &rmi->support_fn_list, link) { |
| 2408 | if (fhandler->fn_number == SYNAPTICS_RMI4_F1A) |
| 2409 | synaptics_rmi4_f1a_kfree(fhandler); |
| 2410 | else |
| 2411 | kfree(fhandler->data); |
| 2412 | kfree(fhandler); |
| 2413 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2414 | } |
Amy Maloche | 946da66 | 2013-01-18 16:27:11 -0800 | [diff] [blame] | 2415 | |
| 2416 | if (gpio_is_valid(rmi4_data->board->reset_gpio)) |
| 2417 | gpio_free(rmi4_data->board->reset_gpio); |
| 2418 | if (gpio_is_valid(rmi4_data->board->irq_gpio)) |
| 2419 | gpio_free(rmi4_data->board->irq_gpio); |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2420 | |
Amy Maloche | 1a53b61 | 2013-01-18 15:25:15 -0800 | [diff] [blame] | 2421 | synaptics_rmi4_power_on(rmi4_data, false); |
| 2422 | synaptics_rmi4_regulator_configure(rmi4_data, false); |
| 2423 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2424 | kfree(rmi4_data); |
| 2425 | |
| 2426 | return 0; |
| 2427 | } |
| 2428 | |
| 2429 | #ifdef CONFIG_PM |
| 2430 | /** |
| 2431 | * synaptics_rmi4_sensor_sleep() |
| 2432 | * |
| 2433 | * Called by synaptics_rmi4_early_suspend() and synaptics_rmi4_suspend(). |
| 2434 | * |
| 2435 | * This function stops finger data acquisition and puts the sensor to sleep. |
| 2436 | */ |
| 2437 | static void synaptics_rmi4_sensor_sleep(struct synaptics_rmi4_data *rmi4_data) |
| 2438 | { |
| 2439 | int retval; |
| 2440 | unsigned char device_ctrl; |
| 2441 | |
| 2442 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 2443 | rmi4_data->f01_ctrl_base_addr, |
| 2444 | &device_ctrl, |
| 2445 | sizeof(device_ctrl)); |
| 2446 | if (retval < 0) { |
| 2447 | dev_err(&(rmi4_data->input_dev->dev), |
| 2448 | "%s: Failed to enter sleep mode\n", |
| 2449 | __func__); |
| 2450 | rmi4_data->sensor_sleep = false; |
| 2451 | return; |
| 2452 | } |
| 2453 | |
| 2454 | device_ctrl = (device_ctrl & ~MASK_3BIT); |
| 2455 | device_ctrl = (device_ctrl | NO_SLEEP_OFF | SENSOR_SLEEP); |
| 2456 | |
| 2457 | retval = synaptics_rmi4_i2c_write(rmi4_data, |
| 2458 | rmi4_data->f01_ctrl_base_addr, |
| 2459 | &device_ctrl, |
| 2460 | sizeof(device_ctrl)); |
| 2461 | if (retval < 0) { |
| 2462 | dev_err(&(rmi4_data->input_dev->dev), |
| 2463 | "%s: Failed to enter sleep mode\n", |
| 2464 | __func__); |
| 2465 | rmi4_data->sensor_sleep = false; |
| 2466 | return; |
| 2467 | } else { |
| 2468 | rmi4_data->sensor_sleep = true; |
| 2469 | } |
| 2470 | |
| 2471 | return; |
| 2472 | } |
| 2473 | |
| 2474 | /** |
| 2475 | * synaptics_rmi4_sensor_wake() |
| 2476 | * |
| 2477 | * Called by synaptics_rmi4_resume() and synaptics_rmi4_late_resume(). |
| 2478 | * |
| 2479 | * This function wakes the sensor from sleep. |
| 2480 | */ |
| 2481 | static void synaptics_rmi4_sensor_wake(struct synaptics_rmi4_data *rmi4_data) |
| 2482 | { |
| 2483 | int retval; |
| 2484 | unsigned char device_ctrl; |
| 2485 | |
| 2486 | retval = synaptics_rmi4_i2c_read(rmi4_data, |
| 2487 | rmi4_data->f01_ctrl_base_addr, |
| 2488 | &device_ctrl, |
| 2489 | sizeof(device_ctrl)); |
| 2490 | if (retval < 0) { |
| 2491 | dev_err(&(rmi4_data->input_dev->dev), |
| 2492 | "%s: Failed to wake from sleep mode\n", |
| 2493 | __func__); |
| 2494 | rmi4_data->sensor_sleep = true; |
| 2495 | return; |
| 2496 | } |
| 2497 | |
| 2498 | device_ctrl = (device_ctrl & ~MASK_3BIT); |
| 2499 | device_ctrl = (device_ctrl | NO_SLEEP_OFF | NORMAL_OPERATION); |
| 2500 | |
| 2501 | retval = synaptics_rmi4_i2c_write(rmi4_data, |
| 2502 | rmi4_data->f01_ctrl_base_addr, |
| 2503 | &device_ctrl, |
| 2504 | sizeof(device_ctrl)); |
| 2505 | if (retval < 0) { |
| 2506 | dev_err(&(rmi4_data->input_dev->dev), |
| 2507 | "%s: Failed to wake from sleep mode\n", |
| 2508 | __func__); |
| 2509 | rmi4_data->sensor_sleep = true; |
| 2510 | return; |
| 2511 | } else { |
| 2512 | rmi4_data->sensor_sleep = false; |
| 2513 | } |
| 2514 | |
| 2515 | return; |
| 2516 | } |
| 2517 | |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 2518 | #if defined(CONFIG_FB) |
| 2519 | static int fb_notifier_callback(struct notifier_block *self, |
| 2520 | unsigned long event, void *data) |
| 2521 | { |
| 2522 | struct fb_event *evdata = data; |
| 2523 | int *blank; |
| 2524 | struct synaptics_rmi4_data *rmi4_data = |
| 2525 | container_of(self, struct synaptics_rmi4_data, fb_notif); |
| 2526 | |
| 2527 | if (evdata && evdata->data && event == FB_EVENT_BLANK && |
| 2528 | rmi4_data && rmi4_data->i2c_client) { |
| 2529 | blank = evdata->data; |
| 2530 | if (*blank == FB_BLANK_UNBLANK) |
| 2531 | synaptics_rmi4_resume(&(rmi4_data->input_dev->dev)); |
| 2532 | else if (*blank == FB_BLANK_POWERDOWN) |
| 2533 | synaptics_rmi4_suspend(&(rmi4_data->input_dev->dev)); |
| 2534 | } |
| 2535 | |
| 2536 | return 0; |
| 2537 | } |
| 2538 | #elif defined(CONFIG_HAS_EARLYSUSPEND) |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2539 | /** |
| 2540 | * synaptics_rmi4_early_suspend() |
| 2541 | * |
| 2542 | * Called by the kernel during the early suspend phase when the system |
| 2543 | * enters suspend. |
| 2544 | * |
| 2545 | * This function calls synaptics_rmi4_sensor_sleep() to stop finger |
| 2546 | * data acquisition and put the sensor to sleep. |
| 2547 | */ |
| 2548 | static void synaptics_rmi4_early_suspend(struct early_suspend *h) |
| 2549 | { |
| 2550 | struct synaptics_rmi4_data *rmi4_data = |
| 2551 | container_of(h, struct synaptics_rmi4_data, |
| 2552 | early_suspend); |
| 2553 | |
| 2554 | rmi4_data->touch_stopped = true; |
| 2555 | wake_up(&rmi4_data->wait); |
| 2556 | synaptics_rmi4_irq_enable(rmi4_data, false); |
| 2557 | synaptics_rmi4_sensor_sleep(rmi4_data); |
| 2558 | |
| 2559 | if (rmi4_data->full_pm_cycle) |
| 2560 | synaptics_rmi4_suspend(&(rmi4_data->input_dev->dev)); |
| 2561 | |
| 2562 | return; |
| 2563 | } |
| 2564 | |
| 2565 | /** |
| 2566 | * synaptics_rmi4_late_resume() |
| 2567 | * |
| 2568 | * Called by the kernel during the late resume phase when the system |
| 2569 | * wakes up from suspend. |
| 2570 | * |
| 2571 | * This function goes through the sensor wake process if the system wakes |
| 2572 | * up from early suspend (without going into suspend). |
| 2573 | */ |
| 2574 | static void synaptics_rmi4_late_resume(struct early_suspend *h) |
| 2575 | { |
| 2576 | struct synaptics_rmi4_data *rmi4_data = |
| 2577 | container_of(h, struct synaptics_rmi4_data, |
| 2578 | early_suspend); |
| 2579 | |
| 2580 | if (rmi4_data->full_pm_cycle) |
| 2581 | synaptics_rmi4_resume(&(rmi4_data->input_dev->dev)); |
| 2582 | |
| 2583 | if (rmi4_data->sensor_sleep == true) { |
| 2584 | synaptics_rmi4_sensor_wake(rmi4_data); |
| 2585 | rmi4_data->touch_stopped = false; |
| 2586 | synaptics_rmi4_irq_enable(rmi4_data, true); |
| 2587 | } |
| 2588 | |
| 2589 | return; |
| 2590 | } |
| 2591 | #endif |
| 2592 | |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2593 | static int synaptics_rmi4_regulator_lpm(struct synaptics_rmi4_data *rmi4_data, |
| 2594 | bool on) |
| 2595 | { |
| 2596 | int retval; |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 2597 | int load_ua; |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2598 | |
| 2599 | if (on == false) |
| 2600 | goto regulator_hpm; |
| 2601 | |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 2602 | load_ua = rmi4_data->board->power_down_enable ? 0 : RMI4_LPM_LOAD_UA; |
| 2603 | retval = reg_set_optimum_mode_check(rmi4_data->vdd, load_ua); |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2604 | if (retval < 0) { |
| 2605 | dev_err(&rmi4_data->i2c_client->dev, |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 2606 | "Regulator vdd_ana set_opt failed rc=%d\n", |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2607 | retval); |
| 2608 | goto fail_regulator_lpm; |
| 2609 | } |
| 2610 | |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 2611 | if (rmi4_data->board->power_down_enable) { |
| 2612 | retval = regulator_disable(rmi4_data->vdd); |
| 2613 | if (retval) { |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2614 | dev_err(&rmi4_data->i2c_client->dev, |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 2615 | "Regulator vdd disable failed rc=%d\n", |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2616 | retval); |
| 2617 | goto fail_regulator_lpm; |
| 2618 | } |
| 2619 | } |
| 2620 | |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 2621 | if (rmi4_data->board->i2c_pull_up) { |
| 2622 | load_ua = rmi4_data->board->power_down_enable ? |
| 2623 | 0 : RMI4_I2C_LPM_LOAD_UA; |
| 2624 | retval = reg_set_optimum_mode_check(rmi4_data->vcc_i2c, |
| 2625 | load_ua); |
| 2626 | if (retval < 0) { |
| 2627 | dev_err(&rmi4_data->i2c_client->dev, |
| 2628 | "Regulator vcc_i2c set_opt failed " \ |
| 2629 | "rc=%d\n", retval); |
| 2630 | goto fail_regulator_lpm; |
| 2631 | } |
| 2632 | |
| 2633 | if (rmi4_data->board->power_down_enable) { |
| 2634 | retval = regulator_disable(rmi4_data->vcc_i2c); |
| 2635 | if (retval) { |
| 2636 | dev_err(&rmi4_data->i2c_client->dev, |
| 2637 | "Regulator vcc_i2c disable failed " \ |
| 2638 | "rc=%d\n", retval); |
| 2639 | goto fail_regulator_lpm; |
| 2640 | } |
| 2641 | } |
| 2642 | } |
| 2643 | |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2644 | return 0; |
| 2645 | |
| 2646 | regulator_hpm: |
| 2647 | |
| 2648 | retval = reg_set_optimum_mode_check(rmi4_data->vdd, |
| 2649 | RMI4_ACTIVE_LOAD_UA); |
| 2650 | if (retval < 0) { |
| 2651 | dev_err(&rmi4_data->i2c_client->dev, |
| 2652 | "Regulator vcc_ana set_opt failed rc=%d\n", |
| 2653 | retval); |
| 2654 | goto fail_regulator_hpm; |
| 2655 | } |
| 2656 | |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 2657 | if (rmi4_data->board->power_down_enable) { |
| 2658 | retval = regulator_enable(rmi4_data->vdd); |
| 2659 | if (retval) { |
| 2660 | dev_err(&rmi4_data->i2c_client->dev, |
| 2661 | "Regulator vdd enable failed rc=%d\n", |
| 2662 | retval); |
| 2663 | goto fail_regulator_hpm; |
| 2664 | } |
| 2665 | } |
| 2666 | |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2667 | if (rmi4_data->board->i2c_pull_up) { |
| 2668 | retval = reg_set_optimum_mode_check(rmi4_data->vcc_i2c, |
| 2669 | RMI4_I2C_LOAD_UA); |
| 2670 | if (retval < 0) { |
| 2671 | dev_err(&rmi4_data->i2c_client->dev, |
| 2672 | "Regulator vcc_i2c set_opt failed rc=%d\n", |
| 2673 | retval); |
| 2674 | goto fail_regulator_hpm; |
| 2675 | } |
Amy Maloche | c790dc8 | 2013-06-27 15:16:09 -0700 | [diff] [blame] | 2676 | |
| 2677 | if (rmi4_data->board->power_down_enable) { |
| 2678 | retval = regulator_enable(rmi4_data->vcc_i2c); |
| 2679 | if (retval) { |
| 2680 | dev_err(&rmi4_data->i2c_client->dev, |
| 2681 | "Regulator vcc_i2c enable failed " \ |
| 2682 | "rc=%d\n", retval); |
| 2683 | goto fail_regulator_hpm; |
| 2684 | } |
| 2685 | } |
| 2686 | } |
| 2687 | |
| 2688 | if (rmi4_data->board->power_down_enable) { |
| 2689 | retval = synaptics_rmi4_reset_device(rmi4_data); |
| 2690 | if (retval < 0) { |
| 2691 | dev_err(&rmi4_data->i2c_client->dev, |
| 2692 | "%s: Failed to issue reset command, rc = %d\n", |
| 2693 | __func__, retval); |
| 2694 | return retval; |
| 2695 | } |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2696 | } |
| 2697 | |
| 2698 | return 0; |
| 2699 | |
| 2700 | fail_regulator_lpm: |
| 2701 | reg_set_optimum_mode_check(rmi4_data->vdd, RMI4_ACTIVE_LOAD_UA); |
| 2702 | if (rmi4_data->board->i2c_pull_up) |
| 2703 | reg_set_optimum_mode_check(rmi4_data->vcc_i2c, |
| 2704 | RMI4_I2C_LOAD_UA); |
| 2705 | |
| 2706 | return retval; |
| 2707 | |
| 2708 | fail_regulator_hpm: |
| 2709 | reg_set_optimum_mode_check(rmi4_data->vdd, RMI4_LPM_LOAD_UA); |
| 2710 | if (rmi4_data->board->i2c_pull_up) |
| 2711 | reg_set_optimum_mode_check(rmi4_data->vcc_i2c, |
| 2712 | RMI4_I2C_LPM_LOAD_UA); |
| 2713 | return retval; |
| 2714 | } |
| 2715 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2716 | /** |
| 2717 | * synaptics_rmi4_suspend() |
| 2718 | * |
| 2719 | * Called by the kernel during the suspend phase when the system |
| 2720 | * enters suspend. |
| 2721 | * |
| 2722 | * This function stops finger data acquisition and puts the sensor to |
| 2723 | * sleep (if not already done so during the early suspend phase), |
| 2724 | * disables the interrupt, and turns off the power to the sensor. |
| 2725 | */ |
| 2726 | static int synaptics_rmi4_suspend(struct device *dev) |
| 2727 | { |
| 2728 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2729 | int retval; |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2730 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2731 | if (rmi4_data->suspended) { |
| 2732 | dev_info(dev, "Already in suspend state\n"); |
| 2733 | return 0; |
| 2734 | } |
| 2735 | |
Amy Maloche | b494b9a | 2013-05-13 18:01:53 -0700 | [diff] [blame] | 2736 | if (!rmi4_data->fw_updating) { |
| 2737 | if (!rmi4_data->sensor_sleep) { |
| 2738 | rmi4_data->touch_stopped = true; |
| 2739 | wake_up(&rmi4_data->wait); |
| 2740 | synaptics_rmi4_irq_enable(rmi4_data, false); |
| 2741 | synaptics_rmi4_sensor_sleep(rmi4_data); |
| 2742 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2743 | |
Amy Maloche | b494b9a | 2013-05-13 18:01:53 -0700 | [diff] [blame] | 2744 | retval = synaptics_rmi4_regulator_lpm(rmi4_data, true); |
| 2745 | if (retval < 0) { |
| 2746 | dev_err(dev, "failed to enter low power mode\n"); |
| 2747 | return retval; |
| 2748 | } |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2749 | } else { |
Amy Maloche | b494b9a | 2013-05-13 18:01:53 -0700 | [diff] [blame] | 2750 | dev_err(dev, |
| 2751 | "Firmware updating, cannot go into suspend mode\n"); |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2752 | return 0; |
| 2753 | } |
| 2754 | |
| 2755 | rmi4_data->suspended = true; |
| 2756 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2757 | return 0; |
| 2758 | } |
| 2759 | |
| 2760 | /** |
| 2761 | * synaptics_rmi4_resume() |
| 2762 | * |
| 2763 | * Called by the kernel during the resume phase when the system |
| 2764 | * wakes up from suspend. |
| 2765 | * |
| 2766 | * This function turns on the power to the sensor, wakes the sensor |
| 2767 | * from sleep, enables the interrupt, and starts finger data |
| 2768 | * acquisition. |
| 2769 | */ |
| 2770 | static int synaptics_rmi4_resume(struct device *dev) |
| 2771 | { |
| 2772 | struct synaptics_rmi4_data *rmi4_data = dev_get_drvdata(dev); |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2773 | int retval; |
| 2774 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2775 | if (!rmi4_data->suspended) { |
| 2776 | dev_info(dev, "Already in awake state\n"); |
| 2777 | return 0; |
| 2778 | } |
| 2779 | |
Amy Maloche | 827e8b0 | 2013-02-27 15:25:14 -0800 | [diff] [blame] | 2780 | retval = synaptics_rmi4_regulator_lpm(rmi4_data, false); |
| 2781 | if (retval < 0) { |
| 2782 | dev_err(dev, "failed to enter active power mode\n"); |
| 2783 | return retval; |
| 2784 | } |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2785 | |
| 2786 | synaptics_rmi4_sensor_wake(rmi4_data); |
| 2787 | rmi4_data->touch_stopped = false; |
| 2788 | synaptics_rmi4_irq_enable(rmi4_data, true); |
| 2789 | |
Amy Maloche | 986863d | 2013-06-10 15:13:57 -0700 | [diff] [blame] | 2790 | rmi4_data->suspended = false; |
| 2791 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2792 | return 0; |
| 2793 | } |
| 2794 | |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 2795 | #if (!defined(CONFIG_FB) && !defined(CONFIG_HAS_EARLYSUSPEND)) |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2796 | static const struct dev_pm_ops synaptics_rmi4_dev_pm_ops = { |
| 2797 | .suspend = synaptics_rmi4_suspend, |
| 2798 | .resume = synaptics_rmi4_resume, |
| 2799 | }; |
Amy Maloche | f46540d | 2013-02-15 17:09:43 -0800 | [diff] [blame] | 2800 | #else |
| 2801 | static const struct dev_pm_ops synaptics_rmi4_dev_pm_ops = { |
| 2802 | }; |
| 2803 | #endif |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2804 | #endif |
| 2805 | |
| 2806 | static const struct i2c_device_id synaptics_rmi4_id_table[] = { |
| 2807 | {DRIVER_NAME, 0}, |
| 2808 | {}, |
| 2809 | }; |
| 2810 | MODULE_DEVICE_TABLE(i2c, synaptics_rmi4_id_table); |
| 2811 | |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2812 | #ifdef CONFIG_OF |
| 2813 | static struct of_device_id rmi4_match_table[] = { |
| 2814 | { .compatible = "synaptics,rmi4",}, |
| 2815 | { }, |
| 2816 | }; |
| 2817 | #else |
| 2818 | #define rmi4_match_table NULL |
| 2819 | #endif |
| 2820 | |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2821 | static struct i2c_driver synaptics_rmi4_driver = { |
| 2822 | .driver = { |
| 2823 | .name = DRIVER_NAME, |
| 2824 | .owner = THIS_MODULE, |
Amy Maloche | ecfb489 | 2013-02-06 13:30:36 -0800 | [diff] [blame] | 2825 | .of_match_table = rmi4_match_table, |
Alexandra Chin | 669d27c | 2012-12-24 15:42:30 +0800 | [diff] [blame] | 2826 | #ifdef CONFIG_PM |
| 2827 | .pm = &synaptics_rmi4_dev_pm_ops, |
| 2828 | #endif |
| 2829 | }, |
| 2830 | .probe = synaptics_rmi4_probe, |
| 2831 | .remove = __devexit_p(synaptics_rmi4_remove), |
| 2832 | .id_table = synaptics_rmi4_id_table, |
| 2833 | }; |
| 2834 | |
| 2835 | /** |
| 2836 | * synaptics_rmi4_init() |
| 2837 | * |
| 2838 | * Called by the kernel during do_initcalls (if built-in) |
| 2839 | * or when the driver is loaded (if a module). |
| 2840 | * |
| 2841 | * This function registers the driver to the I2C subsystem. |
| 2842 | * |
| 2843 | */ |
| 2844 | static int __init synaptics_rmi4_init(void) |
| 2845 | { |
| 2846 | return i2c_add_driver(&synaptics_rmi4_driver); |
| 2847 | } |
| 2848 | |
| 2849 | /** |
| 2850 | * synaptics_rmi4_exit() |
| 2851 | * |
| 2852 | * Called by the kernel when the driver is unloaded. |
| 2853 | * |
| 2854 | * This funtion unregisters the driver from the I2C subsystem. |
| 2855 | * |
| 2856 | */ |
| 2857 | static void __exit synaptics_rmi4_exit(void) |
| 2858 | { |
| 2859 | i2c_del_driver(&synaptics_rmi4_driver); |
| 2860 | } |
| 2861 | |
| 2862 | module_init(synaptics_rmi4_init); |
| 2863 | module_exit(synaptics_rmi4_exit); |
| 2864 | |
| 2865 | MODULE_AUTHOR("Synaptics, Inc."); |
| 2866 | MODULE_DESCRIPTION("Synaptics RMI4 I2C Touch Driver"); |
| 2867 | MODULE_LICENSE("GPL v2"); |