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