6 * Copyright (C) 1999 Andreas E. Bombe
8 * This code is licensed under the GPL. See the file COPYING in the root
9 * directory of the kernel sources for details.
12 #include <linux/bitops.h>
13 #include <linux/compiler.h>
14 #include <linux/hardirq.h>
15 #include <linux/spinlock.h>
16 #include <linux/string.h>
17 #include <linux/sched.h> /* because linux/wait.h is broken if CONFIG_SMP=n */
18 #include <linux/wait.h>
21 #include <asm/errno.h>
22 #include <asm/system.h>
25 #include "ieee1394_types.h"
27 #include "ieee1394_core.h"
28 #include "ieee1394_transactions.h"
30 #define PREP_ASYNC_HEAD_ADDRESS(tc) \
32 packet->header[0] = (packet->node_id << 16) | (packet->tlabel << 10) \
33 | (1 << 8) | (tc << 4); \
34 packet->header[1] = (packet->host->node_id << 16) | (addr >> 32); \
35 packet->header[2] = addr & 0xffffffff
37 #ifndef HPSB_DEBUG_TLABELS
40 DEFINE_SPINLOCK(hpsb_tlabel_lock);
42 static DECLARE_WAIT_QUEUE_HEAD(tlabel_wq);
44 static void fill_async_readquad(struct hpsb_packet *packet, u64 addr)
46 PREP_ASYNC_HEAD_ADDRESS(TCODE_READQ);
47 packet->header_size = 12;
48 packet->data_size = 0;
49 packet->expect_response = 1;
52 static void fill_async_readblock(struct hpsb_packet *packet, u64 addr,
55 PREP_ASYNC_HEAD_ADDRESS(TCODE_READB);
56 packet->header[3] = length << 16;
57 packet->header_size = 16;
58 packet->data_size = 0;
59 packet->expect_response = 1;
62 static void fill_async_writequad(struct hpsb_packet *packet, u64 addr,
65 PREP_ASYNC_HEAD_ADDRESS(TCODE_WRITEQ);
66 packet->header[3] = data;
67 packet->header_size = 16;
68 packet->data_size = 0;
69 packet->expect_response = 1;
72 static void fill_async_writeblock(struct hpsb_packet *packet, u64 addr,
75 PREP_ASYNC_HEAD_ADDRESS(TCODE_WRITEB);
76 packet->header[3] = length << 16;
77 packet->header_size = 16;
78 packet->expect_response = 1;
79 packet->data_size = length + (length % 4 ? 4 - (length % 4) : 0);
82 static void fill_async_lock(struct hpsb_packet *packet, u64 addr, int extcode,
85 PREP_ASYNC_HEAD_ADDRESS(TCODE_LOCK_REQUEST);
86 packet->header[3] = (length << 16) | extcode;
87 packet->header_size = 16;
88 packet->data_size = length;
89 packet->expect_response = 1;
92 static void fill_phy_packet(struct hpsb_packet *packet, quadlet_t data)
94 packet->header[0] = data;
95 packet->header[1] = ~data;
96 packet->header_size = 8;
97 packet->data_size = 0;
98 packet->expect_response = 0;
99 packet->type = hpsb_raw; /* No CRC added */
100 packet->speed_code = IEEE1394_SPEED_100; /* Force speed to be 100Mbps */
103 static void fill_async_stream_packet(struct hpsb_packet *packet, int length,
104 int channel, int tag, int sync)
106 packet->header[0] = (length << 16) | (tag << 14) | (channel << 8)
107 | (TCODE_STREAM_DATA << 4) | sync;
109 packet->header_size = 4;
110 packet->data_size = length;
111 packet->type = hpsb_async;
112 packet->tcode = TCODE_ISO_DATA;
115 /* same as hpsb_get_tlabel, except that it returns immediately */
116 static int hpsb_get_tlabel_atomic(struct hpsb_packet *packet)
118 unsigned long flags, *tp;
120 int tlabel, n = NODEID_TO_NODE(packet->node_id);
122 /* Broadcast transactions are complete once the request has been sent.
123 * Use the same transaction label for all broadcast transactions. */
124 if (unlikely(n == ALL_NODES)) {
128 tp = packet->host->tl_pool[n].map;
129 next = &packet->host->next_tl[n];
131 spin_lock_irqsave(&hpsb_tlabel_lock, flags);
132 tlabel = find_next_zero_bit(tp, 64, *next);
134 tlabel = find_first_zero_bit(tp, 64);
136 spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
139 __set_bit(tlabel, tp);
140 *next = (tlabel + 1) & 63;
141 spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
143 packet->tlabel = tlabel;
148 * hpsb_get_tlabel - allocate a transaction label
149 * @packet: the packet whose tlabel and tl_pool we set
151 * Every asynchronous transaction on the 1394 bus needs a transaction
152 * label to match the response to the request. This label has to be
153 * different from any other transaction label in an outstanding request to
154 * the same node to make matching possible without ambiguity.
156 * There are 64 different tlabels, so an allocated tlabel has to be freed
157 * with hpsb_free_tlabel() after the transaction is complete (unless it's
158 * reused again for the same target node).
160 * Return value: Zero on success, otherwise non-zero. A non-zero return
161 * generally means there are no available tlabels. If this is called out
162 * of interrupt or atomic context, then it will sleep until can return a
163 * tlabel or a signal is received.
165 int hpsb_get_tlabel(struct hpsb_packet *packet)
167 if (irqs_disabled() || in_atomic())
168 return hpsb_get_tlabel_atomic(packet);
170 /* NB: The macro wait_event_interruptible() is called with a condition
171 * argument with side effect. This is only possible because the side
172 * effect does not occur until the condition became true, and
173 * wait_event_interruptible() won't evaluate the condition again after
175 return wait_event_interruptible(tlabel_wq,
176 !hpsb_get_tlabel_atomic(packet));
180 * hpsb_free_tlabel - free an allocated transaction label
181 * @packet: packet whose tlabel and tl_pool needs to be cleared
183 * Frees the transaction label allocated with hpsb_get_tlabel(). The
184 * tlabel has to be freed after the transaction is complete (i.e. response
185 * was received for a split transaction or packet was sent for a unified
188 * A tlabel must not be freed twice.
190 void hpsb_free_tlabel(struct hpsb_packet *packet)
192 unsigned long flags, *tp;
193 int tlabel, n = NODEID_TO_NODE(packet->node_id);
195 if (unlikely(n == ALL_NODES))
197 tp = packet->host->tl_pool[n].map;
198 tlabel = packet->tlabel;
199 BUG_ON(tlabel > 63 || tlabel < 0);
201 spin_lock_irqsave(&hpsb_tlabel_lock, flags);
202 BUG_ON(!__test_and_clear_bit(tlabel, tp));
203 spin_unlock_irqrestore(&hpsb_tlabel_lock, flags);
205 wake_up_interruptible(&tlabel_wq);
209 * hpsb_packet_success - Make sense of the ack and reply codes
211 * Make sense of the ack and reply codes and return more convenient error codes:
212 * 0 = success. -%EBUSY = node is busy, try again. -%EAGAIN = error which can
213 * probably resolved by retry. -%EREMOTEIO = node suffers from an internal
214 * error. -%EACCES = this transaction is not allowed on requested address.
215 * -%EINVAL = invalid address at node.
217 int hpsb_packet_success(struct hpsb_packet *packet)
219 switch (packet->ack_code) {
221 switch ((packet->header[1] >> 12) & 0xf) {
224 case RCODE_CONFLICT_ERROR:
226 case RCODE_DATA_ERROR:
228 case RCODE_TYPE_ERROR:
230 case RCODE_ADDRESS_ERROR:
233 HPSB_ERR("received reserved rcode %d from node %d",
234 (packet->header[1] >> 12) & 0xf,
249 if (packet->tcode == TCODE_WRITEQ
250 || packet->tcode == TCODE_WRITEB) {
253 HPSB_ERR("impossible ack_complete from node %d "
254 "(tcode %d)", packet->node_id, packet->tcode);
259 if (packet->tcode == TCODE_WRITEB
260 || packet->tcode == TCODE_LOCK_REQUEST) {
263 HPSB_ERR("impossible ack_data_error from node %d "
264 "(tcode %d)", packet->node_id, packet->tcode);
268 case ACK_ADDRESS_ERROR:
272 case ACK_CONFLICT_ERROR:
274 case ACKX_SEND_ERROR:
277 /* error while sending */
281 HPSB_ERR("got invalid ack %d from node %d (tcode %d)",
282 packet->ack_code, packet->node_id, packet->tcode);
288 struct hpsb_packet *hpsb_make_readpacket(struct hpsb_host *host, nodeid_t node,
289 u64 addr, size_t length)
291 struct hpsb_packet *packet;
296 packet = hpsb_alloc_packet(length);
301 packet->node_id = node;
303 if (hpsb_get_tlabel(packet)) {
304 hpsb_free_packet(packet);
309 fill_async_readquad(packet, addr);
311 fill_async_readblock(packet, addr, length);
316 struct hpsb_packet *hpsb_make_writepacket(struct hpsb_host *host, nodeid_t node,
317 u64 addr, quadlet_t * buffer,
320 struct hpsb_packet *packet;
325 packet = hpsb_alloc_packet(length);
329 if (length % 4) { /* zero padding bytes */
330 packet->data[length >> 2] = 0;
333 packet->node_id = node;
335 if (hpsb_get_tlabel(packet)) {
336 hpsb_free_packet(packet);
341 fill_async_writequad(packet, addr, buffer ? *buffer : 0);
343 fill_async_writeblock(packet, addr, length);
345 memcpy(packet->data, buffer, length);
351 struct hpsb_packet *hpsb_make_streampacket(struct hpsb_host *host, u8 * buffer,
352 int length, int channel, int tag,
355 struct hpsb_packet *packet;
360 packet = hpsb_alloc_packet(length);
364 if (length % 4) { /* zero padding bytes */
365 packet->data[length >> 2] = 0;
369 /* Because it is too difficult to determine all PHY speeds and link
370 * speeds here, we use S100... */
371 packet->speed_code = IEEE1394_SPEED_100;
373 /* ...and prevent hpsb_send_packet() from overriding it. */
374 packet->node_id = LOCAL_BUS | ALL_NODES;
376 if (hpsb_get_tlabel(packet)) {
377 hpsb_free_packet(packet);
381 fill_async_stream_packet(packet, length, channel, tag, sync);
383 memcpy(packet->data, buffer, length);
388 struct hpsb_packet *hpsb_make_lockpacket(struct hpsb_host *host, nodeid_t node,
389 u64 addr, int extcode,
390 quadlet_t * data, quadlet_t arg)
392 struct hpsb_packet *p;
395 p = hpsb_alloc_packet(8);
401 if (hpsb_get_tlabel(p)) {
407 case EXTCODE_FETCH_ADD:
408 case EXTCODE_LITTLE_ADD:
421 fill_async_lock(p, addr, extcode, length);
426 struct hpsb_packet *hpsb_make_lock64packet(struct hpsb_host *host,
427 nodeid_t node, u64 addr, int extcode,
428 octlet_t * data, octlet_t arg)
430 struct hpsb_packet *p;
433 p = hpsb_alloc_packet(16);
439 if (hpsb_get_tlabel(p)) {
445 case EXTCODE_FETCH_ADD:
446 case EXTCODE_LITTLE_ADD:
449 p->data[0] = *data >> 32;
450 p->data[1] = *data & 0xffffffff;
456 p->data[0] = arg >> 32;
457 p->data[1] = arg & 0xffffffff;
458 p->data[2] = *data >> 32;
459 p->data[3] = *data & 0xffffffff;
463 fill_async_lock(p, addr, extcode, length);
468 struct hpsb_packet *hpsb_make_phypacket(struct hpsb_host *host, quadlet_t data)
470 struct hpsb_packet *p;
472 p = hpsb_alloc_packet(0);
477 fill_phy_packet(p, data);
483 * FIXME - these functions should probably read from / write to user space to
484 * avoid in kernel buffers for user space callers
488 * hpsb_read - generic read function
490 * Recognizes the local node ID and act accordingly. Automatically uses a
491 * quadlet read request if @length == 4 and and a block read request otherwise.
492 * It does not yet support lengths that are not a multiple of 4.
494 * You must explicitly specifiy the @generation for which the node ID is valid,
495 * to avoid sending packets to the wrong nodes when we race with a bus reset.
497 int hpsb_read(struct hpsb_host *host, nodeid_t node, unsigned int generation,
498 u64 addr, quadlet_t * buffer, size_t length)
500 struct hpsb_packet *packet;
506 BUG_ON(in_interrupt()); // We can't be called in an interrupt, yet
508 packet = hpsb_make_readpacket(host, node, addr, length);
514 packet->generation = generation;
515 retval = hpsb_send_packet_and_wait(packet);
519 retval = hpsb_packet_success(packet);
523 *buffer = packet->header[3];
525 memcpy(buffer, packet->data, length);
530 hpsb_free_tlabel(packet);
531 hpsb_free_packet(packet);
537 * hpsb_write - generic write function
539 * Recognizes the local node ID and act accordingly. Automatically uses a
540 * quadlet write request if @length == 4 and and a block write request
541 * otherwise. It does not yet support lengths that are not a multiple of 4.
543 * You must explicitly specifiy the @generation for which the node ID is valid,
544 * to avoid sending packets to the wrong nodes when we race with a bus reset.
546 int hpsb_write(struct hpsb_host *host, nodeid_t node, unsigned int generation,
547 u64 addr, quadlet_t * buffer, size_t length)
549 struct hpsb_packet *packet;
555 BUG_ON(in_interrupt()); // We can't be called in an interrupt, yet
557 packet = hpsb_make_writepacket(host, node, addr, buffer, length);
562 packet->generation = generation;
563 retval = hpsb_send_packet_and_wait(packet);
565 goto hpsb_write_fail;
567 retval = hpsb_packet_success(packet);
570 hpsb_free_tlabel(packet);
571 hpsb_free_packet(packet);
578 int hpsb_lock(struct hpsb_host *host, nodeid_t node, unsigned int generation,
579 u64 addr, int extcode, quadlet_t * data, quadlet_t arg)
581 struct hpsb_packet *packet;
584 BUG_ON(in_interrupt()); // We can't be called in an interrupt, yet
586 packet = hpsb_make_lockpacket(host, node, addr, extcode, data, arg);
590 packet->generation = generation;
591 retval = hpsb_send_packet_and_wait(packet);
595 retval = hpsb_packet_success(packet);
598 *data = packet->data[0];
602 hpsb_free_tlabel(packet);
603 hpsb_free_packet(packet);
608 int hpsb_send_gasp(struct hpsb_host *host, int channel, unsigned int generation,
609 quadlet_t * buffer, size_t length, u32 specifier_id,
610 unsigned int version)
612 struct hpsb_packet *packet;
614 u16 specifier_id_hi = (specifier_id & 0x00ffff00) >> 8;
615 u8 specifier_id_lo = specifier_id & 0xff;
617 HPSB_VERBOSE("Send GASP: channel = %d, length = %Zd", channel, length);
621 packet = hpsb_make_streampacket(host, NULL, length, channel, 3, 0);
625 packet->data[0] = cpu_to_be32((host->node_id << 16) | specifier_id_hi);
627 cpu_to_be32((specifier_id_lo << 24) | (version & 0x00ffffff));
629 memcpy(&(packet->data[2]), buffer, length - 8);
631 packet->generation = generation;
633 packet->no_waiter = 1;
635 retval = hpsb_send_packet(packet);
637 hpsb_free_packet(packet);