pt_regs.h 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761
  1. /*
  2. * pt_regs.h
  3. * Parade TrueTouch(TM) Standard Product Registers.
  4. * For use with Parade touchscreen controllers.
  5. * Supported parts include:
  6. * TMA5XX
  7. * TMA448
  8. * TMA445A
  9. * TT21XXX
  10. * TT31XXX
  11. * TT4XXXX
  12. * TT7XXX
  13. * TC3XXX
  14. *
  15. * Copyright (C) 2015-2020 Parade Technologies
  16. *
  17. * This program is free software; you can redistribute it and/or
  18. * modify it under the terms of the GNU General Public License
  19. * version 2, and only version 2, as published by the
  20. * Free Software Foundation.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * Contact Parade Technologies at www.paradetech.com <[email protected]>
  28. *
  29. */
  30. #ifndef _PT_REGS_H
  31. #define _PT_REGS_H
  32. #define PT_PANEL_ID_DEFAULT 0
  33. #define PT_MAX_PATH_SIZE 128
  34. #define PT_PIP2_BIN_FILE_PATH "/data/ttdl/pt_fw.bin"
  35. #define PT_SUPPRESS_AUTO_BL 0
  36. #define PT_ALLOW_AUTO_BL 1
  37. #define PT_PIP2_MAX_FILE_SIZE 0x18000
  38. #define PT_PIP2_FILE_SECTOR_SIZE 0x1000
  39. #ifndef CONFIG_DRM
  40. #define CONFIG_DRM
  41. #endif
  42. #include <linux/device.h>
  43. #include <linux/fb.h>
  44. #include <linux/notifier.h>
  45. #ifdef CONFIG_HAS_EARLYSUSPEND
  46. #include <linux/earlysuspend.h>
  47. #elif defined(CONFIG_DRM)
  48. #include <drm/drm_panel.h>
  49. #endif
  50. #include <asm/unaligned.h>
  51. #include <linux/debugfs.h>
  52. #include <linux/delay.h>
  53. #include <linux/err.h>
  54. #include <linux/gpio.h>
  55. #include <linux/hid.h>
  56. #include <linux/input.h>
  57. #include <linux/interrupt.h>
  58. #include <linux/irq.h>
  59. #include <linux/kernel.h>
  60. #include <linux/limits.h>
  61. #include <linux/module.h>
  62. #include <linux/of_device.h>
  63. #include <linux/of.h>
  64. #include <linux/pm_runtime.h>
  65. #include <linux/sched.h>
  66. #include <linux/slab.h>
  67. #include <linux/suspend.h>
  68. #include <linux/stringify.h>
  69. #include <linux/types.h>
  70. #include <linux/fs.h>
  71. #include <asm/uaccess.h>
  72. #include <linux/workqueue.h>
  73. #include <linux/version.h>
  74. #include "pt_core.h"
  75. #include <linux/i2c.h>
  76. #include <linux/of_gpio.h>
  77. #include <linux/timer.h>
  78. #include <linux/timex.h>
  79. #include <linux/rtc.h>
  80. #include <linux/regulator/consumer.h>
  81. #define STATUS_SUCCESS 0
  82. #define STATUS_FAIL -1
  83. #define PT_FW_FILE_PREFIX "tt_fw"
  84. #define PT_FW_FILE_SUFFIX ".bin"
  85. #define PT_FW_FILE_NAME "tt_fw.bin"
  86. #define PT_FW_RAM_FILE_NAME "tt_fw_ram.bin"
  87. /* Enable special TTDL features */
  88. #ifndef TTHE_TUNER_SUPPORT
  89. #define TTHE_TUNER_SUPPORT
  90. #endif
  91. #ifndef TTDL_DIAGNOSTICS
  92. #define TTDL_DIAGNOSTICS
  93. #endif
  94. #ifndef EASYWAKE_TSG6
  95. #define EASYWAKE_TSG6
  96. #endif
  97. #ifdef TTHE_TUNER_SUPPORT
  98. #define PT_TTHE_TUNER_FILE_NAME "tthe_tuner"
  99. #endif
  100. #define PT_MAX_PRBUF_SIZE PIPE_BUF
  101. #define PT_PR_TRUNCATED " truncated..."
  102. #define PT_DEFAULT_CORE_ID "pt_core0"
  103. #define PT_MAX_NUM_CORE_DEVS 5
  104. #define PT_IRQ_ASSERTED_VALUE 0
  105. #ifdef PT_ENABLE_MAX_ELEN
  106. #define PT_MAX_ELEN 100
  107. #endif
  108. /* Power Management Macros Enablement */
  109. #ifndef CONFIG_PM
  110. #define CONFIG_PM
  111. #endif
  112. #ifndef CONFIG_PM_RUNTIME
  113. #define CONFIG_PM_RUNTIME
  114. #endif
  115. #ifndef CONFIG_PM_SLEEP
  116. #define CONFIG_PM_SLEEP
  117. #endif
  118. /* Pin Control Macro Enablement */
  119. #ifndef PT_PINCTRL_EN
  120. #define PT_PINCTRL_EN
  121. #endif
  122. #ifndef TT7XXX_EXAMPLE
  123. #define TT7XXX_EXAMPLE
  124. #endif
  125. #define TOUCH_TO_WAKE_POWER_FEATURE_WORK_AROUND
  126. /*
  127. * The largest PIP message is the PIP2 FILE_WRITE which has:
  128. * 2 byte register
  129. * 4 byte header
  130. * 256 byte payload
  131. * 2 byte CRC
  132. */
  133. #define PT_MAX_PIP2_MSG_SIZE 264
  134. #define PT_MAX_PIP1_MSG_SIZE 255
  135. /*
  136. * The minimun size of PIP2 packet includes:
  137. * 2 byte length
  138. * 1 byte sequence
  139. * 1 byte command ID
  140. * 2 byte CRC
  141. */
  142. #define PT_MIN_PIP2_PACKET_SIZE 6
  143. static const u8 pt_data_block_security_key[] = {
  144. 0xA5, 0x01, 0x02, 0x03, 0xFF, 0xFE, 0xFD, 0x5A
  145. };
  146. /* Enum for debug reporting levels */
  147. enum PT_DEBUG_LEVEL {
  148. DL_QUIET = 0,
  149. DL_ERROR = 1,
  150. DL_WARN = 2,
  151. DL_INFO = 3,
  152. DL_DEBUG = 4,
  153. DL_MAX
  154. };
  155. #define PT_INITIAL_DEBUG_LEVEL DL_WARN
  156. /* Startup DUT enum status bitmask */
  157. enum PT_STARTUP_STATUS {
  158. STARTUP_STATUS_START = 0,
  159. STARTUP_STATUS_BL_RESET_SENTINEL = 0x001,
  160. STARTUP_STATUS_FW_RESET_SENTINEL = 0x002,
  161. STARTUP_STATUS_GET_DESC = 0x004,
  162. STARTUP_STATUS_FW_OUT_OF_BOOT = 0x008,
  163. STARTUP_STATUS_GET_RPT_DESC = 0x010,
  164. STARTUP_STATUS_GET_SYS_INFO = 0x020,
  165. STARTUP_STATUS_GET_CFG_CRC = 0x040,
  166. STARTUP_STATUS_RESTORE_PARM = 0x080,
  167. STARTUP_STATUS_COMPLETE = 0x100,
  168. STARTUP_STATUS_FULL = 0x1FF
  169. };
  170. #define PT_INITIAL_SHOW_TIME_STAMP 0
  171. /*
  172. * Print out all debug prints that are less then or equal to set level.
  173. */
  174. #define pt_debug(dev, dlevel, format, arg...) \
  175. do { \
  176. struct pt_core_data *cd_tmp = dev_get_drvdata(dev);\
  177. if (cd_tmp->debug_level >= dlevel) {\
  178. if (dlevel == DL_ERROR)\
  179. dev_err(dev, "[%d] "format, dlevel, ##arg);\
  180. else\
  181. dev_info(dev, "[%d] "format, dlevel, ##arg);\
  182. } \
  183. } while (0)
  184. enum PT_PIP_REPORT_ID {
  185. PT_PIP_INVALID_REPORT_ID = 0x00,
  186. PT_PIP_TOUCH_REPORT_ID = 0x01,
  187. PT_PIP_TOUCH_REPORT_WIN8_ID = 0x02,
  188. PT_PIP_CAPSENSE_BTN_REPORT_ID = 0x03,
  189. PT_PIP_WAKEUP_REPORT_ID = 0x04,
  190. PT_PIP_NOISE_METRIC_REPORT_ID = 0x05,
  191. PT_PIP_PUSH_BUTTON_REPORT_ID = 0x06,
  192. PT_PIP_SELFCAP_INPUT_REPORT_ID = 0x0D,
  193. PT_PIP_TRACKING_HEATMAP_REPORT_ID = 0x0E,
  194. PT_PIP_SENSOR_DATA_REPORT_ID = 0x0F,
  195. PT_PIP_NON_HID_RESPONSE_ID = 0x1F,
  196. PT_PIP_NON_HID_COMMAND_ID = 0x2F,
  197. PT_PIP_BL_RESPONSE_REPORT_ID = 0x30,
  198. PT_PIP_BL_COMMAND_REPORT_ID = 0x40
  199. };
  200. enum PT_HID_REPORT_ID {
  201. PT_HID_FINGER_REPORT_ID = 0x01,
  202. PT_HID_PEN_REPORT_ID = 0x02
  203. };
  204. /* HID IDs and commands */
  205. #define HID_VENDOR_ID 0x04B4
  206. #define HID_APP_PRODUCT_ID 0xC101
  207. #define HID_VERSION 0x0100
  208. #define HID_APP_REPORT_ID 0xF7
  209. #define HID_BL_REPORT_ID 0xFF
  210. #define HID_RESPONSE_REPORT_ID 0xF0
  211. #define HID_POWER_ON 0x0
  212. #define HID_POWER_SLEEP 0x1
  213. #define HID_POWER_STANDBY 0x2
  214. /* PIP1 offsets and masks */
  215. #define PIP1_RESP_REPORT_ID_OFFSET 2
  216. #define PIP1_RESP_COMMAND_ID_OFFSET 4
  217. #define PIP1_RESP_COMMAND_ID_MASK 0x7F
  218. #define PIP1_CMD_COMMAND_ID_OFFSET 6
  219. #define PIP1_CMD_COMMAND_ID_MASK 0x7F
  220. #define PIP1_SYSINFO_TTDATA_OFFSET 5
  221. #define PIP1_SYSINFO_SENSING_OFFSET 33
  222. #define PIP1_SYSINFO_BTN_OFFSET 48
  223. #define PIP1_SYSINFO_BTN_MASK 0xFF
  224. #define PIP1_SYSINFO_MAX_BTN 8
  225. /* Timeouts in ms */
  226. #define PT_PTSBC_INIT_WATCHDOG_TIMEOUT 20000
  227. #define PT_REQUEST_EXCLUSIVE_TIMEOUT 8000
  228. #define PT_WATCHDOG_TIMEOUT 2000
  229. #define PT_FW_EXIT_BOOT_MODE_TIMEOUT 1000
  230. #define PT_BL_WAIT_FOR_SENTINEL 500
  231. #define PT_REQUEST_ENUM_TIMEOUT 4000
  232. #define PT_GET_HID_DESCRIPTOR_TIMEOUT 500
  233. #define PT_HID_CMD_DEFAULT_TIMEOUT 500
  234. #define PT_PIP_CMD_DEFAULT_TIMEOUT 2000
  235. #define PT_PIP1_CMD_DEFAULT_TIMEOUT 1000
  236. #define PT_PIP1_START_BOOTLOADER_TIMEOUT 2000
  237. #define PT_PIP1_CMD_GET_SYSINFO_TIMEOUT 500
  238. #define PT_PIP1_CMD_CALIBRATE_IDAC_TIMEOUT 5000
  239. #define PT_PIP1_CMD_CALIBRATE_EXT_TIMEOUT 5000
  240. #define PT_PIP1_CMD_WRITE_CONF_BLOCK_TIMEOUT 400
  241. #define PT_PIP1_CMD_RUN_SELF_TEST_TIMEOUT 10000
  242. #define PT_PIP1_CMD_INITIATE_BL_TIMEOUT 20000
  243. #define PT_PIP1_CMD_PROGRAM_AND_VERIFY_TIMEOUT 400
  244. #define PT_PIP2_CMD_FILE_ERASE_TIMEOUT 3000
  245. /* Max counts */
  246. #define PT_WATCHDOG_RETRY_COUNT 30
  247. #define PT_BUS_READ_INPUT_RETRY_COUNT 2
  248. #define PT_FLUSH_BUS_BASED_ON_LEN 0
  249. #define PT_FLUSH_BUS_FULL_256_READ 1
  250. /* maximum number of concurrent tracks */
  251. #define TOUCH_REPORT_SIZE 10
  252. #define TOUCH_INPUT_HEADER_SIZE 7
  253. #define TOUCH_COUNT_BYTE_OFFSET 5
  254. #define BTN_REPORT_SIZE 9
  255. #define BTN_INPUT_HEADER_SIZE 5
  256. #define SENSOR_REPORT_SIZE 150
  257. #define SENSOR_HEADER_SIZE 4
  258. /* helpers */
  259. #define GET_NUM_TOUCHES(x) ((x) & 0x1F)
  260. #define IS_LARGE_AREA(x) ((x) & 0x20)
  261. #define IS_BAD_PKT(x) ((x) & 0x20)
  262. #define IS_TMO(t) ((t) == 0)
  263. #define HI_BYTE(x) (u8)(((x) >> 8) & 0xFF)
  264. #define LOW_BYTE(x) (u8)((x) & 0xFF)
  265. #define SET_CMD_LOW(byte, bits) \
  266. ((byte) = (((byte) & 0xF0) | ((bits) & 0x0F)))
  267. #define SET_CMD_HIGH(byte, bits)\
  268. ((byte) = (((byte) & 0x0F) | ((bits) & 0xF0)))
  269. #define GET_MASK(length) \
  270. ((1 << length) - 1)
  271. #define GET_FIELD(name, length, shift) \
  272. ((name >> shift) & GET_MASK(length))
  273. #define _base(x) ((x >= '0' && x <= '9') ? '0' : \
  274. (x >= 'a' && x <= 'f') ? 'a' - 10 : \
  275. (x >= 'A' && x <= 'F') ? 'A' - 10 : \
  276. '\255')
  277. #define HEXOF(x) (x - _base(x))
  278. #define IS_EASY_WAKE_CONFIGURED(x) \
  279. ((x) != 0 && (x) != 0xFF)
  280. #define IS_PIP_VER_GE(p, maj, min) \
  281. ((p)->ttdata.pip_ver_major > (maj) ? \
  282. 1 : \
  283. (((p)->ttdata.pip_ver_major == (maj) ? \
  284. ((p)->ttdata.pip_ver_minor >= (min) ? \
  285. 1 : 0) : \
  286. 0)))
  287. #define IS_PIP_VER_EQ(p, maj, min) \
  288. ((p)->ttdata.pip_ver_major == (maj) ? \
  289. ((p)->ttdata.pip_ver_minor == (min) ? \
  290. 1 : \
  291. 0 : \
  292. 0))
  293. #define PT_PANEL_ID_BITMASK 0x0000000C
  294. #define PT_PANEL_ID_SHIFT 2
  295. #define TTDL_PTVIRTDUT_SUPPORT 1
  296. /* DUT Debug commands (dut_debug sysfs) */
  297. #define PT_DUT_DBG_HID_RESET 50
  298. #define PT_DUT_DBG_HID_GET_REPORT 51 /* depricated */
  299. #define PT_DUT_DBG_HID_SET_REPORT 52 /* depricated */
  300. #define PT_DUT_DBG_HID_SET_POWER_ON 53
  301. #define PT_DUT_DBG_HID_SET_POWER_SLEEP 54
  302. #define PT_DUT_DBG_HID_SET_POWER_STANDBY 55
  303. #define PT_DUT_DBG_PIP_SOFT_RESET 97
  304. #define PT_DUT_DBG_RESET 98
  305. #define PT_DUT_DBG_PIP_NULL 100
  306. #define PT_DUT_DBG_PIP_ENTER_BL 101
  307. #define PT_DUT_DBG_HID_SYSINFO 102
  308. #define PT_DUT_DBG_PIP_SUSPEND_SCAN 103
  309. #define PT_DUT_DBG_PIP_RESUME_SCAN 104
  310. #define PT_DUT_DBG_HID_DESC 109
  311. /* Driver Debug commands (drv_debug sysfs) */
  312. #define PT_DRV_DBG_SUSPEND 4
  313. #define PT_DRV_DBG_RESUME 5
  314. #define PT_DRV_DBG_STOP_WD 105
  315. #define PT_DRV_DBG_START_WD 106
  316. #define PT_DRV_DBG_TTHE_TUNER_EXIT 107
  317. #define PT_DRV_DBG_TTHE_BUF_CLEAN 108
  318. #define PT_DRV_DBG_CLEAR_PARM_LIST 110
  319. #define PT_DRV_DBG_FORCE_BUS_READ 111
  320. #define PT_DRV_DBG_CLEAR_CAL_DATA 112
  321. /*
  322. * Commands that require additional parameters
  323. * will be in the 200 range. Commands that do not
  324. * require additional parameters remain below 200.
  325. */
  326. #define PT_DRV_DBG_REPORT_LEVEL 200
  327. #define PT_DRV_DBG_WATCHDOG_INTERVAL 201
  328. #define PT_DRV_DBG_SHOW_TIMESTAMP 202
  329. #define PT_DRV_DBG_SET_GENERATION 210
  330. #ifdef TTDL_DIAGNOSTICS
  331. #define PT_DRV_DBG_FLUSH_BUS 204 /* deprecated */
  332. #define PT_DRV_DBG_SETUP_PWR 205
  333. #define PT_DRV_DBG_GET_PUT_SYNC 206
  334. #define PT_DRV_DBG_SET_PIP2_LAUNCH_APP 207 /* deprecated */
  335. #define PT_DRV_DBG_SET_TT_DATA 208
  336. #define PT_DRV_DBG_SET_RUN_FW_PIN 209 /* deprecated */
  337. #define PT_DRV_DBG_SET_BRIDGE_MODE 211
  338. #define PT_DRV_DBG_SET_I2C_ADDRESS 212
  339. #define PT_DRV_DBG_SET_FLASHLESS_DUT 213
  340. #define PT_DRV_DBG_SET_FORCE_SEQ 214
  341. #define PT_DRV_DBG_BL_WITH_NO_INT 215
  342. #define PT_DRV_DBG_CAL_CACHE_IN_HOST 216
  343. #define PT_DRV_DBG_MULTI_CHIP 217
  344. #define PT_DRV_DBG_SET_PANEL_ID_TYPE 218
  345. #define PT_DRV_DBG_PIP_TIMEOUT 219
  346. #define PT_DRV_DBG_TTHE_HID_USB_FORMAT 220
  347. #ifdef TTDL_PTVIRTDUT_SUPPORT
  348. #define PT_DRV_DBG_SET_HW_DETECT 298
  349. #define PT_DRV_DBG_VIRTUAL_I2C_DUT 299
  350. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  351. /* TTDL Built In Self Test selection bit masks */
  352. #define PT_TTDL_BIST_BUS_TEST 0x01
  353. #define PT_TTDL_BIST_IRQ_TEST 0x02
  354. #define PT_TTDL_BIST_TP_XRES_TEST 0x04
  355. #define PT_TTDL_BIST_SLAVE_BUS_TEST 0x08
  356. #define PT_TTDL_BIST_SLAVE_IRQ_TEST 0x10
  357. #define PT_TTDL_BIST_SLAVE_XRES_TEST 0x20
  358. #define SLAVE_DETECT_MASK 0x01
  359. #define VIRT_MAX_IRQ_RELEASE_TIME_US 500000
  360. #endif /* TTDL DIAGNOSTICS */
  361. /* Recognized usages */
  362. /* undef them first for possible redefinition in Linux */
  363. #undef HID_DI_PRESSURE
  364. #undef HID_DI_TIP
  365. #undef HID_DI_CONTACTID
  366. #undef HID_DI_CONTACTCOUNT
  367. #undef HID_DI_SCANTIME
  368. #define HID_DI_PRESSURE 0x000d0030
  369. #define HID_DI_TIP 0x000d0042
  370. #define HID_DI_CONTACTID 0x000d0051
  371. #define HID_DI_CONTACTCOUNT 0x000d0054
  372. #define HID_DI_SCANTIME 0x000d0056
  373. /* Parade vendor specific usages */
  374. #define HID_PT_UNDEFINED 0xff010000
  375. #define HID_PT_BOOTLOADER 0xff010001
  376. #define HID_PT_TOUCHAPPLICATION 0xff010002
  377. #define HID_PT_BUTTONS 0xff010020
  378. #define HID_PT_GENERICITEM 0xff010030
  379. #define HID_PT_LARGEOBJECT 0xff010040
  380. #define HID_PT_NOISEEFFECTS 0xff010041
  381. #define HID_PT_REPORTCOUNTER 0xff010042
  382. #define HID_PT_TOUCHTYPE 0xff010060
  383. #define HID_PT_EVENTID 0xff010061
  384. #define HID_PT_MAJORAXISLENGTH 0xff010062
  385. #define HID_PT_MINORAXISLENGTH 0xff010063
  386. #define HID_PT_ORIENTATION 0xff010064
  387. #define HID_PT_BUTTONSIGNAL 0xff010065
  388. #define HID_PT_MAJOR_CONTACT_AXIS_LENGTH 0xff010066
  389. #define HID_PT_MINOR_CONTACT_AXIS_LENGTH 0xff010067
  390. #define HID_PT_TCH_COL_USAGE_PG 0x000D0022
  391. #define HID_PT_BTN_COL_USAGE_PG 0xFF010020
  392. #define PANEL_ID_NOT_ENABLED 0xFF
  393. #ifdef EASYWAKE_TSG6
  394. #define GESTURE_DOUBLE_TAP (1)
  395. #define GESTURE_TWO_FINGERS_SLIDE (2)
  396. #define GESTURE_TOUCH_DETECTED (3)
  397. #define GESTURE_PUSH_BUTTON (4)
  398. #define GESTURE_SINGLE_SLIDE_DE_TX (5)
  399. #define GESTURE_SINGLE_SLIDE_IN_TX (6)
  400. #define GESTURE_SINGLE_SLIDE_DE_RX (7)
  401. #define GESTURE_SINGLE_SLIDE_IN_RX (8)
  402. #endif
  403. /* FW RAM parameters */
  404. #define PT_RAM_ID_TOUCHMODE_ENABLED 0x02
  405. #define PT_RAM_ID_PROXIMITY_ENABLE 0x20
  406. #define PT_RAM_ID_TOUCHMODE_ENABLED_SIZE 1
  407. #define PT_RAM_ID_PROXIMITY_ENABLE_SIZE 1
  408. /* abs signal capabilities offsets in the frameworks array */
  409. enum pt_sig_caps {
  410. PT_SIGNAL_OST,
  411. PT_MIN_OST,
  412. PT_MAX_OST,
  413. PT_FUZZ_OST,
  414. PT_FLAT_OST,
  415. PT_NUM_ABS_SET /* number of signal capability fields */
  416. };
  417. /* helpers */
  418. #define NUM_SIGNALS(frmwrk) ((frmwrk)->size / PT_NUM_ABS_SET)
  419. #define PARAM(frmwrk, sig_ost, cap_ost) \
  420. ((frmwrk)->abs[((sig_ost) * PT_NUM_ABS_SET) + (cap_ost)])
  421. #define PARAM_SIGNAL(frmwrk, sig_ost) PARAM(frmwrk, sig_ost, PT_SIGNAL_OST)
  422. #define PARAM_MIN(frmwrk, sig_ost) PARAM(frmwrk, sig_ost, PT_MIN_OST)
  423. #define PARAM_MAX(frmwrk, sig_ost) PARAM(frmwrk, sig_ost, PT_MAX_OST)
  424. #define PARAM_FUZZ(frmwrk, sig_ost) PARAM(frmwrk, sig_ost, PT_FUZZ_OST)
  425. #define PARAM_FLAT(frmwrk, sig_ost) PARAM(frmwrk, sig_ost, PT_FLAT_OST)
  426. /* abs axis signal offsets in the framworks array */
  427. enum pt_sig_ost {
  428. PT_ABS_X_OST,
  429. PT_ABS_Y_OST,
  430. PT_ABS_P_OST,
  431. PT_ABS_W_OST,
  432. PT_ABS_ID_OST,
  433. PT_ABS_MAJ_OST,
  434. PT_ABS_MIN_OST,
  435. PT_ABS_OR_OST,
  436. PT_ABS_TOOL_OST,
  437. PT_ABS_D_OST,
  438. PT_NUM_ABS_OST /* number of abs signals */
  439. };
  440. enum hid_command {
  441. HID_CMD_RESERVED = 0x0,
  442. HID_CMD_RESET = 0x1,
  443. HID_CMD_GET_REPORT = 0x2,
  444. HID_CMD_SET_REPORT = 0x3,
  445. HID_CMD_GET_IDLE = 0x4,
  446. HID_CMD_SET_IDLE = 0x5,
  447. HID_CMD_GET_PROTOCOL = 0x6,
  448. HID_CMD_SET_PROTOCOL = 0x7,
  449. HID_CMD_SET_POWER = 0x8,
  450. HID_CMD_VENDOR = 0xE,
  451. };
  452. enum PIP1_cmd_type {
  453. PIP1_CMD_TYPE_FW,
  454. PIP1_CMD_TYPE_BL,
  455. };
  456. /* PIP BL cmd IDs and input for dut_debug sysfs */
  457. enum pip1_bl_cmd_id {
  458. PIP1_BL_CMD_ID_VERIFY_APP_INTEGRITY = 0x31, /* 49 */
  459. PIP1_BL_CMD_ID_GET_INFO = 0x38, /* 56 */
  460. PIP1_BL_CMD_ID_PROGRAM_AND_VERIFY = 0x39, /* 57 */
  461. PIP1_BL_CMD_ID_LAUNCH_APP = 0x3B, /* 59 */
  462. PIP1_BL_CMD_ID_GET_PANEL_ID = 0x3E, /* 62 */
  463. PIP1_BL_CMD_ID_INITIATE_BL = 0x48, /* 72 */
  464. PIP1_BL_CMD_ID_LAST,
  465. };
  466. #define PIP1_BL_SOP 0x1
  467. #define PIP1_BL_EOP 0x17
  468. /* PIP1 Command/Response IDs */
  469. enum PIP1_CMD_ID {
  470. PIP1_CMD_ID_NULL = 0x00,
  471. PIP1_CMD_ID_START_BOOTLOADER = 0x01,
  472. PIP1_CMD_ID_GET_SYSINFO = 0x02,
  473. PIP1_CMD_ID_SUSPEND_SCANNING = 0x03,
  474. PIP1_CMD_ID_RESUME_SCANNING = 0x04,
  475. PIP1_CMD_ID_GET_PARAM = 0x05,
  476. PIP1_CMD_ID_SET_PARAM = 0x06,
  477. PIP1_CMD_ID_GET_NOISE_METRICS = 0x07,
  478. PIP1_CMD_ID_RESERVED = 0x08,
  479. PIP1_CMD_ID_ENTER_EASYWAKE_STATE = 0x09,
  480. PIP1_CMD_ID_VERIFY_CONFIG_BLOCK_CRC = 0x20,
  481. PIP1_CMD_ID_GET_CONFIG_ROW_SIZE = 0x21,
  482. PIP1_CMD_ID_READ_DATA_BLOCK = 0x22,
  483. PIP1_CMD_ID_WRITE_DATA_BLOCK = 0x23,
  484. PIP1_CMD_ID_GET_DATA_STRUCTURE = 0x24,
  485. PIP1_CMD_ID_LOAD_SELF_TEST_PARAM = 0x25,
  486. PIP1_CMD_ID_RUN_SELF_TEST = 0x26,
  487. PIP1_CMD_ID_GET_SELF_TEST_RESULT = 0x27,
  488. PIP1_CMD_ID_CALIBRATE_IDACS = 0x28,
  489. PIP1_CMD_ID_INITIALIZE_BASELINES = 0x29,
  490. PIP1_CMD_ID_EXEC_PANEL_SCAN = 0x2A,
  491. PIP1_CMD_ID_RETRIEVE_PANEL_SCAN = 0x2B,
  492. PIP1_CMD_ID_START_SENSOR_DATA_MODE = 0x2C,
  493. PIP1_CMD_ID_STOP_SENSOR_DATA_MODE = 0x2D,
  494. PIP1_CMD_ID_START_TRACKING_HEATMAP_MODE = 0x2E,
  495. PIP1_CMD_ID_START_SELF_CAP_RPT_MODE = 0x2F,
  496. PIP1_CMD_ID_CALIBRATE_DEVICE_EXTENDED = 0x30,
  497. PIP1_CMD_ID_INT_PIN_OVERRIDE = 0x40,
  498. PIP1_CMD_ID_STORE_PANEL_SCAN = 0x60,
  499. PIP1_CMD_ID_PROCESS_PANEL_SCAN = 0x61,
  500. PIP1_CMD_ID_DISCARD_INPUT_REPORT,
  501. PIP1_CMD_ID_LAST,
  502. PIP1_CMD_ID_USER_CMD,
  503. };
  504. /* PIP2 Command/Response data and structures */
  505. enum PIP2_CMD_ID {
  506. PIP2_CMD_ID_PING = 0x00,
  507. PIP2_CMD_ID_STATUS = 0x01,
  508. PIP2_CMD_ID_CTRL = 0x02,
  509. PIP2_CMD_ID_CONFIG = 0x03,
  510. PIP2_CMD_ID_RESERVE = 0x04,
  511. PIP2_CMD_ID_CLEAR = 0x05,
  512. PIP2_CMD_ID_RESET = 0x06,
  513. PIP2_CMD_ID_VERSION = 0x07,
  514. PIP2_CMD_ID_FILE_OPEN = 0x10,
  515. PIP2_CMD_ID_FILE_CLOSE = 0x11,
  516. PIP2_CMD_ID_FILE_READ = 0x12,
  517. PIP2_CMD_ID_FILE_WRITE = 0x13,
  518. PIP2_CMD_ID_FILE_IOCTL = 0x14,
  519. PIP2_CMD_ID_FLASH_INFO = 0x15,
  520. PIP2_CMD_ID_EXECUTE = 0x16,
  521. PIP2_CMD_ID_GET_LAST_ERRNO = 0x17,
  522. PIP2_CMD_ID_EXIT_HOST_MODE = 0x18,
  523. PIP2_CMD_ID_READ_GPIO = 0x19,
  524. PIP2_CMD_EXECUTE_SCAN = 0x21,
  525. PIP2_CMD_SET_PARAMETER = 0x40,
  526. PIP2_CMD_GET_PARAMETER = 0x41,
  527. PIP2_CMD_SET_DDI_REG = 0x42,
  528. PIP2_CMD_GET_DDI_REG = 0x43,
  529. PIP2_CMD_ID_END = 0x7F
  530. };
  531. enum PIP2_STATUS_EXEC_RUNNING {
  532. PIP2_STATUS_BOOT_EXEC = 0x00,
  533. PIP2_STATUS_APP_EXEC = 0x01,
  534. };
  535. /* FW_SYS_MODE_UNDEFINED must be 1 greater than FW_SYS_MODE_MAX */
  536. enum PIP2_FW_SYSTEM_MODE {
  537. FW_SYS_MODE_BOOT = 0x00,
  538. FW_SYS_MODE_SCANNING = 0x01,
  539. FW_SYS_MODE_DEEP_SLEEP = 0x02,
  540. FW_SYS_MODE_TEST = 0x03,
  541. FW_SYS_MODE_DEEP_STANDBY = 0x04,
  542. FW_SYS_MODE_MAX = FW_SYS_MODE_DEEP_STANDBY,
  543. FW_SYS_MODE_UNDEFINED = FW_SYS_MODE_MAX + 1,
  544. };
  545. /* PIP2 Command/Response data and structures */
  546. enum PIP2_FILE_ID {
  547. PIP2_RAM_FILE = 0x00,
  548. PIP2_FW_FILE = 0x01,
  549. PIP2_CONFIG_FILE = 0x02,
  550. PIP2_FILE_3 = 0x03,
  551. PIP2_FILE_4 = 0x04,
  552. PIP2_FILE_5 = 0x05,
  553. PIP2_FILE_6 = 0x06,
  554. PIP2_FILE_7 = 0x07,
  555. PIP2_FILE_MAX = PIP2_FILE_7,
  556. };
  557. /* Optimize packet sizes per Allwinner H3 bus drivers */
  558. #define PIP2_FILE_WRITE_LEN_PER_PACKET 245
  559. #define PIP2_BL_I2C_FILE_WRITE_LEN_PER_PACKET 245
  560. #define PIP2_BL_SPI_FILE_WRITE_LEN_PER_PACKET 256
  561. enum DUT_GENERATION {
  562. DUT_UNKNOWN = 0x00,
  563. DUT_PIP1_ONLY = 0x01,
  564. DUT_PIP2_CAPABLE = 0x02,
  565. };
  566. enum PIP2_RSP_ERR {
  567. PIP2_RSP_ERR_NONE = 0x00,
  568. PIP2_RSP_ERR_BUSY = 0x01,
  569. PIP2_RSP_ERR_INIT_FAILURE = 0x02,
  570. PIP2_RSP_ERR_ALREADY_OPEN = 0x03,
  571. PIP2_RSP_ERR_NOT_OPEN = 0x04,
  572. PIP2_RSP_ERR_IO_FAILURE = 0x05,
  573. PIP2_RSP_ERR_UNKNOWN_IOCTL = 0x06,
  574. PIP2_RSP_ERR_BAD_ADDRESS = 0x07,
  575. PIP2_RSP_ERR_BAD_FILE = 0x08,
  576. PIP2_RSP_ERR_END_OF_FILE = 0x09,
  577. PIP2_RSP_ERR_TOO_MANY_FILES = 0x0A,
  578. PIP2_RSP_ERR_TIMEOUT = 0x0B,
  579. PIP2_RSP_ERR_ABORTED = 0x0C,
  580. PIP2_RSP_ERR_CRC = 0x0D,
  581. PIP2_RSP_ERR_UNKNOWN_REC_TYPE = 0x0E,
  582. PIP2_RSP_ERR_BAD_FRAME = 0x0F,
  583. PIP2_RSP_ERR_NO_PERMISSION = 0x10,
  584. PIP2_RSP_ERR_UNKNOWN_COMMAND = 0x11,
  585. PIP2_RSP_ERR_INVALID_PARAM = 0x12,
  586. PIP2_RSP_ERR_IO_ALREADY_ACTIVE = 0x13,
  587. PIP2_RSP_ERR_SHUTDOWN = 0x14,
  588. PIP2_RSP_ERR_INVALID_IMAGE = 0x15,
  589. PIP2_RSP_ERR_UNKNOWN_REGISTER = 0x16,
  590. PIP2_RSP_ERR_BAD_LENGTH = 0x17,
  591. PIP2_RSP_ERR_TRIM_FAILURE = 0x18,
  592. };
  593. /*
  594. * Extra bytes for PIP2 = 4 + 2:
  595. * 4 byte header - (len_lsb, len_msb, report ID, Tag, Sequence)
  596. * 2 byte footer - (crc_lsb, crc_msb)
  597. */
  598. #define PIP2_CMD_COMMAND_ID_OFFSET 5
  599. #define PIP2_CMD_COMMAND_ID_MASK 0x7F
  600. #define PIP2_RESP_COMMAND_ID_OFFSET 3
  601. #define PIP2_RESP_SEQUENCE_OFFSET 2
  602. #define PIP2_RESP_SEQUENCE_MASK 0x0F
  603. #define PIP2_RESP_REPORT_ID_OFFSET 3
  604. #define PIP2_RESP_STATUS_OFFSET 4
  605. #define PIP2_RESP_BODY_OFFSET 5
  606. #define PIP2_CRC_SIZE 2
  607. #define PIP2_LEN_FIELD_SIZE 2
  608. #define PIP2_VERSION_CHIP_REV_OFFSET 14
  609. #define PIP2_EXTRA_BYTES_NUM (PIP2_RESP_STATUS_OFFSET + PIP2_CRC_SIZE)
  610. /* File IOCTL commands */
  611. #define PIP2_FILE_IOCTL_CODE_ERASE_FILE 0
  612. #define PIP2_FILE_IOCTL_CODE_SEEK_POINTER 1
  613. #define PIP2_FILE_IOCTL_CODE_AES_CONTROL 2
  614. #define PIP2_FILE_IOCTL_CODE_FILE_STATS 3
  615. #define PIP2_FILE_IOCTL_CODE_FILE_CRC 4
  616. struct pip2_cmd_structure {
  617. u8 reg[2];
  618. u16 len;
  619. u8 id;
  620. u8 seq;
  621. u8 *data;
  622. u8 crc[2]; /* MSB:crc[0], LSB:crc[1] */
  623. };
  624. struct pip2_cmd_response_structure {
  625. u8 id;
  626. u16 response_len;
  627. u32 response_time_min;
  628. u32 response_time_max;
  629. };
  630. enum pip1_bl_status {
  631. ERROR_SUCCESS,
  632. ERROR_KEY,
  633. ERROR_VERIFICATION,
  634. ERROR_LENGTH,
  635. ERROR_DATA,
  636. ERROR_COMMAND,
  637. ERROR_CRC = 8,
  638. ERROR_FLASH_ARRAY,
  639. ERROR_FLASH_ROW,
  640. ERROR_FLASH_PROTECTION,
  641. ERROR_UNKNOWN = 15,
  642. ERROR_INVALID,
  643. };
  644. enum pt_mode {
  645. PT_MODE_UNKNOWN = 0,
  646. PT_MODE_BOOTLOADER = 1,
  647. PT_MODE_OPERATIONAL = 2,
  648. PT_MODE_IGNORE = 255,
  649. };
  650. enum PT_ENTER_BL_RESULT {
  651. PT_ENTER_BL_PASS = 0,
  652. PT_ENTER_BL_ERROR = 1,
  653. PT_ENTER_BL_RESET_FAIL = 2,
  654. PT_ENTER_BL_HID_START_BL_FAIL = 3,
  655. PT_ENTER_BL_CONFIRM_FAIL = 4,
  656. PT_ENTER_BL_GET_FLASH_INFO_FAIL = 5,
  657. };
  658. enum TTDL_EXTENDED_ERROR_CODES {
  659. EX_ERR_FREAD = 400,
  660. EX_ERR_FWRITE = 401,
  661. EX_ERR_FOPEN = 402,
  662. EX_ERR_FCLOSE = 403,
  663. EX_ERR_FLEN = 404,
  664. };
  665. enum pt_cmd_status {
  666. PT_CMD_STATUS_SUCCESS = 0,
  667. PT_CMD_STATUS_FAILURE = 1,
  668. };
  669. enum {
  670. PT_IC_GRPNUM_RESERVED,
  671. PT_IC_GRPNUM_CMD_REGS,
  672. PT_IC_GRPNUM_TCH_REP,
  673. PT_IC_GRPNUM_DATA_REC,
  674. PT_IC_GRPNUM_TEST_REC,
  675. PT_IC_GRPNUM_PCFG_REC,
  676. PT_IC_GRPNUM_TCH_PARM_VAL,
  677. PT_IC_GRPNUM_TCH_PARM_SIZE,
  678. PT_IC_GRPNUM_RESERVED1,
  679. PT_IC_GRPNUM_RESERVED2,
  680. PT_IC_GRPNUM_OPCFG_REC,
  681. PT_IC_GRPNUM_DDATA_REC,
  682. PT_IC_GRPNUM_MDATA_REC,
  683. PT_IC_GRPNUM_TEST_REGS,
  684. PT_IC_GRPNUM_BTN_KEYS,
  685. PT_IC_GRPNUM_TTHE_REGS,
  686. PT_IC_GRPNUM_SENSING_CONF,
  687. PT_IC_GRPNUM_NUM,
  688. };
  689. enum pt_event_id {
  690. PT_EV_NO_EVENT,
  691. PT_EV_TOUCHDOWN,
  692. PT_EV_MOVE, /* significant displacement (> act dist) */
  693. PT_EV_LIFTOFF, /* record reports last position */
  694. };
  695. enum pt_object_id {
  696. PT_OBJ_STANDARD_FINGER,
  697. PT_OBJ_PROXIMITY,
  698. PT_OBJ_STYLUS,
  699. PT_OBJ_GLOVE,
  700. };
  701. enum pt_self_test_result {
  702. PT_ST_RESULT_PASS = 0,
  703. PT_ST_RESULT_FAIL = 1,
  704. PT_ST_RESULT_ABORTED = 2,
  705. PT_ST_RESULT_PARAM_ERR = 3,
  706. PT_ST_RESULT_CFG_ERR = 4,
  707. PT_ST_RESULT_CAL_ERR = 5,
  708. PT_ST_RESULT_DDI_STATE_ERR = 6,
  709. PT_ST_RESULT_HOST_MUST_INTERPRET = 0xFF,
  710. };
  711. #define PT_ST_PRINT_RESULTS true
  712. #define PT_ST_NOPRINT false
  713. #define PT_ST_GET_RESULTS true
  714. #define PT_ST_DONT_GET_RESULTS false
  715. /*
  716. * Maximum number of parameters for the fw_self_test sysfs (255 - 12 + 2)
  717. * 255 - Max PIP message size
  718. * 12 - Header size for PIP message 0x25 (Load Self Test Parameters)
  719. * 2 - Additional parameters for fw_self_test for test_id and format
  720. */
  721. #define PT_FW_SELF_TEST_MAX_PARM 245
  722. enum pt_self_test_id {
  723. PT_ST_ID_NULL = 0,
  724. PT_ST_ID_BIST = 1,
  725. PT_ST_ID_SHORTS = 2,
  726. PT_ST_ID_OPENS = 3,
  727. PT_ST_ID_AUTOSHORTS = 4,
  728. PT_ST_ID_CM_PANEL = 5,
  729. PT_ST_ID_CP_PANEL = 6,
  730. PT_ST_ID_CM_BUTTON = 7,
  731. PT_ST_ID_CP_BUTTON = 8,
  732. PT_ST_ID_FORCE = 9,
  733. PT_ST_ID_OPENS_HIZ = 10,
  734. PT_ST_ID_OPENS_GND = 11,
  735. PT_ST_ID_CP_LFT = 12,
  736. PT_ST_ID_SC_NOISE = 13,
  737. PT_ST_ID_LFT_NOISE = 14,
  738. PT_ST_ID_CP_CHIP_ROUTE_PARASITIC_CAP = 15,
  739. PT_ST_ID_NORMALIZED_RAW_CNT_PANEL = 16,
  740. PT_ST_ID_NORMALIZED_RAW_CNT_LFT = 17,
  741. PT_ST_ID_INVALID = 255
  742. };
  743. enum pt_scan_state {
  744. PT_SCAN_STATE_UNKNOWN = 0,
  745. PT_SCAN_STATE_ACTIVE = 1,
  746. PT_SCAN_STATE_INACTIVE = 2,
  747. };
  748. #define PT_CAL_DATA_MAX_SIZE 2048
  749. #define PT_CAL_DATA_ROW_SIZE 128
  750. #define PT_WAFER_LOT_SIZE 5
  751. #define PT_UID_SIZE 12
  752. enum pt_cal_data_actions {
  753. PT_CAL_DATA_SAVE = 0,
  754. PT_CAL_DATA_RESTORE = 1,
  755. PT_CAL_DATA_CLEAR = 2,
  756. PT_CAL_DATA_INFO = 3
  757. };
  758. enum pt_feature_enable_state {
  759. PT_FEATURE_DISABLE = 0,
  760. PT_FEATURE_ENABLE = 1
  761. };
  762. #define PT_NUM_MFGID 8
  763. /* System Information interface definitions */
  764. struct pt_ttdata_dev {
  765. u8 pip_ver_major;
  766. u8 pip_ver_minor;
  767. __le16 fw_pid;
  768. u8 fw_ver_major;
  769. u8 fw_ver_minor;
  770. __le32 revctrl;
  771. __le16 fw_ver_conf;
  772. u8 bl_ver_major;
  773. u8 bl_ver_minor;
  774. __le16 jtag_si_id_l;
  775. __le16 jtag_si_id_h;
  776. u8 mfg_id[PT_NUM_MFGID];
  777. __le16 post_code;
  778. } __packed;
  779. /* Struct to cast over PIP2 VERSION response */
  780. struct pt_pip2_version_full {
  781. u8 status_code;
  782. u8 pip2_version_lsb;
  783. u8 pip2_version_msb;
  784. u8 fw_version_lsb;
  785. u8 fw_version_msb;
  786. u8 bl_version_lsb;
  787. u8 bl_version_msb;
  788. __le16 chip_rev;
  789. __le16 chip_id;
  790. u8 uid[PT_UID_SIZE];
  791. } __packed;
  792. struct pt_pip2_version {
  793. u8 status_code;
  794. u8 pip2_version_lsb;
  795. u8 pip2_version_msb;
  796. u8 bl_version_lsb;
  797. u8 bl_version_msb;
  798. u8 fw_version_lsb;
  799. u8 fw_version_msb;
  800. __le16 chip_id;
  801. __le16 chip_rev;
  802. } __packed;
  803. struct pt_sensing_conf_data_dev {
  804. u8 electrodes_x;
  805. u8 electrodes_y;
  806. __le16 len_x;
  807. __le16 len_y;
  808. __le16 res_x;
  809. __le16 res_y;
  810. __le16 max_z;
  811. u8 origin_x;
  812. u8 origin_y;
  813. u8 panel_id;
  814. u8 btn;
  815. u8 scan_mode;
  816. u8 max_num_of_tch_per_refresh_cycle;
  817. } __packed;
  818. struct pt_ttdata {
  819. u8 pip_ver_major;
  820. u8 pip_ver_minor;
  821. u8 bl_ver_major;
  822. u8 bl_ver_minor;
  823. u8 fw_ver_major;
  824. u8 fw_ver_minor;
  825. u16 fw_pid;
  826. u16 fw_ver_conf;
  827. u16 post_code;
  828. u32 revctrl;
  829. u16 jtag_id_l;
  830. u16 jtag_id_h;
  831. u8 mfg_id[PT_NUM_MFGID];
  832. u16 chip_rev;
  833. u16 chip_id;
  834. u8 uid[PT_UID_SIZE];
  835. };
  836. struct pt_sensing_conf_data {
  837. u16 res_x;
  838. u16 res_y;
  839. u16 max_z;
  840. u16 len_x;
  841. u16 len_y;
  842. u8 electrodes_x;
  843. u8 electrodes_y;
  844. u8 origin_x;
  845. u8 origin_y;
  846. u8 panel_id;
  847. u8 btn;
  848. u8 scan_mode;
  849. u8 max_tch;
  850. u8 rx_num;
  851. u8 tx_num;
  852. };
  853. enum pt_tch_abs { /* for ordering within the extracted touch data array */
  854. PT_TCH_X, /* X */
  855. PT_TCH_Y, /* Y */
  856. PT_TCH_P, /* P (Z) */
  857. PT_TCH_T, /* TOUCH ID */
  858. PT_TCH_E, /* EVENT ID */
  859. PT_TCH_O, /* OBJECT ID */
  860. PT_TCH_TIP, /* OBJECT ID */
  861. PT_TCH_MAJ, /* TOUCH_MAJOR */
  862. PT_TCH_MIN, /* TOUCH_MINOR */
  863. PT_TCH_OR, /* ORIENTATION */
  864. PT_TCH_NUM_ABS,
  865. };
  866. enum pt_tch_hdr {
  867. PT_TCH_TIME, /* SCAN TIME */
  868. PT_TCH_NUM, /* NUMBER OF RECORDS */
  869. PT_TCH_LO, /* LARGE OBJECT */
  870. PT_TCH_NOISE, /* NOISE EFFECT */
  871. PT_TCH_COUNTER, /* REPORT_COUNTER */
  872. PT_TCH_NUM_HDR,
  873. };
  874. static const char * const pt_tch_abs_string[] = {
  875. [PT_TCH_X] = "X",
  876. [PT_TCH_Y] = "Y",
  877. [PT_TCH_P] = "P",
  878. [PT_TCH_T] = "T",
  879. [PT_TCH_E] = "E",
  880. [PT_TCH_O] = "O",
  881. [PT_TCH_TIP] = "TIP",
  882. [PT_TCH_MAJ] = "MAJ",
  883. [PT_TCH_MIN] = "MIN",
  884. [PT_TCH_OR] = "OR",
  885. [PT_TCH_NUM_ABS] = "INVALID",
  886. };
  887. static const char * const pt_tch_hdr_string[] = {
  888. [PT_TCH_TIME] = "SCAN TIME",
  889. [PT_TCH_NUM] = "NUMBER OF RECORDS",
  890. [PT_TCH_LO] = "LARGE OBJECT",
  891. [PT_TCH_NOISE] = "NOISE EFFECT",
  892. [PT_TCH_COUNTER] = "REPORT_COUNTER",
  893. [PT_TCH_NUM_HDR] = "INVALID",
  894. };
  895. static const int pt_tch_abs_field_map[] = {
  896. [PT_TCH_X] = 0x00010030 /* HID_GD_X */,
  897. [PT_TCH_Y] = 0x00010031 /* HID_GD_Y */,
  898. [PT_TCH_P] = HID_DI_PRESSURE,
  899. [PT_TCH_T] = HID_DI_CONTACTID,
  900. [PT_TCH_E] = HID_PT_EVENTID,
  901. [PT_TCH_O] = HID_PT_TOUCHTYPE,
  902. [PT_TCH_TIP] = HID_DI_TIP,
  903. [PT_TCH_MAJ] = HID_PT_MAJORAXISLENGTH,
  904. [PT_TCH_MIN] = HID_PT_MINORAXISLENGTH,
  905. [PT_TCH_OR] = HID_PT_ORIENTATION,
  906. [PT_TCH_NUM_ABS] = 0,
  907. };
  908. static const int pt_tch_hdr_field_map[] = {
  909. [PT_TCH_TIME] = HID_DI_SCANTIME,
  910. [PT_TCH_NUM] = HID_DI_CONTACTCOUNT,
  911. [PT_TCH_LO] = HID_PT_LARGEOBJECT,
  912. [PT_TCH_NOISE] = HID_PT_NOISEEFFECTS,
  913. [PT_TCH_COUNTER] = HID_PT_REPORTCOUNTER,
  914. [PT_TCH_NUM_HDR] = 0,
  915. };
  916. #define PT_TOUCH_ID_MAX 32
  917. #define PT_NUM_EXT_TCH_FIELDS 3
  918. struct pt_tch_abs_params {
  919. size_t ofs; /* abs byte offset */
  920. size_t size; /* size in bits */
  921. size_t min; /* min value */
  922. size_t max; /* max value */
  923. size_t bofs; /* bit offset */
  924. u8 report;
  925. };
  926. struct pt_touch {
  927. int hdr[PT_TCH_NUM_HDR];
  928. int abs[PT_TCH_NUM_ABS];
  929. };
  930. /* button to keycode support */
  931. #define PT_BITS_PER_BTN 1
  932. #define PT_NUM_BTN_EVENT_ID ((1 << PT_BITS_PER_BTN) - 1)
  933. enum pt_btn_state {
  934. PT_BTN_RELEASED = 0,
  935. PT_BTN_PRESSED = 1,
  936. PT_BTN_NUM_STATE
  937. };
  938. struct pt_btn {
  939. bool enabled;
  940. int state; /* PT_BTN_PRESSED, PT_BTN_RELEASED */
  941. int key_code;
  942. };
  943. enum pt_ic_ebid {
  944. PT_TCH_PARM_EBID = 0x00,
  945. PT_MDATA_EBID = 0x01,
  946. PT_DDATA_EBID = 0x02,
  947. PT_CAL_EBID = 0xF0,
  948. };
  949. /* ttconfig block */
  950. #define PT_TTCONFIG_VERSION_OFFSET 8
  951. #define PT_TTCONFIG_VERSION_SIZE 2
  952. #define PT_TTCONFIG_VERSION_ROW 0
  953. struct pt_ttconfig {
  954. u16 version;
  955. u16 crc;
  956. };
  957. struct pt_report_desc_data {
  958. u16 tch_report_id;
  959. u16 tch_record_size;
  960. u16 tch_header_size;
  961. u16 btn_report_id;
  962. };
  963. struct pt_sysinfo {
  964. bool ready;
  965. struct pt_ttdata ttdata;
  966. struct pt_sensing_conf_data sensing_conf_data;
  967. struct pt_report_desc_data desc;
  968. int num_btns;
  969. struct pt_btn *btn;
  970. struct pt_ttconfig ttconfig;
  971. struct pt_tch_abs_params tch_hdr[PT_TCH_NUM_HDR];
  972. struct pt_tch_abs_params tch_abs[PT_TCH_NUM_ABS];
  973. u8 *xy_mode;
  974. u8 *xy_data;
  975. };
  976. struct pt_bl_info {
  977. bool ready;
  978. u16 chip_id;
  979. };
  980. enum pt_atten_type {
  981. PT_ATTEN_IRQ,
  982. PT_ATTEN_STARTUP,
  983. PT_ATTEN_EXCLUSIVE,
  984. PT_ATTEN_WAKE,
  985. PT_ATTEN_LOADER,
  986. PT_ATTEN_SUSPEND,
  987. PT_ATTEN_RESUME,
  988. PT_ATTEN_CANCEL_LOADER,
  989. PT_ATTEN_NUM_ATTEN,
  990. };
  991. enum pt_sleep_state {
  992. SS_SLEEP_NONE,
  993. SS_SLEEP_OFF,
  994. SS_SLEEP_ON,
  995. SS_SLEEPING,
  996. SS_WAKING,
  997. SS_EASY_WAKING_ON,
  998. SS_EASY_WAKING_OFF,
  999. };
  1000. enum pt_fb_state {
  1001. FB_NONE,
  1002. FB_ON,
  1003. FB_OFF,
  1004. };
  1005. enum pt_startup_state {
  1006. STARTUP_NONE,
  1007. STARTUP_QUEUED,
  1008. STARTUP_RUNNING,
  1009. STARTUP_ILLEGAL,
  1010. };
  1011. struct pt_hid_desc {
  1012. __le16 hid_desc_len;
  1013. u8 packet_id;
  1014. u8 reserved_byte;
  1015. __le16 bcd_version;
  1016. __le16 report_desc_len;
  1017. __le16 report_desc_register;
  1018. __le16 input_register;
  1019. __le16 max_input_len;
  1020. __le16 output_register;
  1021. __le16 max_output_len;
  1022. __le16 command_register;
  1023. __le16 data_register;
  1024. __le16 vendor_id;
  1025. __le16 product_id;
  1026. __le16 version_id;
  1027. u8 reserved[4];
  1028. } __packed;
  1029. struct pt_hid_core {
  1030. u16 hid_vendor_id;
  1031. u16 hid_product_id;
  1032. __le16 hid_desc_register;
  1033. u16 hid_report_desc_len;
  1034. u16 hid_max_input_len;
  1035. u16 hid_max_output_len;
  1036. };
  1037. #define PT_HID_MAX_REPORTS 8
  1038. #define PT_HID_MAX_FIELDS 128
  1039. #define PT_HID_MAX_COLLECTIONS 3
  1040. #define PT_HID_MAX_NESTED_COLLECTIONS PT_HID_MAX_COLLECTIONS
  1041. /* Max input is for ASCII representation of hex characters */
  1042. #define PT_MAX_INPUT (PT_MAX_PIP2_MSG_SIZE * 2)
  1043. #define PT_PIP_1P7_EMPTY_BUF 0xFF00
  1044. enum pt_module_id {
  1045. PT_MODULE_MT,
  1046. PT_MODULE_BTN,
  1047. PT_MODULE_PROX,
  1048. PT_MODULE_LAST,
  1049. };
  1050. struct pt_mt_data;
  1051. struct pt_mt_function {
  1052. int (*mt_release)(struct device *dev);
  1053. int (*mt_probe)(struct device *dev, struct pt_mt_data *md);
  1054. void (*report_slot_liftoff)(struct pt_mt_data *md, int max_slots);
  1055. void (*input_sync)(struct input_dev *input);
  1056. void (*input_report)(struct input_dev *input, int sig, int t, int type);
  1057. void (*final_sync)(struct input_dev *input, int max_slots,
  1058. int mt_sync_count, unsigned long *ids);
  1059. int (*input_register_device)(struct input_dev *input, int max_slots);
  1060. };
  1061. struct pt_mt_data {
  1062. struct device *dev;
  1063. struct pt_mt_platform_data *pdata;
  1064. struct pt_sysinfo *si;
  1065. struct input_dev *input;
  1066. struct pt_mt_function mt_function;
  1067. struct mutex mt_lock;
  1068. bool is_suspended;
  1069. bool input_device_registered;
  1070. bool input_device_allocated;
  1071. char phys[NAME_MAX];
  1072. int num_prv_rec;
  1073. int or_min;
  1074. int or_max;
  1075. int t_min;
  1076. int t_max;
  1077. };
  1078. struct pt_btn_data {
  1079. struct device *dev;
  1080. struct pt_btn_platform_data *pdata;
  1081. struct pt_sysinfo *si;
  1082. struct input_dev *input;
  1083. struct mutex btn_lock;
  1084. bool is_suspended;
  1085. bool input_device_registered;
  1086. bool input_device_allocated;
  1087. char phys[NAME_MAX];
  1088. };
  1089. struct pt_proximity_data {
  1090. struct device *dev;
  1091. struct pt_proximity_platform_data *pdata;
  1092. struct pt_sysinfo *si;
  1093. struct input_dev *input;
  1094. struct mutex prox_lock;
  1095. struct mutex sysfs_lock;
  1096. int enable_count;
  1097. bool input_device_registered;
  1098. bool input_device_allocated;
  1099. char phys[NAME_MAX];
  1100. };
  1101. enum pt_calibrate_idacs_sensing_mode {
  1102. PT_CI_SM_MUTCAP_FINE,
  1103. PT_CI_SM_MUTCAP_BUTTON,
  1104. PT_CI_SM_SELFCAP,
  1105. };
  1106. enum pt_initialize_baselines_sensing_mode {
  1107. PT_IB_SM_MUTCAP = 1,
  1108. PT_IB_SM_BUTTON = 2,
  1109. PT_IB_SM_SELFCAP = 4,
  1110. PT_IB_SM_BALANCED = 8,
  1111. };
  1112. /* parameters for extended calibrate command(0x30)*/
  1113. struct pt_cal_ext_data {
  1114. u8 mode;
  1115. u8 data0;
  1116. u8 data1;
  1117. u8 data2;
  1118. } __packed;
  1119. #define PT_CAL_EXT_MODE_UNDEFINED 0xFF
  1120. #define PT_BIN_FILE_MIN_HDR_LENGTH 14
  1121. #define PT_BIN_FILE_MAX_HDR_LENGTH 18
  1122. struct pt_bin_file_hdr {
  1123. u8 length;
  1124. u16 ttpid;
  1125. u8 fw_major;
  1126. u8 fw_minor;
  1127. u32 fw_rev_ctrl;
  1128. u32 fw_crc;
  1129. u16 si_rev;
  1130. u16 si_id;
  1131. u16 config_ver;
  1132. u32 hex_file_size;
  1133. };
  1134. struct pt_core_nonhid_cmd {
  1135. int (*start_bl)(struct device *dev, int protect);
  1136. int (*suspend_scanning)(struct device *dev, int protect);
  1137. int (*resume_scanning)(struct device *dev, int protect);
  1138. int (*get_param)(struct device *dev, int protect, u8 param_id,
  1139. u32 *value);
  1140. int (*set_param)(struct device *dev, int protect, u8 param_id,
  1141. u32 value, u8 size);
  1142. int (*verify_cfg_block_crc)(struct device *dev, int protect,
  1143. u8 ebid, u8 *status, u16 *calculated_crc,
  1144. u16 *stored_crc);
  1145. int (*get_config_row_size)(struct device *dev, int protect,
  1146. u16 *row_size);
  1147. int (*get_data_structure)(struct device *dev, int protect,
  1148. u16 read_offset, u16 read_length, u8 data_id,
  1149. u8 *status, u8 *data_format, u16 *actual_read_len,
  1150. u8 *data);
  1151. int (*run_selftest)(struct device *dev, int protect, u8 test_id,
  1152. u8 write_idacs_to_flash, u8 *status, u8 *summary_result,
  1153. u8 *results_available);
  1154. int (*get_selftest_result)(struct device *dev, int protect,
  1155. u16 read_offset, u16 read_length, u8 test_id, u8 *status,
  1156. u16 *actual_read_len, u8 *data);
  1157. int (*load_self_test_param)(struct device *dev, int protect,
  1158. u8 self_test_id, u16 load_offset, u16 load_length,
  1159. u8 *parameters, u8 *status, u8 *ret_test_id, u16 *act_load_len);
  1160. int (*calibrate_idacs)(struct device *dev, int protect, u8 mode,
  1161. u8 *status);
  1162. int (*calibrate_ext)(struct device *dev,
  1163. int protect, struct pt_cal_ext_data *cal_data, u8 *status);
  1164. int (*initialize_baselines)(struct device *dev, int protect,
  1165. u8 test_id, u8 *status);
  1166. int (*exec_panel_scan)(struct device *dev, int protect, u8 scan_type);
  1167. int (*retrieve_panel_scan)(struct device *dev, int protect,
  1168. u16 read_offset, u16 read_count, u8 data_id,
  1169. u8 *response, u8 *config, u16 *actual_read_len,
  1170. u8 *read_buf);
  1171. int (*read_data_block)(struct device *dev, u16 row_number,
  1172. u16 length, u8 ebid, u16 *actual_read_len,
  1173. u8 *read_buf, u16 read_buf_size, u16 *crc);
  1174. int (*write_data_block)(struct device *dev, u16 row_number,
  1175. u16 write_length, u8 ebid, u8 *write_buf,
  1176. u8 *security_key, u16 *actual_write_len);
  1177. int (*user_cmd)(struct device *dev, int protect, u16 read_len,
  1178. u8 *read_buf, u16 write_len, u8 *write_buf,
  1179. u16 *actual_read_len);
  1180. int (*get_bl_info)(struct device *dev, int protect, u8 *return_data);
  1181. int (*initiate_bl)(struct device *dev, int protect, u16 key_size,
  1182. u8 *key_buf, u16 row_size, u8 *metadata_row_buf);
  1183. int (*launch_app)(struct device *dev, int protect);
  1184. int (*prog_and_verify)(struct device *dev, int protect, u16 data_len,
  1185. u8 *data_buf);
  1186. int (*verify_app_integrity)(struct device *dev, int protect,
  1187. u8 *result);
  1188. int (*get_panel_id)(struct device *dev, int protect, u8 *panel_id);
  1189. int (*pip2_send_cmd)(struct device *dev, int protect,
  1190. u8 id, u8 *data, u16 report_body_len, u8 *read_buf,
  1191. u16 *actual_read_len);
  1192. int (*pip2_send_cmd_no_int)(struct device *dev, int protect,
  1193. u8 id, u8 *data, u16 report_body_len, u8 *read_buf,
  1194. u16 *actual_read_len);
  1195. int (*get_bl_pip2_version)(struct device *dev);
  1196. int (*pip2_file_open)(struct device *dev, u8 file_no);
  1197. int (*pip2_file_close)(struct device *dev, u8 file_no);
  1198. int (*pip2_file_erase)(struct device *dev, u8 file_no, int *status);
  1199. int (*read_us_file)(struct device *dev, u8 *file_path, u8 *buf,
  1200. int *size);
  1201. int (*pip2_file_read)(struct device *dev, u8 file_no,
  1202. u16 num_bytes, u8 *read_buf);
  1203. int (*pip2_file_seek_offset)(struct device *dev, u8 file_no,
  1204. u32 read_offset, u32 write_offset);
  1205. int (*pip2_file_get_stats)(struct device *dev, u8 file_no,
  1206. u32 *address, u32 *file_size);
  1207. int (*pip2_file_crc)(struct device *dev, u8 file_no,
  1208. u32 offset, u32 length, u8 *read_buf);
  1209. int (*manage_cal_data)(struct device *dev, u8 action, u16 *size,
  1210. unsigned short *crc);
  1211. unsigned short (*calc_crc)(unsigned char *q, int len);
  1212. };
  1213. typedef int (*pt_atten_func) (struct device *);
  1214. struct pt_core_commands {
  1215. int (*subscribe_attention)(struct device *dev,
  1216. enum pt_atten_type type, char *id,
  1217. pt_atten_func func, int flags);
  1218. int (*unsubscribe_attention)(struct device *dev,
  1219. enum pt_atten_type type, char *id,
  1220. pt_atten_func func, int flags);
  1221. int (*request_exclusive)(struct device *dev, int timeout_ms);
  1222. int (*release_exclusive)(struct device *dev);
  1223. int (*request_reset)(struct device *dev, int protect);
  1224. int (*request_pip2_launch_app)(struct device *dev, int protect);
  1225. int (*request_enum)(struct device *dev, bool wait);
  1226. struct pt_sysinfo * (*request_sysinfo)(struct device *dev);
  1227. struct pt_loader_platform_data
  1228. *(*request_loader_pdata)(struct device *dev);
  1229. int (*request_stop_wd)(struct device *dev);
  1230. int (*request_start_wd)(struct device *dev);
  1231. int (*request_get_mode)(struct device *dev, int protect, u8 *mode);
  1232. int (*request_pip2_get_mode_sysmode)(struct device *dev, int protect,
  1233. u8 *mode, u8 *sys_mode);
  1234. int (*request_active_pip_prot)(struct device *dev, int protect,
  1235. u8 *pip_version_major, u8 *pip_version_minor);
  1236. int (*request_enable_scan_type)(struct device *dev, u8 scan_type);
  1237. int (*request_disable_scan_type)(struct device *dev, u8 scan_type);
  1238. int (*request_pip2_enter_bl)(struct device *dev, u8 *start_mode,
  1239. int *result);
  1240. int (*request_pip2_bin_hdr)(struct device *dev,
  1241. struct pt_bin_file_hdr *hdr);
  1242. int (*request_dut_generation)(struct device *dev);
  1243. int (*request_hw_version)(struct device *dev, char *hw_version);
  1244. int (*parse_sysfs_input)(struct device *dev,
  1245. const char *buf, size_t buf_size,
  1246. u32 *out_buf, size_t out_buf_size);
  1247. #ifdef TTHE_TUNER_SUPPORT
  1248. int (*request_tthe_print)(struct device *dev, u8 *buf, int buf_len,
  1249. const u8 *data_name);
  1250. #endif
  1251. #ifdef TTDL_DIAGNOSTICS
  1252. void (*request_toggle_err_gpio)(struct device *dev, u8 type);
  1253. #endif
  1254. struct pt_core_nonhid_cmd *nonhid_cmd;
  1255. int (*request_get_fw_mode)(struct device *dev, int protect,
  1256. u8 *sys_mode, u8 *mode);
  1257. };
  1258. enum core_command_protected_status {
  1259. PT_CORE_CMD_UNPROTECTED = 0,
  1260. PT_CORE_CMD_PROTECTED = 1
  1261. };
  1262. enum pt_err_gpio_type {
  1263. PT_ERR_GPIO_NONE = 0,
  1264. PT_ERR_GPIO_I2C_TRANS = 1,
  1265. PT_ERR_GPIO_IRQ_STUCK = 2,
  1266. PT_ERR_GPIO_EXCLUSIVE_ACCESS = 3,
  1267. PT_ERR_GPIO_EMPTY_PACKET = 4,
  1268. PT_ERR_GPIO_BL_RETRY_PACKET = 5,
  1269. PT_ERR_GPIO_MAX_TYPE = PT_ERR_GPIO_BL_RETRY_PACKET,
  1270. };
  1271. struct pt_features {
  1272. uint8_t easywake;
  1273. uint8_t noise_metric;
  1274. uint8_t tracking_heatmap;
  1275. uint8_t sensor_data;
  1276. };
  1277. #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_PM_RUNTIME)
  1278. #if (KERNEL_VERSION(3, 3, 0) > LINUX_VERSION_CODE)
  1279. #define NEED_SUSPEND_NOTIFIER
  1280. #endif /* CONFIG_PM_SLEEP && CONFIG_PM_RUNTIME */
  1281. #endif /* LINUX_VERSION_CODE */
  1282. struct pt_module {
  1283. struct list_head node;
  1284. char *name;
  1285. int (*probe)(struct device *dev, void **data);
  1286. void (*release)(struct device *dev, void *data);
  1287. };
  1288. struct pt_bus_ops {
  1289. u16 bustype;
  1290. int (*read_default)(struct device *dev, void *buf, int size);
  1291. int (*read_default_nosize)(struct device *dev, u8 *buf, u32 max);
  1292. int (*write_read_specific)(struct device *dev, u16 write_len,
  1293. u8 *write_buf, u8 *read_buf);
  1294. };
  1295. struct pt_core_data {
  1296. struct pinctrl *ts_pinctrl;
  1297. struct pinctrl_state *pinctrl_state_active;
  1298. struct pinctrl_state *pinctrl_state_suspend;
  1299. struct pinctrl_state *pinctrl_state_release;
  1300. struct regulator *vdd;
  1301. struct regulator *vcc_i2c;
  1302. struct list_head node;
  1303. struct list_head module_list; /* List of probed modules */
  1304. char core_id[20];
  1305. struct device *dev;
  1306. struct workqueue_struct *pt_workqueue;
  1307. struct work_struct resume_offload_work;
  1308. struct work_struct suspend_offload_work;
  1309. struct work_struct suspend_work;
  1310. struct work_struct resume_work;
  1311. struct list_head atten_list[PT_ATTEN_NUM_ATTEN];
  1312. struct list_head param_list;
  1313. struct mutex module_list_lock;
  1314. struct mutex system_lock;
  1315. struct mutex sysfs_lock;
  1316. struct mutex ttdl_restart_lock;
  1317. struct mutex firmware_class_lock;
  1318. enum pt_mode mode;
  1319. spinlock_t spinlock;
  1320. struct pt_mt_data md;
  1321. struct pt_btn_data bd;
  1322. struct pt_proximity_data pd;
  1323. int phys_num;
  1324. int pip_cmd_timeout;
  1325. int pip_cmd_timeout_default;
  1326. void *pt_dynamic_data[PT_MODULE_LAST];
  1327. struct pt_platform_data *pdata;
  1328. struct pt_core_platform_data *cpdata;
  1329. const struct pt_bus_ops *bus_ops;
  1330. wait_queue_head_t wait_q;
  1331. enum pt_sleep_state sleep_state;
  1332. enum pt_startup_state startup_state;
  1333. int irq;
  1334. bool irq_enabled;
  1335. bool irq_wake;
  1336. bool irq_disabled;
  1337. bool hw_detected;
  1338. u8 easy_wakeup_gesture;
  1339. #ifdef EASYWAKE_TSG6
  1340. u8 gesture_id;
  1341. u8 gesture_data_length;
  1342. u8 gesture_data[80];
  1343. #endif
  1344. bool wait_until_wake;
  1345. u8 pid_for_loader;
  1346. char hw_version[13];
  1347. #ifdef NEED_SUSPEND_NOTIFIER
  1348. /*
  1349. * This notifier is used to receive suspend prepare events
  1350. * When device is PM runtime suspended, pm_generic_suspend()
  1351. * does not call our PM suspend callback for kernels with
  1352. * version less than 3.3.0.
  1353. */
  1354. struct notifier_block pm_notifier;
  1355. #endif
  1356. struct pt_sysinfo sysinfo;
  1357. struct pt_bl_info bl_info;
  1358. void *exclusive_dev;
  1359. int exclusive_waits;
  1360. struct timer_list watchdog_timer;
  1361. struct work_struct watchdog_work;
  1362. struct work_struct enum_work;
  1363. struct work_struct ttdl_restart_work;
  1364. u16 startup_retry_count;
  1365. struct pt_hid_core hid_core;
  1366. int hid_cmd_state;
  1367. int hid_reset_cmd_state; /* reset can happen any time */
  1368. struct pt_hid_desc hid_desc;
  1369. struct pt_features features;
  1370. #define PT_PREALLOCATED_CMD_BUFFER 32
  1371. u8 cmd_buf[PT_PREALLOCATED_CMD_BUFFER];
  1372. u8 input_buf[PT_MAX_INPUT];
  1373. u8 response_buf[PT_MAX_INPUT];
  1374. u8 cmd_rsp_buf[PT_MAX_INPUT];
  1375. u16 cmd_rsp_buf_len;
  1376. int raw_cmd_status;
  1377. #ifdef CONFIG_HAS_EARLYSUSPEND
  1378. struct early_suspend es;
  1379. #elif defined(CONFIG_FB) || defined(CONFIG_DRM)
  1380. struct notifier_block fb_notifier;
  1381. enum pt_fb_state fb_state;
  1382. #endif
  1383. #ifdef TTHE_TUNER_SUPPORT
  1384. struct dentry *tthe_debugfs;
  1385. u8 *tthe_buf;
  1386. u32 tthe_buf_len;
  1387. u32 tthe_buf_size;
  1388. struct mutex tthe_lock;
  1389. u8 tthe_exit;
  1390. #endif
  1391. u8 debug_level;
  1392. u8 watchdog_enabled;
  1393. bool watchdog_force_stop;
  1394. u32 watchdog_interval;
  1395. u8 show_timestamp;
  1396. u32 startup_status;
  1397. u8 pip2_cmd_tag_seq;
  1398. u8 pip2_prot_active;
  1399. u8 pip2_send_user_cmd;
  1400. u8 get_param_id;
  1401. bool bl_pip_ver_ready;
  1402. bool app_pip_ver_ready;
  1403. u8 core_probe_complete;
  1404. u8 active_dut_generation;
  1405. bool set_dut_generation;
  1406. u8 fw_system_mode;
  1407. u8 flashless_dut;
  1408. u8 bl_with_no_int;
  1409. u8 cal_cache_in_host;
  1410. u8 multi_chip;
  1411. u8 tthe_hid_usb_format;
  1412. u8 flashless_auto_bl;
  1413. u8 pip2_us_file_path[PT_MAX_PATH_SIZE];
  1414. bool fw_updating;
  1415. bool fw_sys_mode_in_standby_state;
  1416. #ifdef TTDL_PTVIRTDUT_SUPPORT
  1417. u8 route_bus_virt_dut;
  1418. #endif /* TTDL_PTVIRTDUT_SUPPORT */
  1419. u8 panel_id_support;
  1420. #ifdef TTDL_DIAGNOSTICS
  1421. u8 t_refresh_active;
  1422. u8 flush_bus_type;
  1423. u8 ttdl_bist_select;
  1424. u8 force_pip2_seq;
  1425. u16 ping_test_size;
  1426. u16 pip2_crc_error_count;
  1427. u16 t_refresh_count;
  1428. u16 t_refresh_total;
  1429. u16 wd_xres_count;
  1430. u32 watchdog_count;
  1431. u32 watchdog_irq_stuck_count;
  1432. u32 watchdog_failed_access_count;
  1433. u32 bus_transmit_error_count;
  1434. u32 irq_count;
  1435. u32 bl_retry_packet_count;
  1436. u32 file_erase_timeout_count;
  1437. unsigned long t_refresh_time;
  1438. u16 err_gpio;
  1439. u16 err_gpio_type;
  1440. bool show_tt_data;
  1441. bool bridge_mode;
  1442. bool hw_detect_enabled;
  1443. #endif
  1444. bool quick_boot;
  1445. bool drv_debug_suspend;
  1446. };
  1447. struct gd_sensor {
  1448. int32_t cm_min;
  1449. int32_t cm_max;
  1450. int32_t cm_ave;
  1451. int32_t cm_min_exclude_edge;
  1452. int32_t cm_max_exclude_edge;
  1453. int32_t cm_ave_exclude_edge;
  1454. int32_t gradient_val;
  1455. };
  1456. #ifdef TTHE_TUNER_SUPPORT
  1457. #define PT_CMD_RET_PANEL_IN_DATA_OFFSET 0
  1458. #define PT_CMD_RET_PANEL_ELMNT_SZ_MASK 0x07
  1459. #define PT_CMD_RET_PANEL_HDR 0x0A
  1460. #define PT_CMD_RET_PANEL_ELMNT_SZ_MAX 0x2
  1461. enum scan_data_type_list {
  1462. PT_MUT_RAW,
  1463. PT_MUT_BASE,
  1464. PT_MUT_DIFF,
  1465. PT_SELF_RAW,
  1466. PT_SELF_BASE,
  1467. PT_SELF_DIFF,
  1468. PT_BAL_RAW,
  1469. PT_BAL_BASE,
  1470. PT_BAL_DIFF,
  1471. };
  1472. #endif
  1473. static inline int pt_adap_read_default(struct pt_core_data *cd,
  1474. void *buf, int size)
  1475. {
  1476. return cd->bus_ops->read_default(cd->dev, buf, size);
  1477. }
  1478. static inline int pt_adap_read_default_nosize(struct pt_core_data *cd,
  1479. void *buf, int max)
  1480. {
  1481. return cd->bus_ops->read_default_nosize(cd->dev, buf, max);
  1482. }
  1483. static inline int pt_adap_write_read_specific(struct pt_core_data *cd,
  1484. u16 write_len, u8 *write_buf, u8 *read_buf)
  1485. {
  1486. return cd->bus_ops->write_read_specific(cd->dev, write_len, write_buf,
  1487. read_buf);
  1488. }
  1489. static inline void *pt_get_dynamic_data(struct device *dev, int id)
  1490. {
  1491. struct pt_core_data *cd = dev_get_drvdata(dev);
  1492. return cd->pt_dynamic_data[id];
  1493. }
  1494. int request_exclusive(struct pt_core_data *cd, void *ownptr,
  1495. int timeout_ms);
  1496. int release_exclusive(struct pt_core_data *cd, void *ownptr);
  1497. int _pt_request_pip_get_param(struct device *dev,
  1498. int protect, u8 param_id, u32 *value);
  1499. int _pt_request_pip_set_param(struct device *dev,
  1500. int protect, u8 param_id, u32 value, u8 size);
  1501. static inline int pt_request_exclusive(struct device *dev, int timeout_ms)
  1502. {
  1503. struct pt_core_data *cd = dev_get_drvdata(dev);
  1504. return request_exclusive(cd, dev, timeout_ms);
  1505. }
  1506. static inline int pt_release_exclusive(struct device *dev)
  1507. {
  1508. struct pt_core_data *cd = dev_get_drvdata(dev);
  1509. return release_exclusive(cd, dev);
  1510. }
  1511. static inline int pt_request_nonhid_get_param(struct device *dev,
  1512. int protect, u8 param_id, u32 *value)
  1513. {
  1514. return _pt_request_pip_get_param(dev, protect, param_id,
  1515. value);
  1516. }
  1517. static inline int pt_request_nonhid_set_param(struct device *dev,
  1518. int protect, u8 param_id, u32 value, u8 size)
  1519. {
  1520. return _pt_request_pip_set_param(dev, protect, param_id,
  1521. value, size);
  1522. }
  1523. void pt_pr_buf(struct device *dev, u8 debug_level, u8 *buf,
  1524. u16 buf_len, const char *data_name);
  1525. #ifdef CONFIG_TOUCHSCREEN_PARADE_DEVICETREE_SUPPORT
  1526. int pt_devtree_create_and_get_pdata(struct device *adap_dev);
  1527. int pt_devtree_clean_pdata(struct device *adap_dev);
  1528. #else
  1529. static inline int pt_devtree_create_and_get_pdata(struct device *adap_dev)
  1530. {
  1531. return 0;
  1532. }
  1533. static inline int pt_devtree_clean_pdata(struct device *adap_dev)
  1534. {
  1535. return 0;
  1536. }
  1537. #endif
  1538. int pt_probe(const struct pt_bus_ops *ops, struct device *dev,
  1539. u16 irq, size_t xfer_buf_size);
  1540. int pt_release(struct pt_core_data *cd);
  1541. struct pt_core_commands *pt_get_commands(void);
  1542. struct pt_core_data *pt_get_core_data(char *id);
  1543. int pt_mt_release(struct device *dev);
  1544. int pt_mt_probe(struct device *dev);
  1545. #ifdef CONFIG_TOUCHSCREEN_PARADE_BUTTON
  1546. int pt_btn_probe(struct device *dev);
  1547. int pt_btn_release(struct device *dev);
  1548. #else
  1549. static inline int pt_btn_probe(struct device *dev) { return 0; }
  1550. static inline int pt_btn_release(struct device *dev) { return 0; }
  1551. #endif
  1552. #ifdef CONFIG_TOUCHSCREEN_PARADE_PROXIMITY
  1553. int pt_proximity_probe(struct device *dev);
  1554. int pt_proximity_release(struct device *dev);
  1555. #else
  1556. static inline int pt_proximity_probe(struct device *dev) { return 0; }
  1557. static inline int pt_proximity_release(struct device *dev) { return 0; }
  1558. #endif
  1559. static inline unsigned int pt_get_time_stamp(void)
  1560. {
  1561. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 0, 0))
  1562. struct timespec64 ts;
  1563. ktime_get_real_ts64(&ts);
  1564. return (ts.tv_sec*1000 + ts.tv_nsec/1000000);
  1565. #else
  1566. struct timeval tv;
  1567. do_gettimeofday(&tv);
  1568. return (tv.tv_sec*1000 + tv.tv_usec/1000);
  1569. #endif
  1570. }
  1571. void pt_init_function_ptrs(struct pt_mt_data *md);
  1572. int _pt_subscribe_attention(struct device *dev,
  1573. enum pt_atten_type type, char *id, int (*func)(struct device *),
  1574. int mode);
  1575. int _pt_unsubscribe_attention(struct device *dev,
  1576. enum pt_atten_type type, char *id, int (*func)(struct device *),
  1577. int mode);
  1578. struct pt_sysinfo *_pt_request_sysinfo(struct device *dev);
  1579. extern const struct dev_pm_ops pt_pm_ops;
  1580. int pt_register_module(struct pt_module *module);
  1581. void pt_unregister_module(struct pt_module *module);
  1582. void *pt_get_module_data(struct device *dev,
  1583. struct pt_module *module);
  1584. #endif /* _PT_REGS_H */