msm_cvp_internal.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _MSM_CVP_INTERNAL_H_
  6. #define _MSM_CVP_INTERNAL_H_
  7. #include <linux/atomic.h>
  8. #include <linux/list.h>
  9. #include <linux/time.h>
  10. #include <linux/types.h>
  11. #include <linux/completion.h>
  12. #include <linux/wait.h>
  13. #include <linux/workqueue.h>
  14. #include <linux/interconnect.h>
  15. #include <linux/kref.h>
  16. #include <linux/cdev.h>
  17. #include <linux/slab.h>
  18. #include <linux/kthread.h>
  19. #include <linux/dma-mapping.h>
  20. #include "msm_cvp_core.h"
  21. #include <media/msm_media_info.h>
  22. #include <media/msm_cvp_private.h>
  23. #include "cvp_hfi_api.h"
  24. #include <synx_api.h>
  25. #define MAX_SUPPORTED_INSTANCES 16
  26. #define MAX_NAME_LENGTH 64
  27. #define MAX_DEBUGFS_NAME 50
  28. #define MAX_DSP_INIT_ATTEMPTS 16
  29. #define FENCE_WAIT_SIGNAL_TIMEOUT 100
  30. #define FENCE_WAIT_SIGNAL_RETRY_TIMES 20
  31. #define FENCE_BIT (1ULL << 63)
  32. #define FENCE_DME_ICA_ENABLED_IDX 0
  33. #define FENCE_DME_DS_IDX 1
  34. #define FENCE_DME_OUTPUT_IDX 7
  35. #define SYS_MSG_START HAL_SYS_INIT_DONE
  36. #define SYS_MSG_END HAL_SYS_ERROR
  37. #define SESSION_MSG_START HAL_SESSION_EVENT_CHANGE
  38. #define SESSION_MSG_END HAL_SESSION_ERROR
  39. #define SYS_MSG_INDEX(__msg) (__msg - SYS_MSG_START)
  40. #define SESSION_MSG_INDEX(__msg) (__msg - SESSION_MSG_START)
  41. #define ARP_BUF_SIZE 0x100000
  42. #define CVP_RT_PRIO_THRESHOLD 1
  43. struct msm_cvp_inst;
  44. enum cvp_core_state {
  45. CVP_CORE_UNINIT = 0,
  46. CVP_CORE_INIT,
  47. CVP_CORE_INIT_DONE,
  48. };
  49. /*
  50. * Do not change the enum values unless
  51. * you know what you are doing
  52. */
  53. enum instance_state {
  54. MSM_CVP_CORE_UNINIT_DONE = 0x0001,
  55. MSM_CVP_CORE_INIT,
  56. MSM_CVP_CORE_INIT_DONE,
  57. MSM_CVP_OPEN,
  58. MSM_CVP_OPEN_DONE,
  59. MSM_CVP_CLOSE,
  60. MSM_CVP_CLOSE_DONE,
  61. MSM_CVP_CORE_UNINIT,
  62. MSM_CVP_CORE_INVALID
  63. };
  64. enum dsp_state {
  65. DSP_INVALID,
  66. DSP_UNINIT,
  67. DSP_PROBED,
  68. DSP_READY,
  69. DSP_SUSPEND,
  70. DSP_INACTIVE,
  71. };
  72. struct msm_cvp_common_data {
  73. char key[128];
  74. int value;
  75. };
  76. enum sku_version {
  77. SKU_VERSION_0 = 0,
  78. SKU_VERSION_1,
  79. SKU_VERSION_2,
  80. };
  81. enum vpu_version {
  82. VPU_VERSION_4 = 1,
  83. VPU_VERSION_5,
  84. };
  85. struct msm_cvp_ubwc_config_data {
  86. struct {
  87. u32 max_channel_override : 1;
  88. u32 mal_length_override : 1;
  89. u32 hb_override : 1;
  90. u32 bank_swzl_level_override : 1;
  91. u32 bank_spreading_override : 1;
  92. u32 reserved : 27;
  93. } override_bit_info;
  94. u32 max_channels;
  95. u32 mal_length;
  96. u32 highest_bank_bit;
  97. u32 bank_swzl_level;
  98. u32 bank_spreading;
  99. };
  100. struct msm_cvp_platform_data {
  101. struct msm_cvp_common_data *common_data;
  102. unsigned int common_data_length;
  103. unsigned int sku_version;
  104. uint32_t vpu_ver;
  105. struct msm_cvp_ubwc_config_data *ubwc_config;
  106. };
  107. struct msm_cvp_drv {
  108. struct mutex lock;
  109. struct list_head cores;
  110. int num_cores;
  111. struct dentry *debugfs_root;
  112. int thermal_level;
  113. u32 sku_version;
  114. struct kmem_cache *msg_cache;
  115. struct kmem_cache *frame_cache;
  116. struct kmem_cache *buf_cache;
  117. struct kmem_cache *smem_cache;
  118. char fw_version[CVP_VERSION_LENGTH];
  119. };
  120. enum profiling_points {
  121. SYS_INIT = 0,
  122. SESSION_INIT,
  123. LOAD_RESOURCES,
  124. FRAME_PROCESSING,
  125. FW_IDLE,
  126. MAX_PROFILING_POINTS,
  127. };
  128. struct cvp_clock_data {
  129. int buffer_counter;
  130. int load;
  131. int load_low;
  132. int load_norm;
  133. int load_high;
  134. int min_threshold;
  135. int max_threshold;
  136. unsigned long bitrate;
  137. unsigned long min_freq;
  138. unsigned long curr_freq;
  139. u32 ddr_bw;
  140. u32 sys_cache_bw;
  141. u32 operating_rate;
  142. u32 core_id;
  143. bool low_latency_mode;
  144. bool turbo_mode;
  145. };
  146. struct cvp_profile_data {
  147. int start;
  148. int stop;
  149. int cumulative;
  150. char name[64];
  151. int sampling;
  152. int average;
  153. };
  154. struct msm_cvp_debug {
  155. struct cvp_profile_data pdata[MAX_PROFILING_POINTS];
  156. int profile;
  157. int samples;
  158. };
  159. enum msm_cvp_modes {
  160. CVP_SECURE = BIT(0),
  161. CVP_TURBO = BIT(1),
  162. CVP_THUMBNAIL = BIT(2),
  163. CVP_LOW_POWER = BIT(3),
  164. CVP_REALTIME = BIT(4),
  165. };
  166. #define MAX_NUM_MSGS_PER_SESSION 128
  167. #define CVP_MAX_WAIT_TIME 2000
  168. struct cvp_session_msg {
  169. struct list_head node;
  170. struct cvp_hfi_msg_session_hdr pkt;
  171. };
  172. struct cvp_session_queue {
  173. spinlock_t lock;
  174. enum queue_state state;
  175. unsigned int msg_count;
  176. struct list_head msgs;
  177. wait_queue_head_t wq;
  178. };
  179. struct cvp_session_prop {
  180. u32 type;
  181. u32 kernel_mask;
  182. u32 priority;
  183. u32 is_secure;
  184. u32 dsp_mask;
  185. u32 fthread_nr;
  186. u32 fdu_cycles;
  187. u32 od_cycles;
  188. u32 mpu_cycles;
  189. u32 ica_cycles;
  190. u32 fw_cycles;
  191. u32 fdu_op_cycles;
  192. u32 od_op_cycles;
  193. u32 mpu_op_cycles;
  194. u32 ica_op_cycles;
  195. u32 fw_op_cycles;
  196. u32 ddr_bw;
  197. u32 ddr_op_bw;
  198. u32 ddr_cache;
  199. u32 ddr_op_cache;
  200. };
  201. enum cvp_event_t {
  202. CVP_NO_EVENT,
  203. CVP_SSR_EVENT = 1,
  204. CVP_SYS_ERROR_EVENT,
  205. CVP_MAX_CLIENTS_EVENT,
  206. CVP_HW_UNSUPPORTED_EVENT,
  207. CVP_INVALID_EVENT,
  208. };
  209. struct cvp_session_event {
  210. spinlock_t lock;
  211. enum cvp_event_t event;
  212. wait_queue_head_t wq;
  213. };
  214. struct msm_cvp_core {
  215. struct list_head list;
  216. struct mutex lock;
  217. int id;
  218. dev_t dev_num;
  219. struct cdev cdev;
  220. struct class *class;
  221. struct device *dev;
  222. struct cvp_hfi_device *device;
  223. struct msm_cvp_platform_data *platform_data;
  224. struct list_head instances;
  225. struct dentry *debugfs_root;
  226. enum cvp_core_state state;
  227. struct completion completions[SYS_MSG_END - SYS_MSG_START + 1];
  228. enum msm_cvp_hfi_type hfi_type;
  229. struct msm_cvp_platform_resources resources;
  230. struct msm_cvp_capability *capabilities;
  231. struct delayed_work fw_unload_work;
  232. struct work_struct ssr_work;
  233. enum hal_ssr_trigger_type ssr_type;
  234. bool smmu_fault_handled;
  235. u32 last_fault_addr;
  236. bool trigger_ssr;
  237. unsigned long curr_freq;
  238. atomic64_t kernel_trans_id;
  239. };
  240. struct msm_cvp_inst {
  241. struct list_head list;
  242. struct mutex sync_lock, lock;
  243. struct msm_cvp_core *core;
  244. enum session_type session_type;
  245. struct cvp_session_queue session_queue;
  246. struct cvp_session_queue session_queue_fence;
  247. struct cvp_session_event event_handler;
  248. void *session;
  249. enum instance_state state;
  250. struct msm_cvp_list freqs;
  251. struct msm_cvp_list persistbufs;
  252. struct cvp_dmamap_cache dma_cache;
  253. struct msm_cvp_list cvpdspbufs;
  254. struct msm_cvp_list frames;
  255. struct completion completions[SESSION_MSG_END - SESSION_MSG_START + 1];
  256. struct dentry *debugfs_root;
  257. struct msm_cvp_debug debug;
  258. struct cvp_clock_data clk_data;
  259. enum msm_cvp_modes flags;
  260. struct msm_cvp_capability capability;
  261. struct kref kref;
  262. struct cvp_session_prop prop;
  263. u32 cur_cmd_type;
  264. struct synx_session synx_session_id;
  265. struct cvp_fence_queue fence_cmd_queue;
  266. };
  267. extern struct msm_cvp_drv *cvp_driver;
  268. void cvp_handle_cmd_response(enum hal_command_response cmd, void *data);
  269. int msm_cvp_trigger_ssr(struct msm_cvp_core *core,
  270. enum hal_ssr_trigger_type type);
  271. int msm_cvp_noc_error_info(struct msm_cvp_core *core);
  272. void msm_cvp_comm_handle_thermal_event(void);
  273. void msm_cvp_fw_unload_handler(struct work_struct *work);
  274. void msm_cvp_ssr_handler(struct work_struct *work);
  275. /*
  276. * XXX: normally should be in msm_cvp_core.h, but that's meant for public APIs,
  277. * whereas this is private
  278. */
  279. int msm_cvp_destroy(struct msm_cvp_inst *inst);
  280. void *cvp_get_drv_data(struct device *dev);
  281. #endif