pt_regs.h 53 KB

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