fcp.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. /*
  2. * Function Control Protocol (IEC 61883-1) helper functions
  3. *
  4. * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
  5. * Licensed under the terms of the GNU General Public License, version 2.
  6. */
  7. #include <linux/device.h>
  8. #include <linux/firewire.h>
  9. #include <linux/firewire-constants.h>
  10. #include <linux/list.h>
  11. #include <linux/module.h>
  12. #include <linux/slab.h>
  13. #include <linux/sched.h>
  14. #include <linux/spinlock.h>
  15. #include <linux/wait.h>
  16. #include <linux/delay.h>
  17. #include "fcp.h"
  18. #include "lib.h"
  19. #include "amdtp-stream.h"
  20. #define CTS_AVC 0x00
  21. #define ERROR_RETRIES 3
  22. #define ERROR_DELAY_MS 5
  23. #define FCP_TIMEOUT_MS 125
  24. int avc_general_set_sig_fmt(struct fw_unit *unit, unsigned int rate,
  25. enum avc_general_plug_dir dir,
  26. unsigned short pid)
  27. {
  28. unsigned int sfc;
  29. u8 *buf;
  30. bool flag;
  31. int err;
  32. flag = false;
  33. for (sfc = 0; sfc < CIP_SFC_COUNT; sfc++) {
  34. if (amdtp_rate_table[sfc] == rate) {
  35. flag = true;
  36. break;
  37. }
  38. }
  39. if (!flag)
  40. return -EINVAL;
  41. buf = kzalloc(8, GFP_KERNEL);
  42. if (buf == NULL)
  43. return -ENOMEM;
  44. buf[0] = 0x00; /* AV/C CONTROL */
  45. buf[1] = 0xff; /* UNIT */
  46. if (dir == AVC_GENERAL_PLUG_DIR_IN)
  47. buf[2] = 0x19; /* INPUT PLUG SIGNAL FORMAT */
  48. else
  49. buf[2] = 0x18; /* OUTPUT PLUG SIGNAL FORMAT */
  50. buf[3] = 0xff & pid; /* plug id */
  51. buf[4] = 0x90; /* EOH_1, Form_1, FMT. AM824 */
  52. buf[5] = 0x07 & sfc; /* FDF-hi. AM824, frequency */
  53. buf[6] = 0xff; /* FDF-mid. AM824, SYT hi (not used)*/
  54. buf[7] = 0xff; /* FDF-low. AM824, SYT lo (not used) */
  55. /* do transaction and check buf[1-5] are the same against command */
  56. err = fcp_avc_transaction(unit, buf, 8, buf, 8,
  57. BIT(1) | BIT(2) | BIT(3) | BIT(4) | BIT(5));
  58. if (err >= 0 && err < 8)
  59. err = -EIO;
  60. else if (buf[0] == 0x08) /* NOT IMPLEMENTED */
  61. err = -ENOSYS;
  62. else if (buf[0] == 0x0a) /* REJECTED */
  63. err = -EINVAL;
  64. if (err < 0)
  65. goto end;
  66. err = 0;
  67. end:
  68. kfree(buf);
  69. return err;
  70. }
  71. EXPORT_SYMBOL(avc_general_set_sig_fmt);
  72. int avc_general_get_sig_fmt(struct fw_unit *unit, unsigned int *rate,
  73. enum avc_general_plug_dir dir,
  74. unsigned short pid)
  75. {
  76. unsigned int sfc;
  77. u8 *buf;
  78. int err;
  79. buf = kzalloc(8, GFP_KERNEL);
  80. if (buf == NULL)
  81. return -ENOMEM;
  82. buf[0] = 0x01; /* AV/C STATUS */
  83. buf[1] = 0xff; /* Unit */
  84. if (dir == AVC_GENERAL_PLUG_DIR_IN)
  85. buf[2] = 0x19; /* INPUT PLUG SIGNAL FORMAT */
  86. else
  87. buf[2] = 0x18; /* OUTPUT PLUG SIGNAL FORMAT */
  88. buf[3] = 0xff & pid; /* plug id */
  89. buf[4] = 0x90; /* EOH_1, Form_1, FMT. AM824 */
  90. buf[5] = 0xff; /* FDF-hi. AM824, frequency */
  91. buf[6] = 0xff; /* FDF-mid. AM824, SYT hi (not used) */
  92. buf[7] = 0xff; /* FDF-low. AM824, SYT lo (not used) */
  93. /* do transaction and check buf[1-4] are the same against command */
  94. err = fcp_avc_transaction(unit, buf, 8, buf, 8,
  95. BIT(1) | BIT(2) | BIT(3) | BIT(4));
  96. if (err >= 0 && err < 8)
  97. err = -EIO;
  98. else if (buf[0] == 0x08) /* NOT IMPLEMENTED */
  99. err = -ENOSYS;
  100. else if (buf[0] == 0x0a) /* REJECTED */
  101. err = -EINVAL;
  102. else if (buf[0] == 0x0b) /* IN TRANSITION */
  103. err = -EAGAIN;
  104. if (err < 0)
  105. goto end;
  106. /* check sfc field and pick up rate */
  107. sfc = 0x07 & buf[5];
  108. if (sfc >= CIP_SFC_COUNT) {
  109. err = -EAGAIN; /* also in transition */
  110. goto end;
  111. }
  112. *rate = amdtp_rate_table[sfc];
  113. err = 0;
  114. end:
  115. kfree(buf);
  116. return err;
  117. }
  118. EXPORT_SYMBOL(avc_general_get_sig_fmt);
  119. int avc_general_get_plug_info(struct fw_unit *unit, unsigned int subunit_type,
  120. unsigned int subunit_id, unsigned int subfunction,
  121. u8 info[AVC_PLUG_INFO_BUF_BYTES])
  122. {
  123. u8 *buf;
  124. int err;
  125. /* extended subunit in spec.4.2 is not supported */
  126. if ((subunit_type == 0x1E) || (subunit_id == 5))
  127. return -EINVAL;
  128. buf = kzalloc(8, GFP_KERNEL);
  129. if (buf == NULL)
  130. return -ENOMEM;
  131. buf[0] = 0x01; /* AV/C STATUS */
  132. /* UNIT or Subunit, Functionblock */
  133. buf[1] = ((subunit_type & 0x1f) << 3) | (subunit_id & 0x7);
  134. buf[2] = 0x02; /* PLUG INFO */
  135. buf[3] = 0xff & subfunction;
  136. err = fcp_avc_transaction(unit, buf, 8, buf, 8, BIT(1) | BIT(2));
  137. if (err >= 0 && err < 8)
  138. err = -EIO;
  139. else if (buf[0] == 0x08) /* NOT IMPLEMENTED */
  140. err = -ENOSYS;
  141. else if (buf[0] == 0x0a) /* REJECTED */
  142. err = -EINVAL;
  143. else if (buf[0] == 0x0b) /* IN TRANSITION */
  144. err = -EAGAIN;
  145. if (err < 0)
  146. goto end;
  147. info[0] = buf[4];
  148. info[1] = buf[5];
  149. info[2] = buf[6];
  150. info[3] = buf[7];
  151. err = 0;
  152. end:
  153. kfree(buf);
  154. return err;
  155. }
  156. EXPORT_SYMBOL(avc_general_get_plug_info);
  157. static DEFINE_SPINLOCK(transactions_lock);
  158. static LIST_HEAD(transactions);
  159. enum fcp_state {
  160. STATE_PENDING,
  161. STATE_BUS_RESET,
  162. STATE_COMPLETE,
  163. STATE_DEFERRED,
  164. };
  165. struct fcp_transaction {
  166. struct list_head list;
  167. struct fw_unit *unit;
  168. void *response_buffer;
  169. unsigned int response_size;
  170. unsigned int response_match_bytes;
  171. enum fcp_state state;
  172. wait_queue_head_t wait;
  173. bool deferrable;
  174. };
  175. /**
  176. * fcp_avc_transaction - send an AV/C command and wait for its response
  177. * @unit: a unit on the target device
  178. * @command: a buffer containing the command frame; must be DMA-able
  179. * @command_size: the size of @command
  180. * @response: a buffer for the response frame
  181. * @response_size: the maximum size of @response
  182. * @response_match_bytes: a bitmap specifying the bytes used to detect the
  183. * correct response frame
  184. *
  185. * This function sends a FCP command frame to the target and waits for the
  186. * corresponding response frame to be returned.
  187. *
  188. * Because it is possible for multiple FCP transactions to be active at the
  189. * same time, the correct response frame is detected by the value of certain
  190. * bytes. These bytes must be set in @response before calling this function,
  191. * and the corresponding bits must be set in @response_match_bytes.
  192. *
  193. * @command and @response can point to the same buffer.
  194. *
  195. * Returns the actual size of the response frame, or a negative error code.
  196. */
  197. int fcp_avc_transaction(struct fw_unit *unit,
  198. const void *command, unsigned int command_size,
  199. void *response, unsigned int response_size,
  200. unsigned int response_match_bytes)
  201. {
  202. struct fcp_transaction t;
  203. int tcode, ret, tries = 0;
  204. t.unit = unit;
  205. t.response_buffer = response;
  206. t.response_size = response_size;
  207. t.response_match_bytes = response_match_bytes;
  208. t.state = STATE_PENDING;
  209. init_waitqueue_head(&t.wait);
  210. if (*(const u8 *)command == 0x00 || *(const u8 *)command == 0x03)
  211. t.deferrable = true;
  212. spin_lock_irq(&transactions_lock);
  213. list_add_tail(&t.list, &transactions);
  214. spin_unlock_irq(&transactions_lock);
  215. for (;;) {
  216. tcode = command_size == 4 ? TCODE_WRITE_QUADLET_REQUEST
  217. : TCODE_WRITE_BLOCK_REQUEST;
  218. ret = snd_fw_transaction(t.unit, tcode,
  219. CSR_REGISTER_BASE + CSR_FCP_COMMAND,
  220. (void *)command, command_size, 0);
  221. if (ret < 0)
  222. break;
  223. deferred:
  224. wait_event_timeout(t.wait, t.state != STATE_PENDING,
  225. msecs_to_jiffies(FCP_TIMEOUT_MS));
  226. if (t.state == STATE_DEFERRED) {
  227. /*
  228. * 'AV/C General Specification' define no time limit
  229. * on command completion once an INTERIM response has
  230. * been sent. but we promise to finish this function
  231. * for a caller. Here we use FCP_TIMEOUT_MS for next
  232. * interval. This is not in the specification.
  233. */
  234. t.state = STATE_PENDING;
  235. goto deferred;
  236. } else if (t.state == STATE_COMPLETE) {
  237. ret = t.response_size;
  238. break;
  239. } else if (t.state == STATE_BUS_RESET) {
  240. msleep(ERROR_DELAY_MS);
  241. } else if (++tries >= ERROR_RETRIES) {
  242. dev_err(&t.unit->device, "FCP command timed out\n");
  243. ret = -EIO;
  244. break;
  245. }
  246. }
  247. spin_lock_irq(&transactions_lock);
  248. list_del(&t.list);
  249. spin_unlock_irq(&transactions_lock);
  250. return ret;
  251. }
  252. EXPORT_SYMBOL(fcp_avc_transaction);
  253. /**
  254. * fcp_bus_reset - inform the target handler about a bus reset
  255. * @unit: the unit that might be used by fcp_avc_transaction()
  256. *
  257. * This function must be called from the driver's .update handler to inform
  258. * the FCP transaction handler that a bus reset has happened. Any pending FCP
  259. * transactions are retried.
  260. */
  261. void fcp_bus_reset(struct fw_unit *unit)
  262. {
  263. struct fcp_transaction *t;
  264. spin_lock_irq(&transactions_lock);
  265. list_for_each_entry(t, &transactions, list) {
  266. if (t->unit == unit &&
  267. (t->state == STATE_PENDING ||
  268. t->state == STATE_DEFERRED)) {
  269. t->state = STATE_BUS_RESET;
  270. wake_up(&t->wait);
  271. }
  272. }
  273. spin_unlock_irq(&transactions_lock);
  274. }
  275. EXPORT_SYMBOL(fcp_bus_reset);
  276. /* checks whether the response matches the masked bytes in response_buffer */
  277. static bool is_matching_response(struct fcp_transaction *transaction,
  278. const void *response, size_t length)
  279. {
  280. const u8 *p1, *p2;
  281. unsigned int mask, i;
  282. p1 = response;
  283. p2 = transaction->response_buffer;
  284. mask = transaction->response_match_bytes;
  285. for (i = 0; ; ++i) {
  286. if ((mask & 1) && p1[i] != p2[i])
  287. return false;
  288. mask >>= 1;
  289. if (!mask)
  290. return true;
  291. if (--length == 0)
  292. return false;
  293. }
  294. }
  295. static void fcp_response(struct fw_card *card, struct fw_request *request,
  296. int tcode, int destination, int source,
  297. int generation, unsigned long long offset,
  298. void *data, size_t length, void *callback_data)
  299. {
  300. struct fcp_transaction *t;
  301. unsigned long flags;
  302. if (length < 1 || (*(const u8 *)data & 0xf0) != CTS_AVC)
  303. return;
  304. spin_lock_irqsave(&transactions_lock, flags);
  305. list_for_each_entry(t, &transactions, list) {
  306. struct fw_device *device = fw_parent_device(t->unit);
  307. if (device->card != card ||
  308. device->generation != generation)
  309. continue;
  310. smp_rmb(); /* node_id vs. generation */
  311. if (device->node_id != source)
  312. continue;
  313. if (t->state == STATE_PENDING &&
  314. is_matching_response(t, data, length)) {
  315. if (t->deferrable && *(const u8 *)data == 0x0f) {
  316. t->state = STATE_DEFERRED;
  317. } else {
  318. t->state = STATE_COMPLETE;
  319. t->response_size = min_t(unsigned int, length,
  320. t->response_size);
  321. memcpy(t->response_buffer, data,
  322. t->response_size);
  323. }
  324. wake_up(&t->wait);
  325. }
  326. }
  327. spin_unlock_irqrestore(&transactions_lock, flags);
  328. }
  329. static struct fw_address_handler response_register_handler = {
  330. .length = 0x200,
  331. .address_callback = fcp_response,
  332. };
  333. static int __init fcp_module_init(void)
  334. {
  335. static const struct fw_address_region response_register_region = {
  336. .start = CSR_REGISTER_BASE + CSR_FCP_RESPONSE,
  337. .end = CSR_REGISTER_BASE + CSR_FCP_END,
  338. };
  339. fw_core_add_address_handler(&response_register_handler,
  340. &response_register_region);
  341. return 0;
  342. }
  343. static void __exit fcp_module_exit(void)
  344. {
  345. WARN_ON(!list_empty(&transactions));
  346. fw_core_remove_address_handler(&response_register_handler);
  347. }
  348. module_init(fcp_module_init);
  349. module_exit(fcp_module_exit);