client.c 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. /*
  2. *
  3. * Intel Management Engine Interface (Intel MEI) Linux driver
  4. * Copyright (c) 2003-2012, Intel Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. */
  16. #include <linux/sched/signal.h>
  17. #include <linux/wait.h>
  18. #include <linux/delay.h>
  19. #include <linux/slab.h>
  20. #include <linux/pm_runtime.h>
  21. #include <linux/mei.h>
  22. #include "mei_dev.h"
  23. #include "hbm.h"
  24. #include "client.h"
  25. /**
  26. * mei_me_cl_init - initialize me client
  27. *
  28. * @me_cl: me client
  29. */
  30. void mei_me_cl_init(struct mei_me_client *me_cl)
  31. {
  32. INIT_LIST_HEAD(&me_cl->list);
  33. kref_init(&me_cl->refcnt);
  34. }
  35. /**
  36. * mei_me_cl_get - increases me client refcount
  37. *
  38. * @me_cl: me client
  39. *
  40. * Locking: called under "dev->device_lock" lock
  41. *
  42. * Return: me client or NULL
  43. */
  44. struct mei_me_client *mei_me_cl_get(struct mei_me_client *me_cl)
  45. {
  46. if (me_cl && kref_get_unless_zero(&me_cl->refcnt))
  47. return me_cl;
  48. return NULL;
  49. }
  50. /**
  51. * mei_me_cl_release - free me client
  52. *
  53. * Locking: called under "dev->device_lock" lock
  54. *
  55. * @ref: me_client refcount
  56. */
  57. static void mei_me_cl_release(struct kref *ref)
  58. {
  59. struct mei_me_client *me_cl =
  60. container_of(ref, struct mei_me_client, refcnt);
  61. kfree(me_cl);
  62. }
  63. /**
  64. * mei_me_cl_put - decrease me client refcount and free client if necessary
  65. *
  66. * Locking: called under "dev->device_lock" lock
  67. *
  68. * @me_cl: me client
  69. */
  70. void mei_me_cl_put(struct mei_me_client *me_cl)
  71. {
  72. if (me_cl)
  73. kref_put(&me_cl->refcnt, mei_me_cl_release);
  74. }
  75. /**
  76. * __mei_me_cl_del - delete me client from the list and decrease
  77. * reference counter
  78. *
  79. * @dev: mei device
  80. * @me_cl: me client
  81. *
  82. * Locking: dev->me_clients_rwsem
  83. */
  84. static void __mei_me_cl_del(struct mei_device *dev, struct mei_me_client *me_cl)
  85. {
  86. if (!me_cl)
  87. return;
  88. list_del_init(&me_cl->list);
  89. mei_me_cl_put(me_cl);
  90. }
  91. /**
  92. * mei_me_cl_del - delete me client from the list and decrease
  93. * reference counter
  94. *
  95. * @dev: mei device
  96. * @me_cl: me client
  97. */
  98. void mei_me_cl_del(struct mei_device *dev, struct mei_me_client *me_cl)
  99. {
  100. down_write(&dev->me_clients_rwsem);
  101. __mei_me_cl_del(dev, me_cl);
  102. up_write(&dev->me_clients_rwsem);
  103. }
  104. /**
  105. * mei_me_cl_add - add me client to the list
  106. *
  107. * @dev: mei device
  108. * @me_cl: me client
  109. */
  110. void mei_me_cl_add(struct mei_device *dev, struct mei_me_client *me_cl)
  111. {
  112. down_write(&dev->me_clients_rwsem);
  113. list_add(&me_cl->list, &dev->me_clients);
  114. up_write(&dev->me_clients_rwsem);
  115. }
  116. /**
  117. * __mei_me_cl_by_uuid - locate me client by uuid
  118. * increases ref count
  119. *
  120. * @dev: mei device
  121. * @uuid: me client uuid
  122. *
  123. * Return: me client or NULL if not found
  124. *
  125. * Locking: dev->me_clients_rwsem
  126. */
  127. static struct mei_me_client *__mei_me_cl_by_uuid(struct mei_device *dev,
  128. const uuid_le *uuid)
  129. {
  130. struct mei_me_client *me_cl;
  131. const uuid_le *pn;
  132. WARN_ON(!rwsem_is_locked(&dev->me_clients_rwsem));
  133. list_for_each_entry(me_cl, &dev->me_clients, list) {
  134. pn = &me_cl->props.protocol_name;
  135. if (uuid_le_cmp(*uuid, *pn) == 0)
  136. return mei_me_cl_get(me_cl);
  137. }
  138. return NULL;
  139. }
  140. /**
  141. * mei_me_cl_by_uuid - locate me client by uuid
  142. * increases ref count
  143. *
  144. * @dev: mei device
  145. * @uuid: me client uuid
  146. *
  147. * Return: me client or NULL if not found
  148. *
  149. * Locking: dev->me_clients_rwsem
  150. */
  151. struct mei_me_client *mei_me_cl_by_uuid(struct mei_device *dev,
  152. const uuid_le *uuid)
  153. {
  154. struct mei_me_client *me_cl;
  155. down_read(&dev->me_clients_rwsem);
  156. me_cl = __mei_me_cl_by_uuid(dev, uuid);
  157. up_read(&dev->me_clients_rwsem);
  158. return me_cl;
  159. }
  160. /**
  161. * mei_me_cl_by_id - locate me client by client id
  162. * increases ref count
  163. *
  164. * @dev: the device structure
  165. * @client_id: me client id
  166. *
  167. * Return: me client or NULL if not found
  168. *
  169. * Locking: dev->me_clients_rwsem
  170. */
  171. struct mei_me_client *mei_me_cl_by_id(struct mei_device *dev, u8 client_id)
  172. {
  173. struct mei_me_client *__me_cl, *me_cl = NULL;
  174. down_read(&dev->me_clients_rwsem);
  175. list_for_each_entry(__me_cl, &dev->me_clients, list) {
  176. if (__me_cl->client_id == client_id) {
  177. me_cl = mei_me_cl_get(__me_cl);
  178. break;
  179. }
  180. }
  181. up_read(&dev->me_clients_rwsem);
  182. return me_cl;
  183. }
  184. /**
  185. * __mei_me_cl_by_uuid_id - locate me client by client id and uuid
  186. * increases ref count
  187. *
  188. * @dev: the device structure
  189. * @uuid: me client uuid
  190. * @client_id: me client id
  191. *
  192. * Return: me client or null if not found
  193. *
  194. * Locking: dev->me_clients_rwsem
  195. */
  196. static struct mei_me_client *__mei_me_cl_by_uuid_id(struct mei_device *dev,
  197. const uuid_le *uuid, u8 client_id)
  198. {
  199. struct mei_me_client *me_cl;
  200. const uuid_le *pn;
  201. WARN_ON(!rwsem_is_locked(&dev->me_clients_rwsem));
  202. list_for_each_entry(me_cl, &dev->me_clients, list) {
  203. pn = &me_cl->props.protocol_name;
  204. if (uuid_le_cmp(*uuid, *pn) == 0 &&
  205. me_cl->client_id == client_id)
  206. return mei_me_cl_get(me_cl);
  207. }
  208. return NULL;
  209. }
  210. /**
  211. * mei_me_cl_by_uuid_id - locate me client by client id and uuid
  212. * increases ref count
  213. *
  214. * @dev: the device structure
  215. * @uuid: me client uuid
  216. * @client_id: me client id
  217. *
  218. * Return: me client or null if not found
  219. */
  220. struct mei_me_client *mei_me_cl_by_uuid_id(struct mei_device *dev,
  221. const uuid_le *uuid, u8 client_id)
  222. {
  223. struct mei_me_client *me_cl;
  224. down_read(&dev->me_clients_rwsem);
  225. me_cl = __mei_me_cl_by_uuid_id(dev, uuid, client_id);
  226. up_read(&dev->me_clients_rwsem);
  227. return me_cl;
  228. }
  229. /**
  230. * mei_me_cl_rm_by_uuid - remove all me clients matching uuid
  231. *
  232. * @dev: the device structure
  233. * @uuid: me client uuid
  234. *
  235. * Locking: called under "dev->device_lock" lock
  236. */
  237. void mei_me_cl_rm_by_uuid(struct mei_device *dev, const uuid_le *uuid)
  238. {
  239. struct mei_me_client *me_cl;
  240. dev_dbg(dev->dev, "remove %pUl\n", uuid);
  241. down_write(&dev->me_clients_rwsem);
  242. me_cl = __mei_me_cl_by_uuid(dev, uuid);
  243. __mei_me_cl_del(dev, me_cl);
  244. up_write(&dev->me_clients_rwsem);
  245. }
  246. /**
  247. * mei_me_cl_rm_by_uuid_id - remove all me clients matching client id
  248. *
  249. * @dev: the device structure
  250. * @uuid: me client uuid
  251. * @id: me client id
  252. *
  253. * Locking: called under "dev->device_lock" lock
  254. */
  255. void mei_me_cl_rm_by_uuid_id(struct mei_device *dev, const uuid_le *uuid, u8 id)
  256. {
  257. struct mei_me_client *me_cl;
  258. dev_dbg(dev->dev, "remove %pUl %d\n", uuid, id);
  259. down_write(&dev->me_clients_rwsem);
  260. me_cl = __mei_me_cl_by_uuid_id(dev, uuid, id);
  261. __mei_me_cl_del(dev, me_cl);
  262. up_write(&dev->me_clients_rwsem);
  263. }
  264. /**
  265. * mei_me_cl_rm_all - remove all me clients
  266. *
  267. * @dev: the device structure
  268. *
  269. * Locking: called under "dev->device_lock" lock
  270. */
  271. void mei_me_cl_rm_all(struct mei_device *dev)
  272. {
  273. struct mei_me_client *me_cl, *next;
  274. down_write(&dev->me_clients_rwsem);
  275. list_for_each_entry_safe(me_cl, next, &dev->me_clients, list)
  276. __mei_me_cl_del(dev, me_cl);
  277. up_write(&dev->me_clients_rwsem);
  278. }
  279. /**
  280. * mei_cl_cmp_id - tells if the clients are the same
  281. *
  282. * @cl1: host client 1
  283. * @cl2: host client 2
  284. *
  285. * Return: true - if the clients has same host and me ids
  286. * false - otherwise
  287. */
  288. static inline bool mei_cl_cmp_id(const struct mei_cl *cl1,
  289. const struct mei_cl *cl2)
  290. {
  291. return cl1 && cl2 &&
  292. (cl1->host_client_id == cl2->host_client_id) &&
  293. (mei_cl_me_id(cl1) == mei_cl_me_id(cl2));
  294. }
  295. /**
  296. * mei_io_cb_free - free mei_cb_private related memory
  297. *
  298. * @cb: mei callback struct
  299. */
  300. void mei_io_cb_free(struct mei_cl_cb *cb)
  301. {
  302. if (cb == NULL)
  303. return;
  304. list_del(&cb->list);
  305. kfree(cb->buf.data);
  306. kfree(cb);
  307. }
  308. /**
  309. * mei_io_cb_init - allocate and initialize io callback
  310. *
  311. * @cl: mei client
  312. * @type: operation type
  313. * @fp: pointer to file structure
  314. *
  315. * Return: mei_cl_cb pointer or NULL;
  316. */
  317. static struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl,
  318. enum mei_cb_file_ops type,
  319. const struct file *fp)
  320. {
  321. struct mei_cl_cb *cb;
  322. cb = kzalloc(sizeof(struct mei_cl_cb), GFP_KERNEL);
  323. if (!cb)
  324. return NULL;
  325. INIT_LIST_HEAD(&cb->list);
  326. cb->fp = fp;
  327. cb->cl = cl;
  328. cb->buf_idx = 0;
  329. cb->fop_type = type;
  330. return cb;
  331. }
  332. /**
  333. * __mei_io_list_flush_cl - removes and frees cbs belonging to cl.
  334. *
  335. * @head: an instance of our list structure
  336. * @cl: host client, can be NULL for flushing the whole list
  337. * @free: whether to free the cbs
  338. */
  339. static void __mei_io_list_flush_cl(struct list_head *head,
  340. const struct mei_cl *cl, bool free)
  341. {
  342. struct mei_cl_cb *cb, *next;
  343. /* enable removing everything if no cl is specified */
  344. list_for_each_entry_safe(cb, next, head, list) {
  345. if (!cl || mei_cl_cmp_id(cl, cb->cl)) {
  346. list_del_init(&cb->list);
  347. if (free)
  348. mei_io_cb_free(cb);
  349. }
  350. }
  351. }
  352. /**
  353. * mei_io_list_flush_cl - removes list entry belonging to cl.
  354. *
  355. * @head: An instance of our list structure
  356. * @cl: host client
  357. */
  358. static inline void mei_io_list_flush_cl(struct list_head *head,
  359. const struct mei_cl *cl)
  360. {
  361. __mei_io_list_flush_cl(head, cl, false);
  362. }
  363. /**
  364. * mei_io_list_free_cl - removes cb belonging to cl and free them
  365. *
  366. * @head: An instance of our list structure
  367. * @cl: host client
  368. */
  369. static inline void mei_io_list_free_cl(struct list_head *head,
  370. const struct mei_cl *cl)
  371. {
  372. __mei_io_list_flush_cl(head, cl, true);
  373. }
  374. /**
  375. * mei_io_list_free_fp - free cb from a list that matches file pointer
  376. *
  377. * @head: io list
  378. * @fp: file pointer (matching cb file object), may be NULL
  379. */
  380. static void mei_io_list_free_fp(struct list_head *head, const struct file *fp)
  381. {
  382. struct mei_cl_cb *cb, *next;
  383. list_for_each_entry_safe(cb, next, head, list)
  384. if (!fp || fp == cb->fp)
  385. mei_io_cb_free(cb);
  386. }
  387. /**
  388. * mei_cl_alloc_cb - a convenient wrapper for allocating read cb
  389. *
  390. * @cl: host client
  391. * @length: size of the buffer
  392. * @fop_type: operation type
  393. * @fp: associated file pointer (might be NULL)
  394. *
  395. * Return: cb on success and NULL on failure
  396. */
  397. struct mei_cl_cb *mei_cl_alloc_cb(struct mei_cl *cl, size_t length,
  398. enum mei_cb_file_ops fop_type,
  399. const struct file *fp)
  400. {
  401. struct mei_cl_cb *cb;
  402. cb = mei_io_cb_init(cl, fop_type, fp);
  403. if (!cb)
  404. return NULL;
  405. if (length == 0)
  406. return cb;
  407. cb->buf.data = kmalloc(length, GFP_KERNEL);
  408. if (!cb->buf.data) {
  409. mei_io_cb_free(cb);
  410. return NULL;
  411. }
  412. cb->buf.size = length;
  413. return cb;
  414. }
  415. /**
  416. * mei_cl_enqueue_ctrl_wr_cb - a convenient wrapper for allocating
  417. * and enqueuing of the control commands cb
  418. *
  419. * @cl: host client
  420. * @length: size of the buffer
  421. * @fop_type: operation type
  422. * @fp: associated file pointer (might be NULL)
  423. *
  424. * Return: cb on success and NULL on failure
  425. * Locking: called under "dev->device_lock" lock
  426. */
  427. struct mei_cl_cb *mei_cl_enqueue_ctrl_wr_cb(struct mei_cl *cl, size_t length,
  428. enum mei_cb_file_ops fop_type,
  429. const struct file *fp)
  430. {
  431. struct mei_cl_cb *cb;
  432. /* for RX always allocate at least client's mtu */
  433. if (length)
  434. length = max_t(size_t, length, mei_cl_mtu(cl));
  435. cb = mei_cl_alloc_cb(cl, length, fop_type, fp);
  436. if (!cb)
  437. return NULL;
  438. list_add_tail(&cb->list, &cl->dev->ctrl_wr_list);
  439. return cb;
  440. }
  441. /**
  442. * mei_cl_read_cb - find this cl's callback in the read list
  443. * for a specific file
  444. *
  445. * @cl: host client
  446. * @fp: file pointer (matching cb file object), may be NULL
  447. *
  448. * Return: cb on success, NULL if cb is not found
  449. */
  450. struct mei_cl_cb *mei_cl_read_cb(const struct mei_cl *cl, const struct file *fp)
  451. {
  452. struct mei_cl_cb *cb;
  453. list_for_each_entry(cb, &cl->rd_completed, list)
  454. if (!fp || fp == cb->fp)
  455. return cb;
  456. return NULL;
  457. }
  458. /**
  459. * mei_cl_flush_queues - flushes queue lists belonging to cl.
  460. *
  461. * @cl: host client
  462. * @fp: file pointer (matching cb file object), may be NULL
  463. *
  464. * Return: 0 on success, -EINVAL if cl or cl->dev is NULL.
  465. */
  466. int mei_cl_flush_queues(struct mei_cl *cl, const struct file *fp)
  467. {
  468. struct mei_device *dev;
  469. if (WARN_ON(!cl || !cl->dev))
  470. return -EINVAL;
  471. dev = cl->dev;
  472. cl_dbg(dev, cl, "remove list entry belonging to cl\n");
  473. mei_io_list_free_cl(&cl->dev->write_list, cl);
  474. mei_io_list_free_cl(&cl->dev->write_waiting_list, cl);
  475. mei_io_list_flush_cl(&cl->dev->ctrl_wr_list, cl);
  476. mei_io_list_flush_cl(&cl->dev->ctrl_rd_list, cl);
  477. mei_io_list_free_fp(&cl->rd_pending, fp);
  478. mei_io_list_free_fp(&cl->rd_completed, fp);
  479. return 0;
  480. }
  481. /**
  482. * mei_cl_init - initializes cl.
  483. *
  484. * @cl: host client to be initialized
  485. * @dev: mei device
  486. */
  487. static void mei_cl_init(struct mei_cl *cl, struct mei_device *dev)
  488. {
  489. memset(cl, 0, sizeof(struct mei_cl));
  490. init_waitqueue_head(&cl->wait);
  491. init_waitqueue_head(&cl->rx_wait);
  492. init_waitqueue_head(&cl->tx_wait);
  493. init_waitqueue_head(&cl->ev_wait);
  494. INIT_LIST_HEAD(&cl->rd_completed);
  495. INIT_LIST_HEAD(&cl->rd_pending);
  496. INIT_LIST_HEAD(&cl->link);
  497. cl->writing_state = MEI_IDLE;
  498. cl->state = MEI_FILE_UNINITIALIZED;
  499. cl->dev = dev;
  500. }
  501. /**
  502. * mei_cl_allocate - allocates cl structure and sets it up.
  503. *
  504. * @dev: mei device
  505. * Return: The allocated file or NULL on failure
  506. */
  507. struct mei_cl *mei_cl_allocate(struct mei_device *dev)
  508. {
  509. struct mei_cl *cl;
  510. cl = kmalloc(sizeof(struct mei_cl), GFP_KERNEL);
  511. if (!cl)
  512. return NULL;
  513. mei_cl_init(cl, dev);
  514. return cl;
  515. }
  516. /**
  517. * mei_cl_link - allocate host id in the host map
  518. *
  519. * @cl: host client
  520. *
  521. * Return: 0 on success
  522. * -EINVAL on incorrect values
  523. * -EMFILE if open count exceeded.
  524. */
  525. int mei_cl_link(struct mei_cl *cl)
  526. {
  527. struct mei_device *dev;
  528. int id;
  529. if (WARN_ON(!cl || !cl->dev))
  530. return -EINVAL;
  531. dev = cl->dev;
  532. id = find_first_zero_bit(dev->host_clients_map, MEI_CLIENTS_MAX);
  533. if (id >= MEI_CLIENTS_MAX) {
  534. dev_err(dev->dev, "id exceeded %d", MEI_CLIENTS_MAX);
  535. return -EMFILE;
  536. }
  537. if (dev->open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
  538. dev_err(dev->dev, "open_handle_count exceeded %d",
  539. MEI_MAX_OPEN_HANDLE_COUNT);
  540. return -EMFILE;
  541. }
  542. dev->open_handle_count++;
  543. cl->host_client_id = id;
  544. list_add_tail(&cl->link, &dev->file_list);
  545. set_bit(id, dev->host_clients_map);
  546. cl->state = MEI_FILE_INITIALIZING;
  547. cl_dbg(dev, cl, "link cl\n");
  548. return 0;
  549. }
  550. /**
  551. * mei_cl_unlink - remove host client from the list
  552. *
  553. * @cl: host client
  554. *
  555. * Return: always 0
  556. */
  557. int mei_cl_unlink(struct mei_cl *cl)
  558. {
  559. struct mei_device *dev;
  560. /* don't shout on error exit path */
  561. if (!cl)
  562. return 0;
  563. if (WARN_ON(!cl->dev))
  564. return 0;
  565. dev = cl->dev;
  566. cl_dbg(dev, cl, "unlink client");
  567. if (dev->open_handle_count > 0)
  568. dev->open_handle_count--;
  569. /* never clear the 0 bit */
  570. if (cl->host_client_id)
  571. clear_bit(cl->host_client_id, dev->host_clients_map);
  572. list_del_init(&cl->link);
  573. cl->state = MEI_FILE_UNINITIALIZED;
  574. cl->writing_state = MEI_IDLE;
  575. WARN_ON(!list_empty(&cl->rd_completed) ||
  576. !list_empty(&cl->rd_pending) ||
  577. !list_empty(&cl->link));
  578. return 0;
  579. }
  580. void mei_host_client_init(struct mei_device *dev)
  581. {
  582. dev->dev_state = MEI_DEV_ENABLED;
  583. dev->reset_count = 0;
  584. schedule_work(&dev->bus_rescan_work);
  585. pm_runtime_mark_last_busy(dev->dev);
  586. dev_dbg(dev->dev, "rpm: autosuspend\n");
  587. pm_request_autosuspend(dev->dev);
  588. }
  589. /**
  590. * mei_hbuf_acquire - try to acquire host buffer
  591. *
  592. * @dev: the device structure
  593. * Return: true if host buffer was acquired
  594. */
  595. bool mei_hbuf_acquire(struct mei_device *dev)
  596. {
  597. if (mei_pg_state(dev) == MEI_PG_ON ||
  598. mei_pg_in_transition(dev)) {
  599. dev_dbg(dev->dev, "device is in pg\n");
  600. return false;
  601. }
  602. if (!dev->hbuf_is_ready) {
  603. dev_dbg(dev->dev, "hbuf is not ready\n");
  604. return false;
  605. }
  606. dev->hbuf_is_ready = false;
  607. return true;
  608. }
  609. /**
  610. * mei_cl_wake_all - wake up readers, writers and event waiters so
  611. * they can be interrupted
  612. *
  613. * @cl: host client
  614. */
  615. static void mei_cl_wake_all(struct mei_cl *cl)
  616. {
  617. struct mei_device *dev = cl->dev;
  618. /* synchronized under device mutex */
  619. if (waitqueue_active(&cl->rx_wait)) {
  620. cl_dbg(dev, cl, "Waking up reading client!\n");
  621. wake_up_interruptible(&cl->rx_wait);
  622. }
  623. /* synchronized under device mutex */
  624. if (waitqueue_active(&cl->tx_wait)) {
  625. cl_dbg(dev, cl, "Waking up writing client!\n");
  626. wake_up_interruptible(&cl->tx_wait);
  627. }
  628. /* synchronized under device mutex */
  629. if (waitqueue_active(&cl->ev_wait)) {
  630. cl_dbg(dev, cl, "Waking up waiting for event clients!\n");
  631. wake_up_interruptible(&cl->ev_wait);
  632. }
  633. /* synchronized under device mutex */
  634. if (waitqueue_active(&cl->wait)) {
  635. cl_dbg(dev, cl, "Waking up ctrl write clients!\n");
  636. wake_up(&cl->wait);
  637. }
  638. }
  639. /**
  640. * mei_cl_set_disconnected - set disconnected state and clear
  641. * associated states and resources
  642. *
  643. * @cl: host client
  644. */
  645. static void mei_cl_set_disconnected(struct mei_cl *cl)
  646. {
  647. struct mei_device *dev = cl->dev;
  648. if (cl->state == MEI_FILE_DISCONNECTED ||
  649. cl->state <= MEI_FILE_INITIALIZING)
  650. return;
  651. cl->state = MEI_FILE_DISCONNECTED;
  652. mei_io_list_free_cl(&dev->write_list, cl);
  653. mei_io_list_free_cl(&dev->write_waiting_list, cl);
  654. mei_io_list_flush_cl(&dev->ctrl_rd_list, cl);
  655. mei_io_list_flush_cl(&dev->ctrl_wr_list, cl);
  656. mei_cl_wake_all(cl);
  657. cl->rx_flow_ctrl_creds = 0;
  658. cl->tx_flow_ctrl_creds = 0;
  659. cl->timer_count = 0;
  660. mei_cl_bus_module_put(cl);
  661. if (!cl->me_cl)
  662. return;
  663. if (!WARN_ON(cl->me_cl->connect_count == 0))
  664. cl->me_cl->connect_count--;
  665. if (cl->me_cl->connect_count == 0)
  666. cl->me_cl->tx_flow_ctrl_creds = 0;
  667. mei_me_cl_put(cl->me_cl);
  668. cl->me_cl = NULL;
  669. }
  670. static int mei_cl_set_connecting(struct mei_cl *cl, struct mei_me_client *me_cl)
  671. {
  672. if (!mei_me_cl_get(me_cl))
  673. return -ENOENT;
  674. /* only one connection is allowed for fixed address clients */
  675. if (me_cl->props.fixed_address) {
  676. if (me_cl->connect_count) {
  677. mei_me_cl_put(me_cl);
  678. return -EBUSY;
  679. }
  680. }
  681. cl->me_cl = me_cl;
  682. cl->state = MEI_FILE_CONNECTING;
  683. cl->me_cl->connect_count++;
  684. return 0;
  685. }
  686. /*
  687. * mei_cl_send_disconnect - send disconnect request
  688. *
  689. * @cl: host client
  690. * @cb: callback block
  691. *
  692. * Return: 0, OK; otherwise, error.
  693. */
  694. static int mei_cl_send_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb)
  695. {
  696. struct mei_device *dev;
  697. int ret;
  698. dev = cl->dev;
  699. ret = mei_hbm_cl_disconnect_req(dev, cl);
  700. cl->status = ret;
  701. if (ret) {
  702. cl->state = MEI_FILE_DISCONNECT_REPLY;
  703. return ret;
  704. }
  705. list_move_tail(&cb->list, &dev->ctrl_rd_list);
  706. cl->timer_count = MEI_CONNECT_TIMEOUT;
  707. mei_schedule_stall_timer(dev);
  708. return 0;
  709. }
  710. /**
  711. * mei_cl_irq_disconnect - processes close related operation from
  712. * interrupt thread context - send disconnect request
  713. *
  714. * @cl: client
  715. * @cb: callback block.
  716. * @cmpl_list: complete list.
  717. *
  718. * Return: 0, OK; otherwise, error.
  719. */
  720. int mei_cl_irq_disconnect(struct mei_cl *cl, struct mei_cl_cb *cb,
  721. struct list_head *cmpl_list)
  722. {
  723. struct mei_device *dev = cl->dev;
  724. u32 msg_slots;
  725. int slots;
  726. int ret;
  727. msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
  728. slots = mei_hbuf_empty_slots(dev);
  729. if (slots < msg_slots)
  730. return -EMSGSIZE;
  731. ret = mei_cl_send_disconnect(cl, cb);
  732. if (ret)
  733. list_move_tail(&cb->list, cmpl_list);
  734. return ret;
  735. }
  736. /**
  737. * __mei_cl_disconnect - disconnect host client from the me one
  738. * internal function runtime pm has to be already acquired
  739. *
  740. * @cl: host client
  741. *
  742. * Return: 0 on success, <0 on failure.
  743. */
  744. static int __mei_cl_disconnect(struct mei_cl *cl)
  745. {
  746. struct mei_device *dev;
  747. struct mei_cl_cb *cb;
  748. int rets;
  749. dev = cl->dev;
  750. cl->state = MEI_FILE_DISCONNECTING;
  751. cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, MEI_FOP_DISCONNECT, NULL);
  752. if (!cb) {
  753. rets = -ENOMEM;
  754. goto out;
  755. }
  756. if (mei_hbuf_acquire(dev)) {
  757. rets = mei_cl_send_disconnect(cl, cb);
  758. if (rets) {
  759. cl_err(dev, cl, "failed to disconnect.\n");
  760. goto out;
  761. }
  762. }
  763. mutex_unlock(&dev->device_lock);
  764. wait_event_timeout(cl->wait,
  765. cl->state == MEI_FILE_DISCONNECT_REPLY ||
  766. cl->state == MEI_FILE_DISCONNECTED,
  767. mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
  768. mutex_lock(&dev->device_lock);
  769. rets = cl->status;
  770. if (cl->state != MEI_FILE_DISCONNECT_REPLY &&
  771. cl->state != MEI_FILE_DISCONNECTED) {
  772. cl_dbg(dev, cl, "timeout on disconnect from FW client.\n");
  773. rets = -ETIME;
  774. }
  775. out:
  776. /* we disconnect also on error */
  777. mei_cl_set_disconnected(cl);
  778. if (!rets)
  779. cl_dbg(dev, cl, "successfully disconnected from FW client.\n");
  780. mei_io_cb_free(cb);
  781. return rets;
  782. }
  783. /**
  784. * mei_cl_disconnect - disconnect host client from the me one
  785. *
  786. * @cl: host client
  787. *
  788. * Locking: called under "dev->device_lock" lock
  789. *
  790. * Return: 0 on success, <0 on failure.
  791. */
  792. int mei_cl_disconnect(struct mei_cl *cl)
  793. {
  794. struct mei_device *dev;
  795. int rets;
  796. if (WARN_ON(!cl || !cl->dev))
  797. return -ENODEV;
  798. dev = cl->dev;
  799. cl_dbg(dev, cl, "disconnecting");
  800. if (!mei_cl_is_connected(cl))
  801. return 0;
  802. if (mei_cl_is_fixed_address(cl)) {
  803. mei_cl_set_disconnected(cl);
  804. return 0;
  805. }
  806. rets = pm_runtime_get(dev->dev);
  807. if (rets < 0 && rets != -EINPROGRESS) {
  808. pm_runtime_put_noidle(dev->dev);
  809. cl_err(dev, cl, "rpm: get failed %d\n", rets);
  810. return rets;
  811. }
  812. rets = __mei_cl_disconnect(cl);
  813. cl_dbg(dev, cl, "rpm: autosuspend\n");
  814. pm_runtime_mark_last_busy(dev->dev);
  815. pm_runtime_put_autosuspend(dev->dev);
  816. return rets;
  817. }
  818. /**
  819. * mei_cl_is_other_connecting - checks if other
  820. * client with the same me client id is connecting
  821. *
  822. * @cl: private data of the file object
  823. *
  824. * Return: true if other client is connected, false - otherwise.
  825. */
  826. static bool mei_cl_is_other_connecting(struct mei_cl *cl)
  827. {
  828. struct mei_device *dev;
  829. struct mei_cl_cb *cb;
  830. dev = cl->dev;
  831. list_for_each_entry(cb, &dev->ctrl_rd_list, list) {
  832. if (cb->fop_type == MEI_FOP_CONNECT &&
  833. mei_cl_me_id(cl) == mei_cl_me_id(cb->cl))
  834. return true;
  835. }
  836. return false;
  837. }
  838. /**
  839. * mei_cl_send_connect - send connect request
  840. *
  841. * @cl: host client
  842. * @cb: callback block
  843. *
  844. * Return: 0, OK; otherwise, error.
  845. */
  846. static int mei_cl_send_connect(struct mei_cl *cl, struct mei_cl_cb *cb)
  847. {
  848. struct mei_device *dev;
  849. int ret;
  850. dev = cl->dev;
  851. ret = mei_hbm_cl_connect_req(dev, cl);
  852. cl->status = ret;
  853. if (ret) {
  854. cl->state = MEI_FILE_DISCONNECT_REPLY;
  855. return ret;
  856. }
  857. list_move_tail(&cb->list, &dev->ctrl_rd_list);
  858. cl->timer_count = MEI_CONNECT_TIMEOUT;
  859. mei_schedule_stall_timer(dev);
  860. return 0;
  861. }
  862. /**
  863. * mei_cl_irq_connect - send connect request in irq_thread context
  864. *
  865. * @cl: host client
  866. * @cb: callback block
  867. * @cmpl_list: complete list
  868. *
  869. * Return: 0, OK; otherwise, error.
  870. */
  871. int mei_cl_irq_connect(struct mei_cl *cl, struct mei_cl_cb *cb,
  872. struct list_head *cmpl_list)
  873. {
  874. struct mei_device *dev = cl->dev;
  875. u32 msg_slots;
  876. int slots;
  877. int rets;
  878. msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
  879. slots = mei_hbuf_empty_slots(dev);
  880. if (mei_cl_is_other_connecting(cl))
  881. return 0;
  882. if (slots < msg_slots)
  883. return -EMSGSIZE;
  884. rets = mei_cl_send_connect(cl, cb);
  885. if (rets)
  886. list_move_tail(&cb->list, cmpl_list);
  887. return rets;
  888. }
  889. /**
  890. * mei_cl_connect - connect host client to the me one
  891. *
  892. * @cl: host client
  893. * @me_cl: me client
  894. * @fp: pointer to file structure
  895. *
  896. * Locking: called under "dev->device_lock" lock
  897. *
  898. * Return: 0 on success, <0 on failure.
  899. */
  900. int mei_cl_connect(struct mei_cl *cl, struct mei_me_client *me_cl,
  901. const struct file *fp)
  902. {
  903. struct mei_device *dev;
  904. struct mei_cl_cb *cb;
  905. int rets;
  906. if (WARN_ON(!cl || !cl->dev || !me_cl))
  907. return -ENODEV;
  908. dev = cl->dev;
  909. if (!mei_cl_bus_module_get(cl))
  910. return -ENODEV;
  911. rets = mei_cl_set_connecting(cl, me_cl);
  912. if (rets)
  913. goto nortpm;
  914. if (mei_cl_is_fixed_address(cl)) {
  915. cl->state = MEI_FILE_CONNECTED;
  916. rets = 0;
  917. goto nortpm;
  918. }
  919. rets = pm_runtime_get(dev->dev);
  920. if (rets < 0 && rets != -EINPROGRESS) {
  921. pm_runtime_put_noidle(dev->dev);
  922. cl_err(dev, cl, "rpm: get failed %d\n", rets);
  923. goto nortpm;
  924. }
  925. cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, MEI_FOP_CONNECT, fp);
  926. if (!cb) {
  927. rets = -ENOMEM;
  928. goto out;
  929. }
  930. /* run hbuf acquire last so we don't have to undo */
  931. if (!mei_cl_is_other_connecting(cl) && mei_hbuf_acquire(dev)) {
  932. rets = mei_cl_send_connect(cl, cb);
  933. if (rets)
  934. goto out;
  935. }
  936. mutex_unlock(&dev->device_lock);
  937. wait_event_timeout(cl->wait,
  938. (cl->state == MEI_FILE_CONNECTED ||
  939. cl->state == MEI_FILE_DISCONNECTED ||
  940. cl->state == MEI_FILE_DISCONNECT_REQUIRED ||
  941. cl->state == MEI_FILE_DISCONNECT_REPLY),
  942. mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
  943. mutex_lock(&dev->device_lock);
  944. if (!mei_cl_is_connected(cl)) {
  945. if (cl->state == MEI_FILE_DISCONNECT_REQUIRED) {
  946. mei_io_list_flush_cl(&dev->ctrl_rd_list, cl);
  947. mei_io_list_flush_cl(&dev->ctrl_wr_list, cl);
  948. /* ignore disconnect return valuue;
  949. * in case of failure reset will be invoked
  950. */
  951. __mei_cl_disconnect(cl);
  952. rets = -EFAULT;
  953. goto out;
  954. }
  955. /* timeout or something went really wrong */
  956. if (!cl->status)
  957. cl->status = -EFAULT;
  958. }
  959. rets = cl->status;
  960. out:
  961. cl_dbg(dev, cl, "rpm: autosuspend\n");
  962. pm_runtime_mark_last_busy(dev->dev);
  963. pm_runtime_put_autosuspend(dev->dev);
  964. mei_io_cb_free(cb);
  965. nortpm:
  966. if (!mei_cl_is_connected(cl))
  967. mei_cl_set_disconnected(cl);
  968. return rets;
  969. }
  970. /**
  971. * mei_cl_alloc_linked - allocate and link host client
  972. *
  973. * @dev: the device structure
  974. *
  975. * Return: cl on success ERR_PTR on failure
  976. */
  977. struct mei_cl *mei_cl_alloc_linked(struct mei_device *dev)
  978. {
  979. struct mei_cl *cl;
  980. int ret;
  981. cl = mei_cl_allocate(dev);
  982. if (!cl) {
  983. ret = -ENOMEM;
  984. goto err;
  985. }
  986. ret = mei_cl_link(cl);
  987. if (ret)
  988. goto err;
  989. return cl;
  990. err:
  991. kfree(cl);
  992. return ERR_PTR(ret);
  993. }
  994. /**
  995. * mei_cl_tx_flow_ctrl_creds - checks flow_control credits for cl.
  996. *
  997. * @cl: host client
  998. *
  999. * Return: 1 if tx_flow_ctrl_creds >0, 0 - otherwise.
  1000. */
  1001. static int mei_cl_tx_flow_ctrl_creds(struct mei_cl *cl)
  1002. {
  1003. if (WARN_ON(!cl || !cl->me_cl))
  1004. return -EINVAL;
  1005. if (cl->tx_flow_ctrl_creds > 0)
  1006. return 1;
  1007. if (mei_cl_is_fixed_address(cl))
  1008. return 1;
  1009. if (mei_cl_is_single_recv_buf(cl)) {
  1010. if (cl->me_cl->tx_flow_ctrl_creds > 0)
  1011. return 1;
  1012. }
  1013. return 0;
  1014. }
  1015. /**
  1016. * mei_cl_tx_flow_ctrl_creds_reduce - reduces transmit flow control credits
  1017. * for a client
  1018. *
  1019. * @cl: host client
  1020. *
  1021. * Return:
  1022. * 0 on success
  1023. * -EINVAL when ctrl credits are <= 0
  1024. */
  1025. static int mei_cl_tx_flow_ctrl_creds_reduce(struct mei_cl *cl)
  1026. {
  1027. if (WARN_ON(!cl || !cl->me_cl))
  1028. return -EINVAL;
  1029. if (mei_cl_is_fixed_address(cl))
  1030. return 0;
  1031. if (mei_cl_is_single_recv_buf(cl)) {
  1032. if (WARN_ON(cl->me_cl->tx_flow_ctrl_creds <= 0))
  1033. return -EINVAL;
  1034. cl->me_cl->tx_flow_ctrl_creds--;
  1035. } else {
  1036. if (WARN_ON(cl->tx_flow_ctrl_creds <= 0))
  1037. return -EINVAL;
  1038. cl->tx_flow_ctrl_creds--;
  1039. }
  1040. return 0;
  1041. }
  1042. /**
  1043. * mei_cl_notify_fop2req - convert fop to proper request
  1044. *
  1045. * @fop: client notification start response command
  1046. *
  1047. * Return: MEI_HBM_NOTIFICATION_START/STOP
  1048. */
  1049. u8 mei_cl_notify_fop2req(enum mei_cb_file_ops fop)
  1050. {
  1051. if (fop == MEI_FOP_NOTIFY_START)
  1052. return MEI_HBM_NOTIFICATION_START;
  1053. else
  1054. return MEI_HBM_NOTIFICATION_STOP;
  1055. }
  1056. /**
  1057. * mei_cl_notify_req2fop - convert notification request top file operation type
  1058. *
  1059. * @req: hbm notification request type
  1060. *
  1061. * Return: MEI_FOP_NOTIFY_START/STOP
  1062. */
  1063. enum mei_cb_file_ops mei_cl_notify_req2fop(u8 req)
  1064. {
  1065. if (req == MEI_HBM_NOTIFICATION_START)
  1066. return MEI_FOP_NOTIFY_START;
  1067. else
  1068. return MEI_FOP_NOTIFY_STOP;
  1069. }
  1070. /**
  1071. * mei_cl_irq_notify - send notification request in irq_thread context
  1072. *
  1073. * @cl: client
  1074. * @cb: callback block.
  1075. * @cmpl_list: complete list.
  1076. *
  1077. * Return: 0 on such and error otherwise.
  1078. */
  1079. int mei_cl_irq_notify(struct mei_cl *cl, struct mei_cl_cb *cb,
  1080. struct list_head *cmpl_list)
  1081. {
  1082. struct mei_device *dev = cl->dev;
  1083. u32 msg_slots;
  1084. int slots;
  1085. int ret;
  1086. bool request;
  1087. msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
  1088. slots = mei_hbuf_empty_slots(dev);
  1089. if (slots < msg_slots)
  1090. return -EMSGSIZE;
  1091. request = mei_cl_notify_fop2req(cb->fop_type);
  1092. ret = mei_hbm_cl_notify_req(dev, cl, request);
  1093. if (ret) {
  1094. cl->status = ret;
  1095. list_move_tail(&cb->list, cmpl_list);
  1096. return ret;
  1097. }
  1098. list_move_tail(&cb->list, &dev->ctrl_rd_list);
  1099. return 0;
  1100. }
  1101. /**
  1102. * mei_cl_notify_request - send notification stop/start request
  1103. *
  1104. * @cl: host client
  1105. * @fp: associate request with file
  1106. * @request: 1 for start or 0 for stop
  1107. *
  1108. * Locking: called under "dev->device_lock" lock
  1109. *
  1110. * Return: 0 on such and error otherwise.
  1111. */
  1112. int mei_cl_notify_request(struct mei_cl *cl,
  1113. const struct file *fp, u8 request)
  1114. {
  1115. struct mei_device *dev;
  1116. struct mei_cl_cb *cb;
  1117. enum mei_cb_file_ops fop_type;
  1118. int rets;
  1119. if (WARN_ON(!cl || !cl->dev))
  1120. return -ENODEV;
  1121. dev = cl->dev;
  1122. if (!dev->hbm_f_ev_supported) {
  1123. cl_dbg(dev, cl, "notifications not supported\n");
  1124. return -EOPNOTSUPP;
  1125. }
  1126. if (!mei_cl_is_connected(cl))
  1127. return -ENODEV;
  1128. rets = pm_runtime_get(dev->dev);
  1129. if (rets < 0 && rets != -EINPROGRESS) {
  1130. pm_runtime_put_noidle(dev->dev);
  1131. cl_err(dev, cl, "rpm: get failed %d\n", rets);
  1132. return rets;
  1133. }
  1134. fop_type = mei_cl_notify_req2fop(request);
  1135. cb = mei_cl_enqueue_ctrl_wr_cb(cl, 0, fop_type, fp);
  1136. if (!cb) {
  1137. rets = -ENOMEM;
  1138. goto out;
  1139. }
  1140. if (mei_hbuf_acquire(dev)) {
  1141. if (mei_hbm_cl_notify_req(dev, cl, request)) {
  1142. rets = -ENODEV;
  1143. goto out;
  1144. }
  1145. list_move_tail(&cb->list, &dev->ctrl_rd_list);
  1146. }
  1147. mutex_unlock(&dev->device_lock);
  1148. wait_event_timeout(cl->wait,
  1149. cl->notify_en == request || !mei_cl_is_connected(cl),
  1150. mei_secs_to_jiffies(MEI_CL_CONNECT_TIMEOUT));
  1151. mutex_lock(&dev->device_lock);
  1152. if (cl->notify_en != request && !cl->status)
  1153. cl->status = -EFAULT;
  1154. rets = cl->status;
  1155. out:
  1156. cl_dbg(dev, cl, "rpm: autosuspend\n");
  1157. pm_runtime_mark_last_busy(dev->dev);
  1158. pm_runtime_put_autosuspend(dev->dev);
  1159. mei_io_cb_free(cb);
  1160. return rets;
  1161. }
  1162. /**
  1163. * mei_cl_notify - raise notification
  1164. *
  1165. * @cl: host client
  1166. *
  1167. * Locking: called under "dev->device_lock" lock
  1168. */
  1169. void mei_cl_notify(struct mei_cl *cl)
  1170. {
  1171. struct mei_device *dev;
  1172. if (!cl || !cl->dev)
  1173. return;
  1174. dev = cl->dev;
  1175. if (!cl->notify_en)
  1176. return;
  1177. cl_dbg(dev, cl, "notify event");
  1178. cl->notify_ev = true;
  1179. if (!mei_cl_bus_notify_event(cl))
  1180. wake_up_interruptible(&cl->ev_wait);
  1181. if (cl->ev_async)
  1182. kill_fasync(&cl->ev_async, SIGIO, POLL_PRI);
  1183. }
  1184. /**
  1185. * mei_cl_notify_get - get or wait for notification event
  1186. *
  1187. * @cl: host client
  1188. * @block: this request is blocking
  1189. * @notify_ev: true if notification event was received
  1190. *
  1191. * Locking: called under "dev->device_lock" lock
  1192. *
  1193. * Return: 0 on such and error otherwise.
  1194. */
  1195. int mei_cl_notify_get(struct mei_cl *cl, bool block, bool *notify_ev)
  1196. {
  1197. struct mei_device *dev;
  1198. int rets;
  1199. *notify_ev = false;
  1200. if (WARN_ON(!cl || !cl->dev))
  1201. return -ENODEV;
  1202. dev = cl->dev;
  1203. if (!dev->hbm_f_ev_supported) {
  1204. cl_dbg(dev, cl, "notifications not supported\n");
  1205. return -EOPNOTSUPP;
  1206. }
  1207. if (!mei_cl_is_connected(cl))
  1208. return -ENODEV;
  1209. if (cl->notify_ev)
  1210. goto out;
  1211. if (!block)
  1212. return -EAGAIN;
  1213. mutex_unlock(&dev->device_lock);
  1214. rets = wait_event_interruptible(cl->ev_wait, cl->notify_ev);
  1215. mutex_lock(&dev->device_lock);
  1216. if (rets < 0)
  1217. return rets;
  1218. out:
  1219. *notify_ev = cl->notify_ev;
  1220. cl->notify_ev = false;
  1221. return 0;
  1222. }
  1223. /**
  1224. * mei_cl_read_start - the start read client message function.
  1225. *
  1226. * @cl: host client
  1227. * @length: number of bytes to read
  1228. * @fp: pointer to file structure
  1229. *
  1230. * Return: 0 on success, <0 on failure.
  1231. */
  1232. int mei_cl_read_start(struct mei_cl *cl, size_t length, const struct file *fp)
  1233. {
  1234. struct mei_device *dev;
  1235. struct mei_cl_cb *cb;
  1236. int rets;
  1237. if (WARN_ON(!cl || !cl->dev))
  1238. return -ENODEV;
  1239. dev = cl->dev;
  1240. if (!mei_cl_is_connected(cl))
  1241. return -ENODEV;
  1242. if (!mei_me_cl_is_active(cl->me_cl)) {
  1243. cl_err(dev, cl, "no such me client\n");
  1244. return -ENOTTY;
  1245. }
  1246. if (mei_cl_is_fixed_address(cl))
  1247. return 0;
  1248. /* HW currently supports only one pending read */
  1249. if (cl->rx_flow_ctrl_creds)
  1250. return -EBUSY;
  1251. cb = mei_cl_enqueue_ctrl_wr_cb(cl, length, MEI_FOP_READ, fp);
  1252. if (!cb)
  1253. return -ENOMEM;
  1254. rets = pm_runtime_get(dev->dev);
  1255. if (rets < 0 && rets != -EINPROGRESS) {
  1256. pm_runtime_put_noidle(dev->dev);
  1257. cl_err(dev, cl, "rpm: get failed %d\n", rets);
  1258. goto nortpm;
  1259. }
  1260. rets = 0;
  1261. if (mei_hbuf_acquire(dev)) {
  1262. rets = mei_hbm_cl_flow_control_req(dev, cl);
  1263. if (rets < 0)
  1264. goto out;
  1265. list_move_tail(&cb->list, &cl->rd_pending);
  1266. }
  1267. cl->rx_flow_ctrl_creds++;
  1268. out:
  1269. cl_dbg(dev, cl, "rpm: autosuspend\n");
  1270. pm_runtime_mark_last_busy(dev->dev);
  1271. pm_runtime_put_autosuspend(dev->dev);
  1272. nortpm:
  1273. if (rets)
  1274. mei_io_cb_free(cb);
  1275. return rets;
  1276. }
  1277. /**
  1278. * mei_cl_irq_write - write a message to device
  1279. * from the interrupt thread context
  1280. *
  1281. * @cl: client
  1282. * @cb: callback block.
  1283. * @cmpl_list: complete list.
  1284. *
  1285. * Return: 0, OK; otherwise error.
  1286. */
  1287. int mei_cl_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
  1288. struct list_head *cmpl_list)
  1289. {
  1290. struct mei_device *dev;
  1291. struct mei_msg_data *buf;
  1292. struct mei_msg_hdr mei_hdr;
  1293. size_t len;
  1294. u32 msg_slots;
  1295. int slots;
  1296. int rets;
  1297. bool first_chunk;
  1298. if (WARN_ON(!cl || !cl->dev))
  1299. return -ENODEV;
  1300. dev = cl->dev;
  1301. buf = &cb->buf;
  1302. first_chunk = cb->buf_idx == 0;
  1303. rets = first_chunk ? mei_cl_tx_flow_ctrl_creds(cl) : 1;
  1304. if (rets < 0)
  1305. goto err;
  1306. if (rets == 0) {
  1307. cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
  1308. return 0;
  1309. }
  1310. slots = mei_hbuf_empty_slots(dev);
  1311. len = buf->size - cb->buf_idx;
  1312. msg_slots = mei_data2slots(len);
  1313. mei_hdr.host_addr = mei_cl_host_addr(cl);
  1314. mei_hdr.me_addr = mei_cl_me_id(cl);
  1315. mei_hdr.reserved = 0;
  1316. mei_hdr.internal = cb->internal;
  1317. if (slots >= msg_slots) {
  1318. mei_hdr.length = len;
  1319. mei_hdr.msg_complete = 1;
  1320. /* Split the message only if we can write the whole host buffer */
  1321. } else if (slots == dev->hbuf_depth) {
  1322. msg_slots = slots;
  1323. len = (slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
  1324. mei_hdr.length = len;
  1325. mei_hdr.msg_complete = 0;
  1326. } else {
  1327. /* wait for next time the host buffer is empty */
  1328. return 0;
  1329. }
  1330. cl_dbg(dev, cl, "buf: size = %zu idx = %zu\n",
  1331. cb->buf.size, cb->buf_idx);
  1332. rets = mei_write_message(dev, &mei_hdr, buf->data + cb->buf_idx);
  1333. if (rets)
  1334. goto err;
  1335. cl->status = 0;
  1336. cl->writing_state = MEI_WRITING;
  1337. cb->buf_idx += mei_hdr.length;
  1338. cb->completed = mei_hdr.msg_complete == 1;
  1339. if (first_chunk) {
  1340. if (mei_cl_tx_flow_ctrl_creds_reduce(cl)) {
  1341. rets = -EIO;
  1342. goto err;
  1343. }
  1344. }
  1345. if (mei_hdr.msg_complete)
  1346. list_move_tail(&cb->list, &dev->write_waiting_list);
  1347. return 0;
  1348. err:
  1349. cl->status = rets;
  1350. list_move_tail(&cb->list, cmpl_list);
  1351. return rets;
  1352. }
  1353. /**
  1354. * mei_cl_write - submit a write cb to mei device
  1355. * assumes device_lock is locked
  1356. *
  1357. * @cl: host client
  1358. * @cb: write callback with filled data
  1359. *
  1360. * Return: number of bytes sent on success, <0 on failure.
  1361. */
  1362. int mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb)
  1363. {
  1364. struct mei_device *dev;
  1365. struct mei_msg_data *buf;
  1366. struct mei_msg_hdr mei_hdr;
  1367. int size;
  1368. int rets;
  1369. bool blocking;
  1370. if (WARN_ON(!cl || !cl->dev))
  1371. return -ENODEV;
  1372. if (WARN_ON(!cb))
  1373. return -EINVAL;
  1374. dev = cl->dev;
  1375. buf = &cb->buf;
  1376. size = buf->size;
  1377. blocking = cb->blocking;
  1378. cl_dbg(dev, cl, "size=%d\n", size);
  1379. rets = pm_runtime_get(dev->dev);
  1380. if (rets < 0 && rets != -EINPROGRESS) {
  1381. pm_runtime_put_noidle(dev->dev);
  1382. cl_err(dev, cl, "rpm: get failed %d\n", rets);
  1383. goto free;
  1384. }
  1385. cb->buf_idx = 0;
  1386. cl->writing_state = MEI_IDLE;
  1387. mei_hdr.host_addr = mei_cl_host_addr(cl);
  1388. mei_hdr.me_addr = mei_cl_me_id(cl);
  1389. mei_hdr.reserved = 0;
  1390. mei_hdr.msg_complete = 0;
  1391. mei_hdr.internal = cb->internal;
  1392. rets = mei_cl_tx_flow_ctrl_creds(cl);
  1393. if (rets < 0)
  1394. goto err;
  1395. if (rets == 0) {
  1396. cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
  1397. rets = size;
  1398. goto out;
  1399. }
  1400. if (!mei_hbuf_acquire(dev)) {
  1401. cl_dbg(dev, cl, "Cannot acquire the host buffer: not sending.\n");
  1402. rets = size;
  1403. goto out;
  1404. }
  1405. /* Check for a maximum length */
  1406. if (size > mei_hbuf_max_len(dev)) {
  1407. mei_hdr.length = mei_hbuf_max_len(dev);
  1408. mei_hdr.msg_complete = 0;
  1409. } else {
  1410. mei_hdr.length = size;
  1411. mei_hdr.msg_complete = 1;
  1412. }
  1413. rets = mei_write_message(dev, &mei_hdr, buf->data);
  1414. if (rets)
  1415. goto err;
  1416. rets = mei_cl_tx_flow_ctrl_creds_reduce(cl);
  1417. if (rets)
  1418. goto err;
  1419. cl->writing_state = MEI_WRITING;
  1420. cb->buf_idx = mei_hdr.length;
  1421. cb->completed = mei_hdr.msg_complete == 1;
  1422. out:
  1423. if (mei_hdr.msg_complete)
  1424. list_add_tail(&cb->list, &dev->write_waiting_list);
  1425. else
  1426. list_add_tail(&cb->list, &dev->write_list);
  1427. cb = NULL;
  1428. if (blocking && cl->writing_state != MEI_WRITE_COMPLETE) {
  1429. mutex_unlock(&dev->device_lock);
  1430. rets = wait_event_interruptible(cl->tx_wait,
  1431. cl->writing_state == MEI_WRITE_COMPLETE ||
  1432. (!mei_cl_is_connected(cl)));
  1433. mutex_lock(&dev->device_lock);
  1434. /* wait_event_interruptible returns -ERESTARTSYS */
  1435. if (rets) {
  1436. if (signal_pending(current))
  1437. rets = -EINTR;
  1438. goto err;
  1439. }
  1440. if (cl->writing_state != MEI_WRITE_COMPLETE) {
  1441. rets = -EFAULT;
  1442. goto err;
  1443. }
  1444. }
  1445. rets = size;
  1446. err:
  1447. cl_dbg(dev, cl, "rpm: autosuspend\n");
  1448. pm_runtime_mark_last_busy(dev->dev);
  1449. pm_runtime_put_autosuspend(dev->dev);
  1450. free:
  1451. mei_io_cb_free(cb);
  1452. return rets;
  1453. }
  1454. /**
  1455. * mei_cl_complete - processes completed operation for a client
  1456. *
  1457. * @cl: private data of the file object.
  1458. * @cb: callback block.
  1459. */
  1460. void mei_cl_complete(struct mei_cl *cl, struct mei_cl_cb *cb)
  1461. {
  1462. struct mei_device *dev = cl->dev;
  1463. switch (cb->fop_type) {
  1464. case MEI_FOP_WRITE:
  1465. mei_io_cb_free(cb);
  1466. cl->writing_state = MEI_WRITE_COMPLETE;
  1467. if (waitqueue_active(&cl->tx_wait)) {
  1468. wake_up_interruptible(&cl->tx_wait);
  1469. } else {
  1470. pm_runtime_mark_last_busy(dev->dev);
  1471. pm_request_autosuspend(dev->dev);
  1472. }
  1473. break;
  1474. case MEI_FOP_READ:
  1475. list_add_tail(&cb->list, &cl->rd_completed);
  1476. if (!mei_cl_is_fixed_address(cl) &&
  1477. !WARN_ON(!cl->rx_flow_ctrl_creds))
  1478. cl->rx_flow_ctrl_creds--;
  1479. if (!mei_cl_bus_rx_event(cl))
  1480. wake_up_interruptible(&cl->rx_wait);
  1481. break;
  1482. case MEI_FOP_CONNECT:
  1483. case MEI_FOP_DISCONNECT:
  1484. case MEI_FOP_NOTIFY_STOP:
  1485. case MEI_FOP_NOTIFY_START:
  1486. if (waitqueue_active(&cl->wait))
  1487. wake_up(&cl->wait);
  1488. break;
  1489. case MEI_FOP_DISCONNECT_RSP:
  1490. mei_io_cb_free(cb);
  1491. mei_cl_set_disconnected(cl);
  1492. break;
  1493. default:
  1494. BUG_ON(0);
  1495. }
  1496. }
  1497. /**
  1498. * mei_cl_all_disconnect - disconnect forcefully all connected clients
  1499. *
  1500. * @dev: mei device
  1501. */
  1502. void mei_cl_all_disconnect(struct mei_device *dev)
  1503. {
  1504. struct mei_cl *cl;
  1505. list_for_each_entry(cl, &dev->file_list, link)
  1506. mei_cl_set_disconnected(cl);
  1507. }