cam_common_util.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2017-2021, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #ifndef _CAM_COMMON_UTIL_H_
  7. #define _CAM_COMMON_UTIL_H_
  8. #include <linux/types.h>
  9. #include <linux/kernel.h>
  10. #include "cam_hw_mgr_intf.h"
  11. #define CAM_BITS_MASK_SHIFT(x, mask, shift) (((x) & (mask)) >> shift)
  12. #define CAM_36BIT_INTF_GET_IOVA_BASE(iova) ((iova) >> 8)
  13. #define CAM_36BIT_INTF_GET_IOVA_OFFSET(iova) ((iova) & 0xff)
  14. #define CAM_COMMON_MINI_DUMP_DEV_NUM 6
  15. #define CAM_COMMON_MINI_DUMP_DEV_NAME_LEN 16
  16. #define CAM_COMMON_MINI_DUMP_SIZE 10 * 1024 * 1024
  17. #define CAM_COMMON_HW_DUMP_TAG_MAX_LEN 64
  18. #define CAM_MAX_NUM_CCI_PAYLOAD_BYTES 11
  19. #define CAM_COMMON_EVT_INJECT_MODULE_PARAM_MAX_LENGTH 4096
  20. #define CAM_COMMON_EVT_INJECT_BUFFER_LEN 200
  21. #define CAM_COMMON_EVT_INJECT_BUFFER_ERROR "Buffer_Error"
  22. #define CAM_COMMON_EVT_INJECT_NOTIFY_EVENT "Notify_Event"
  23. #define CAM_COMMON_IFE_NODE "IFE"
  24. #define CAM_COMMON_ICP_NODE "IPE"
  25. #define CAM_COMMON_JPEG_NODE "JPEG"
  26. #define CAM_COMMON_NS_PER_MS 1000000ULL
  27. #define PTR_TO_U64(ptr) ((uint64_t)(uintptr_t)ptr)
  28. #define U64_TO_PTR(ptr) ((void *)(uintptr_t)ptr)
  29. #define CAM_TRIGGER_PANIC(format, args...) panic("CAMERA - " format "\n", ##args)
  30. #define CAM_GET_TIMESTAMP(timestamp) ktime_get_real_ts64(&(timestamp))
  31. #define CAM_GET_TIMESTAMP_DIFF_IN_MICRO(ts_start, ts_end, diff_microsec) \
  32. ({ \
  33. diff_microsec = 0; \
  34. if (ts_end.tv_nsec >= ts_start.tv_nsec) { \
  35. diff_microsec = \
  36. (ts_end.tv_nsec - ts_start.tv_nsec) / 1000; \
  37. diff_microsec += \
  38. (ts_end.tv_sec - ts_start.tv_sec) * 1000 * 1000; \
  39. } else { \
  40. diff_microsec = \
  41. (ts_end.tv_nsec + \
  42. (1000*1000*1000 - ts_start.tv_nsec)) / 1000; \
  43. diff_microsec += \
  44. (ts_end.tv_sec - ts_start.tv_sec - 1) * 1000 * 1000; \
  45. } \
  46. })
  47. #define CAM_CONVERT_TIMESTAMP_FORMAT(ts, hrs, min, sec, ms) \
  48. ({ \
  49. uint64_t tmp = ((ts).tv_sec); \
  50. (ms) = ((ts).tv_nsec) / 1000000; \
  51. (sec) = do_div(tmp, 60); \
  52. (min) = do_div(tmp, 60); \
  53. (hrs) = do_div(tmp, 24); \
  54. })
  55. #define CAM_COMMON_WAIT_FOR_COMPLETION_TIMEOUT_ERRMSG(complete, timeout_jiffies, module_id, \
  56. fmt, args...) \
  57. ({ \
  58. struct timespec64 start_time, end_time; \
  59. unsigned long rem_jiffies; \
  60. start_time = ktime_to_timespec64(ktime_get()); \
  61. rem_jiffies = cam_common_wait_for_completion_timeout((complete), (timeout_jiffies)); \
  62. if (!rem_jiffies) { \
  63. end_time = ktime_to_timespec64(ktime_get()); \
  64. CAM_ERR(module_id, \
  65. fmt " (timeout: %ums start: timestamp:[%lld.%06lld] end: timestamp:[%lld.%06lld])",\
  66. ##args, jiffies_to_msecs(timeout_jiffies), \
  67. start_time.tv_sec, (start_time.tv_nsec/NSEC_PER_USEC), \
  68. end_time.tv_sec, (end_time.tv_nsec/NSEC_PER_USEC)); \
  69. } \
  70. rem_jiffies; \
  71. })
  72. typedef unsigned long (*cam_common_mini_dump_cb) (void *dst, unsigned long len);
  73. /**
  74. * struct cam_common_mini_dump_dev_info
  75. * @dump_cb : address of data dumped
  76. * @name : Name of driver
  77. * @num_devs : Number of device registerd
  78. * @is_registered : Bool to indicate if registered
  79. */
  80. struct cam_common_mini_dump_dev_info {
  81. cam_common_mini_dump_cb dump_cb[CAM_COMMON_MINI_DUMP_DEV_NUM];
  82. uint8_t name[CAM_COMMON_MINI_DUMP_DEV_NUM]
  83. [CAM_COMMON_MINI_DUMP_DEV_NAME_LEN];
  84. uint8_t num_devs;
  85. bool is_registered;
  86. };
  87. /**
  88. * struct cam_common_mini_dump_data
  89. * @link : address of data dumped
  90. * @name : Name of driver
  91. * @size : Size dumped
  92. */
  93. struct cam_common_mini_dump_data {
  94. void *waddr[CAM_COMMON_MINI_DUMP_DEV_NUM];
  95. uint8_t name[CAM_COMMON_MINI_DUMP_DEV_NUM][CAM_COMMON_MINI_DUMP_DEV_NAME_LEN];
  96. unsigned long size[CAM_COMMON_MINI_DUMP_DEV_NUM];
  97. };
  98. typedef int (*cam_common_evt_inject_cb) (void *inject_args);
  99. enum cam_common_evt_inject_str_id_type {
  100. CAM_COMMON_EVT_INJECT_BUFFER_ERROR_TYPE,
  101. CAM_COMMON_EVT_INJECT_NOTIFY_EVENT_TYPE
  102. };
  103. enum cam_common_evt_inject_hw_id {
  104. CAM_COMMON_EVT_INJECT_HW_ISP,
  105. CAM_COMMON_EVT_INJECT_HW_ICP,
  106. CAM_COMMON_EVT_INJECT_HW_JPEG,
  107. CAM_COMMON_EVT_INJECT_HW_MAX
  108. };
  109. enum cam_common_evt_inject_common_param_pos {
  110. STRING_ID,
  111. HW_NAME,
  112. DEV_HDL,
  113. REQ_ID,
  114. COMMON_PARAM_MAX
  115. };
  116. enum cam_common_evt_inject_notify_event_pos {
  117. EVT_NOTIFY_TYPE,
  118. EVT_NOTIFY_PARAM_MAX
  119. };
  120. enum cam_evt_inject_buffer_error_event {
  121. SYNC_ERROR_CAUSE,
  122. BUFFER_ERROR_PARAM_MAX
  123. };
  124. enum cam_evt_inject_error_param_pos {
  125. ERR_PARAM_ERR_TYPE,
  126. ERR_PARAM_ERR_CODE,
  127. ERR_PARAM_MAX
  128. };
  129. enum cam_evt_inject_node_param_pos {
  130. EVENT_TYPE,
  131. EVENT_CAUSE,
  132. NODE_PARAM_MAX,
  133. };
  134. enum cam_evt_inject_pf_params_pos {
  135. PF_PARAM_CTX_FOUND,
  136. PF_PARAM_MAX
  137. };
  138. /**
  139. * struct cam_common_evt_inject_data
  140. * @buf_done_data: buf done data
  141. * @evt_params : event params for the injected event
  142. */
  143. struct cam_common_evt_inject_data {
  144. void *buf_done_data;
  145. struct cam_hw_inject_evt_param *evt_params;
  146. };
  147. typedef int (*cam_common_evt_inject_ops) (void *cam_ctx,
  148. struct cam_common_evt_inject_data *inject_evt);
  149. /**
  150. * struct cam_common_inject_evt_param
  151. * @evt_params : injection event params
  152. * @dev_hdl : device handle to match with ctx's dev_hdl
  153. * @hw_id : hw to be injected with the event
  154. */
  155. struct cam_common_inject_evt_param {
  156. struct list_head list;
  157. struct cam_hw_inject_evt_param evt_params;
  158. int32_t dev_hdl;
  159. uint8_t hw_id;
  160. };
  161. /**
  162. * struct cam_common_inject_evt_info
  163. * @evt_inject_cb : address of callback
  164. * @active_err_ctx_list: list containing active evt inject requests
  165. * @num_hw_registered : number of callbacks registered
  166. * @is_list_initialised: bool to check init for evt_inject list
  167. */
  168. struct cam_common_inject_evt_info {
  169. cam_common_evt_inject_cb evt_inject_cb[CAM_COMMON_EVT_INJECT_HW_MAX];
  170. struct list_head active_evt_ctx_list;
  171. uint8_t num_hw_registered;
  172. bool is_list_initialised;
  173. };
  174. /**
  175. * struct cam_common_hw_dump_args
  176. * @req_id : request id
  177. * @cpu_addr : address where dumping will start from
  178. * @buf_len : length of buffer where data is being dumped to
  179. * @offset : buffer offset from cpu_addr after each item dump
  180. * @ctxt_to_hw_map : context to hw map
  181. * @is_dump_all : flag to indicate if all information or just bw/clk rate
  182. * @
  183. */
  184. struct cam_common_hw_dump_args {
  185. uint64_t req_id;
  186. uintptr_t cpu_addr;
  187. size_t buf_len;
  188. size_t offset;
  189. void *ctxt_to_hw_map;
  190. bool is_dump_all;
  191. };
  192. /**
  193. * struct cam_common_hw_dump_header
  194. * @tag : string used by the parser to call parse functions
  195. * @size : size of the header in the buffer
  196. * @word_size : word size of the header
  197. * @
  198. */
  199. struct cam_common_hw_dump_header {
  200. uint8_t tag[CAM_COMMON_HW_DUMP_TAG_MAX_LEN];
  201. uint64_t size;
  202. uint32_t word_size;
  203. };
  204. /**
  205. * @brief release all event inject params in the g_inject_evt_info
  206. * for a specific dev_hdl
  207. * @dev_hdl: device handle to which the evt inject params belong to
  208. */
  209. void cam_common_release_evt_params(int32_t dev_hdl);
  210. /**
  211. * cam_common_util_get_string_index()
  212. *
  213. * @brief Match the string from list of strings to return
  214. * matching index
  215. *
  216. * @strings: Pointer to list of strings
  217. * @num_strings: Number of strings in 'strings'
  218. * @matching_string: String to match
  219. * @index: Pointer to index to return matching index
  220. *
  221. * @return: 0 for success
  222. * -EINVAL for Fail
  223. */
  224. int cam_common_util_get_string_index(const char **strings,
  225. uint32_t num_strings, const char *matching_string, uint32_t *index);
  226. /**
  227. * cam_common_util_remove_duplicate_arr()
  228. *
  229. * @brief Move all the unique integers to the start of
  230. * the array and return the number of unique integers
  231. *
  232. * @array: Pointer to the first integer of array
  233. * @num: Number of elements in array
  234. *
  235. * @return: Number of unique integers in array
  236. */
  237. uint32_t cam_common_util_remove_duplicate_arr(int32_t *array,
  238. uint32_t num);
  239. /**
  240. * cam_common_wait_for_completion_timeout()
  241. *
  242. * @brief common interface to implement wait for completion
  243. * for slow environment like presil, single debug
  244. * timeout variable can take care
  245. *
  246. * @complete: Pointer to the first integer of array
  247. * @timeout_jiffies: Timeout value in jiffie
  248. *
  249. * @return: Remaining jiffies, non-zero for success, zero
  250. * in case of failure
  251. */
  252. unsigned long cam_common_wait_for_completion_timeout(
  253. struct completion *complete,
  254. unsigned long timeout_jiffies);
  255. /**
  256. * cam_common_read_poll_timeout()
  257. *
  258. * @brief common interface to read poll timeout
  259. *
  260. * @addr: Address of IO register
  261. * @delay: Delay interval of poll
  262. * @timeout: Timeout for poll
  263. * @mask: Mask to be checked
  264. * @check_val: Value to be compared to break poll
  265. * @status: Status of register of IO
  266. *
  267. * @return: 0 if success and negative if fail
  268. * */
  269. int cam_common_read_poll_timeout(
  270. void __iomem *addr,
  271. unsigned long delay,
  272. unsigned long timeout,
  273. uint32_t mask,
  274. uint32_t check_val,
  275. uint32_t *status);
  276. /**
  277. * cam_common_modify_timer()
  278. *
  279. * @brief common interface to modify timer,
  280. *
  281. * @timer: reference to system timer
  282. * @timeout_val: timeout value for timer
  283. *
  284. * @return: 0 if success and negative if fail
  285. */
  286. int cam_common_modify_timer(struct timer_list *timer, int32_t timeout_val);
  287. /**
  288. * cam_common_util_thread_switch_delay_detect()
  289. *
  290. * @brief Detect if there is any scheduling delay
  291. *
  292. * @token: String identifier to print workq name or tasklet
  293. * @scheduled_time: Time when workq or tasklet was scheduled
  294. * @threshold: Threshold time
  295. *
  296. */
  297. void cam_common_util_thread_switch_delay_detect(const char *token,
  298. ktime_t scheduled_time, uint32_t threshold);
  299. /**
  300. * cam_common_register_mini_dump_cb()
  301. *
  302. * @brief common interface to register mini dump cb
  303. *
  304. * @mini_dump_cb: Pointer to the mini_dump_cb
  305. * @name: name of device registering
  306. *
  307. * @return: 0 if success in register non-zero if failes
  308. */
  309. #if IS_REACHABLE(CONFIG_QCOM_VA_MINIDUMP)
  310. int cam_common_register_mini_dump_cb(
  311. cam_common_mini_dump_cb mini_dump_cb, uint8_t *name);
  312. #else
  313. static inline int cam_common_register_mini_dump_cb(
  314. cam_common_mini_dump_cb mini_dump_cb,
  315. uint8_t *dev_name)
  316. {
  317. return 0;
  318. }
  319. #endif
  320. /**
  321. * cam_common_user_dump_clock()
  322. *
  323. * @brief Handles clock rate dump
  324. *
  325. * @dump_struct: Struct holding dump info
  326. * @addr_ptr: Pointer to buffer address pointer
  327. */
  328. void *cam_common_user_dump_clock(
  329. void *dump_struct,
  330. uint8_t *addr_ptr);
  331. /**
  332. * cam_common_user_dump_helper()
  333. *
  334. * @brief Handles buffer addressing and dumping for user dump
  335. *
  336. * @cmd_args: Holds cam_common_hw_dump_args pointer
  337. * @func: Function pointer for dump function
  338. * @dump_struct: Struct holding dump info
  339. * @size: Size_t value used for header word size
  340. * @tag: Tag for header, used by parser
  341. * @...: Variadic arguments, appended to tag if given
  342. */
  343. int cam_common_user_dump_helper(
  344. void *cmd_args,
  345. void *(*func)(void *, uint8_t *),
  346. void *dump_struct,
  347. size_t size,
  348. const char *tag,
  349. ...);
  350. /**
  351. * cam_common_register_evt_inject_cb()
  352. *
  353. * @brief common interface to register evt inject cb
  354. *
  355. * @evt_inject_cb: Pointer to evt_inject_cb
  356. * @hw_id: HW id of the HW driver registering
  357. *
  358. * @return: 0 if success in register non-zero if failes
  359. */
  360. int cam_common_register_evt_inject_cb(
  361. cam_common_evt_inject_cb evt_inject_cb,
  362. enum cam_common_evt_inject_hw_id hw_id);
  363. #endif /* _CAM_COMMON_UTIL_H_ */