cyapa.c 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499
  1. /*
  2. * Cypress APA trackpad with I2C interface
  3. *
  4. * Author: Dudley Du <dudl@cypress.com>
  5. * Further cleanup and restructuring by:
  6. * Daniel Kurtz <djkurtz@chromium.org>
  7. * Benson Leung <bleung@chromium.org>
  8. *
  9. * Copyright (C) 2011-2015 Cypress Semiconductor, Inc.
  10. * Copyright (C) 2011-2012 Google, Inc.
  11. *
  12. * This file is subject to the terms and conditions of the GNU General Public
  13. * License. See the file COPYING in the main directory of this archive for
  14. * more details.
  15. */
  16. #include <linux/delay.h>
  17. #include <linux/i2c.h>
  18. #include <linux/input.h>
  19. #include <linux/input/mt.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/module.h>
  22. #include <linux/mutex.h>
  23. #include <linux/regulator/consumer.h>
  24. #include <linux/slab.h>
  25. #include <linux/uaccess.h>
  26. #include <linux/pm_runtime.h>
  27. #include <linux/acpi.h>
  28. #include <linux/of.h>
  29. #include "cyapa.h"
  30. #define CYAPA_ADAPTER_FUNC_NONE 0
  31. #define CYAPA_ADAPTER_FUNC_I2C 1
  32. #define CYAPA_ADAPTER_FUNC_SMBUS 2
  33. #define CYAPA_ADAPTER_FUNC_BOTH 3
  34. #define CYAPA_FW_NAME "cyapa.bin"
  35. const char product_id[] = "CYTRA";
  36. static int cyapa_reinitialize(struct cyapa *cyapa);
  37. bool cyapa_is_pip_bl_mode(struct cyapa *cyapa)
  38. {
  39. if (cyapa->gen == CYAPA_GEN6 && cyapa->state == CYAPA_STATE_GEN6_BL)
  40. return true;
  41. if (cyapa->gen == CYAPA_GEN5 && cyapa->state == CYAPA_STATE_GEN5_BL)
  42. return true;
  43. return false;
  44. }
  45. bool cyapa_is_pip_app_mode(struct cyapa *cyapa)
  46. {
  47. if (cyapa->gen == CYAPA_GEN6 && cyapa->state == CYAPA_STATE_GEN6_APP)
  48. return true;
  49. if (cyapa->gen == CYAPA_GEN5 && cyapa->state == CYAPA_STATE_GEN5_APP)
  50. return true;
  51. return false;
  52. }
  53. static bool cyapa_is_bootloader_mode(struct cyapa *cyapa)
  54. {
  55. if (cyapa_is_pip_bl_mode(cyapa))
  56. return true;
  57. if (cyapa->gen == CYAPA_GEN3 &&
  58. cyapa->state >= CYAPA_STATE_BL_BUSY &&
  59. cyapa->state <= CYAPA_STATE_BL_ACTIVE)
  60. return true;
  61. return false;
  62. }
  63. static inline bool cyapa_is_operational_mode(struct cyapa *cyapa)
  64. {
  65. if (cyapa_is_pip_app_mode(cyapa))
  66. return true;
  67. if (cyapa->gen == CYAPA_GEN3 && cyapa->state == CYAPA_STATE_OP)
  68. return true;
  69. return false;
  70. }
  71. /* Returns 0 on success, else negative errno on failure. */
  72. static ssize_t cyapa_i2c_read(struct cyapa *cyapa, u8 reg, size_t len,
  73. u8 *values)
  74. {
  75. struct i2c_client *client = cyapa->client;
  76. struct i2c_msg msgs[] = {
  77. {
  78. .addr = client->addr,
  79. .flags = 0,
  80. .len = 1,
  81. .buf = &reg,
  82. },
  83. {
  84. .addr = client->addr,
  85. .flags = I2C_M_RD,
  86. .len = len,
  87. .buf = values,
  88. },
  89. };
  90. int ret;
  91. ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
  92. if (ret != ARRAY_SIZE(msgs))
  93. return ret < 0 ? ret : -EIO;
  94. return 0;
  95. }
  96. /**
  97. * cyapa_i2c_write - Execute i2c block data write operation
  98. * @cyapa: Handle to this driver
  99. * @reg: Offset of the data to written in the register map
  100. * @len: number of bytes to write
  101. * @values: Data to be written
  102. *
  103. * Return negative errno code on error; return zero when success.
  104. */
  105. static int cyapa_i2c_write(struct cyapa *cyapa, u8 reg,
  106. size_t len, const void *values)
  107. {
  108. struct i2c_client *client = cyapa->client;
  109. char buf[32];
  110. int ret;
  111. if (len > sizeof(buf) - 1)
  112. return -ENOMEM;
  113. buf[0] = reg;
  114. memcpy(&buf[1], values, len);
  115. ret = i2c_master_send(client, buf, len + 1);
  116. if (ret != len + 1)
  117. return ret < 0 ? ret : -EIO;
  118. return 0;
  119. }
  120. static u8 cyapa_check_adapter_functionality(struct i2c_client *client)
  121. {
  122. u8 ret = CYAPA_ADAPTER_FUNC_NONE;
  123. if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
  124. ret |= CYAPA_ADAPTER_FUNC_I2C;
  125. if (i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA |
  126. I2C_FUNC_SMBUS_BLOCK_DATA |
  127. I2C_FUNC_SMBUS_I2C_BLOCK))
  128. ret |= CYAPA_ADAPTER_FUNC_SMBUS;
  129. return ret;
  130. }
  131. /*
  132. * Query device for its current operating state.
  133. */
  134. static int cyapa_get_state(struct cyapa *cyapa)
  135. {
  136. u8 status[BL_STATUS_SIZE];
  137. u8 cmd[32];
  138. /* The i2c address of gen4 and gen5 trackpad device must be even. */
  139. bool even_addr = ((cyapa->client->addr & 0x0001) == 0);
  140. bool smbus = false;
  141. int retries = 2;
  142. int error;
  143. cyapa->state = CYAPA_STATE_NO_DEVICE;
  144. /*
  145. * Get trackpad status by reading 3 registers starting from 0.
  146. * If the device is in the bootloader, this will be BL_HEAD.
  147. * If the device is in operation mode, this will be the DATA regs.
  148. *
  149. */
  150. error = cyapa_i2c_reg_read_block(cyapa, BL_HEAD_OFFSET, BL_STATUS_SIZE,
  151. status);
  152. /*
  153. * On smbus systems in OP mode, the i2c_reg_read will fail with
  154. * -ETIMEDOUT. In this case, try again using the smbus equivalent
  155. * command. This should return a BL_HEAD indicating CYAPA_STATE_OP.
  156. */
  157. if (cyapa->smbus && (error == -ETIMEDOUT || error == -ENXIO)) {
  158. if (!even_addr)
  159. error = cyapa_read_block(cyapa,
  160. CYAPA_CMD_BL_STATUS, status);
  161. smbus = true;
  162. }
  163. if (error != BL_STATUS_SIZE)
  164. goto error;
  165. /*
  166. * Detect trackpad protocol based on characteristic registers and bits.
  167. */
  168. do {
  169. cyapa->status[REG_OP_STATUS] = status[REG_OP_STATUS];
  170. cyapa->status[REG_BL_STATUS] = status[REG_BL_STATUS];
  171. cyapa->status[REG_BL_ERROR] = status[REG_BL_ERROR];
  172. if (cyapa->gen == CYAPA_GEN_UNKNOWN ||
  173. cyapa->gen == CYAPA_GEN3) {
  174. error = cyapa_gen3_ops.state_parse(cyapa,
  175. status, BL_STATUS_SIZE);
  176. if (!error)
  177. goto out_detected;
  178. }
  179. if (cyapa->gen == CYAPA_GEN_UNKNOWN ||
  180. cyapa->gen == CYAPA_GEN6 ||
  181. cyapa->gen == CYAPA_GEN5) {
  182. error = cyapa_pip_state_parse(cyapa,
  183. status, BL_STATUS_SIZE);
  184. if (!error)
  185. goto out_detected;
  186. }
  187. /* For old Gen5 trackpads detecting. */
  188. if ((cyapa->gen == CYAPA_GEN_UNKNOWN ||
  189. cyapa->gen == CYAPA_GEN5) &&
  190. !smbus && even_addr) {
  191. error = cyapa_gen5_ops.state_parse(cyapa,
  192. status, BL_STATUS_SIZE);
  193. if (!error)
  194. goto out_detected;
  195. }
  196. /*
  197. * Write 0x00 0x00 to trackpad device to force update its
  198. * status, then redo the detection again.
  199. */
  200. if (!smbus) {
  201. cmd[0] = 0x00;
  202. cmd[1] = 0x00;
  203. error = cyapa_i2c_write(cyapa, 0, 2, cmd);
  204. if (error)
  205. goto error;
  206. msleep(50);
  207. error = cyapa_i2c_read(cyapa, BL_HEAD_OFFSET,
  208. BL_STATUS_SIZE, status);
  209. if (error)
  210. goto error;
  211. }
  212. } while (--retries > 0 && !smbus);
  213. goto error;
  214. out_detected:
  215. if (cyapa->state <= CYAPA_STATE_BL_BUSY)
  216. return -EAGAIN;
  217. return 0;
  218. error:
  219. return (error < 0) ? error : -EAGAIN;
  220. }
  221. /*
  222. * Poll device for its status in a loop, waiting up to timeout for a response.
  223. *
  224. * When the device switches state, it usually takes ~300 ms.
  225. * However, when running a new firmware image, the device must calibrate its
  226. * sensors, which can take as long as 2 seconds.
  227. *
  228. * Note: The timeout has granularity of the polling rate, which is 100 ms.
  229. *
  230. * Returns:
  231. * 0 when the device eventually responds with a valid non-busy state.
  232. * -ETIMEDOUT if device never responds (too many -EAGAIN)
  233. * -EAGAIN if bootload is busy, or unknown state.
  234. * < 0 other errors
  235. */
  236. int cyapa_poll_state(struct cyapa *cyapa, unsigned int timeout)
  237. {
  238. int error;
  239. int tries = timeout / 100;
  240. do {
  241. error = cyapa_get_state(cyapa);
  242. if (!error && cyapa->state > CYAPA_STATE_BL_BUSY)
  243. return 0;
  244. msleep(100);
  245. } while (tries--);
  246. return (error == -EAGAIN || error == -ETIMEDOUT) ? -ETIMEDOUT : error;
  247. }
  248. /*
  249. * Check if device is operational.
  250. *
  251. * An operational device is responding, has exited bootloader, and has
  252. * firmware supported by this driver.
  253. *
  254. * Returns:
  255. * -ENODEV no device
  256. * -EBUSY no device or in bootloader
  257. * -EIO failure while reading from device
  258. * -ETIMEDOUT timeout failure for bus idle or bus no response
  259. * -EAGAIN device is still in bootloader
  260. * if ->state = CYAPA_STATE_BL_IDLE, device has invalid firmware
  261. * -EINVAL device is in operational mode, but not supported by this driver
  262. * 0 device is supported
  263. */
  264. static int cyapa_check_is_operational(struct cyapa *cyapa)
  265. {
  266. int error;
  267. error = cyapa_poll_state(cyapa, 4000);
  268. if (error)
  269. return error;
  270. switch (cyapa->gen) {
  271. case CYAPA_GEN6:
  272. cyapa->ops = &cyapa_gen6_ops;
  273. break;
  274. case CYAPA_GEN5:
  275. cyapa->ops = &cyapa_gen5_ops;
  276. break;
  277. case CYAPA_GEN3:
  278. cyapa->ops = &cyapa_gen3_ops;
  279. break;
  280. default:
  281. return -ENODEV;
  282. }
  283. error = cyapa->ops->operational_check(cyapa);
  284. if (!error && cyapa_is_operational_mode(cyapa))
  285. cyapa->operational = true;
  286. else
  287. cyapa->operational = false;
  288. return error;
  289. }
  290. /*
  291. * Returns 0 on device detected, negative errno on no device detected.
  292. * And when the device is detected and operational, it will be reset to
  293. * full power active mode automatically.
  294. */
  295. static int cyapa_detect(struct cyapa *cyapa)
  296. {
  297. struct device *dev = &cyapa->client->dev;
  298. int error;
  299. error = cyapa_check_is_operational(cyapa);
  300. if (error) {
  301. if (error != -ETIMEDOUT && error != -ENODEV &&
  302. cyapa_is_bootloader_mode(cyapa)) {
  303. dev_warn(dev, "device detected but not operational\n");
  304. return 0;
  305. }
  306. dev_err(dev, "no device detected: %d\n", error);
  307. return error;
  308. }
  309. return 0;
  310. }
  311. static int cyapa_open(struct input_dev *input)
  312. {
  313. struct cyapa *cyapa = input_get_drvdata(input);
  314. struct i2c_client *client = cyapa->client;
  315. struct device *dev = &client->dev;
  316. int error;
  317. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  318. if (error)
  319. return error;
  320. if (cyapa->operational) {
  321. /*
  322. * though failed to set active power mode,
  323. * but still may be able to work in lower scan rate
  324. * when in operational mode.
  325. */
  326. error = cyapa->ops->set_power_mode(cyapa,
  327. PWR_MODE_FULL_ACTIVE, 0, CYAPA_PM_ACTIVE);
  328. if (error) {
  329. dev_warn(dev, "set active power failed: %d\n", error);
  330. goto out;
  331. }
  332. } else {
  333. error = cyapa_reinitialize(cyapa);
  334. if (error || !cyapa->operational) {
  335. error = error ? error : -EAGAIN;
  336. goto out;
  337. }
  338. }
  339. enable_irq(client->irq);
  340. if (!pm_runtime_enabled(dev)) {
  341. pm_runtime_set_active(dev);
  342. pm_runtime_enable(dev);
  343. }
  344. pm_runtime_get_sync(dev);
  345. pm_runtime_put_sync_autosuspend(dev);
  346. out:
  347. mutex_unlock(&cyapa->state_sync_lock);
  348. return error;
  349. }
  350. static void cyapa_close(struct input_dev *input)
  351. {
  352. struct cyapa *cyapa = input_get_drvdata(input);
  353. struct i2c_client *client = cyapa->client;
  354. struct device *dev = &cyapa->client->dev;
  355. mutex_lock(&cyapa->state_sync_lock);
  356. disable_irq(client->irq);
  357. if (pm_runtime_enabled(dev))
  358. pm_runtime_disable(dev);
  359. pm_runtime_set_suspended(dev);
  360. if (cyapa->operational)
  361. cyapa->ops->set_power_mode(cyapa,
  362. PWR_MODE_OFF, 0, CYAPA_PM_DEACTIVE);
  363. mutex_unlock(&cyapa->state_sync_lock);
  364. }
  365. static int cyapa_create_input_dev(struct cyapa *cyapa)
  366. {
  367. struct device *dev = &cyapa->client->dev;
  368. struct input_dev *input;
  369. int error;
  370. if (!cyapa->physical_size_x || !cyapa->physical_size_y)
  371. return -EINVAL;
  372. input = devm_input_allocate_device(dev);
  373. if (!input) {
  374. dev_err(dev, "failed to allocate memory for input device.\n");
  375. return -ENOMEM;
  376. }
  377. input->name = CYAPA_NAME;
  378. input->phys = cyapa->phys;
  379. input->id.bustype = BUS_I2C;
  380. input->id.version = 1;
  381. input->id.product = 0; /* Means any product in eventcomm. */
  382. input->dev.parent = &cyapa->client->dev;
  383. input->open = cyapa_open;
  384. input->close = cyapa_close;
  385. input_set_drvdata(input, cyapa);
  386. __set_bit(EV_ABS, input->evbit);
  387. /* Finger position */
  388. input_set_abs_params(input, ABS_MT_POSITION_X, 0, cyapa->max_abs_x, 0,
  389. 0);
  390. input_set_abs_params(input, ABS_MT_POSITION_Y, 0, cyapa->max_abs_y, 0,
  391. 0);
  392. input_set_abs_params(input, ABS_MT_PRESSURE, 0, cyapa->max_z, 0, 0);
  393. if (cyapa->gen > CYAPA_GEN3) {
  394. input_set_abs_params(input, ABS_MT_TOUCH_MAJOR, 0, 255, 0, 0);
  395. input_set_abs_params(input, ABS_MT_TOUCH_MINOR, 0, 255, 0, 0);
  396. /*
  397. * Orientation is the angle between the vertical axis and
  398. * the major axis of the contact ellipse.
  399. * The range is -127 to 127.
  400. * the positive direction is clockwise form the vertical axis.
  401. * If the ellipse of contact degenerates into a circle,
  402. * orientation is reported as 0.
  403. *
  404. * Also, for Gen5 trackpad the accurate of this orientation
  405. * value is value + (-30 ~ 30).
  406. */
  407. input_set_abs_params(input, ABS_MT_ORIENTATION,
  408. -127, 127, 0, 0);
  409. }
  410. if (cyapa->gen >= CYAPA_GEN5) {
  411. input_set_abs_params(input, ABS_MT_WIDTH_MAJOR, 0, 255, 0, 0);
  412. input_set_abs_params(input, ABS_MT_WIDTH_MINOR, 0, 255, 0, 0);
  413. input_set_abs_params(input, ABS_DISTANCE, 0, 1, 0, 0);
  414. }
  415. input_abs_set_res(input, ABS_MT_POSITION_X,
  416. cyapa->max_abs_x / cyapa->physical_size_x);
  417. input_abs_set_res(input, ABS_MT_POSITION_Y,
  418. cyapa->max_abs_y / cyapa->physical_size_y);
  419. if (cyapa->btn_capability & CAPABILITY_LEFT_BTN_MASK)
  420. __set_bit(BTN_LEFT, input->keybit);
  421. if (cyapa->btn_capability & CAPABILITY_MIDDLE_BTN_MASK)
  422. __set_bit(BTN_MIDDLE, input->keybit);
  423. if (cyapa->btn_capability & CAPABILITY_RIGHT_BTN_MASK)
  424. __set_bit(BTN_RIGHT, input->keybit);
  425. if (cyapa->btn_capability == CAPABILITY_LEFT_BTN_MASK)
  426. __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
  427. /* Handle pointer emulation and unused slots in core */
  428. error = input_mt_init_slots(input, CYAPA_MAX_MT_SLOTS,
  429. INPUT_MT_POINTER | INPUT_MT_DROP_UNUSED);
  430. if (error) {
  431. dev_err(dev, "failed to initialize MT slots: %d\n", error);
  432. return error;
  433. }
  434. /* Register the device in input subsystem */
  435. error = input_register_device(input);
  436. if (error) {
  437. dev_err(dev, "failed to register input device: %d\n", error);
  438. return error;
  439. }
  440. cyapa->input = input;
  441. return 0;
  442. }
  443. static void cyapa_enable_irq_for_cmd(struct cyapa *cyapa)
  444. {
  445. struct input_dev *input = cyapa->input;
  446. if (!input || !input_device_enabled(input)) {
  447. /*
  448. * When input is NULL, TP must be in deep sleep mode.
  449. * In this mode, later non-power I2C command will always failed
  450. * if not bring it out of deep sleep mode firstly,
  451. * so must command TP to active mode here.
  452. */
  453. if (!input || cyapa->operational)
  454. cyapa->ops->set_power_mode(cyapa,
  455. PWR_MODE_FULL_ACTIVE, 0, CYAPA_PM_ACTIVE);
  456. /* Gen3 always using polling mode for command. */
  457. if (cyapa->gen >= CYAPA_GEN5)
  458. enable_irq(cyapa->client->irq);
  459. }
  460. }
  461. static void cyapa_disable_irq_for_cmd(struct cyapa *cyapa)
  462. {
  463. struct input_dev *input = cyapa->input;
  464. if (!input || !input_device_enabled(input)) {
  465. if (cyapa->gen >= CYAPA_GEN5)
  466. disable_irq(cyapa->client->irq);
  467. if (!input || cyapa->operational)
  468. cyapa->ops->set_power_mode(cyapa,
  469. PWR_MODE_OFF, 0, CYAPA_PM_ACTIVE);
  470. }
  471. }
  472. /*
  473. * cyapa_sleep_time_to_pwr_cmd and cyapa_pwr_cmd_to_sleep_time
  474. *
  475. * These are helper functions that convert to and from integer idle
  476. * times and register settings to write to the PowerMode register.
  477. * The trackpad supports between 20ms to 1000ms scan intervals.
  478. * The time will be increased in increments of 10ms from 20ms to 100ms.
  479. * From 100ms to 1000ms, time will be increased in increments of 20ms.
  480. *
  481. * When Idle_Time < 100, the format to convert Idle_Time to Idle_Command is:
  482. * Idle_Command = Idle Time / 10;
  483. * When Idle_Time >= 100, the format to convert Idle_Time to Idle_Command is:
  484. * Idle_Command = Idle Time / 20 + 5;
  485. */
  486. u8 cyapa_sleep_time_to_pwr_cmd(u16 sleep_time)
  487. {
  488. u16 encoded_time;
  489. sleep_time = clamp_val(sleep_time, 20, 1000);
  490. encoded_time = sleep_time < 100 ? sleep_time / 10 : sleep_time / 20 + 5;
  491. return (encoded_time << 2) & PWR_MODE_MASK;
  492. }
  493. u16 cyapa_pwr_cmd_to_sleep_time(u8 pwr_mode)
  494. {
  495. u8 encoded_time = pwr_mode >> 2;
  496. return (encoded_time < 10) ? encoded_time * 10
  497. : (encoded_time - 5) * 20;
  498. }
  499. /* 0 on driver initialize and detected successfully, negative on failure. */
  500. static int cyapa_initialize(struct cyapa *cyapa)
  501. {
  502. int error = 0;
  503. cyapa->state = CYAPA_STATE_NO_DEVICE;
  504. cyapa->gen = CYAPA_GEN_UNKNOWN;
  505. mutex_init(&cyapa->state_sync_lock);
  506. /*
  507. * Set to hard code default, they will be updated with trackpad set
  508. * default values after probe and initialized.
  509. */
  510. cyapa->suspend_power_mode = PWR_MODE_SLEEP;
  511. cyapa->suspend_sleep_time =
  512. cyapa_pwr_cmd_to_sleep_time(cyapa->suspend_power_mode);
  513. /* ops.initialize() is aimed to prepare for module communications. */
  514. error = cyapa_gen3_ops.initialize(cyapa);
  515. if (!error)
  516. error = cyapa_gen5_ops.initialize(cyapa);
  517. if (!error)
  518. error = cyapa_gen6_ops.initialize(cyapa);
  519. if (error)
  520. return error;
  521. error = cyapa_detect(cyapa);
  522. if (error)
  523. return error;
  524. /* Power down the device until we need it. */
  525. if (cyapa->operational)
  526. cyapa->ops->set_power_mode(cyapa,
  527. PWR_MODE_OFF, 0, CYAPA_PM_ACTIVE);
  528. return 0;
  529. }
  530. static int cyapa_reinitialize(struct cyapa *cyapa)
  531. {
  532. struct device *dev = &cyapa->client->dev;
  533. struct input_dev *input = cyapa->input;
  534. int error;
  535. if (pm_runtime_enabled(dev))
  536. pm_runtime_disable(dev);
  537. /* Avoid command failures when TP was in OFF state. */
  538. if (cyapa->operational)
  539. cyapa->ops->set_power_mode(cyapa,
  540. PWR_MODE_FULL_ACTIVE, 0, CYAPA_PM_ACTIVE);
  541. error = cyapa_detect(cyapa);
  542. if (error)
  543. goto out;
  544. if (!input && cyapa->operational) {
  545. error = cyapa_create_input_dev(cyapa);
  546. if (error) {
  547. dev_err(dev, "create input_dev instance failed: %d\n",
  548. error);
  549. goto out;
  550. }
  551. }
  552. out:
  553. if (!input || !input_device_enabled(input)) {
  554. /* Reset to power OFF state to save power when no user open. */
  555. if (cyapa->operational)
  556. cyapa->ops->set_power_mode(cyapa,
  557. PWR_MODE_OFF, 0, CYAPA_PM_DEACTIVE);
  558. } else if (!error && cyapa->operational) {
  559. /*
  560. * Make sure only enable runtime PM when device is
  561. * in operational mode and input->users > 0.
  562. */
  563. pm_runtime_set_active(dev);
  564. pm_runtime_enable(dev);
  565. pm_runtime_get_sync(dev);
  566. pm_runtime_put_sync_autosuspend(dev);
  567. }
  568. return error;
  569. }
  570. static irqreturn_t cyapa_irq(int irq, void *dev_id)
  571. {
  572. struct cyapa *cyapa = dev_id;
  573. struct device *dev = &cyapa->client->dev;
  574. int error;
  575. if (device_may_wakeup(dev))
  576. pm_wakeup_event(dev, 0);
  577. /* Interrupt event can be caused by host command to trackpad device. */
  578. if (cyapa->ops->irq_cmd_handler(cyapa)) {
  579. /*
  580. * Interrupt event maybe from trackpad device input reporting.
  581. */
  582. if (!cyapa->input) {
  583. /*
  584. * Still in probing or in firmware image
  585. * updating or reading.
  586. */
  587. cyapa->ops->sort_empty_output_data(cyapa,
  588. NULL, NULL, NULL);
  589. goto out;
  590. }
  591. if (cyapa->operational) {
  592. error = cyapa->ops->irq_handler(cyapa);
  593. /*
  594. * Apply runtime power management to touch report event
  595. * except the events caused by the command responses.
  596. * Note:
  597. * It will introduce about 20~40 ms additional delay
  598. * time in receiving for first valid touch report data.
  599. * The time is used to execute device runtime resume
  600. * process.
  601. */
  602. pm_runtime_get_sync(dev);
  603. pm_runtime_put_sync_autosuspend(dev);
  604. }
  605. if (!cyapa->operational || error) {
  606. if (!mutex_trylock(&cyapa->state_sync_lock)) {
  607. cyapa->ops->sort_empty_output_data(cyapa,
  608. NULL, NULL, NULL);
  609. goto out;
  610. }
  611. cyapa_reinitialize(cyapa);
  612. mutex_unlock(&cyapa->state_sync_lock);
  613. }
  614. }
  615. out:
  616. return IRQ_HANDLED;
  617. }
  618. /*
  619. **************************************************************
  620. * sysfs interface
  621. **************************************************************
  622. */
  623. #ifdef CONFIG_PM_SLEEP
  624. static ssize_t cyapa_show_suspend_scanrate(struct device *dev,
  625. struct device_attribute *attr,
  626. char *buf)
  627. {
  628. struct cyapa *cyapa = dev_get_drvdata(dev);
  629. u8 pwr_cmd;
  630. u16 sleep_time;
  631. int len;
  632. int error;
  633. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  634. if (error)
  635. return error;
  636. pwr_cmd = cyapa->suspend_power_mode;
  637. sleep_time = cyapa->suspend_sleep_time;
  638. mutex_unlock(&cyapa->state_sync_lock);
  639. switch (pwr_cmd) {
  640. case PWR_MODE_BTN_ONLY:
  641. len = sysfs_emit(buf, "%s\n", BTN_ONLY_MODE_NAME);
  642. break;
  643. case PWR_MODE_OFF:
  644. len = sysfs_emit(buf, "%s\n", OFF_MODE_NAME);
  645. break;
  646. default:
  647. len = sysfs_emit(buf, "%u\n",
  648. cyapa->gen == CYAPA_GEN3 ?
  649. cyapa_pwr_cmd_to_sleep_time(pwr_cmd) :
  650. sleep_time);
  651. break;
  652. }
  653. return len;
  654. }
  655. static ssize_t cyapa_update_suspend_scanrate(struct device *dev,
  656. struct device_attribute *attr,
  657. const char *buf, size_t count)
  658. {
  659. struct cyapa *cyapa = dev_get_drvdata(dev);
  660. u16 sleep_time;
  661. int error;
  662. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  663. if (error)
  664. return error;
  665. if (sysfs_streq(buf, BTN_ONLY_MODE_NAME)) {
  666. cyapa->suspend_power_mode = PWR_MODE_BTN_ONLY;
  667. } else if (sysfs_streq(buf, OFF_MODE_NAME)) {
  668. cyapa->suspend_power_mode = PWR_MODE_OFF;
  669. } else if (!kstrtou16(buf, 10, &sleep_time)) {
  670. cyapa->suspend_sleep_time = min_t(u16, sleep_time, 1000);
  671. cyapa->suspend_power_mode =
  672. cyapa_sleep_time_to_pwr_cmd(cyapa->suspend_sleep_time);
  673. } else {
  674. count = -EINVAL;
  675. }
  676. mutex_unlock(&cyapa->state_sync_lock);
  677. return count;
  678. }
  679. static DEVICE_ATTR(suspend_scanrate_ms, S_IRUGO|S_IWUSR,
  680. cyapa_show_suspend_scanrate,
  681. cyapa_update_suspend_scanrate);
  682. static struct attribute *cyapa_power_wakeup_entries[] = {
  683. &dev_attr_suspend_scanrate_ms.attr,
  684. NULL,
  685. };
  686. static const struct attribute_group cyapa_power_wakeup_group = {
  687. .name = power_group_name,
  688. .attrs = cyapa_power_wakeup_entries,
  689. };
  690. static void cyapa_remove_power_wakeup_group(void *data)
  691. {
  692. struct cyapa *cyapa = data;
  693. sysfs_unmerge_group(&cyapa->client->dev.kobj,
  694. &cyapa_power_wakeup_group);
  695. }
  696. static int cyapa_prepare_wakeup_controls(struct cyapa *cyapa)
  697. {
  698. struct i2c_client *client = cyapa->client;
  699. struct device *dev = &client->dev;
  700. int error;
  701. if (device_can_wakeup(dev)) {
  702. error = sysfs_merge_group(&dev->kobj,
  703. &cyapa_power_wakeup_group);
  704. if (error) {
  705. dev_err(dev, "failed to add power wakeup group: %d\n",
  706. error);
  707. return error;
  708. }
  709. error = devm_add_action_or_reset(dev,
  710. cyapa_remove_power_wakeup_group, cyapa);
  711. if (error) {
  712. dev_err(dev, "failed to add power cleanup action: %d\n",
  713. error);
  714. return error;
  715. }
  716. }
  717. return 0;
  718. }
  719. #else
  720. static inline int cyapa_prepare_wakeup_controls(struct cyapa *cyapa)
  721. {
  722. return 0;
  723. }
  724. #endif /* CONFIG_PM_SLEEP */
  725. #ifdef CONFIG_PM
  726. static ssize_t cyapa_show_rt_suspend_scanrate(struct device *dev,
  727. struct device_attribute *attr,
  728. char *buf)
  729. {
  730. struct cyapa *cyapa = dev_get_drvdata(dev);
  731. u8 pwr_cmd;
  732. u16 sleep_time;
  733. int error;
  734. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  735. if (error)
  736. return error;
  737. pwr_cmd = cyapa->runtime_suspend_power_mode;
  738. sleep_time = cyapa->runtime_suspend_sleep_time;
  739. mutex_unlock(&cyapa->state_sync_lock);
  740. return sysfs_emit(buf, "%u\n",
  741. cyapa->gen == CYAPA_GEN3 ?
  742. cyapa_pwr_cmd_to_sleep_time(pwr_cmd) :
  743. sleep_time);
  744. }
  745. static ssize_t cyapa_update_rt_suspend_scanrate(struct device *dev,
  746. struct device_attribute *attr,
  747. const char *buf, size_t count)
  748. {
  749. struct cyapa *cyapa = dev_get_drvdata(dev);
  750. u16 time;
  751. int error;
  752. if (buf == NULL || count == 0 || kstrtou16(buf, 10, &time)) {
  753. dev_err(dev, "invalid runtime suspend scanrate ms parameter\n");
  754. return -EINVAL;
  755. }
  756. /*
  757. * When the suspend scanrate is changed, pm_runtime_get to resume
  758. * a potentially suspended device, update to the new pwr_cmd
  759. * and then pm_runtime_put to suspend into the new power mode.
  760. */
  761. pm_runtime_get_sync(dev);
  762. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  763. if (error)
  764. return error;
  765. cyapa->runtime_suspend_sleep_time = min_t(u16, time, 1000);
  766. cyapa->runtime_suspend_power_mode =
  767. cyapa_sleep_time_to_pwr_cmd(cyapa->runtime_suspend_sleep_time);
  768. mutex_unlock(&cyapa->state_sync_lock);
  769. pm_runtime_put_sync_autosuspend(dev);
  770. return count;
  771. }
  772. static DEVICE_ATTR(runtime_suspend_scanrate_ms, S_IRUGO|S_IWUSR,
  773. cyapa_show_rt_suspend_scanrate,
  774. cyapa_update_rt_suspend_scanrate);
  775. static struct attribute *cyapa_power_runtime_entries[] = {
  776. &dev_attr_runtime_suspend_scanrate_ms.attr,
  777. NULL,
  778. };
  779. static const struct attribute_group cyapa_power_runtime_group = {
  780. .name = power_group_name,
  781. .attrs = cyapa_power_runtime_entries,
  782. };
  783. static void cyapa_remove_power_runtime_group(void *data)
  784. {
  785. struct cyapa *cyapa = data;
  786. sysfs_unmerge_group(&cyapa->client->dev.kobj,
  787. &cyapa_power_runtime_group);
  788. }
  789. static int cyapa_start_runtime(struct cyapa *cyapa)
  790. {
  791. struct device *dev = &cyapa->client->dev;
  792. int error;
  793. cyapa->runtime_suspend_power_mode = PWR_MODE_IDLE;
  794. cyapa->runtime_suspend_sleep_time =
  795. cyapa_pwr_cmd_to_sleep_time(cyapa->runtime_suspend_power_mode);
  796. error = sysfs_merge_group(&dev->kobj, &cyapa_power_runtime_group);
  797. if (error) {
  798. dev_err(dev,
  799. "failed to create power runtime group: %d\n", error);
  800. return error;
  801. }
  802. error = devm_add_action_or_reset(dev, cyapa_remove_power_runtime_group,
  803. cyapa);
  804. if (error) {
  805. dev_err(dev,
  806. "failed to add power runtime cleanup action: %d\n",
  807. error);
  808. return error;
  809. }
  810. /* runtime is enabled until device is operational and opened. */
  811. pm_runtime_set_suspended(dev);
  812. pm_runtime_use_autosuspend(dev);
  813. pm_runtime_set_autosuspend_delay(dev, AUTOSUSPEND_DELAY);
  814. return 0;
  815. }
  816. #else
  817. static inline int cyapa_start_runtime(struct cyapa *cyapa)
  818. {
  819. return 0;
  820. }
  821. #endif /* CONFIG_PM */
  822. static ssize_t cyapa_show_fm_ver(struct device *dev,
  823. struct device_attribute *attr, char *buf)
  824. {
  825. int error;
  826. struct cyapa *cyapa = dev_get_drvdata(dev);
  827. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  828. if (error)
  829. return error;
  830. error = sysfs_emit(buf, "%d.%d\n",
  831. cyapa->fw_maj_ver, cyapa->fw_min_ver);
  832. mutex_unlock(&cyapa->state_sync_lock);
  833. return error;
  834. }
  835. static ssize_t cyapa_show_product_id(struct device *dev,
  836. struct device_attribute *attr, char *buf)
  837. {
  838. struct cyapa *cyapa = dev_get_drvdata(dev);
  839. int size;
  840. int error;
  841. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  842. if (error)
  843. return error;
  844. size = sysfs_emit(buf, "%s\n", cyapa->product_id);
  845. mutex_unlock(&cyapa->state_sync_lock);
  846. return size;
  847. }
  848. static int cyapa_firmware(struct cyapa *cyapa, const char *fw_name)
  849. {
  850. struct device *dev = &cyapa->client->dev;
  851. const struct firmware *fw;
  852. int error;
  853. error = request_firmware(&fw, fw_name, dev);
  854. if (error) {
  855. dev_err(dev, "Could not load firmware from %s: %d\n",
  856. fw_name, error);
  857. return error;
  858. }
  859. error = cyapa->ops->check_fw(cyapa, fw);
  860. if (error) {
  861. dev_err(dev, "Invalid CYAPA firmware image: %s\n",
  862. fw_name);
  863. goto done;
  864. }
  865. /*
  866. * Resume the potentially suspended device because doing FW
  867. * update on a device not in the FULL mode has a chance to
  868. * fail.
  869. */
  870. pm_runtime_get_sync(dev);
  871. /* Require IRQ support for firmware update commands. */
  872. cyapa_enable_irq_for_cmd(cyapa);
  873. error = cyapa->ops->bl_enter(cyapa);
  874. if (error) {
  875. dev_err(dev, "bl_enter failed, %d\n", error);
  876. goto err_detect;
  877. }
  878. error = cyapa->ops->bl_activate(cyapa);
  879. if (error) {
  880. dev_err(dev, "bl_activate failed, %d\n", error);
  881. goto err_detect;
  882. }
  883. error = cyapa->ops->bl_initiate(cyapa, fw);
  884. if (error) {
  885. dev_err(dev, "bl_initiate failed, %d\n", error);
  886. goto err_detect;
  887. }
  888. error = cyapa->ops->update_fw(cyapa, fw);
  889. if (error) {
  890. dev_err(dev, "update_fw failed, %d\n", error);
  891. goto err_detect;
  892. }
  893. err_detect:
  894. cyapa_disable_irq_for_cmd(cyapa);
  895. pm_runtime_put_noidle(dev);
  896. done:
  897. release_firmware(fw);
  898. return error;
  899. }
  900. static ssize_t cyapa_update_fw_store(struct device *dev,
  901. struct device_attribute *attr,
  902. const char *buf, size_t count)
  903. {
  904. struct cyapa *cyapa = dev_get_drvdata(dev);
  905. char fw_name[NAME_MAX];
  906. int ret, error;
  907. if (!count || count >= NAME_MAX) {
  908. dev_err(dev, "Bad file name size\n");
  909. return -EINVAL;
  910. }
  911. memcpy(fw_name, buf, count);
  912. if (fw_name[count - 1] == '\n')
  913. fw_name[count - 1] = '\0';
  914. else
  915. fw_name[count] = '\0';
  916. if (cyapa->input) {
  917. /*
  918. * Force the input device to be registered after the firmware
  919. * image is updated, so if the corresponding parameters updated
  920. * in the new firmware image can taken effect immediately.
  921. */
  922. input_unregister_device(cyapa->input);
  923. cyapa->input = NULL;
  924. }
  925. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  926. if (error) {
  927. /*
  928. * Whatever, do reinitialize to try to recover TP state to
  929. * previous state just as it entered fw update entrance.
  930. */
  931. cyapa_reinitialize(cyapa);
  932. return error;
  933. }
  934. error = cyapa_firmware(cyapa, fw_name);
  935. if (error)
  936. dev_err(dev, "firmware update failed: %d\n", error);
  937. else
  938. dev_dbg(dev, "firmware update successfully done.\n");
  939. /*
  940. * Re-detect trackpad device states because firmware update process
  941. * will reset trackpad device into bootloader mode.
  942. */
  943. ret = cyapa_reinitialize(cyapa);
  944. if (ret) {
  945. dev_err(dev, "failed to re-detect after updated: %d\n", ret);
  946. error = error ? error : ret;
  947. }
  948. mutex_unlock(&cyapa->state_sync_lock);
  949. return error ? error : count;
  950. }
  951. static ssize_t cyapa_calibrate_store(struct device *dev,
  952. struct device_attribute *attr,
  953. const char *buf, size_t count)
  954. {
  955. struct cyapa *cyapa = dev_get_drvdata(dev);
  956. int error;
  957. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  958. if (error)
  959. return error;
  960. if (cyapa->operational) {
  961. cyapa_enable_irq_for_cmd(cyapa);
  962. error = cyapa->ops->calibrate_store(dev, attr, buf, count);
  963. cyapa_disable_irq_for_cmd(cyapa);
  964. } else {
  965. error = -EBUSY; /* Still running in bootloader mode. */
  966. }
  967. mutex_unlock(&cyapa->state_sync_lock);
  968. return error < 0 ? error : count;
  969. }
  970. static ssize_t cyapa_show_baseline(struct device *dev,
  971. struct device_attribute *attr, char *buf)
  972. {
  973. struct cyapa *cyapa = dev_get_drvdata(dev);
  974. ssize_t error;
  975. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  976. if (error)
  977. return error;
  978. if (cyapa->operational) {
  979. cyapa_enable_irq_for_cmd(cyapa);
  980. error = cyapa->ops->show_baseline(dev, attr, buf);
  981. cyapa_disable_irq_for_cmd(cyapa);
  982. } else {
  983. error = -EBUSY; /* Still running in bootloader mode. */
  984. }
  985. mutex_unlock(&cyapa->state_sync_lock);
  986. return error;
  987. }
  988. static char *cyapa_state_to_string(struct cyapa *cyapa)
  989. {
  990. switch (cyapa->state) {
  991. case CYAPA_STATE_BL_BUSY:
  992. return "bootloader busy";
  993. case CYAPA_STATE_BL_IDLE:
  994. return "bootloader idle";
  995. case CYAPA_STATE_BL_ACTIVE:
  996. return "bootloader active";
  997. case CYAPA_STATE_GEN5_BL:
  998. case CYAPA_STATE_GEN6_BL:
  999. return "bootloader";
  1000. case CYAPA_STATE_OP:
  1001. case CYAPA_STATE_GEN5_APP:
  1002. case CYAPA_STATE_GEN6_APP:
  1003. return "operational"; /* Normal valid state. */
  1004. default:
  1005. return "invalid mode";
  1006. }
  1007. }
  1008. static ssize_t cyapa_show_mode(struct device *dev,
  1009. struct device_attribute *attr, char *buf)
  1010. {
  1011. struct cyapa *cyapa = dev_get_drvdata(dev);
  1012. int size;
  1013. int error;
  1014. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  1015. if (error)
  1016. return error;
  1017. size = sysfs_emit(buf, "gen%d %s\n",
  1018. cyapa->gen, cyapa_state_to_string(cyapa));
  1019. mutex_unlock(&cyapa->state_sync_lock);
  1020. return size;
  1021. }
  1022. static DEVICE_ATTR(firmware_version, S_IRUGO, cyapa_show_fm_ver, NULL);
  1023. static DEVICE_ATTR(product_id, S_IRUGO, cyapa_show_product_id, NULL);
  1024. static DEVICE_ATTR(update_fw, S_IWUSR, NULL, cyapa_update_fw_store);
  1025. static DEVICE_ATTR(baseline, S_IRUGO, cyapa_show_baseline, NULL);
  1026. static DEVICE_ATTR(calibrate, S_IWUSR, NULL, cyapa_calibrate_store);
  1027. static DEVICE_ATTR(mode, S_IRUGO, cyapa_show_mode, NULL);
  1028. static struct attribute *cyapa_attrs[] = {
  1029. &dev_attr_firmware_version.attr,
  1030. &dev_attr_product_id.attr,
  1031. &dev_attr_update_fw.attr,
  1032. &dev_attr_baseline.attr,
  1033. &dev_attr_calibrate.attr,
  1034. &dev_attr_mode.attr,
  1035. NULL,
  1036. };
  1037. ATTRIBUTE_GROUPS(cyapa);
  1038. static void cyapa_disable_regulator(void *data)
  1039. {
  1040. struct cyapa *cyapa = data;
  1041. regulator_disable(cyapa->vcc);
  1042. }
  1043. static int cyapa_probe(struct i2c_client *client)
  1044. {
  1045. struct device *dev = &client->dev;
  1046. struct cyapa *cyapa;
  1047. u8 adapter_func;
  1048. union i2c_smbus_data dummy;
  1049. int error;
  1050. adapter_func = cyapa_check_adapter_functionality(client);
  1051. if (adapter_func == CYAPA_ADAPTER_FUNC_NONE) {
  1052. dev_err(dev, "not a supported I2C/SMBus adapter\n");
  1053. return -EIO;
  1054. }
  1055. /* Make sure there is something at this address */
  1056. if (i2c_smbus_xfer(client->adapter, client->addr, 0,
  1057. I2C_SMBUS_READ, 0, I2C_SMBUS_BYTE, &dummy) < 0)
  1058. return -ENODEV;
  1059. cyapa = devm_kzalloc(dev, sizeof(struct cyapa), GFP_KERNEL);
  1060. if (!cyapa)
  1061. return -ENOMEM;
  1062. /* i2c isn't supported, use smbus */
  1063. if (adapter_func == CYAPA_ADAPTER_FUNC_SMBUS)
  1064. cyapa->smbus = true;
  1065. cyapa->client = client;
  1066. i2c_set_clientdata(client, cyapa);
  1067. sprintf(cyapa->phys, "i2c-%d-%04x/input0", client->adapter->nr,
  1068. client->addr);
  1069. cyapa->vcc = devm_regulator_get(dev, "vcc");
  1070. if (IS_ERR(cyapa->vcc)) {
  1071. error = PTR_ERR(cyapa->vcc);
  1072. dev_err(dev, "failed to get vcc regulator: %d\n", error);
  1073. return error;
  1074. }
  1075. error = regulator_enable(cyapa->vcc);
  1076. if (error) {
  1077. dev_err(dev, "failed to enable regulator: %d\n", error);
  1078. return error;
  1079. }
  1080. error = devm_add_action_or_reset(dev, cyapa_disable_regulator, cyapa);
  1081. if (error) {
  1082. dev_err(dev, "failed to add disable regulator action: %d\n",
  1083. error);
  1084. return error;
  1085. }
  1086. error = cyapa_initialize(cyapa);
  1087. if (error) {
  1088. dev_err(dev, "failed to detect and initialize tp device.\n");
  1089. return error;
  1090. }
  1091. error = cyapa_prepare_wakeup_controls(cyapa);
  1092. if (error) {
  1093. dev_err(dev, "failed to prepare wakeup controls: %d\n", error);
  1094. return error;
  1095. }
  1096. error = cyapa_start_runtime(cyapa);
  1097. if (error) {
  1098. dev_err(dev, "failed to start pm_runtime: %d\n", error);
  1099. return error;
  1100. }
  1101. error = devm_request_threaded_irq(dev, client->irq,
  1102. NULL, cyapa_irq,
  1103. IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
  1104. "cyapa", cyapa);
  1105. if (error) {
  1106. dev_err(dev, "failed to request threaded irq: %d\n", error);
  1107. return error;
  1108. }
  1109. /* Disable IRQ until the device is opened */
  1110. disable_irq(client->irq);
  1111. /*
  1112. * Register the device in the input subsystem when it's operational.
  1113. * Otherwise, keep in this driver, so it can be be recovered or updated
  1114. * through the sysfs mode and update_fw interfaces by user or apps.
  1115. */
  1116. if (cyapa->operational) {
  1117. error = cyapa_create_input_dev(cyapa);
  1118. if (error) {
  1119. dev_err(dev, "create input_dev instance failed: %d\n",
  1120. error);
  1121. return error;
  1122. }
  1123. }
  1124. return 0;
  1125. }
  1126. static int cyapa_suspend(struct device *dev)
  1127. {
  1128. struct i2c_client *client = to_i2c_client(dev);
  1129. struct cyapa *cyapa = i2c_get_clientdata(client);
  1130. u8 power_mode;
  1131. int error;
  1132. error = mutex_lock_interruptible(&cyapa->input->mutex);
  1133. if (error)
  1134. return error;
  1135. error = mutex_lock_interruptible(&cyapa->state_sync_lock);
  1136. if (error) {
  1137. mutex_unlock(&cyapa->input->mutex);
  1138. return error;
  1139. }
  1140. /*
  1141. * Runtime PM is enable only when device is in operational mode and
  1142. * users in use, so need check it before disable it to
  1143. * avoid unbalance warning.
  1144. */
  1145. if (pm_runtime_enabled(dev))
  1146. pm_runtime_disable(dev);
  1147. disable_irq(client->irq);
  1148. /*
  1149. * Set trackpad device to idle mode if wakeup is allowed,
  1150. * otherwise turn off.
  1151. */
  1152. if (cyapa->operational) {
  1153. power_mode = device_may_wakeup(dev) ? cyapa->suspend_power_mode
  1154. : PWR_MODE_OFF;
  1155. error = cyapa->ops->set_power_mode(cyapa, power_mode,
  1156. cyapa->suspend_sleep_time, CYAPA_PM_SUSPEND);
  1157. if (error)
  1158. dev_err(dev, "suspend set power mode failed: %d\n",
  1159. error);
  1160. }
  1161. /*
  1162. * Disable proximity interrupt when system idle, want true touch to
  1163. * wake the system.
  1164. */
  1165. if (cyapa->dev_pwr_mode != PWR_MODE_OFF)
  1166. cyapa->ops->set_proximity(cyapa, false);
  1167. if (device_may_wakeup(dev))
  1168. cyapa->irq_wake = (enable_irq_wake(client->irq) == 0);
  1169. mutex_unlock(&cyapa->state_sync_lock);
  1170. mutex_unlock(&cyapa->input->mutex);
  1171. return 0;
  1172. }
  1173. static int cyapa_resume(struct device *dev)
  1174. {
  1175. struct i2c_client *client = to_i2c_client(dev);
  1176. struct cyapa *cyapa = i2c_get_clientdata(client);
  1177. int error;
  1178. mutex_lock(&cyapa->input->mutex);
  1179. mutex_lock(&cyapa->state_sync_lock);
  1180. if (device_may_wakeup(dev) && cyapa->irq_wake) {
  1181. disable_irq_wake(client->irq);
  1182. cyapa->irq_wake = false;
  1183. }
  1184. /*
  1185. * Update device states and runtime PM states.
  1186. * Re-Enable proximity interrupt after enter operational mode.
  1187. */
  1188. error = cyapa_reinitialize(cyapa);
  1189. if (error)
  1190. dev_warn(dev, "failed to reinitialize TP device: %d\n", error);
  1191. enable_irq(client->irq);
  1192. mutex_unlock(&cyapa->state_sync_lock);
  1193. mutex_unlock(&cyapa->input->mutex);
  1194. return 0;
  1195. }
  1196. static int cyapa_runtime_suspend(struct device *dev)
  1197. {
  1198. struct cyapa *cyapa = dev_get_drvdata(dev);
  1199. int error;
  1200. error = cyapa->ops->set_power_mode(cyapa,
  1201. cyapa->runtime_suspend_power_mode,
  1202. cyapa->runtime_suspend_sleep_time,
  1203. CYAPA_PM_RUNTIME_SUSPEND);
  1204. if (error)
  1205. dev_warn(dev, "runtime suspend failed: %d\n", error);
  1206. return 0;
  1207. }
  1208. static int cyapa_runtime_resume(struct device *dev)
  1209. {
  1210. struct cyapa *cyapa = dev_get_drvdata(dev);
  1211. int error;
  1212. error = cyapa->ops->set_power_mode(cyapa,
  1213. PWR_MODE_FULL_ACTIVE, 0, CYAPA_PM_RUNTIME_RESUME);
  1214. if (error)
  1215. dev_warn(dev, "runtime resume failed: %d\n", error);
  1216. return 0;
  1217. }
  1218. static const struct dev_pm_ops cyapa_pm_ops = {
  1219. SYSTEM_SLEEP_PM_OPS(cyapa_suspend, cyapa_resume)
  1220. RUNTIME_PM_OPS(cyapa_runtime_suspend, cyapa_runtime_resume, NULL)
  1221. };
  1222. static const struct i2c_device_id cyapa_id_table[] = {
  1223. { "cyapa" },
  1224. { }
  1225. };
  1226. MODULE_DEVICE_TABLE(i2c, cyapa_id_table);
  1227. #ifdef CONFIG_ACPI
  1228. static const struct acpi_device_id cyapa_acpi_id[] = {
  1229. { "CYAP0000", 0 }, /* Gen3 trackpad with 0x67 I2C address. */
  1230. { "CYAP0001", 0 }, /* Gen5 trackpad with 0x24 I2C address. */
  1231. { "CYAP0002", 0 }, /* Gen6 trackpad with 0x24 I2C address. */
  1232. { }
  1233. };
  1234. MODULE_DEVICE_TABLE(acpi, cyapa_acpi_id);
  1235. #endif
  1236. #ifdef CONFIG_OF
  1237. static const struct of_device_id cyapa_of_match[] = {
  1238. { .compatible = "cypress,cyapa" },
  1239. { /* sentinel */ }
  1240. };
  1241. MODULE_DEVICE_TABLE(of, cyapa_of_match);
  1242. #endif
  1243. static struct i2c_driver cyapa_driver = {
  1244. .driver = {
  1245. .name = "cyapa",
  1246. .dev_groups = cyapa_groups,
  1247. .pm = pm_ptr(&cyapa_pm_ops),
  1248. .acpi_match_table = ACPI_PTR(cyapa_acpi_id),
  1249. .of_match_table = of_match_ptr(cyapa_of_match),
  1250. },
  1251. .probe = cyapa_probe,
  1252. .id_table = cyapa_id_table,
  1253. };
  1254. module_i2c_driver(cyapa_driver);
  1255. MODULE_DESCRIPTION("Cypress APA I2C Trackpad Driver");
  1256. MODULE_AUTHOR("Dudley Du <dudl@cypress.com>");
  1257. MODULE_LICENSE("GPL");