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