System call wrappers part 05
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / firewire / fw-transaction.c
blob27f7c7e7b68da8a3b5a44413ed1603738d044127
1 /*
2 * Core IEEE1394 transaction logic
4 * Copyright (C) 2004-2006 Kristian Hoegsberg <krh@bitplanet.net>
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.
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.
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.
21 #include <linux/completion.h>
22 #include <linux/kernel.h>
23 #include <linux/kref.h>
24 #include <linux/module.h>
25 #include <linux/mutex.h>
26 #include <linux/init.h>
27 #include <linux/interrupt.h>
28 #include <linux/pci.h>
29 #include <linux/delay.h>
30 #include <linux/poll.h>
31 #include <linux/list.h>
32 #include <linux/kthread.h>
33 #include <asm/uaccess.h>
35 #include "fw-transaction.h"
36 #include "fw-topology.h"
37 #include "fw-device.h"
39 #define HEADER_PRI(pri) ((pri) << 0)
40 #define HEADER_TCODE(tcode) ((tcode) << 4)
41 #define HEADER_RETRY(retry) ((retry) << 8)
42 #define HEADER_TLABEL(tlabel) ((tlabel) << 10)
43 #define HEADER_DESTINATION(destination) ((destination) << 16)
44 #define HEADER_SOURCE(source) ((source) << 16)
45 #define HEADER_RCODE(rcode) ((rcode) << 12)
46 #define HEADER_OFFSET_HIGH(offset_high) ((offset_high) << 0)
47 #define HEADER_DATA_LENGTH(length) ((length) << 16)
48 #define HEADER_EXTENDED_TCODE(tcode) ((tcode) << 0)
50 #define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
51 #define HEADER_GET_TLABEL(q) (((q) >> 10) & 0x3f)
52 #define HEADER_GET_RCODE(q) (((q) >> 12) & 0x0f)
53 #define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
54 #define HEADER_GET_SOURCE(q) (((q) >> 16) & 0xffff)
55 #define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
56 #define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
57 #define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
59 #define HEADER_DESTINATION_IS_BROADCAST(q) \
60 (((q) & HEADER_DESTINATION(0x3f)) == HEADER_DESTINATION(0x3f))
62 #define PHY_CONFIG_GAP_COUNT(gap_count) (((gap_count) << 16) | (1 << 22))
63 #define PHY_CONFIG_ROOT_ID(node_id) ((((node_id) & 0x3f) << 24) | (1 << 23))
64 #define PHY_IDENTIFIER(id) ((id) << 30)
66 static int
67 close_transaction(struct fw_transaction *transaction,
68 struct fw_card *card, int rcode,
69 u32 *payload, size_t length)
71 struct fw_transaction *t;
72 unsigned long flags;
74 spin_lock_irqsave(&card->lock, flags);
75 list_for_each_entry(t, &card->transaction_list, link) {
76 if (t == transaction) {
77 list_del(&t->link);
78 card->tlabel_mask &= ~(1 << t->tlabel);
79 break;
82 spin_unlock_irqrestore(&card->lock, flags);
84 if (&t->link != &card->transaction_list) {
85 t->callback(card, rcode, payload, length, t->callback_data);
86 return 0;
89 return -ENOENT;
93 * Only valid for transactions that are potentially pending (ie have
94 * been sent).
96 int
97 fw_cancel_transaction(struct fw_card *card,
98 struct fw_transaction *transaction)
101 * Cancel the packet transmission if it's still queued. That
102 * will call the packet transmission callback which cancels
103 * the transaction.
106 if (card->driver->cancel_packet(card, &transaction->packet) == 0)
107 return 0;
110 * If the request packet has already been sent, we need to see
111 * if the transaction is still pending and remove it in that case.
114 return close_transaction(transaction, card, RCODE_CANCELLED, NULL, 0);
116 EXPORT_SYMBOL(fw_cancel_transaction);
118 static void
119 transmit_complete_callback(struct fw_packet *packet,
120 struct fw_card *card, int status)
122 struct fw_transaction *t =
123 container_of(packet, struct fw_transaction, packet);
125 switch (status) {
126 case ACK_COMPLETE:
127 close_transaction(t, card, RCODE_COMPLETE, NULL, 0);
128 break;
129 case ACK_PENDING:
130 t->timestamp = packet->timestamp;
131 break;
132 case ACK_BUSY_X:
133 case ACK_BUSY_A:
134 case ACK_BUSY_B:
135 close_transaction(t, card, RCODE_BUSY, NULL, 0);
136 break;
137 case ACK_DATA_ERROR:
138 close_transaction(t, card, RCODE_DATA_ERROR, NULL, 0);
139 break;
140 case ACK_TYPE_ERROR:
141 close_transaction(t, card, RCODE_TYPE_ERROR, NULL, 0);
142 break;
143 default:
145 * In this case the ack is really a juju specific
146 * rcode, so just forward that to the callback.
148 close_transaction(t, card, status, NULL, 0);
149 break;
153 static void
154 fw_fill_request(struct fw_packet *packet, int tcode, int tlabel,
155 int destination_id, int source_id, int generation, int speed,
156 unsigned long long offset, void *payload, size_t length)
158 int ext_tcode;
160 if (tcode > 0x10) {
161 ext_tcode = tcode & ~0x10;
162 tcode = TCODE_LOCK_REQUEST;
163 } else
164 ext_tcode = 0;
166 packet->header[0] =
167 HEADER_RETRY(RETRY_X) |
168 HEADER_TLABEL(tlabel) |
169 HEADER_TCODE(tcode) |
170 HEADER_DESTINATION(destination_id);
171 packet->header[1] =
172 HEADER_OFFSET_HIGH(offset >> 32) | HEADER_SOURCE(source_id);
173 packet->header[2] =
174 offset;
176 switch (tcode) {
177 case TCODE_WRITE_QUADLET_REQUEST:
178 packet->header[3] = *(u32 *)payload;
179 packet->header_length = 16;
180 packet->payload_length = 0;
181 break;
183 case TCODE_LOCK_REQUEST:
184 case TCODE_WRITE_BLOCK_REQUEST:
185 packet->header[3] =
186 HEADER_DATA_LENGTH(length) |
187 HEADER_EXTENDED_TCODE(ext_tcode);
188 packet->header_length = 16;
189 packet->payload = payload;
190 packet->payload_length = length;
191 break;
193 case TCODE_READ_QUADLET_REQUEST:
194 packet->header_length = 12;
195 packet->payload_length = 0;
196 break;
198 case TCODE_READ_BLOCK_REQUEST:
199 packet->header[3] =
200 HEADER_DATA_LENGTH(length) |
201 HEADER_EXTENDED_TCODE(ext_tcode);
202 packet->header_length = 16;
203 packet->payload_length = 0;
204 break;
207 packet->speed = speed;
208 packet->generation = generation;
209 packet->ack = 0;
210 packet->payload_bus = 0;
214 * This function provides low-level access to the IEEE1394 transaction
215 * logic. Most C programs would use either fw_read(), fw_write() or
216 * fw_lock() instead - those function are convenience wrappers for
217 * this function. The fw_send_request() function is primarily
218 * provided as a flexible, one-stop entry point for languages bindings
219 * and protocol bindings.
221 * FIXME: Document this function further, in particular the possible
222 * values for rcode in the callback. In short, we map ACK_COMPLETE to
223 * RCODE_COMPLETE, internal errors set errno and set rcode to
224 * RCODE_SEND_ERROR (which is out of range for standard ieee1394
225 * rcodes). All other rcodes are forwarded unchanged. For all
226 * errors, payload is NULL, length is 0.
228 * Can not expect the callback to be called before the function
229 * returns, though this does happen in some cases (ACK_COMPLETE and
230 * errors).
232 * The payload is only used for write requests and must not be freed
233 * until the callback has been called.
235 * @param card the card from which to send the request
236 * @param tcode the tcode for this transaction. Do not use
237 * TCODE_LOCK_REQUEST directly, instead use TCODE_LOCK_MASK_SWAP
238 * etc. to specify tcode and ext_tcode.
239 * @param node_id the destination node ID (bus ID and PHY ID concatenated)
240 * @param generation the generation for which node_id is valid
241 * @param speed the speed to use for sending the request
242 * @param offset the 48 bit offset on the destination node
243 * @param payload the data payload for the request subaction
244 * @param length the length in bytes of the data to read
245 * @param callback function to be called when the transaction is completed
246 * @param callback_data pointer to arbitrary data, which will be
247 * passed to the callback
249 void
250 fw_send_request(struct fw_card *card, struct fw_transaction *t,
251 int tcode, int node_id, int generation, int speed,
252 unsigned long long offset,
253 void *payload, size_t length,
254 fw_transaction_callback_t callback, void *callback_data)
256 unsigned long flags;
257 int tlabel;
260 * Bump the flush timer up 100ms first of all so we
261 * don't race with a flush timer callback.
264 mod_timer(&card->flush_timer, jiffies + DIV_ROUND_UP(HZ, 10));
267 * Allocate tlabel from the bitmap and put the transaction on
268 * the list while holding the card spinlock.
271 spin_lock_irqsave(&card->lock, flags);
273 tlabel = card->current_tlabel;
274 if (card->tlabel_mask & (1 << tlabel)) {
275 spin_unlock_irqrestore(&card->lock, flags);
276 callback(card, RCODE_SEND_ERROR, NULL, 0, callback_data);
277 return;
280 card->current_tlabel = (card->current_tlabel + 1) & 0x1f;
281 card->tlabel_mask |= (1 << tlabel);
283 t->node_id = node_id;
284 t->tlabel = tlabel;
285 t->callback = callback;
286 t->callback_data = callback_data;
288 fw_fill_request(&t->packet, tcode, t->tlabel, node_id, card->node_id,
289 generation, speed, offset, payload, length);
290 t->packet.callback = transmit_complete_callback;
292 list_add_tail(&t->link, &card->transaction_list);
294 spin_unlock_irqrestore(&card->lock, flags);
296 card->driver->send_request(card, &t->packet);
298 EXPORT_SYMBOL(fw_send_request);
300 static DEFINE_MUTEX(phy_config_mutex);
301 static DECLARE_COMPLETION(phy_config_done);
303 static void transmit_phy_packet_callback(struct fw_packet *packet,
304 struct fw_card *card, int status)
306 complete(&phy_config_done);
309 static struct fw_packet phy_config_packet = {
310 .header_length = 8,
311 .payload_length = 0,
312 .speed = SCODE_100,
313 .callback = transmit_phy_packet_callback,
316 void fw_send_phy_config(struct fw_card *card,
317 int node_id, int generation, int gap_count)
319 long timeout = DIV_ROUND_UP(HZ, 10);
320 u32 data = PHY_IDENTIFIER(PHY_PACKET_CONFIG) |
321 PHY_CONFIG_ROOT_ID(node_id) |
322 PHY_CONFIG_GAP_COUNT(gap_count);
324 mutex_lock(&phy_config_mutex);
326 phy_config_packet.header[0] = data;
327 phy_config_packet.header[1] = ~data;
328 phy_config_packet.generation = generation;
329 INIT_COMPLETION(phy_config_done);
331 card->driver->send_request(card, &phy_config_packet);
332 wait_for_completion_timeout(&phy_config_done, timeout);
334 mutex_unlock(&phy_config_mutex);
337 void fw_flush_transactions(struct fw_card *card)
339 struct fw_transaction *t, *next;
340 struct list_head list;
341 unsigned long flags;
343 INIT_LIST_HEAD(&list);
344 spin_lock_irqsave(&card->lock, flags);
345 list_splice_init(&card->transaction_list, &list);
346 card->tlabel_mask = 0;
347 spin_unlock_irqrestore(&card->lock, flags);
349 list_for_each_entry_safe(t, next, &list, link) {
350 card->driver->cancel_packet(card, &t->packet);
353 * At this point cancel_packet will never call the
354 * transaction callback, since we just took all the
355 * transactions out of the list. So do it here.
357 t->callback(card, RCODE_CANCELLED, NULL, 0, t->callback_data);
361 static struct fw_address_handler *
362 lookup_overlapping_address_handler(struct list_head *list,
363 unsigned long long offset, size_t length)
365 struct fw_address_handler *handler;
367 list_for_each_entry(handler, list, link) {
368 if (handler->offset < offset + length &&
369 offset < handler->offset + handler->length)
370 return handler;
373 return NULL;
376 static struct fw_address_handler *
377 lookup_enclosing_address_handler(struct list_head *list,
378 unsigned long long offset, size_t length)
380 struct fw_address_handler *handler;
382 list_for_each_entry(handler, list, link) {
383 if (handler->offset <= offset &&
384 offset + length <= handler->offset + handler->length)
385 return handler;
388 return NULL;
391 static DEFINE_SPINLOCK(address_handler_lock);
392 static LIST_HEAD(address_handler_list);
394 const struct fw_address_region fw_high_memory_region =
395 { .start = 0x000100000000ULL, .end = 0xffffe0000000ULL, };
396 EXPORT_SYMBOL(fw_high_memory_region);
398 #if 0
399 const struct fw_address_region fw_low_memory_region =
400 { .start = 0x000000000000ULL, .end = 0x000100000000ULL, };
401 const struct fw_address_region fw_private_region =
402 { .start = 0xffffe0000000ULL, .end = 0xfffff0000000ULL, };
403 const struct fw_address_region fw_csr_region =
404 { .start = CSR_REGISTER_BASE,
405 .end = CSR_REGISTER_BASE | CSR_CONFIG_ROM_END, };
406 const struct fw_address_region fw_unit_space_region =
407 { .start = 0xfffff0000900ULL, .end = 0x1000000000000ULL, };
408 #endif /* 0 */
411 * Allocate a range of addresses in the node space of the OHCI
412 * controller. When a request is received that falls within the
413 * specified address range, the specified callback is invoked. The
414 * parameters passed to the callback give the details of the
415 * particular request.
417 * Return value: 0 on success, non-zero otherwise.
418 * The start offset of the handler's address region is determined by
419 * fw_core_add_address_handler() and is returned in handler->offset.
420 * The offset is quadlet-aligned.
423 fw_core_add_address_handler(struct fw_address_handler *handler,
424 const struct fw_address_region *region)
426 struct fw_address_handler *other;
427 unsigned long flags;
428 int ret = -EBUSY;
430 spin_lock_irqsave(&address_handler_lock, flags);
432 handler->offset = roundup(region->start, 4);
433 while (handler->offset + handler->length <= region->end) {
434 other =
435 lookup_overlapping_address_handler(&address_handler_list,
436 handler->offset,
437 handler->length);
438 if (other != NULL) {
439 handler->offset =
440 roundup(other->offset + other->length, 4);
441 } else {
442 list_add_tail(&handler->link, &address_handler_list);
443 ret = 0;
444 break;
448 spin_unlock_irqrestore(&address_handler_lock, flags);
450 return ret;
452 EXPORT_SYMBOL(fw_core_add_address_handler);
455 * Deallocate a range of addresses allocated with fw_allocate. This
456 * will call the associated callback one last time with a the special
457 * tcode TCODE_DEALLOCATE, to let the client destroy the registered
458 * callback data. For convenience, the callback parameters offset and
459 * length are set to the start and the length respectively for the
460 * deallocated region, payload is set to NULL.
462 void fw_core_remove_address_handler(struct fw_address_handler *handler)
464 unsigned long flags;
466 spin_lock_irqsave(&address_handler_lock, flags);
467 list_del(&handler->link);
468 spin_unlock_irqrestore(&address_handler_lock, flags);
470 EXPORT_SYMBOL(fw_core_remove_address_handler);
472 struct fw_request {
473 struct fw_packet response;
474 u32 request_header[4];
475 int ack;
476 u32 length;
477 u32 data[0];
480 static void
481 free_response_callback(struct fw_packet *packet,
482 struct fw_card *card, int status)
484 struct fw_request *request;
486 request = container_of(packet, struct fw_request, response);
487 kfree(request);
490 void
491 fw_fill_response(struct fw_packet *response, u32 *request_header,
492 int rcode, void *payload, size_t length)
494 int tcode, tlabel, extended_tcode, source, destination;
496 tcode = HEADER_GET_TCODE(request_header[0]);
497 tlabel = HEADER_GET_TLABEL(request_header[0]);
498 source = HEADER_GET_DESTINATION(request_header[0]);
499 destination = HEADER_GET_SOURCE(request_header[1]);
500 extended_tcode = HEADER_GET_EXTENDED_TCODE(request_header[3]);
502 response->header[0] =
503 HEADER_RETRY(RETRY_1) |
504 HEADER_TLABEL(tlabel) |
505 HEADER_DESTINATION(destination);
506 response->header[1] =
507 HEADER_SOURCE(source) |
508 HEADER_RCODE(rcode);
509 response->header[2] = 0;
511 switch (tcode) {
512 case TCODE_WRITE_QUADLET_REQUEST:
513 case TCODE_WRITE_BLOCK_REQUEST:
514 response->header[0] |= HEADER_TCODE(TCODE_WRITE_RESPONSE);
515 response->header_length = 12;
516 response->payload_length = 0;
517 break;
519 case TCODE_READ_QUADLET_REQUEST:
520 response->header[0] |=
521 HEADER_TCODE(TCODE_READ_QUADLET_RESPONSE);
522 if (payload != NULL)
523 response->header[3] = *(u32 *)payload;
524 else
525 response->header[3] = 0;
526 response->header_length = 16;
527 response->payload_length = 0;
528 break;
530 case TCODE_READ_BLOCK_REQUEST:
531 case TCODE_LOCK_REQUEST:
532 response->header[0] |= HEADER_TCODE(tcode + 2);
533 response->header[3] =
534 HEADER_DATA_LENGTH(length) |
535 HEADER_EXTENDED_TCODE(extended_tcode);
536 response->header_length = 16;
537 response->payload = payload;
538 response->payload_length = length;
539 break;
541 default:
542 BUG();
543 return;
546 response->payload_bus = 0;
548 EXPORT_SYMBOL(fw_fill_response);
550 static struct fw_request *
551 allocate_request(struct fw_packet *p)
553 struct fw_request *request;
554 u32 *data, length;
555 int request_tcode, t;
557 request_tcode = HEADER_GET_TCODE(p->header[0]);
558 switch (request_tcode) {
559 case TCODE_WRITE_QUADLET_REQUEST:
560 data = &p->header[3];
561 length = 4;
562 break;
564 case TCODE_WRITE_BLOCK_REQUEST:
565 case TCODE_LOCK_REQUEST:
566 data = p->payload;
567 length = HEADER_GET_DATA_LENGTH(p->header[3]);
568 break;
570 case TCODE_READ_QUADLET_REQUEST:
571 data = NULL;
572 length = 4;
573 break;
575 case TCODE_READ_BLOCK_REQUEST:
576 data = NULL;
577 length = HEADER_GET_DATA_LENGTH(p->header[3]);
578 break;
580 default:
581 fw_error("ERROR - corrupt request received - %08x %08x %08x\n",
582 p->header[0], p->header[1], p->header[2]);
583 return NULL;
586 request = kmalloc(sizeof(*request) + length, GFP_ATOMIC);
587 if (request == NULL)
588 return NULL;
590 t = (p->timestamp & 0x1fff) + 4000;
591 if (t >= 8000)
592 t = (p->timestamp & ~0x1fff) + 0x2000 + t - 8000;
593 else
594 t = (p->timestamp & ~0x1fff) + t;
596 request->response.speed = p->speed;
597 request->response.timestamp = t;
598 request->response.generation = p->generation;
599 request->response.ack = 0;
600 request->response.callback = free_response_callback;
601 request->ack = p->ack;
602 request->length = length;
603 if (data)
604 memcpy(request->data, data, length);
606 memcpy(request->request_header, p->header, sizeof(p->header));
608 return request;
611 void
612 fw_send_response(struct fw_card *card, struct fw_request *request, int rcode)
614 /* unified transaction or broadcast transaction: don't respond */
615 if (request->ack != ACK_PENDING ||
616 HEADER_DESTINATION_IS_BROADCAST(request->request_header[0])) {
617 kfree(request);
618 return;
621 if (rcode == RCODE_COMPLETE)
622 fw_fill_response(&request->response, request->request_header,
623 rcode, request->data, request->length);
624 else
625 fw_fill_response(&request->response, request->request_header,
626 rcode, NULL, 0);
628 card->driver->send_response(card, &request->response);
630 EXPORT_SYMBOL(fw_send_response);
632 void
633 fw_core_handle_request(struct fw_card *card, struct fw_packet *p)
635 struct fw_address_handler *handler;
636 struct fw_request *request;
637 unsigned long long offset;
638 unsigned long flags;
639 int tcode, destination, source;
641 if (p->ack != ACK_PENDING && p->ack != ACK_COMPLETE)
642 return;
644 request = allocate_request(p);
645 if (request == NULL) {
646 /* FIXME: send statically allocated busy packet. */
647 return;
650 offset =
651 ((unsigned long long)
652 HEADER_GET_OFFSET_HIGH(p->header[1]) << 32) | p->header[2];
653 tcode = HEADER_GET_TCODE(p->header[0]);
654 destination = HEADER_GET_DESTINATION(p->header[0]);
655 source = HEADER_GET_SOURCE(p->header[1]);
657 spin_lock_irqsave(&address_handler_lock, flags);
658 handler = lookup_enclosing_address_handler(&address_handler_list,
659 offset, request->length);
660 spin_unlock_irqrestore(&address_handler_lock, flags);
663 * FIXME: lookup the fw_node corresponding to the sender of
664 * this request and pass that to the address handler instead
665 * of the node ID. We may also want to move the address
666 * allocations to fw_node so we only do this callback if the
667 * upper layers registered it for this node.
670 if (handler == NULL)
671 fw_send_response(card, request, RCODE_ADDRESS_ERROR);
672 else
673 handler->address_callback(card, request,
674 tcode, destination, source,
675 p->generation, p->speed, offset,
676 request->data, request->length,
677 handler->callback_data);
679 EXPORT_SYMBOL(fw_core_handle_request);
681 void
682 fw_core_handle_response(struct fw_card *card, struct fw_packet *p)
684 struct fw_transaction *t;
685 unsigned long flags;
686 u32 *data;
687 size_t data_length;
688 int tcode, tlabel, destination, source, rcode;
690 tcode = HEADER_GET_TCODE(p->header[0]);
691 tlabel = HEADER_GET_TLABEL(p->header[0]);
692 destination = HEADER_GET_DESTINATION(p->header[0]);
693 source = HEADER_GET_SOURCE(p->header[1]);
694 rcode = HEADER_GET_RCODE(p->header[1]);
696 spin_lock_irqsave(&card->lock, flags);
697 list_for_each_entry(t, &card->transaction_list, link) {
698 if (t->node_id == source && t->tlabel == tlabel) {
699 list_del(&t->link);
700 card->tlabel_mask &= ~(1 << t->tlabel);
701 break;
704 spin_unlock_irqrestore(&card->lock, flags);
706 if (&t->link == &card->transaction_list) {
707 fw_notify("Unsolicited response (source %x, tlabel %x)\n",
708 source, tlabel);
709 return;
713 * FIXME: sanity check packet, is length correct, does tcodes
714 * and addresses match.
717 switch (tcode) {
718 case TCODE_READ_QUADLET_RESPONSE:
719 data = (u32 *) &p->header[3];
720 data_length = 4;
721 break;
723 case TCODE_WRITE_RESPONSE:
724 data = NULL;
725 data_length = 0;
726 break;
728 case TCODE_READ_BLOCK_RESPONSE:
729 case TCODE_LOCK_RESPONSE:
730 data = p->payload;
731 data_length = HEADER_GET_DATA_LENGTH(p->header[3]);
732 break;
734 default:
735 /* Should never happen, this is just to shut up gcc. */
736 data = NULL;
737 data_length = 0;
738 break;
742 * The response handler may be executed while the request handler
743 * is still pending. Cancel the request handler.
745 card->driver->cancel_packet(card, &t->packet);
747 t->callback(card, rcode, data, data_length, t->callback_data);
749 EXPORT_SYMBOL(fw_core_handle_response);
751 static const struct fw_address_region topology_map_region =
752 { .start = CSR_REGISTER_BASE | CSR_TOPOLOGY_MAP,
753 .end = CSR_REGISTER_BASE | CSR_TOPOLOGY_MAP_END, };
755 static void
756 handle_topology_map(struct fw_card *card, struct fw_request *request,
757 int tcode, int destination, int source,
758 int generation, int speed,
759 unsigned long long offset,
760 void *payload, size_t length, void *callback_data)
762 int i, start, end;
763 __be32 *map;
765 if (!TCODE_IS_READ_REQUEST(tcode)) {
766 fw_send_response(card, request, RCODE_TYPE_ERROR);
767 return;
770 if ((offset & 3) > 0 || (length & 3) > 0) {
771 fw_send_response(card, request, RCODE_ADDRESS_ERROR);
772 return;
775 start = (offset - topology_map_region.start) / 4;
776 end = start + length / 4;
777 map = payload;
779 for (i = 0; i < length / 4; i++)
780 map[i] = cpu_to_be32(card->topology_map[start + i]);
782 fw_send_response(card, request, RCODE_COMPLETE);
785 static struct fw_address_handler topology_map = {
786 .length = 0x200,
787 .address_callback = handle_topology_map,
790 static const struct fw_address_region registers_region =
791 { .start = CSR_REGISTER_BASE,
792 .end = CSR_REGISTER_BASE | CSR_CONFIG_ROM, };
794 static void
795 handle_registers(struct fw_card *card, struct fw_request *request,
796 int tcode, int destination, int source,
797 int generation, int speed,
798 unsigned long long offset,
799 void *payload, size_t length, void *callback_data)
801 int reg = offset & ~CSR_REGISTER_BASE;
802 unsigned long long bus_time;
803 __be32 *data = payload;
804 int rcode = RCODE_COMPLETE;
806 switch (reg) {
807 case CSR_CYCLE_TIME:
808 case CSR_BUS_TIME:
809 if (!TCODE_IS_READ_REQUEST(tcode) || length != 4) {
810 rcode = RCODE_TYPE_ERROR;
811 break;
814 bus_time = card->driver->get_bus_time(card);
815 if (reg == CSR_CYCLE_TIME)
816 *data = cpu_to_be32(bus_time);
817 else
818 *data = cpu_to_be32(bus_time >> 25);
819 break;
821 case CSR_BROADCAST_CHANNEL:
822 if (tcode == TCODE_READ_QUADLET_REQUEST)
823 *data = cpu_to_be32(card->broadcast_channel);
824 else if (tcode == TCODE_WRITE_QUADLET_REQUEST)
825 card->broadcast_channel =
826 (be32_to_cpu(*data) & BROADCAST_CHANNEL_VALID) |
827 BROADCAST_CHANNEL_INITIAL;
828 else
829 rcode = RCODE_TYPE_ERROR;
830 break;
832 case CSR_BUS_MANAGER_ID:
833 case CSR_BANDWIDTH_AVAILABLE:
834 case CSR_CHANNELS_AVAILABLE_HI:
835 case CSR_CHANNELS_AVAILABLE_LO:
837 * FIXME: these are handled by the OHCI hardware and
838 * the stack never sees these request. If we add
839 * support for a new type of controller that doesn't
840 * handle this in hardware we need to deal with these
841 * transactions.
843 BUG();
844 break;
846 case CSR_BUSY_TIMEOUT:
847 /* FIXME: Implement this. */
849 default:
850 rcode = RCODE_ADDRESS_ERROR;
851 break;
854 fw_send_response(card, request, rcode);
857 static struct fw_address_handler registers = {
858 .length = 0x400,
859 .address_callback = handle_registers,
862 MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
863 MODULE_DESCRIPTION("Core IEEE1394 transaction logic");
864 MODULE_LICENSE("GPL");
866 static const u32 vendor_textual_descriptor[] = {
867 /* textual descriptor leaf () */
868 0x00060000,
869 0x00000000,
870 0x00000000,
871 0x4c696e75, /* L i n u */
872 0x78204669, /* x F i */
873 0x72657769, /* r e w i */
874 0x72650000, /* r e */
877 static const u32 model_textual_descriptor[] = {
878 /* model descriptor leaf () */
879 0x00030000,
880 0x00000000,
881 0x00000000,
882 0x4a756a75, /* J u j u */
885 static struct fw_descriptor vendor_id_descriptor = {
886 .length = ARRAY_SIZE(vendor_textual_descriptor),
887 .immediate = 0x03d00d1e,
888 .key = 0x81000000,
889 .data = vendor_textual_descriptor,
892 static struct fw_descriptor model_id_descriptor = {
893 .length = ARRAY_SIZE(model_textual_descriptor),
894 .immediate = 0x17000001,
895 .key = 0x81000000,
896 .data = model_textual_descriptor,
899 static int __init fw_core_init(void)
901 int retval;
903 retval = bus_register(&fw_bus_type);
904 if (retval < 0)
905 return retval;
907 fw_cdev_major = register_chrdev(0, "firewire", &fw_device_ops);
908 if (fw_cdev_major < 0) {
909 bus_unregister(&fw_bus_type);
910 return fw_cdev_major;
913 retval = fw_core_add_address_handler(&topology_map,
914 &topology_map_region);
915 BUG_ON(retval < 0);
917 retval = fw_core_add_address_handler(&registers,
918 &registers_region);
919 BUG_ON(retval < 0);
921 /* Add the vendor textual descriptor. */
922 retval = fw_core_add_descriptor(&vendor_id_descriptor);
923 BUG_ON(retval < 0);
924 retval = fw_core_add_descriptor(&model_id_descriptor);
925 BUG_ON(retval < 0);
927 return 0;
930 static void __exit fw_core_cleanup(void)
932 unregister_chrdev(fw_cdev_major, "firewire");
933 bus_unregister(&fw_bus_type);
936 module_init(fw_core_init);
937 module_exit(fw_core_cleanup);