cam_common_util.h 14 KB

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