apr.c 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270
  1. /* Copyright (c) 2010-2014, 2016-2018 The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/types.h>
  15. #include <linux/uaccess.h>
  16. #include <linux/spinlock.h>
  17. #include <linux/list.h>
  18. #include <linux/sched.h>
  19. #include <linux/wait.h>
  20. #include <linux/errno.h>
  21. #include <linux/fs.h>
  22. #include <linux/delay.h>
  23. #include <linux/debugfs.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/sysfs.h>
  26. #include <linux/device.h>
  27. #include <linux/of.h>
  28. #include <linux/slab.h>
  29. #include <linux/ipc_logging.h>
  30. #include <soc/qcom/subsystem_restart.h>
  31. #include <soc/qcom/scm.h>
  32. #include <dsp/apr_audio-v2.h>
  33. #include <dsp/audio_notifier.h>
  34. #include <ipc/apr.h>
  35. #include <ipc/apr_tal.h>
  36. #define APR_PKT_IPC_LOG_PAGE_CNT 2
  37. static struct apr_q6 q6;
  38. static struct apr_client client[APR_DEST_MAX][APR_CLIENT_MAX];
  39. static void *apr_pkt_ctx;
  40. static wait_queue_head_t dsp_wait;
  41. static wait_queue_head_t modem_wait;
  42. static bool is_modem_up;
  43. /* Subsystem restart: QDSP6 data, functions */
  44. static struct workqueue_struct *apr_reset_workqueue;
  45. static void apr_reset_deregister(struct work_struct *work);
  46. static void dispatch_event(unsigned long code, uint16_t proc);
  47. struct apr_reset_work {
  48. void *handle;
  49. struct work_struct work;
  50. };
  51. struct apr_chld_device {
  52. struct platform_device *pdev;
  53. struct list_head node;
  54. };
  55. struct apr_private {
  56. struct device *dev;
  57. spinlock_t apr_lock;
  58. bool is_initial_boot;
  59. struct work_struct add_chld_dev_work;
  60. spinlock_t apr_chld_lock;
  61. struct list_head apr_chlds;
  62. };
  63. static struct apr_private *apr_priv;
  64. static bool apr_cf_debug;
  65. #ifdef CONFIG_DEBUG_FS
  66. static struct dentry *debugfs_apr_debug;
  67. static ssize_t apr_debug_write(struct file *filp, const char __user *ubuf,
  68. size_t cnt, loff_t *ppos)
  69. {
  70. char cmd;
  71. if (copy_from_user(&cmd, ubuf, 1))
  72. return -EFAULT;
  73. apr_cf_debug = (cmd == '1') ? true : false;
  74. return cnt;
  75. }
  76. static const struct file_operations apr_debug_ops = {
  77. .write = apr_debug_write,
  78. };
  79. #endif
  80. #define APR_PKT_INFO(x...) \
  81. do { \
  82. if (apr_pkt_ctx) \
  83. ipc_log_string(apr_pkt_ctx, "<APR>: "x); \
  84. } while (0)
  85. struct apr_svc_table {
  86. char name[64];
  87. int idx;
  88. int id;
  89. int client_id;
  90. };
  91. static const struct apr_svc_table svc_tbl_qdsp6[] = {
  92. {
  93. .name = "AFE",
  94. .idx = 0,
  95. .id = APR_SVC_AFE,
  96. .client_id = APR_CLIENT_AUDIO,
  97. },
  98. {
  99. .name = "ASM",
  100. .idx = 1,
  101. .id = APR_SVC_ASM,
  102. .client_id = APR_CLIENT_AUDIO,
  103. },
  104. {
  105. .name = "ADM",
  106. .idx = 2,
  107. .id = APR_SVC_ADM,
  108. .client_id = APR_CLIENT_AUDIO,
  109. },
  110. {
  111. .name = "CORE",
  112. .idx = 3,
  113. .id = APR_SVC_ADSP_CORE,
  114. .client_id = APR_CLIENT_AUDIO,
  115. },
  116. {
  117. .name = "TEST",
  118. .idx = 4,
  119. .id = APR_SVC_TEST_CLIENT,
  120. .client_id = APR_CLIENT_AUDIO,
  121. },
  122. {
  123. .name = "MVM",
  124. .idx = 5,
  125. .id = APR_SVC_ADSP_MVM,
  126. .client_id = APR_CLIENT_AUDIO,
  127. },
  128. {
  129. .name = "CVS",
  130. .idx = 6,
  131. .id = APR_SVC_ADSP_CVS,
  132. .client_id = APR_CLIENT_AUDIO,
  133. },
  134. {
  135. .name = "CVP",
  136. .idx = 7,
  137. .id = APR_SVC_ADSP_CVP,
  138. .client_id = APR_CLIENT_AUDIO,
  139. },
  140. {
  141. .name = "USM",
  142. .idx = 8,
  143. .id = APR_SVC_USM,
  144. .client_id = APR_CLIENT_AUDIO,
  145. },
  146. {
  147. .name = "VIDC",
  148. .idx = 9,
  149. .id = APR_SVC_VIDC,
  150. },
  151. {
  152. .name = "LSM",
  153. .idx = 10,
  154. .id = APR_SVC_LSM,
  155. .client_id = APR_CLIENT_AUDIO,
  156. },
  157. };
  158. static struct apr_svc_table svc_tbl_voice[] = {
  159. {
  160. .name = "VSM",
  161. .idx = 0,
  162. .id = APR_SVC_VSM,
  163. .client_id = APR_CLIENT_VOICE,
  164. },
  165. {
  166. .name = "VPM",
  167. .idx = 1,
  168. .id = APR_SVC_VPM,
  169. .client_id = APR_CLIENT_VOICE,
  170. },
  171. {
  172. .name = "MVS",
  173. .idx = 2,
  174. .id = APR_SVC_MVS,
  175. .client_id = APR_CLIENT_VOICE,
  176. },
  177. {
  178. .name = "MVM",
  179. .idx = 3,
  180. .id = APR_SVC_MVM,
  181. .client_id = APR_CLIENT_VOICE,
  182. },
  183. {
  184. .name = "CVS",
  185. .idx = 4,
  186. .id = APR_SVC_CVS,
  187. .client_id = APR_CLIENT_VOICE,
  188. },
  189. {
  190. .name = "CVP",
  191. .idx = 5,
  192. .id = APR_SVC_CVP,
  193. .client_id = APR_CLIENT_VOICE,
  194. },
  195. {
  196. .name = "SRD",
  197. .idx = 6,
  198. .id = APR_SVC_SRD,
  199. .client_id = APR_CLIENT_VOICE,
  200. },
  201. {
  202. .name = "TEST",
  203. .idx = 7,
  204. .id = APR_SVC_TEST_CLIENT,
  205. .client_id = APR_CLIENT_VOICE,
  206. },
  207. };
  208. /**
  209. * apr_get_modem_state:
  210. *
  211. * Returns current modem load status
  212. *
  213. */
  214. enum apr_subsys_state apr_get_modem_state(void)
  215. {
  216. return atomic_read(&q6.modem_state);
  217. }
  218. EXPORT_SYMBOL(apr_get_modem_state);
  219. /**
  220. * apr_set_modem_state - Update modem load status.
  221. *
  222. * @state: State to update modem load status
  223. *
  224. */
  225. void apr_set_modem_state(enum apr_subsys_state state)
  226. {
  227. atomic_set(&q6.modem_state, state);
  228. }
  229. EXPORT_SYMBOL(apr_set_modem_state);
  230. enum apr_subsys_state apr_cmpxchg_modem_state(enum apr_subsys_state prev,
  231. enum apr_subsys_state new)
  232. {
  233. return atomic_cmpxchg(&q6.modem_state, prev, new);
  234. }
  235. static void apr_modem_down(unsigned long opcode)
  236. {
  237. apr_set_modem_state(APR_SUBSYS_DOWN);
  238. dispatch_event(opcode, APR_DEST_MODEM);
  239. }
  240. static void apr_modem_up(void)
  241. {
  242. if (apr_cmpxchg_modem_state(APR_SUBSYS_DOWN, APR_SUBSYS_UP) ==
  243. APR_SUBSYS_DOWN)
  244. wake_up(&modem_wait);
  245. is_modem_up = 1;
  246. }
  247. enum apr_subsys_state apr_get_q6_state(void)
  248. {
  249. return atomic_read(&q6.q6_state);
  250. }
  251. EXPORT_SYMBOL(apr_get_q6_state);
  252. int apr_set_q6_state(enum apr_subsys_state state)
  253. {
  254. pr_debug("%s: setting adsp state %d\n", __func__, state);
  255. if (state < APR_SUBSYS_DOWN || state > APR_SUBSYS_LOADED)
  256. return -EINVAL;
  257. atomic_set(&q6.q6_state, state);
  258. return 0;
  259. }
  260. EXPORT_SYMBOL(apr_set_q6_state);
  261. enum apr_subsys_state apr_cmpxchg_q6_state(enum apr_subsys_state prev,
  262. enum apr_subsys_state new)
  263. {
  264. return atomic_cmpxchg(&q6.q6_state, prev, new);
  265. }
  266. static void apr_adsp_down(unsigned long opcode)
  267. {
  268. pr_debug("%s: Q6 is Down\n", __func__);
  269. apr_set_q6_state(APR_SUBSYS_DOWN);
  270. dispatch_event(opcode, APR_DEST_QDSP6);
  271. }
  272. static void apr_add_child_devices(struct work_struct *work)
  273. {
  274. int ret;
  275. struct device_node *node;
  276. struct platform_device *pdev;
  277. struct apr_chld_device *apr_chld_dev;
  278. for_each_child_of_node(apr_priv->dev->of_node, node) {
  279. apr_chld_dev = kzalloc(sizeof(*apr_chld_dev), GFP_KERNEL);
  280. if (!apr_chld_dev)
  281. continue;
  282. pdev = platform_device_alloc(node->name, -1);
  283. if (!pdev) {
  284. dev_err(apr_priv->dev,
  285. "%s: pdev memory alloc failed for %s\n",
  286. __func__, node->name);
  287. kfree(apr_chld_dev);
  288. continue;
  289. }
  290. pdev->dev.parent = apr_priv->dev;
  291. pdev->dev.of_node = node;
  292. ret = platform_device_add(pdev);
  293. if (ret) {
  294. dev_err(apr_priv->dev,
  295. "%s: Cannot add platform device %s\n",
  296. __func__, node->name);
  297. platform_device_put(pdev);
  298. kfree(apr_chld_dev);
  299. continue;
  300. }
  301. apr_chld_dev->pdev = pdev;
  302. spin_lock(&apr_priv->apr_chld_lock);
  303. list_add_tail(&apr_chld_dev->node, &apr_priv->apr_chlds);
  304. spin_unlock(&apr_priv->apr_chld_lock);
  305. dev_dbg(apr_priv->dev, "%s: Added APR child dev: %s\n",
  306. __func__, dev_name(&pdev->dev));
  307. }
  308. }
  309. static void apr_adsp_up(void)
  310. {
  311. pr_debug("%s: Q6 is Up\n", __func__);
  312. if (apr_cmpxchg_q6_state(APR_SUBSYS_DOWN, APR_SUBSYS_LOADED) ==
  313. APR_SUBSYS_DOWN)
  314. wake_up(&dsp_wait);
  315. spin_lock(&apr_priv->apr_lock);
  316. if (apr_priv->is_initial_boot)
  317. schedule_work(&apr_priv->add_chld_dev_work);
  318. spin_unlock(&apr_priv->apr_lock);
  319. }
  320. int apr_wait_for_device_up(int dest_id)
  321. {
  322. int rc = -1;
  323. if (dest_id == APR_DEST_MODEM)
  324. rc = wait_event_interruptible_timeout(modem_wait,
  325. (apr_get_modem_state() == APR_SUBSYS_UP),
  326. (1 * HZ));
  327. else if (dest_id == APR_DEST_QDSP6)
  328. rc = wait_event_interruptible_timeout(dsp_wait,
  329. (apr_get_q6_state() == APR_SUBSYS_UP),
  330. (1 * HZ));
  331. else
  332. pr_err("%s: unknown dest_id %d\n", __func__, dest_id);
  333. /* returns left time */
  334. return rc;
  335. }
  336. int apr_load_adsp_image(void)
  337. {
  338. int rc = 0;
  339. mutex_lock(&q6.lock);
  340. if (apr_get_q6_state() == APR_SUBSYS_UP) {
  341. q6.pil = subsystem_get("adsp");
  342. if (IS_ERR(q6.pil)) {
  343. rc = PTR_ERR(q6.pil);
  344. pr_err("APR: Unable to load q6 image, error:%d\n", rc);
  345. } else {
  346. apr_set_q6_state(APR_SUBSYS_LOADED);
  347. pr_debug("APR: Image is loaded, stated\n");
  348. }
  349. } else if (apr_get_q6_state() == APR_SUBSYS_LOADED) {
  350. pr_debug("APR: q6 image already loaded\n");
  351. } else {
  352. pr_debug("APR: cannot load state %d\n", apr_get_q6_state());
  353. }
  354. mutex_unlock(&q6.lock);
  355. return rc;
  356. }
  357. struct apr_client *apr_get_client(int dest_id, int client_id)
  358. {
  359. return &client[dest_id][client_id];
  360. }
  361. /**
  362. * apr_send_pkt - Clients call to send packet
  363. * to destination processor.
  364. *
  365. * @handle: APR service handle
  366. * @buf: payload to send to destination processor.
  367. *
  368. * Returns Bytes(>0)pkt_size on success or error on failure.
  369. */
  370. int apr_send_pkt(void *handle, uint32_t *buf)
  371. {
  372. struct apr_svc *svc = handle;
  373. struct apr_client *clnt;
  374. struct apr_hdr *hdr;
  375. uint16_t dest_id;
  376. uint16_t client_id;
  377. uint16_t w_len;
  378. int rc;
  379. unsigned long flags;
  380. if (!handle || !buf) {
  381. pr_err("APR: Wrong parameters\n");
  382. return -EINVAL;
  383. }
  384. if (svc->need_reset) {
  385. pr_err("apr: send_pkt service need reset\n");
  386. return -ENETRESET;
  387. }
  388. if ((svc->dest_id == APR_DEST_QDSP6) &&
  389. (apr_get_q6_state() != APR_SUBSYS_LOADED)) {
  390. pr_err("%s: Still dsp is not Up\n", __func__);
  391. return -ENETRESET;
  392. } else if ((svc->dest_id == APR_DEST_MODEM) &&
  393. (apr_get_modem_state() == APR_SUBSYS_DOWN)) {
  394. pr_err("apr: Still Modem is not Up\n");
  395. return -ENETRESET;
  396. }
  397. spin_lock_irqsave(&svc->w_lock, flags);
  398. dest_id = svc->dest_id;
  399. client_id = svc->client_id;
  400. clnt = &client[dest_id][client_id];
  401. if (!client[dest_id][client_id].handle) {
  402. pr_err("APR: Still service is not yet opened\n");
  403. spin_unlock_irqrestore(&svc->w_lock, flags);
  404. return -EINVAL;
  405. }
  406. hdr = (struct apr_hdr *)buf;
  407. hdr->src_domain = APR_DOMAIN_APPS;
  408. hdr->src_svc = svc->id;
  409. hdr->dest_domain = svc->dest_domain;
  410. hdr->dest_svc = svc->id;
  411. if (unlikely(apr_cf_debug)) {
  412. APR_PKT_INFO(
  413. "Tx: src_addr[0x%X] dest_addr[0x%X] opcode[0x%X] token[0x%X]",
  414. (hdr->src_domain << 8) | hdr->src_svc,
  415. (hdr->dest_domain << 8) | hdr->dest_svc, hdr->opcode,
  416. hdr->token);
  417. }
  418. rc = apr_tal_write(clnt->handle, buf,
  419. (struct apr_pkt_priv *)&svc->pkt_owner,
  420. hdr->pkt_size);
  421. if (rc >= 0) {
  422. w_len = rc;
  423. if (w_len != hdr->pkt_size) {
  424. pr_err("%s: Unable to write whole APR pkt successfully: %d\n",
  425. __func__, rc);
  426. rc = -EINVAL;
  427. }
  428. } else {
  429. pr_err("%s: Write APR pkt failed with error %d\n",
  430. __func__, rc);
  431. }
  432. spin_unlock_irqrestore(&svc->w_lock, flags);
  433. return rc;
  434. }
  435. EXPORT_SYMBOL(apr_send_pkt);
  436. int apr_pkt_config(void *handle, struct apr_pkt_cfg *cfg)
  437. {
  438. struct apr_svc *svc = (struct apr_svc *)handle;
  439. uint16_t dest_id;
  440. uint16_t client_id;
  441. struct apr_client *clnt;
  442. if (!handle) {
  443. pr_err("%s: Invalid handle\n", __func__);
  444. return -EINVAL;
  445. }
  446. if (svc->need_reset) {
  447. pr_err("%s: service need reset\n", __func__);
  448. return -ENETRESET;
  449. }
  450. svc->pkt_owner = cfg->pkt_owner;
  451. dest_id = svc->dest_id;
  452. client_id = svc->client_id;
  453. clnt = &client[dest_id][client_id];
  454. return apr_tal_rx_intents_config(clnt->handle,
  455. cfg->intents.num_of_intents, cfg->intents.size);
  456. }
  457. /**
  458. * apr_register - Clients call to register
  459. * to APR.
  460. *
  461. * @dest: destination processor
  462. * @svc_name: name of service to register as
  463. * @svc_fn: callback function to trigger when response
  464. * ack or packets received from destination processor.
  465. * @src_port: Port number within a service
  466. * @priv: private data of client, passed back in cb fn.
  467. *
  468. * Returns apr_svc handle on success or NULL on failure.
  469. */
  470. struct apr_svc *apr_register(char *dest, char *svc_name, apr_fn svc_fn,
  471. uint32_t src_port, void *priv)
  472. {
  473. struct apr_client *clnt;
  474. int client_id = 0;
  475. int svc_idx = 0;
  476. int svc_id = 0;
  477. int dest_id = 0;
  478. int domain_id = 0;
  479. int temp_port = 0;
  480. struct apr_svc *svc = NULL;
  481. int rc = 0;
  482. bool can_open_channel = true;
  483. if (!dest || !svc_name || !svc_fn)
  484. return NULL;
  485. if (!strcmp(dest, "ADSP"))
  486. domain_id = APR_DOMAIN_ADSP;
  487. else if (!strcmp(dest, "MODEM")) {
  488. /* Don't request for SMD channels if destination is MODEM,
  489. * as these channels are no longer used and these clients
  490. * are to listen only for MODEM SSR events
  491. */
  492. can_open_channel = false;
  493. domain_id = APR_DOMAIN_MODEM;
  494. } else {
  495. pr_err("APR: wrong destination\n");
  496. goto done;
  497. }
  498. dest_id = apr_get_dest_id(dest);
  499. if (dest_id == APR_DEST_QDSP6) {
  500. if (apr_get_q6_state() != APR_SUBSYS_LOADED) {
  501. pr_err("%s: adsp not up\n", __func__);
  502. return NULL;
  503. }
  504. pr_debug("%s: adsp Up\n", __func__);
  505. } else if (dest_id == APR_DEST_MODEM) {
  506. if (apr_get_modem_state() == APR_SUBSYS_DOWN) {
  507. if (is_modem_up) {
  508. pr_err("%s: modem shutdown due to SSR, ret",
  509. __func__);
  510. return NULL;
  511. }
  512. pr_debug("%s: Wait for modem to bootup\n", __func__);
  513. rc = apr_wait_for_device_up(APR_DEST_MODEM);
  514. if (rc == 0) {
  515. pr_err("%s: Modem is not Up\n", __func__);
  516. return NULL;
  517. }
  518. }
  519. pr_debug("%s: modem Up\n", __func__);
  520. }
  521. if (apr_get_svc(svc_name, domain_id, &client_id, &svc_idx, &svc_id)) {
  522. pr_err("%s: apr_get_svc failed\n", __func__);
  523. goto done;
  524. }
  525. clnt = &client[dest_id][client_id];
  526. mutex_lock(&clnt->m_lock);
  527. if (!clnt->handle && can_open_channel) {
  528. clnt->handle = apr_tal_open(client_id, dest_id,
  529. APR_DL_SMD, apr_cb_func, NULL);
  530. if (!clnt->handle) {
  531. svc = NULL;
  532. pr_err("APR: Unable to open handle\n");
  533. mutex_unlock(&clnt->m_lock);
  534. goto done;
  535. }
  536. }
  537. mutex_unlock(&clnt->m_lock);
  538. svc = &clnt->svc[svc_idx];
  539. mutex_lock(&svc->m_lock);
  540. clnt->id = client_id;
  541. if (svc->need_reset) {
  542. mutex_unlock(&svc->m_lock);
  543. pr_err("APR: Service needs reset\n");
  544. goto done;
  545. }
  546. svc->id = svc_id;
  547. svc->dest_id = dest_id;
  548. svc->client_id = client_id;
  549. svc->dest_domain = domain_id;
  550. svc->pkt_owner = APR_PKT_OWNER_DRIVER;
  551. if (src_port != 0xFFFFFFFF) {
  552. temp_port = ((src_port >> 8) * 8) + (src_port & 0xFF);
  553. pr_debug("port = %d t_port = %d\n", src_port, temp_port);
  554. if (temp_port >= APR_MAX_PORTS || temp_port < 0) {
  555. pr_err("APR: temp_port out of bounds\n");
  556. mutex_unlock(&svc->m_lock);
  557. return NULL;
  558. }
  559. if (!svc->svc_cnt)
  560. clnt->svc_cnt++;
  561. svc->port_cnt++;
  562. svc->port_fn[temp_port] = svc_fn;
  563. svc->port_priv[temp_port] = priv;
  564. svc->svc_cnt++;
  565. } else {
  566. if (!svc->fn) {
  567. if (!svc->svc_cnt)
  568. clnt->svc_cnt++;
  569. svc->fn = svc_fn;
  570. svc->priv = priv;
  571. svc->svc_cnt++;
  572. }
  573. }
  574. mutex_unlock(&svc->m_lock);
  575. done:
  576. return svc;
  577. }
  578. EXPORT_SYMBOL(apr_register);
  579. void apr_cb_func(void *buf, int len, void *priv)
  580. {
  581. struct apr_client_data data;
  582. struct apr_client *apr_client;
  583. struct apr_svc *c_svc;
  584. struct apr_hdr *hdr;
  585. uint16_t hdr_size;
  586. uint16_t msg_type;
  587. uint16_t ver;
  588. uint16_t src;
  589. uint16_t svc;
  590. uint16_t clnt;
  591. int i;
  592. int temp_port = 0;
  593. uint32_t *ptr;
  594. pr_debug("APR2: len = %d\n", len);
  595. ptr = buf;
  596. pr_debug("\n*****************\n");
  597. for (i = 0; i < len/4; i++)
  598. pr_debug("%x ", ptr[i]);
  599. pr_debug("\n");
  600. pr_debug("\n*****************\n");
  601. if (!buf || len <= APR_HDR_SIZE) {
  602. pr_err("APR: Improper apr pkt received:%pK %d\n", buf, len);
  603. return;
  604. }
  605. hdr = buf;
  606. ver = hdr->hdr_field;
  607. ver = (ver & 0x000F);
  608. if (ver > APR_PKT_VER + 1) {
  609. pr_err("APR: Wrong version: %d\n", ver);
  610. return;
  611. }
  612. hdr_size = hdr->hdr_field;
  613. hdr_size = ((hdr_size & 0x00F0) >> 0x4) * 4;
  614. if (hdr_size < APR_HDR_SIZE) {
  615. pr_err("APR: Wrong hdr size:%d\n", hdr_size);
  616. return;
  617. }
  618. if (hdr->pkt_size < APR_HDR_SIZE) {
  619. pr_err("APR: Wrong paket size\n");
  620. return;
  621. }
  622. msg_type = hdr->hdr_field;
  623. msg_type = (msg_type >> 0x08) & 0x0003;
  624. if (msg_type >= APR_MSG_TYPE_MAX && msg_type != APR_BASIC_RSP_RESULT) {
  625. pr_err("APR: Wrong message type: %d\n", msg_type);
  626. return;
  627. }
  628. if (hdr->src_domain >= APR_DOMAIN_MAX ||
  629. hdr->dest_domain >= APR_DOMAIN_MAX ||
  630. hdr->src_svc >= APR_SVC_MAX ||
  631. hdr->dest_svc >= APR_SVC_MAX) {
  632. pr_err("APR: Wrong APR header\n");
  633. return;
  634. }
  635. svc = hdr->dest_svc;
  636. if (hdr->src_domain == APR_DOMAIN_MODEM) {
  637. if (svc == APR_SVC_MVS || svc == APR_SVC_MVM ||
  638. svc == APR_SVC_CVS || svc == APR_SVC_CVP ||
  639. svc == APR_SVC_TEST_CLIENT)
  640. clnt = APR_CLIENT_VOICE;
  641. else {
  642. pr_err("APR: Wrong svc :%d\n", svc);
  643. return;
  644. }
  645. } else if (hdr->src_domain == APR_DOMAIN_ADSP) {
  646. if (svc == APR_SVC_AFE || svc == APR_SVC_ASM ||
  647. svc == APR_SVC_VSM || svc == APR_SVC_VPM ||
  648. svc == APR_SVC_ADM || svc == APR_SVC_ADSP_CORE ||
  649. svc == APR_SVC_USM ||
  650. svc == APR_SVC_TEST_CLIENT || svc == APR_SVC_ADSP_MVM ||
  651. svc == APR_SVC_ADSP_CVS || svc == APR_SVC_ADSP_CVP ||
  652. svc == APR_SVC_LSM)
  653. clnt = APR_CLIENT_AUDIO;
  654. else if (svc == APR_SVC_VIDC)
  655. clnt = APR_CLIENT_AUDIO;
  656. else {
  657. pr_err("APR: Wrong svc :%d\n", svc);
  658. return;
  659. }
  660. } else {
  661. pr_err("APR: Pkt from wrong source: %d\n", hdr->src_domain);
  662. return;
  663. }
  664. src = apr_get_data_src(hdr);
  665. if (src == APR_DEST_MAX)
  666. return;
  667. pr_debug("src =%d clnt = %d\n", src, clnt);
  668. apr_client = &client[src][clnt];
  669. for (i = 0; i < APR_SVC_MAX; i++)
  670. if (apr_client->svc[i].id == svc) {
  671. pr_debug("%d\n", apr_client->svc[i].id);
  672. c_svc = &apr_client->svc[i];
  673. break;
  674. }
  675. if (i == APR_SVC_MAX) {
  676. pr_err("APR: service is not registered\n");
  677. return;
  678. }
  679. pr_debug("svc_idx = %d\n", i);
  680. pr_debug("%x %x %x %pK %pK\n", c_svc->id, c_svc->dest_id,
  681. c_svc->client_id, c_svc->fn, c_svc->priv);
  682. data.payload_size = hdr->pkt_size - hdr_size;
  683. data.opcode = hdr->opcode;
  684. data.src = src;
  685. data.src_port = hdr->src_port;
  686. data.dest_port = hdr->dest_port;
  687. data.token = hdr->token;
  688. data.msg_type = msg_type;
  689. data.payload = NULL;
  690. if (data.payload_size > 0)
  691. data.payload = (char *)hdr + hdr_size;
  692. if (unlikely(apr_cf_debug)) {
  693. if (hdr->opcode == APR_BASIC_RSP_RESULT && data.payload) {
  694. uint32_t *ptr = data.payload;
  695. APR_PKT_INFO(
  696. "Rx: src_addr[0x%X] dest_addr[0x%X] opcode[0x%X] token[0x%X] rc[0x%X]",
  697. (hdr->src_domain << 8) | hdr->src_svc,
  698. (hdr->dest_domain << 8) | hdr->dest_svc,
  699. hdr->opcode, hdr->token, ptr[1]);
  700. } else {
  701. APR_PKT_INFO(
  702. "Rx: src_addr[0x%X] dest_addr[0x%X] opcode[0x%X] token[0x%X]",
  703. (hdr->src_domain << 8) | hdr->src_svc,
  704. (hdr->dest_domain << 8) | hdr->dest_svc, hdr->opcode,
  705. hdr->token);
  706. }
  707. }
  708. temp_port = ((data.dest_port >> 8) * 8) + (data.dest_port & 0xFF);
  709. if (((temp_port >= 0) && (temp_port < APR_MAX_PORTS))
  710. && (c_svc->port_cnt && c_svc->port_fn[temp_port]))
  711. c_svc->port_fn[temp_port](&data,
  712. c_svc->port_priv[temp_port]);
  713. else if (c_svc->fn)
  714. c_svc->fn(&data, c_svc->priv);
  715. else
  716. pr_err("APR: Rxed a packet for NULL callback\n");
  717. }
  718. int apr_get_svc(const char *svc_name, int domain_id, int *client_id,
  719. int *svc_idx, int *svc_id)
  720. {
  721. int i;
  722. int size;
  723. struct apr_svc_table *tbl;
  724. int ret = 0;
  725. if (domain_id == APR_DOMAIN_ADSP) {
  726. tbl = (struct apr_svc_table *)&svc_tbl_qdsp6;
  727. size = ARRAY_SIZE(svc_tbl_qdsp6);
  728. } else {
  729. tbl = (struct apr_svc_table *)&svc_tbl_voice;
  730. size = ARRAY_SIZE(svc_tbl_voice);
  731. }
  732. for (i = 0; i < size; i++) {
  733. if (!strcmp(svc_name, tbl[i].name)) {
  734. *client_id = tbl[i].client_id;
  735. *svc_idx = tbl[i].idx;
  736. *svc_id = tbl[i].id;
  737. break;
  738. }
  739. }
  740. pr_debug("%s: svc_name = %s c_id = %d domain_id = %d\n",
  741. __func__, svc_name, *client_id, domain_id);
  742. if (i == size) {
  743. pr_err("%s: APR: Wrong svc name %s\n", __func__, svc_name);
  744. ret = -EINVAL;
  745. }
  746. return ret;
  747. }
  748. static void apr_reset_deregister(struct work_struct *work)
  749. {
  750. struct apr_svc *handle = NULL;
  751. struct apr_reset_work *apr_reset =
  752. container_of(work, struct apr_reset_work, work);
  753. handle = apr_reset->handle;
  754. pr_debug("%s:handle[%pK]\n", __func__, handle);
  755. apr_deregister(handle);
  756. kfree(apr_reset);
  757. }
  758. /**
  759. * apr_start_rx_rt - Clients call to vote for thread
  760. * priority upgrade whenever needed.
  761. *
  762. * @handle: APR service handle
  763. *
  764. * Returns 0 on success or error otherwise.
  765. */
  766. int apr_start_rx_rt(void *handle)
  767. {
  768. int rc = 0;
  769. struct apr_svc *svc = handle;
  770. uint16_t dest_id = 0;
  771. uint16_t client_id = 0;
  772. if (!svc) {
  773. pr_err("%s: Invalid APR handle\n", __func__);
  774. return -EINVAL;
  775. }
  776. mutex_lock(&svc->m_lock);
  777. dest_id = svc->dest_id;
  778. client_id = svc->client_id;
  779. if ((client_id >= APR_CLIENT_MAX) || (dest_id >= APR_DEST_MAX)) {
  780. pr_err("%s: %s invalid. client_id = %u, dest_id = %u\n",
  781. __func__,
  782. client_id >= APR_CLIENT_MAX ? "Client ID" : "Dest ID",
  783. client_id, dest_id);
  784. rc = -EINVAL;
  785. goto exit;
  786. }
  787. if (!client[dest_id][client_id].handle) {
  788. pr_err("%s: Client handle is NULL\n", __func__);
  789. rc = -EINVAL;
  790. goto exit;
  791. }
  792. rc = apr_tal_start_rx_rt(client[dest_id][client_id].handle);
  793. if (rc)
  794. pr_err("%s: failed to set RT thread priority for APR RX. rc = %d\n",
  795. __func__, rc);
  796. exit:
  797. mutex_unlock(&svc->m_lock);
  798. return rc;
  799. }
  800. EXPORT_SYMBOL(apr_start_rx_rt);
  801. /**
  802. * apr_end_rx_rt - Clients call to unvote for thread
  803. * priority upgrade (perviously voted with
  804. * apr_start_rx_rt()).
  805. *
  806. * @handle: APR service handle
  807. *
  808. * Returns 0 on success or error otherwise.
  809. */
  810. int apr_end_rx_rt(void *handle)
  811. {
  812. int rc = 0;
  813. struct apr_svc *svc = handle;
  814. uint16_t dest_id = 0;
  815. uint16_t client_id = 0;
  816. if (!svc) {
  817. pr_err("%s: Invalid APR handle\n", __func__);
  818. return -EINVAL;
  819. }
  820. mutex_lock(&svc->m_lock);
  821. dest_id = svc->dest_id;
  822. client_id = svc->client_id;
  823. if ((client_id >= APR_CLIENT_MAX) || (dest_id >= APR_DEST_MAX)) {
  824. pr_err("%s: %s invalid. client_id = %u, dest_id = %u\n",
  825. __func__,
  826. client_id >= APR_CLIENT_MAX ? "Client ID" : "Dest ID",
  827. client_id, dest_id);
  828. rc = -EINVAL;
  829. goto exit;
  830. }
  831. if (!client[dest_id][client_id].handle) {
  832. pr_err("%s: Client handle is NULL\n", __func__);
  833. rc = -EINVAL;
  834. goto exit;
  835. }
  836. rc = apr_tal_end_rx_rt(client[dest_id][client_id].handle);
  837. if (rc)
  838. pr_err("%s: failed to reset RT thread priority for APR RX. rc = %d\n",
  839. __func__, rc);
  840. exit:
  841. mutex_unlock(&svc->m_lock);
  842. return rc;
  843. }
  844. EXPORT_SYMBOL(apr_end_rx_rt);
  845. /**
  846. * apr_deregister - Clients call to de-register
  847. * from APR.
  848. *
  849. * @handle: APR service handle to de-register
  850. *
  851. * Returns 0 on success or -EINVAL on error.
  852. */
  853. int apr_deregister(void *handle)
  854. {
  855. struct apr_svc *svc = handle;
  856. struct apr_client *clnt;
  857. uint16_t dest_id;
  858. uint16_t client_id;
  859. if (!handle)
  860. return -EINVAL;
  861. mutex_lock(&svc->m_lock);
  862. if (!svc->svc_cnt) {
  863. pr_err("%s: svc already deregistered. svc = %pK\n",
  864. __func__, svc);
  865. mutex_unlock(&svc->m_lock);
  866. return -EINVAL;
  867. }
  868. dest_id = svc->dest_id;
  869. client_id = svc->client_id;
  870. clnt = &client[dest_id][client_id];
  871. if (svc->svc_cnt > 0) {
  872. if (svc->port_cnt)
  873. svc->port_cnt--;
  874. svc->svc_cnt--;
  875. if (!svc->svc_cnt) {
  876. client[dest_id][client_id].svc_cnt--;
  877. pr_debug("%s: service is reset %pK\n", __func__, svc);
  878. }
  879. }
  880. if (!svc->svc_cnt) {
  881. svc->priv = NULL;
  882. svc->id = 0;
  883. svc->fn = NULL;
  884. svc->dest_id = 0;
  885. svc->client_id = 0;
  886. svc->need_reset = 0x0;
  887. }
  888. if (client[dest_id][client_id].handle &&
  889. !client[dest_id][client_id].svc_cnt) {
  890. apr_tal_close(client[dest_id][client_id].handle);
  891. client[dest_id][client_id].handle = NULL;
  892. }
  893. mutex_unlock(&svc->m_lock);
  894. return 0;
  895. }
  896. EXPORT_SYMBOL(apr_deregister);
  897. /**
  898. * apr_reset - sets up workqueue to de-register
  899. * the given APR service handle.
  900. *
  901. * @handle: APR service handle
  902. *
  903. */
  904. void apr_reset(void *handle)
  905. {
  906. struct apr_reset_work *apr_reset_worker = NULL;
  907. if (!handle)
  908. return;
  909. pr_debug("%s: handle[%pK]\n", __func__, handle);
  910. if (apr_reset_workqueue == NULL) {
  911. pr_err("%s: apr_reset_workqueue is NULL\n", __func__);
  912. return;
  913. }
  914. apr_reset_worker = kzalloc(sizeof(struct apr_reset_work),
  915. GFP_ATOMIC);
  916. if (apr_reset_worker == NULL) {
  917. pr_err("%s: mem failure\n", __func__);
  918. return;
  919. }
  920. apr_reset_worker->handle = handle;
  921. INIT_WORK(&apr_reset_worker->work, apr_reset_deregister);
  922. queue_work(apr_reset_workqueue, &apr_reset_worker->work);
  923. }
  924. EXPORT_SYMBOL(apr_reset);
  925. /* Dispatch the Reset events to Modem and audio clients */
  926. static void dispatch_event(unsigned long code, uint16_t proc)
  927. {
  928. struct apr_client *apr_client;
  929. struct apr_client_data data;
  930. struct apr_svc *svc;
  931. uint16_t clnt;
  932. int i, j;
  933. memset(&data, 0, sizeof(data));
  934. data.opcode = RESET_EVENTS;
  935. data.reset_event = code;
  936. /* Service domain can be different from the processor */
  937. data.reset_proc = apr_get_reset_domain(proc);
  938. clnt = APR_CLIENT_AUDIO;
  939. apr_client = &client[proc][clnt];
  940. for (i = 0; i < APR_SVC_MAX; i++) {
  941. mutex_lock(&apr_client->svc[i].m_lock);
  942. if (apr_client->svc[i].fn) {
  943. apr_client->svc[i].need_reset = 0x1;
  944. apr_client->svc[i].fn(&data, apr_client->svc[i].priv);
  945. }
  946. if (apr_client->svc[i].port_cnt) {
  947. svc = &(apr_client->svc[i]);
  948. svc->need_reset = 0x1;
  949. for (j = 0; j < APR_MAX_PORTS; j++)
  950. if (svc->port_fn[j])
  951. svc->port_fn[j](&data,
  952. svc->port_priv[j]);
  953. }
  954. mutex_unlock(&apr_client->svc[i].m_lock);
  955. }
  956. clnt = APR_CLIENT_VOICE;
  957. apr_client = &client[proc][clnt];
  958. for (i = 0; i < APR_SVC_MAX; i++) {
  959. mutex_lock(&apr_client->svc[i].m_lock);
  960. if (apr_client->svc[i].fn) {
  961. apr_client->svc[i].need_reset = 0x1;
  962. apr_client->svc[i].fn(&data, apr_client->svc[i].priv);
  963. }
  964. if (apr_client->svc[i].port_cnt) {
  965. svc = &(apr_client->svc[i]);
  966. svc->need_reset = 0x1;
  967. for (j = 0; j < APR_MAX_PORTS; j++)
  968. if (svc->port_fn[j])
  969. svc->port_fn[j](&data,
  970. svc->port_priv[j]);
  971. }
  972. mutex_unlock(&apr_client->svc[i].m_lock);
  973. }
  974. }
  975. static int apr_notifier_service_cb(struct notifier_block *this,
  976. unsigned long opcode, void *data)
  977. {
  978. struct audio_notifier_cb_data *cb_data = data;
  979. if (cb_data == NULL) {
  980. pr_err("%s: Callback data is NULL!\n", __func__);
  981. goto done;
  982. }
  983. pr_debug("%s: Service opcode 0x%lx, domain %d\n",
  984. __func__, opcode, cb_data->domain);
  985. switch (opcode) {
  986. case AUDIO_NOTIFIER_SERVICE_DOWN:
  987. /*
  988. * Use flag to ignore down notifications during
  989. * initial boot. There is no benefit from error
  990. * recovery notifications during initial boot
  991. * up since everything is expected to be down.
  992. */
  993. spin_lock(&apr_priv->apr_lock);
  994. if (apr_priv->is_initial_boot) {
  995. spin_unlock(&apr_priv->apr_lock);
  996. break;
  997. }
  998. spin_unlock(&apr_priv->apr_lock);
  999. if (cb_data->domain == AUDIO_NOTIFIER_MODEM_DOMAIN)
  1000. apr_modem_down(opcode);
  1001. else
  1002. apr_adsp_down(opcode);
  1003. break;
  1004. case AUDIO_NOTIFIER_SERVICE_UP:
  1005. if (cb_data->domain == AUDIO_NOTIFIER_MODEM_DOMAIN)
  1006. apr_modem_up();
  1007. else
  1008. apr_adsp_up();
  1009. spin_lock(&apr_priv->apr_lock);
  1010. apr_priv->is_initial_boot = false;
  1011. spin_unlock(&apr_priv->apr_lock);
  1012. break;
  1013. default:
  1014. break;
  1015. }
  1016. done:
  1017. return NOTIFY_OK;
  1018. }
  1019. static struct notifier_block adsp_service_nb = {
  1020. .notifier_call = apr_notifier_service_cb,
  1021. .priority = 0,
  1022. };
  1023. static struct notifier_block modem_service_nb = {
  1024. .notifier_call = apr_notifier_service_cb,
  1025. .priority = 0,
  1026. };
  1027. #ifdef CONFIG_DEBUG_FS
  1028. static int __init apr_debug_init(void)
  1029. {
  1030. debugfs_apr_debug = debugfs_create_file("msm_apr_debug",
  1031. S_IFREG | 0444, NULL, NULL,
  1032. &apr_debug_ops);
  1033. return 0;
  1034. }
  1035. #else
  1036. static int __init apr_debug_init(void)
  1037. (
  1038. return 0;
  1039. )
  1040. #endif
  1041. static void apr_cleanup(void)
  1042. {
  1043. int i, j, k;
  1044. subsys_notif_deregister("apr_modem");
  1045. subsys_notif_deregister("apr_adsp");
  1046. if (apr_reset_workqueue) {
  1047. flush_workqueue(apr_reset_workqueue);
  1048. destroy_workqueue(apr_reset_workqueue);
  1049. }
  1050. mutex_destroy(&q6.lock);
  1051. for (i = 0; i < APR_DEST_MAX; i++) {
  1052. for (j = 0; j < APR_CLIENT_MAX; j++) {
  1053. mutex_destroy(&client[i][j].m_lock);
  1054. for (k = 0; k < APR_SVC_MAX; k++)
  1055. mutex_destroy(&client[i][j].svc[k].m_lock);
  1056. }
  1057. }
  1058. }
  1059. static int apr_probe(struct platform_device *pdev)
  1060. {
  1061. int i, j, k;
  1062. init_waitqueue_head(&dsp_wait);
  1063. init_waitqueue_head(&modem_wait);
  1064. apr_priv = devm_kzalloc(&pdev->dev, sizeof(*apr_priv), GFP_KERNEL);
  1065. if (!apr_priv)
  1066. return -ENOMEM;
  1067. apr_priv->dev = &pdev->dev;
  1068. spin_lock_init(&apr_priv->apr_lock);
  1069. spin_lock_init(&apr_priv->apr_chld_lock);
  1070. INIT_LIST_HEAD(&apr_priv->apr_chlds);
  1071. INIT_WORK(&apr_priv->add_chld_dev_work, apr_add_child_devices);
  1072. for (i = 0; i < APR_DEST_MAX; i++)
  1073. for (j = 0; j < APR_CLIENT_MAX; j++) {
  1074. mutex_init(&client[i][j].m_lock);
  1075. for (k = 0; k < APR_SVC_MAX; k++) {
  1076. mutex_init(&client[i][j].svc[k].m_lock);
  1077. spin_lock_init(&client[i][j].svc[k].w_lock);
  1078. }
  1079. }
  1080. apr_set_subsys_state();
  1081. mutex_init(&q6.lock);
  1082. apr_reset_workqueue = create_singlethread_workqueue("apr_driver");
  1083. if (!apr_reset_workqueue) {
  1084. apr_priv = NULL;
  1085. return -ENOMEM;
  1086. }
  1087. apr_pkt_ctx = ipc_log_context_create(APR_PKT_IPC_LOG_PAGE_CNT,
  1088. "apr", 0);
  1089. if (!apr_pkt_ctx)
  1090. pr_err("%s: Unable to create ipc log context\n", __func__);
  1091. spin_lock(&apr_priv->apr_lock);
  1092. apr_priv->is_initial_boot = true;
  1093. spin_unlock(&apr_priv->apr_lock);
  1094. subsys_notif_register("apr_adsp", AUDIO_NOTIFIER_ADSP_DOMAIN,
  1095. &adsp_service_nb);
  1096. subsys_notif_register("apr_modem", AUDIO_NOTIFIER_MODEM_DOMAIN,
  1097. &modem_service_nb);
  1098. apr_tal_init();
  1099. return apr_debug_init();
  1100. }
  1101. static int apr_remove(struct platform_device *pdev)
  1102. {
  1103. struct apr_chld_device *chld, *tmp;
  1104. apr_cleanup();
  1105. apr_tal_exit();
  1106. spin_lock(&apr_priv->apr_chld_lock);
  1107. list_for_each_entry_safe(chld, tmp, &apr_priv->apr_chlds, node) {
  1108. platform_device_unregister(chld->pdev);
  1109. list_del(&chld->node);
  1110. kfree(chld);
  1111. }
  1112. spin_unlock(&apr_priv->apr_chld_lock);
  1113. apr_priv = NULL;
  1114. return 0;
  1115. }
  1116. static const struct of_device_id apr_machine_of_match[] = {
  1117. { .compatible = "qcom,msm-audio-apr", },
  1118. {},
  1119. };
  1120. static struct platform_driver apr_driver = {
  1121. .probe = apr_probe,
  1122. .remove = apr_remove,
  1123. .driver = {
  1124. .name = "audio_apr",
  1125. .owner = THIS_MODULE,
  1126. .of_match_table = apr_machine_of_match,
  1127. }
  1128. };
  1129. module_platform_driver(apr_driver);
  1130. MODULE_DESCRIPTION("APR DRIVER");
  1131. MODULE_LICENSE("GPL v2");
  1132. MODULE_DEVICE_TABLE(of, apr_machine_of_match);