raydium_driver.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517
  1. /* raydium_driver.c
  2. *
  3. * Raydium TouchScreen driver.
  4. *
  5. * Copyright (c) 2021 Raydium tech Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. */
  18. #include <linux/i2c.h>
  19. #include <linux/input.h>
  20. #include <linux/input/mt.h>
  21. #include <linux/delay.h>
  22. #include <linux/slab.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/kernel.h>
  25. #include <linux/mutex.h>
  26. #include <linux/module.h>
  27. #include <linux/gpio.h>
  28. #include <linux/unistd.h>
  29. #include <linux/uaccess.h>
  30. #include <linux/string.h>
  31. #include <linux/timer.h>
  32. #include <linux/regulator/consumer.h>
  33. #include <linux/device.h>
  34. #include <linux/kprobes.h>
  35. #include <asm/traps.h>
  36. #include <linux/firmware.h>
  37. #include <linux/of_gpio.h>
  38. #include <linux/err.h>
  39. #include <linux/of_device.h>
  40. #if defined(CONFIG_FB)
  41. #include <linux/notifier.h>
  42. #include <linux/fb.h>
  43. #elif defined(CONFIG_HAS_EARLYSUSPEND)
  44. #include <linux/earlysuspend.h>
  45. #endif /*end of CONFIG_FB*/
  46. #include "raydium_driver.h"
  47. struct raydium_slot_status {
  48. unsigned char pt_id; /*Occupied point ID*/
  49. unsigned char need_update; /*Mark as info need to be updated*/
  50. unsigned char pt_report_offset; /*point info offset in report*/
  51. };
  52. /*The first 3 elements are currently occupied. therest is new coming points*/
  53. struct raydium_slot_status gst_slot[MAX_TOUCH_NUM * 2];
  54. struct raydium_slot_status gst_slot_init = {0xFF, 0, 0};
  55. static int raydium_enable_regulator(struct raydium_ts_data *cd, bool en);
  56. #if (defined(CONFIG_RM_SYSFS_DEBUG))
  57. const struct attribute_group raydium_attr_group;
  58. #endif /*end of CONFIG_RM_SYSFS_DEBUG*/
  59. #if defined(CONFIG_DRM)
  60. static struct drm_panel *active_panel;
  61. #endif
  62. unsigned char g_u8_addr;
  63. unsigned char g_u8_raydium_flag;
  64. unsigned char g_u8_i2c_mode;
  65. unsigned char g_u8_upgrade_type;
  66. unsigned char g_u8_raw_data_type;
  67. unsigned int g_u32_raw_data_len; /* 128 bytes*/
  68. unsigned long g_u32_addr;
  69. unsigned int g_u32_length;
  70. unsigned int g_u32_driver_version;
  71. unsigned char *g_rad_fw_image, *g_rad_init_image;
  72. unsigned char *g_rad_boot_image, *g_rad_para_image;
  73. unsigned char *g_rad_testfw_image, *g_rad_testpara_image;
  74. unsigned char g_u8_table_setting, g_u8_table_init;
  75. unsigned char g_u8_resetflag;
  76. unsigned char g_u8_wakeup_flag;
  77. #ifdef ESD_SOLUTION_EN
  78. unsigned char g_u8_checkflag;
  79. #endif
  80. unsigned char g_u8_log_level;
  81. struct raydium_ts_data *g_raydium_ts;
  82. /*******************************************************************************
  83. * Name: raydium_variable_init
  84. * Brief:
  85. * Input:
  86. * Output:
  87. * Return:
  88. *******************************************************************************/
  89. static void raydium_variable_init(void)
  90. {
  91. g_u8_addr = RAYDIUM_PDA2_PDA_CFG_ADDR;
  92. g_u8_raydium_flag = NORMAL_MODE;
  93. g_u8_i2c_mode = PDA2_MODE;
  94. g_u8_upgrade_type = 0;
  95. g_u8_raw_data_type = RAYDIUM_FT_UPDATE;
  96. g_u32_raw_data_len = 64 * 2; /* 128 bytes*/
  97. g_u32_addr = RAYDIUM_CHK_I2C_CMD;
  98. g_u32_length = 1;
  99. g_u8_table_setting = 0;
  100. g_u8_table_init = 0;
  101. g_rad_fw_image = NULL;
  102. g_rad_init_image = NULL;
  103. g_rad_boot_image = NULL;
  104. g_rad_para_image = NULL;
  105. g_rad_testfw_image = NULL;
  106. g_rad_testpara_image = NULL;
  107. g_u32_driver_version = ((RAD_MAIN_VERSION << 24) |
  108. (RAD_MINOR_VERSION << 16) |
  109. (RAD_CUSTOMER_VERSION));
  110. g_u8_resetflag = false;
  111. g_u8_wakeup_flag = false;
  112. #ifdef ESD_SOLUTION_EN
  113. g_u8_checkflag = false;
  114. #endif
  115. g_u8_log_level = LOG_INFO;
  116. }
  117. /*******************************************************************************
  118. * Name: raydium_gpio_configure
  119. * Brief:
  120. * Input:
  121. * Output:
  122. * Return:
  123. *******************************************************************************/
  124. static int raydium_gpio_configure(bool on)
  125. {
  126. int i32_err = 0;
  127. if (on) {
  128. if (gpio_is_valid(g_raydium_ts->irq_gpio)) {
  129. i32_err = gpio_request(g_raydium_ts->irq_gpio,
  130. "raydium_irq_gpio");
  131. if (i32_err) {
  132. LOGD(LOG_ERR, "[touch]irq gpio request failed");
  133. goto err_irq_gpio_req;
  134. }
  135. i32_err = gpio_direction_input(g_raydium_ts->irq_gpio);
  136. if (i32_err) {
  137. LOGD(LOG_ERR, "[touch]set_direction for irq gpio failed\n");
  138. goto err_irq_gpio_dir;
  139. }
  140. }
  141. if (gpio_is_valid(g_raydium_ts->rst_gpio)) {
  142. i32_err = gpio_request(g_raydium_ts->rst_gpio,
  143. "raydium_rst_gpio");
  144. if (i32_err) {
  145. LOGD(LOG_ERR, "[touch]rst gpio request failed");
  146. goto err_irq_gpio_req;
  147. }
  148. i32_err = gpio_direction_output(g_raydium_ts->rst_gpio, 0);
  149. msleep(RAYDIUM_RESET_INTERVAL_10MSEC);
  150. if (i32_err) {
  151. LOGD(LOG_ERR,
  152. "[touch]set_direction for rst gpio failed\n");
  153. goto err_rst_gpio_dir;
  154. }
  155. i32_err = gpio_direction_output(g_raydium_ts->rst_gpio, 1);
  156. if (i32_err) {
  157. LOGD(LOG_ERR,
  158. "[touch]set_direction for irq gpio failed\n");
  159. goto err_rst_gpio_dir;
  160. }
  161. }
  162. } else {
  163. if (gpio_is_valid(g_raydium_ts->irq_gpio))
  164. gpio_free(g_raydium_ts->irq_gpio);
  165. }
  166. return 0;
  167. err_rst_gpio_dir:
  168. if (gpio_is_valid(g_raydium_ts->rst_gpio))
  169. gpio_free(g_raydium_ts->rst_gpio);
  170. return i32_err;
  171. err_irq_gpio_dir:
  172. if (gpio_is_valid(g_raydium_ts->irq_gpio))
  173. gpio_free(g_raydium_ts->irq_gpio);
  174. err_irq_gpio_req:
  175. return i32_err;
  176. }
  177. /*******************************************************************************
  178. * Name: raydium_ts_pinctrl_init
  179. * Brief:
  180. * Input:
  181. * Output:
  182. * Return:
  183. *******************************************************************************/
  184. #ifdef MSM_NEW_VER
  185. static int raydium_ts_pinctrl_init(void)
  186. {
  187. int i32_ret;
  188. /* Get pinctrl if target uses pinctrl */
  189. g_raydium_ts->ts_pinctrl = devm_pinctrl_get(&(g_raydium_ts->client->dev));
  190. if (IS_ERR_OR_NULL(g_raydium_ts->ts_pinctrl)) {
  191. i32_ret = PTR_ERR(g_raydium_ts->ts_pinctrl);
  192. LOGD(LOG_ERR, "[touch]target does not use pinctrl %d\n", i32_ret);
  193. goto err_pinctrl_get;
  194. }
  195. g_raydium_ts->pinctrl_state_active
  196. = pinctrl_lookup_state(g_raydium_ts->ts_pinctrl, PINCTRL_STATE_ACTIVE);
  197. if (IS_ERR_OR_NULL(g_raydium_ts->pinctrl_state_active)) {
  198. i32_ret = PTR_ERR(g_raydium_ts->pinctrl_state_active);
  199. LOGD(LOG_ERR, "[touch]Can not lookup %s pinstate %d\n",
  200. PINCTRL_STATE_ACTIVE, i32_ret);
  201. goto err_pinctrl_lookup;
  202. }
  203. g_raydium_ts->pinctrl_state_suspend
  204. = pinctrl_lookup_state(g_raydium_ts->ts_pinctrl,
  205. PINCTRL_STATE_SUSPEND);
  206. if (IS_ERR_OR_NULL(g_raydium_ts->pinctrl_state_suspend)) {
  207. i32_ret = PTR_ERR(g_raydium_ts->pinctrl_state_suspend);
  208. LOGD(LOG_ERR, "[touch]Can not lookup %s pinstate %d\n",
  209. PINCTRL_STATE_SUSPEND, i32_ret);
  210. goto err_pinctrl_lookup;
  211. }
  212. g_raydium_ts->pinctrl_state_release
  213. = pinctrl_lookup_state(g_raydium_ts->ts_pinctrl,
  214. PINCTRL_STATE_RELEASE);
  215. if (IS_ERR_OR_NULL(g_raydium_ts->pinctrl_state_release)) {
  216. i32_ret = PTR_ERR(g_raydium_ts->pinctrl_state_release);
  217. LOGD(LOG_ERR, "[touch]Can not lookup %s pinstate %d\n",
  218. PINCTRL_STATE_RELEASE, i32_ret);
  219. }
  220. return 0;
  221. err_pinctrl_lookup:
  222. devm_pinctrl_put(g_raydium_ts->ts_pinctrl);
  223. err_pinctrl_get:
  224. g_raydium_ts->ts_pinctrl = NULL;
  225. return i32_ret;
  226. }
  227. #endif/*end of MSM_NEW_VER*/
  228. #ifdef ESD_SOLUTION_EN
  229. static int raydium_hw_reset_fun(struct i2c_client *client)
  230. {
  231. int i32_ret = SUCCESS;
  232. LOGD(LOG_INFO, "[touch]HW reset\n");
  233. g_u8_raydium_flag |= ENG_MODE;
  234. g_u8_resetflag = true;
  235. /*HW reset*/
  236. gpio_set_value(g_raydium_ts->rst_gpio, 1);
  237. gpio_set_value(g_raydium_ts->rst_gpio, 0);
  238. msleep(RAYDIUM_RESET_INTERVAL_MSEC);
  239. gpio_set_value(g_raydium_ts->rst_gpio, 1);
  240. g_u8_i2c_mode = PDA2_MODE;
  241. i32_ret = wait_irq_state(client, 300, 2000);
  242. if (i32_ret != ERROR)
  243. msleep(35);
  244. g_u8_raydium_flag &= ~ENG_MODE;
  245. LOGD(LOG_INFO, "[touch]Raydium HW reset : %d\n", i32_ret);
  246. return i32_ret;
  247. }
  248. #endif
  249. int raydium_i2c_write_pda_via_pda2(struct i2c_client *client,
  250. unsigned int u32_addr, unsigned char *u8_w_data,
  251. unsigned short u16_length)
  252. {
  253. int i32_ret = -1;
  254. /*unsigned char u8_retry;*/
  255. unsigned char u8_mode = 0x00;
  256. unsigned char u8_buf[MAX_WRITE_PACKET_SIZE + 6];
  257. struct i2c_msg msg[] = {
  258. {
  259. .addr = RAYDIUM_I2C_NID,
  260. .flags = RAYDIUM_I2C_WRITE,
  261. .len = u16_length + 6,
  262. .buf = u8_buf,
  263. },
  264. };
  265. if (u16_length > MAX_WRITE_PACKET_SIZE)
  266. return -EINVAL;
  267. /*I2C access for register need to word mode*/
  268. if ((u16_length == 4) &&
  269. ((u32_addr & 0x50000000) || (u32_addr & 0x40000000)))
  270. u8_mode = I2C_PDA2_WORD_MODE;
  271. else
  272. u8_mode = I2C_PDA2_BYTE_MODE;
  273. if (u16_length > MAX_WRITE_PACKET_SIZE)
  274. return -EINVAL;
  275. g_u8_i2c_mode = PDA2_MODE;
  276. u8_buf[0] = RAYDIUM_I2C_PDA_CMD;
  277. u8_buf[1] = (unsigned char)u32_addr;
  278. u8_buf[2] = (unsigned char)(u32_addr >> 8);
  279. u8_buf[3] = (unsigned char)(u32_addr >> 16);
  280. u8_buf[4] = (unsigned char)(u32_addr >> 24);
  281. u8_buf[5] = u8_mode;
  282. memcpy(&u8_buf[6], u8_w_data, u16_length);
  283. /*for (u8_retry = 0; u8_retry < SYN_I2C_RETRY_TIMES; u8_retry++) {*/
  284. if (i2c_transfer(client->adapter, msg, 1) == 1) {
  285. i32_ret = u16_length;
  286. /*break;*/
  287. }
  288. i32_ret = u16_length;
  289. /*usleep_range(500, 1500);*/
  290. /*}*/
  291. /*if (u8_retry == SYN_I2C_RETRY_TIMES) {*/
  292. /* LOGD(LOG_ERR, "[touch]%s: I2C write over retry limit\n", __func__);*/
  293. /* i32_ret = -EIO;*/
  294. /*}*/
  295. return i32_ret;
  296. }
  297. int raydium_i2c_read_pda_via_pda2(struct i2c_client *client,
  298. unsigned int u32_addr, unsigned char *u8_r_data,
  299. unsigned short u16_length)
  300. {
  301. int i32_ret;
  302. /*unsigned char u8_retry;*/
  303. unsigned char u8_mode = 0x00;
  304. unsigned char u8_buf[6];
  305. struct i2c_msg msg[] = {
  306. {
  307. .addr = RAYDIUM_I2C_NID,
  308. .flags = RAYDIUM_I2C_WRITE,
  309. .len = 6,
  310. .buf = u8_buf,
  311. },
  312. {
  313. .addr = RAYDIUM_I2C_NID,
  314. .flags = RAYDIUM_I2C_READ,
  315. .len = u16_length,
  316. .buf = u8_r_data,
  317. },
  318. };
  319. if ((u32_addr & 0x50000000) || (u32_addr & 0x40000000))
  320. u8_mode = I2C_PDA2_WORD_MODE;
  321. else
  322. u8_mode = I2C_PDA2_BYTE_MODE;
  323. g_u8_i2c_mode = PDA2_MODE;
  324. u8_buf[0] = RAYDIUM_I2C_PDA_CMD;
  325. u8_buf[1] = (unsigned char)u32_addr;
  326. u8_buf[2] = (unsigned char)(u32_addr >> 8);
  327. u8_buf[3] = (unsigned char)(u32_addr >> 16);
  328. u8_buf[4] = (unsigned char)(u32_addr >> 24);
  329. u8_buf[5] = u8_mode;
  330. /*for (u8_retry = 0; u8_retry < SYN_I2C_RETRY_TIMES; u8_retry++) {*/
  331. if (i2c_transfer(g_raydium_ts->client->adapter, msg, 2) == 2) {
  332. i32_ret = u16_length;
  333. /*break;*/
  334. }
  335. i32_ret = u16_length;
  336. /*usleep_range(500, 1500);*/
  337. /*}*/
  338. /*if (u8_retry == SYN_I2C_RETRY_TIMES) {*/
  339. /* LOGD(LOG_ERR, "[touch]%s: I2C read over retry limit\n", __func__);*/
  340. /* i32_ret = -EIO;*/
  341. /*}*/
  342. return i32_ret;
  343. }
  344. int raydium_i2c_pda_set_address(unsigned int u32_address,
  345. unsigned char u8_mode)
  346. {
  347. int i32_ret = 0;
  348. unsigned char u8_retry;
  349. unsigned char u8_buf[RAD_I2C_PDA_ADDRESS_LENGTH];
  350. struct i2c_client *client = g_raydium_ts->client;
  351. client->addr = RAYDIUM_I2C_EID;
  352. u8_buf[0] = (u32_address & 0x0000FF00) >> 8;
  353. u8_buf[1] = (u32_address & 0x00FF0000) >> 16;
  354. u8_buf[2] = (u32_address & 0xFF000000) >> 24;
  355. u8_buf[3] = u8_mode;
  356. for (u8_retry = 0; u8_retry < SYN_I2C_RETRY_TIMES; u8_retry++) {
  357. i32_ret = i2c_master_send(client, u8_buf,
  358. RAD_I2C_PDA_ADDRESS_LENGTH);
  359. if (i32_ret != RAD_I2C_PDA_ADDRESS_LENGTH) {
  360. LOGD(LOG_ERR, "[touch]%s: I2C retry %d\n",
  361. __func__, u8_retry + 1);
  362. usleep_range(500, 1500);
  363. } else {
  364. break;
  365. }
  366. }
  367. return (i32_ret == RAD_I2C_PDA_ADDRESS_LENGTH) ? i32_ret : -EIO;
  368. }
  369. /*device attribute raydium_i2c_pda2_mode used*/
  370. int raydium_i2c_pda_read(struct i2c_client *client,
  371. unsigned int u32_addr, unsigned char *u8_r_data,
  372. unsigned short u16_length)
  373. {
  374. int i32_ret;
  375. unsigned char u8_retry;
  376. unsigned char u8_mode = 0x00;
  377. unsigned char u8_buf;
  378. struct i2c_msg msg[] = {
  379. {
  380. .addr = RAYDIUM_I2C_NID,
  381. .flags = RAYDIUM_I2C_WRITE,
  382. .len = 1,
  383. .buf = &u8_buf,
  384. },
  385. {
  386. .addr = RAYDIUM_I2C_NID,
  387. .flags = RAYDIUM_I2C_READ,
  388. .len = u16_length,
  389. .buf = u8_r_data,
  390. },
  391. };
  392. if (u16_length == 4)
  393. u8_mode |= RAD_I2C_PDA_MODE_ENABLE |
  394. RAD_I2C_PDA_2_MODE_DISABLE |
  395. RAD_I2C_PDA_MODE_WORD_MODE;
  396. else
  397. u8_mode |= RAD_I2C_PDA_MODE_ENABLE |
  398. RAD_I2C_PDA_2_MODE_DISABLE;
  399. u8_mode |= 0x03;
  400. u8_buf = u32_addr & MASK_8BIT;
  401. i32_ret = raydium_i2c_pda_set_address(u32_addr, u8_mode);
  402. if (i32_ret != RAD_I2C_PDA_ADDRESS_LENGTH)
  403. goto exit;
  404. usleep_range(50, 80);
  405. for (u8_retry = 0; u8_retry < SYN_I2C_RETRY_TIMES; u8_retry++) {
  406. if (i2c_transfer(g_raydium_ts->client->adapter, msg, 2) == 2) {
  407. i32_ret = u16_length;
  408. break;
  409. }
  410. LOGD(LOG_ERR, "%s: I2C retry %d\n", __func__, u8_retry + 1);
  411. usleep_range(500, 1500);
  412. }
  413. if (u8_retry == SYN_I2C_RETRY_TIMES) {
  414. LOGD(LOG_ERR, "%s: I2C read over retry limit\n", __func__);
  415. i32_ret = -EIO;
  416. }
  417. exit:
  418. return i32_ret;
  419. }
  420. int raydium_i2c_pda_write(struct i2c_client *client,
  421. unsigned int u32_addr, unsigned char *u8_w_data,
  422. unsigned short u16_length)
  423. {
  424. int i32_ret;
  425. unsigned char u8_retry;
  426. unsigned char u8_mode = 0x00;
  427. unsigned char u8_buf[MAX_WRITE_PACKET_SIZE + 1];
  428. struct i2c_msg msg[] = {
  429. {
  430. .addr = RAYDIUM_I2C_NID,
  431. .flags = RAYDIUM_I2C_WRITE,
  432. .len = u16_length + 1,
  433. .buf = u8_buf,
  434. },
  435. };
  436. if (u16_length > MAX_WRITE_PACKET_SIZE)
  437. return -EINVAL;
  438. if (u16_length == 4)
  439. u8_mode |= RAD_I2C_PDA_MODE_ENABLE |
  440. RAD_I2C_PDA_2_MODE_DISABLE |
  441. RAD_I2C_PDA_MODE_WORD_MODE;
  442. else
  443. u8_mode |= RAD_I2C_PDA_MODE_ENABLE |
  444. RAD_I2C_PDA_2_MODE_DISABLE;
  445. u8_buf[0] = u32_addr & MASK_8BIT;
  446. memcpy(&u8_buf[1], u8_w_data, u16_length);
  447. i32_ret = raydium_i2c_pda_set_address(u32_addr, u8_mode);
  448. if (i32_ret != RAD_I2C_PDA_ADDRESS_LENGTH)
  449. goto exit;
  450. usleep_range(50, 80);
  451. for (u8_retry = 0; u8_retry < SYN_I2C_RETRY_TIMES; u8_retry++) {
  452. if (i2c_transfer(client->adapter, msg, 1) == 1) {
  453. i32_ret = u16_length;
  454. break;
  455. }
  456. LOGD(LOG_ERR, "[touch]%s: I2C retry %d\n", __func__, u8_retry + 1);
  457. usleep_range(500, 1500);
  458. }
  459. if (u8_retry == SYN_I2C_RETRY_TIMES) {
  460. LOGD(LOG_ERR, "[touch]%s: I2C write over retry limit\n", __func__);
  461. i32_ret = -EIO;
  462. }
  463. exit:
  464. return i32_ret;
  465. }
  466. int handle_i2c_pda_read(struct i2c_client *client,
  467. unsigned int u32_addr, unsigned char *u8_r_data,
  468. unsigned short u16_length)
  469. {
  470. if ((g_u8_i2c_mode & PDA_MODE) != 0) {
  471. if (raydium_i2c_pda_read(client, u32_addr, u8_r_data, u16_length) == ERROR) {
  472. LOGD(LOG_ERR, "[touch] handle_ic_write I2C NG!\r\n");
  473. return ERROR;
  474. }
  475. } else {
  476. if (raydium_i2c_read_pda_via_pda2(client, u32_addr, u8_r_data, u16_length) == ERROR) {
  477. LOGD(LOG_ERR, "[touch] handle_ic_write I2C via_pda2 NG!\r\n");
  478. return ERROR;
  479. }
  480. }
  481. return SUCCESS;
  482. }
  483. int handle_i2c_pda_write(struct i2c_client *client,
  484. unsigned int u32_addr, unsigned char *u8_w_data,
  485. unsigned short u16_length)
  486. {
  487. if ((g_u8_i2c_mode & PDA_MODE) != 0) {
  488. if (raydium_i2c_pda_write(client, u32_addr, u8_w_data, u16_length) == ERROR) {
  489. LOGD(LOG_ERR, "[touch] handle_ic_write I2C NG!\r\n");
  490. return ERROR;
  491. }
  492. } else {
  493. if (raydium_i2c_write_pda_via_pda2(client, u32_addr, u8_w_data, u16_length) == ERROR) {
  494. LOGD(LOG_ERR, "[touch] handle_ic_write I2C via_pda2 NG!\r\n");
  495. return ERROR;
  496. }
  497. }
  498. return SUCCESS;
  499. }
  500. int raydium_i2c_pda2_set_page(struct i2c_client *client,
  501. unsigned int is_suspend,
  502. unsigned char u8_page)
  503. {
  504. int i32_ret = -1;
  505. unsigned char u8_retry;
  506. unsigned int u8_ret = (is_suspend) ? 10 : 2;
  507. unsigned char u8_buf[RAYDIUM_I2C_PDA2_PAGE_LENGTH];
  508. struct i2c_msg msg[] = {
  509. {
  510. .addr = RAYDIUM_I2C_NID,
  511. .flags = RAYDIUM_I2C_WRITE,
  512. .len = RAYDIUM_I2C_PDA2_PAGE_LENGTH,
  513. .buf = u8_buf,
  514. },
  515. };
  516. u8_buf[0] = RAYDIUM_PDA2_PAGE_ADDR;
  517. u8_buf[1] = u8_page;
  518. for (; u8_ret > 0; u8_ret--) {
  519. for (u8_retry = 0; u8_retry < SYN_I2C_RETRY_TIMES; u8_retry++) {
  520. if (i2c_transfer(client->adapter, msg, 1) == 1) {
  521. i32_ret = RAYDIUM_I2C_PDA2_PAGE_LENGTH;
  522. break;
  523. }
  524. usleep_range(500, 1500);
  525. }
  526. if (i32_ret == RAYDIUM_I2C_PDA2_PAGE_LENGTH)
  527. break;
  528. usleep_range(2000, 5000);
  529. }
  530. if (u8_ret == 0) {
  531. LOGD(LOG_ERR, "[touch]%s: I2C write over retry limit\n", __func__);
  532. i32_ret = -EIO;
  533. }
  534. return i32_ret;
  535. }
  536. int raydium_i2c_pda2_read(struct i2c_client *client,
  537. unsigned char u8_addr,
  538. unsigned char *u8_r_data,
  539. unsigned short u16_length)
  540. {
  541. int i32_ret = -1;
  542. unsigned char u8_retry;
  543. struct i2c_msg msg[] = {
  544. {
  545. .addr = RAYDIUM_I2C_NID,
  546. .flags = RAYDIUM_I2C_WRITE,
  547. .len = 1,
  548. .buf = &u8_addr,
  549. },
  550. {
  551. .addr = RAYDIUM_I2C_NID,
  552. .flags = RAYDIUM_I2C_READ,
  553. .len = u16_length,
  554. .buf = u8_r_data,
  555. },
  556. };
  557. g_u8_i2c_mode = PDA2_MODE;
  558. for (u8_retry = 0; u8_retry < SYN_I2C_RETRY_TIMES; u8_retry++) {
  559. if (i2c_transfer(g_raydium_ts->client->adapter, msg, 2) == 2) {
  560. i32_ret = u16_length;
  561. break;
  562. }
  563. usleep_range(500, 1500);
  564. }
  565. if (u8_retry == SYN_I2C_RETRY_TIMES) {
  566. LOGD(LOG_ERR, "[touch]%s: I2C read over retry limit\n", __func__);
  567. i32_ret = -EIO;
  568. }
  569. return i32_ret;
  570. }
  571. int raydium_i2c_pda2_write(struct i2c_client *client,
  572. unsigned char u8_addr,
  573. unsigned char *u8_w_data,
  574. unsigned short u16_length)
  575. {
  576. int i32_ret = -1;
  577. unsigned char u8_retry;
  578. unsigned char u8_buf[MAX_WRITE_PACKET_SIZE + 1];
  579. struct i2c_msg msg[] = {
  580. {
  581. .addr = RAYDIUM_I2C_NID,
  582. .flags = RAYDIUM_I2C_WRITE,
  583. .len = u16_length + 1,
  584. .buf = u8_buf,
  585. },
  586. };
  587. if (u16_length > MAX_WRITE_PACKET_SIZE)
  588. return -EINVAL;
  589. g_u8_i2c_mode = PDA2_MODE;
  590. u8_buf[0] = u8_addr;
  591. memcpy(&u8_buf[1], u8_w_data, u16_length);
  592. for (u8_retry = 0; u8_retry < SYN_I2C_RETRY_TIMES; u8_retry++) {
  593. if (i2c_transfer(client->adapter, msg, 1) == 1) {
  594. i32_ret = u16_length;
  595. break;
  596. }
  597. usleep_range(500, 1500);
  598. }
  599. if (u8_retry == SYN_I2C_RETRY_TIMES) {
  600. LOGD(LOG_ERR, "[touch]%s: I2C write over retry limit\n", __func__);
  601. i32_ret = -EIO;
  602. }
  603. return i32_ret;
  604. }
  605. void raydium_irq_control(bool enable)
  606. {
  607. if (enable) {
  608. if (g_raydium_ts->irq_enabled) {
  609. /*mutex_unlock(&ts->lock);*/
  610. LOGD(LOG_INFO, "[touch]Already enable irq\n");
  611. return;
  612. }
  613. /* Clear interrupts first */
  614. if (g_raydium_ts->blank != DRM_PANEL_BLANK_POWERDOWN) {
  615. if (g_u8_i2c_mode == PDA2_MODE) {
  616. mutex_lock(&g_raydium_ts->lock);
  617. if (raydium_i2c_pda2_set_page(g_raydium_ts->client,
  618. g_raydium_ts->is_suspend,
  619. RAYDIUM_PDA2_PAGE_0) < 0)
  620. LOGD(LOG_ERR, "[touch]set page fail%s\n", __func__);
  621. mutex_unlock(&g_raydium_ts->lock);
  622. usleep_range(500, 1500);
  623. }
  624. }
  625. while (g_raydium_ts->irq_desc->depth > 0) {
  626. LOGD(LOG_INFO, "[touch]irq enable\n");
  627. g_raydium_ts->irq_enabled = true;
  628. enable_irq(g_raydium_ts->irq);
  629. }
  630. } else {
  631. if (g_raydium_ts->irq_enabled) {
  632. if (g_raydium_ts->irq_desc->depth == 0) {
  633. disable_irq(g_raydium_ts->irq);
  634. g_raydium_ts->irq_enabled = false;
  635. LOGD(LOG_INFO, "[touch]irq disable\n");
  636. }
  637. }
  638. }
  639. }
  640. unsigned char raydium_disable_i2c_deglitch(void)
  641. {
  642. unsigned int u32_buf = 0;
  643. unsigned char u8_retry = 3, u8_comfirm_time = 3;
  644. unsigned char u8_check = 0, u8_i = 0;
  645. unsigned int u32_i2c_deglitch = 0x07060000;
  646. unsigned char u8_buf[4];
  647. while (u8_retry--) {
  648. u32_buf = 0;
  649. handle_i2c_pda_read(g_raydium_ts->client, RAYDIUM_CHK_I2C_CMD,
  650. (unsigned char *)(&u32_buf), 4);
  651. if ((u32_buf & 0xFFFF0000) == 0xF3030000)
  652. u8_check++;
  653. }
  654. if (u8_check == 3) {
  655. LOGD(LOG_INFO, "[touch]PDA2 OK\r\n");
  656. return SUCCESS;
  657. }
  658. g_u8_i2c_mode = PDA_MODE;
  659. u8_retry = 100;
  660. while (u8_retry--) {
  661. u8_check = 0;
  662. for (u8_i = 0; u8_i < u8_comfirm_time; u8_i++) {
  663. /*check I2C*/
  664. u32_buf = 0;
  665. if (handle_i2c_pda_read(g_raydium_ts->client,
  666. RAYDIUM_PDA_I2CENG,
  667. (unsigned char *)(&u32_buf), 4) == ERROR) {
  668. LOGD(LOG_ERR, "[touch]%s: 1.handle_ic_read I2C NG!\r\n", __func__);
  669. break;
  670. }
  671. if (u32_buf == u32_i2c_deglitch)
  672. u8_check++;
  673. else
  674. break;
  675. }
  676. if (u8_check == u8_comfirm_time)
  677. break;
  678. if (handle_i2c_pda_write(g_raydium_ts->client, RAYDIUM_PDA_I2CENG,
  679. (unsigned char *)(&u32_i2c_deglitch), 4) == ERROR) {
  680. LOGD(LOG_ERR, "[touch]%s:handle_ic_write I2C NG!\r\n", __func__);
  681. continue;
  682. }
  683. u8_check = 0;
  684. for (u8_i = 0; u8_i < u8_comfirm_time; u8_i++) {
  685. /*check I2C*/
  686. u32_buf = 0;
  687. if (handle_i2c_pda_read(g_raydium_ts->client,
  688. RAYDIUM_PDA_I2CENG,
  689. (unsigned char *)(&u32_buf), 4) == ERROR) {
  690. LOGD(LOG_ERR, "[touch]%s:2.handle_ic_read I2C NG!\r\n", __func__);
  691. break;
  692. }
  693. if (u32_buf == u32_i2c_deglitch)
  694. u8_check++;
  695. else
  696. break;
  697. }
  698. if (u8_check == u8_comfirm_time)
  699. break;
  700. }
  701. if (u8_retry == 0)
  702. return ERROR;
  703. u32_buf = 0x03;
  704. if (handle_i2c_pda_write(g_raydium_ts->client, RAYDIUM_REG_GPIO_DEGLITCH,
  705. (unsigned char *)(&u32_buf), 4) == ERROR) {
  706. LOGD(LOG_ERR, "[touch]%s:3.handle_ic_write I2C NG!\r\n", __func__);
  707. return ERROR;
  708. }
  709. /*Disable PDA*/
  710. handle_i2c_pda_read(g_raydium_ts->client, RAYDIUM_PDA_I2CREG, u8_buf, 4);
  711. u8_buf[0] |= RAD_ENABLE_PDA2 | RAD_ENABLE_SI2;
  712. handle_i2c_pda_write(g_raydium_ts->client, RAYDIUM_PDA_I2CREG, u8_buf, 4);
  713. raydium_i2c_pda_set_address(0x50000628, DISABLE);
  714. g_u8_i2c_mode = PDA2_MODE;
  715. return SUCCESS;
  716. }
  717. #ifdef CONFIG_RM_SYSFS_DEBUG
  718. int raydium_i2c_mode_control(struct i2c_client *client,
  719. unsigned char u8_mode)
  720. {
  721. unsigned char u8_buf[4];
  722. switch (u8_mode) {
  723. case 0: /* Disable INT flag */
  724. LOGD(LOG_INFO, "[touch]RAD INT flag : %d\n", g_raydium_ts->irq_enabled);
  725. disable_irq(g_raydium_ts->irq);
  726. g_raydium_ts->irq_enabled = false;
  727. LOGD(LOG_INFO, "[touch]RAD irq disable\n");
  728. break;
  729. case 1: /* Enable INT flag */
  730. LOGD(LOG_INFO, "[touch]RAD INT flag : %d\n", g_raydium_ts->irq_enabled);
  731. enable_irq(g_raydium_ts->irq);
  732. g_raydium_ts->irq_enabled = true;
  733. LOGD(LOG_INFO, "[touch]RAD irq enable\n");
  734. break;
  735. case 2: /* Disable INT by raydium_irq_control */
  736. raydium_irq_control(DISABLE);
  737. break;
  738. case 3: /* Enable INT by raydium_irq_control */
  739. raydium_irq_control(ENABLE);
  740. break;
  741. case 4: /* Show RAD INT depth */
  742. LOGD(LOG_INFO, "[touch]RAD INT depth : %d\n", g_raydium_ts->irq_desc->depth);
  743. break;
  744. case 7:
  745. raydium_i2c_pda2_set_page(client,
  746. g_raydium_ts->is_suspend, RAYDIUM_PDA2_2_PDA);
  747. g_u8_i2c_mode = PDA_MODE;
  748. LOGD(LOG_INFO, "[touch]Disable PDA2_MODE\n");
  749. break;
  750. case 8:
  751. raydium_i2c_pda_read(client, RAYDIUM_PDA_I2CREG, u8_buf, 4);
  752. u8_buf[0] |= RAD_ENABLE_PDA2 | RAD_ENABLE_SI2;
  753. raydium_i2c_pda_write(client, RAYDIUM_PDA_I2CREG, u8_buf, 4);
  754. raydium_i2c_pda_set_address(RAYDIUM_PDA_I2CREG, DISABLE);
  755. g_u8_i2c_mode = PDA2_MODE;
  756. LOGD(LOG_INFO, "[touch]Enable PDA2_MODE\n");
  757. break;
  758. }
  759. return 0;
  760. }
  761. const struct attribute_group raydium_attr_group = {
  762. .attrs = raydium_attributes
  763. };
  764. /*create sysfs for debug update firmware*/
  765. static int raydium_create_sysfs(struct i2c_client *client)
  766. {
  767. int ret = -1;
  768. ret = sysfs_create_group(&(client->dev.kobj), &raydium_attr_group);
  769. if (ret) {
  770. LOGD(LOG_ERR, "[touch]failed to register sysfs\n");
  771. sysfs_remove_group(&client->dev.kobj, &raydium_attr_group);
  772. ret = -EIO;
  773. } else {
  774. LOGD(LOG_DEBUG, "[touch]create raydium sysfs attr_group successful\n");
  775. }
  776. return ret;
  777. }
  778. static void raydium_release_sysfs(struct i2c_client *client)
  779. {
  780. sysfs_remove_group(&client->dev.kobj, &raydium_attr_group);
  781. }
  782. #endif /*end of CONFIG_RM_SYSFS_DEBUG*/
  783. #ifdef ESD_SOLUTION_EN
  784. int raydium_esd_check(void)
  785. {
  786. int i32_ret = 0;
  787. unsigned char u8_esd_status[MAX_TCH_STATUS_PACKET_SIZE];
  788. mutex_lock(&g_raydium_ts->lock);
  789. if (g_u8_i2c_mode == PDA2_MODE) {
  790. i32_ret = raydium_i2c_pda2_set_page(g_raydium_ts->client,
  791. g_raydium_ts->is_suspend,
  792. RAYDIUM_PDA2_PAGE_0);
  793. if (i32_ret < 0)
  794. goto exit;
  795. /*read esd status*/
  796. i32_ret = raydium_i2c_pda2_read(g_raydium_ts->client,
  797. RAYDIUM_PDA2_TCH_RPT_STATUS_ADDR,
  798. u8_esd_status, MAX_TCH_STATUS_PACKET_SIZE);
  799. if (i32_ret < 0) {
  800. LOGD(LOG_ERR, "[touch]%s: failed to read data: %d\n",
  801. __func__, __LINE__);
  802. goto exit;
  803. }
  804. if (u8_esd_status[POS_FW_STATE] != 0x1A &&
  805. u8_esd_status[POS_FW_STATE] != 0xAA) {
  806. if (g_u8_resetflag == true) {
  807. LOGD(LOG_ERR, "[touch]%s -> filter abnormal irq\n"
  808. , __func__);
  809. goto exit;
  810. }
  811. LOGD(LOG_ERR, "[touch]%s -> abnormal irq, FW state = 0x%x\n",
  812. __func__, u8_esd_status[POS_FW_STATE]);
  813. g_u8_resetflag = false;
  814. i32_ret = -1;
  815. goto exit;
  816. }
  817. g_u8_resetflag = false;
  818. }
  819. exit:
  820. mutex_unlock(&g_raydium_ts->lock);
  821. LOGD(LOG_INFO, "[touch]%s\n", __func__);
  822. return i32_ret;
  823. }
  824. #endif
  825. static int raydium_touch_report(unsigned char *p_u8_buf,
  826. unsigned char u8_points_amount)
  827. {
  828. unsigned char u8_i, u8_j, u8_offset = 0, u8_pt_id;
  829. signed short i16_wx, i16_wy;
  830. /* number of touch points */
  831. unsigned char u8_touch_count = 0;
  832. //DECLARE_BITMAP(ids, g_raydium_ts->u8_max_touchs);
  833. unsigned long *ids = NULL;
  834. ids = kzalloc(sizeof(*ids)*BITS_TO_LONGS(g_raydium_ts->u8_max_touchs), GFP_KERNEL);
  835. if (!ids)
  836. return -ENOMEM;
  837. bitmap_zero(ids, g_raydium_ts->u8_max_touchs);
  838. for (u8_i = 0; u8_i < (g_raydium_ts->u8_max_touchs * 2); u8_i++) {
  839. gst_slot[u8_i].need_update = 0;
  840. gst_slot[u8_i].pt_report_offset = 0;
  841. }
  842. /*Check incoming point info*/
  843. for (u8_i = 0; u8_i < u8_points_amount; u8_i++) {
  844. u8_pt_id = p_u8_buf[POS_PT_ID + u8_i * LEN_PT];
  845. /* Current*/
  846. for (u8_j = 0; u8_j < g_raydium_ts->u8_max_touchs; u8_j++) {
  847. if (u8_pt_id == gst_slot[u8_j].pt_id) {
  848. gst_slot[u8_j].need_update = 1;
  849. gst_slot[u8_j].pt_report_offset = u8_i;
  850. break;
  851. }
  852. }
  853. /* New coming*/
  854. if (u8_j == g_raydium_ts->u8_max_touchs) {
  855. for (u8_j = g_raydium_ts->u8_max_touchs;
  856. u8_j < (g_raydium_ts->u8_max_touchs * 2); u8_j++) {
  857. if (!gst_slot[u8_j].need_update) {
  858. gst_slot[u8_j].pt_id = u8_pt_id;
  859. gst_slot[u8_j].need_update = 1;
  860. gst_slot[u8_j].pt_report_offset = u8_i;
  861. LOGD(LOG_DEBUG, "[touch]x:%d,y:%d\n",
  862. p_u8_buf[POS_X_L + u8_offset] |
  863. p_u8_buf[POS_X_H + u8_offset] << 8,
  864. p_u8_buf[POS_Y_L + u8_offset] |
  865. p_u8_buf[POS_Y_H + u8_offset] << 8);
  866. break;
  867. }
  868. }
  869. }
  870. }
  871. /*Release slot with non-occupied point*/
  872. for (u8_i = 0; u8_i < g_raydium_ts->u8_max_touchs; u8_i++) {
  873. if (!gst_slot[u8_i].need_update) {
  874. input_mt_slot(g_raydium_ts->input_dev, u8_i);
  875. input_mt_report_slot_state(g_raydium_ts->input_dev,
  876. MT_TOOL_FINGER, false);
  877. gst_slot[u8_i].pt_id = 0xFF;
  878. gst_slot[u8_i].pt_report_offset = 0;
  879. gst_slot[u8_i].need_update = 0;
  880. }
  881. }
  882. /*Assign new one to non-occupied slot*/
  883. for (u8_i = g_raydium_ts->u8_max_touchs;
  884. u8_i < (g_raydium_ts->u8_max_touchs * 2); u8_i++) {
  885. if (gst_slot[u8_i].need_update) {
  886. for (u8_j = 0; u8_j < g_raydium_ts->u8_max_touchs; u8_j++) {
  887. if (!gst_slot[u8_j].need_update) {
  888. gst_slot[u8_j] = gst_slot[u8_i];
  889. gst_slot[u8_i] = gst_slot_init;
  890. break;
  891. }
  892. }
  893. } else {
  894. break;
  895. }
  896. }
  897. for (u8_i = 0; u8_i < g_raydium_ts->u8_max_touchs; u8_i++) {
  898. if (gst_slot[u8_i].need_update) {
  899. u8_offset = gst_slot[u8_i].pt_report_offset * LEN_PT;
  900. g_raydium_ts->x_pos[u8_i] = p_u8_buf[POS_X_L + u8_offset] |
  901. p_u8_buf[POS_X_H + u8_offset] << BYTE_SHIFT;
  902. g_raydium_ts->y_pos[u8_i] = p_u8_buf[POS_Y_L + u8_offset] |
  903. p_u8_buf[POS_Y_H + u8_offset] << BYTE_SHIFT;
  904. g_raydium_ts->pressure = p_u8_buf[POS_PRESSURE_L + u8_offset] |
  905. p_u8_buf[POS_PRESSURE_H + u8_offset] << BYTE_SHIFT;
  906. i16_wx = p_u8_buf[POS_WX_L + u8_offset] |
  907. p_u8_buf[POS_WX_H + u8_offset] << BYTE_SHIFT;
  908. i16_wy = p_u8_buf[POS_WY_L + u8_offset] |
  909. p_u8_buf[POS_WY_H + u8_offset] << BYTE_SHIFT;
  910. input_mt_slot(g_raydium_ts->input_dev, u8_i);
  911. input_mt_report_slot_state(g_raydium_ts->input_dev,
  912. MT_TOOL_FINGER, true);
  913. __set_bit(u8_i, ids);
  914. input_report_abs(g_raydium_ts->input_dev,
  915. ABS_MT_POSITION_X, g_raydium_ts->x_pos[u8_i]);
  916. input_report_abs(g_raydium_ts->input_dev,
  917. ABS_MT_POSITION_Y, g_raydium_ts->y_pos[u8_i]);
  918. input_report_abs(g_raydium_ts->input_dev,
  919. ABS_MT_PRESSURE, g_raydium_ts->pressure);
  920. input_report_abs(g_raydium_ts->input_dev,
  921. ABS_MT_TOUCH_MAJOR, max(i16_wx, i16_wy));
  922. input_report_abs(g_raydium_ts->input_dev,
  923. ABS_MT_TOUCH_MINOR, min(i16_wx, i16_wy));
  924. LOGD(LOG_DEBUG, "[touch:%d]x:%d,y:%d\n",
  925. u8_i,
  926. p_u8_buf[POS_X_L + u8_offset] |
  927. p_u8_buf[POS_X_H + u8_offset] << 8,
  928. p_u8_buf[POS_Y_L + u8_offset] |
  929. p_u8_buf[POS_Y_H + u8_offset] << 8);
  930. u8_touch_count++;
  931. }
  932. }
  933. input_report_key(g_raydium_ts->input_dev,
  934. BTN_TOUCH, u8_touch_count > 0);
  935. input_report_key(g_raydium_ts->input_dev,
  936. BTN_TOOL_FINGER, u8_touch_count > 0);
  937. for (u8_i = 0; u8_i < g_raydium_ts->u8_max_touchs; u8_i++) {
  938. if (test_bit(u8_i, ids))
  939. continue;
  940. input_mt_slot(g_raydium_ts->input_dev, u8_i);
  941. input_mt_report_slot_state(g_raydium_ts->input_dev,
  942. MT_TOOL_FINGER, false);
  943. }
  944. input_sync(g_raydium_ts->input_dev);
  945. kfree(ids);
  946. return 0;
  947. }
  948. int raydium_read_touchdata(unsigned char *p_u8_tp_status, unsigned char *p_u8_buf)
  949. {
  950. int i32_ret = 0;
  951. unsigned char u8_points_amount;
  952. static unsigned char u8_seq_no;
  953. unsigned char u8_retry;
  954. unsigned char u8_read_size;
  955. unsigned char u8_read_buf[MAX_REPORT_PACKET_SIZE];
  956. u8_retry = 3;
  957. mutex_lock(&g_raydium_ts->lock);
  958. while (u8_retry != 0) {
  959. i32_ret = raydium_i2c_pda2_set_page(g_raydium_ts->client,
  960. g_raydium_ts->is_suspend, RAYDIUM_PDA2_PAGE_0);
  961. if (i32_ret < 0) {
  962. msleep(250);
  963. u8_retry--;
  964. } else
  965. break;
  966. }
  967. if (u8_retry == 0) {
  968. LOGD(LOG_ERR, "[touch]%s: failed to set page\n", __func__);
  969. goto reset_error;
  970. }
  971. memset(u8_read_buf, 0, MAX_REPORT_PACKET_SIZE);
  972. memset(p_u8_buf, 0, MAX_REPORT_PACKET_SIZE);
  973. memset(p_u8_tp_status, 0, MAX_TCH_STATUS_PACKET_SIZE);
  974. u8_read_size = 4 + MAX_TOUCH_NUM * LEN_PT + 1;
  975. /*read touch point information*/
  976. i32_ret = raydium_i2c_pda2_read(g_raydium_ts->client,
  977. RAYDIUM_PDA2_TCH_RPT_STATUS_ADDR,
  978. u8_read_buf, u8_read_size);
  979. if (i32_ret < 0) {
  980. LOGD(LOG_ERR, "[touch]%s: failed to read data: %d\n",
  981. __func__, __LINE__);
  982. goto exit_error;
  983. }
  984. memcpy(p_u8_tp_status, &u8_read_buf[0], MAX_TCH_STATUS_PACKET_SIZE);
  985. #ifdef ESD_SOLUTION_EN
  986. if (p_u8_tp_status[POS_FW_STATE] != 0x1A &&
  987. p_u8_tp_status[POS_FW_STATE] != 0xAA) {
  988. if (g_u8_resetflag == true) {
  989. LOGD(LOG_ERR, "[touch]%s -> filter irq, FW state = 0x%x\n",
  990. __func__, p_u8_tp_status[POS_FW_STATE]);
  991. i32_ret = -1;
  992. g_u8_resetflag = false;
  993. goto exit_error;
  994. }
  995. LOGD(LOG_ERR, "[touch]%s -> abnormal irq, FW state = 0x%x\n",
  996. __func__, p_u8_tp_status[POS_FW_STATE]);
  997. i32_ret = -1;
  998. goto reset_error;
  999. }
  1000. #endif
  1001. /* inform IC to prepare next report*/
  1002. if (u8_seq_no == p_u8_tp_status[POS_SEQ]) {
  1003. p_u8_tp_status[POS_SEQ] = 0;
  1004. i32_ret = raydium_i2c_pda2_write(g_raydium_ts->client,
  1005. RAYDIUM_PDA2_TCH_RPT_STATUS_ADDR, p_u8_tp_status, 1);
  1006. if (i32_ret < 0) {
  1007. LOGD(LOG_ERR, "[touch]%s: write data failed: %d\n", __func__, i32_ret);
  1008. goto exit_error;
  1009. }
  1010. LOGD(LOG_DEBUG, "[touch]%s -> report not updated.\n", __func__);
  1011. goto exit_error;
  1012. }
  1013. u8_seq_no = p_u8_tp_status[POS_SEQ];
  1014. p_u8_tp_status[POS_SEQ] = 0;
  1015. i32_ret = raydium_i2c_pda2_write(g_raydium_ts->client,
  1016. RAYDIUM_PDA2_TCH_RPT_STATUS_ADDR, p_u8_tp_status, 1);
  1017. if (i32_ret < 0) {
  1018. LOGD(LOG_ERR, "[touch]%s: write data failed: %d\n", __func__, i32_ret);
  1019. goto exit_error;
  1020. }
  1021. u8_points_amount = p_u8_tp_status[POS_PT_AMOUNT];
  1022. if (u8_points_amount > MAX_TOUCH_NUM)
  1023. goto exit_error;
  1024. memcpy(p_u8_buf, &u8_read_buf[4], u8_points_amount * LEN_PT);
  1025. raydium_touch_report(p_u8_buf, u8_points_amount);
  1026. exit_error:
  1027. mutex_unlock(&g_raydium_ts->lock);
  1028. return i32_ret;
  1029. reset_error:
  1030. mutex_unlock(&g_raydium_ts->lock);
  1031. #ifdef ESD_SOLUTION_EN
  1032. u8_retry = 3;
  1033. while (u8_retry != 0) {
  1034. i32_ret = raydium_hw_reset_fun(g_raydium_ts->client);
  1035. LOGD(LOG_ERR, "[touch]%s: HW reset\n", __func__);
  1036. if (i32_ret < 0) {
  1037. msleep(100);
  1038. u8_retry--;
  1039. } else
  1040. break;
  1041. }
  1042. #endif
  1043. return i32_ret;
  1044. }
  1045. static void raydium_work_handler(struct work_struct *work)
  1046. {
  1047. int i32_ret = 0;
  1048. unsigned char u8_tp_status[MAX_TCH_STATUS_PACKET_SIZE];
  1049. unsigned char u8_buf[MAX_REPORT_PACKET_SIZE];
  1050. #ifdef GESTURE_EN
  1051. unsigned char u8_i;
  1052. LOGD(LOG_DEBUG, "[touch]ts->blank:%x, g_u8_i2c_mode:%x\n",
  1053. g_raydium_ts->blank, g_u8_i2c_mode);
  1054. LOGD(LOG_DEBUG, "[touch]u8_tp_status:%x, g_raydium_ts->is_palm:%x\n",
  1055. u8_tp_status[POS_GES_STATUS], g_raydium_ts->is_palm);
  1056. if (g_u8_i2c_mode == PDA2_MODE) {
  1057. i32_ret = raydium_read_touchdata(u8_tp_status, u8_buf);
  1058. if (i32_ret < 0) {
  1059. LOGD(LOG_ERR, "[touch]%s, read_touchdata error, ret:%d\n",
  1060. __func__, i32_ret);
  1061. return;
  1062. }
  1063. }
  1064. if (g_raydium_ts->blank == DRM_PANEL_BLANK_LP ||
  1065. g_raydium_ts->blank == DRM_PANEL_BLANK_POWERDOWN || g_raydium_ts->fb_state == FB_OFF) {
  1066. LOGD(LOG_DEBUG, "[touch] elseif u8_tp_status:%x\n", u8_tp_status[POS_GES_STATUS]);
  1067. /*need check small area*/
  1068. /*if (u8_tp_status[POS_GES_STATUS] == RAD_WAKE_UP */
  1069. /*&& g_u8_wakeup_flag == false) { */
  1070. if (u8_tp_status[POS_GES_STATUS] == 0) {
  1071. input_report_key(g_raydium_ts->input_dev, KEY_WAKEUP, true);
  1072. usleep_range(9500, 10500);
  1073. input_sync(g_raydium_ts->input_dev);
  1074. input_report_key(g_raydium_ts->input_dev, KEY_WAKEUP, false);
  1075. input_sync(g_raydium_ts->input_dev);
  1076. LOGD(LOG_DEBUG, "[touch]display wake up with g_u8_resetflag true\n");
  1077. /*goto exit;*/
  1078. }
  1079. }
  1080. /*when display on can use palm to suspend*/
  1081. else if (g_raydium_ts->blank == DRM_PANEL_BLANK_UNBLANK) {
  1082. if (u8_tp_status[POS_GES_STATUS] == RAD_PALM_ENABLE) {
  1083. if (g_raydium_ts->is_palm == 0) {
  1084. /* release all touches*/
  1085. for (u8_i = 0; u8_i < g_raydium_ts->u8_max_touchs;
  1086. u8_i++) {
  1087. input_mt_slot(g_raydium_ts->input_dev,
  1088. u8_i);
  1089. input_mt_report_slot_state(
  1090. g_raydium_ts->input_dev,
  1091. MT_TOOL_FINGER, false);
  1092. }
  1093. input_mt_report_pointer_emulation(
  1094. g_raydium_ts->input_dev,
  1095. false);
  1096. /*press sleep key*/
  1097. input_report_key(g_raydium_ts->input_dev,
  1098. KEY_SLEEP, true);
  1099. input_sync(g_raydium_ts->input_dev);
  1100. LOGD(LOG_INFO, "[touch]palm_status = %d.\n",
  1101. u8_tp_status[POS_GES_STATUS]);
  1102. g_raydium_ts->is_palm = 1;
  1103. /*goto exit;*/
  1104. }
  1105. } else if ((u8_tp_status[POS_GES_STATUS]
  1106. == RAD_PALM_DISABLE)
  1107. && (g_raydium_ts->is_palm == 1)) {
  1108. LOGD(LOG_INFO, "[touch]leave palm mode.\n");
  1109. input_report_key(g_raydium_ts->input_dev,
  1110. KEY_SLEEP, false);
  1111. input_sync(g_raydium_ts->input_dev);
  1112. /*raydium_irq_control(raydium_ts, DISABLE);*/
  1113. g_raydium_ts->is_palm = 0;
  1114. /*goto exit;*/
  1115. }
  1116. }
  1117. #else
  1118. if (g_u8_i2c_mode == PDA2_MODE) {
  1119. i32_ret = raydium_read_touchdata(u8_tp_status, u8_buf);
  1120. if (i32_ret < 0) {
  1121. LOGD(LOG_ERR, "[touch]%s, read_touchdata error, ret:%d\n",
  1122. __func__, i32_ret);
  1123. }
  1124. }
  1125. #endif
  1126. }
  1127. /*The raydium device will signal the host about TRIGGER_FALLING.
  1128. *Processed when the interrupt is asserted.
  1129. */
  1130. static irqreturn_t raydium_ts_interrupt(int irq, void *dev_id)
  1131. {
  1132. bool result = false;
  1133. LOGD(LOG_DEBUG, "[touch]%s\n", __func__);
  1134. /*For bootloader wrt/erase flash and software reset interrupt*/
  1135. if ((g_u8_raydium_flag & ENG_MODE) != 0) {
  1136. LOGD(LOG_INFO, "[touch]RAD_ENG_MODE\n");
  1137. g_u8_raydium_flag |= INT_FLAG;
  1138. } else {
  1139. if (!work_pending(&g_raydium_ts->work)) {
  1140. /* Clear interrupts*/
  1141. result = queue_work(g_raydium_ts->workqueue,
  1142. &g_raydium_ts->work);
  1143. if (!result) {
  1144. /*queue_work fail*/
  1145. LOGD(LOG_ERR, "[touch]queue_work fail.\n");
  1146. }
  1147. } else {
  1148. /*work pending*/
  1149. mutex_lock(&g_raydium_ts->lock);
  1150. if (raydium_i2c_pda2_set_page(g_raydium_ts->client,
  1151. g_raydium_ts->is_suspend,
  1152. RAYDIUM_PDA2_PAGE_0) < 0) {
  1153. LOGD(LOG_ERR, "[touch]%s: failed to set page in work_pending\n",
  1154. __func__);
  1155. }
  1156. mutex_unlock(&g_raydium_ts->lock);
  1157. LOGD(LOG_DEBUG, "[touch]work_pending\n");
  1158. }
  1159. }
  1160. return IRQ_HANDLED;
  1161. }
  1162. static int raydium_check_i2c_ready(unsigned short *u16_i2c_data)
  1163. {
  1164. unsigned char u8_buf[4];
  1165. int i32_ret = ERROR;
  1166. mutex_lock(&g_raydium_ts->lock);
  1167. if (g_u8_i2c_mode == PDA2_MODE) {
  1168. i32_ret = handle_i2c_pda_read(g_raydium_ts->client,
  1169. RAYDIUM_CHK_I2C_CMD, u8_buf, 4);
  1170. if (i32_ret < 0)
  1171. goto exit_error;
  1172. if (u8_buf[3] != 0xF3) {
  1173. LOGD(LOG_ERR, "[touch]PDA2 read i2c fail\n");
  1174. g_u8_i2c_mode = PDA_MODE;
  1175. i32_ret = handle_i2c_pda_read(g_raydium_ts->client,
  1176. RAYDIUM_CHK_I2C_CMD, u8_buf, 4);
  1177. if (i32_ret < 0)
  1178. goto exit_error;
  1179. }
  1180. } else {
  1181. i32_ret = handle_i2c_pda_read(g_raydium_ts->client,
  1182. RAYDIUM_CHK_I2C_CMD, u8_buf, 4);
  1183. if (i32_ret < 0)
  1184. goto exit_error;
  1185. }
  1186. *u16_i2c_data = u8_buf[3] << 8 | u8_buf[2];
  1187. LOGD(LOG_DEBUG, "[touch]RAD check I2C : 0x%02X%02X\n", u8_buf[3], u8_buf[2]);
  1188. exit_error:
  1189. mutex_unlock(&g_raydium_ts->lock);
  1190. return i32_ret;
  1191. }
  1192. #if defined(CONFIG_PM)
  1193. static void raydium_ts_do_suspend(void)
  1194. {
  1195. unsigned char u8_i = 0;
  1196. LOGD(LOG_INFO, "[touch]%s.\n", __func__);
  1197. if (g_u8_raw_data_type == 0)
  1198. g_u8_resetflag = false;
  1199. if (g_raydium_ts->is_suspend == 1) {
  1200. LOGD(LOG_WARNING, "[touch]Already in suspend state\n");
  1201. return;
  1202. }
  1203. /*#ifndef GESTURE_EN*/
  1204. raydium_irq_control(DISABLE);
  1205. /*#endif*/
  1206. /*clear workqueue*/
  1207. if (!cancel_work_sync(&g_raydium_ts->work))
  1208. LOGD(LOG_DEBUG, "[touch]workqueue is empty!\n");
  1209. /* release all touches */
  1210. for (u8_i = 0; u8_i < g_raydium_ts->u8_max_touchs; u8_i++) {
  1211. input_mt_slot(g_raydium_ts->input_dev, u8_i);
  1212. input_mt_report_slot_state(g_raydium_ts->input_dev,
  1213. MT_TOOL_FINGER,
  1214. false);
  1215. }
  1216. input_mt_report_pointer_emulation(g_raydium_ts->input_dev, false);
  1217. input_sync(g_raydium_ts->input_dev);
  1218. #ifdef GESTURE_EN
  1219. if (device_may_wakeup(&g_raydium_ts->client->dev)) {
  1220. LOGD(LOG_INFO, "[touch]Device may wakeup\n");
  1221. if (!enable_irq_wake(g_raydium_ts->irq))
  1222. g_raydium_ts->irq_wake = true;
  1223. } else {
  1224. LOGD(LOG_INFO, "[touch]Device not wakeup\n");
  1225. }
  1226. raydium_irq_control(ENABLE);
  1227. #endif
  1228. g_raydium_ts->is_suspend = 1;
  1229. }
  1230. static void raydium_ts_do_resume(void)
  1231. {
  1232. #ifdef ESD_SOLUTION_EN
  1233. int i32_ret = 0;
  1234. unsigned char u8_retry = 0;
  1235. #endif
  1236. LOGD(LOG_INFO, "[touch]%s, %d.\n", __func__, g_raydium_ts->is_suspend);
  1237. if (g_raydium_ts->is_suspend == 0) {
  1238. LOGD(LOG_WARNING, "[touch]Already in resume state\n");
  1239. return;
  1240. }
  1241. /* clear interrupts*/
  1242. mutex_lock(&g_raydium_ts->lock);
  1243. if (raydium_i2c_pda2_set_page(g_raydium_ts->client,
  1244. g_raydium_ts->is_suspend, RAYDIUM_PDA2_PAGE_0) < 0) {
  1245. LOGD(LOG_ERR, "[touch]%s: failed to set page\n", __func__);
  1246. mutex_unlock(&g_raydium_ts->lock);
  1247. return;
  1248. }
  1249. mutex_unlock(&g_raydium_ts->lock);
  1250. /* clear workqueue*/
  1251. if (!cancel_work_sync(&g_raydium_ts->work))
  1252. LOGD(LOG_DEBUG, "[ raydium ]workqueue is empty!\n");
  1253. #ifdef ESD_SOLUTION_EN
  1254. if (g_u8_checkflag == true) {
  1255. i32_ret = raydium_esd_check();
  1256. if (i32_ret < 0) {
  1257. u8_retry = 3;
  1258. while (u8_retry != 0) {
  1259. i32_ret = raydium_hw_reset_fun(g_raydium_ts->client);
  1260. if (i32_ret < 0) {
  1261. msleep(100);
  1262. u8_retry--;
  1263. } else
  1264. break;
  1265. }
  1266. }
  1267. g_u8_checkflag = false;
  1268. }
  1269. #endif
  1270. raydium_irq_control(ENABLE);
  1271. #ifdef GESTURE_EN
  1272. if (device_may_wakeup(&g_raydium_ts->client->dev)) {
  1273. LOGD(LOG_INFO, "[touch]Device may wakeup\n");
  1274. if (g_raydium_ts->irq_wake) {
  1275. disable_irq_wake(g_raydium_ts->irq);
  1276. g_raydium_ts->irq_wake = false;
  1277. }
  1278. } else
  1279. LOGD(LOG_INFO, "[touch]Device not wakeup\n");
  1280. #endif
  1281. g_raydium_ts->is_suspend = 0;
  1282. }
  1283. static int raydium_ts_suspend(struct device *dev)
  1284. {
  1285. raydium_ts_do_suspend();
  1286. return 0;
  1287. }
  1288. static int raydium_ts_resume(struct device *dev)
  1289. {
  1290. raydium_ts_do_resume();
  1291. return 0;
  1292. }
  1293. static const struct dev_pm_ops raydium_ts_pm_ops = {
  1294. #if (!defined(CONFIG_FB) && !defined(CONFIG_HAS_EARLYSUSPEND))
  1295. .suspend = raydium_ts_suspend,
  1296. .resume = raydium_ts_resume,
  1297. #endif /*end of CONFIG_PM*/
  1298. };
  1299. /*used for touch lock feature*/
  1300. static int raydium_ts_open(struct input_dev *input_dev)
  1301. {
  1302. //int i32_ret = 0;
  1303. LOGD(LOG_DEBUG, "[touch]%s()+\n", __func__);
  1304. LOGD(LOG_DEBUG, "[touch]ts->blank:%x\n", g_raydium_ts->blank);
  1305. if (g_raydium_ts->is_sleep == 1) {
  1306. mutex_lock(&g_raydium_ts->lock);
  1307. if (gpio_is_valid(g_raydium_ts->rst_gpio)) {
  1308. g_u8_resetflag = true;
  1309. gpio_set_value(g_raydium_ts->rst_gpio, 1);
  1310. gpio_set_value(g_raydium_ts->rst_gpio, 0);
  1311. msleep(RAYDIUM_RESET_INTERVAL_MSEC);/*5ms*/
  1312. gpio_set_value(g_raydium_ts->rst_gpio, 1);
  1313. msleep(RAYDIUM_RESET_DELAY_MSEC);/*100ms*/
  1314. g_u8_i2c_mode = PDA2_MODE;
  1315. }
  1316. mutex_unlock(&g_raydium_ts->lock);
  1317. raydium_irq_control(ENABLE);
  1318. g_raydium_ts->is_sleep = 0;
  1319. LOGD(LOG_INFO, "[touch]disable touch lock.\n");
  1320. }
  1321. //return i32_ret;
  1322. return 0;
  1323. }
  1324. static void raydium_ts_close(struct input_dev *input_dev)
  1325. {
  1326. int i32_ret = 0;
  1327. unsigned char u8_i = 0;
  1328. unsigned char u8_wbuffer[1];
  1329. LOGD(LOG_INFO, "[touch]%s()+\n", __func__);
  1330. if (g_raydium_ts->is_sleep == 1) {
  1331. LOGD(LOG_INFO, "[touch]touch lock already enabled.\n");
  1332. return;
  1333. }
  1334. raydium_irq_control(DISABLE);
  1335. for (u8_i = 0; u8_i < g_raydium_ts->u8_max_touchs; u8_i++) {
  1336. input_mt_slot(g_raydium_ts->input_dev, u8_i);
  1337. input_mt_report_slot_state(g_raydium_ts->input_dev,
  1338. MT_TOOL_FINGER,
  1339. false);
  1340. }
  1341. input_mt_report_pointer_emulation(g_raydium_ts->input_dev, false);
  1342. input_sync(g_raydium_ts->input_dev);
  1343. mutex_lock(&g_raydium_ts->lock);
  1344. i32_ret = raydium_i2c_pda2_set_page(g_raydium_ts->client,
  1345. g_raydium_ts->is_suspend, RAYDIUM_PDA2_PAGE_0);
  1346. if (i32_ret < 0) {
  1347. LOGD(LOG_ERR, "[touch]ret:%d\n", i32_ret);
  1348. goto exit_i2c_error;
  1349. }
  1350. u8_wbuffer[0] = RAYDIUM_HOST_CMD_PWR_SLEEP;
  1351. i32_ret = raydium_i2c_pda2_write(g_raydium_ts->client,
  1352. RAYDIUM_PDA2_HOST_CMD_ADDR,
  1353. u8_wbuffer,
  1354. 1);
  1355. if (i32_ret < 0) {
  1356. LOGD(LOG_ERR, "[touch]ret:%d\n", i32_ret);
  1357. goto exit_i2c_error;
  1358. }
  1359. mutex_unlock(&g_raydium_ts->lock);
  1360. g_raydium_ts->is_sleep = 1;
  1361. LOGD(LOG_INFO, "[touch]enable touch lock.\n");
  1362. return;
  1363. exit_i2c_error:
  1364. mutex_unlock(&g_raydium_ts->lock);
  1365. raydium_irq_control(ENABLE);
  1366. }
  1367. #else
  1368. static int raydium_ts_suspend(struct device *dev)
  1369. {
  1370. return 0;
  1371. }
  1372. static int raydium_ts_resume(struct device *dev)
  1373. {
  1374. return 0;
  1375. }
  1376. #endif /*end of CONFIG_FB*/
  1377. #if defined(CONFIG_DRM)
  1378. /*******************************************************************************
  1379. * FUNCTION: drm_notifier_callback
  1380. *
  1381. * SUMMARY: Call back function for DRM notifier to allow to call
  1382. * resume/suspend attention list.
  1383. *
  1384. * RETURN:
  1385. * 0 = success
  1386. *
  1387. * PARAMETERS:
  1388. * self - pointer to notifier_block structure
  1389. * event - event type of fb notifier
  1390. * data - pointer to fb_event structure
  1391. ******************************************************************************/
  1392. static int drm_notifier_callback(struct notifier_block *self,
  1393. unsigned long event, void *data)
  1394. {
  1395. struct raydium_ts_data *g_raydium_ts =
  1396. container_of(self, struct raydium_ts_data, fb_notif);
  1397. struct drm_panel_notifier *evdata = data;
  1398. int *blank;
  1399. LOGD(LOG_INFO, "%s: DRM notifier called!\n", __func__);
  1400. if (!evdata)
  1401. goto exit;
  1402. if (!(event == DRM_PANEL_EARLY_EVENT_BLANK ||
  1403. event == DRM_PANEL_EVENT_BLANK)) {
  1404. LOGD(LOG_INFO, "%s: Event(%lu) do not need process\n",
  1405. __func__, event);
  1406. goto exit;
  1407. }
  1408. blank = evdata->data;
  1409. g_raydium_ts->blank = (*blank);
  1410. LOGD(LOG_INFO, "%s: DRM event:%lu,blank:%d fb_state %d ",
  1411. __func__, event, *blank, g_raydium_ts->fb_state);
  1412. LOGD(LOG_INFO, "%s: DRM Power - %s - FB state %d ",
  1413. __func__, (*blank == DRM_PANEL_BLANK_UNBLANK)?"UP":"DOWN", g_raydium_ts->fb_state);
  1414. if (*blank == DRM_PANEL_BLANK_UNBLANK) {
  1415. LOGD(LOG_INFO, "%s: UNBLANK!\n", __func__);
  1416. if (event == DRM_PANEL_EARLY_EVENT_BLANK) {
  1417. LOGD(LOG_INFO, "%s: resume: event = %lu, not care\n",
  1418. __func__, event);
  1419. } else if (event == DRM_PANEL_EVENT_BLANK) {
  1420. if (g_raydium_ts->fb_state != FB_ON) {
  1421. LOGD(LOG_INFO, "%s: Resume notifier called!\n",
  1422. __func__);
  1423. #ifdef GESTURE_EN
  1424. /* clear palm status */
  1425. g_raydium_ts->is_palm = 0;
  1426. #endif
  1427. #if defined(CONFIG_PM)
  1428. raydium_ts_resume(&g_raydium_ts->client->dev);
  1429. #endif
  1430. g_raydium_ts->fb_state = FB_ON;
  1431. LOGD(LOG_INFO, "%s: Resume notified!\n", __func__);
  1432. }
  1433. }
  1434. } else if (*blank == DRM_PANEL_BLANK_LP || *blank == DRM_PANEL_BLANK_POWERDOWN
  1435. || *blank == DRM_PANEL_BLANK_FPS_CHANGE) {
  1436. LOGD(LOG_INFO, "%s: LOWPOWER!\n", __func__);
  1437. if (event == DRM_PANEL_EARLY_EVENT_BLANK) {
  1438. if (g_raydium_ts->fb_state != FB_OFF) {
  1439. LOGD(LOG_INFO, "%s: Suspend notifier called!\n",
  1440. __func__);
  1441. #ifdef GESTURE_EN
  1442. /* clear palm status */
  1443. g_raydium_ts->is_palm = 0;
  1444. #endif
  1445. #if defined(CONFIG_PM)
  1446. raydium_ts_suspend(&g_raydium_ts->client->dev);
  1447. #endif
  1448. g_raydium_ts->fb_state = FB_OFF;
  1449. LOGD(LOG_INFO, "%s: Suspend notified!\n", __func__);
  1450. }
  1451. } else if (event == DRM_PANEL_EVENT_BLANK) {
  1452. LOGD(LOG_INFO, "%s: suspend: event = %lu, not care\n",
  1453. __func__, event);
  1454. }
  1455. } else {
  1456. LOGD(LOG_INFO, "%s: DRM BLANK(%d) do not need process\n",
  1457. __func__, *blank);
  1458. }
  1459. exit:
  1460. return 0;
  1461. }
  1462. /*******************************************************************************
  1463. * FUNCTION: raydium_setup_drm_notifier
  1464. *
  1465. * SUMMARY: Set up call back function into drm notifier.
  1466. *
  1467. * PARAMETERS:
  1468. * g_raydium_ts - pointer to core data
  1469. *******************************************************************************/
  1470. static void raydium_setup_drm_notifier(struct raydium_ts_data *g_raydium_ts)
  1471. {
  1472. g_raydium_ts->fb_state = FB_ON;
  1473. g_raydium_ts->fb_notif.notifier_call = drm_notifier_callback;
  1474. LOGD(LOG_INFO, "[touch]%s: Setting up drm notifier\n", __func__);
  1475. if (!active_panel)
  1476. LOGD(LOG_ERR, "[touch]%s: Active panel not registered!\n", __func__);
  1477. if (active_panel && drm_panel_notifier_register(active_panel,
  1478. &g_raydium_ts->fb_notif) < 0)
  1479. LOGD(LOG_ERR, "[touch]%s: Register notifier failed!\n", __func__);
  1480. }
  1481. #endif /*end of CONFIG_DRM*/
  1482. /*******************************************************************************
  1483. * FUNCTION: raydium_setup_drm_notifier
  1484. *
  1485. * SUMMARY: Set up call back function into fb notifier.
  1486. *
  1487. * PARAMETERS:
  1488. * g_raydium_ts - pointer to core data
  1489. *******************************************************************************/
  1490. #if defined(CONFIG_FB)
  1491. static int fb_notifier_callback(struct notifier_block *self,
  1492. unsigned long event,
  1493. void *data)
  1494. {
  1495. struct fb_event *evdata = data;
  1496. int *blank;
  1497. if (evdata && evdata->data && event == FB_EVENT_BLANK &&
  1498. g_raydium_ts && g_raydium_ts->client) {
  1499. blank = evdata->data;
  1500. g_raydium_ts->blank = (*blank);
  1501. switch (*blank) {
  1502. /*screen on*/
  1503. case FB_BLANK_UNBLANK:
  1504. LOGD(LOG_INFO, "[touch]FB_BLANK_UNBLANK\n");
  1505. #ifdef GESTURE_EN
  1506. /* clear palm status */
  1507. g_raydium_ts->is_palm = 0;
  1508. #endif
  1509. raydium_ts_resume(&g_raydium_ts->client->dev);
  1510. break;
  1511. /*screen off*/
  1512. case FB_BLANK_POWERDOWN:
  1513. LOGD(LOG_INFO, "[touch]FB_BLANK_POWERDOWN\n");
  1514. #ifdef GESTURE_EN
  1515. /* clear palm status */
  1516. g_raydium_ts->is_palm = 0;
  1517. #endif
  1518. raydium_ts_suspend(&g_raydium_ts->client->dev);
  1519. break;
  1520. /*ambient mode*/
  1521. case FB_BLANK_VSYNC_SUSPEND:
  1522. LOGD(LOG_INFO, "[touch]FB_BLANK_VSYNC_SUSPEND\n");
  1523. #ifdef GESTURE_EN
  1524. /* clear palm status */
  1525. g_raydium_ts->is_palm = 0;
  1526. #endif
  1527. raydium_ts_suspend(&g_raydium_ts->client->dev);
  1528. break;
  1529. default:
  1530. break;
  1531. }
  1532. }
  1533. return 0;
  1534. }
  1535. static void raydium_register_notifier(void)
  1536. {
  1537. memset(&g_raydium_ts->fb_notif, 0, sizeof(g_raydium_ts->fb_notif));
  1538. g_raydium_ts->fb_notif.notifier_call = fb_notifier_callback;
  1539. /* register on the fb notifier and work with fb*/
  1540. if (fb_register_client(&g_raydium_ts->fb_notif))
  1541. LOGD(LOG_ERR, "[touch]register notifier failed\n");
  1542. }
  1543. static void raydium_unregister_notifier(void)
  1544. {
  1545. fb_unregister_client(&g_raydium_ts->fb_notif);
  1546. }
  1547. #elif defined(CONFIG_HAS_EARLYSUSPEND)
  1548. static void raydium_ts_early_suspend(struct early_suspend *handler)
  1549. {
  1550. raydium_ts_do_suspend();
  1551. }
  1552. static void raydium_ts_late_resume(struct early_suspend *handler)
  1553. {
  1554. raydium_ts_do_resume();
  1555. }
  1556. #endif /*end of CONFIG_FB*/
  1557. #ifdef CONFIG_OF
  1558. static int raydium_get_dt_coords(struct device *dev, char *name,
  1559. struct raydium_ts_platform_data *pdata)
  1560. {
  1561. u32 coords[COORDS_ARR_SIZE];
  1562. struct property *prop;
  1563. struct device_node *np = dev->of_node;
  1564. int coords_size, rc;
  1565. prop = of_find_property(np, name, NULL);
  1566. if (!prop)
  1567. return -EINVAL;
  1568. if (!prop->value)
  1569. return -ENODATA;
  1570. coords_size = prop->length / sizeof(u32);
  1571. if (coords_size != COORDS_ARR_SIZE) {
  1572. LOGD(LOG_ERR, "[touch]invalid %s\n", name);
  1573. return -EINVAL;
  1574. }
  1575. rc = of_property_read_u32_array(np, name, coords, coords_size);
  1576. if (rc && (rc != -EINVAL)) {
  1577. LOGD(LOG_ERR, "[touch]unable to read %s\n", name);
  1578. return rc;
  1579. }
  1580. if (!strcmp(name, "raydium,display-coords")) {
  1581. pdata->x_min = coords[0];
  1582. pdata->y_min = coords[1];
  1583. pdata->x_max = coords[2];
  1584. pdata->y_max = coords[3];
  1585. } else {
  1586. LOGD(LOG_ERR, "[touch]unsupported property %s\n", name);
  1587. return -EINVAL;
  1588. }
  1589. return 0;
  1590. }
  1591. /*******************************************************************************
  1592. * FUNCTION: raydium_check_dsi_panel_dt
  1593. *
  1594. * SUMMARY: Get the DSI active panel information from dtsi
  1595. *
  1596. * RETURN:
  1597. * 0 = success
  1598. * !0 = fail
  1599. *
  1600. * PARAMETERS:
  1601. * np - pointer to device_node structure
  1602. * active_panel - name of active DSI panel
  1603. ******************************************************************************/
  1604. static int raydium_check_dsi_panel_dt(struct device_node *np, struct drm_panel **active_panel)
  1605. {
  1606. int i = 0, rc = 0;
  1607. int count = 0;
  1608. struct device_node *node = NULL;
  1609. struct drm_panel *panel;
  1610. count = of_count_phandle_with_args(np, "panel", NULL);
  1611. LOGD(LOG_INFO, "[touch]%s: Active panel count: %d\n", __func__, count);
  1612. if (count <= 0)
  1613. return 0;
  1614. for (i = 0; i < count; i++) {
  1615. node = of_parse_phandle(np, "panel", i);
  1616. if (node != NULL)
  1617. LOGD(LOG_ERR, "[touch]%s: Node handle successfully parsed !\n", __func__);
  1618. panel = of_drm_find_panel(node);
  1619. of_node_put(node);
  1620. if (!IS_ERR(panel)) {
  1621. LOGD(LOG_ERR, "[touch]%s: Active panel selected !\n", __func__);
  1622. *active_panel = panel;
  1623. return 0;
  1624. }
  1625. }
  1626. LOGD(LOG_ERR, "[touch]%s: Active panel NOT selected !\n", __func__);
  1627. rc = PTR_ERR(panel);
  1628. return rc;
  1629. }
  1630. static int raydium_parse_dt(struct device *dev,
  1631. struct raydium_ts_platform_data *pdata)
  1632. {
  1633. struct device_node *np = dev->of_node;
  1634. struct drm_panel *active_panel = NULL;
  1635. int rc = 0;
  1636. u32 temp_val = 0;
  1637. pdata->name = RAYDIUM_NAME;
  1638. rc = raydium_get_dt_coords(dev, "raydium,display-coords", pdata);
  1639. if (rc)
  1640. return rc;
  1641. /* reset, irq gpio info */
  1642. pdata->reset_gpio = of_get_named_gpio_flags(np,
  1643. "raydium,reset-gpio",
  1644. 0,
  1645. &pdata->reset_gpio_flags);
  1646. //if (pdata->reset_gpio < 0)
  1647. if ((s32)(pdata->reset_gpio) < 0)
  1648. return pdata->reset_gpio;
  1649. pdata->irq_gpio = of_get_named_gpio_flags(np,
  1650. "raydium,irq-gpio",
  1651. 0,
  1652. &pdata->irq_gpio_flags);
  1653. //if (pdata->irq_gpio < 0)
  1654. if ((s32)(pdata->irq_gpio) < 0)
  1655. return pdata->irq_gpio;
  1656. rc = raydium_check_dsi_panel_dt(np, &active_panel);
  1657. LOGD(LOG_ERR, "[touch]%s: Panel not selected, rc=%d\n", __func__, rc);
  1658. if (rc) {
  1659. LOGD(LOG_ERR, "[touch]%s: Panel not selected, rc=%d\n", __func__, rc);
  1660. if (rc == -EPROBE_DEFER) {
  1661. LOGD(LOG_ERR, "[touch]%s: Probe defer selected, rc=%d\n", __func__, rc);
  1662. return rc;
  1663. }
  1664. }
  1665. pdata->active_panel = active_panel;
  1666. LOGD(LOG_ERR, "[touch]%s: Successful insert of active panel in core data\n", __func__);
  1667. rc = of_property_read_u32(np,
  1668. "raydium,hard-reset-delay-ms", &temp_val);
  1669. if (!rc)
  1670. pdata->hard_rst_dly = temp_val;
  1671. else
  1672. return rc;
  1673. rc = of_property_read_u32(np,
  1674. "raydium,soft-reset-delay-ms", &temp_val);
  1675. if (!rc)
  1676. pdata->soft_rst_dly = temp_val;
  1677. else
  1678. return rc;
  1679. rc = of_property_read_u32(np, "raydium,num-max-touches", &temp_val);
  1680. if (!rc)
  1681. pdata->num_max_touches = temp_val;
  1682. else
  1683. return rc;
  1684. #ifdef FW_MAPPING_BYID_EN
  1685. rc = of_property_read_u32(np, "raydium,fw_id", &temp_val);
  1686. if (!rc)
  1687. pdata->fw_id = temp_val;
  1688. else
  1689. return rc;
  1690. #endif
  1691. return 0;
  1692. }
  1693. #else
  1694. static int raydium_parse_dt(struct device *dev,
  1695. struct raydium_ts_platform_data *pdata)
  1696. {
  1697. return -ENODEV;
  1698. }
  1699. #endif /*end of CONFIG_OF*/
  1700. static void raydium_input_set(struct input_dev *input_dev)
  1701. {
  1702. int ret = 0;
  1703. unsigned char i;
  1704. input_dev->name = "raydium_ts";/*name need same with .idc*/
  1705. input_dev->id.bustype = BUS_I2C;
  1706. input_dev->dev.parent = &g_raydium_ts->client->dev;
  1707. input_dev->open = raydium_ts_open;/*touch lock*/
  1708. input_dev->close = raydium_ts_close;
  1709. input_set_drvdata(input_dev, g_raydium_ts);
  1710. __set_bit(EV_KEY, input_dev->evbit);
  1711. __set_bit(EV_ABS, input_dev->evbit);
  1712. __set_bit(BTN_TOUCH, input_dev->keybit);
  1713. __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
  1714. LOGD(LOG_INFO, "[touch]set abs prarams x[%d], y[%d]\n",
  1715. g_raydium_ts->x_max, g_raydium_ts->y_max);
  1716. /* Multitouch input params setup */
  1717. input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0,
  1718. g_raydium_ts->x_max, 0, 0);
  1719. input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0,
  1720. g_raydium_ts->y_max, 0, 0);
  1721. input_set_abs_params(input_dev, ABS_MT_PRESSURE, 0, PRESS_MAX, 0, 0);
  1722. input_set_abs_params(input_dev,
  1723. ABS_MT_TOUCH_MAJOR, 0, WIDTH_MAX, 0, 0);
  1724. input_set_abs_params(input_dev,
  1725. ABS_MT_TOUCH_MINOR, 0, WIDTH_MAX, 0, 0);
  1726. ret = input_mt_init_slots(input_dev, MAX_TOUCH_NUM,
  1727. INPUT_MT_DIRECT | INPUT_MT_DROP_UNUSED);
  1728. if (ret)
  1729. LOGD(LOG_ERR, "[touch]failed to initialize MT slots: %d\n", ret);
  1730. for (i = 0; i < (MAX_TOUCH_NUM * 2); i++)
  1731. gst_slot[i] = gst_slot_init;
  1732. }
  1733. static int raydium_set_resolution(void)
  1734. {
  1735. unsigned char u8_buf[4];
  1736. int i32_ret = -1;
  1737. unsigned int u32_x, u32_y;
  1738. mutex_lock(&g_raydium_ts->lock);
  1739. i32_ret = raydium_i2c_pda2_set_page(g_raydium_ts->client,
  1740. g_raydium_ts->is_suspend,
  1741. RAYDIUM_PDA2_PAGE_0);
  1742. if (i32_ret < 0)
  1743. goto exit_error;
  1744. i32_ret = raydium_i2c_pda2_read(g_raydium_ts->client,
  1745. RAYDIUM_PDA2_DISPLAY_INFO_ADDR,
  1746. u8_buf, 4);
  1747. if (i32_ret < 0)
  1748. goto exit_error;
  1749. u32_x = u8_buf[3] << 8 | u8_buf[2];
  1750. u32_y = u8_buf[1] << 8 | u8_buf[0];
  1751. LOGD(LOG_DEBUG, "[touch]RAD display info x:%d, y:%d\n", u32_x, u32_y);
  1752. if (u32_x > 100 && u32_y > 100 &&
  1753. u32_x < 600 && u32_y < 600) {
  1754. g_raydium_ts->x_max = u32_x - 1;
  1755. g_raydium_ts->y_max = u32_y - 1;
  1756. }
  1757. exit_error:
  1758. mutex_unlock(&g_raydium_ts->lock);
  1759. return i32_ret;
  1760. }
  1761. static int raydium_get_regulator(struct raydium_ts_data *cd, bool get)
  1762. {
  1763. int rc;
  1764. if (!get) {
  1765. rc = 0;
  1766. goto regulator_put;
  1767. }
  1768. #ifdef VDD_ANALOG_ENABLE
  1769. cd->vdd = regulator_get(&cd->client->dev, "vdd");
  1770. if (IS_ERR(cd->vdd)) {
  1771. rc = PTR_ERR(cd->vdd);
  1772. dev_err(&cd->client->dev,
  1773. "Regulator get failed vdd rc=%d\n", rc);
  1774. goto regulator_put;
  1775. }
  1776. #endif
  1777. cd->vcc_i2c = regulator_get(&cd->client->dev, "vcc_i2c");
  1778. if (IS_ERR(cd->vcc_i2c)) {
  1779. rc = PTR_ERR(cd->vcc_i2c);
  1780. dev_err(&cd->client->dev,
  1781. "Regulator get failed vcc_i2c rc=%d\n", rc);
  1782. goto regulator_put;
  1783. }
  1784. return 0;
  1785. regulator_put:
  1786. #ifdef VDD_ANALOG_ENABLE
  1787. if (!IS_ERR(cd->vdd)) {
  1788. dev_err(&cd->client->dev, "Regulator put vdd\n");
  1789. regulator_put(cd->vdd);
  1790. cd->vdd = NULL;
  1791. }
  1792. #endif
  1793. if (!IS_ERR(cd->vcc_i2c)) {
  1794. dev_err(&cd->client->dev, "Regulator put vcc_i2c\n");
  1795. regulator_put(cd->vcc_i2c);
  1796. cd->vcc_i2c = NULL;
  1797. }
  1798. return rc;
  1799. }
  1800. static int raydium_enable_regulator(struct raydium_ts_data *cd, bool en)
  1801. {
  1802. int rc;
  1803. if (!en) {
  1804. rc = 0;
  1805. goto disable_vcc_i2c_reg;
  1806. }
  1807. #ifdef VDD_ANALOG_ENABLE
  1808. if (cd->vdd) {
  1809. if (regulator_count_voltages(cd->vdd) > 0) {
  1810. rc = regulator_set_voltage(cd->vdd, VTG_MIN_UV,
  1811. VTG_MAX_UV);
  1812. if (rc) {
  1813. dev_err(&cd->client->dev,
  1814. "Regulator set_vtg failed vdd rc=%d\n", rc);
  1815. goto exit;
  1816. }
  1817. }
  1818. rc = regulator_enable(cd->vdd);
  1819. if (rc) {
  1820. dev_err(&cd->client->dev,
  1821. "Regulator vdd enable failed rc=%d\n", rc);
  1822. goto exit;
  1823. }
  1824. }
  1825. #endif
  1826. if (cd->vcc_i2c) {
  1827. if (regulator_count_voltages(cd->vcc_i2c) > 0) {
  1828. rc = regulator_set_voltage(cd->vcc_i2c, I2C_VTG_MIN_UV,
  1829. I2C_VTG_MAX_UV);
  1830. if (rc) {
  1831. dev_err(&cd->client->dev,
  1832. "Regulator set_vtg failed vcc_i2c rc=%d\n", rc);
  1833. goto disable_vdd_reg;
  1834. }
  1835. }
  1836. rc = regulator_enable(cd->vcc_i2c);
  1837. if (rc) {
  1838. dev_err(&cd->client->dev,
  1839. "Regulator vcc_i2c enable failed rc=%d\n", rc);
  1840. goto disable_vdd_reg;
  1841. }
  1842. }
  1843. return 0;
  1844. disable_vcc_i2c_reg:
  1845. if (cd->vcc_i2c) {
  1846. if (regulator_count_voltages(cd->vcc_i2c) > 0)
  1847. regulator_set_voltage(cd->vcc_i2c, I2C_VTG_MIN_UV,
  1848. I2C_VTG_MAX_UV);
  1849. regulator_disable(cd->vcc_i2c);
  1850. }
  1851. disable_vdd_reg:
  1852. #ifdef VDD_ANALOG_ENABLE
  1853. if (cd->vdd) {
  1854. if (regulator_count_voltages(cd->vdd) > 0)
  1855. regulator_set_voltage(cd->vdd, VTG_MIN_UV,
  1856. VTG_MAX_UV);
  1857. regulator_disable(cd->vdd);
  1858. }
  1859. #endif
  1860. #ifdef VDD_ANALOG_ENABLE
  1861. exit:
  1862. #endif
  1863. return rc;
  1864. }
  1865. static int raydium_ts_probe(struct i2c_client *client,
  1866. const struct i2c_device_id *id)
  1867. {
  1868. struct raydium_ts_platform_data *pdata =
  1869. (struct raydium_ts_platform_data *)client->dev.platform_data;
  1870. struct input_dev *input_dev;
  1871. unsigned short u16_i2c_data;
  1872. int ret = 0;
  1873. LOGD(LOG_INFO, "[touch] probe\n");
  1874. if (client->dev.of_node) {
  1875. pdata = devm_kzalloc(&client->dev,
  1876. sizeof(struct raydium_ts_platform_data),
  1877. GFP_KERNEL);
  1878. if (!pdata) {
  1879. LOGD(LOG_ERR, "[touch]failed to allocate memory\n");
  1880. return -ENOMEM;
  1881. }
  1882. ret = raydium_parse_dt(&client->dev, pdata);
  1883. if (ret) {
  1884. LOGD(LOG_ERR, "[touch]device tree parsing failed\n");
  1885. goto parse_dt_failed;
  1886. }
  1887. } else
  1888. pdata = client->dev.platform_data;
  1889. if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
  1890. ret = -ENODEV;
  1891. goto exit_check_functionality_failed;
  1892. }
  1893. g_raydium_ts = devm_kzalloc(&client->dev,
  1894. sizeof(struct raydium_ts_data),
  1895. GFP_KERNEL);
  1896. if (!g_raydium_ts) {
  1897. LOGD(LOG_ERR, "[touch]failed to allocate input driver data\n");
  1898. return -ENOMEM;
  1899. }
  1900. raydium_variable_init();
  1901. mutex_init(&g_raydium_ts->lock);
  1902. i2c_set_clientdata(client, g_raydium_ts);
  1903. g_raydium_ts->irq_enabled = false;
  1904. g_raydium_ts->irq_wake = false;
  1905. g_raydium_ts->irq_gpio = pdata->irq_gpio;
  1906. g_raydium_ts->rst_gpio = pdata->reset_gpio;
  1907. client->irq = g_raydium_ts->irq_gpio;
  1908. g_raydium_ts->u8_max_touchs = pdata->num_max_touches;
  1909. g_raydium_ts->client = client;
  1910. g_raydium_ts->x_max = pdata->x_max - 1;
  1911. g_raydium_ts->y_max = pdata->y_max - 1;
  1912. g_raydium_ts->is_suspend = 0;
  1913. g_raydium_ts->is_sleep = 0;
  1914. #ifdef GESTURE_EN
  1915. g_raydium_ts->is_palm = 0;
  1916. #endif
  1917. g_raydium_ts->fw_version = 0;
  1918. device_init_wakeup(&client->dev, 1);
  1919. #ifdef MSM_NEW_VER
  1920. ret = raydium_ts_pinctrl_init();
  1921. if (!ret && g_raydium_ts->ts_pinctrl) {
  1922. /*
  1923. * Pinctrl handle is optional. If pinctrl handle is found
  1924. * let pins to be configured in active state. If not
  1925. * found continue further without error.
  1926. */
  1927. ret = pinctrl_select_state(g_raydium_ts->ts_pinctrl,
  1928. g_raydium_ts->pinctrl_state_active);
  1929. if (ret < 0)
  1930. LOGD(LOG_ERR, "[touch]failed to set pin to active state\n");
  1931. }
  1932. #endif /*end of MSM_NEW_VER*/
  1933. ret = raydium_get_regulator(g_raydium_ts, true);
  1934. if (ret) {
  1935. dev_err(&client->dev, "Failed to get voltage regulators\n");
  1936. goto error_alloc_data;
  1937. }
  1938. ret = raydium_enable_regulator(g_raydium_ts, true);
  1939. if (ret) {
  1940. dev_err(&client->dev, "Failed to enable regulators: rc=%d\n", ret);
  1941. goto error_get_regulator;
  1942. }
  1943. ret = raydium_gpio_configure(true);
  1944. if (ret < 0) {
  1945. LOGD(LOG_ERR, "[touch]failed to configure the gpios\n");
  1946. goto err_gpio_req;
  1947. }
  1948. /*modify dtsi to 360*/
  1949. msleep(pdata->soft_rst_dly);
  1950. if (raydium_disable_i2c_deglitch() == ERROR) {
  1951. LOGD(LOG_ERR, "[touch]disable i2c deglicth NG!\r\n");
  1952. ret = -ENODEV;
  1953. goto exit_check_i2c;
  1954. }
  1955. /*print touch i2c ready*/
  1956. ret = raydium_check_i2c_ready(&u16_i2c_data);
  1957. if (ret < 0 || (u16_i2c_data == 0)) {
  1958. LOGD(LOG_ERR, "[touch]Check I2C failed\n");
  1959. ret = -EPROBE_DEFER;
  1960. goto exit_check_i2c;
  1961. }
  1962. #ifdef CONFIG_DRM
  1963. /* Setup active dsi panel */
  1964. active_panel = pdata->active_panel;
  1965. #endif
  1966. /*input device initialization*/
  1967. input_dev = input_allocate_device();
  1968. if (!input_dev) {
  1969. ret = -ENOMEM;
  1970. LOGD(LOG_ERR, "[touch]failed to allocate input device\n");
  1971. goto exit_input_dev_alloc_failed;
  1972. }
  1973. raydium_set_resolution();
  1974. g_raydium_ts->input_dev = input_dev;
  1975. raydium_input_set(input_dev);
  1976. ret = input_register_device(input_dev);
  1977. if (ret) {
  1978. LOGD(LOG_ERR, "[touch]failed to register input device: %s\n",
  1979. dev_name(&client->dev));
  1980. goto exit_input_register_device_failed;
  1981. }
  1982. #ifdef GESTURE_EN
  1983. input_set_capability(input_dev, EV_KEY, KEY_SLEEP);
  1984. input_set_capability(input_dev, EV_KEY, KEY_WAKEUP);
  1985. #endif
  1986. /*suspend/resume routine*/
  1987. #if defined(CONFIG_FB)
  1988. raydium_register_notifier();
  1989. #elif defined(CONFIG_HAS_EARLYSUSPEND)
  1990. /*Early-suspend level*/
  1991. g_raydium_ts->early_suspend.level = EARLY_SUSPEND_LEVEL_BLANK_SCREEN + 1;
  1992. g_raydium_ts->early_suspend.suspend = raydium_ts_early_suspend;
  1993. g_raydium_ts->early_suspend.resume = raydium_ts_late_resume;
  1994. register_early_suspend(&g_raydium_ts->early_suspend);
  1995. #endif/*end of CONFIG_FB*/
  1996. #ifdef CONFIG_RM_SYSFS_DEBUG
  1997. raydium_create_sysfs(client);
  1998. #endif/*end of CONFIG_RM_SYSFS_DEBUG*/
  1999. INIT_WORK(&g_raydium_ts->work, raydium_work_handler);
  2000. g_raydium_ts->workqueue = create_singlethread_workqueue("raydium_ts");
  2001. /*irq_gpio = 13 irqflags = 108*/
  2002. LOGD(LOG_DEBUG, "[touch]pdata irq : %d\n", g_raydium_ts->irq_gpio);
  2003. LOGD(LOG_DEBUG, "[touch]client irq : %d, pdata flags : %d\n",
  2004. client->irq, pdata->irqflags);
  2005. #if defined(CONFIG_DRM)
  2006. LOGD(LOG_DEBUG, "%s: Probe: Setup drm notifier\n", __func__);
  2007. raydium_setup_drm_notifier(g_raydium_ts);
  2008. #endif/*end of CONFIG_DRM*/
  2009. g_raydium_ts->irq = gpio_to_irq(pdata->irq_gpio);
  2010. ret = request_threaded_irq(g_raydium_ts->irq, NULL, raydium_ts_interrupt,
  2011. IRQF_TRIGGER_FALLING | IRQF_ONESHOT | IRQF_NO_SUSPEND,
  2012. client->dev.driver->name, g_raydium_ts);
  2013. if (ret < 0) {
  2014. LOGD(LOG_ERR, "[touch]raydium_probe: request irq failed\n");
  2015. goto exit_irq_request_failed;
  2016. }
  2017. g_raydium_ts->irq_desc = irq_to_desc(g_raydium_ts->irq);
  2018. g_raydium_ts->irq_enabled = true;
  2019. /*disable_irq then enable_irq for avoid Unbalanced enable for IRQ */
  2020. /*raydium_irq_control(ts, ENABLE);*/
  2021. LOGD(LOG_DEBUG, "[touch]RAD Touch driver ver :0x%X\n", g_u32_driver_version);
  2022. /*fw update check*/
  2023. ret = raydium_fw_update_init(u16_i2c_data);
  2024. if (ret < 0) {
  2025. LOGD(LOG_ERR, "[touch]FW update init failed\n");
  2026. ret = -ENODEV;
  2027. goto exit_irq_request_failed;
  2028. }
  2029. LOGD(LOG_INFO, "[touch] probe: done\n");
  2030. return 0;
  2031. exit_irq_request_failed:
  2032. #if defined(CONFIG_FB)
  2033. raydium_unregister_notifier();
  2034. #endif/*end of CONFIG_FB*/
  2035. cancel_work_sync(&g_raydium_ts->work);
  2036. input_unregister_device(input_dev);
  2037. exit_input_register_device_failed:
  2038. input_free_device(input_dev);
  2039. exit_input_dev_alloc_failed:
  2040. exit_check_i2c:
  2041. #ifdef MSM_NEW_VER
  2042. if (g_raydium_ts->ts_pinctrl) {
  2043. if (IS_ERR_OR_NULL(g_raydium_ts->pinctrl_state_release)) {
  2044. devm_pinctrl_put(g_raydium_ts->ts_pinctrl);
  2045. g_raydium_ts->ts_pinctrl = NULL;
  2046. } else {
  2047. if (pinctrl_select_state(g_raydium_ts->ts_pinctrl,
  2048. g_raydium_ts->pinctrl_state_release))
  2049. LOGD(LOG_ERR,
  2050. "[touch]pinctrl_select_state failed\n");
  2051. }
  2052. }
  2053. #endif/*end of MSM_NEW_VER*/
  2054. if (gpio_is_valid(pdata->reset_gpio))
  2055. gpio_free(pdata->reset_gpio);
  2056. if (gpio_is_valid(pdata->irq_gpio))
  2057. gpio_free(pdata->irq_gpio);
  2058. err_gpio_req:
  2059. raydium_enable_regulator(g_raydium_ts, false);
  2060. error_get_regulator:
  2061. raydium_get_regulator(g_raydium_ts, false);
  2062. error_alloc_data:
  2063. parse_dt_failed:
  2064. exit_check_functionality_failed:
  2065. return ret;
  2066. }
  2067. void raydium_ts_shutdown(struct i2c_client *client)
  2068. {
  2069. #if defined(CONFIG_FB)
  2070. raydium_unregister_notifier();
  2071. #elif defined(CONFIG_HAS_EARLYSUSPEND)
  2072. unregister_early_suspend(&g_raydium_ts->early_suspend);
  2073. #elif defined(CONFIG_DRM)
  2074. if (active_panel)
  2075. drm_panel_notifier_unregister(active_panel, &g_raydium_ts->fb_notifier);
  2076. #endif/*end of CONFIG_FB*/
  2077. input_unregister_device(g_raydium_ts->input_dev);
  2078. input_free_device(g_raydium_ts->input_dev);
  2079. gpio_free(g_raydium_ts->rst_gpio);
  2080. #ifdef CONFIG_RM_SYSFS_DEBUG
  2081. raydium_release_sysfs(client);
  2082. #endif /*end of CONFIG_RM_SYSFS_DEBUG*/
  2083. free_irq(client->irq, g_raydium_ts);
  2084. if (gpio_is_valid(g_raydium_ts->rst_gpio))
  2085. gpio_free(g_raydium_ts->rst_gpio);
  2086. if (gpio_is_valid(g_raydium_ts->irq_gpio))
  2087. gpio_free(g_raydium_ts->irq_gpio);
  2088. cancel_work_sync(&g_raydium_ts->work);
  2089. destroy_workqueue(g_raydium_ts->workqueue);
  2090. raydium_enable_regulator(g_raydium_ts, false);
  2091. raydium_get_regulator(g_raydium_ts, false);
  2092. i2c_set_clientdata(client, NULL);
  2093. }
  2094. static int raydium_ts_remove(struct i2c_client *client)
  2095. {
  2096. #if defined(CONFIG_FB)
  2097. raydium_unregister_notifier();
  2098. #elif defined(CONFIG_HAS_EARLYSUSPEND)
  2099. unregister_early_suspend(&g_raydium_ts->early_suspend);
  2100. #elif defined(CONFIG_DRM)
  2101. if (active_panel)
  2102. drm_panel_notifier_unregister(active_panel, &g_raydium_ts->fb_notifier);
  2103. #endif/*end of CONFIG_FB*/
  2104. input_unregister_device(g_raydium_ts->input_dev);
  2105. input_free_device(g_raydium_ts->input_dev);
  2106. gpio_free(g_raydium_ts->rst_gpio);
  2107. #ifdef CONFIG_RM_SYSFS_DEBUG
  2108. raydium_release_sysfs(client);
  2109. #endif /*end of CONFIG_RM_SYSFS_DEBUG*/
  2110. free_irq(client->irq, g_raydium_ts);
  2111. if (gpio_is_valid(g_raydium_ts->rst_gpio))
  2112. gpio_free(g_raydium_ts->rst_gpio);
  2113. if (gpio_is_valid(g_raydium_ts->irq_gpio))
  2114. gpio_free(g_raydium_ts->irq_gpio);
  2115. cancel_work_sync(&g_raydium_ts->work);
  2116. destroy_workqueue(g_raydium_ts->workqueue);
  2117. raydium_enable_regulator(g_raydium_ts, false);
  2118. raydium_get_regulator(g_raydium_ts, false);
  2119. i2c_set_clientdata(client, NULL);
  2120. return 0;
  2121. }
  2122. static const struct i2c_device_id raydium_ts_id[] = {
  2123. {RAYDIUM_NAME, 0},
  2124. {}
  2125. };
  2126. MODULE_DEVICE_TABLE(i2c, raydium_ts_id);
  2127. #ifdef CONFIG_OF
  2128. static const struct of_device_id raydium_match_table[] = {
  2129. { .compatible = "raydium,raydium-ts",},
  2130. { },
  2131. };
  2132. #else
  2133. #define raydium_match_table NULL
  2134. #endif/*end of CONFIG_OF*/
  2135. static struct i2c_driver raydium_ts_driver = {
  2136. .probe = raydium_ts_probe,
  2137. .remove = raydium_ts_remove,
  2138. .shutdown = raydium_ts_shutdown,
  2139. .id_table = raydium_ts_id,
  2140. .driver = {
  2141. .name = RAYDIUM_NAME,
  2142. .owner = THIS_MODULE,
  2143. .of_match_table = raydium_match_table,
  2144. #if defined(CONFIG_PM)
  2145. .pm = &raydium_ts_pm_ops,
  2146. #endif/*end of CONFIG_PM*/
  2147. },
  2148. };
  2149. static int __init raydium_ts_init(void)
  2150. {
  2151. int ret;
  2152. ret = i2c_add_driver(&raydium_ts_driver);
  2153. return ret;
  2154. }
  2155. static void __exit raydium_ts_exit(void)
  2156. {
  2157. i2c_del_driver(&raydium_ts_driver);
  2158. }
  2159. module_init(raydium_ts_init);
  2160. module_exit(raydium_ts_exit);
  2161. MODULE_AUTHOR("<Rejion>");
  2162. MODULE_DESCRIPTION("Raydium TouchScreen driver");
  2163. MODULE_LICENSE("GPL");