firewire: core: remove obsolete assertions
[deliverable/linux.git] / drivers / firewire / fw-transaction.c
CommitLineData
c781c06d
KH
1/*
2 * Core IEEE1394 transaction logic
3038e353
KH
3 *
4 * Copyright (C) 2004-2006 Kristian Hoegsberg <krh@bitplanet.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
2a0a2590 21#include <linux/completion.h>
d6053e08 22#include <linux/idr.h>
3038e353 23#include <linux/kernel.h>
ae1e5355 24#include <linux/kref.h>
3038e353 25#include <linux/module.h>
c0220d68 26#include <linux/mutex.h>
3038e353
KH
27#include <linux/init.h>
28#include <linux/interrupt.h>
29#include <linux/pci.h>
30#include <linux/delay.h>
31#include <linux/poll.h>
32#include <linux/list.h>
33#include <linux/kthread.h>
34#include <asm/uaccess.h>
3038e353
KH
35
36#include "fw-transaction.h"
37#include "fw-topology.h"
19a15b93 38#include "fw-device.h"
3038e353 39
a77754a7
KH
40#define HEADER_PRI(pri) ((pri) << 0)
41#define HEADER_TCODE(tcode) ((tcode) << 4)
42#define HEADER_RETRY(retry) ((retry) << 8)
43#define HEADER_TLABEL(tlabel) ((tlabel) << 10)
44#define HEADER_DESTINATION(destination) ((destination) << 16)
45#define HEADER_SOURCE(source) ((source) << 16)
46#define HEADER_RCODE(rcode) ((rcode) << 12)
47#define HEADER_OFFSET_HIGH(offset_high) ((offset_high) << 0)
48#define HEADER_DATA_LENGTH(length) ((length) << 16)
49#define HEADER_EXTENDED_TCODE(tcode) ((tcode) << 0)
50
51#define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
52#define HEADER_GET_TLABEL(q) (((q) >> 10) & 0x3f)
53#define HEADER_GET_RCODE(q) (((q) >> 12) & 0x0f)
54#define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
55#define HEADER_GET_SOURCE(q) (((q) >> 16) & 0xffff)
56#define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
57#define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
58#define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
59
a7ea6782
SR
60#define HEADER_DESTINATION_IS_BROADCAST(q) \
61 (((q) & HEADER_DESTINATION(0x3f)) == HEADER_DESTINATION(0x3f))
62
a77754a7
KH
63#define PHY_CONFIG_GAP_COUNT(gap_count) (((gap_count) << 16) | (1 << 22))
64#define PHY_CONFIG_ROOT_ID(node_id) ((((node_id) & 0x3f) << 24) | (1 << 23))
65#define PHY_IDENTIFIER(id) ((id) << 30)
3038e353 66
730c32f5
KH
67static int
68close_transaction(struct fw_transaction *transaction,
69 struct fw_card *card, int rcode,
70 u32 *payload, size_t length)
3038e353 71{
730c32f5 72 struct fw_transaction *t;
3038e353
KH
73 unsigned long flags;
74
75 spin_lock_irqsave(&card->lock, flags);
730c32f5
KH
76 list_for_each_entry(t, &card->transaction_list, link) {
77 if (t == transaction) {
78 list_del(&t->link);
79 card->tlabel_mask &= ~(1 << t->tlabel);
80 break;
81 }
82 }
3038e353
KH
83 spin_unlock_irqrestore(&card->lock, flags);
84
730c32f5
KH
85 if (&t->link != &card->transaction_list) {
86 t->callback(card, rcode, payload, length, t->callback_data);
87 return 0;
88 }
89
90 return -ENOENT;
3038e353
KH
91}
92
c781c06d
KH
93/*
94 * Only valid for transactions that are potentially pending (ie have
95 * been sent).
96 */
730c32f5
KH
97int
98fw_cancel_transaction(struct fw_card *card,
99 struct fw_transaction *transaction)
100{
c781c06d
KH
101 /*
102 * Cancel the packet transmission if it's still queued. That
730c32f5 103 * will call the packet transmission callback which cancels
c781c06d
KH
104 * the transaction.
105 */
730c32f5
KH
106
107 if (card->driver->cancel_packet(card, &transaction->packet) == 0)
108 return 0;
109
c781c06d
KH
110 /*
111 * If the request packet has already been sent, we need to see
112 * if the transaction is still pending and remove it in that case.
113 */
730c32f5
KH
114
115 return close_transaction(transaction, card, RCODE_CANCELLED, NULL, 0);
116}
117EXPORT_SYMBOL(fw_cancel_transaction);
118
3038e353
KH
119static void
120transmit_complete_callback(struct fw_packet *packet,
121 struct fw_card *card, int status)
122{
123 struct fw_transaction *t =
124 container_of(packet, struct fw_transaction, packet);
125
126 switch (status) {
127 case ACK_COMPLETE:
128 close_transaction(t, card, RCODE_COMPLETE, NULL, 0);
129 break;
130 case ACK_PENDING:
131 t->timestamp = packet->timestamp;
132 break;
133 case ACK_BUSY_X:
134 case ACK_BUSY_A:
135 case ACK_BUSY_B:
136 close_transaction(t, card, RCODE_BUSY, NULL, 0);
137 break;
138 case ACK_DATA_ERROR:
e5f49c3b
KH
139 close_transaction(t, card, RCODE_DATA_ERROR, NULL, 0);
140 break;
3038e353 141 case ACK_TYPE_ERROR:
e5f49c3b 142 close_transaction(t, card, RCODE_TYPE_ERROR, NULL, 0);
3038e353
KH
143 break;
144 default:
c781c06d
KH
145 /*
146 * In this case the ack is really a juju specific
147 * rcode, so just forward that to the callback.
148 */
e5f49c3b 149 close_transaction(t, card, status, NULL, 0);
3038e353
KH
150 break;
151 }
152}
153
95688e97 154static void
36bfe49d 155fw_fill_request(struct fw_packet *packet, int tcode, int tlabel,
b9549bc6 156 int destination_id, int source_id, int generation, int speed,
36bfe49d 157 unsigned long long offset, void *payload, size_t length)
3038e353
KH
158{
159 int ext_tcode;
160
161 if (tcode > 0x10) {
8f9f963e 162 ext_tcode = tcode & ~0x10;
3038e353
KH
163 tcode = TCODE_LOCK_REQUEST;
164 } else
165 ext_tcode = 0;
166
167 packet->header[0] =
a77754a7
KH
168 HEADER_RETRY(RETRY_X) |
169 HEADER_TLABEL(tlabel) |
170 HEADER_TCODE(tcode) |
b9549bc6 171 HEADER_DESTINATION(destination_id);
3038e353 172 packet->header[1] =
a77754a7 173 HEADER_OFFSET_HIGH(offset >> 32) | HEADER_SOURCE(source_id);
3038e353
KH
174 packet->header[2] =
175 offset;
176
177 switch (tcode) {
178 case TCODE_WRITE_QUADLET_REQUEST:
179 packet->header[3] = *(u32 *)payload;
180 packet->header_length = 16;
181 packet->payload_length = 0;
182 break;
183
184 case TCODE_LOCK_REQUEST:
185 case TCODE_WRITE_BLOCK_REQUEST:
186 packet->header[3] =
a77754a7
KH
187 HEADER_DATA_LENGTH(length) |
188 HEADER_EXTENDED_TCODE(ext_tcode);
3038e353
KH
189 packet->header_length = 16;
190 packet->payload = payload;
191 packet->payload_length = length;
192 break;
193
194 case TCODE_READ_QUADLET_REQUEST:
195 packet->header_length = 12;
196 packet->payload_length = 0;
197 break;
198
199 case TCODE_READ_BLOCK_REQUEST:
200 packet->header[3] =
a77754a7
KH
201 HEADER_DATA_LENGTH(length) |
202 HEADER_EXTENDED_TCODE(ext_tcode);
3038e353
KH
203 packet->header_length = 16;
204 packet->payload_length = 0;
205 break;
206 }
207
208 packet->speed = speed;
209 packet->generation = generation;
730c32f5 210 packet->ack = 0;
1d1dc5e8 211 packet->payload_bus = 0;
3038e353
KH
212}
213
214/**
215 * This function provides low-level access to the IEEE1394 transaction
216 * logic. Most C programs would use either fw_read(), fw_write() or
217 * fw_lock() instead - those function are convenience wrappers for
218 * this function. The fw_send_request() function is primarily
219 * provided as a flexible, one-stop entry point for languages bindings
220 * and protocol bindings.
221 *
222 * FIXME: Document this function further, in particular the possible
223 * values for rcode in the callback. In short, we map ACK_COMPLETE to
224 * RCODE_COMPLETE, internal errors set errno and set rcode to
225 * RCODE_SEND_ERROR (which is out of range for standard ieee1394
226 * rcodes). All other rcodes are forwarded unchanged. For all
227 * errors, payload is NULL, length is 0.
228 *
229 * Can not expect the callback to be called before the function
230 * returns, though this does happen in some cases (ACK_COMPLETE and
231 * errors).
232 *
233 * The payload is only used for write requests and must not be freed
234 * until the callback has been called.
235 *
236 * @param card the card from which to send the request
237 * @param tcode the tcode for this transaction. Do not use
dbe7f76d 238 * TCODE_LOCK_REQUEST directly, instead use TCODE_LOCK_MASK_SWAP
3038e353 239 * etc. to specify tcode and ext_tcode.
907293d7 240 * @param node_id the destination node ID (bus ID and PHY ID concatenated)
3038e353
KH
241 * @param generation the generation for which node_id is valid
242 * @param speed the speed to use for sending the request
243 * @param offset the 48 bit offset on the destination node
244 * @param payload the data payload for the request subaction
245 * @param length the length in bytes of the data to read
246 * @param callback function to be called when the transaction is completed
247 * @param callback_data pointer to arbitrary data, which will be
248 * passed to the callback
249 */
250void
251fw_send_request(struct fw_card *card, struct fw_transaction *t,
1e119fa9 252 int tcode, int destination_id, int generation, int speed,
3038e353
KH
253 unsigned long long offset,
254 void *payload, size_t length,
255 fw_transaction_callback_t callback, void *callback_data)
256{
257 unsigned long flags;
b9549bc6 258 int tlabel;
3038e353 259
c781c06d
KH
260 /*
261 * Bump the flush timer up 100ms first of all so we
262 * don't race with a flush timer callback.
263 */
3038e353
KH
264
265 mod_timer(&card->flush_timer, jiffies + DIV_ROUND_UP(HZ, 10));
266
c781c06d
KH
267 /*
268 * Allocate tlabel from the bitmap and put the transaction on
269 * the list while holding the card spinlock.
270 */
3038e353
KH
271
272 spin_lock_irqsave(&card->lock, flags);
273
274 tlabel = card->current_tlabel;
275 if (card->tlabel_mask & (1 << tlabel)) {
276 spin_unlock_irqrestore(&card->lock, flags);
277 callback(card, RCODE_SEND_ERROR, NULL, 0, callback_data);
278 return;
279 }
280
281 card->current_tlabel = (card->current_tlabel + 1) & 0x1f;
282 card->tlabel_mask |= (1 << tlabel);
283
1e119fa9 284 t->node_id = destination_id;
3038e353
KH
285 t->tlabel = tlabel;
286 t->callback = callback;
287 t->callback_data = callback_data;
288
1e119fa9
JF
289 fw_fill_request(&t->packet, tcode, t->tlabel,
290 destination_id, card->node_id, generation,
291 speed, offset, payload, length);
3038e353
KH
292 t->packet.callback = transmit_complete_callback;
293
e9aeb46c
SR
294 list_add_tail(&t->link, &card->transaction_list);
295
296 spin_unlock_irqrestore(&card->lock, flags);
297
3038e353
KH
298 card->driver->send_request(card, &t->packet);
299}
300EXPORT_SYMBOL(fw_send_request);
301
1e119fa9
JF
302struct transaction_callback_data {
303 struct completion done;
304 void *payload;
305 int rcode;
306};
307
308static void transaction_callback(struct fw_card *card, int rcode,
309 void *payload, size_t length, void *data)
310{
311 struct transaction_callback_data *d = data;
312
313 if (rcode == RCODE_COMPLETE)
314 memcpy(d->payload, payload, length);
315 d->rcode = rcode;
316 complete(&d->done);
317}
318
319/**
320 * fw_run_transaction - send request and sleep until transaction is completed
321 *
322 * Returns the RCODE.
323 */
324int fw_run_transaction(struct fw_card *card, int tcode, int destination_id,
325 int generation, int speed, unsigned long long offset,
326 void *data, size_t length)
327{
328 struct transaction_callback_data d;
329 struct fw_transaction t;
330
331 init_completion(&d.done);
332 d.payload = data;
333 fw_send_request(card, &t, tcode, destination_id, generation, speed,
334 offset, data, length, transaction_callback, &d);
335 wait_for_completion(&d.done);
336
337 return d.rcode;
338}
339EXPORT_SYMBOL(fw_run_transaction);
340
c0220d68
SR
341static DEFINE_MUTEX(phy_config_mutex);
342static DECLARE_COMPLETION(phy_config_done);
ae1e5355
SR
343
344static void transmit_phy_packet_callback(struct fw_packet *packet,
345 struct fw_card *card, int status)
3038e353 346{
c0220d68 347 complete(&phy_config_done);
3038e353
KH
348}
349
c0220d68
SR
350static struct fw_packet phy_config_packet = {
351 .header_length = 8,
352 .payload_length = 0,
353 .speed = SCODE_100,
354 .callback = transmit_phy_packet_callback,
355};
356
83db801c
KH
357void fw_send_phy_config(struct fw_card *card,
358 int node_id, int generation, int gap_count)
3038e353 359{
ae1e5355 360 long timeout = DIV_ROUND_UP(HZ, 10);
2a0a2590
SR
361 u32 data = PHY_IDENTIFIER(PHY_PACKET_CONFIG) |
362 PHY_CONFIG_ROOT_ID(node_id) |
363 PHY_CONFIG_GAP_COUNT(gap_count);
364
c0220d68
SR
365 mutex_lock(&phy_config_mutex);
366
367 phy_config_packet.header[0] = data;
368 phy_config_packet.header[1] = ~data;
369 phy_config_packet.generation = generation;
370 INIT_COMPLETION(phy_config_done);
371
372 card->driver->send_request(card, &phy_config_packet);
373 wait_for_completion_timeout(&phy_config_done, timeout);
ae1e5355 374
c0220d68 375 mutex_unlock(&phy_config_mutex);
3038e353
KH
376}
377
378void fw_flush_transactions(struct fw_card *card)
379{
380 struct fw_transaction *t, *next;
381 struct list_head list;
382 unsigned long flags;
383
384 INIT_LIST_HEAD(&list);
385 spin_lock_irqsave(&card->lock, flags);
386 list_splice_init(&card->transaction_list, &list);
387 card->tlabel_mask = 0;
388 spin_unlock_irqrestore(&card->lock, flags);
389
730c32f5
KH
390 list_for_each_entry_safe(t, next, &list, link) {
391 card->driver->cancel_packet(card, &t->packet);
392
c781c06d
KH
393 /*
394 * At this point cancel_packet will never call the
730c32f5 395 * transaction callback, since we just took all the
c781c06d
KH
396 * transactions out of the list. So do it here.
397 */
3038e353 398 t->callback(card, RCODE_CANCELLED, NULL, 0, t->callback_data);
730c32f5 399 }
3038e353
KH
400}
401
402static struct fw_address_handler *
403lookup_overlapping_address_handler(struct list_head *list,
404 unsigned long long offset, size_t length)
405{
406 struct fw_address_handler *handler;
407
408 list_for_each_entry(handler, list, link) {
409 if (handler->offset < offset + length &&
410 offset < handler->offset + handler->length)
411 return handler;
412 }
413
414 return NULL;
415}
416
417static struct fw_address_handler *
418lookup_enclosing_address_handler(struct list_head *list,
419 unsigned long long offset, size_t length)
420{
421 struct fw_address_handler *handler;
422
423 list_for_each_entry(handler, list, link) {
424 if (handler->offset <= offset &&
425 offset + length <= handler->offset + handler->length)
426 return handler;
427 }
428
429 return NULL;
430}
431
432static DEFINE_SPINLOCK(address_handler_lock);
433static LIST_HEAD(address_handler_list);
434
21ebcd12 435const struct fw_address_region fw_high_memory_region =
5af4e5ea 436 { .start = 0x000100000000ULL, .end = 0xffffe0000000ULL, };
db8be076
AB
437EXPORT_SYMBOL(fw_high_memory_region);
438
439#if 0
440const struct fw_address_region fw_low_memory_region =
441 { .start = 0x000000000000ULL, .end = 0x000100000000ULL, };
21ebcd12 442const struct fw_address_region fw_private_region =
5af4e5ea 443 { .start = 0xffffe0000000ULL, .end = 0xfffff0000000ULL, };
21ebcd12 444const struct fw_address_region fw_csr_region =
cca60977
JW
445 { .start = CSR_REGISTER_BASE,
446 .end = CSR_REGISTER_BASE | CSR_CONFIG_ROM_END, };
21ebcd12 447const struct fw_address_region fw_unit_space_region =
5af4e5ea 448 { .start = 0xfffff0000900ULL, .end = 0x1000000000000ULL, };
db8be076 449#endif /* 0 */
3038e353
KH
450
451/**
3e0b5f0d
SR
452 * fw_core_add_address_handler - register for incoming requests
453 * @handler: callback
454 * @region: region in the IEEE 1212 node space address range
455 *
456 * region->start, ->end, and handler->length have to be quadlet-aligned.
457 *
458 * When a request is received that falls within the specified address range,
459 * the specified callback is invoked. The parameters passed to the callback
460 * give the details of the particular request.
1415d918
SR
461 *
462 * Return value: 0 on success, non-zero otherwise.
463 * The start offset of the handler's address region is determined by
464 * fw_core_add_address_handler() and is returned in handler->offset.
3038e353 465 */
3038e353
KH
466int
467fw_core_add_address_handler(struct fw_address_handler *handler,
21ebcd12 468 const struct fw_address_region *region)
3038e353
KH
469{
470 struct fw_address_handler *other;
471 unsigned long flags;
472 int ret = -EBUSY;
473
3e0b5f0d
SR
474 if (region->start & 0xffff000000000003ULL ||
475 region->end & 0xffff000000000003ULL ||
476 region->start >= region->end ||
477 handler->length & 3 ||
478 handler->length == 0)
479 return -EINVAL;
480
3038e353
KH
481 spin_lock_irqsave(&address_handler_lock, flags);
482
3e0b5f0d 483 handler->offset = region->start;
3038e353
KH
484 while (handler->offset + handler->length <= region->end) {
485 other =
486 lookup_overlapping_address_handler(&address_handler_list,
487 handler->offset,
488 handler->length);
489 if (other != NULL) {
3e0b5f0d 490 handler->offset += other->length;
3038e353
KH
491 } else {
492 list_add_tail(&handler->link, &address_handler_list);
493 ret = 0;
494 break;
495 }
496 }
497
498 spin_unlock_irqrestore(&address_handler_lock, flags);
499
500 return ret;
501}
3038e353
KH
502EXPORT_SYMBOL(fw_core_add_address_handler);
503
504/**
44be21b6 505 * fw_core_remove_address_handler - unregister an address handler
3038e353 506 */
3038e353
KH
507void fw_core_remove_address_handler(struct fw_address_handler *handler)
508{
509 unsigned long flags;
510
511 spin_lock_irqsave(&address_handler_lock, flags);
512 list_del(&handler->link);
513 spin_unlock_irqrestore(&address_handler_lock, flags);
514}
3038e353
KH
515EXPORT_SYMBOL(fw_core_remove_address_handler);
516
517struct fw_request {
518 struct fw_packet response;
36bfe49d 519 u32 request_header[4];
3038e353
KH
520 int ack;
521 u32 length;
522 u32 data[0];
523};
524
525static void
526free_response_callback(struct fw_packet *packet,
527 struct fw_card *card, int status)
528{
529 struct fw_request *request;
530
531 request = container_of(packet, struct fw_request, response);
532 kfree(request);
533}
534
93c4cceb 535void
36bfe49d
KH
536fw_fill_response(struct fw_packet *response, u32 *request_header,
537 int rcode, void *payload, size_t length)
3038e353
KH
538{
539 int tcode, tlabel, extended_tcode, source, destination;
540
a77754a7
KH
541 tcode = HEADER_GET_TCODE(request_header[0]);
542 tlabel = HEADER_GET_TLABEL(request_header[0]);
543 source = HEADER_GET_DESTINATION(request_header[0]);
544 destination = HEADER_GET_SOURCE(request_header[1]);
545 extended_tcode = HEADER_GET_EXTENDED_TCODE(request_header[3]);
3038e353
KH
546
547 response->header[0] =
a77754a7
KH
548 HEADER_RETRY(RETRY_1) |
549 HEADER_TLABEL(tlabel) |
550 HEADER_DESTINATION(destination);
36bfe49d 551 response->header[1] =
a77754a7
KH
552 HEADER_SOURCE(source) |
553 HEADER_RCODE(rcode);
3038e353
KH
554 response->header[2] = 0;
555
556 switch (tcode) {
557 case TCODE_WRITE_QUADLET_REQUEST:
558 case TCODE_WRITE_BLOCK_REQUEST:
a77754a7 559 response->header[0] |= HEADER_TCODE(TCODE_WRITE_RESPONSE);
3038e353
KH
560 response->header_length = 12;
561 response->payload_length = 0;
562 break;
563
564 case TCODE_READ_QUADLET_REQUEST:
565 response->header[0] |=
a77754a7 566 HEADER_TCODE(TCODE_READ_QUADLET_RESPONSE);
93c4cceb
KH
567 if (payload != NULL)
568 response->header[3] = *(u32 *)payload;
569 else
570 response->header[3] = 0;
3038e353
KH
571 response->header_length = 16;
572 response->payload_length = 0;
573 break;
574
575 case TCODE_READ_BLOCK_REQUEST:
576 case TCODE_LOCK_REQUEST:
a77754a7 577 response->header[0] |= HEADER_TCODE(tcode + 2);
3038e353 578 response->header[3] =
a77754a7
KH
579 HEADER_DATA_LENGTH(length) |
580 HEADER_EXTENDED_TCODE(extended_tcode);
3038e353 581 response->header_length = 16;
36bfe49d
KH
582 response->payload = payload;
583 response->payload_length = length;
3038e353
KH
584 break;
585
586 default:
587 BUG();
588 return;
589 }
1d1dc5e8
SR
590
591 response->payload_bus = 0;
3038e353 592}
93c4cceb 593EXPORT_SYMBOL(fw_fill_response);
3038e353
KH
594
595static struct fw_request *
2639a6fb 596allocate_request(struct fw_packet *p)
3038e353
KH
597{
598 struct fw_request *request;
599 u32 *data, length;
2639a6fb 600 int request_tcode, t;
3038e353 601
a77754a7 602 request_tcode = HEADER_GET_TCODE(p->header[0]);
3038e353
KH
603 switch (request_tcode) {
604 case TCODE_WRITE_QUADLET_REQUEST:
2639a6fb 605 data = &p->header[3];
3038e353
KH
606 length = 4;
607 break;
608
609 case TCODE_WRITE_BLOCK_REQUEST:
610 case TCODE_LOCK_REQUEST:
2639a6fb 611 data = p->payload;
a77754a7 612 length = HEADER_GET_DATA_LENGTH(p->header[3]);
3038e353
KH
613 break;
614
615 case TCODE_READ_QUADLET_REQUEST:
616 data = NULL;
617 length = 4;
618 break;
619
620 case TCODE_READ_BLOCK_REQUEST:
621 data = NULL;
a77754a7 622 length = HEADER_GET_DATA_LENGTH(p->header[3]);
3038e353
KH
623 break;
624
625 default:
0bf607c5
SR
626 fw_error("ERROR - corrupt request received - %08x %08x %08x\n",
627 p->header[0], p->header[1], p->header[2]);
3038e353
KH
628 return NULL;
629 }
630
2d826cc5 631 request = kmalloc(sizeof(*request) + length, GFP_ATOMIC);
3038e353
KH
632 if (request == NULL)
633 return NULL;
634
2639a6fb
KH
635 t = (p->timestamp & 0x1fff) + 4000;
636 if (t >= 8000)
637 t = (p->timestamp & ~0x1fff) + 0x2000 + t - 8000;
638 else
639 t = (p->timestamp & ~0x1fff) + t;
640
641 request->response.speed = p->speed;
642 request->response.timestamp = t;
643 request->response.generation = p->generation;
730c32f5 644 request->response.ack = 0;
3038e353 645 request->response.callback = free_response_callback;
2639a6fb 646 request->ack = p->ack;
93c4cceb 647 request->length = length;
3038e353 648 if (data)
6e2e8424 649 memcpy(request->data, data, length);
3038e353 650
2d826cc5 651 memcpy(request->request_header, p->header, sizeof(p->header));
3038e353
KH
652
653 return request;
654}
655
656void
657fw_send_response(struct fw_card *card, struct fw_request *request, int rcode)
658{
a7ea6782
SR
659 /* unified transaction or broadcast transaction: don't respond */
660 if (request->ack != ACK_PENDING ||
661 HEADER_DESTINATION_IS_BROADCAST(request->request_header[0])) {
9c9bdf4d 662 kfree(request);
3038e353 663 return;
9c9bdf4d 664 }
3038e353 665
36bfe49d
KH
666 if (rcode == RCODE_COMPLETE)
667 fw_fill_response(&request->response, request->request_header,
668 rcode, request->data, request->length);
669 else
670 fw_fill_response(&request->response, request->request_header,
671 rcode, NULL, 0);
3038e353
KH
672
673 card->driver->send_response(card, &request->response);
674}
3038e353
KH
675EXPORT_SYMBOL(fw_send_response);
676
677void
2639a6fb 678fw_core_handle_request(struct fw_card *card, struct fw_packet *p)
3038e353
KH
679{
680 struct fw_address_handler *handler;
681 struct fw_request *request;
682 unsigned long long offset;
683 unsigned long flags;
2639a6fb 684 int tcode, destination, source;
3038e353 685
2639a6fb 686 if (p->ack != ACK_PENDING && p->ack != ACK_COMPLETE)
3038e353
KH
687 return;
688
2639a6fb 689 request = allocate_request(p);
3038e353
KH
690 if (request == NULL) {
691 /* FIXME: send statically allocated busy packet. */
692 return;
693 }
694
695 offset =
696 ((unsigned long long)
a77754a7
KH
697 HEADER_GET_OFFSET_HIGH(p->header[1]) << 32) | p->header[2];
698 tcode = HEADER_GET_TCODE(p->header[0]);
699 destination = HEADER_GET_DESTINATION(p->header[0]);
478b233e 700 source = HEADER_GET_SOURCE(p->header[1]);
3038e353
KH
701
702 spin_lock_irqsave(&address_handler_lock, flags);
703 handler = lookup_enclosing_address_handler(&address_handler_list,
704 offset, request->length);
705 spin_unlock_irqrestore(&address_handler_lock, flags);
706
c781c06d
KH
707 /*
708 * FIXME: lookup the fw_node corresponding to the sender of
3038e353
KH
709 * this request and pass that to the address handler instead
710 * of the node ID. We may also want to move the address
711 * allocations to fw_node so we only do this callback if the
c781c06d
KH
712 * upper layers registered it for this node.
713 */
3038e353
KH
714
715 if (handler == NULL)
716 fw_send_response(card, request, RCODE_ADDRESS_ERROR);
717 else
718 handler->address_callback(card, request,
719 tcode, destination, source,
2639a6fb 720 p->generation, p->speed, offset,
3038e353
KH
721 request->data, request->length,
722 handler->callback_data);
723}
3038e353
KH
724EXPORT_SYMBOL(fw_core_handle_request);
725
726void
2639a6fb 727fw_core_handle_response(struct fw_card *card, struct fw_packet *p)
3038e353
KH
728{
729 struct fw_transaction *t;
730 unsigned long flags;
731 u32 *data;
732 size_t data_length;
733 int tcode, tlabel, destination, source, rcode;
734
a77754a7
KH
735 tcode = HEADER_GET_TCODE(p->header[0]);
736 tlabel = HEADER_GET_TLABEL(p->header[0]);
737 destination = HEADER_GET_DESTINATION(p->header[0]);
738 source = HEADER_GET_SOURCE(p->header[1]);
739 rcode = HEADER_GET_RCODE(p->header[1]);
3038e353
KH
740
741 spin_lock_irqsave(&card->lock, flags);
742 list_for_each_entry(t, &card->transaction_list, link) {
743 if (t->node_id == source && t->tlabel == tlabel) {
744 list_del(&t->link);
745 card->tlabel_mask &= ~(1 << t->tlabel);
746 break;
747 }
748 }
749 spin_unlock_irqrestore(&card->lock, flags);
750
751 if (&t->link == &card->transaction_list) {
32b46093
KH
752 fw_notify("Unsolicited response (source %x, tlabel %x)\n",
753 source, tlabel);
3038e353
KH
754 return;
755 }
756
c781c06d
KH
757 /*
758 * FIXME: sanity check packet, is length correct, does tcodes
759 * and addresses match.
760 */
3038e353
KH
761
762 switch (tcode) {
763 case TCODE_READ_QUADLET_RESPONSE:
2639a6fb 764 data = (u32 *) &p->header[3];
3038e353
KH
765 data_length = 4;
766 break;
767
768 case TCODE_WRITE_RESPONSE:
769 data = NULL;
770 data_length = 0;
771 break;
772
773 case TCODE_READ_BLOCK_RESPONSE:
774 case TCODE_LOCK_RESPONSE:
93c4cceb 775 data = p->payload;
a77754a7 776 data_length = HEADER_GET_DATA_LENGTH(p->header[3]);
3038e353
KH
777 break;
778
779 default:
780 /* Should never happen, this is just to shut up gcc. */
781 data = NULL;
782 data_length = 0;
783 break;
784 }
785
10a4c735
SR
786 /*
787 * The response handler may be executed while the request handler
788 * is still pending. Cancel the request handler.
789 */
790 card->driver->cancel_packet(card, &t->packet);
791
3038e353
KH
792 t->callback(card, rcode, data, data_length, t->callback_data);
793}
3038e353
KH
794EXPORT_SYMBOL(fw_core_handle_response);
795
ae57988f 796static const struct fw_address_region topology_map_region =
cca60977
JW
797 { .start = CSR_REGISTER_BASE | CSR_TOPOLOGY_MAP,
798 .end = CSR_REGISTER_BASE | CSR_TOPOLOGY_MAP_END, };
473d28c7
KH
799
800static void
801handle_topology_map(struct fw_card *card, struct fw_request *request,
802 int tcode, int destination, int source,
803 int generation, int speed,
804 unsigned long long offset,
805 void *payload, size_t length, void *callback_data)
806{
807 int i, start, end;
efbf390a 808 __be32 *map;
473d28c7
KH
809
810 if (!TCODE_IS_READ_REQUEST(tcode)) {
811 fw_send_response(card, request, RCODE_TYPE_ERROR);
812 return;
813 }
814
815 if ((offset & 3) > 0 || (length & 3) > 0) {
816 fw_send_response(card, request, RCODE_ADDRESS_ERROR);
817 return;
818 }
819
820 start = (offset - topology_map_region.start) / 4;
821 end = start + length / 4;
822 map = payload;
823
824 for (i = 0; i < length / 4; i++)
825 map[i] = cpu_to_be32(card->topology_map[start + i]);
826
827 fw_send_response(card, request, RCODE_COMPLETE);
828}
829
830static struct fw_address_handler topology_map = {
d60d7f1d 831 .length = 0x200,
473d28c7
KH
832 .address_callback = handle_topology_map,
833};
834
ae57988f 835static const struct fw_address_region registers_region =
cca60977
JW
836 { .start = CSR_REGISTER_BASE,
837 .end = CSR_REGISTER_BASE | CSR_CONFIG_ROM, };
d60d7f1d
KH
838
839static void
840handle_registers(struct fw_card *card, struct fw_request *request,
841 int tcode, int destination, int source,
842 int generation, int speed,
843 unsigned long long offset,
844 void *payload, size_t length, void *callback_data)
845{
15f0d833 846 int reg = offset & ~CSR_REGISTER_BASE;
d60d7f1d
KH
847 unsigned long long bus_time;
848 __be32 *data = payload;
e534fe16 849 int rcode = RCODE_COMPLETE;
d60d7f1d
KH
850
851 switch (reg) {
852 case CSR_CYCLE_TIME:
853 case CSR_BUS_TIME:
854 if (!TCODE_IS_READ_REQUEST(tcode) || length != 4) {
e534fe16 855 rcode = RCODE_TYPE_ERROR;
d60d7f1d
KH
856 break;
857 }
858
859 bus_time = card->driver->get_bus_time(card);
860 if (reg == CSR_CYCLE_TIME)
861 *data = cpu_to_be32(bus_time);
862 else
863 *data = cpu_to_be32(bus_time >> 25);
e534fe16
SR
864 break;
865
866 case CSR_BROADCAST_CHANNEL:
867 if (tcode == TCODE_READ_QUADLET_REQUEST)
868 *data = cpu_to_be32(card->broadcast_channel);
869 else if (tcode == TCODE_WRITE_QUADLET_REQUEST)
870 card->broadcast_channel =
871 (be32_to_cpu(*data) & BROADCAST_CHANNEL_VALID) |
872 BROADCAST_CHANNEL_INITIAL;
873 else
874 rcode = RCODE_TYPE_ERROR;
d60d7f1d
KH
875 break;
876
877 case CSR_BUS_MANAGER_ID:
878 case CSR_BANDWIDTH_AVAILABLE:
879 case CSR_CHANNELS_AVAILABLE_HI:
880 case CSR_CHANNELS_AVAILABLE_LO:
c781c06d
KH
881 /*
882 * FIXME: these are handled by the OHCI hardware and
d60d7f1d
KH
883 * the stack never sees these request. If we add
884 * support for a new type of controller that doesn't
885 * handle this in hardware we need to deal with these
c781c06d
KH
886 * transactions.
887 */
d60d7f1d
KH
888 BUG();
889 break;
890
891 case CSR_BUSY_TIMEOUT:
892 /* FIXME: Implement this. */
e534fe16 893
d60d7f1d 894 default:
e534fe16 895 rcode = RCODE_ADDRESS_ERROR;
d60d7f1d
KH
896 break;
897 }
e534fe16
SR
898
899 fw_send_response(card, request, rcode);
d60d7f1d
KH
900}
901
902static struct fw_address_handler registers = {
903 .length = 0x400,
904 .address_callback = handle_registers,
905};
906
3038e353
KH
907MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
908MODULE_DESCRIPTION("Core IEEE1394 transaction logic");
909MODULE_LICENSE("GPL");
910
937f6879 911static const u32 vendor_textual_descriptor[] = {
3038e353 912 /* textual descriptor leaf () */
937f6879 913 0x00060000,
3038e353
KH
914 0x00000000,
915 0x00000000,
916 0x4c696e75, /* L i n u */
917 0x78204669, /* x F i */
918 0x72657769, /* r e w i */
937f6879 919 0x72650000, /* r e */
3038e353
KH
920};
921
937f6879
KH
922static const u32 model_textual_descriptor[] = {
923 /* model descriptor leaf () */
924 0x00030000,
925 0x00000000,
926 0x00000000,
927 0x4a756a75, /* J u j u */
928};
929
930static struct fw_descriptor vendor_id_descriptor = {
931 .length = ARRAY_SIZE(vendor_textual_descriptor),
932 .immediate = 0x03d00d1e,
3038e353 933 .key = 0x81000000,
937f6879
KH
934 .data = vendor_textual_descriptor,
935};
936
937static struct fw_descriptor model_id_descriptor = {
938 .length = ARRAY_SIZE(model_textual_descriptor),
939 .immediate = 0x17000001,
940 .key = 0x81000000,
941 .data = model_textual_descriptor,
3038e353
KH
942};
943
3038e353
KH
944static int __init fw_core_init(void)
945{
946 int retval;
947
948 retval = bus_register(&fw_bus_type);
949 if (retval < 0)
950 return retval;
951
a3aca3da
KH
952 fw_cdev_major = register_chrdev(0, "firewire", &fw_device_ops);
953 if (fw_cdev_major < 0) {
954 bus_unregister(&fw_bus_type);
955 return fw_cdev_major;
956 }
957
c490a6de
SR
958 fw_core_add_address_handler(&topology_map, &topology_map_region);
959 fw_core_add_address_handler(&registers, &registers_region);
960 fw_core_add_descriptor(&vendor_id_descriptor);
961 fw_core_add_descriptor(&model_id_descriptor);
3038e353
KH
962
963 return 0;
964}
965
966static void __exit fw_core_cleanup(void)
967{
a3aca3da 968 unregister_chrdev(fw_cdev_major, "firewire");
3038e353 969 bus_unregister(&fw_bus_type);
d6053e08 970 idr_destroy(&fw_device_idr);
3038e353
KH
971}
972
973module_init(fw_core_init);
974module_exit(fw_core_cleanup);
This page took 0.357598 seconds and 5 git commands to generate.