cam_common_util.h 14 KB

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