blob: 76938fe432a04fc3ed5f61c3169158c8bdfe7fe5 [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
2 * Core IEEE1394 transaction logic
Kristian Høgsberg3038e352006-12-19 19:58:27 -05003 *
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
Stefan Richter2a0a2592008-03-20 23:48:23 +010021#include <linux/completion.h>
Stefan Richterd6053e02008-11-24 20:40:00 +010022#include <linux/idr.h>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050023#include <linux/kernel.h>
Stefan Richterae1e5352008-06-18 18:20:45 +020024#include <linux/kref.h>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050025#include <linux/module.h>
Stefan Richterc0220d62008-07-22 21:35:47 +020026#include <linux/mutex.h>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050027#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>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050035
36#include "fw-transaction.h"
37#include "fw-topology.h"
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050038#include "fw-device.h"
Kristian Høgsberg3038e352006-12-19 19:58:27 -050039
Kristian Høgsberga77754a2007-05-07 20:33:35 -040040#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)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050050
Kristian Høgsberga77754a2007-05-07 20:33:35 -040051#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)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050059
Stefan Richtera7ea6782008-05-25 11:06:55 +020060#define HEADER_DESTINATION_IS_BROADCAST(q) \
61 (((q) & HEADER_DESTINATION(0x3f)) == HEADER_DESTINATION(0x3f))
62
Kristian Høgsberga77754a2007-05-07 20:33:35 -040063#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)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050066
Stefan Richter53dca512008-12-14 21:47:04 +010067static int close_transaction(struct fw_transaction *transaction,
68 struct fw_card *card, int rcode,
69 u32 *payload, size_t length)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050070{
Kristian Høgsberg730c32f2007-02-06 14:49:32 -050071 struct fw_transaction *t;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050072 unsigned long flags;
73
74 spin_lock_irqsave(&card->lock, flags);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -050075 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;
80 }
81 }
Kristian Høgsberg3038e352006-12-19 19:58:27 -050082 spin_unlock_irqrestore(&card->lock, flags);
83
Kristian Høgsberg730c32f2007-02-06 14:49:32 -050084 if (&t->link != &card->transaction_list) {
85 t->callback(card, rcode, payload, length, t->callback_data);
86 return 0;
87 }
88
89 return -ENOENT;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050090}
91
Kristian Høgsbergc781c062007-05-07 20:33:32 -040092/*
93 * Only valid for transactions that are potentially pending (ie have
94 * been sent).
95 */
Stefan Richter53dca512008-12-14 21:47:04 +010096int fw_cancel_transaction(struct fw_card *card,
97 struct fw_transaction *transaction)
Kristian Høgsberg730c32f2007-02-06 14:49:32 -050098{
Kristian Høgsbergc781c062007-05-07 20:33:32 -040099 /*
100 * Cancel the packet transmission if it's still queued. That
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500101 * will call the packet transmission callback which cancels
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400102 * the transaction.
103 */
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500104
105 if (card->driver->cancel_packet(card, &transaction->packet) == 0)
106 return 0;
107
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400108 /*
109 * If the request packet has already been sent, we need to see
110 * if the transaction is still pending and remove it in that case.
111 */
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500112
113 return close_transaction(transaction, card, RCODE_CANCELLED, NULL, 0);
114}
115EXPORT_SYMBOL(fw_cancel_transaction);
116
Stefan Richter53dca512008-12-14 21:47:04 +0100117static void transmit_complete_callback(struct fw_packet *packet,
118 struct fw_card *card, int status)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500119{
120 struct fw_transaction *t =
121 container_of(packet, struct fw_transaction, packet);
122
123 switch (status) {
124 case ACK_COMPLETE:
125 close_transaction(t, card, RCODE_COMPLETE, NULL, 0);
126 break;
127 case ACK_PENDING:
128 t->timestamp = packet->timestamp;
129 break;
130 case ACK_BUSY_X:
131 case ACK_BUSY_A:
132 case ACK_BUSY_B:
133 close_transaction(t, card, RCODE_BUSY, NULL, 0);
134 break;
135 case ACK_DATA_ERROR:
Kristian Høgsberge5f49c32007-01-26 00:38:34 -0500136 close_transaction(t, card, RCODE_DATA_ERROR, NULL, 0);
137 break;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500138 case ACK_TYPE_ERROR:
Kristian Høgsberge5f49c32007-01-26 00:38:34 -0500139 close_transaction(t, card, RCODE_TYPE_ERROR, NULL, 0);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500140 break;
141 default:
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400142 /*
143 * In this case the ack is really a juju specific
144 * rcode, so just forward that to the callback.
145 */
Kristian Høgsberge5f49c32007-01-26 00:38:34 -0500146 close_transaction(t, card, status, NULL, 0);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500147 break;
148 }
149}
150
Stefan Richter53dca512008-12-14 21:47:04 +0100151static void fw_fill_request(struct fw_packet *packet, int tcode, int tlabel,
Stefan Richterb9549bc2008-07-12 14:50:42 +0200152 int destination_id, int source_id, int generation, int speed,
Kristian Høgsberg36bfe492007-01-26 00:38:13 -0500153 unsigned long long offset, void *payload, size_t length)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500154{
155 int ext_tcode;
156
157 if (tcode > 0x10) {
Jarod Wilson8f9f9632008-01-23 16:05:45 -0500158 ext_tcode = tcode & ~0x10;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500159 tcode = TCODE_LOCK_REQUEST;
160 } else
161 ext_tcode = 0;
162
163 packet->header[0] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400164 HEADER_RETRY(RETRY_X) |
165 HEADER_TLABEL(tlabel) |
166 HEADER_TCODE(tcode) |
Stefan Richterb9549bc2008-07-12 14:50:42 +0200167 HEADER_DESTINATION(destination_id);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500168 packet->header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400169 HEADER_OFFSET_HIGH(offset >> 32) | HEADER_SOURCE(source_id);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500170 packet->header[2] =
171 offset;
172
173 switch (tcode) {
174 case TCODE_WRITE_QUADLET_REQUEST:
175 packet->header[3] = *(u32 *)payload;
176 packet->header_length = 16;
177 packet->payload_length = 0;
178 break;
179
180 case TCODE_LOCK_REQUEST:
181 case TCODE_WRITE_BLOCK_REQUEST:
182 packet->header[3] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400183 HEADER_DATA_LENGTH(length) |
184 HEADER_EXTENDED_TCODE(ext_tcode);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500185 packet->header_length = 16;
186 packet->payload = payload;
187 packet->payload_length = length;
188 break;
189
190 case TCODE_READ_QUADLET_REQUEST:
191 packet->header_length = 12;
192 packet->payload_length = 0;
193 break;
194
195 case TCODE_READ_BLOCK_REQUEST:
196 packet->header[3] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400197 HEADER_DATA_LENGTH(length) |
198 HEADER_EXTENDED_TCODE(ext_tcode);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500199 packet->header_length = 16;
200 packet->payload_length = 0;
201 break;
202 }
203
204 packet->speed = speed;
205 packet->generation = generation;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500206 packet->ack = 0;
Stefan Richter1d1dc5e2008-12-10 00:20:38 +0100207 packet->payload_bus = 0;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500208}
209
210/**
211 * This function provides low-level access to the IEEE1394 transaction
212 * logic. Most C programs would use either fw_read(), fw_write() or
213 * fw_lock() instead - those function are convenience wrappers for
214 * this function. The fw_send_request() function is primarily
215 * provided as a flexible, one-stop entry point for languages bindings
216 * and protocol bindings.
217 *
218 * FIXME: Document this function further, in particular the possible
219 * values for rcode in the callback. In short, we map ACK_COMPLETE to
220 * RCODE_COMPLETE, internal errors set errno and set rcode to
221 * RCODE_SEND_ERROR (which is out of range for standard ieee1394
222 * rcodes). All other rcodes are forwarded unchanged. For all
223 * errors, payload is NULL, length is 0.
224 *
225 * Can not expect the callback to be called before the function
226 * returns, though this does happen in some cases (ACK_COMPLETE and
227 * errors).
228 *
229 * The payload is only used for write requests and must not be freed
230 * until the callback has been called.
231 *
232 * @param card the card from which to send the request
233 * @param tcode the tcode for this transaction. Do not use
Uwe Kleine-Königdbe7f762007-10-20 01:55:04 +0200234 * TCODE_LOCK_REQUEST directly, instead use TCODE_LOCK_MASK_SWAP
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500235 * etc. to specify tcode and ext_tcode.
Stefan Richter907293d2007-01-23 21:11:43 +0100236 * @param node_id the destination node ID (bus ID and PHY ID concatenated)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500237 * @param generation the generation for which node_id is valid
238 * @param speed the speed to use for sending the request
239 * @param offset the 48 bit offset on the destination node
240 * @param payload the data payload for the request subaction
241 * @param length the length in bytes of the data to read
242 * @param callback function to be called when the transaction is completed
243 * @param callback_data pointer to arbitrary data, which will be
244 * passed to the callback
245 */
Stefan Richter53dca512008-12-14 21:47:04 +0100246void fw_send_request(struct fw_card *card, struct fw_transaction *t, int tcode,
247 int destination_id, int generation, int speed,
248 unsigned long long offset, void *payload, size_t length,
249 fw_transaction_callback_t callback, void *callback_data)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500250{
251 unsigned long flags;
Stefan Richterb9549bc2008-07-12 14:50:42 +0200252 int tlabel;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500253
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400254 /*
255 * Bump the flush timer up 100ms first of all so we
256 * don't race with a flush timer callback.
257 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500258
259 mod_timer(&card->flush_timer, jiffies + DIV_ROUND_UP(HZ, 10));
260
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400261 /*
262 * Allocate tlabel from the bitmap and put the transaction on
263 * the list while holding the card spinlock.
264 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500265
266 spin_lock_irqsave(&card->lock, flags);
267
268 tlabel = card->current_tlabel;
269 if (card->tlabel_mask & (1 << tlabel)) {
270 spin_unlock_irqrestore(&card->lock, flags);
271 callback(card, RCODE_SEND_ERROR, NULL, 0, callback_data);
272 return;
273 }
274
275 card->current_tlabel = (card->current_tlabel + 1) & 0x1f;
276 card->tlabel_mask |= (1 << tlabel);
277
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200278 t->node_id = destination_id;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500279 t->tlabel = tlabel;
280 t->callback = callback;
281 t->callback_data = callback_data;
282
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200283 fw_fill_request(&t->packet, tcode, t->tlabel,
284 destination_id, card->node_id, generation,
285 speed, offset, payload, length);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500286 t->packet.callback = transmit_complete_callback;
287
Stefan Richtere9aeb462008-07-12 14:50:06 +0200288 list_add_tail(&t->link, &card->transaction_list);
289
290 spin_unlock_irqrestore(&card->lock, flags);
291
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500292 card->driver->send_request(card, &t->packet);
293}
294EXPORT_SYMBOL(fw_send_request);
295
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200296struct transaction_callback_data {
297 struct completion done;
298 void *payload;
299 int rcode;
300};
301
302static void transaction_callback(struct fw_card *card, int rcode,
303 void *payload, size_t length, void *data)
304{
305 struct transaction_callback_data *d = data;
306
307 if (rcode == RCODE_COMPLETE)
308 memcpy(d->payload, payload, length);
309 d->rcode = rcode;
310 complete(&d->done);
311}
312
313/**
314 * fw_run_transaction - send request and sleep until transaction is completed
315 *
316 * Returns the RCODE.
317 */
318int fw_run_transaction(struct fw_card *card, int tcode, int destination_id,
Stefan Richter53dca512008-12-14 21:47:04 +0100319 int generation, int speed, unsigned long long offset,
Stefan Richterba27e1f2009-03-05 19:07:00 +0100320 void *payload, size_t length)
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200321{
322 struct transaction_callback_data d;
323 struct fw_transaction t;
324
325 init_completion(&d.done);
Stefan Richterba27e1f2009-03-05 19:07:00 +0100326 d.payload = payload;
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200327 fw_send_request(card, &t, tcode, destination_id, generation, speed,
Stefan Richterba27e1f2009-03-05 19:07:00 +0100328 offset, payload, length, transaction_callback, &d);
Jay Fenlason1e119fa2008-07-20 14:20:53 +0200329 wait_for_completion(&d.done);
330
331 return d.rcode;
332}
333EXPORT_SYMBOL(fw_run_transaction);
334
Stefan Richterc0220d62008-07-22 21:35:47 +0200335static DEFINE_MUTEX(phy_config_mutex);
336static DECLARE_COMPLETION(phy_config_done);
Stefan Richterae1e5352008-06-18 18:20:45 +0200337
338static void transmit_phy_packet_callback(struct fw_packet *packet,
339 struct fw_card *card, int status)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500340{
Stefan Richterc0220d62008-07-22 21:35:47 +0200341 complete(&phy_config_done);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500342}
343
Stefan Richterc0220d62008-07-22 21:35:47 +0200344static struct fw_packet phy_config_packet = {
345 .header_length = 8,
346 .payload_length = 0,
347 .speed = SCODE_100,
348 .callback = transmit_phy_packet_callback,
349};
350
Kristian Høgsberg83db8012007-01-26 00:37:50 -0500351void fw_send_phy_config(struct fw_card *card,
352 int node_id, int generation, int gap_count)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500353{
Stefan Richterae1e5352008-06-18 18:20:45 +0200354 long timeout = DIV_ROUND_UP(HZ, 10);
Stefan Richter2a0a2592008-03-20 23:48:23 +0100355 u32 data = PHY_IDENTIFIER(PHY_PACKET_CONFIG) |
356 PHY_CONFIG_ROOT_ID(node_id) |
357 PHY_CONFIG_GAP_COUNT(gap_count);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500358
Stefan Richterc0220d62008-07-22 21:35:47 +0200359 mutex_lock(&phy_config_mutex);
Kristian Høgsberg83db8012007-01-26 00:37:50 -0500360
Stefan Richterc0220d62008-07-22 21:35:47 +0200361 phy_config_packet.header[0] = data;
362 phy_config_packet.header[1] = ~data;
363 phy_config_packet.generation = generation;
364 INIT_COMPLETION(phy_config_done);
Stefan Richterae1e5352008-06-18 18:20:45 +0200365
Stefan Richterc0220d62008-07-22 21:35:47 +0200366 card->driver->send_request(card, &phy_config_packet);
367 wait_for_completion_timeout(&phy_config_done, timeout);
Stefan Richterae1e5352008-06-18 18:20:45 +0200368
Stefan Richterc0220d62008-07-22 21:35:47 +0200369 mutex_unlock(&phy_config_mutex);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500370}
371
372void fw_flush_transactions(struct fw_card *card)
373{
374 struct fw_transaction *t, *next;
375 struct list_head list;
376 unsigned long flags;
377
378 INIT_LIST_HEAD(&list);
379 spin_lock_irqsave(&card->lock, flags);
380 list_splice_init(&card->transaction_list, &list);
381 card->tlabel_mask = 0;
382 spin_unlock_irqrestore(&card->lock, flags);
383
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500384 list_for_each_entry_safe(t, next, &list, link) {
385 card->driver->cancel_packet(card, &t->packet);
386
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400387 /*
388 * At this point cancel_packet will never call the
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500389 * transaction callback, since we just took all the
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400390 * transactions out of the list. So do it here.
391 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500392 t->callback(card, RCODE_CANCELLED, NULL, 0, t->callback_data);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500393 }
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500394}
395
Stefan Richter53dca512008-12-14 21:47:04 +0100396static struct fw_address_handler *lookup_overlapping_address_handler(
397 struct list_head *list, unsigned long long offset, size_t length)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500398{
399 struct fw_address_handler *handler;
400
401 list_for_each_entry(handler, list, link) {
402 if (handler->offset < offset + length &&
403 offset < handler->offset + handler->length)
404 return handler;
405 }
406
407 return NULL;
408}
409
Stefan Richter53dca512008-12-14 21:47:04 +0100410static struct fw_address_handler *lookup_enclosing_address_handler(
411 struct list_head *list, unsigned long long offset, size_t length)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500412{
413 struct fw_address_handler *handler;
414
415 list_for_each_entry(handler, list, link) {
416 if (handler->offset <= offset &&
417 offset + length <= handler->offset + handler->length)
418 return handler;
419 }
420
421 return NULL;
422}
423
424static DEFINE_SPINLOCK(address_handler_lock);
425static LIST_HEAD(address_handler_list);
426
Stefan Richter21ebcd12007-01-14 15:29:07 +0100427const struct fw_address_region fw_high_memory_region =
Stefan Richter5af4e5e2007-01-21 20:45:32 +0100428 { .start = 0x000100000000ULL, .end = 0xffffe0000000ULL, };
Adrian Bunkdb8be072008-03-31 02:22:11 +0300429EXPORT_SYMBOL(fw_high_memory_region);
430
431#if 0
432const struct fw_address_region fw_low_memory_region =
433 { .start = 0x000000000000ULL, .end = 0x000100000000ULL, };
Stefan Richter21ebcd12007-01-14 15:29:07 +0100434const struct fw_address_region fw_private_region =
Stefan Richter5af4e5e2007-01-21 20:45:32 +0100435 { .start = 0xffffe0000000ULL, .end = 0xfffff0000000ULL, };
Stefan Richter21ebcd12007-01-14 15:29:07 +0100436const struct fw_address_region fw_csr_region =
Jarod Wilsoncca60972008-03-08 12:52:03 -0500437 { .start = CSR_REGISTER_BASE,
438 .end = CSR_REGISTER_BASE | CSR_CONFIG_ROM_END, };
Stefan Richter21ebcd12007-01-14 15:29:07 +0100439const struct fw_address_region fw_unit_space_region =
Stefan Richter5af4e5e2007-01-21 20:45:32 +0100440 { .start = 0xfffff0000900ULL, .end = 0x1000000000000ULL, };
Adrian Bunkdb8be072008-03-31 02:22:11 +0300441#endif /* 0 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500442
443/**
Stefan Richter3e0b5f02008-12-14 19:21:01 +0100444 * fw_core_add_address_handler - register for incoming requests
445 * @handler: callback
446 * @region: region in the IEEE 1212 node space address range
447 *
448 * region->start, ->end, and handler->length have to be quadlet-aligned.
449 *
450 * When a request is received that falls within the specified address range,
451 * the specified callback is invoked. The parameters passed to the callback
452 * give the details of the particular request.
Stefan Richter1415d912007-07-17 02:10:16 +0200453 *
454 * Return value: 0 on success, non-zero otherwise.
455 * The start offset of the handler's address region is determined by
456 * fw_core_add_address_handler() and is returned in handler->offset.
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500457 */
Stefan Richter53dca512008-12-14 21:47:04 +0100458int fw_core_add_address_handler(struct fw_address_handler *handler,
459 const struct fw_address_region *region)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500460{
461 struct fw_address_handler *other;
462 unsigned long flags;
463 int ret = -EBUSY;
464
Stefan Richter3e0b5f02008-12-14 19:21:01 +0100465 if (region->start & 0xffff000000000003ULL ||
466 region->end & 0xffff000000000003ULL ||
467 region->start >= region->end ||
468 handler->length & 3 ||
469 handler->length == 0)
470 return -EINVAL;
471
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500472 spin_lock_irqsave(&address_handler_lock, flags);
473
Stefan Richter3e0b5f02008-12-14 19:21:01 +0100474 handler->offset = region->start;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500475 while (handler->offset + handler->length <= region->end) {
476 other =
477 lookup_overlapping_address_handler(&address_handler_list,
478 handler->offset,
479 handler->length);
480 if (other != NULL) {
Stefan Richter3e0b5f02008-12-14 19:21:01 +0100481 handler->offset += other->length;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500482 } else {
483 list_add_tail(&handler->link, &address_handler_list);
484 ret = 0;
485 break;
486 }
487 }
488
489 spin_unlock_irqrestore(&address_handler_lock, flags);
490
491 return ret;
492}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500493EXPORT_SYMBOL(fw_core_add_address_handler);
494
495/**
Stefan Richter44be21b2008-12-14 19:21:31 +0100496 * fw_core_remove_address_handler - unregister an address handler
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500497 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500498void fw_core_remove_address_handler(struct fw_address_handler *handler)
499{
500 unsigned long flags;
501
502 spin_lock_irqsave(&address_handler_lock, flags);
503 list_del(&handler->link);
504 spin_unlock_irqrestore(&address_handler_lock, flags);
505}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500506EXPORT_SYMBOL(fw_core_remove_address_handler);
507
508struct fw_request {
509 struct fw_packet response;
Kristian Høgsberg36bfe492007-01-26 00:38:13 -0500510 u32 request_header[4];
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500511 int ack;
512 u32 length;
513 u32 data[0];
514};
515
Stefan Richter53dca512008-12-14 21:47:04 +0100516static void free_response_callback(struct fw_packet *packet,
517 struct fw_card *card, int status)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500518{
519 struct fw_request *request;
520
521 request = container_of(packet, struct fw_request, response);
522 kfree(request);
523}
524
Stefan Richter53dca512008-12-14 21:47:04 +0100525void fw_fill_response(struct fw_packet *response, u32 *request_header,
526 int rcode, void *payload, size_t length)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500527{
528 int tcode, tlabel, extended_tcode, source, destination;
529
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400530 tcode = HEADER_GET_TCODE(request_header[0]);
531 tlabel = HEADER_GET_TLABEL(request_header[0]);
532 source = HEADER_GET_DESTINATION(request_header[0]);
533 destination = HEADER_GET_SOURCE(request_header[1]);
534 extended_tcode = HEADER_GET_EXTENDED_TCODE(request_header[3]);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500535
536 response->header[0] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400537 HEADER_RETRY(RETRY_1) |
538 HEADER_TLABEL(tlabel) |
539 HEADER_DESTINATION(destination);
Kristian Høgsberg36bfe492007-01-26 00:38:13 -0500540 response->header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400541 HEADER_SOURCE(source) |
542 HEADER_RCODE(rcode);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500543 response->header[2] = 0;
544
545 switch (tcode) {
546 case TCODE_WRITE_QUADLET_REQUEST:
547 case TCODE_WRITE_BLOCK_REQUEST:
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400548 response->header[0] |= HEADER_TCODE(TCODE_WRITE_RESPONSE);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500549 response->header_length = 12;
550 response->payload_length = 0;
551 break;
552
553 case TCODE_READ_QUADLET_REQUEST:
554 response->header[0] |=
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400555 HEADER_TCODE(TCODE_READ_QUADLET_RESPONSE);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500556 if (payload != NULL)
557 response->header[3] = *(u32 *)payload;
558 else
559 response->header[3] = 0;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500560 response->header_length = 16;
561 response->payload_length = 0;
562 break;
563
564 case TCODE_READ_BLOCK_REQUEST:
565 case TCODE_LOCK_REQUEST:
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400566 response->header[0] |= HEADER_TCODE(tcode + 2);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500567 response->header[3] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400568 HEADER_DATA_LENGTH(length) |
569 HEADER_EXTENDED_TCODE(extended_tcode);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500570 response->header_length = 16;
Kristian Høgsberg36bfe492007-01-26 00:38:13 -0500571 response->payload = payload;
572 response->payload_length = length;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500573 break;
574
575 default:
576 BUG();
577 return;
578 }
Stefan Richter1d1dc5e2008-12-10 00:20:38 +0100579
580 response->payload_bus = 0;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500581}
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500582EXPORT_SYMBOL(fw_fill_response);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500583
Stefan Richter53dca512008-12-14 21:47:04 +0100584static struct fw_request *allocate_request(struct fw_packet *p)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500585{
586 struct fw_request *request;
587 u32 *data, length;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500588 int request_tcode, t;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500589
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400590 request_tcode = HEADER_GET_TCODE(p->header[0]);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500591 switch (request_tcode) {
592 case TCODE_WRITE_QUADLET_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500593 data = &p->header[3];
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500594 length = 4;
595 break;
596
597 case TCODE_WRITE_BLOCK_REQUEST:
598 case TCODE_LOCK_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500599 data = p->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400600 length = HEADER_GET_DATA_LENGTH(p->header[3]);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500601 break;
602
603 case TCODE_READ_QUADLET_REQUEST:
604 data = NULL;
605 length = 4;
606 break;
607
608 case TCODE_READ_BLOCK_REQUEST:
609 data = NULL;
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400610 length = HEADER_GET_DATA_LENGTH(p->header[3]);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500611 break;
612
613 default:
Stefan Richter0bf607c2008-05-31 19:01:26 +0200614 fw_error("ERROR - corrupt request received - %08x %08x %08x\n",
615 p->header[0], p->header[1], p->header[2]);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500616 return NULL;
617 }
618
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400619 request = kmalloc(sizeof(*request) + length, GFP_ATOMIC);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500620 if (request == NULL)
621 return NULL;
622
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500623 t = (p->timestamp & 0x1fff) + 4000;
624 if (t >= 8000)
625 t = (p->timestamp & ~0x1fff) + 0x2000 + t - 8000;
626 else
627 t = (p->timestamp & ~0x1fff) + t;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500628
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500629 request->response.speed = p->speed;
630 request->response.timestamp = t;
631 request->response.generation = p->generation;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500632 request->response.ack = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500633 request->response.callback = free_response_callback;
634 request->ack = p->ack;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500635 request->length = length;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500636 if (data)
Kristian Høgsberg6e2e8422007-02-16 17:34:37 -0500637 memcpy(request->data, data, length);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500638
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400639 memcpy(request->request_header, p->header, sizeof(p->header));
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500640
641 return request;
642}
643
Stefan Richter53dca512008-12-14 21:47:04 +0100644void fw_send_response(struct fw_card *card,
645 struct fw_request *request, int rcode)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500646{
Stefan Richtera7ea6782008-05-25 11:06:55 +0200647 /* unified transaction or broadcast transaction: don't respond */
648 if (request->ack != ACK_PENDING ||
649 HEADER_DESTINATION_IS_BROADCAST(request->request_header[0])) {
Stefan Richter9c9bdf42007-07-17 02:15:36 +0200650 kfree(request);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500651 return;
Stefan Richter9c9bdf42007-07-17 02:15:36 +0200652 }
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500653
Kristian Høgsberg36bfe492007-01-26 00:38:13 -0500654 if (rcode == RCODE_COMPLETE)
655 fw_fill_response(&request->response, request->request_header,
656 rcode, request->data, request->length);
657 else
658 fw_fill_response(&request->response, request->request_header,
659 rcode, NULL, 0);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500660
661 card->driver->send_response(card, &request->response);
662}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500663EXPORT_SYMBOL(fw_send_response);
664
Stefan Richter53dca512008-12-14 21:47:04 +0100665void fw_core_handle_request(struct fw_card *card, struct fw_packet *p)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500666{
667 struct fw_address_handler *handler;
668 struct fw_request *request;
669 unsigned long long offset;
670 unsigned long flags;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500671 int tcode, destination, source;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500672
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500673 if (p->ack != ACK_PENDING && p->ack != ACK_COMPLETE)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500674 return;
675
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500676 request = allocate_request(p);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500677 if (request == NULL) {
678 /* FIXME: send statically allocated busy packet. */
679 return;
680 }
681
682 offset =
683 ((unsigned long long)
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400684 HEADER_GET_OFFSET_HIGH(p->header[1]) << 32) | p->header[2];
685 tcode = HEADER_GET_TCODE(p->header[0]);
686 destination = HEADER_GET_DESTINATION(p->header[0]);
Rabin Vincent478b2332007-12-21 23:02:15 +0530687 source = HEADER_GET_SOURCE(p->header[1]);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500688
689 spin_lock_irqsave(&address_handler_lock, flags);
690 handler = lookup_enclosing_address_handler(&address_handler_list,
691 offset, request->length);
692 spin_unlock_irqrestore(&address_handler_lock, flags);
693
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400694 /*
695 * FIXME: lookup the fw_node corresponding to the sender of
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500696 * this request and pass that to the address handler instead
697 * of the node ID. We may also want to move the address
698 * allocations to fw_node so we only do this callback if the
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400699 * upper layers registered it for this node.
700 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500701
702 if (handler == NULL)
703 fw_send_response(card, request, RCODE_ADDRESS_ERROR);
704 else
705 handler->address_callback(card, request,
706 tcode, destination, source,
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500707 p->generation, p->speed, offset,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500708 request->data, request->length,
709 handler->callback_data);
710}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500711EXPORT_SYMBOL(fw_core_handle_request);
712
Stefan Richter53dca512008-12-14 21:47:04 +0100713void fw_core_handle_response(struct fw_card *card, struct fw_packet *p)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500714{
715 struct fw_transaction *t;
716 unsigned long flags;
717 u32 *data;
718 size_t data_length;
719 int tcode, tlabel, destination, source, rcode;
720
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400721 tcode = HEADER_GET_TCODE(p->header[0]);
722 tlabel = HEADER_GET_TLABEL(p->header[0]);
723 destination = HEADER_GET_DESTINATION(p->header[0]);
724 source = HEADER_GET_SOURCE(p->header[1]);
725 rcode = HEADER_GET_RCODE(p->header[1]);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500726
727 spin_lock_irqsave(&card->lock, flags);
728 list_for_each_entry(t, &card->transaction_list, link) {
729 if (t->node_id == source && t->tlabel == tlabel) {
730 list_del(&t->link);
731 card->tlabel_mask &= ~(1 << t->tlabel);
732 break;
733 }
734 }
735 spin_unlock_irqrestore(&card->lock, flags);
736
737 if (&t->link == &card->transaction_list) {
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500738 fw_notify("Unsolicited response (source %x, tlabel %x)\n",
739 source, tlabel);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500740 return;
741 }
742
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400743 /*
744 * FIXME: sanity check packet, is length correct, does tcodes
745 * and addresses match.
746 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500747
748 switch (tcode) {
749 case TCODE_READ_QUADLET_RESPONSE:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500750 data = (u32 *) &p->header[3];
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500751 data_length = 4;
752 break;
753
754 case TCODE_WRITE_RESPONSE:
755 data = NULL;
756 data_length = 0;
757 break;
758
759 case TCODE_READ_BLOCK_RESPONSE:
760 case TCODE_LOCK_RESPONSE:
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500761 data = p->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400762 data_length = HEADER_GET_DATA_LENGTH(p->header[3]);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500763 break;
764
765 default:
766 /* Should never happen, this is just to shut up gcc. */
767 data = NULL;
768 data_length = 0;
769 break;
770 }
771
Stefan Richter10a4c732008-03-16 00:56:41 +0100772 /*
773 * The response handler may be executed while the request handler
774 * is still pending. Cancel the request handler.
775 */
776 card->driver->cancel_packet(card, &t->packet);
777
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500778 t->callback(card, rcode, data, data_length, t->callback_data);
779}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500780EXPORT_SYMBOL(fw_core_handle_response);
781
Stefan Richterae579882007-08-02 20:34:17 +0200782static const struct fw_address_region topology_map_region =
Jarod Wilsoncca60972008-03-08 12:52:03 -0500783 { .start = CSR_REGISTER_BASE | CSR_TOPOLOGY_MAP,
784 .end = CSR_REGISTER_BASE | CSR_TOPOLOGY_MAP_END, };
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500785
Stefan Richter53dca512008-12-14 21:47:04 +0100786static void handle_topology_map(struct fw_card *card, struct fw_request *request,
787 int tcode, int destination, int source, int generation,
788 int speed, unsigned long long offset,
789 void *payload, size_t length, void *callback_data)
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500790{
791 int i, start, end;
Stefan Richterefbf3902008-02-23 12:24:57 +0100792 __be32 *map;
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500793
794 if (!TCODE_IS_READ_REQUEST(tcode)) {
795 fw_send_response(card, request, RCODE_TYPE_ERROR);
796 return;
797 }
798
799 if ((offset & 3) > 0 || (length & 3) > 0) {
800 fw_send_response(card, request, RCODE_ADDRESS_ERROR);
801 return;
802 }
803
804 start = (offset - topology_map_region.start) / 4;
805 end = start + length / 4;
806 map = payload;
807
808 for (i = 0; i < length / 4; i++)
809 map[i] = cpu_to_be32(card->topology_map[start + i]);
810
811 fw_send_response(card, request, RCODE_COMPLETE);
812}
813
814static struct fw_address_handler topology_map = {
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500815 .length = 0x200,
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500816 .address_callback = handle_topology_map,
817};
818
Stefan Richterae579882007-08-02 20:34:17 +0200819static const struct fw_address_region registers_region =
Jarod Wilsoncca60972008-03-08 12:52:03 -0500820 { .start = CSR_REGISTER_BASE,
821 .end = CSR_REGISTER_BASE | CSR_CONFIG_ROM, };
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500822
Stefan Richter53dca512008-12-14 21:47:04 +0100823static void handle_registers(struct fw_card *card, struct fw_request *request,
824 int tcode, int destination, int source, int generation,
825 int speed, unsigned long long offset,
826 void *payload, size_t length, void *callback_data)
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500827{
Jarod Wilson15f0d832008-03-08 13:18:58 -0500828 int reg = offset & ~CSR_REGISTER_BASE;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500829 unsigned long long bus_time;
830 __be32 *data = payload;
Stefan Richtere534fe12008-05-24 16:41:09 +0200831 int rcode = RCODE_COMPLETE;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500832
833 switch (reg) {
834 case CSR_CYCLE_TIME:
835 case CSR_BUS_TIME:
836 if (!TCODE_IS_READ_REQUEST(tcode) || length != 4) {
Stefan Richtere534fe12008-05-24 16:41:09 +0200837 rcode = RCODE_TYPE_ERROR;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500838 break;
839 }
840
841 bus_time = card->driver->get_bus_time(card);
842 if (reg == CSR_CYCLE_TIME)
843 *data = cpu_to_be32(bus_time);
844 else
845 *data = cpu_to_be32(bus_time >> 25);
Stefan Richtere534fe12008-05-24 16:41:09 +0200846 break;
847
848 case CSR_BROADCAST_CHANNEL:
849 if (tcode == TCODE_READ_QUADLET_REQUEST)
850 *data = cpu_to_be32(card->broadcast_channel);
851 else if (tcode == TCODE_WRITE_QUADLET_REQUEST)
852 card->broadcast_channel =
853 (be32_to_cpu(*data) & BROADCAST_CHANNEL_VALID) |
854 BROADCAST_CHANNEL_INITIAL;
855 else
856 rcode = RCODE_TYPE_ERROR;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500857 break;
858
859 case CSR_BUS_MANAGER_ID:
860 case CSR_BANDWIDTH_AVAILABLE:
861 case CSR_CHANNELS_AVAILABLE_HI:
862 case CSR_CHANNELS_AVAILABLE_LO:
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400863 /*
864 * FIXME: these are handled by the OHCI hardware and
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500865 * the stack never sees these request. If we add
866 * support for a new type of controller that doesn't
867 * handle this in hardware we need to deal with these
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400868 * transactions.
869 */
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500870 BUG();
871 break;
872
873 case CSR_BUSY_TIMEOUT:
874 /* FIXME: Implement this. */
Stefan Richtere534fe12008-05-24 16:41:09 +0200875
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500876 default:
Stefan Richtere534fe12008-05-24 16:41:09 +0200877 rcode = RCODE_ADDRESS_ERROR;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500878 break;
879 }
Stefan Richtere534fe12008-05-24 16:41:09 +0200880
881 fw_send_response(card, request, rcode);
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500882}
883
884static struct fw_address_handler registers = {
885 .length = 0x400,
886 .address_callback = handle_registers,
887};
888
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500889MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
890MODULE_DESCRIPTION("Core IEEE1394 transaction logic");
891MODULE_LICENSE("GPL");
892
Kristian Høgsberg937f6872007-03-07 12:12:36 -0500893static const u32 vendor_textual_descriptor[] = {
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500894 /* textual descriptor leaf () */
Kristian Høgsberg937f6872007-03-07 12:12:36 -0500895 0x00060000,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500896 0x00000000,
897 0x00000000,
898 0x4c696e75, /* L i n u */
899 0x78204669, /* x F i */
900 0x72657769, /* r e w i */
Kristian Høgsberg937f6872007-03-07 12:12:36 -0500901 0x72650000, /* r e */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500902};
903
Kristian Høgsberg937f6872007-03-07 12:12:36 -0500904static const u32 model_textual_descriptor[] = {
905 /* model descriptor leaf () */
906 0x00030000,
907 0x00000000,
908 0x00000000,
909 0x4a756a75, /* J u j u */
910};
911
912static struct fw_descriptor vendor_id_descriptor = {
913 .length = ARRAY_SIZE(vendor_textual_descriptor),
914 .immediate = 0x03d00d1e,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500915 .key = 0x81000000,
Kristian Høgsberg937f6872007-03-07 12:12:36 -0500916 .data = vendor_textual_descriptor,
917};
918
919static struct fw_descriptor model_id_descriptor = {
920 .length = ARRAY_SIZE(model_textual_descriptor),
921 .immediate = 0x17000001,
922 .key = 0x81000000,
923 .data = model_textual_descriptor,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500924};
925
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500926static int __init fw_core_init(void)
927{
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100928 int ret;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500929
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100930 ret = bus_register(&fw_bus_type);
931 if (ret < 0)
932 return ret;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500933
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500934 fw_cdev_major = register_chrdev(0, "firewire", &fw_device_ops);
935 if (fw_cdev_major < 0) {
936 bus_unregister(&fw_bus_type);
937 return fw_cdev_major;
938 }
939
Stefan Richterc490a6d2008-12-14 21:45:14 +0100940 fw_core_add_address_handler(&topology_map, &topology_map_region);
941 fw_core_add_address_handler(&registers, &registers_region);
942 fw_core_add_descriptor(&vendor_id_descriptor);
943 fw_core_add_descriptor(&model_id_descriptor);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500944
945 return 0;
946}
947
948static void __exit fw_core_cleanup(void)
949{
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500950 unregister_chrdev(fw_cdev_major, "firewire");
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500951 bus_unregister(&fw_bus_type);
Stefan Richterd6053e02008-11-24 20:40:00 +0100952 idr_destroy(&fw_device_idr);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500953}
954
955module_init(fw_core_init);
956module_exit(fw_core_cleanup);