raydium_sysfs.c 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455
  1. /*raydium_sysfs.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/unistd.h>
  19. #include <linux/uaccess.h>
  20. #include <linux/fs.h>
  21. #include <linux/string.h>
  22. #include <linux/kernel.h>
  23. #include <linux/slab.h>
  24. #include <linux/device.h>
  25. #include <linux/delay.h>
  26. #include <linux/i2c.h>
  27. #include <linux/gpio.h>
  28. #include "raydium_driver.h"
  29. static ssize_t raydium_touch_calibration_show(struct device *dev,
  30. struct device_attribute *attr,
  31. char *p_i8_buf)
  32. {
  33. unsigned char u8_rbuffer[1];
  34. unsigned short u16_len = 0;
  35. int i32_ret = -1;
  36. unsigned char u8_retry = 0;
  37. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  38. if (g_raydium_ts->is_suspend)
  39. LOGD(LOG_DEBUG, "[touch]RAD is_suspend at %s\n", __func__);
  40. g_u8_raydium_flag |= ENG_MODE;
  41. mutex_lock(&g_raydium_ts->lock);
  42. i32_ret = raydium_i2c_pda2_set_page(client,
  43. g_raydium_ts->is_suspend,
  44. RAYDIUM_PDA2_PAGE_0);
  45. if (i32_ret < 0)
  46. goto exit_i2c_error;
  47. u8_rbuffer[0] = RAYDIUM_HOST_CMD_CALIBRATION;
  48. i32_ret = raydium_i2c_pda2_write(client, RAYDIUM_PDA2_HOST_CMD_ADDR,
  49. u8_rbuffer, 1);
  50. if (i32_ret < 0)
  51. goto exit_i2c_error;
  52. do {
  53. if (u8_rbuffer[0] == RAYDIUM_HOST_CMD_NO_OP)
  54. break;
  55. msleep(1000);
  56. i32_ret = raydium_i2c_pda2_read(client,
  57. RAYDIUM_PDA2_HOST_CMD_ADDR,
  58. u8_rbuffer, 1);
  59. if (i32_ret < 0)
  60. goto exit_i2c_error;
  61. LOGD(LOG_INFO, "[touch]RAD %s return 0x%02x!!\n",
  62. __func__, u8_rbuffer[0]);
  63. } while (u8_retry++ < (SYN_I2C_RETRY_TIMES * 2));
  64. memcpy(p_i8_buf, u8_rbuffer, 1);
  65. u16_len = strlen(p_i8_buf);
  66. i32_ret = u16_len + 1;
  67. exit_i2c_error:
  68. mutex_unlock(&g_raydium_ts->lock);
  69. g_u8_raydium_flag &= ~ENG_MODE;
  70. return i32_ret;
  71. }
  72. static ssize_t raydium_i2c_pda_access_show(struct device *dev,
  73. struct device_attribute *attr,
  74. char *p_i8_buf)
  75. {
  76. unsigned char u8_rbuffer[4];
  77. unsigned short u16_len = 0;
  78. int i32_ret = -1;
  79. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  80. if (g_u32_length > 4)
  81. return -EINVAL;
  82. memset(u8_rbuffer, 0x00, 4);
  83. mutex_lock(&g_raydium_ts->lock);
  84. i32_ret = raydium_i2c_pda_read(client,
  85. g_u32_addr,
  86. u8_rbuffer,
  87. g_u32_length);
  88. mutex_unlock(&g_raydium_ts->lock);
  89. if (i32_ret < 0)
  90. return i32_ret;
  91. snprintf(p_i8_buf, PAGE_SIZE, "0x%08X : 0x%02X%02X%02X%02X\n",
  92. (unsigned int)g_u32_addr, u8_rbuffer[3], u8_rbuffer[2],
  93. u8_rbuffer[1], u8_rbuffer[0]);
  94. u16_len = strlen(p_i8_buf);
  95. return u16_len + 1;
  96. }
  97. static ssize_t raydium_i2c_pda_access_via_pda2_show(struct device *dev,
  98. struct device_attribute *attr,
  99. char *p_i8_buf)
  100. {
  101. unsigned char u8_rbuffer[4];
  102. unsigned short u16_len = 0;
  103. int i32_ret = -1;
  104. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  105. if (g_u32_length > 4)
  106. return -EINVAL;
  107. memset(u8_rbuffer, 0x00, 4);
  108. mutex_lock(&g_raydium_ts->lock);
  109. i32_ret = handle_i2c_pda_read(client,
  110. g_u32_addr,
  111. u8_rbuffer,
  112. g_u32_length);
  113. mutex_unlock(&g_raydium_ts->lock);
  114. if (i32_ret < 0)
  115. return i32_ret;
  116. snprintf(p_i8_buf, PAGE_SIZE, "0x%08X : 0x%02X%02X%02X%02X\n",
  117. (unsigned int)g_u32_addr, u8_rbuffer[3], u8_rbuffer[2],
  118. u8_rbuffer[1], u8_rbuffer[0]);
  119. u16_len = strlen(p_i8_buf);
  120. return u16_len + 1;
  121. }
  122. static ssize_t raydium_check_i2c_show(struct device *dev,
  123. struct device_attribute *attr,
  124. char *p_i8_buf)
  125. {
  126. unsigned char u8_rbuffer[4];
  127. unsigned short u16_len = 0;
  128. int i32_ret = -1;
  129. if (g_raydium_ts->is_suspend)
  130. LOGD(LOG_DEBUG, "[touch]RAD is_suspend at %s\n", __func__);
  131. mutex_lock(&g_raydium_ts->lock);
  132. i32_ret = handle_i2c_pda_read(g_raydium_ts->client,
  133. RAYDIUM_CHK_I2C_CMD, u8_rbuffer, 4);
  134. if (i32_ret < 0)
  135. goto exit_i2c_error;
  136. snprintf(p_i8_buf, PAGE_SIZE, "[touch]RAD Touch check i2c: %02X%02X\n",
  137. u8_rbuffer[3], u8_rbuffer[2]);
  138. u16_len = strlen(p_i8_buf);
  139. i32_ret = u16_len + 1;
  140. exit_i2c_error:
  141. mutex_unlock(&g_raydium_ts->lock);
  142. return i32_ret;
  143. }
  144. static ssize_t raydium_hw_reset_show(struct device *dev,
  145. struct device_attribute *attr,
  146. char *p_i8_buf)
  147. {
  148. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  149. int i32_ret = SUCCESS;
  150. LOGD(LOG_INFO, "[touch]HW reset\n");
  151. g_u8_resetflag = true;
  152. g_u8_raydium_flag |= ENG_MODE;
  153. /*HW reset*/
  154. if (gpio_is_valid(g_raydium_ts->rst_gpio)) {
  155. gpio_set_value(g_raydium_ts->rst_gpio, 1);
  156. gpio_set_value(g_raydium_ts->rst_gpio, 0);
  157. msleep(RAYDIUM_RESET_INTERVAL_MSEC);
  158. gpio_set_value(g_raydium_ts->rst_gpio, 1);
  159. }
  160. g_u8_i2c_mode = PDA2_MODE;
  161. if (raydium_disable_i2c_deglitch() == ERROR)
  162. LOGD(LOG_ERR, "[touch]disable_i2c_deglitch_3x NG!\r\n");
  163. i32_ret = wait_irq_state(client, 1000, 2000);
  164. if (i32_ret != ERROR)
  165. msleep(35);
  166. g_u8_raydium_flag &= ~ENG_MODE;
  167. snprintf(p_i8_buf, PAGE_SIZE, "Raydium HW Reset : %d\n", i32_ret);
  168. LOGD(LOG_INFO, "[touch]%s\n", p_i8_buf);
  169. return strlen(p_i8_buf) + 1;
  170. }
  171. static ssize_t raydium_palm_status_show(struct device *dev,
  172. struct device_attribute *attr,
  173. char *p_i8_buf)
  174. {
  175. unsigned short u16_len = 0;
  176. unsigned char u8_tp_status[MAX_TCH_STATUS_PACKET_SIZE];
  177. unsigned char u8_tp_buf[MAX_REPORT_PACKET_SIZE];
  178. raydium_read_touchdata(u8_tp_status, u8_tp_buf);
  179. snprintf(p_i8_buf, PAGE_SIZE, "[touch] palm_status : %d\n",
  180. u8_tp_status[POS_GES_STATUS]);
  181. u16_len = strlen(p_i8_buf);
  182. return u16_len + 1;
  183. }
  184. static ssize_t raydium_touch_lock_store(struct device *dev,
  185. struct device_attribute *attr,
  186. const char *p_i8_buf, size_t count)
  187. {
  188. int i32_ret = 0;
  189. unsigned char u8_mode;
  190. unsigned char u8_wbuffer[1];
  191. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  192. if (g_raydium_ts->is_suspend)
  193. LOGD(LOG_DEBUG, "[touch]RAD is_suspend at %s\n", __func__);
  194. /* receive command line arguments string */
  195. if (count > 2)
  196. return -EINVAL;
  197. i32_ret = kstrtou8(p_i8_buf, 16, &u8_mode);
  198. if (i32_ret < 0)
  199. return i32_ret;
  200. g_u8_raydium_flag |= ENG_MODE;
  201. mutex_lock(&g_raydium_ts->lock);
  202. switch (u8_mode) {
  203. case 0: /* Disable Touch lock */
  204. if (g_raydium_ts->is_sleep != 1)
  205. break;
  206. g_u8_resetflag = true;
  207. if (gpio_is_valid(g_raydium_ts->rst_gpio)) {
  208. gpio_set_value(g_raydium_ts->rst_gpio, 1);
  209. gpio_set_value(g_raydium_ts->rst_gpio, 0);
  210. msleep(RAYDIUM_RESET_INTERVAL_MSEC);/*5ms*/
  211. gpio_set_value(g_raydium_ts->rst_gpio, 1);
  212. msleep(RAYDIUM_RESET_DELAY_MSEC);/*100ms*/
  213. }
  214. LOGD(LOG_INFO, "[touch]RAD %s disable touch lock!!\n", __func__);
  215. g_raydium_ts->is_sleep = 0;
  216. break;
  217. case 1: /* Enable Touch lock */
  218. if (g_raydium_ts->is_sleep == 1)
  219. break;
  220. i32_ret = raydium_i2c_pda2_set_page(client,
  221. g_raydium_ts->is_suspend,
  222. RAYDIUM_PDA2_PAGE_0);
  223. if (i32_ret < 0)
  224. goto exit_i2c_error;
  225. /*fw enter sleep mode*/
  226. u8_wbuffer[0] = RAYDIUM_HOST_CMD_PWR_SLEEP;
  227. i32_ret = raydium_i2c_pda2_write(client,
  228. RAYDIUM_PDA2_HOST_CMD_ADDR,
  229. u8_wbuffer,
  230. 1);
  231. if (i32_ret < 0)
  232. goto exit_i2c_error;
  233. LOGD(LOG_INFO, "[touch]RAD %s enable touch lock!!\n", __func__);
  234. g_raydium_ts->is_sleep = 1;
  235. break;
  236. }
  237. exit_i2c_error:
  238. mutex_unlock(&g_raydium_ts->lock);
  239. g_u8_raydium_flag &= ~ENG_MODE;
  240. return count;
  241. }
  242. static ssize_t raydium_check_driver_version_show(struct device *dev,
  243. struct device_attribute *attr,
  244. char *p_i8_buf)
  245. {
  246. /*unsigned char rbuffer[4];*/
  247. unsigned short u16_len = 0;
  248. int i32_ret = -1;
  249. snprintf(p_i8_buf, PAGE_SIZE, "RAD Driver Ver: 0x%X\n",
  250. g_u32_driver_version);
  251. u16_len = strlen(p_i8_buf);
  252. i32_ret = u16_len + 1;
  253. return i32_ret;
  254. }
  255. static ssize_t raydium_check_fw_version_show(struct device *dev,
  256. struct device_attribute *attr,
  257. char *p_i8_buf)
  258. {
  259. unsigned char u8_rbuffer[4];
  260. unsigned short u16_len = 0;
  261. int i32_ret = -1;
  262. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  263. unsigned int fw_version, image_version;
  264. if (g_raydium_ts->is_suspend)
  265. LOGD(LOG_DEBUG, "[touch]RAD is_suspend at %s\n", __func__);
  266. g_u8_raydium_flag |= ENG_MODE;
  267. mutex_lock(&g_raydium_ts->lock);
  268. i32_ret = raydium_i2c_pda2_set_page(client,
  269. g_raydium_ts->is_suspend,
  270. RAYDIUM_PDA2_PAGE_0);
  271. if (i32_ret < 0)
  272. goto exit_i2c_error;
  273. i32_ret = raydium_i2c_pda2_read(client, RAYDIUM_PDA2_FW_VERSION_ADDR,
  274. u8_rbuffer, 4);
  275. if (i32_ret < 0)
  276. goto exit_i2c_error;
  277. snprintf(p_i8_buf, PAGE_SIZE, "RAD Touch FW Ver : %02X%02X%02X%02X\n",
  278. u8_rbuffer[0], u8_rbuffer[1], u8_rbuffer[2], u8_rbuffer[3]);
  279. fw_version = (u8_rbuffer[0] << 24)
  280. | (u8_rbuffer[1] << 16)
  281. | (u8_rbuffer[2] << 8)
  282. | u8_rbuffer[3];
  283. LOGD(LOG_INFO, "[touch]RAD FW ver : 0x%x\n", fw_version);
  284. image_version = (g_rad_para_image[PARA_FW_VERSION_OFFSET] << 24) |
  285. (g_rad_para_image[PARA_FW_VERSION_OFFSET + 1] << 16) |
  286. (g_rad_para_image[PARA_FW_VERSION_OFFSET + 2] << 8) |
  287. g_rad_para_image[PARA_FW_VERSION_OFFSET + 3];
  288. LOGD(LOG_INFO, "[touch]RAD Image FW ver : 0x%x\n", image_version);
  289. mutex_unlock(&g_raydium_ts->lock);
  290. g_u8_raydium_flag &= ~ENG_MODE;
  291. if (fw_version != image_version)
  292. LOGD(LOG_INFO, "[touch]%s, FW need upgrade.\n", __func__);
  293. u16_len = strlen(p_i8_buf);
  294. i32_ret = u16_len + 1;
  295. goto exit_upgrade;
  296. exit_i2c_error:
  297. mutex_unlock(&g_raydium_ts->lock);
  298. g_u8_raydium_flag &= ~ENG_MODE;
  299. exit_upgrade:
  300. return i32_ret;
  301. }
  302. static ssize_t raydium_check_panel_version_show(struct device *dev,
  303. struct device_attribute *attr,
  304. char *p_i8_buf)
  305. {
  306. unsigned char u8_rbuffer[8];
  307. unsigned short u16_len = 0;
  308. int i32_ret = -1;
  309. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  310. if (g_raydium_ts->is_suspend)
  311. LOGD(LOG_DEBUG, "[touch]RAD is_suspend at %s\n", __func__);
  312. g_u8_raydium_flag |= ENG_MODE;
  313. mutex_lock(&g_raydium_ts->lock);
  314. i32_ret = raydium_i2c_pda2_set_page(client,
  315. g_raydium_ts->is_suspend,
  316. RAYDIUM_PDA2_PAGE_0);
  317. if (i32_ret < 0)
  318. goto exit_i2c_error;
  319. i32_ret = raydium_i2c_pda2_read(client,
  320. RAYDIUM_PDA2_PANEL_VERSION_ADDR,
  321. u8_rbuffer, 8);
  322. if (i32_ret < 0)
  323. goto exit_i2c_error;
  324. snprintf(p_i8_buf, PAGE_SIZE,
  325. "RAD Touch Panel Version : %02X%02X%02X%02X%02X%02X\n",
  326. u8_rbuffer[0], u8_rbuffer[1], u8_rbuffer[2],
  327. u8_rbuffer[3], u8_rbuffer[4], u8_rbuffer[5]);
  328. mutex_unlock(&g_raydium_ts->lock);
  329. g_u8_raydium_flag &= ~ENG_MODE;
  330. u16_len = strlen(p_i8_buf);
  331. i32_ret = u16_len + 1;
  332. goto exit_upgrade;
  333. exit_i2c_error:
  334. mutex_unlock(&g_raydium_ts->lock);
  335. g_u8_raydium_flag &= ~ENG_MODE;
  336. exit_upgrade:
  337. return i32_ret;
  338. }
  339. static ssize_t raydium_fw_upgrade_store(struct device *dev,
  340. struct device_attribute *attr,
  341. const char *p_i8_buf, size_t count)
  342. {
  343. int i32_ret = 0;
  344. /* receive command line arguments string */
  345. if (count > 2)
  346. return -EINVAL;
  347. i32_ret = kstrtou8(p_i8_buf, 16, &g_u8_upgrade_type);
  348. if (i32_ret < 0)
  349. return i32_ret;
  350. return count;
  351. }
  352. static ssize_t raydium_fw_upgrade_show(struct device *dev,
  353. struct device_attribute *attr,
  354. char *p_i8_buf)
  355. {
  356. int i32_ret = 0, i32_result = FAIL;
  357. unsigned short u16_len = 0;
  358. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  359. LOGD(LOG_INFO, "[touch]RAD burn type is %d\n", g_u8_upgrade_type);
  360. g_u8_raydium_flag |= ENG_MODE;
  361. if ((g_u8_table_setting == 1) && (g_u8_table_init == 1))
  362. raydium_mem_table_setting();
  363. if (g_u8_upgrade_type == 1) {
  364. i32_ret = raydium_burn_fw(client);
  365. if (i32_ret < 0)
  366. goto exit_upgrade;
  367. i32_result = SUCCESS;
  368. } else if (g_u8_upgrade_type == 2) {
  369. i32_ret = raydium_burn_comp(client);
  370. if (i32_ret < 0)
  371. goto exit_upgrade;
  372. i32_result = SUCCESS;
  373. }
  374. #ifdef RAD_SELFTEST
  375. else if (g_u8_upgrade_type == 4) {
  376. i32_ret = raydium_load_test_fw(client);
  377. if (i32_ret < 0)
  378. goto exit_upgrade;
  379. i32_result = SUCCESS;
  380. }
  381. #endif
  382. exit_upgrade:
  383. LOGD(LOG_DEBUG, "[touch]g_u8_raydium_flag : %d", g_u8_raydium_flag);
  384. g_u8_raydium_flag &= ~ENG_MODE;
  385. g_u8_upgrade_type = 0;
  386. snprintf(p_i8_buf, PAGE_SIZE, "FW Upgrade result : %d\n", i32_result);
  387. u16_len = strlen(p_i8_buf);
  388. return u16_len + 1;
  389. }
  390. static ssize_t raydium_i2c_pda2_page_store(struct device *dev,
  391. struct device_attribute *attr,
  392. const char *p_i8_buf, size_t count)
  393. {
  394. int i32_ret = 0;
  395. unsigned char u8_page = 0;
  396. char *temp_buf, *token, *free_temp_buf, *free_token;
  397. const char *delim = " ,";
  398. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  399. /* receive command line arguments string */
  400. if (count < 2)
  401. return -EINVAL;
  402. temp_buf = kzalloc(count + 1, GFP_KERNEL);
  403. if (temp_buf == NULL)
  404. return -ENOMEM;
  405. token = kzalloc(count + 1, GFP_KERNEL);
  406. if (token == NULL) {
  407. kfree(temp_buf);
  408. return -ENOMEM;
  409. }
  410. free_temp_buf = temp_buf;
  411. free_token = token;
  412. strlcpy(temp_buf, p_i8_buf, count);
  413. token = strsep(&temp_buf, delim);
  414. if (temp_buf) {
  415. LOGD(LOG_ERR, "[touch]input error, extra auguments!n");
  416. i32_ret = -EINVAL;
  417. goto exit_error;
  418. }
  419. i32_ret = kstrtou8(token, 16, &u8_page);
  420. if (i32_ret < 0)
  421. goto exit_error;
  422. mutex_lock(&g_raydium_ts->lock);
  423. i32_ret = raydium_i2c_pda2_set_page(client, g_raydium_ts->is_suspend, u8_page);
  424. if (i32_ret < 0)
  425. goto exit_set_error;
  426. /* TODO: Page check, Due to ISR will change page back to Page_0.
  427. * Or disable IRQ during PDA2 access period
  428. */
  429. exit_set_error:
  430. mutex_unlock(&g_raydium_ts->lock);
  431. exit_error:
  432. kfree(free_token);
  433. kfree(free_temp_buf);
  434. return count;
  435. }
  436. static ssize_t raydium_mem_store(struct device *dev,
  437. struct device_attribute *attr,
  438. const char *p_i8_buf, size_t count)
  439. {
  440. #if !ENABLE_FW_LOADER
  441. int i32_ret = 0;
  442. unsigned char u8_type = 0;
  443. unsigned int u32_image_version;
  444. /* receive command line arguments string */
  445. if (count > 2)
  446. return -EINVAL;
  447. LOGD(LOG_INFO, "[touch]%s\n", __func__);
  448. i32_ret = kstrtou8(p_i8_buf, 16, &u8_type);
  449. if (i32_ret < 0)
  450. return i32_ret;
  451. if (u8_type > 3) {
  452. LOGD(LOG_ERR, "[touch]Input invalid value!!\n");
  453. return ERROR;
  454. }
  455. if (g_rad_boot_image) {
  456. kfree(g_rad_boot_image);
  457. g_rad_boot_image = NULL;
  458. }
  459. if (g_rad_init_image) {
  460. kfree(g_rad_init_image);
  461. g_rad_init_image = NULL;
  462. }
  463. if (g_rad_fw_image) {
  464. kfree(g_rad_fw_image);
  465. g_rad_fw_image = NULL;
  466. }
  467. kfree(g_rad_para_image);
  468. g_rad_para_image = NULL;
  469. if (g_rad_testfw_image) {
  470. kfree(g_rad_testfw_image);
  471. g_rad_testfw_image = NULL;
  472. }
  473. kfree(g_rad_testpara_image);
  474. g_rad_testpara_image = NULL;
  475. if (!raydium_id_init(u8_type)) {
  476. LOGD(LOG_ERR, "[touch]Set Raydium id failed!\n");
  477. return count;
  478. }
  479. raydium_mem_table_init(g_raydium_ts->id);
  480. if (raydium_mem_table_setting()) {
  481. u32_image_version = (g_rad_para_image[PARA_FW_VERSION_OFFSET] << 24) |
  482. (g_rad_para_image[PARA_FW_VERSION_OFFSET + 1] << 16) |
  483. (g_rad_para_image[PARA_FW_VERSION_OFFSET + 2] << 8) |
  484. g_rad_para_image[PARA_FW_VERSION_OFFSET + 3];
  485. LOGD(LOG_INFO, "[touch]RAD Image FW ver : 0x%x\n", u32_image_version);
  486. } else
  487. LOGD(LOG_ERR, "[touch]Mem init failed!\n");
  488. if (g_rad_para_image) {
  489. kfree(g_rad_para_image);
  490. g_rad_para_image = NULL;
  491. }
  492. #endif
  493. return count;
  494. }
  495. static ssize_t raydium_i2c_raw_data_store(struct device *dev,
  496. struct device_attribute *attr,
  497. const char *p_i8_buf, size_t count)
  498. {
  499. int i32_ret = 0;
  500. char *temp_buf, *token, *free_temp_buf, *free_token;
  501. const char *delim = " ,";
  502. unsigned char u8_w_data[RAD_FT_CMD_LENGTH];
  503. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  504. /* receive command line arguments string */
  505. if (count < 2)
  506. return -EINVAL;
  507. temp_buf = kzalloc(count + 1, GFP_KERNEL);
  508. if (temp_buf == NULL) {
  509. LOGD(LOG_ERR, "[touch]kzalloc temp_buf failed\n");
  510. return -ENOMEM;
  511. }
  512. token = kzalloc(count + 1, GFP_KERNEL);
  513. if (token == NULL) {
  514. kfree(temp_buf);
  515. return -ENOMEM;
  516. }
  517. free_temp_buf = temp_buf;
  518. free_token = token;
  519. strlcpy(temp_buf, p_i8_buf, count);
  520. token = strsep(&temp_buf, delim);
  521. i32_ret = kstrtou8(token, 16, &g_u8_raw_data_type);
  522. token = strsep(&temp_buf, delim);
  523. if (token) {
  524. i32_ret = kstrtouint(token, 16, &g_u32_raw_data_len);
  525. if (i32_ret < 0)
  526. goto exit_error;
  527. } else { /* without length info*/
  528. i32_ret = -EINVAL;
  529. goto exit_error;
  530. }
  531. if (temp_buf) { /* too much arguments*/
  532. i32_ret = -E2BIG;
  533. goto exit_error;
  534. }
  535. memset(u8_w_data, 0x00, RAD_FT_CMD_LENGTH);
  536. mutex_lock(&g_raydium_ts->lock);
  537. i32_ret = raydium_i2c_pda2_set_page(client,
  538. g_raydium_ts->is_suspend,
  539. RAYDIUM_PDA2_PAGE_0);
  540. if (i32_ret < 0) {
  541. mutex_unlock(&g_raydium_ts->lock);
  542. goto exit_error;
  543. }
  544. g_u8_resetflag = true;
  545. u8_w_data[RAD_HOST_CMD_POS] = RAYDIUM_HOST_CMD_NO_OP;
  546. u8_w_data[RAD_FT_CMD_POS] = g_u8_raw_data_type;
  547. i32_ret = raydium_i2c_pda2_write(client, RAYDIUM_PDA2_HOST_CMD_ADDR,
  548. u8_w_data, RAD_FT_CMD_LENGTH);
  549. mutex_unlock(&g_raydium_ts->lock);
  550. if (i32_ret < 0)
  551. goto exit_error;
  552. if (g_u8_raw_data_type == 0) {
  553. msleep(20);
  554. g_u8_resetflag = false;
  555. }
  556. exit_error:
  557. kfree(free_token);
  558. kfree(free_temp_buf);
  559. return count;
  560. }
  561. static ssize_t raydium_i2c_raw_data_show(struct device *dev,
  562. struct device_attribute *attr,
  563. char *p_i8_buf)
  564. {
  565. unsigned char u8_rbuffer[MAX_READ_PACKET_SIZE];
  566. unsigned int u32_target_addr;
  567. unsigned int u32_offset;
  568. unsigned short u16_read_length;
  569. int i32_ret = -1;
  570. int i32_retry = 0;
  571. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  572. struct raydium_ts_data *ts =
  573. (struct raydium_ts_data *)i2c_get_clientdata(client);
  574. unsigned char u8_retry_limit = (ts->is_suspend) ? 100 : 30;
  575. memset(u8_rbuffer, 0x00, MAX_READ_PACKET_SIZE);
  576. /* make sure update flag was set*/
  577. for (i32_retry = 0; i32_retry < u8_retry_limit; i32_retry++) {
  578. mutex_lock(&ts->lock);
  579. i32_ret = raydium_i2c_pda2_set_page(client,
  580. ts->is_suspend,
  581. RAYDIUM_PDA2_PAGE_0);
  582. if (i32_ret < 0) {
  583. mutex_unlock(&ts->lock);
  584. goto exit_i2c_error;
  585. }
  586. i32_ret = raydium_i2c_pda2_read(client,
  587. RAYDIUM_PDA2_HOST_CMD_ADDR,
  588. u8_rbuffer,
  589. RAD_FT_CMD_LENGTH);
  590. mutex_unlock(&ts->lock);
  591. if (i32_ret < 0)
  592. goto exit_flag_error;
  593. if ((u8_rbuffer[RAD_FT_CMD_POS] & RAYDIUM_FT_UPDATE) ==
  594. RAYDIUM_FT_UPDATE)
  595. break;
  596. usleep_range(500, 1500);
  597. }
  598. if (i32_retry == u8_retry_limit) {
  599. i32_ret = -EAGAIN;
  600. goto exit_flag_error;
  601. }
  602. u32_offset = 0;
  603. u16_read_length = 0;
  604. while (u32_offset < g_u32_raw_data_len) {
  605. if ((u32_offset + MAX_READ_PACKET_SIZE) <
  606. g_u32_raw_data_len)
  607. u16_read_length = MAX_READ_PACKET_SIZE;
  608. else
  609. u16_read_length =
  610. (unsigned short)(g_u32_raw_data_len - u32_offset);
  611. u32_target_addr = RAD_READ_FT_DATA_CMD + u32_offset;
  612. mutex_lock(&(ts->lock));
  613. /*using byte mode to read 4 bytes*/
  614. i32_ret = handle_i2c_pda_read(client,
  615. u32_target_addr,
  616. u8_rbuffer,
  617. u16_read_length);
  618. mutex_unlock(&(ts->lock));
  619. if (i32_ret < 0)
  620. goto exit_flag_error;
  621. memcpy((p_i8_buf + u32_offset), u8_rbuffer, u16_read_length);
  622. u32_offset += u16_read_length;
  623. }
  624. /* clear update flag to get next one*/
  625. u8_rbuffer[RAD_HOST_CMD_POS] = RAYDIUM_HOST_CMD_NO_OP;
  626. u8_rbuffer[RAD_FT_CMD_POS] = g_u8_raw_data_type;
  627. mutex_lock(&ts->lock);
  628. i32_ret = raydium_i2c_pda2_write(client, RAYDIUM_PDA2_HOST_CMD_ADDR,
  629. u8_rbuffer, RAD_FT_CMD_LENGTH);
  630. mutex_unlock(&ts->lock);
  631. if (i32_ret < 0)
  632. goto exit_flag_error;
  633. return g_u32_raw_data_len;
  634. exit_i2c_error:
  635. mutex_unlock(&(ts->lock));
  636. exit_flag_error:
  637. return i32_ret;
  638. }
  639. static ssize_t raydium_i2c_pda_access_store(struct device *dev,
  640. struct device_attribute *attr,
  641. const char *p_i8_buf, size_t count)
  642. {
  643. int i32_ret = 0;
  644. char *temp_buf, *token, *free_temp_buf, *free_token;
  645. const char *delim = " ,";
  646. unsigned char u8_w_data[MAX_WRITE_PACKET_SIZE];
  647. unsigned int u32_data_count = 0;
  648. unsigned int u32_data_index = 0;
  649. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  650. /* receive command line arguments string */
  651. if (count < 2)
  652. return -EINVAL;
  653. temp_buf = kzalloc(count + 1, GFP_KERNEL);
  654. if (temp_buf == NULL)
  655. return -ENOMEM;
  656. token = kzalloc(count + 1, GFP_KERNEL);
  657. if (token == NULL) {
  658. kfree(temp_buf);
  659. return -ENOMEM;
  660. }
  661. free_temp_buf = temp_buf;
  662. free_token = token;
  663. strlcpy(temp_buf, p_i8_buf, count);
  664. token = strsep(&temp_buf, delim);
  665. i32_ret = kstrtoul(token, 16, &g_u32_addr);
  666. token = strsep(&temp_buf, delim);
  667. if (token)
  668. i32_ret = kstrtouint(token, 16, &u32_data_count);
  669. else
  670. goto exit_error;
  671. if (g_u32_length > MAX_WRITE_PACKET_SIZE)
  672. return -EINVAL;
  673. g_u32_length = u32_data_count;
  674. memset(u8_w_data, 0x00, MAX_WRITE_PACKET_SIZE);
  675. if (temp_buf && u32_data_count) {
  676. u32_data_index = 0;
  677. while (u32_data_count) {
  678. token = strsep(&temp_buf, delim);
  679. i32_ret = kstrtou8(token, 16,
  680. &u8_w_data[u32_data_index++]);
  681. if (i32_ret < 0)
  682. goto exit_error;
  683. u32_data_count--;
  684. }
  685. mutex_lock(&g_raydium_ts->lock);
  686. i32_ret = raydium_i2c_pda_write(client, g_u32_addr,
  687. u8_w_data, g_u32_length);
  688. mutex_unlock(&g_raydium_ts->lock);
  689. }
  690. exit_error:
  691. kfree(free_token);
  692. kfree(free_temp_buf);
  693. return count;
  694. }
  695. static ssize_t raydium_i2c_pda_access_via_pda2_store(struct device *dev,
  696. struct device_attribute *attr,
  697. const char *p_i8_buf, size_t count)
  698. {
  699. int i32_ret = 0;
  700. char *temp_buf, *token, *free_temp_buf, *free_token;
  701. const char *delim = " ,";
  702. unsigned char u8_w_data[MAX_WRITE_PACKET_SIZE];
  703. unsigned int u32_data_count = 0;
  704. unsigned int u32_data_index = 0;
  705. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  706. /* receive command line arguments string */
  707. if (count < 2)
  708. return -EINVAL;
  709. temp_buf = kzalloc(count + 1, GFP_KERNEL);
  710. if (temp_buf == NULL)
  711. return -ENOMEM;
  712. token = kzalloc(count + 1, GFP_KERNEL);
  713. if (token == NULL) {
  714. kfree(temp_buf);
  715. return -ENOMEM;
  716. }
  717. free_temp_buf = temp_buf;
  718. free_token = token;
  719. strlcpy(temp_buf, p_i8_buf, count);
  720. token = strsep(&temp_buf, delim);
  721. i32_ret = kstrtoul(token, 16, &g_u32_addr);
  722. token = strsep(&temp_buf, delim);
  723. if (token)
  724. i32_ret = kstrtouint(token, 16, &u32_data_count);
  725. else
  726. goto exit_error;
  727. if (g_u32_length > MAX_WRITE_PACKET_SIZE)
  728. return -EINVAL;
  729. g_u32_length = u32_data_count;
  730. memset(u8_w_data, 0x00, MAX_WRITE_PACKET_SIZE);
  731. if (temp_buf && u32_data_count) {
  732. u32_data_index = 0;
  733. while (u32_data_count) {
  734. token = strsep(&temp_buf, delim);
  735. i32_ret = kstrtou8(token, 16,
  736. &u8_w_data[u32_data_index++]);
  737. if (i32_ret < 0)
  738. goto exit_error;
  739. u32_data_count--;
  740. }
  741. mutex_lock(&g_raydium_ts->lock);
  742. i32_ret = handle_i2c_pda_write(client, g_u32_addr,
  743. u8_w_data, g_u32_length);
  744. mutex_unlock(&g_raydium_ts->lock);
  745. }
  746. exit_error:
  747. kfree(free_token);
  748. kfree(free_temp_buf);
  749. return count;
  750. }
  751. static ssize_t raydium_i2c_pda2_mode_store(struct device *dev,
  752. struct device_attribute *attr,
  753. const char *p_i8_buf, size_t count)
  754. {
  755. int i32_ret = 0;
  756. unsigned char u8_mode;
  757. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  758. if (g_raydium_ts->is_suspend)
  759. LOGD(LOG_DEBUG, "[touch]RAD is_suspend at %s\n", __func__);
  760. /* receive command line arguments string */
  761. if (count > 2)
  762. return -EINVAL;
  763. i32_ret = kstrtou8(p_i8_buf, 16, &u8_mode);
  764. if (i32_ret < 0)
  765. return i32_ret;
  766. i32_ret = raydium_i2c_mode_control(client, u8_mode);
  767. if (i32_ret < 0)
  768. return i32_ret;
  769. return count;
  770. }
  771. static ssize_t raydium_i2c_pda2_access_show(struct device *dev,
  772. struct device_attribute *attr,
  773. char *p_i8_buf)
  774. {
  775. unsigned char u8_rbuffer[4];
  776. unsigned short u16_len = 0;
  777. int i32_ret = -1;
  778. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  779. if (g_u32_length > 4)
  780. return -EINVAL;
  781. memset(u8_rbuffer, 0x00, 4);
  782. mutex_lock(&g_raydium_ts->lock);
  783. i32_ret = raydium_i2c_pda2_read(client, g_u8_addr,
  784. u8_rbuffer, g_u32_length);
  785. mutex_unlock(&g_raydium_ts->lock);
  786. if (i32_ret < 0)
  787. return i32_ret;
  788. snprintf(p_i8_buf, PAGE_SIZE, "0x%04X : 0x%02X%02X%02X%02X\n",
  789. g_u8_addr, u8_rbuffer[3], u8_rbuffer[2],
  790. u8_rbuffer[1], u8_rbuffer[0]);
  791. u16_len = strlen(p_i8_buf);
  792. return u16_len + 1;
  793. }
  794. static ssize_t raydium_i2c_pda2_access_store(struct device *dev,
  795. struct device_attribute *attr,
  796. const char *p_i8_buf, size_t count)
  797. {
  798. int i32_ret = 0;
  799. char *temp_buf, *token, *free_temp_buf, *free_token;
  800. const char *delim = " ,";
  801. unsigned char u8_w_data[MAX_WRITE_PACKET_SIZE];
  802. unsigned int u32_data_count = 0;
  803. unsigned int u32_data_index = 0;
  804. struct i2c_client *client = container_of(dev, struct i2c_client, dev);
  805. /* receive command line arguments string */
  806. if (count < 2)
  807. return -EINVAL;
  808. temp_buf = kzalloc(count + 1, GFP_KERNEL);
  809. if (temp_buf == NULL) {
  810. LOGD(LOG_ERR, "[touch]kzalloc temp_buf failed\n");
  811. return -ENOMEM;
  812. }
  813. token = kzalloc(count + 1, GFP_KERNEL);
  814. if (token == NULL) {
  815. kfree(temp_buf);
  816. return -ENOMEM;
  817. }
  818. free_temp_buf = temp_buf;
  819. free_token = token;
  820. strlcpy(temp_buf, p_i8_buf, count);
  821. token = strsep(&temp_buf, delim);
  822. i32_ret = kstrtou8(token, 16, &g_u8_addr);
  823. token = strsep(&temp_buf, delim);
  824. if (token)
  825. i32_ret = kstrtouint(token, 16, &u32_data_count);
  826. else {
  827. i32_ret = -EINVAL;
  828. goto exit_error;
  829. }
  830. if (u32_data_count > MAX_WRITE_PACKET_SIZE) {
  831. i32_ret = -EINVAL;
  832. goto exit_error;
  833. }
  834. memset(u8_w_data, 0x00, MAX_WRITE_PACKET_SIZE);
  835. g_u32_length = u32_data_count;
  836. if (temp_buf && u32_data_count) {
  837. u32_data_index = 0;
  838. while (u32_data_count) {
  839. token = strsep(&temp_buf, delim);
  840. i32_ret = kstrtou8(token, 16,
  841. &u8_w_data[u32_data_index++]);
  842. if (i32_ret < 0)
  843. goto exit_error;
  844. u32_data_count--;
  845. }
  846. mutex_lock(&g_raydium_ts->lock);
  847. i32_ret = raydium_i2c_pda2_write(client, g_u8_addr,
  848. u8_w_data, g_u32_length);
  849. mutex_unlock(&g_raydium_ts->lock);
  850. if (i32_ret < 0)
  851. goto exit_error;
  852. }
  853. exit_error:
  854. kfree(free_token);
  855. kfree(free_temp_buf);
  856. return count;
  857. }
  858. static ssize_t raydium_receive_fw_store(struct device *dev,
  859. struct device_attribute *attr,
  860. const char *p_i8_buf, size_t count)
  861. {
  862. int i32_ret = 0;
  863. const char *delim = " ,";
  864. char *token, *temp_buf, *free_token = NULL, *free_temp_buf = NULL;
  865. static unsigned char *p_u8_firmware_data;
  866. unsigned char u8_cmd;
  867. unsigned long u32_len;
  868. static unsigned char u8_type;
  869. static unsigned int u32_index;
  870. if (count == 20) { /*check FW type*/
  871. temp_buf = kzalloc(32, GFP_KERNEL);
  872. if (temp_buf == NULL) {
  873. LOGD(LOG_ERR, "[touch]kzalloc temp_buf failed\n");
  874. return -ENOMEM;
  875. }
  876. token = kzalloc(32, GFP_KERNEL);
  877. if (token == NULL) {
  878. kfree(temp_buf);
  879. return -ENOMEM;
  880. }
  881. free_token = token;
  882. free_temp_buf = temp_buf;
  883. snprintf(temp_buf, PAGE_SIZE, "%s", p_i8_buf);
  884. token = strsep(&temp_buf, delim);
  885. i32_ret = kstrtou8(token, 16, &u8_cmd);
  886. if (i32_ret < 0) {
  887. LOGD(LOG_ERR, "[touch]kstrtou8 failed\n");
  888. kfree(free_token);
  889. free_token = NULL;
  890. kfree(free_temp_buf);
  891. free_temp_buf = NULL;
  892. }
  893. token = strsep(&temp_buf, delim);
  894. i32_ret = kstrtou8(token, 16, &u8_type);
  895. if (i32_ret < 0) {
  896. LOGD(LOG_ERR, "[touch]kstrtou8 failed\n");
  897. kfree(temp_buf);
  898. kfree(token);
  899. }
  900. token = strsep(&temp_buf, delim);
  901. i32_ret = kstrtoul(token, 16, &u32_len);
  902. if (i32_ret < 0) {
  903. LOGD(LOG_ERR, "[touch]kstrtou8 failed\n");
  904. kfree(temp_buf);
  905. kfree(token);
  906. }
  907. LOGD(LOG_INFO, "[touch]uc_cmd=0x%x, uc_type=0x%x, u16_len=0x%x\n",
  908. u8_cmd, u8_type, (unsigned int)u32_len);
  909. if (u8_cmd == RAD_CMD_UPDATE_BIN) { /*check FW length*/
  910. u32_index = 0;
  911. if (u8_type == RAYDIUM_BOOTLOADER) {
  912. memset(g_rad_boot_image, 0, u32_len);
  913. p_u8_firmware_data = g_rad_boot_image;
  914. } else if (u8_type == RAYDIUM_INIT) {
  915. memset(g_rad_init_image, 0, u32_len);
  916. p_u8_firmware_data = g_rad_init_image;
  917. } else if (u8_type == RAYDIUM_PARA) {
  918. memset(g_rad_para_image, 0, u32_len);
  919. p_u8_firmware_data = g_rad_para_image;
  920. } else if (u8_type == RAYDIUM_FIRMWARE) {
  921. memset(g_rad_fw_image, 0, u32_len);
  922. p_u8_firmware_data = g_rad_fw_image;
  923. } else if (u8_type == RAYDIUM_TEST_PARA) {
  924. memset(g_rad_testpara_image, 0, u32_len);
  925. p_u8_firmware_data = g_rad_testpara_image;
  926. } else if (u8_type == RAYDIUM_TEST_FW) {
  927. memset(g_rad_testfw_image, 0, u32_len);
  928. p_u8_firmware_data = g_rad_testfw_image;
  929. }
  930. } else if (u8_cmd == RAD_CMD_UPDATE_END) { /*set buffer finish*/
  931. if (u8_type == RAYDIUM_TEST_FW) {
  932. memcpy((g_rad_testfw_image + RAD_FW_3X_SIZE),
  933. g_rad_testpara_image, RAD_PARA_3X_SIZE + 4);
  934. }
  935. u32_index = 0;
  936. g_u8_table_setting = 0;
  937. } else if (u8_cmd == RAD_CMD_BURN_FINISH) { /*free buffer*/
  938. u8_type = 0;
  939. u32_index = 0;
  940. g_u8_table_setting = 1;
  941. }
  942. if (free_temp_buf) {
  943. kfree(free_temp_buf);
  944. free_temp_buf = NULL;
  945. }
  946. if (free_token) {
  947. kfree(free_token);
  948. free_token = NULL;
  949. }
  950. } else if (count > 10) { /*start copy FW to array*/
  951. memcpy((p_u8_firmware_data + u32_index), p_i8_buf, count);
  952. u32_index += count;
  953. } else
  954. LOGD(LOG_ERR, "[touch]other case, count=%d\n", count);
  955. return count;
  956. }
  957. static ssize_t raydium_log_level_store(struct device *dev,
  958. struct device_attribute *attr,
  959. const char *p_i8_buf, size_t count)
  960. {
  961. int i32_ret = 0;
  962. unsigned char u8_level = 0;
  963. /* receive command line arguments string */
  964. if (count > 2)
  965. return -EINVAL;
  966. i32_ret = kstrtou8(p_i8_buf, 16, &u8_level);
  967. if (i32_ret < 0)
  968. return i32_ret;
  969. g_u8_log_level = u8_level;
  970. LOGD(LOG_ERR, "[touch]g_u8_log_level = %d\r\n", g_u8_log_level);
  971. return count;
  972. }
  973. #ifdef RAD_SELFTEST
  974. static ssize_t raydium_reset_control_store(struct device *dev,
  975. struct device_attribute *attr,
  976. const char *p_i8_buf, size_t count)
  977. {
  978. int i32_ret = 0;
  979. unsigned char u8_high;
  980. if (g_raydium_ts->is_suspend)
  981. LOGD(LOG_DEBUG, "[touch]RAD is_suspend at %s\n", __func__);
  982. /* receive command line arguments string */
  983. if (count > 2)
  984. return -EINVAL;
  985. i32_ret = kstrtou8(p_i8_buf, 16, &u8_high);
  986. if (i32_ret < 0)
  987. return i32_ret;
  988. g_u8_i2c_mode = PDA2_MODE;
  989. g_u8_resetflag = true;
  990. if (u8_high) {
  991. LOGD(LOG_INFO, "[touch]RAD %s set reset gpio to high!!\n",
  992. __func__);
  993. gpio_set_value(g_raydium_ts->rst_gpio, 1);
  994. } else {
  995. LOGD(LOG_INFO, "[touch]RAD %s set reset gpio to low!!\n",
  996. __func__);
  997. gpio_set_value(g_raydium_ts->rst_gpio, 0);
  998. }
  999. return count;
  1000. }
  1001. static ssize_t raydium_irq_state_show(struct device *dev,
  1002. struct device_attribute *attr,
  1003. char *p_i8_buf)
  1004. {
  1005. unsigned int u32_irq_value;
  1006. u32_irq_value = gpio_get_value(g_raydium_ts->irq_gpio);
  1007. snprintf(p_i8_buf, PAGE_SIZE, "%d", u32_irq_value);
  1008. LOGD(LOG_DEBUG, "%s\n", p_i8_buf);
  1009. return strlen(p_i8_buf) + 1;
  1010. }
  1011. static ssize_t raydium_flag_show(struct device *dev,
  1012. struct device_attribute *attr,
  1013. char *p_i8_buf)
  1014. {
  1015. unsigned short u16_len = 0;
  1016. snprintf(p_i8_buf, PAGE_SIZE, "%d", g_u8_raydium_flag);
  1017. LOGD(LOG_DEBUG, "[touch]RAD flag : %d\n", g_u8_raydium_flag);
  1018. u16_len = strlen(p_i8_buf);
  1019. return u16_len + 1;
  1020. }
  1021. static ssize_t raydium_flag_store(struct device *dev,
  1022. struct device_attribute *attr,
  1023. const char *p_i8_buf, size_t count)
  1024. {
  1025. int i32_ret = 0;
  1026. unsigned char u8_flag = 0;
  1027. /* receive command line arguments string */
  1028. if (count > 2)
  1029. return -EINVAL;
  1030. i32_ret = kstrtou8(p_i8_buf, 16, &u8_flag);
  1031. if (i32_ret < 0)
  1032. return i32_ret;
  1033. g_u8_raydium_flag = u8_flag;
  1034. return count;
  1035. }
  1036. static ssize_t raydium_selftest_show(struct device *dev,
  1037. struct device_attribute *attr,
  1038. char *p_i8_buf)
  1039. {
  1040. int i32_ret = SUCCESS;
  1041. LOGD(LOG_INFO, "[touch]do selftest\n");
  1042. i32_ret = raydium_do_selftest(g_raydium_ts);
  1043. snprintf(p_i8_buf, PAGE_SIZE, "Raydium do selftest : %d\n", i32_ret);
  1044. return strlen(p_i8_buf) + 1;
  1045. }
  1046. #endif
  1047. /* panel calibration cmd (R)
  1048. * example:cat raydium_ic_verion
  1049. */
  1050. static DEVICE_ATTR(raydium_touch_calibration, 0644,
  1051. raydium_touch_calibration_show,
  1052. NULL);
  1053. /* check the i2c (R)
  1054. * example:cat raydium_check_i2c
  1055. */
  1056. static DEVICE_ATTR(raydium_check_i2c, 0644,
  1057. raydium_check_i2c_show,
  1058. NULL);
  1059. /* upgrade configurate and algo firmware from app.bin (W)
  1060. * example:echo "offset num_of_bin length *_app.bin [length *_app.bin]"
  1061. * > raydium_fw_upgrade_mode
  1062. */
  1063. static DEVICE_ATTR(raydium_fw_upgrade, 0644,
  1064. raydium_fw_upgrade_show,
  1065. raydium_fw_upgrade_store);
  1066. /* change I2C communication mode (W)
  1067. * example:echo 1 > raydium_i2c_pda2_mode ==> enable pda2 mode
  1068. * echo 0 > raydium_i2c_pda2_mode ==> disable pda2 mode
  1069. */
  1070. static DEVICE_ATTR(raydium_i2c_pda2_mode, 0644,
  1071. NULL,
  1072. raydium_i2c_pda2_mode_store);
  1073. /* I2C pda mode (R/W)
  1074. * example: cat raydium_i2c_pda_access ==> read pda address provided by the
  1075. * following cmd
  1076. * echo ADDRinHEX [DATAinHEX] > raydium_i2c_pda_access ==> write
  1077. * pda address [data]
  1078. */
  1079. static DEVICE_ATTR(raydium_i2c_pda_access, 0644,
  1080. raydium_i2c_pda_access_show,
  1081. raydium_i2c_pda_access_store);
  1082. /* I2C pda mode via pda2(R/W)
  1083. * example: cat raydium_i2c_pda_access ==> read pda address provided by the
  1084. * following cmd
  1085. * echo ADDRinHEX [DATAinHEX] > raydium_i2c_pda_access ==> write
  1086. * pda address [data]
  1087. */
  1088. static DEVICE_ATTR(raydium_i2c_pda_access_via_pda2, 0644,
  1089. raydium_i2c_pda_access_via_pda2_show,
  1090. raydium_i2c_pda_access_via_pda2_store);
  1091. /* I2C pda2 mode (R/W)
  1092. * example: cat raydium_i2c_pda2_access ==> read pda2 address provided by
  1093. * the following cmd
  1094. * echo ADDRinHEX [DATAinHEX] > raydium_i2c_pda2_access ==>
  1095. * write pda2 address [data]
  1096. */
  1097. static DEVICE_ATTR(raydium_i2c_pda2_access, 0644,
  1098. raydium_i2c_pda2_access_show,
  1099. raydium_i2c_pda2_access_store);
  1100. /* I2C pda2 mode page (W)
  1101. * example: echo PAGEinHEX > raydium_i2c_pda2_page ==> write pda2 page
  1102. */
  1103. static DEVICE_ATTR(raydium_i2c_pda2_page, 0644,
  1104. NULL,
  1105. raydium_i2c_pda2_page_store);
  1106. /* I2C read/set FT raw data (R/W)
  1107. * example: cat raydium_i2c_raw_data ==> read raw data with specific length
  1108. * of corresponding type provided by the following cmd
  1109. * echo DataTypeinHEX RawDataLengthinHEX > raydium_i2c_raw_data
  1110. * ==> set raw data type and its length
  1111. */
  1112. static DEVICE_ATTR(raydium_i2c_raw_data, 0644,
  1113. raydium_i2c_raw_data_show,
  1114. raydium_i2c_raw_data_store);
  1115. /* Touch lock (W)
  1116. * example: echo 1 > raydium_i2c_touch_lock ==> enable touch lock
  1117. * echo 0 > raydium_i2c_touch_lock ==> disable touch lock
  1118. */
  1119. static DEVICE_ATTR(raydium_i2c_touch_lock, 0644,
  1120. NULL,
  1121. raydium_touch_lock_store);
  1122. /* Log level (W)
  1123. * example: echo 1 > raydium_log_level ==> modify log level
  1124. */
  1125. static DEVICE_ATTR(raydium_log_level, 0644,
  1126. NULL,
  1127. raydium_log_level_store);
  1128. /* show the fw version (R)
  1129. * example:cat raydium_fw_version
  1130. */
  1131. static DEVICE_ATTR(raydium_check_fw_version, 0644,
  1132. raydium_check_fw_version_show,
  1133. NULL);
  1134. /* show the driver version (R)
  1135. * example:cat raydium_check_driver_version
  1136. */
  1137. static DEVICE_ATTR(raydium_check_driver_version, 0644,
  1138. raydium_check_driver_version_show,
  1139. NULL);
  1140. /* show the panel version (R)
  1141. * example:cat raydium_panel_version
  1142. */
  1143. static DEVICE_ATTR(raydium_check_panel_version, 0644,
  1144. raydium_check_panel_version_show,
  1145. NULL);
  1146. static DEVICE_ATTR(raydium_hw_reset, 0644,
  1147. raydium_hw_reset_show,
  1148. NULL);
  1149. static DEVICE_ATTR(raydium_palm_status, 0644,
  1150. raydium_palm_status_show,
  1151. NULL);
  1152. static DEVICE_ATTR(raydium_receive_fw_control, 0644,
  1153. NULL,
  1154. raydium_receive_fw_store);
  1155. static DEVICE_ATTR(raydium_mem_setting, 0644,
  1156. NULL,
  1157. raydium_mem_store);
  1158. #ifdef RAD_SELFTEST
  1159. /* Read interrupt flag cmd (R)
  1160. * example:cat raydium_int_flag
  1161. */
  1162. static DEVICE_ATTR(raydium_int_flag, 0644,
  1163. raydium_flag_show,
  1164. raydium_flag_store);
  1165. static DEVICE_ATTR(raydium_reset_control, 0644,
  1166. NULL,
  1167. raydium_reset_control_store);
  1168. static DEVICE_ATTR(raydium_irq_state, 0644,
  1169. raydium_irq_state_show,
  1170. NULL);
  1171. static DEVICE_ATTR(raydium_do_selftest, 0644,
  1172. raydium_selftest_show,
  1173. NULL);
  1174. #endif
  1175. /*add your attr in here*/
  1176. struct attribute *raydium_attributes[] = {
  1177. &dev_attr_raydium_touch_calibration.attr,
  1178. &dev_attr_raydium_check_i2c.attr,
  1179. &dev_attr_raydium_i2c_pda2_mode.attr,
  1180. &dev_attr_raydium_i2c_pda_access.attr,
  1181. &dev_attr_raydium_i2c_pda_access_via_pda2.attr,
  1182. &dev_attr_raydium_i2c_pda2_access.attr,
  1183. &dev_attr_raydium_i2c_pda2_page.attr,
  1184. &dev_attr_raydium_i2c_raw_data.attr,
  1185. &dev_attr_raydium_i2c_touch_lock.attr,
  1186. &dev_attr_raydium_fw_upgrade.attr,
  1187. &dev_attr_raydium_check_fw_version.attr,
  1188. &dev_attr_raydium_check_panel_version.attr,
  1189. &dev_attr_raydium_hw_reset.attr,
  1190. &dev_attr_raydium_palm_status.attr,
  1191. &dev_attr_raydium_check_driver_version.attr,
  1192. &dev_attr_raydium_receive_fw_control.attr,
  1193. &dev_attr_raydium_mem_setting.attr,
  1194. &dev_attr_raydium_log_level.attr,
  1195. #ifdef RAD_SELFTEST
  1196. &dev_attr_raydium_irq_state.attr,
  1197. &dev_attr_raydium_int_flag.attr,
  1198. &dev_attr_raydium_reset_control.attr,
  1199. &dev_attr_raydium_do_selftest.attr,
  1200. #endif
  1201. NULL
  1202. };