hdcp_smcinvoke.c 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  4. */
  5. #include <include/linux/smcinvoke.h>
  6. #include <include/linux/IClientEnv.h>
  7. #include <include/linux/smcinvoke_object.h>
  8. #include <include/smci/uid/CAppClient.h>
  9. #include <include/smci/uid/CAppLoader.h>
  10. #include <include/smci/interface/IAppClient.h>
  11. #include <include/smci/interface/IAppController.h>
  12. #include <include/smci/interface/IAppLoader.h>
  13. #include <include/smci/interface/IOpener.h>
  14. #include "hdcp_main.h"
  15. #include "hdcp_smcinvoke.h"
  16. #include "hdcp1.h"
  17. #include "hdcp1_ops.h"
  18. #include "hdcp2p2.h"
  19. static int hdcp1_verify_key(struct hdcp1_smcinvoke_handle *handle)
  20. {
  21. int ret = 0;
  22. if (!handle) {
  23. pr_err("invalid HDCP 1.x handle\n");
  24. return -EINVAL;
  25. }
  26. if (!(handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  27. pr_err("%s app not loaded\n", HDCP1_APP_NAME);
  28. return -EINVAL;
  29. }
  30. ret = hdcp1_verify(handle->hdcp1_app_obj, 1);
  31. if (ret)
  32. pr_err("hdcp1_verify failed error:%d\n", ret);
  33. return ret;
  34. }
  35. static int hdcp1_key_set(struct hdcp1_smcinvoke_handle *handle,
  36. uint32_t *aksv_msb, uint32_t *aksv_lsb)
  37. {
  38. int ret = 0;
  39. uint8_t *ksvRes = NULL;
  40. size_t ksvResLen = 0;
  41. ksvRes = kmalloc(HDCP1_AKSV_SIZE, GFP_KERNEL);
  42. if (!ksvRes)
  43. return -EINVAL;
  44. if (aksv_msb == NULL || aksv_lsb == NULL) {
  45. pr_err("invalid aksv\n");
  46. return -EINVAL;
  47. }
  48. if (!handle) {
  49. pr_err("invalid HDCP 1.x handle\n");
  50. return -EINVAL;
  51. }
  52. if (!(handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  53. pr_err("hdcp1 app not loaded\n");
  54. return -EINVAL;
  55. }
  56. ret = hdcp1_set_key(handle->hdcp1_app_obj, ksvRes, HDCP1_AKSV_SIZE,
  57. &ksvResLen);
  58. if (ret) {
  59. pr_err("hdcp1_set_key failed ret=%d\n", ret);
  60. return -ENOKEY;
  61. }
  62. /* copy bytes into msb and lsb */
  63. *aksv_msb = ksvRes[0] << 24 | ksvRes[1] << 16 | ksvRes[2] << 8 | ksvRes[3];
  64. *aksv_lsb = ksvRes[4] << 24 | ksvRes[5] << 16 | ksvRes[6] << 8 | ksvRes[7];
  65. ret = hdcp1_validate_aksv(*aksv_msb, *aksv_lsb);
  66. if (ret)
  67. pr_err("aksv validation failed (%d)\n", ret);
  68. return ret;
  69. }
  70. int load_app(char *app_name, struct Object *app_obj,
  71. struct Object *app_controller_obj)
  72. {
  73. int ret = 0;
  74. uint8_t *buffer = NULL;
  75. struct qtee_shm shm = {0};
  76. size_t size = 0;
  77. struct Object client_env = {NULL, NULL};
  78. struct Object app_loader = {NULL, NULL};
  79. ret = get_client_env_object(&client_env);
  80. if (ret) {
  81. pr_err("get_client_env_object failed :%d\n", ret);
  82. client_env.invoke = NULL;
  83. client_env.context = NULL;
  84. goto error;
  85. }
  86. ret = IClientEnv_open(client_env, CAppLoader_UID, &app_loader);
  87. if (ret) {
  88. pr_err("IClientEnv_open failed :%d\n", ret);
  89. app_loader.invoke = NULL;
  90. app_loader.context = NULL;
  91. goto error;
  92. }
  93. buffer = firmware_request_from_smcinvoke(app_name, &size, &shm);
  94. if (buffer == NULL) {
  95. pr_err("firmware_request_from_smcinvoke failed\n");
  96. ret = -EINVAL;
  97. goto error;
  98. }
  99. ret = IAppLoader_loadFromBuffer(app_loader, (const void *)buffer, size,
  100. app_controller_obj);
  101. if (ret) {
  102. pr_err("IAppLoader_loadFromBuffer failed :%d\n", ret);
  103. app_controller_obj->invoke = NULL;
  104. app_controller_obj->context = NULL;
  105. goto error;
  106. }
  107. ret = IAppController_getAppObject(*app_controller_obj, app_obj);
  108. if (ret) {
  109. pr_err("IAppController_getAppObject failed :%d\n", ret);
  110. goto error;
  111. }
  112. error:
  113. qtee_shmbridge_free_shm(&shm);
  114. Object_ASSIGN_NULL(app_loader);
  115. Object_ASSIGN_NULL(client_env);
  116. return ret;
  117. }
  118. static int hdcp1_app_load(struct hdcp1_smcinvoke_handle *handle)
  119. {
  120. int ret = 0;
  121. if (!handle) {
  122. pr_err("invalid input\n");
  123. ret = -EINVAL;
  124. goto error;
  125. }
  126. if (handle->hdcp_state & HDCP_STATE_APP_LOADED)
  127. goto error;
  128. ret = load_app(HDCP1_APP_NAME, &(handle->hdcp1_app_obj),
  129. &(handle->hdcp1_appcontroller_obj));
  130. if (ret) {
  131. pr_err("hdcp1 TA load failed :%d\n", ret);
  132. goto error;
  133. }
  134. if (Object_isNull(handle->hdcp1_app_obj)) {
  135. pr_err("hdcp1_app_obj is NULL\n");
  136. ret = -EINVAL;
  137. goto error;
  138. }
  139. ret = load_app(HDCP1OPS_APP_NAME, &(handle->hdcp1ops_app_obj),
  140. &(handle->hdcp1ops_appcontroller_obj));
  141. if (ret) {
  142. pr_err("hdcp1ops TA load failed :%d\n", ret);
  143. goto error;
  144. }
  145. if (Object_isNull(handle->hdcp1ops_app_obj)) {
  146. pr_err("hdcp1ops_app_obj is NULL\n");
  147. ret = -EINVAL;
  148. goto error;
  149. }
  150. handle->hdcp_state |= HDCP_STATE_APP_LOADED;
  151. error:
  152. return ret;
  153. }
  154. static void hdcp1_app_unload(struct hdcp1_smcinvoke_handle *handle)
  155. {
  156. if (!handle || !handle->hdcp1_app_obj.context) {
  157. pr_err("invalid handle\n");
  158. return;
  159. }
  160. if (!(handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  161. pr_warn("hdcp1 app not loaded\n");
  162. return;
  163. }
  164. Object_ASSIGN_NULL(handle->hdcp1_app_obj);
  165. Object_ASSIGN_NULL(handle->hdcp1_appcontroller_obj);
  166. Object_ASSIGN_NULL(handle->hdcp1ops_app_obj);
  167. Object_ASSIGN_NULL(handle->hdcp1ops_appcontroller_obj);
  168. handle->hdcp_state &= ~HDCP_STATE_APP_LOADED;
  169. pr_debug("%s app unloaded\n", HDCP1_APP_NAME);
  170. }
  171. void *hdcp1_init_smcinvoke(void)
  172. {
  173. struct hdcp1_smcinvoke_handle *handle =
  174. kzalloc(sizeof(struct hdcp1_smcinvoke_handle), GFP_KERNEL);
  175. if (!handle)
  176. goto error;
  177. error:
  178. return handle;
  179. }
  180. bool hdcp1_feature_supported_smcinvoke(void *data)
  181. {
  182. int ret = 0;
  183. bool supported = false;
  184. struct hdcp1_smcinvoke_handle *handle = data;
  185. if (!handle) {
  186. pr_err("invalid handle\n");
  187. goto error;
  188. }
  189. if (handle->feature_supported) {
  190. supported = true;
  191. goto error;
  192. }
  193. ret = hdcp1_app_load(handle);
  194. if (!ret && (handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  195. if (!hdcp1_verify_key(handle)) {
  196. pr_debug("HDCP 1.x supported\n");
  197. handle->feature_supported = true;
  198. supported = true;
  199. }
  200. hdcp1_app_unload(handle);
  201. }
  202. error:
  203. return supported;
  204. }
  205. int hdcp1_set_enc_smcinvoke(void *data, bool enable)
  206. {
  207. int ret = 0;
  208. struct hdcp1_smcinvoke_handle *handle = data;
  209. if (!handle || !handle->hdcp1_app_obj.context) {
  210. pr_err("invalid HDCP 1.x handle\n");
  211. return -EINVAL;
  212. }
  213. if (!handle->feature_supported) {
  214. pr_err("HDCP 1.x not supported\n");
  215. return -EINVAL;
  216. }
  217. if (!(handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  218. pr_err("%s app not loaded\n", HDCP1_APP_NAME);
  219. return -EINVAL;
  220. }
  221. ret = hdcp1_set_encryption(handle->hdcp1_app_obj, enable);
  222. if (ret)
  223. pr_err("hdcp1_set_encryption failed :%d\n", ret);
  224. return ret;
  225. }
  226. int hdcp1_ops_notify_smcinvoke(void *data, void *topo, bool is_authenticated)
  227. {
  228. int ret = 0;
  229. struct hdcp1_smcinvoke_handle *handle = data;
  230. if (!handle || !handle->hdcp1ops_app_obj.context) {
  231. pr_err("invalid HDCP 1.x ops handle\n");
  232. return -EINVAL;
  233. }
  234. if (!handle->feature_supported) {
  235. pr_err("HDCP 1.x not supported\n");
  236. return -EINVAL;
  237. }
  238. if (!(handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  239. pr_err("%s app not loaded\n", HDCP1OPS_APP_NAME);
  240. return -EINVAL;
  241. }
  242. ret = hdcp1_ops_notify_topology_change(handle->hdcp1ops_app_obj);
  243. if (ret)
  244. pr_err("hdcp1_ops_notify_topology_change failed, ret=%d\n", ret);
  245. return ret;
  246. }
  247. int hdcp1_start_smcinvoke(void *data, u32 *aksv_msb, u32 *aksv_lsb)
  248. {
  249. int ret = 0;
  250. struct hdcp1_smcinvoke_handle *handle = data;
  251. if (!aksv_msb || !aksv_lsb) {
  252. pr_err("invalid aksv output buffer\n");
  253. ret = -EINVAL;
  254. goto error;
  255. }
  256. if (!handle) {
  257. pr_err("invalid handle\n");
  258. ret = -EINVAL;
  259. goto error;
  260. }
  261. if (!handle->feature_supported) {
  262. pr_err("feature not supported\n");
  263. ret = -EINVAL;
  264. goto error;
  265. }
  266. if (handle->hdcp_state & HDCP_STATE_APP_LOADED) {
  267. pr_debug("%s app already loaded\n", HDCP1_APP_NAME);
  268. goto error;
  269. }
  270. ret = hdcp1_app_load(handle);
  271. if (ret)
  272. goto error;
  273. ret = hdcp1_key_set(handle, aksv_msb, aksv_lsb);
  274. if (ret)
  275. goto key_error;
  276. pr_debug("success\n");
  277. return ret;
  278. key_error:
  279. hdcp1_app_unload(handle);
  280. error:
  281. return ret;
  282. }
  283. void hdcp1_stop_smcinvoke(void *data)
  284. {
  285. struct hdcp1_smcinvoke_handle *hdcp1_handle = data;
  286. if (!hdcp1_handle) {
  287. pr_err("invalid HDCP 1.x handle\n");
  288. return;
  289. }
  290. if (!(hdcp1_handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  291. pr_err("hdcp1 app not loaded\n");
  292. return;
  293. }
  294. Object_ASSIGN_NULL(hdcp1_handle->hdcp1_app_obj);
  295. Object_ASSIGN_NULL(hdcp1_handle->hdcp1_appcontroller_obj);
  296. Object_ASSIGN_NULL(hdcp1_handle->hdcp1ops_app_obj);
  297. Object_ASSIGN_NULL(hdcp1_handle->hdcp1ops_appcontroller_obj);
  298. hdcp1_handle->hdcp_state &= ~HDCP_STATE_APP_LOADED;
  299. }
  300. void *hdcp2_init_smcinvoke(u32 device_type)
  301. {
  302. struct hdcp2_smcinvoke_handle *handle =
  303. kzalloc(sizeof(struct hdcp2_smcinvoke_handle), GFP_KERNEL);
  304. if (!handle)
  305. goto error;
  306. handle->device_type = device_type;
  307. error:
  308. return handle;
  309. }
  310. void hdcp2_deinit_smcinvoke(void *ctx)
  311. {
  312. kfree_sensitive(ctx);
  313. }
  314. int hdcp_get_version(struct hdcp2_smcinvoke_handle *handle)
  315. {
  316. int ret = 0;
  317. uint32_t app_major_version = 0;
  318. uint32_t appversion = 0;
  319. if (handle->hdcp_state & HDCP_STATE_APP_LOADED) {
  320. pr_err("hdcp2p2 TA already loaded\n");
  321. goto error;
  322. }
  323. ret = hdcp2p2_version(handle->hdcp2_app_obj, &appversion);
  324. if (ret) {
  325. pr_err("hdcp2p2_version failed :%d\n", ret);
  326. goto error;
  327. }
  328. app_major_version = HCDP_TXMTR_GET_MAJOR_VERSION(appversion);
  329. pr_debug("hdp2p2 app major version %d, app version %d\n", app_major_version,
  330. appversion);
  331. error:
  332. return ret;
  333. }
  334. int hdcp2_app_init(struct hdcp2_smcinvoke_handle *handle)
  335. {
  336. int ret = 0;
  337. uint32_t app_minor_version = 0;
  338. uint32_t clientversion = 0;
  339. uint32_t appversion = 0;
  340. if (handle->hdcp_state & HDCP_STATE_APP_LOADED) {
  341. pr_err("hdcp2p2 TA already loaded\n");
  342. goto error;
  343. }
  344. clientversion = HDCP_CLIENT_MAKE_VERSION(HDCP_CLIENT_MAJOR_VERSION,
  345. HDCP_CLIENT_MINOR_VERSION,
  346. HDCP_CLIENT_PATCH_VERSION);
  347. ret = hdcp2p2_init(handle->hdcp2_app_obj, clientversion, &appversion);
  348. if (ret) {
  349. pr_err("hdcp2p2_init failed:%d\n", ret);
  350. goto error;
  351. }
  352. app_minor_version = HCDP_TXMTR_GET_MINOR_VERSION(appversion);
  353. if (app_minor_version != HDCP_CLIENT_MINOR_VERSION) {
  354. pr_err("client-app minor version mismatch app(%d), client(%d)\n",
  355. app_minor_version, HDCP_CLIENT_MINOR_VERSION);
  356. ret = -1;
  357. goto error;
  358. }
  359. pr_err("client version major(%d), minor(%d), patch(%d)\n",
  360. HDCP_CLIENT_MAJOR_VERSION, HDCP_CLIENT_MINOR_VERSION,
  361. HDCP_CLIENT_PATCH_VERSION);
  362. pr_err("app version major(%d), minor(%d), patch(%d)\n",
  363. HCDP_TXMTR_GET_MAJOR_VERSION(appversion),
  364. HCDP_TXMTR_GET_MINOR_VERSION(appversion),
  365. HCDP_TXMTR_GET_PATCH_VERSION(appversion));
  366. error:
  367. return ret;
  368. }
  369. int hdcp2_app_tx_init(struct hdcp2_smcinvoke_handle *handle)
  370. {
  371. int ret = 0;
  372. uint32_t ctxhandle = 0;
  373. if (!(handle->hdcp_state & HDCP_STATE_SESSION_INIT)) {
  374. pr_err("session not initialized\n");
  375. ret = -EINVAL;
  376. goto error;
  377. }
  378. if (handle->hdcp_state & HDCP_STATE_TXMTR_INIT) {
  379. pr_err("txmtr already initialized\n");
  380. goto error;
  381. }
  382. ret = hdcp2p2_tx_init(handle->hdcp2_app_obj, handle->session_id, &ctxhandle);
  383. if (ret) {
  384. pr_err("hdcp2p2_tx_init failed :%d\n", ret);
  385. goto error;
  386. }
  387. handle->tz_ctxhandle = ctxhandle;
  388. handle->hdcp_state |= HDCP_STATE_TXMTR_INIT;
  389. error:
  390. return ret;
  391. }
  392. int hdcp2_app_tx_deinit(struct hdcp2_smcinvoke_handle *handle)
  393. {
  394. int ret = 0;
  395. if (!(handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  396. pr_err("hdcp2p2 TA not loaded\n");
  397. ret = -EINVAL;
  398. goto error;
  399. }
  400. if (!(handle->hdcp_state & HDCP_STATE_TXMTR_INIT)) {
  401. pr_err("txmtr not initialized\n");
  402. ret = -EINVAL;
  403. goto error;
  404. }
  405. ret = hdcp2p2_tx_deinit(handle->hdcp2_app_obj, handle->tz_ctxhandle);
  406. if (ret) {
  407. pr_err("hdcp2p2_tx_deinit failed :%d\n", ret);
  408. goto error;
  409. }
  410. handle->hdcp_state &= ~HDCP_STATE_TXMTR_INIT;
  411. error:
  412. return ret;
  413. }
  414. static int hdcp2_app_load(struct hdcp2_smcinvoke_handle *handle)
  415. {
  416. int ret = 0;
  417. if (!handle) {
  418. pr_err("invalid input\n");
  419. ret = -EINVAL;
  420. goto error;
  421. }
  422. if (handle->hdcp_state & HDCP_STATE_APP_LOADED) {
  423. pr_err("hdcp2p2 TA already loaded\n");
  424. goto error;
  425. }
  426. ret = load_app(HDCP2P2_APP_NAME, &(handle->hdcp2_app_obj),
  427. &(handle->hdcp2_appcontroller_obj));
  428. if (ret) {
  429. pr_err("hdcp2p2 TA load_app failed :%d\n", ret);
  430. goto error;
  431. }
  432. if (Object_isNull(handle->hdcp2_app_obj)) {
  433. pr_err("hdcp2p2 app object is NULL\n");
  434. ret = -EINVAL;
  435. goto error;
  436. }
  437. ret = load_app(HDCPSRM_APP_NAME, &(handle->hdcpsrm_app_obj),
  438. &(handle->hdcpsrm_appcontroller_obj));
  439. if (ret) {
  440. pr_err("hdcpsrm TA load failed :%d\n", ret);
  441. goto error;
  442. }
  443. if (Object_isNull(handle->hdcpsrm_app_obj)) {
  444. pr_err("hdcpsrm app object is NULL\n");
  445. ret = -EINVAL;
  446. goto error;
  447. }
  448. ret = hdcp_get_version(handle);
  449. if (ret) {
  450. pr_err("library get version failed\n");
  451. goto error;
  452. }
  453. ret = hdcp2_app_init(handle);
  454. if (ret) {
  455. pr_err("app init failed\n");
  456. goto error;
  457. }
  458. handle->hdcp_state |= HDCP_STATE_APP_LOADED;
  459. error:
  460. return ret;
  461. }
  462. static int hdcp2_app_unload(struct hdcp2_smcinvoke_handle *handle)
  463. {
  464. int ret = 0;
  465. ret = hdcp2p2_deinit(handle->hdcp2_app_obj);
  466. if (ret) {
  467. pr_err("hdcp2p2_deinit failed:%d\n", ret);
  468. goto error;
  469. }
  470. Object_ASSIGN_NULL(handle->hdcp2_app_obj);
  471. Object_ASSIGN_NULL(handle->hdcp2_appcontroller_obj);
  472. Object_ASSIGN_NULL(handle->hdcpsrm_app_obj);
  473. Object_ASSIGN_NULL(handle->hdcpsrm_appcontroller_obj);
  474. handle->hdcp_state &= ~HDCP_STATE_APP_LOADED;
  475. error:
  476. return ret;
  477. }
  478. static int hdcp2_verify_key(struct hdcp2_smcinvoke_handle *handle)
  479. {
  480. int ret = 0;
  481. if (!(handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  482. pr_err("%s app not loaded\n", HDCP2P2_APP_NAME);
  483. ret = -EINVAL;
  484. goto error;
  485. }
  486. ret = hdcp2p2_verify_key(handle->hdcp2_app_obj);
  487. if (ret) {
  488. pr_err("hdcp2p2_verify_key failed:%d\n", ret);
  489. goto error;
  490. }
  491. error:
  492. return ret;
  493. }
  494. static int hdcp2_app_session_init(struct hdcp2_smcinvoke_handle *handle)
  495. {
  496. int ret = 0;
  497. uint32_t sessionId = 0;
  498. if (!(handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  499. pr_err("hdcp2p2 app not loaded\n");
  500. ret = -EINVAL;
  501. goto error;
  502. }
  503. if (handle->hdcp_state & HDCP_STATE_SESSION_INIT) {
  504. pr_err("session already initialized\n");
  505. goto error;
  506. }
  507. if (Object_isNull(handle->hdcp2_app_obj)) {
  508. pr_err("hdcp2_app_obj is NULL\n");
  509. goto error;
  510. }
  511. ret = hdcp2p2_session_init(handle->hdcp2_app_obj, handle->device_type,
  512. &sessionId);
  513. if (ret) {
  514. pr_err("hdcp2p2_session_init failed ret:%d\n", ret);
  515. goto error;
  516. }
  517. handle->session_id = sessionId;
  518. handle->hdcp_state |= HDCP_STATE_SESSION_INIT;
  519. error:
  520. return ret;
  521. }
  522. static int hdcp2_app_session_deinit(struct hdcp2_smcinvoke_handle *handle)
  523. {
  524. int ret = 0;
  525. if (!(handle->hdcp_state & HDCP_STATE_APP_LOADED)) {
  526. pr_err("hdcp2p2 app not loaded\n");
  527. ret = -EINVAL;
  528. goto error;
  529. }
  530. if (!(handle->hdcp_state & HDCP_STATE_SESSION_INIT)) {
  531. pr_err("session not initialized\n");
  532. ret = -EINVAL;
  533. goto error;
  534. }
  535. ret = hdcp2p2_session_deinit(handle->hdcp2_app_obj, handle->session_id);
  536. if (ret) {
  537. pr_err("hdcp2p2_session_deinit failed:%d\n", ret);
  538. goto error;
  539. }
  540. handle->hdcp_state &= ~HDCP_STATE_SESSION_INIT;
  541. error:
  542. return ret;
  543. }
  544. int hdcp2_app_start_smcinvoke(void *ctx, uint32_t req_len)
  545. {
  546. struct hdcp2_smcinvoke_handle *handle = NULL;
  547. int ret = 0;
  548. handle = (struct hdcp2_smcinvoke_handle *)ctx;
  549. if (!handle) {
  550. pr_err("Invalid handle\n");
  551. ret = -EINVAL;
  552. goto error;
  553. }
  554. handle->app_data.request.data = kmalloc(MAX_RX_MESSAGE_SIZE, GFP_KERNEL);
  555. if (!handle->app_data.request.data) {
  556. ret = -EINVAL;
  557. goto error;
  558. }
  559. handle->app_data.response.data = kmalloc(MAX_TX_MESSAGE_SIZE, GFP_KERNEL);
  560. if (!handle->app_data.response.data) {
  561. ret = -EINVAL;
  562. goto error;
  563. }
  564. ret = hdcp2_app_load(handle);
  565. if (ret)
  566. goto error;
  567. ret = hdcp2_app_session_init(handle);
  568. if (ret)
  569. goto error;
  570. ret = hdcp2_app_tx_init(handle);
  571. if (ret)
  572. goto error;
  573. error:
  574. return ret;
  575. }
  576. int hdcp2_app_start_auth_smcinvoke(void *ctx, uint32_t req_len)
  577. {
  578. struct hdcp2_smcinvoke_handle *handle = NULL;
  579. int ret = 0;
  580. size_t resMsgOut = 0;
  581. uint32_t timeout = 0;
  582. uint32_t flag = 0;
  583. uint32_t ctxhandle = 0;
  584. uint8_t resMsg[MAX_TX_MESSAGE_SIZE] = {0};
  585. handle = ctx;
  586. if (!handle) {
  587. pr_err("Invalid handle\n");
  588. ret = -EINVAL;
  589. goto error;
  590. }
  591. handle->app_data.request.length = req_len;
  592. if (!(handle->hdcp_state & HDCP_STATE_SESSION_INIT)) {
  593. pr_err("session not initialized\n");
  594. ret = -EINVAL;
  595. goto error;
  596. }
  597. if (!(handle->hdcp_state & HDCP_STATE_TXMTR_INIT)) {
  598. pr_err("txmtr not initialized\n");
  599. ret = -EINVAL;
  600. goto error;
  601. }
  602. ret = hdcp2p2_start_auth(handle->hdcp2_app_obj, handle->tz_ctxhandle,
  603. resMsg, MAX_TX_MESSAGE_SIZE, &resMsgOut, &timeout,
  604. &flag, &ctxhandle);
  605. if (ret) {
  606. pr_err("hdcp2p2_start_auth failed :%d\n", ret);
  607. goto error;
  608. }
  609. memcpy(handle->app_data.response.data, resMsg, resMsgOut);
  610. handle->app_data.response.length = resMsgOut;
  611. handle->app_data.timeout = timeout;
  612. handle->app_data.repeater_flag = false;
  613. handle->tz_ctxhandle = ctxhandle;
  614. error:
  615. return ret;
  616. }
  617. int hdcp2_app_process_msg_smcinvoke(void *ctx, uint32_t req_len)
  618. {
  619. struct hdcp2_smcinvoke_handle *handle = NULL;
  620. int ret = 0;
  621. size_t resMsgLen = 0;
  622. uint32_t timeout = 0;
  623. uint32_t flag = 0;
  624. uint32_t state = 0;
  625. uint8_t resMsg[MAX_TX_MESSAGE_SIZE] = {0};
  626. handle = ctx;
  627. if (!handle) {
  628. pr_err("Invalid handle\n");
  629. ret = -EINVAL;
  630. goto error;
  631. }
  632. handle->app_data.request.length = req_len;
  633. if (!handle->app_data.request.data) {
  634. pr_err("invalid request buffer\n");
  635. ret = -EINVAL;
  636. goto error;
  637. }
  638. ret = hdcp2p2_rcvd_msg(
  639. handle->hdcp2_app_obj, handle->app_data.request.data,
  640. handle->app_data.request.length, handle->tz_ctxhandle, resMsg,
  641. MAX_TX_MESSAGE_SIZE, &resMsgLen, &timeout, &flag, &state);
  642. if (ret) {
  643. pr_err("hdcp2p2_rcvd_msg failed :%d\n", ret);
  644. goto error;
  645. }
  646. memcpy(handle->app_data.response.data, resMsg, resMsgLen);
  647. /* check if it's a repeater */
  648. if (flag == HDCP_TXMTR_SUBSTATE_WAITING_FOR_RECIEVERID_LIST)
  649. handle->app_data.repeater_flag = true;
  650. handle->app_data.response.length = resMsgLen;
  651. handle->app_data.timeout = timeout;
  652. error:
  653. return ret;
  654. }
  655. int hdcp2_app_timeout_smcinvoke(void *ctx, uint32_t req_len)
  656. {
  657. struct hdcp2_smcinvoke_handle *handle = NULL;
  658. int ret = 0;
  659. uint32_t timeout = 0;
  660. size_t resMsgLenOut = 0;
  661. uint8_t resMsg[MAX_TX_MESSAGE_SIZE] = {0};
  662. handle = ctx;
  663. if (!handle) {
  664. pr_err("Invalid handle\n");
  665. ret = -EINVAL;
  666. goto error;
  667. }
  668. handle->app_data.request.length = req_len;
  669. ret = hdcp2p2_send_timeout(handle->hdcp2_app_obj, handle->tz_ctxhandle,
  670. resMsg, MAX_TX_MESSAGE_SIZE, &resMsgLenOut,
  671. &timeout);
  672. if (ret) {
  673. pr_err("hdcp2p2_send_timeout failed :%d\n", ret);
  674. goto error;
  675. }
  676. memcpy(handle->app_data.response.data, resMsg, resMsgLenOut);
  677. handle->app_data.response.length = resMsgLenOut;
  678. handle->app_data.timeout = timeout;
  679. error:
  680. return ret;
  681. }
  682. int hdcp2_app_enable_encryption_smcinvoke(void *ctx, uint32_t req_len)
  683. {
  684. struct hdcp2_smcinvoke_handle *handle = NULL;
  685. int ret = 0;
  686. handle = ctx;
  687. if (!handle) {
  688. pr_err("Invalid handle\n");
  689. ret = -EINVAL;
  690. goto error;
  691. }
  692. handle->app_data.request.length = req_len;
  693. /*
  694. * wait at least 200ms before enabling encryption
  695. * as per hdcp2p2 specifications.
  696. */
  697. msleep(SLEEP_SET_HW_KEY_MS);
  698. ret = hdcp2p2_set_hw_key(handle->hdcp2_app_obj, handle->tz_ctxhandle);
  699. if (ret) {
  700. pr_err("hdcp2p2_set_hw_key failed:%d\n", ret);
  701. goto error;
  702. }
  703. handle->hdcp_state |= HDCP_STATE_AUTHENTICATED;
  704. error:
  705. return ret;
  706. }
  707. int hdcp2_app_query_stream_smcinvoke(void *ctx, uint32_t req_len)
  708. {
  709. struct hdcp2_smcinvoke_handle *handle = NULL;
  710. int ret = 0;
  711. uint32_t timeout = 0;
  712. size_t resMsgLenOut = 0;
  713. uint8_t resMsg[MAX_TX_MESSAGE_SIZE] = {0};
  714. handle = ctx;
  715. if (!handle) {
  716. pr_err("Invalid handle\n");
  717. ret = -EINVAL;
  718. goto error;
  719. }
  720. handle->app_data.request.length = req_len;
  721. ret = hdcp2p2_query_stream_type(
  722. handle->hdcp2_app_obj, handle->tz_ctxhandle, resMsg,
  723. MAX_TX_MESSAGE_SIZE, &resMsgLenOut, &timeout);
  724. if (ret) {
  725. pr_err("hdcp2p2_query_stream_type failed :%d\n", ret);
  726. goto error;
  727. }
  728. memcpy(handle->app_data.response.data, resMsg, resMsgLenOut);
  729. handle->app_data.response.length = resMsgLenOut;
  730. handle->app_data.timeout = timeout;
  731. error:
  732. return ret;
  733. }
  734. int hdcp2_app_stop_smcinvoke(void *ctx)
  735. {
  736. struct hdcp2_smcinvoke_handle *handle = NULL;
  737. int ret = 0;
  738. handle = ctx;
  739. if (!handle) {
  740. pr_err("Invalid handle\n");
  741. ret = -EINVAL;
  742. goto end;
  743. }
  744. ret = hdcp2_app_tx_deinit(handle);
  745. if (ret)
  746. goto end;
  747. ret = hdcp2_app_session_deinit(handle);
  748. if (ret)
  749. goto end;
  750. ret = hdcp2_app_unload(handle);
  751. kfree(handle->app_data.request.data);
  752. kfree(handle->app_data.response.data);
  753. end:
  754. return ret;
  755. }
  756. bool hdcp2_feature_supported_smcinvoke(void *ctx)
  757. {
  758. struct hdcp2_smcinvoke_handle *handle = NULL;
  759. int ret = 0;
  760. bool supported = false;
  761. handle = ctx;
  762. if (!handle) {
  763. pr_err("invalid input\n");
  764. ret = -EINVAL;
  765. goto error;
  766. }
  767. if (handle->feature_supported) {
  768. supported = true;
  769. goto error;
  770. }
  771. ret = hdcp2_app_load(handle);
  772. if (!ret) {
  773. if (!hdcp2_verify_key(handle)) {
  774. pr_debug("HDCP 2.2 supported\n");
  775. handle->feature_supported = true;
  776. supported = true;
  777. }
  778. hdcp2_app_unload(handle);
  779. }
  780. error:
  781. return supported;
  782. }
  783. int hdcp2_force_encryption_smcinvoke(void *ctx, uint32_t enable)
  784. {
  785. struct hdcp2_smcinvoke_handle *handle = NULL;
  786. int ret = 0;
  787. handle = ctx;
  788. if (!handle) {
  789. pr_err("Invalid handle\n");
  790. ret = -EINVAL;
  791. goto error;
  792. }
  793. if (handle->hdcp_state == HDCP_STATE_AUTHENTICATED)
  794. msleep(SLEEP_FORCE_ENCRYPTION_MS);
  795. ret = hdcp2p2_force_encryption(handle->hdcp2_app_obj, handle->tz_ctxhandle,
  796. enable);
  797. if (ret) {
  798. pr_err("hdcp2p2_force_encryption failed :%d\n", ret);
  799. goto error;
  800. }
  801. error:
  802. return ret;
  803. }
  804. int hdcp2_open_stream_smcinvoke(void *ctx, uint8_t vc_payload_id,
  805. uint8_t stream_number, uint32_t *stream_id)
  806. {
  807. struct hdcp2_smcinvoke_handle *handle = NULL;
  808. int ret = 0;
  809. uint32_t streamid = 0;
  810. handle = ctx;
  811. if (!handle) {
  812. pr_err("Invalid handle\n");
  813. ret = -EINVAL;
  814. goto error;
  815. }
  816. if (!(handle->hdcp_state & HDCP_STATE_SESSION_INIT)) {
  817. pr_err("session not initialized\n");
  818. ret = -EINVAL;
  819. goto error;
  820. }
  821. if (!(handle->hdcp_state & HDCP_STATE_TXMTR_INIT)) {
  822. pr_err("txmtr not initialized\n");
  823. ret = -EINVAL;
  824. goto error;
  825. }
  826. ret = hdcp2p2_session_open_stream(handle->hdcp2_app_obj,
  827. handle->session_id, vc_payload_id,
  828. stream_number, 0, &streamid);
  829. if (ret) {
  830. pr_err("hdcp2p2_session_open_stream failed :%d\n", ret);
  831. goto error;
  832. }
  833. *stream_id = streamid;
  834. error:
  835. return ret;
  836. }
  837. int hdcp2_close_stream_smcinvoke(void *ctx, uint32_t stream_id)
  838. {
  839. struct hdcp2_smcinvoke_handle *handle = NULL;
  840. int ret = 0;
  841. handle = ctx;
  842. if (!handle) {
  843. pr_err("Invalid handle\n");
  844. ret = -EINVAL;
  845. goto error;
  846. }
  847. if (!(handle->hdcp_state & HDCP_STATE_SESSION_INIT)) {
  848. pr_err("session not initialized\n");
  849. ret = -EINVAL;
  850. goto error;
  851. }
  852. if (!(handle->hdcp_state & HDCP_STATE_TXMTR_INIT)) {
  853. pr_err("txmtr not initialized\n");
  854. ret = -EINVAL;
  855. goto error;
  856. }
  857. ret = hdcp2p2_session_close_stream(handle->hdcp2_app_obj,
  858. handle->session_id, stream_id);
  859. if (ret) {
  860. pr_err("hdcp2p2_session_close_stream failed :%d\n", ret);
  861. goto error;
  862. }
  863. error:
  864. return ret;
  865. }
  866. int hdcp2_update_app_data_smcinvoke(void *ctx, struct hdcp2_app_data *app_data)
  867. {
  868. struct hdcp2_smcinvoke_handle *handle = NULL;
  869. int ret = 0;
  870. handle = ctx;
  871. if (!handle || !app_data) {
  872. pr_err("Invalid handle\n");
  873. return -EINVAL;
  874. }
  875. app_data->request.data = handle->app_data.request.data;
  876. app_data->request.length = handle->app_data.request.length;
  877. app_data->response.data = handle->app_data.response.data;
  878. app_data->response.length = handle->app_data.response.length;
  879. app_data->timeout = handle->app_data.timeout;
  880. app_data->repeater_flag = handle->app_data.repeater_flag;
  881. return ret;
  882. }