msm_cvp_common.c 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/jiffies.h>
  6. #include <linux/sched.h>
  7. #include <linux/slab.h>
  8. #include <linux/kernel.h>
  9. #include <linux/bitops.h>
  10. #ifndef CVP_MDT_ENABLED
  11. #include <soc/qcom/subsystem_restart.h>
  12. #endif
  13. #include <asm/div64.h>
  14. #include "msm_cvp_common.h"
  15. #include "cvp_hfi_api.h"
  16. #include "msm_cvp_debug.h"
  17. #include "msm_cvp_clocks.h"
  18. #include "msm_cvp.h"
  19. #include "cvp_core_hfi.h"
  20. #define IS_ALREADY_IN_STATE(__p, __d) (\
  21. (__p >= __d)\
  22. )
  23. static void handle_session_error(enum hal_command_response cmd, void *data);
  24. static void dump_hfi_queue(struct iris_hfi_device *device)
  25. {
  26. struct cvp_hfi_queue_header *queue;
  27. struct cvp_iface_q_info *qinfo;
  28. int i;
  29. u32 *read_ptr, read_idx;
  30. dprintk(CVP_ERR, "HFI queues in order of cmd(rd, wr), msg and dbg:\n");
  31. /*
  32. * mb() to ensure driver reads the updated header values from
  33. * main memory.
  34. */
  35. mb();
  36. for (i = 0; i <= CVP_IFACEQ_DBGQ_IDX; i++) {
  37. qinfo = &device->iface_queues[i];
  38. queue = (struct cvp_hfi_queue_header *)qinfo->q_hdr;
  39. if (!queue) {
  40. dprintk(CVP_ERR, "HFI queue not init, fail to dump\n");
  41. return;
  42. }
  43. dprintk(CVP_ERR, "queue details: %d %d\n",
  44. queue->qhdr_read_idx, queue->qhdr_write_idx);
  45. if (queue->qhdr_read_idx != queue->qhdr_write_idx) {
  46. read_idx = queue->qhdr_read_idx;
  47. read_ptr = (u32 *)((qinfo->q_array.align_virtual_addr) +
  48. (read_idx << 2));
  49. dprintk(CVP_ERR, "queue payload: %x %x %x %x\n",
  50. read_ptr[0], read_ptr[1],
  51. read_ptr[2], read_ptr[3]);
  52. }
  53. }
  54. }
  55. struct msm_cvp_core *get_cvp_core(int core_id)
  56. {
  57. struct msm_cvp_core *core;
  58. int found = 0;
  59. if (core_id > MSM_CVP_CORES_MAX) {
  60. dprintk(CVP_ERR, "Core id = %d is greater than max = %d\n",
  61. core_id, MSM_CVP_CORES_MAX);
  62. return NULL;
  63. }
  64. mutex_lock(&cvp_driver->lock);
  65. list_for_each_entry(core, &cvp_driver->cores, list) {
  66. if (core->id == core_id) {
  67. found = 1;
  68. break;
  69. }
  70. }
  71. mutex_unlock(&cvp_driver->lock);
  72. if (found)
  73. return core;
  74. return NULL;
  75. }
  76. static void handle_sys_init_done(enum hal_command_response cmd, void *data)
  77. {
  78. struct msm_cvp_cb_cmd_done *response = data;
  79. struct msm_cvp_core *core;
  80. struct cvp_hal_sys_init_done *sys_init_msg;
  81. u32 index;
  82. if (!IS_HAL_SYS_CMD(cmd)) {
  83. dprintk(CVP_ERR, "%s - invalid cmd\n", __func__);
  84. return;
  85. }
  86. index = SYS_MSG_INDEX(cmd);
  87. if (!response) {
  88. dprintk(CVP_ERR,
  89. "Failed to get valid response for sys init\n");
  90. return;
  91. }
  92. core = get_cvp_core(response->device_id);
  93. if (!core) {
  94. dprintk(CVP_ERR, "Wrong device_id received\n");
  95. return;
  96. }
  97. sys_init_msg = &response->data.sys_init_done;
  98. if (!sys_init_msg) {
  99. dprintk(CVP_ERR, "sys_init_done message not proper\n");
  100. return;
  101. }
  102. /* This should come from sys_init_done */
  103. core->resources.max_inst_count =
  104. sys_init_msg->max_sessions_supported ?
  105. min_t(u32, sys_init_msg->max_sessions_supported,
  106. MAX_SUPPORTED_INSTANCES) : MAX_SUPPORTED_INSTANCES;
  107. core->resources.max_secure_inst_count =
  108. core->resources.max_secure_inst_count ?
  109. core->resources.max_secure_inst_count :
  110. core->resources.max_inst_count;
  111. memcpy(core->capabilities, sys_init_msg->capabilities,
  112. sys_init_msg->codec_count * sizeof(struct msm_cvp_capability));
  113. dprintk(CVP_CORE,
  114. "%s: max_inst_count %d, max_secure_inst_count %d\n",
  115. __func__, core->resources.max_inst_count,
  116. core->resources.max_secure_inst_count);
  117. complete(&(core->completions[index]));
  118. }
  119. static void put_inst_helper(struct kref *kref)
  120. {
  121. struct msm_cvp_inst *inst = container_of(kref,
  122. struct msm_cvp_inst, kref);
  123. msm_cvp_destroy(inst);
  124. }
  125. void cvp_put_inst(struct msm_cvp_inst *inst)
  126. {
  127. if (!inst)
  128. return;
  129. kref_put(&inst->kref, put_inst_helper);
  130. }
  131. struct msm_cvp_inst *cvp_get_inst(struct msm_cvp_core *core,
  132. void *session_id)
  133. {
  134. struct msm_cvp_inst *inst = NULL;
  135. bool matches = false;
  136. if (!core || !session_id)
  137. return NULL;
  138. mutex_lock(&core->lock);
  139. /*
  140. * This is as good as !list_empty(!inst->list), but at this point
  141. * we don't really know if inst was kfree'd via close syscall before
  142. * hardware could respond. So manually walk thru the list of active
  143. * sessions
  144. */
  145. list_for_each_entry(inst, &core->instances, list) {
  146. if (inst == session_id) {
  147. /*
  148. * Even if the instance is valid, we really shouldn't
  149. * be receiving or handling callbacks when we've deleted
  150. * our session with HFI
  151. */
  152. matches = !!inst->session;
  153. break;
  154. }
  155. }
  156. /*
  157. * kref_* is atomic_int backed, so no need for inst->lock. But we can
  158. * always acquire inst->lock and release it in cvp_put_inst
  159. * for a stronger locking system.
  160. */
  161. inst = (matches && kref_get_unless_zero(&inst->kref)) ? inst : NULL;
  162. mutex_unlock(&core->lock);
  163. return inst;
  164. }
  165. struct msm_cvp_inst *cvp_get_inst_validate(struct msm_cvp_core *core,
  166. void *session_id)
  167. {
  168. int rc = 0;
  169. struct cvp_hfi_device *hdev;
  170. struct msm_cvp_inst *s;
  171. s = cvp_get_inst(core, session_id);
  172. if (!s) {
  173. dprintk(CVP_ERR, "%s session doesn't exit\n",
  174. __builtin_return_address(0));
  175. return NULL;
  176. }
  177. hdev = s->core->device;
  178. rc = call_hfi_op(hdev, validate_session, s->session, __func__);
  179. if (rc) {
  180. cvp_put_inst(s);
  181. s = NULL;
  182. }
  183. return s;
  184. }
  185. static void cvp_handle_session_cmd_done(enum hal_command_response cmd,
  186. void *data)
  187. {
  188. struct msm_cvp_cb_cmd_done *response = data;
  189. struct msm_cvp_inst *inst;
  190. if (!response) {
  191. dprintk(CVP_ERR, "%s: Invalid release_buf_done response\n",
  192. __func__);
  193. return;
  194. }
  195. inst = cvp_get_inst(get_cvp_core(response->device_id),
  196. response->session_id);
  197. if (!inst) {
  198. dprintk(CVP_ERR, "%s: Got response for an inactive session\n",
  199. __func__);
  200. return;
  201. }
  202. if (response->status)
  203. dprintk(CVP_ERR, "HFI MSG error %d cmd response %d\n",
  204. response->status, cmd);
  205. dprintk(CVP_SESS, "%s: inst=%pK\n", __func__, inst);
  206. if (IS_HAL_SESSION_CMD(cmd)) {
  207. dprintk(CVP_INFO, "%s: calling completion for index = %d",
  208. __func__, SESSION_MSG_INDEX(cmd));
  209. complete(&inst->completions[SESSION_MSG_INDEX(cmd)]);
  210. } else
  211. dprintk(CVP_ERR,
  212. "%s: Invalid inst cmd response: %d\n", __func__, cmd);
  213. cvp_put_inst(inst);
  214. }
  215. static void handle_session_set_buf_done(enum hal_command_response cmd,
  216. void *data)
  217. {
  218. struct msm_cvp_cb_cmd_done *response = data;
  219. struct msm_cvp_inst *inst;
  220. if (!response) {
  221. dprintk(CVP_ERR, "Invalid set_buf_done response\n");
  222. return;
  223. }
  224. inst = cvp_get_inst(get_cvp_core(response->device_id),
  225. response->session_id);
  226. if (!inst) {
  227. dprintk(CVP_WARN, "set_buf_done has an inactive session\n");
  228. return;
  229. }
  230. if (response->status) {
  231. dprintk(CVP_ERR,
  232. "set ARP buffer error from FW : %#x\n",
  233. response->status);
  234. }
  235. if (IS_HAL_SESSION_CMD(cmd))
  236. complete(&inst->completions[SESSION_MSG_INDEX(cmd)]);
  237. else
  238. dprintk(CVP_ERR, "set_buf_done: invalid cmd: %d\n", cmd);
  239. cvp_put_inst(inst);
  240. }
  241. static void handle_session_release_buf_done(enum hal_command_response cmd,
  242. void *data)
  243. {
  244. struct msm_cvp_cb_cmd_done *response = data;
  245. struct msm_cvp_inst *inst;
  246. struct cvp_internal_buf *buf;
  247. struct list_head *ptr, *next;
  248. u32 buf_found = false;
  249. u32 address;
  250. if (!response) {
  251. dprintk(CVP_ERR, "Invalid release_buf_done response\n");
  252. return;
  253. }
  254. inst = cvp_get_inst(get_cvp_core(response->device_id),
  255. response->session_id);
  256. if (!inst) {
  257. dprintk(CVP_WARN,
  258. "%s: Got a response for an inactive session\n",
  259. __func__);
  260. return;
  261. }
  262. address = response->data.buffer_addr;
  263. mutex_lock(&inst->persistbufs.lock);
  264. list_for_each_safe(ptr, next, &inst->persistbufs.list) {
  265. buf = list_entry(ptr, struct cvp_internal_buf, list);
  266. if (address == buf->smem->device_addr + buf->offset) {
  267. dprintk(CVP_SESS, "releasing persist: %#x\n",
  268. buf->smem->device_addr);
  269. buf_found = true;
  270. }
  271. }
  272. mutex_unlock(&inst->persistbufs.lock);
  273. if (IS_HAL_SESSION_CMD(cmd))
  274. complete(&inst->completions[SESSION_MSG_INDEX(cmd)]);
  275. else
  276. dprintk(CVP_ERR, "Invalid inst cmd response: %d\n", cmd);
  277. cvp_put_inst(inst);
  278. }
  279. static void handle_sys_release_res_done(
  280. enum hal_command_response cmd, void *data)
  281. {
  282. struct msm_cvp_cb_cmd_done *response = data;
  283. struct msm_cvp_core *core;
  284. if (!response) {
  285. dprintk(CVP_ERR,
  286. "Failed to get valid response for sys init\n");
  287. return;
  288. }
  289. core = get_cvp_core(response->device_id);
  290. if (!core) {
  291. dprintk(CVP_ERR, "Wrong device_id received\n");
  292. return;
  293. }
  294. complete(&core->completions[
  295. SYS_MSG_INDEX(HAL_SYS_RELEASE_RESOURCE_DONE)]);
  296. }
  297. void change_cvp_inst_state(struct msm_cvp_inst *inst, enum instance_state state)
  298. {
  299. if (!inst) {
  300. dprintk(CVP_ERR, "Invalid parameter %s\n", __func__);
  301. return;
  302. }
  303. mutex_lock(&inst->lock);
  304. if (inst->state == MSM_CVP_CORE_INVALID) {
  305. dprintk(CVP_SESS,
  306. "Inst: %pK is in bad state can't change state to %d\n",
  307. inst, state);
  308. goto exit;
  309. }
  310. dprintk(CVP_SESS, "Moved inst: %pK from state: %d to state: %d\n",
  311. inst, inst->state, state);
  312. inst->state = state;
  313. exit:
  314. mutex_unlock(&inst->lock);
  315. }
  316. static int signal_session_msg_receipt(enum hal_command_response cmd,
  317. struct msm_cvp_inst *inst)
  318. {
  319. if (!inst) {
  320. dprintk(CVP_ERR, "Invalid(%pK) instance id\n", inst);
  321. return -EINVAL;
  322. }
  323. if (IS_HAL_SESSION_CMD(cmd)) {
  324. complete(&inst->completions[SESSION_MSG_INDEX(cmd)]);
  325. } else {
  326. dprintk(CVP_ERR, "Invalid inst cmd response: %d\n", cmd);
  327. return -EINVAL;
  328. }
  329. return 0;
  330. }
  331. int wait_for_sess_signal_receipt(struct msm_cvp_inst *inst,
  332. enum hal_command_response cmd)
  333. {
  334. int rc = 0;
  335. struct cvp_hfi_device *hdev;
  336. if (!IS_HAL_SESSION_CMD(cmd)) {
  337. dprintk(CVP_ERR, "Invalid inst cmd response: %d\n", cmd);
  338. return -EINVAL;
  339. }
  340. hdev = (struct cvp_hfi_device *)(inst->core->device);
  341. rc = wait_for_completion_timeout(
  342. &inst->completions[SESSION_MSG_INDEX(cmd)],
  343. msecs_to_jiffies(
  344. inst->core->resources.msm_cvp_hw_rsp_timeout));
  345. if (!rc) {
  346. dprintk(CVP_WARN, "Wait interrupted or timed out: %d\n",
  347. SESSION_MSG_INDEX(cmd));
  348. call_hfi_op(hdev, flush_debug_queue, hdev->hfi_device_data);
  349. dump_hfi_queue(hdev->hfi_device_data);
  350. rc = -EIO;
  351. } else if (inst->state == MSM_CVP_CORE_INVALID) {
  352. rc = -ECONNRESET;
  353. } else {
  354. rc = 0;
  355. }
  356. return rc;
  357. }
  358. static int wait_for_state(struct msm_cvp_inst *inst,
  359. enum instance_state flipped_state,
  360. enum instance_state desired_state,
  361. enum hal_command_response hal_cmd)
  362. {
  363. int rc = 0;
  364. if (IS_ALREADY_IN_STATE(flipped_state, desired_state)) {
  365. dprintk(CVP_INFO, "inst: %pK is already in state: %d\n",
  366. inst, inst->state);
  367. goto err_same_state;
  368. }
  369. dprintk(CVP_SESS, "Waiting for hal_cmd: %d\n", hal_cmd);
  370. rc = wait_for_sess_signal_receipt(inst, hal_cmd);
  371. if (!rc)
  372. change_cvp_inst_state(inst, desired_state);
  373. err_same_state:
  374. return rc;
  375. }
  376. void msm_cvp_notify_event(struct msm_cvp_inst *inst, int event_type)
  377. {
  378. }
  379. static void msm_cvp_comm_generate_max_clients_error(struct msm_cvp_inst *inst)
  380. {
  381. enum hal_command_response cmd = HAL_SESSION_ERROR;
  382. struct msm_cvp_cb_cmd_done response = {0};
  383. if (!inst) {
  384. dprintk(CVP_ERR, "%s: invalid input parameters\n", __func__);
  385. return;
  386. }
  387. dprintk(CVP_ERR, "%s: Too many clients\n", __func__);
  388. response.session_id = inst;
  389. response.status = CVP_ERR_MAX_CLIENTS;
  390. handle_session_error(cmd, (void *)&response);
  391. }
  392. static void handle_session_init_done(enum hal_command_response cmd, void *data)
  393. {
  394. struct msm_cvp_cb_cmd_done *response = data;
  395. struct msm_cvp_inst *inst = NULL;
  396. if (!response) {
  397. dprintk(CVP_ERR,
  398. "Failed to get valid response for session init\n");
  399. return;
  400. }
  401. inst = cvp_get_inst(get_cvp_core(response->device_id),
  402. response->session_id);
  403. if (!inst) {
  404. dprintk(CVP_WARN, "%s:Got a response for an inactive session\n",
  405. __func__);
  406. return;
  407. }
  408. if (response->status) {
  409. dprintk(CVP_ERR,
  410. "Session init response from FW : %#x\n",
  411. response->status);
  412. if (response->status == CVP_ERR_MAX_CLIENTS)
  413. msm_cvp_comm_generate_max_clients_error(inst);
  414. else
  415. msm_cvp_comm_generate_session_error(inst);
  416. signal_session_msg_receipt(cmd, inst);
  417. cvp_put_inst(inst);
  418. return;
  419. }
  420. dprintk(CVP_SESS, "%s: cvp session %#x\n", __func__,
  421. hash32_ptr(inst->session));
  422. signal_session_msg_receipt(cmd, inst);
  423. cvp_put_inst(inst);
  424. return;
  425. }
  426. static void handle_event_change(enum hal_command_response cmd, void *data)
  427. {
  428. dprintk(CVP_WARN, "%s is not supported on CVP!\n", __func__);
  429. }
  430. static void handle_release_res_done(enum hal_command_response cmd, void *data)
  431. {
  432. struct msm_cvp_cb_cmd_done *response = data;
  433. struct msm_cvp_inst *inst;
  434. if (!response) {
  435. dprintk(CVP_ERR,
  436. "Failed to get valid response for release resource\n");
  437. return;
  438. }
  439. inst = cvp_get_inst(get_cvp_core(response->device_id),
  440. response->session_id);
  441. if (!inst) {
  442. dprintk(CVP_WARN, "%s:Got a response for an inactive session\n",
  443. __func__);
  444. return;
  445. }
  446. signal_session_msg_receipt(cmd, inst);
  447. cvp_put_inst(inst);
  448. }
  449. static void handle_session_flush(enum hal_command_response cmd, void *data)
  450. {
  451. struct msm_cvp_cb_cmd_done *response = data;
  452. struct msm_cvp_inst *inst;
  453. if (!response) {
  454. dprintk(CVP_ERR,
  455. "Failed to get valid response for release resource\n");
  456. return;
  457. }
  458. inst = cvp_get_inst(get_cvp_core(response->device_id),
  459. response->session_id);
  460. if (!inst) {
  461. dprintk(CVP_WARN, "%s:Got a response for an inactive session\n",
  462. __func__);
  463. return;
  464. }
  465. signal_session_msg_receipt(cmd, inst);
  466. cvp_put_inst(inst);
  467. }
  468. static void handle_session_error(enum hal_command_response cmd, void *data)
  469. {
  470. struct msm_cvp_cb_cmd_done *response = data;
  471. struct cvp_hfi_device *hdev = NULL;
  472. struct msm_cvp_inst *inst = NULL;
  473. int event = CVP_SYS_ERROR_EVENT;
  474. if (!response) {
  475. dprintk(CVP_ERR,
  476. "Failed to get valid response for session error\n");
  477. return;
  478. }
  479. inst = cvp_get_inst(get_cvp_core(response->device_id),
  480. response->session_id);
  481. if (!inst) {
  482. dprintk(CVP_WARN, "%s: response for an inactive session\n",
  483. __func__);
  484. return;
  485. }
  486. hdev = inst->core->device;
  487. dprintk(CVP_ERR, "Session error received for inst %pK session %x\n",
  488. inst, hash32_ptr(inst->session));
  489. if (response->status == CVP_ERR_MAX_CLIENTS) {
  490. dprintk(CVP_WARN, "Too many clients, rejecting %pK", inst);
  491. event = CVP_MAX_CLIENTS_EVENT;
  492. /*
  493. * Clean the HFI session now. Since inst->state is moved to
  494. * INVALID, forward thread doesn't know FW has valid session
  495. * or not. This is the last place driver knows that there is
  496. * no session in FW. Hence clean HFI session now.
  497. */
  498. msm_cvp_comm_session_clean(inst);
  499. } else if (response->status == CVP_ERR_NOT_SUPPORTED) {
  500. dprintk(CVP_WARN, "Unsupported bitstream in %pK", inst);
  501. event = CVP_HW_UNSUPPORTED_EVENT;
  502. } else {
  503. dprintk(CVP_WARN, "Unknown session error (%d) for %pK\n",
  504. response->status, inst);
  505. event = CVP_SYS_ERROR_EVENT;
  506. }
  507. /* change state before sending error to client */
  508. change_cvp_inst_state(inst, MSM_CVP_CORE_INVALID);
  509. msm_cvp_notify_event(inst, event);
  510. cvp_put_inst(inst);
  511. }
  512. static void msm_comm_clean_notify_client(struct msm_cvp_core *core)
  513. {
  514. struct msm_cvp_inst *inst = NULL;
  515. if (!core) {
  516. dprintk(CVP_ERR, "%s: Invalid params\n", __func__);
  517. return;
  518. }
  519. dprintk(CVP_WARN, "%s: Core %pK\n", __func__, core);
  520. mutex_lock(&core->lock);
  521. list_for_each_entry(inst, &core->instances, list) {
  522. mutex_lock(&inst->lock);
  523. inst->state = MSM_CVP_CORE_INVALID;
  524. mutex_unlock(&inst->lock);
  525. dprintk(CVP_WARN,
  526. "%s Send sys error for inst %pK\n", __func__, inst);
  527. msm_cvp_notify_event(inst,
  528. CVP_SYS_ERROR_EVENT);
  529. }
  530. mutex_unlock(&core->lock);
  531. }
  532. static void handle_sys_error(enum hal_command_response cmd, void *data)
  533. {
  534. struct msm_cvp_cb_cmd_done *response = data;
  535. struct msm_cvp_core *core = NULL;
  536. struct cvp_hfi_device *hdev = NULL;
  537. struct msm_cvp_inst *inst = NULL;
  538. int i, rc = 0;
  539. unsigned long flags = 0;
  540. enum cvp_core_state cur_state;
  541. if (!response) {
  542. dprintk(CVP_ERR,
  543. "Failed to get valid response for sys error\n");
  544. return;
  545. }
  546. core = get_cvp_core(response->device_id);
  547. if (!core) {
  548. dprintk(CVP_ERR,
  549. "Got SYS_ERR but unable to identify core\n");
  550. return;
  551. }
  552. hdev = core->device;
  553. mutex_lock(&core->lock);
  554. if (core->state == CVP_CORE_UNINIT) {
  555. dprintk(CVP_ERR,
  556. "%s: Core %pK already moved to state %d\n",
  557. __func__, core, core->state);
  558. mutex_unlock(&core->lock);
  559. return;
  560. }
  561. cur_state = core->state;
  562. core->state = CVP_CORE_UNINIT;
  563. dprintk(CVP_WARN, "SYS_ERROR received for core %pK\n", core);
  564. msm_cvp_noc_error_info(core);
  565. call_hfi_op(hdev, flush_debug_queue, hdev->hfi_device_data);
  566. list_for_each_entry(inst, &core->instances, list) {
  567. dprintk(CVP_WARN,
  568. "%s: sys error inst %#x kref %x, cmd %x state %x\n",
  569. __func__, inst, kref_read(&inst->kref),
  570. inst->cur_cmd_type, inst->state);
  571. if (inst->state != MSM_CVP_CORE_INVALID) {
  572. change_cvp_inst_state(inst, MSM_CVP_CORE_INVALID);
  573. if (cvp_stop_clean_fence_queue(inst))
  574. dprintk(CVP_ERR, "Failed to clean fences\n");
  575. for (i = 0; i < ARRAY_SIZE(inst->completions); i++)
  576. complete(&inst->completions[i]);
  577. spin_lock_irqsave(&inst->event_handler.lock, flags);
  578. inst->event_handler.event = CVP_SSR_EVENT;
  579. spin_unlock_irqrestore(
  580. &inst->event_handler.lock, flags);
  581. wake_up_all(&inst->event_handler.wq);
  582. }
  583. if (!core->trigger_ssr)
  584. msm_cvp_print_inst_bufs(inst);
  585. }
  586. /* handle the hw error before core released to get full debug info */
  587. msm_cvp_handle_hw_error(core);
  588. if (response->status == CVP_ERR_NOC_ERROR) {
  589. dprintk(CVP_WARN, "Got NOC error");
  590. MSM_CVP_ERROR(true);
  591. }
  592. dprintk(CVP_CORE, "Calling core_release\n");
  593. rc = call_hfi_op(hdev, core_release, hdev->hfi_device_data);
  594. if (rc) {
  595. dprintk(CVP_ERR, "core_release failed\n");
  596. core->state = cur_state;
  597. mutex_unlock(&core->lock);
  598. return;
  599. }
  600. mutex_unlock(&core->lock);
  601. dprintk(CVP_WARN, "SYS_ERROR handled.\n");
  602. }
  603. void msm_cvp_comm_session_clean(struct msm_cvp_inst *inst)
  604. {
  605. int rc = 0;
  606. struct cvp_hfi_device *hdev = NULL;
  607. if (!inst || !inst->core || !inst->core->device) {
  608. dprintk(CVP_ERR, "%s invalid params\n", __func__);
  609. return;
  610. }
  611. if (!inst->session) {
  612. dprintk(CVP_SESS, "%s: inst %pK session already cleaned\n",
  613. __func__, inst);
  614. return;
  615. }
  616. hdev = inst->core->device;
  617. mutex_lock(&inst->lock);
  618. dprintk(CVP_SESS, "%s: inst %pK\n", __func__, inst);
  619. rc = call_hfi_op(hdev, session_clean,
  620. (void *)inst->session);
  621. if (rc) {
  622. dprintk(CVP_ERR,
  623. "Session clean failed :%pK\n", inst);
  624. }
  625. inst->session = NULL;
  626. mutex_unlock(&inst->lock);
  627. }
  628. static void handle_session_close(enum hal_command_response cmd, void *data)
  629. {
  630. struct msm_cvp_cb_cmd_done *response = data;
  631. struct msm_cvp_inst *inst;
  632. if (!response) {
  633. dprintk(CVP_ERR,
  634. "Failed to get valid response for session close\n");
  635. return;
  636. }
  637. inst = cvp_get_inst(get_cvp_core(response->device_id),
  638. response->session_id);
  639. if (!inst) {
  640. dprintk(CVP_WARN, "%s: response for an inactive session\n",
  641. __func__);
  642. return;
  643. }
  644. signal_session_msg_receipt(cmd, inst);
  645. show_stats(inst);
  646. cvp_put_inst(inst);
  647. }
  648. void cvp_handle_cmd_response(enum hal_command_response cmd, void *data)
  649. {
  650. dprintk(CVP_HFI, "Command response = %d\n", cmd);
  651. switch (cmd) {
  652. case HAL_SYS_INIT_DONE:
  653. handle_sys_init_done(cmd, data);
  654. break;
  655. case HAL_SYS_RELEASE_RESOURCE_DONE:
  656. handle_sys_release_res_done(cmd, data);
  657. break;
  658. case HAL_SESSION_INIT_DONE:
  659. handle_session_init_done(cmd, data);
  660. break;
  661. case HAL_SESSION_RELEASE_RESOURCE_DONE:
  662. handle_release_res_done(cmd, data);
  663. break;
  664. case HAL_SESSION_END_DONE:
  665. case HAL_SESSION_ABORT_DONE:
  666. handle_session_close(cmd, data);
  667. break;
  668. case HAL_SESSION_EVENT_CHANGE:
  669. handle_event_change(cmd, data);
  670. break;
  671. case HAL_SESSION_FLUSH_DONE:
  672. handle_session_flush(cmd, data);
  673. break;
  674. case HAL_SYS_WATCHDOG_TIMEOUT:
  675. case HAL_SYS_ERROR:
  676. handle_sys_error(cmd, data);
  677. break;
  678. case HAL_SESSION_ERROR:
  679. handle_session_error(cmd, data);
  680. break;
  681. case HAL_SESSION_SET_BUFFER_DONE:
  682. handle_session_set_buf_done(cmd, data);
  683. break;
  684. case HAL_SESSION_RELEASE_BUFFER_DONE:
  685. handle_session_release_buf_done(cmd, data);
  686. break;
  687. case HAL_SESSION_DFS_CONFIG_CMD_DONE:
  688. case HAL_SESSION_DFS_FRAME_CMD_DONE:
  689. case HAL_SESSION_DMM_CONFIG_CMD_DONE:
  690. case HAL_SESSION_DMM_PARAMS_CMD_DONE:
  691. case HAL_SESSION_DMM_FRAME_CMD_DONE:
  692. case HAL_SESSION_WARP_CONFIG_CMD_DONE:
  693. case HAL_SESSION_WARP_DS_PARAMS_CMD_DONE:
  694. case HAL_SESSION_WARP_FRAME_CMD_DONE:
  695. case HAL_SESSION_WARP_NCC_CONFIG_CMD_DONE:
  696. case HAL_SESSION_WARP_NCC_FRAME_CMD_DONE:
  697. case HAL_SESSION_PERSIST_SET_DONE:
  698. case HAL_SESSION_PERSIST_REL_DONE:
  699. case HAL_SESSION_TME_CONFIG_CMD_DONE:
  700. case HAL_SESSION_ODT_CONFIG_CMD_DONE:
  701. case HAL_SESSION_OD_CONFIG_CMD_DONE:
  702. case HAL_SESSION_NCC_CONFIG_CMD_DONE:
  703. case HAL_SESSION_ICA_CONFIG_CMD_DONE:
  704. case HAL_SESSION_HCD_CONFIG_CMD_DONE:
  705. case HAL_SESSION_DCM_CONFIG_CMD_DONE:
  706. case HAL_SESSION_DC_CONFIG_CMD_DONE:
  707. case HAL_SESSION_PYS_HCD_CONFIG_CMD_DONE:
  708. case HAL_SESSION_FD_CONFIG_CMD_DONE:
  709. case HAL_SESSION_MODEL_BUF_CMD_DONE:
  710. case HAL_SESSION_ICA_FRAME_CMD_DONE:
  711. case HAL_SESSION_FD_FRAME_CMD_DONE:
  712. cvp_handle_session_cmd_done(cmd, data);
  713. break;
  714. default:
  715. dprintk(CVP_HFI, "response unhandled: %d\n", cmd);
  716. break;
  717. }
  718. }
  719. static inline enum msm_cvp_thermal_level msm_comm_cvp_thermal_level(int level)
  720. {
  721. switch (level) {
  722. case 0:
  723. return CVP_THERMAL_NORMAL;
  724. case 1:
  725. return CVP_THERMAL_LOW;
  726. case 2:
  727. return CVP_THERMAL_HIGH;
  728. default:
  729. return CVP_THERMAL_CRITICAL;
  730. }
  731. }
  732. static bool is_core_turbo(struct msm_cvp_core *core, unsigned long freq)
  733. {
  734. int i = 0;
  735. struct allowed_clock_rates_table *allowed_clks_tbl = NULL;
  736. u32 max_freq = 0;
  737. allowed_clks_tbl = core->resources.allowed_clks_tbl;
  738. for (i = 0; i < core->resources.allowed_clks_tbl_size; i++) {
  739. if (max_freq < allowed_clks_tbl[i].clock_rate)
  740. max_freq = allowed_clks_tbl[i].clock_rate;
  741. }
  742. return freq >= max_freq;
  743. }
  744. static bool is_thermal_permissible(struct msm_cvp_core *core)
  745. {
  746. enum msm_cvp_thermal_level tl;
  747. unsigned long freq = 0;
  748. bool is_turbo = false;
  749. if (!core->resources.thermal_mitigable)
  750. return true;
  751. if (msm_cvp_thermal_mitigation_disabled) {
  752. dprintk(CVP_CORE,
  753. "Thermal mitigation not enabled. debugfs %d\n",
  754. msm_cvp_thermal_mitigation_disabled);
  755. return true;
  756. }
  757. tl = msm_comm_cvp_thermal_level(cvp_driver->thermal_level);
  758. freq = core->curr_freq;
  759. is_turbo = is_core_turbo(core, freq);
  760. dprintk(CVP_CORE,
  761. "Core freq %ld Thermal level %d Turbo mode %d\n",
  762. freq, tl, is_turbo);
  763. if (is_turbo && tl >= CVP_THERMAL_LOW) {
  764. dprintk(CVP_ERR,
  765. "CVP session not allowed. Turbo mode %d Thermal level %d\n",
  766. is_turbo, tl);
  767. return false;
  768. }
  769. return true;
  770. }
  771. static int msm_comm_session_abort(struct msm_cvp_inst *inst)
  772. {
  773. int rc = 0, abort_completion = 0;
  774. struct cvp_hfi_device *hdev;
  775. if (!inst || !inst->core || !inst->core->device) {
  776. dprintk(CVP_ERR, "%s invalid params\n", __func__);
  777. return -EINVAL;
  778. }
  779. hdev = inst->core->device;
  780. abort_completion = SESSION_MSG_INDEX(HAL_SESSION_ABORT_DONE);
  781. dprintk(CVP_WARN, "%s: inst %pK session %x\n", __func__,
  782. inst, hash32_ptr(inst->session));
  783. rc = call_hfi_op(hdev, session_abort, (void *)inst->session);
  784. if (rc) {
  785. dprintk(CVP_ERR,
  786. "%s session_abort failed rc: %d\n", __func__, rc);
  787. goto exit;
  788. }
  789. rc = wait_for_completion_timeout(
  790. &inst->completions[abort_completion],
  791. msecs_to_jiffies(
  792. inst->core->resources.msm_cvp_hw_rsp_timeout));
  793. if (!rc) {
  794. dprintk(CVP_ERR, "%s: inst %pK session %x abort timed out\n",
  795. __func__, inst, hash32_ptr(inst->session));
  796. call_hfi_op(hdev, flush_debug_queue, hdev->hfi_device_data);
  797. dump_hfi_queue(hdev->hfi_device_data);
  798. msm_cvp_comm_generate_sys_error(inst);
  799. rc = -EBUSY;
  800. } else {
  801. rc = 0;
  802. }
  803. exit:
  804. return rc;
  805. }
  806. static void handle_thermal_event(struct msm_cvp_core *core)
  807. {
  808. int rc = 0;
  809. struct msm_cvp_inst *inst;
  810. if (!core || !core->device) {
  811. dprintk(CVP_ERR, "%s Invalid params\n", __func__);
  812. return;
  813. }
  814. mutex_lock(&core->lock);
  815. list_for_each_entry(inst, &core->instances, list) {
  816. if (!inst->session)
  817. continue;
  818. mutex_unlock(&core->lock);
  819. if (inst->state >= MSM_CVP_OPEN_DONE &&
  820. inst->state < MSM_CVP_CLOSE_DONE) {
  821. dprintk(CVP_WARN, "%s: abort inst %pK\n",
  822. __func__, inst);
  823. rc = msm_comm_session_abort(inst);
  824. if (rc) {
  825. dprintk(CVP_ERR,
  826. "%s session_abort failed rc: %d\n",
  827. __func__, rc);
  828. goto err_sess_abort;
  829. }
  830. change_cvp_inst_state(inst, MSM_CVP_CORE_INVALID);
  831. dprintk(CVP_WARN,
  832. "%s Send sys error for inst %pK\n",
  833. __func__, inst);
  834. msm_cvp_notify_event(inst,
  835. CVP_SYS_ERROR_EVENT);
  836. } else {
  837. msm_cvp_comm_generate_session_error(inst);
  838. }
  839. mutex_lock(&core->lock);
  840. }
  841. mutex_unlock(&core->lock);
  842. return;
  843. err_sess_abort:
  844. msm_comm_clean_notify_client(core);
  845. }
  846. void msm_cvp_comm_handle_thermal_event(void)
  847. {
  848. struct msm_cvp_core *core;
  849. list_for_each_entry(core, &cvp_driver->cores, list) {
  850. if (!is_thermal_permissible(core)) {
  851. dprintk(CVP_WARN,
  852. "Thermal level critical, stop all active sessions!\n");
  853. handle_thermal_event(core);
  854. }
  855. }
  856. }
  857. int msm_cvp_comm_check_core_init(struct msm_cvp_core *core)
  858. {
  859. int rc = 0;
  860. struct cvp_hfi_device *hdev;
  861. mutex_lock(&core->lock);
  862. if (core->state >= CVP_CORE_INIT_DONE) {
  863. dprintk(CVP_INFO, "CVP core: %d is already in state: %d\n",
  864. core->id, core->state);
  865. goto exit;
  866. }
  867. dprintk(CVP_CORE, "Waiting for SYS_INIT_DONE\n");
  868. rc = wait_for_completion_timeout(
  869. &core->completions[SYS_MSG_INDEX(HAL_SYS_INIT_DONE)],
  870. msecs_to_jiffies(core->resources.msm_cvp_hw_rsp_timeout));
  871. if (!rc) {
  872. dprintk(CVP_ERR, "%s: Wait interrupted or timed out: %d\n",
  873. __func__, SYS_MSG_INDEX(HAL_SYS_INIT_DONE));
  874. hdev = core->device;
  875. call_hfi_op(hdev, flush_debug_queue, hdev->hfi_device_data);
  876. dump_hfi_queue(hdev->hfi_device_data);
  877. rc = -EIO;
  878. goto exit;
  879. } else {
  880. core->state = CVP_CORE_INIT_DONE;
  881. rc = 0;
  882. }
  883. dprintk(CVP_CORE, "SYS_INIT_DONE!!!\n");
  884. exit:
  885. mutex_unlock(&core->lock);
  886. return rc;
  887. }
  888. static int msm_comm_init_core_done(struct msm_cvp_inst *inst)
  889. {
  890. int rc = 0;
  891. rc = msm_cvp_comm_check_core_init(inst->core);
  892. if (rc) {
  893. dprintk(CVP_ERR, "%s - failed to initialize core\n", __func__);
  894. msm_cvp_comm_generate_sys_error(inst);
  895. return rc;
  896. }
  897. change_cvp_inst_state(inst, MSM_CVP_CORE_INIT_DONE);
  898. return rc;
  899. }
  900. static int msm_comm_init_core(struct msm_cvp_inst *inst)
  901. {
  902. int rc = 0;
  903. struct cvp_hfi_device *hdev;
  904. struct msm_cvp_core *core;
  905. if (!inst || !inst->core || !inst->core->device)
  906. return -EINVAL;
  907. core = inst->core;
  908. hdev = core->device;
  909. mutex_lock(&core->lock);
  910. if (core->state >= CVP_CORE_INIT) {
  911. dprintk(CVP_CORE, "CVP core: %d is already in state: %d\n",
  912. core->id, core->state);
  913. goto core_already_inited;
  914. }
  915. if (!core->capabilities) {
  916. core->capabilities = kcalloc(CVP_MAX_SESSIONS,
  917. sizeof(struct msm_cvp_capability), GFP_KERNEL);
  918. if (!core->capabilities) {
  919. dprintk(CVP_ERR,
  920. "%s: failed to allocate capabilities\n",
  921. __func__);
  922. rc = -ENOMEM;
  923. goto fail_cap_alloc;
  924. }
  925. } else {
  926. dprintk(CVP_WARN,
  927. "%s: capabilities memory is expected to be freed\n",
  928. __func__);
  929. }
  930. dprintk(CVP_CORE, "%s: core %pK\n", __func__, core);
  931. rc = call_hfi_op(hdev, core_init, hdev->hfi_device_data);
  932. if (rc) {
  933. dprintk(CVP_ERR, "Failed to init core, id = %d\n",
  934. core->id);
  935. goto fail_core_init;
  936. }
  937. core->state = CVP_CORE_INIT;
  938. core->smmu_fault_handled = false;
  939. core->trigger_ssr = false;
  940. core_already_inited:
  941. change_cvp_inst_state(inst, MSM_CVP_CORE_INIT);
  942. mutex_unlock(&core->lock);
  943. return rc;
  944. fail_core_init:
  945. kfree(core->capabilities);
  946. fail_cap_alloc:
  947. core->capabilities = NULL;
  948. core->state = CVP_CORE_UNINIT;
  949. mutex_unlock(&core->lock);
  950. return rc;
  951. }
  952. int msm_cvp_deinit_core(struct msm_cvp_inst *inst)
  953. {
  954. struct msm_cvp_core *core;
  955. struct cvp_hfi_device *hdev;
  956. if (!inst || !inst->core || !inst->core->device) {
  957. dprintk(CVP_ERR, "%s invalid parameters\n", __func__);
  958. return -EINVAL;
  959. }
  960. core = inst->core;
  961. hdev = core->device;
  962. mutex_lock(&core->lock);
  963. if (core->state == CVP_CORE_UNINIT) {
  964. dprintk(CVP_INFO, "CVP core: %d is already in state: %d\n",
  965. core->id, core->state);
  966. goto core_already_uninited;
  967. }
  968. if (!core->resources.never_unload_fw) {
  969. cancel_delayed_work(&core->fw_unload_work);
  970. /*
  971. * Delay unloading of firmware. This is useful
  972. * in avoiding firmware download delays in cases where we
  973. * will have a burst of back to back cvp sessions
  974. */
  975. schedule_delayed_work(&core->fw_unload_work,
  976. msecs_to_jiffies(core->state == CVP_CORE_INIT_DONE ?
  977. core->resources.msm_cvp_firmware_unload_delay : 0));
  978. dprintk(CVP_CORE, "firmware unload delayed by %u ms\n",
  979. core->state == CVP_CORE_INIT_DONE ?
  980. core->resources.msm_cvp_firmware_unload_delay : 0);
  981. }
  982. core_already_uninited:
  983. change_cvp_inst_state(inst, MSM_CVP_CORE_UNINIT);
  984. mutex_unlock(&core->lock);
  985. return 0;
  986. }
  987. static int msm_comm_session_init_done(int flipped_state,
  988. struct msm_cvp_inst *inst)
  989. {
  990. int rc;
  991. dprintk(CVP_SESS, "inst %pK: waiting for session init done\n", inst);
  992. rc = wait_for_state(inst, flipped_state, MSM_CVP_OPEN_DONE,
  993. HAL_SESSION_INIT_DONE);
  994. if (rc) {
  995. dprintk(CVP_ERR, "Session init failed for inst %pK\n", inst);
  996. msm_cvp_comm_generate_sys_error(inst);
  997. return rc;
  998. }
  999. return rc;
  1000. }
  1001. static int msm_comm_session_init(int flipped_state,
  1002. struct msm_cvp_inst *inst)
  1003. {
  1004. int rc = 0;
  1005. struct cvp_hfi_device *hdev;
  1006. if (!inst || !inst->core || !inst->core->device) {
  1007. dprintk(CVP_ERR, "%s invalid parameters\n", __func__);
  1008. return -EINVAL;
  1009. }
  1010. hdev = inst->core->device;
  1011. if (IS_ALREADY_IN_STATE(flipped_state, MSM_CVP_OPEN)) {
  1012. dprintk(CVP_INFO, "inst: %pK is already in state: %d\n",
  1013. inst, inst->state);
  1014. goto exit;
  1015. }
  1016. dprintk(CVP_SESS, "%s: inst %pK\n", __func__, inst);
  1017. rc = call_hfi_op(hdev, session_init, hdev->hfi_device_data,
  1018. inst, &inst->session);
  1019. if (rc || !inst->session) {
  1020. dprintk(CVP_ERR,
  1021. "Failed to call session init for: %pK, %pK, %d\n",
  1022. inst->core->device, inst, inst->session_type);
  1023. rc = -EINVAL;
  1024. goto exit;
  1025. }
  1026. change_cvp_inst_state(inst, MSM_CVP_OPEN);
  1027. exit:
  1028. return rc;
  1029. }
  1030. static int msm_comm_session_close(int flipped_state,
  1031. struct msm_cvp_inst *inst)
  1032. {
  1033. int rc = 0;
  1034. struct cvp_hfi_device *hdev;
  1035. if (!inst || !inst->core || !inst->core->device) {
  1036. dprintk(CVP_ERR, "%s invalid params\n", __func__);
  1037. return -EINVAL;
  1038. }
  1039. if (IS_ALREADY_IN_STATE(flipped_state, MSM_CVP_CLOSE)) {
  1040. dprintk(CVP_INFO,
  1041. "inst: %pK is already in state: %d\n",
  1042. inst, inst->state);
  1043. goto exit;
  1044. }
  1045. hdev = inst->core->device;
  1046. dprintk(CVP_SESS, "%s: inst %pK\n", __func__, inst);
  1047. rc = call_hfi_op(hdev, session_end, (void *) inst->session);
  1048. if (rc) {
  1049. dprintk(CVP_ERR,
  1050. "Failed to send close\n");
  1051. goto exit;
  1052. }
  1053. change_cvp_inst_state(inst, MSM_CVP_CLOSE);
  1054. exit:
  1055. return rc;
  1056. }
  1057. int msm_cvp_comm_suspend(int core_id)
  1058. {
  1059. struct cvp_hfi_device *hdev;
  1060. struct msm_cvp_core *core;
  1061. int rc = 0;
  1062. core = get_cvp_core(core_id);
  1063. if (!core) {
  1064. dprintk(CVP_ERR,
  1065. "%s: Failed to find core for core_id = %d\n",
  1066. __func__, core_id);
  1067. return -EINVAL;
  1068. }
  1069. hdev = (struct cvp_hfi_device *)core->device;
  1070. if (!hdev) {
  1071. dprintk(CVP_ERR, "%s Invalid device handle\n", __func__);
  1072. return -EINVAL;
  1073. }
  1074. rc = call_hfi_op(hdev, suspend, hdev->hfi_device_data);
  1075. if (rc)
  1076. dprintk(CVP_WARN, "Failed to suspend\n");
  1077. return rc;
  1078. }
  1079. static int get_flipped_state(int present_state, int desired_state)
  1080. {
  1081. int flipped_state = present_state;
  1082. if (flipped_state < MSM_CVP_CLOSE && desired_state > MSM_CVP_CLOSE) {
  1083. flipped_state = MSM_CVP_CLOSE + (MSM_CVP_CLOSE - flipped_state);
  1084. flipped_state &= 0xFFFE;
  1085. flipped_state = flipped_state - 1;
  1086. } else if (flipped_state > MSM_CVP_CLOSE
  1087. && desired_state < MSM_CVP_CLOSE) {
  1088. flipped_state = MSM_CVP_CLOSE -
  1089. (flipped_state - MSM_CVP_CLOSE + 1);
  1090. flipped_state &= 0xFFFE;
  1091. flipped_state = flipped_state - 1;
  1092. }
  1093. return flipped_state;
  1094. }
  1095. int msm_cvp_comm_try_state(struct msm_cvp_inst *inst, int state)
  1096. {
  1097. int rc = 0;
  1098. int flipped_state;
  1099. if (!inst) {
  1100. dprintk(CVP_ERR, "%s: invalid params %pK", __func__, inst);
  1101. return -EINVAL;
  1102. }
  1103. dprintk(CVP_SESS,
  1104. "Trying to move inst: %pK (%#x) from: %#x to %#x\n",
  1105. inst, hash32_ptr(inst->session), inst->state, state);
  1106. mutex_lock(&inst->sync_lock);
  1107. if (inst->state == MSM_CVP_CORE_INVALID) {
  1108. dprintk(CVP_ERR, "%s: inst %pK is in invalid\n",
  1109. __func__, inst);
  1110. mutex_unlock(&inst->sync_lock);
  1111. return -EINVAL;
  1112. }
  1113. flipped_state = get_flipped_state(inst->state, state);
  1114. dprintk(CVP_SESS,
  1115. "inst: %pK (%#x) flipped_state = %#x %x\n",
  1116. inst, hash32_ptr(inst->session), flipped_state, state);
  1117. switch (flipped_state) {
  1118. case MSM_CVP_CORE_UNINIT_DONE:
  1119. case MSM_CVP_CORE_INIT:
  1120. rc = msm_comm_init_core(inst);
  1121. if (rc || state <= get_flipped_state(inst->state, state))
  1122. break;
  1123. case MSM_CVP_CORE_INIT_DONE:
  1124. rc = msm_comm_init_core_done(inst);
  1125. if (rc || state <= get_flipped_state(inst->state, state))
  1126. break;
  1127. case MSM_CVP_OPEN:
  1128. rc = msm_comm_session_init(flipped_state, inst);
  1129. if (rc || state <= get_flipped_state(inst->state, state))
  1130. break;
  1131. case MSM_CVP_OPEN_DONE:
  1132. rc = msm_comm_session_init_done(flipped_state, inst);
  1133. if (rc || state <= get_flipped_state(inst->state, state))
  1134. break;
  1135. case MSM_CVP_CLOSE:
  1136. dprintk(CVP_INFO, "to CVP_CLOSE state\n");
  1137. rc = msm_comm_session_close(flipped_state, inst);
  1138. if (rc || state <= get_flipped_state(inst->state, state))
  1139. break;
  1140. case MSM_CVP_CLOSE_DONE:
  1141. dprintk(CVP_INFO, "to CVP_CLOSE_DONE state\n");
  1142. rc = wait_for_state(inst, flipped_state, MSM_CVP_CLOSE_DONE,
  1143. HAL_SESSION_END_DONE);
  1144. if (rc || state <= get_flipped_state(inst->state, state))
  1145. break;
  1146. msm_cvp_comm_session_clean(inst);
  1147. case MSM_CVP_CORE_UNINIT:
  1148. case MSM_CVP_CORE_INVALID:
  1149. dprintk(CVP_INFO, "Sending core uninit\n");
  1150. rc = msm_cvp_deinit_core(inst);
  1151. if (rc || state <= get_flipped_state(inst->state, state))
  1152. break;
  1153. default:
  1154. dprintk(CVP_ERR, "State not recognized\n");
  1155. rc = -EINVAL;
  1156. break;
  1157. }
  1158. mutex_unlock(&inst->sync_lock);
  1159. if (rc) {
  1160. dprintk(CVP_ERR,
  1161. "Failed to move from state: %d to %d\n",
  1162. inst->state, state);
  1163. msm_cvp_comm_kill_session(inst);
  1164. }
  1165. return rc;
  1166. }
  1167. int msm_cvp_noc_error_info(struct msm_cvp_core *core)
  1168. {
  1169. struct cvp_hfi_device *hdev;
  1170. if (!core || !core->device) {
  1171. dprintk(CVP_WARN, "%s: Invalid parameters: %pK\n",
  1172. __func__, core);
  1173. return -EINVAL;
  1174. }
  1175. if (!core->resources.non_fatal_pagefaults)
  1176. return 0;
  1177. if (!core->smmu_fault_handled)
  1178. return 0;
  1179. hdev = core->device;
  1180. call_hfi_op(hdev, noc_error_info, hdev->hfi_device_data);
  1181. return 0;
  1182. }
  1183. int msm_cvp_trigger_ssr(struct msm_cvp_core *core,
  1184. enum hal_ssr_trigger_type type)
  1185. {
  1186. if (!core) {
  1187. dprintk(CVP_WARN, "%s: Invalid parameters\n", __func__);
  1188. return -EINVAL;
  1189. }
  1190. core->ssr_type = type;
  1191. schedule_work(&core->ssr_work);
  1192. return 0;
  1193. }
  1194. void msm_cvp_ssr_handler(struct work_struct *work)
  1195. {
  1196. int rc;
  1197. struct msm_cvp_core *core;
  1198. struct cvp_hfi_device *hdev;
  1199. core = container_of(work, struct msm_cvp_core, ssr_work);
  1200. if (!core || !core->device) {
  1201. dprintk(CVP_ERR, "%s: Invalid params\n", __func__);
  1202. return;
  1203. }
  1204. hdev = core->device;
  1205. if (core->ssr_type == SSR_SESSION_ABORT) {
  1206. struct msm_cvp_inst *inst = NULL, *s;
  1207. dprintk(CVP_ERR, "Session abort triggered\n");
  1208. list_for_each_entry(inst, &core->instances, list) {
  1209. dprintk(CVP_WARN,
  1210. "Session to abort: inst %#x cmd %x ref %x\n",
  1211. inst, inst->cur_cmd_type,
  1212. kref_read(&inst->kref));
  1213. break;
  1214. }
  1215. if (inst != NULL) {
  1216. s = cvp_get_inst_validate(inst->core, inst);
  1217. if (!s)
  1218. return;
  1219. call_hfi_op(hdev, flush_debug_queue,
  1220. hdev->hfi_device_data);
  1221. dump_hfi_queue(hdev->hfi_device_data);
  1222. msm_cvp_comm_kill_session(inst);
  1223. cvp_put_inst(s);
  1224. } else {
  1225. dprintk(CVP_WARN, "No active CVP session to abort\n");
  1226. }
  1227. return;
  1228. }
  1229. send_again:
  1230. mutex_lock(&core->lock);
  1231. if (core->state == CVP_CORE_INIT_DONE) {
  1232. dprintk(CVP_WARN, "%s: ssr type %d\n", __func__,
  1233. core->ssr_type);
  1234. /*
  1235. * In current implementation user-initiated SSR triggers
  1236. * a fatal error from hardware. However, there is no way
  1237. * to know if fatal error is due to SSR or not. Handle
  1238. * user SSR as non-fatal.
  1239. */
  1240. core->trigger_ssr = true;
  1241. rc = call_hfi_op(hdev, core_trigger_ssr,
  1242. hdev->hfi_device_data, core->ssr_type);
  1243. if (rc) {
  1244. if (rc == -EAGAIN) {
  1245. core->trigger_ssr = false;
  1246. mutex_unlock(&core->lock);
  1247. usleep_range(500, 1000);
  1248. dprintk(CVP_WARN, "Retry ssr\n");
  1249. goto send_again;
  1250. }
  1251. dprintk(CVP_ERR, "%s: trigger_ssr failed\n",
  1252. __func__);
  1253. core->trigger_ssr = false;
  1254. }
  1255. } else {
  1256. dprintk(CVP_WARN, "%s: cvp core %pK not initialized\n",
  1257. __func__, core);
  1258. }
  1259. mutex_unlock(&core->lock);
  1260. }
  1261. void msm_cvp_comm_generate_session_error(struct msm_cvp_inst *inst)
  1262. {
  1263. enum hal_command_response cmd = HAL_SESSION_ERROR;
  1264. struct msm_cvp_cb_cmd_done response = {0};
  1265. if (!inst || !inst->core) {
  1266. dprintk(CVP_ERR, "%s: invalid input parameters\n", __func__);
  1267. return;
  1268. }
  1269. dprintk(CVP_WARN, "%s: inst %pK\n", __func__, inst);
  1270. response.session_id = inst;
  1271. response.status = CVP_ERR_FAIL;
  1272. handle_session_error(cmd, (void *)&response);
  1273. }
  1274. void msm_cvp_comm_generate_sys_error(struct msm_cvp_inst *inst)
  1275. {
  1276. struct msm_cvp_core *core;
  1277. enum hal_command_response cmd = HAL_SYS_ERROR;
  1278. struct msm_cvp_cb_cmd_done response = {0};
  1279. if (!inst || !inst->core) {
  1280. dprintk(CVP_ERR, "%s: invalid input parameters\n", __func__);
  1281. return;
  1282. }
  1283. dprintk(CVP_WARN, "%s: inst %pK\n", __func__, inst);
  1284. core = inst->core;
  1285. response.device_id = (u32) core->id;
  1286. handle_sys_error(cmd, (void *) &response);
  1287. }
  1288. int msm_cvp_comm_kill_session(struct msm_cvp_inst *inst)
  1289. {
  1290. int rc = 0;
  1291. unsigned long flags = 0;
  1292. if (!inst || !inst->core || !inst->core->device) {
  1293. dprintk(CVP_ERR, "%s: invalid input parameters\n", __func__);
  1294. return -EINVAL;
  1295. } else if (!inst->session) {
  1296. dprintk(CVP_ERR, "%s: no session to kill for inst %pK\n",
  1297. __func__, inst);
  1298. return 0;
  1299. }
  1300. dprintk(CVP_WARN, "%s: inst %pK, session %x state %d\n", __func__,
  1301. inst, hash32_ptr(inst->session), inst->state);
  1302. /*
  1303. * We're internally forcibly killing the session, if fw is aware of
  1304. * the session send session_abort to firmware to clean up and release
  1305. * the session, else just kill the session inside the driver.
  1306. */
  1307. if (inst->state >= MSM_CVP_OPEN_DONE &&
  1308. inst->state < MSM_CVP_CLOSE_DONE) {
  1309. rc = msm_comm_session_abort(inst);
  1310. if (rc) {
  1311. dprintk(CVP_ERR,
  1312. "%s: inst %pK session %x abort failed\n",
  1313. __func__, inst, hash32_ptr(inst->session));
  1314. change_cvp_inst_state(inst, MSM_CVP_CORE_INVALID);
  1315. } else {
  1316. change_cvp_inst_state(inst, MSM_CVP_CORE_UNINIT);
  1317. }
  1318. }
  1319. if (inst->state >= MSM_CVP_CORE_UNINIT) {
  1320. spin_lock_irqsave(&inst->event_handler.lock, flags);
  1321. inst->event_handler.event = CVP_SSR_EVENT;
  1322. spin_unlock_irqrestore(&inst->event_handler.lock, flags);
  1323. wake_up_all(&inst->event_handler.wq);
  1324. }
  1325. return rc;
  1326. }
  1327. void msm_cvp_fw_unload_handler(struct work_struct *work)
  1328. {
  1329. struct msm_cvp_core *core = NULL;
  1330. struct cvp_hfi_device *hdev = NULL;
  1331. int rc = 0;
  1332. core = container_of(work, struct msm_cvp_core, fw_unload_work.work);
  1333. if (!core || !core->device) {
  1334. dprintk(CVP_ERR, "%s - invalid work or core handle\n",
  1335. __func__);
  1336. return;
  1337. }
  1338. hdev = core->device;
  1339. mutex_lock(&core->lock);
  1340. if (list_empty(&core->instances) &&
  1341. core->state != CVP_CORE_UNINIT) {
  1342. if (core->state > CVP_CORE_INIT) {
  1343. dprintk(CVP_CORE, "Calling cvp_hal_core_release\n");
  1344. rc = call_hfi_op(hdev, core_release,
  1345. hdev->hfi_device_data);
  1346. if (rc) {
  1347. dprintk(CVP_ERR,
  1348. "Failed to release core, id = %d\n",
  1349. core->id);
  1350. mutex_unlock(&core->lock);
  1351. return;
  1352. }
  1353. }
  1354. core->state = CVP_CORE_UNINIT;
  1355. kfree(core->capabilities);
  1356. core->capabilities = NULL;
  1357. }
  1358. mutex_unlock(&core->lock);
  1359. }
  1360. static int set_internal_buf_on_fw(struct msm_cvp_inst *inst,
  1361. struct msm_cvp_smem *handle)
  1362. {
  1363. struct cvp_hfi_device *hdev;
  1364. int rc = 0;
  1365. u32 iova;
  1366. u32 size;
  1367. if (!inst || !inst->core || !inst->core->device || !handle) {
  1368. dprintk(CVP_ERR, "%s - invalid params\n", __func__);
  1369. return -EINVAL;
  1370. }
  1371. hdev = inst->core->device;
  1372. iova = handle->device_addr;
  1373. size = handle->size;
  1374. dprintk(CVP_SESS, "%s: allocated ARP buffer : %x\n", __func__, iova);
  1375. rc = call_hfi_op(hdev, session_set_buffers,
  1376. (void *) inst->session, iova, size);
  1377. if (rc) {
  1378. dprintk(CVP_ERR, "cvp_session_set_buffers failed\n");
  1379. return rc;
  1380. }
  1381. return 0;
  1382. }
  1383. /* Set ARP buffer for CVP firmware to handle concurrency */
  1384. int cvp_comm_set_arp_buffers(struct msm_cvp_inst *inst)
  1385. {
  1386. int rc = 0;
  1387. struct cvp_internal_buf *buf;
  1388. if (!inst || !inst->core || !inst->core->device) {
  1389. dprintk(CVP_ERR, "%s invalid parameters\n", __func__);
  1390. return -EINVAL;
  1391. }
  1392. buf = cvp_allocate_arp_bufs(inst, ARP_BUF_SIZE);
  1393. if (!buf) {
  1394. rc = -ENOMEM;
  1395. goto error;
  1396. }
  1397. rc = set_internal_buf_on_fw(inst, buf->smem);
  1398. if (rc)
  1399. goto error;
  1400. rc = wait_for_sess_signal_receipt(inst, HAL_SESSION_SET_BUFFER_DONE);
  1401. if (rc) {
  1402. dprintk(CVP_WARN, "wait for set_buffer_done timeout %d\n", rc);
  1403. goto error;
  1404. }
  1405. return rc;
  1406. error:
  1407. if (rc != -ENOMEM)
  1408. cvp_release_arp_buffers(inst);
  1409. return rc;
  1410. }