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