2 * Function Control Protocol (IEC 61883-1) helper functions
4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
5 * Licensed under the terms of the GNU General Public License, version 2.
8 #include <linux/device.h>
9 #include <linux/firewire.h>
10 #include <linux/firewire-constants.h>
11 #include <linux/list.h>
12 #include <linux/module.h>
13 #include <linux/sched.h>
14 #include <linux/spinlock.h>
15 #include <linux/wait.h>
16 #include <linux/delay.h>
22 #define ERROR_RETRIES 3
23 #define ERROR_DELAY_MS 5
24 #define FCP_TIMEOUT_MS 125
26 static DEFINE_SPINLOCK(transactions_lock
);
27 static LIST_HEAD(transactions
);
35 struct fcp_transaction
{
36 struct list_head list
;
38 void *response_buffer
;
39 unsigned int response_size
;
40 unsigned int response_match_bytes
;
42 wait_queue_head_t wait
;
46 * fcp_avc_transaction - send an AV/C command and wait for its response
47 * @unit: a unit on the target device
48 * @command: a buffer containing the command frame; must be DMA-able
49 * @command_size: the size of @command
50 * @response: a buffer for the response frame
51 * @response_size: the maximum size of @response
52 * @response_match_bytes: a bitmap specifying the bytes used to detect the
53 * correct response frame
55 * This function sends a FCP command frame to the target and waits for the
56 * corresponding response frame to be returned.
58 * Because it is possible for multiple FCP transactions to be active at the
59 * same time, the correct response frame is detected by the value of certain
60 * bytes. These bytes must be set in @response before calling this function,
61 * and the corresponding bits must be set in @response_match_bytes.
63 * @command and @response can point to the same buffer.
65 * Asynchronous operation (INTERIM, NOTIFY) is not supported at the moment.
67 * Returns the actual size of the response frame, or a negative error code.
69 int fcp_avc_transaction(struct fw_unit
*unit
,
70 const void *command
, unsigned int command_size
,
71 void *response
, unsigned int response_size
,
72 unsigned int response_match_bytes
)
74 struct fcp_transaction t
;
75 int tcode
, ret
, tries
= 0;
78 t
.response_buffer
= response
;
79 t
.response_size
= response_size
;
80 t
.response_match_bytes
= response_match_bytes
;
81 t
.state
= STATE_PENDING
;
82 init_waitqueue_head(&t
.wait
);
84 spin_lock_irq(&transactions_lock
);
85 list_add_tail(&t
.list
, &transactions
);
86 spin_unlock_irq(&transactions_lock
);
89 tcode
= command_size
== 4 ? TCODE_WRITE_QUADLET_REQUEST
90 : TCODE_WRITE_BLOCK_REQUEST
;
91 ret
= snd_fw_transaction(t
.unit
, tcode
,
92 CSR_REGISTER_BASE
+ CSR_FCP_COMMAND
,
93 (void *)command
, command_size
);
97 wait_event_timeout(t
.wait
, t
.state
!= STATE_PENDING
,
98 msecs_to_jiffies(FCP_TIMEOUT_MS
));
100 if (t
.state
== STATE_COMPLETE
) {
101 ret
= t
.response_size
;
103 } else if (t
.state
== STATE_BUS_RESET
) {
104 msleep(ERROR_DELAY_MS
);
105 } else if (++tries
>= ERROR_RETRIES
) {
106 dev_err(&t
.unit
->device
, "FCP command timed out\n");
112 spin_lock_irq(&transactions_lock
);
114 spin_unlock_irq(&transactions_lock
);
118 EXPORT_SYMBOL(fcp_avc_transaction
);
121 * fcp_bus_reset - inform the target handler about a bus reset
122 * @unit: the unit that might be used by fcp_avc_transaction()
124 * This function must be called from the driver's .update handler to inform
125 * the FCP transaction handler that a bus reset has happened. Any pending FCP
126 * transactions are retried.
128 void fcp_bus_reset(struct fw_unit
*unit
)
130 struct fcp_transaction
*t
;
132 spin_lock_irq(&transactions_lock
);
133 list_for_each_entry(t
, &transactions
, list
) {
134 if (t
->unit
== unit
&&
135 t
->state
== STATE_PENDING
) {
136 t
->state
= STATE_BUS_RESET
;
140 spin_unlock_irq(&transactions_lock
);
142 EXPORT_SYMBOL(fcp_bus_reset
);
144 /* checks whether the response matches the masked bytes in response_buffer */
145 static bool is_matching_response(struct fcp_transaction
*transaction
,
146 const void *response
, size_t length
)
149 unsigned int mask
, i
;
152 p2
= transaction
->response_buffer
;
153 mask
= transaction
->response_match_bytes
;
156 if ((mask
& 1) && p1
[i
] != p2
[i
])
166 static void fcp_response(struct fw_card
*card
, struct fw_request
*request
,
167 int tcode
, int destination
, int source
,
168 int generation
, unsigned long long offset
,
169 void *data
, size_t length
, void *callback_data
)
171 struct fcp_transaction
*t
;
174 if (length
< 1 || (*(const u8
*)data
& 0xf0) != CTS_AVC
)
177 spin_lock_irqsave(&transactions_lock
, flags
);
178 list_for_each_entry(t
, &transactions
, list
) {
179 struct fw_device
*device
= fw_parent_device(t
->unit
);
180 if (device
->card
!= card
||
181 device
->generation
!= generation
)
183 smp_rmb(); /* node_id vs. generation */
184 if (device
->node_id
!= source
)
187 if (t
->state
== STATE_PENDING
&&
188 is_matching_response(t
, data
, length
)) {
189 t
->state
= STATE_COMPLETE
;
190 t
->response_size
= min((unsigned int)length
,
192 memcpy(t
->response_buffer
, data
, t
->response_size
);
196 spin_unlock_irqrestore(&transactions_lock
, flags
);
199 static struct fw_address_handler response_register_handler
= {
201 .address_callback
= fcp_response
,
204 static int __init
fcp_module_init(void)
206 static const struct fw_address_region response_register_region
= {
207 .start
= CSR_REGISTER_BASE
+ CSR_FCP_RESPONSE
,
208 .end
= CSR_REGISTER_BASE
+ CSR_FCP_END
,
211 fw_core_add_address_handler(&response_register_handler
,
212 &response_register_region
);
217 static void __exit
fcp_module_exit(void)
219 WARN_ON(!list_empty(&transactions
));
220 fw_core_remove_address_handler(&response_register_handler
);
223 module_init(fcp_module_init
);
224 module_exit(fcp_module_exit
);