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