blob: a9f2d07e7c65e883cda498863a38c640c3aef42a [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
2 * Driver for OHCI 1394 controllers
Kristian Høgsberged568912006-12-19 19:58:35 -05003 *
Kristian Høgsberged568912006-12-19 19:58:35 -05004 * Copyright (C) 2003-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 Richtere524f6162007-08-20 21:58:30 +020021#include <linux/compiler.h>
Kristian Høgsberged568912006-12-19 19:58:35 -050022#include <linux/delay.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080023#include <linux/dma-mapping.h>
Stefan Richterc26f0232007-08-20 21:40:30 +020024#include <linux/gfp.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020025#include <linux/init.h>
26#include <linux/interrupt.h>
27#include <linux/kernel.h>
Al Virofaa2fb42007-05-15 20:36:10 +010028#include <linux/mm.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020029#include <linux/module.h>
30#include <linux/pci.h>
Stefan Richterc26f0232007-08-20 21:40:30 +020031#include <linux/spinlock.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080032
Stefan Richterc26f0232007-08-20 21:40:30 +020033#include <asm/page.h>
Stefan Richteree71c2f2007-08-25 14:08:19 +020034#include <asm/system.h>
Kristian Høgsberged568912006-12-19 19:58:35 -050035
Kristian Høgsberged568912006-12-19 19:58:35 -050036#include "fw-ohci.h"
Stefan Richtera7fb60d2007-08-20 21:41:22 +020037#include "fw-transaction.h"
Kristian Høgsberged568912006-12-19 19:58:35 -050038
Kristian Høgsberga77754a2007-05-07 20:33:35 -040039#define DESCRIPTOR_OUTPUT_MORE 0
40#define DESCRIPTOR_OUTPUT_LAST (1 << 12)
41#define DESCRIPTOR_INPUT_MORE (2 << 12)
42#define DESCRIPTOR_INPUT_LAST (3 << 12)
43#define DESCRIPTOR_STATUS (1 << 11)
44#define DESCRIPTOR_KEY_IMMEDIATE (2 << 8)
45#define DESCRIPTOR_PING (1 << 7)
46#define DESCRIPTOR_YY (1 << 6)
47#define DESCRIPTOR_NO_IRQ (0 << 4)
48#define DESCRIPTOR_IRQ_ERROR (1 << 4)
49#define DESCRIPTOR_IRQ_ALWAYS (3 << 4)
50#define DESCRIPTOR_BRANCH_ALWAYS (3 << 2)
51#define DESCRIPTOR_WAIT (3 << 0)
Kristian Høgsberged568912006-12-19 19:58:35 -050052
53struct descriptor {
54 __le16 req_count;
55 __le16 control;
56 __le32 data_address;
57 __le32 branch_address;
58 __le16 res_count;
59 __le16 transfer_status;
60} __attribute__((aligned(16)));
61
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -050062struct db_descriptor {
63 __le16 first_size;
64 __le16 control;
65 __le16 second_req_count;
66 __le16 first_req_count;
67 __le32 branch_address;
68 __le16 second_res_count;
69 __le16 first_res_count;
70 __le32 reserved0;
71 __le32 first_buffer;
72 __le32 second_buffer;
73 __le32 reserved1;
74} __attribute__((aligned(16)));
75
Kristian Høgsberga77754a2007-05-07 20:33:35 -040076#define CONTROL_SET(regs) (regs)
77#define CONTROL_CLEAR(regs) ((regs) + 4)
78#define COMMAND_PTR(regs) ((regs) + 12)
79#define CONTEXT_MATCH(regs) ((regs) + 16)
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050080
Kristian Høgsberg32b46092007-02-06 14:49:30 -050081struct ar_buffer {
82 struct descriptor descriptor;
83 struct ar_buffer *next;
84 __le32 data[0];
85};
86
Kristian Høgsberged568912006-12-19 19:58:35 -050087struct ar_context {
88 struct fw_ohci *ohci;
Kristian Høgsberg32b46092007-02-06 14:49:30 -050089 struct ar_buffer *current_buffer;
90 struct ar_buffer *last_buffer;
91 void *pointer;
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050092 u32 regs;
Kristian Høgsberged568912006-12-19 19:58:35 -050093 struct tasklet_struct tasklet;
94};
95
Kristian Høgsberg30200732007-02-16 17:34:39 -050096struct context;
97
98typedef int (*descriptor_callback_t)(struct context *ctx,
99 struct descriptor *d,
100 struct descriptor *last);
101struct context {
Stefan Richter373b2ed2007-03-04 14:45:18 +0100102 struct fw_ohci *ohci;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500103 u32 regs;
Stefan Richter373b2ed2007-03-04 14:45:18 +0100104
Kristian Høgsberg30200732007-02-16 17:34:39 -0500105 struct descriptor *buffer;
106 dma_addr_t buffer_bus;
107 size_t buffer_size;
108 struct descriptor *head_descriptor;
109 struct descriptor *tail_descriptor;
110 struct descriptor *tail_descriptor_last;
111 struct descriptor *prev_descriptor;
112
113 descriptor_callback_t callback;
114
Stefan Richter373b2ed2007-03-04 14:45:18 +0100115 struct tasklet_struct tasklet;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500116};
Kristian Høgsberg30200732007-02-16 17:34:39 -0500117
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400118#define IT_HEADER_SY(v) ((v) << 0)
119#define IT_HEADER_TCODE(v) ((v) << 4)
120#define IT_HEADER_CHANNEL(v) ((v) << 8)
121#define IT_HEADER_TAG(v) ((v) << 14)
122#define IT_HEADER_SPEED(v) ((v) << 16)
123#define IT_HEADER_DATA_LENGTH(v) ((v) << 16)
Kristian Høgsberged568912006-12-19 19:58:35 -0500124
125struct iso_context {
126 struct fw_iso_context base;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500127 struct context context;
David Moore0642b652007-12-19 03:09:18 -0500128 int excess_bytes;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500129 void *header;
130 size_t header_length;
Kristian Høgsberged568912006-12-19 19:58:35 -0500131};
132
133#define CONFIG_ROM_SIZE 1024
134
135struct fw_ohci {
136 struct fw_card card;
137
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500138 u32 version;
Kristian Høgsberged568912006-12-19 19:58:35 -0500139 __iomem char *registers;
140 dma_addr_t self_id_bus;
141 __le32 *self_id_cpu;
142 struct tasklet_struct bus_reset_tasklet;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500143 int node_id;
Kristian Høgsberged568912006-12-19 19:58:35 -0500144 int generation;
145 int request_generation;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500146 u32 bus_seconds;
Kristian Høgsberged568912006-12-19 19:58:35 -0500147
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400148 /*
149 * Spinlock for accessing fw_ohci data. Never call out of
150 * this driver with this lock held.
151 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500152 spinlock_t lock;
153 u32 self_id_buffer[512];
154
155 /* Config rom buffers */
156 __be32 *config_rom;
157 dma_addr_t config_rom_bus;
158 __be32 *next_config_rom;
159 dma_addr_t next_config_rom_bus;
160 u32 next_header;
161
162 struct ar_context ar_request_ctx;
163 struct ar_context ar_response_ctx;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500164 struct context at_request_ctx;
165 struct context at_response_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -0500166
167 u32 it_context_mask;
168 struct iso_context *it_context_list;
169 u32 ir_context_mask;
170 struct iso_context *ir_context_list;
171};
172
Adrian Bunk95688e92007-01-22 19:17:37 +0100173static inline struct fw_ohci *fw_ohci(struct fw_card *card)
Kristian Høgsberged568912006-12-19 19:58:35 -0500174{
175 return container_of(card, struct fw_ohci, card);
176}
177
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500178#define IT_CONTEXT_CYCLE_MATCH_ENABLE 0x80000000
179#define IR_CONTEXT_BUFFER_FILL 0x80000000
180#define IR_CONTEXT_ISOCH_HEADER 0x40000000
181#define IR_CONTEXT_CYCLE_MATCH_ENABLE 0x20000000
182#define IR_CONTEXT_MULTI_CHANNEL_MODE 0x10000000
183#define IR_CONTEXT_DUAL_BUFFER_MODE 0x08000000
Kristian Høgsberged568912006-12-19 19:58:35 -0500184
185#define CONTEXT_RUN 0x8000
186#define CONTEXT_WAKE 0x1000
187#define CONTEXT_DEAD 0x0800
188#define CONTEXT_ACTIVE 0x0400
189
190#define OHCI1394_MAX_AT_REQ_RETRIES 0x2
191#define OHCI1394_MAX_AT_RESP_RETRIES 0x2
192#define OHCI1394_MAX_PHYS_RESP_RETRIES 0x8
193
194#define FW_OHCI_MAJOR 240
195#define OHCI1394_REGISTER_SIZE 0x800
196#define OHCI_LOOP_COUNT 500
197#define OHCI1394_PCI_HCI_Control 0x40
198#define SELF_ID_BUF_SIZE 0x800
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500199#define OHCI_TCODE_PHY_PACKET 0x0e
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500200#define OHCI_VERSION_1_1 0x010010
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500201#define ISO_BUFFER_SIZE (64 * 1024)
202#define AT_BUFFER_SIZE 4096
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500203
Kristian Høgsberged568912006-12-19 19:58:35 -0500204static char ohci_driver_name[] = KBUILD_MODNAME;
205
Adrian Bunk95688e92007-01-22 19:17:37 +0100206static inline void reg_write(const struct fw_ohci *ohci, int offset, u32 data)
Kristian Høgsberged568912006-12-19 19:58:35 -0500207{
208 writel(data, ohci->registers + offset);
209}
210
Adrian Bunk95688e92007-01-22 19:17:37 +0100211static inline u32 reg_read(const struct fw_ohci *ohci, int offset)
Kristian Høgsberged568912006-12-19 19:58:35 -0500212{
213 return readl(ohci->registers + offset);
214}
215
Adrian Bunk95688e92007-01-22 19:17:37 +0100216static inline void flush_writes(const struct fw_ohci *ohci)
Kristian Høgsberged568912006-12-19 19:58:35 -0500217{
218 /* Do a dummy read to flush writes. */
219 reg_read(ohci, OHCI1394_Version);
220}
221
222static int
223ohci_update_phy_reg(struct fw_card *card, int addr,
224 int clear_bits, int set_bits)
225{
226 struct fw_ohci *ohci = fw_ohci(card);
227 u32 val, old;
228
229 reg_write(ohci, OHCI1394_PhyControl, OHCI1394_PhyControl_Read(addr));
Stefan Richter362e9012007-07-12 22:24:19 +0200230 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -0500231 msleep(2);
232 val = reg_read(ohci, OHCI1394_PhyControl);
233 if ((val & OHCI1394_PhyControl_ReadDone) == 0) {
234 fw_error("failed to set phy reg bits.\n");
235 return -EBUSY;
236 }
237
238 old = OHCI1394_PhyControl_ReadData(val);
239 old = (old & ~clear_bits) | set_bits;
240 reg_write(ohci, OHCI1394_PhyControl,
241 OHCI1394_PhyControl_Write(addr, old));
242
243 return 0;
244}
245
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500246static int ar_context_add_page(struct ar_context *ctx)
Kristian Høgsberged568912006-12-19 19:58:35 -0500247{
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500248 struct device *dev = ctx->ohci->card.device;
249 struct ar_buffer *ab;
250 dma_addr_t ab_bus;
251 size_t offset;
252
253 ab = (struct ar_buffer *) __get_free_page(GFP_ATOMIC);
254 if (ab == NULL)
255 return -ENOMEM;
256
257 ab_bus = dma_map_single(dev, ab, PAGE_SIZE, DMA_BIDIRECTIONAL);
258 if (dma_mapping_error(ab_bus)) {
259 free_page((unsigned long) ab);
260 return -ENOMEM;
261 }
262
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400263 memset(&ab->descriptor, 0, sizeof(ab->descriptor));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400264 ab->descriptor.control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
265 DESCRIPTOR_STATUS |
266 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500267 offset = offsetof(struct ar_buffer, data);
268 ab->descriptor.req_count = cpu_to_le16(PAGE_SIZE - offset);
269 ab->descriptor.data_address = cpu_to_le32(ab_bus + offset);
270 ab->descriptor.res_count = cpu_to_le16(PAGE_SIZE - offset);
271 ab->descriptor.branch_address = 0;
272
273 dma_sync_single_for_device(dev, ab_bus, PAGE_SIZE, DMA_BIDIRECTIONAL);
274
Kristian Høgsbergec839e42007-05-22 18:55:48 -0400275 ctx->last_buffer->descriptor.branch_address = cpu_to_le32(ab_bus | 1);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500276 ctx->last_buffer->next = ab;
277 ctx->last_buffer = ab;
278
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400279 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Kristian Høgsberged568912006-12-19 19:58:35 -0500280 flush_writes(ctx->ohci);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500281
282 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -0500283}
284
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500285static __le32 *handle_ar_packet(struct ar_context *ctx, __le32 *buffer)
Kristian Høgsberged568912006-12-19 19:58:35 -0500286{
Kristian Høgsberged568912006-12-19 19:58:35 -0500287 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500288 struct fw_packet p;
289 u32 status, length, tcode;
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500290
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500291 p.header[0] = le32_to_cpu(buffer[0]);
292 p.header[1] = le32_to_cpu(buffer[1]);
293 p.header[2] = le32_to_cpu(buffer[2]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500294
295 tcode = (p.header[0] >> 4) & 0x0f;
296 switch (tcode) {
297 case TCODE_WRITE_QUADLET_REQUEST:
298 case TCODE_READ_QUADLET_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500299 p.header[3] = (__force __u32) buffer[3];
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500300 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500301 p.payload_length = 0;
302 break;
303
304 case TCODE_READ_BLOCK_REQUEST :
305 p.header[3] = le32_to_cpu(buffer[3]);
306 p.header_length = 16;
307 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500308 break;
309
310 case TCODE_WRITE_BLOCK_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500311 case TCODE_READ_BLOCK_RESPONSE:
312 case TCODE_LOCK_REQUEST:
313 case TCODE_LOCK_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500314 p.header[3] = le32_to_cpu(buffer[3]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500315 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500316 p.payload_length = p.header[3] >> 16;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500317 break;
318
319 case TCODE_WRITE_RESPONSE:
320 case TCODE_READ_QUADLET_REQUEST:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500321 case OHCI_TCODE_PHY_PACKET:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500322 p.header_length = 12;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500323 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500324 break;
325 }
326
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500327 p.payload = (void *) buffer + p.header_length;
328
329 /* FIXME: What to do about evt_* errors? */
330 length = (p.header_length + p.payload_length + 3) / 4;
331 status = le32_to_cpu(buffer[length]);
332
333 p.ack = ((status >> 16) & 0x1f) - 16;
334 p.speed = (status >> 21) & 0x7;
335 p.timestamp = status & 0xffff;
336 p.generation = ohci->request_generation;
Kristian Høgsberged568912006-12-19 19:58:35 -0500337
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400338 /*
339 * The OHCI bus reset handler synthesizes a phy packet with
Kristian Høgsberged568912006-12-19 19:58:35 -0500340 * the new generation number when a bus reset happens (see
341 * section 8.4.2.3). This helps us determine when a request
342 * was received and make sure we send the response in the same
343 * generation. We only need this for requests; for responses
344 * we use the unique tlabel for finding the matching
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400345 * request.
346 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500347
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500348 if (p.ack + 16 == 0x09)
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500349 ohci->request_generation = (buffer[2] >> 16) & 0xff;
Kristian Høgsberged568912006-12-19 19:58:35 -0500350 else if (ctx == &ohci->ar_request_ctx)
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500351 fw_core_handle_request(&ohci->card, &p);
Kristian Høgsberged568912006-12-19 19:58:35 -0500352 else
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500353 fw_core_handle_response(&ohci->card, &p);
Kristian Høgsberged568912006-12-19 19:58:35 -0500354
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500355 return buffer + length + 1;
356}
Kristian Høgsberged568912006-12-19 19:58:35 -0500357
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500358static void ar_context_tasklet(unsigned long data)
359{
360 struct ar_context *ctx = (struct ar_context *)data;
361 struct fw_ohci *ohci = ctx->ohci;
362 struct ar_buffer *ab;
363 struct descriptor *d;
364 void *buffer, *end;
Kristian Høgsberged568912006-12-19 19:58:35 -0500365
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500366 ab = ctx->current_buffer;
367 d = &ab->descriptor;
Kristian Høgsberged568912006-12-19 19:58:35 -0500368
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500369 if (d->res_count == 0) {
370 size_t size, rest, offset;
371
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400372 /*
373 * This descriptor is finished and we may have a
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500374 * packet split across this and the next buffer. We
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400375 * reuse the page for reassembling the split packet.
376 */
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500377
378 offset = offsetof(struct ar_buffer, data);
379 dma_unmap_single(ohci->card.device,
Stefan Richter0a9972b2007-06-23 20:28:17 +0200380 le32_to_cpu(ab->descriptor.data_address) - offset,
381 PAGE_SIZE, DMA_BIDIRECTIONAL);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500382
383 buffer = ab;
384 ab = ab->next;
385 d = &ab->descriptor;
386 size = buffer + PAGE_SIZE - ctx->pointer;
387 rest = le16_to_cpu(d->req_count) - le16_to_cpu(d->res_count);
388 memmove(buffer, ctx->pointer, size);
389 memcpy(buffer + size, ab->data, rest);
390 ctx->current_buffer = ab;
391 ctx->pointer = (void *) ab->data + rest;
392 end = buffer + size + rest;
393
394 while (buffer < end)
395 buffer = handle_ar_packet(ctx, buffer);
396
397 free_page((unsigned long)buffer);
398 ar_context_add_page(ctx);
399 } else {
400 buffer = ctx->pointer;
401 ctx->pointer = end =
402 (void *) ab + PAGE_SIZE - le16_to_cpu(d->res_count);
403
404 while (buffer < end)
405 buffer = handle_ar_packet(ctx, buffer);
406 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500407}
408
409static int
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500410ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci, u32 regs)
Kristian Høgsberged568912006-12-19 19:58:35 -0500411{
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500412 struct ar_buffer ab;
Kristian Høgsberged568912006-12-19 19:58:35 -0500413
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500414 ctx->regs = regs;
415 ctx->ohci = ohci;
416 ctx->last_buffer = &ab;
Kristian Høgsberged568912006-12-19 19:58:35 -0500417 tasklet_init(&ctx->tasklet, ar_context_tasklet, (unsigned long)ctx);
418
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500419 ar_context_add_page(ctx);
420 ar_context_add_page(ctx);
421 ctx->current_buffer = ab.next;
422 ctx->pointer = ctx->current_buffer->data;
423
Kristian Høgsberg2aef4692007-05-30 19:06:35 -0400424 return 0;
425}
426
427static void ar_context_run(struct ar_context *ctx)
428{
429 struct ar_buffer *ab = ctx->current_buffer;
430 dma_addr_t ab_bus;
431 size_t offset;
432
433 offset = offsetof(struct ar_buffer, data);
Stefan Richter0a9972b2007-06-23 20:28:17 +0200434 ab_bus = le32_to_cpu(ab->descriptor.data_address) - offset;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -0400435
436 reg_write(ctx->ohci, COMMAND_PTR(ctx->regs), ab_bus | 1);
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400437 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500438 flush_writes(ctx->ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -0500439}
Stefan Richter373b2ed2007-03-04 14:45:18 +0100440
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500441static struct descriptor *
442find_branch_descriptor(struct descriptor *d, int z)
443{
444 int b, key;
445
446 b = (le16_to_cpu(d->control) & DESCRIPTOR_BRANCH_ALWAYS) >> 2;
447 key = (le16_to_cpu(d->control) & DESCRIPTOR_KEY_IMMEDIATE) >> 8;
448
449 /* figure out which descriptor the branch address goes in */
450 if (z == 2 && (b == 3 || key == 2))
451 return d;
452 else
453 return d + z - 1;
454}
455
Kristian Høgsberg30200732007-02-16 17:34:39 -0500456static void context_tasklet(unsigned long data)
457{
458 struct context *ctx = (struct context *) data;
459 struct fw_ohci *ohci = ctx->ohci;
460 struct descriptor *d, *last;
461 u32 address;
462 int z;
463
464 dma_sync_single_for_cpu(ohci->card.device, ctx->buffer_bus,
465 ctx->buffer_size, DMA_TO_DEVICE);
466
467 d = ctx->tail_descriptor;
468 last = ctx->tail_descriptor_last;
469
470 while (last->branch_address != 0) {
471 address = le32_to_cpu(last->branch_address);
472 z = address & 0xf;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400473 d = ctx->buffer + (address - ctx->buffer_bus) / sizeof(*d);
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500474 last = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500475
476 if (!ctx->callback(ctx, d, last))
477 break;
478
479 ctx->tail_descriptor = d;
480 ctx->tail_descriptor_last = last;
481 }
482}
483
484static int
485context_init(struct context *ctx, struct fw_ohci *ohci,
486 size_t buffer_size, u32 regs,
487 descriptor_callback_t callback)
488{
489 ctx->ohci = ohci;
490 ctx->regs = regs;
491 ctx->buffer_size = buffer_size;
492 ctx->buffer = kmalloc(buffer_size, GFP_KERNEL);
493 if (ctx->buffer == NULL)
494 return -ENOMEM;
495
496 tasklet_init(&ctx->tasklet, context_tasklet, (unsigned long)ctx);
497 ctx->callback = callback;
498
499 ctx->buffer_bus =
500 dma_map_single(ohci->card.device, ctx->buffer,
501 buffer_size, DMA_TO_DEVICE);
502 if (dma_mapping_error(ctx->buffer_bus)) {
503 kfree(ctx->buffer);
504 return -ENOMEM;
505 }
506
507 ctx->head_descriptor = ctx->buffer;
508 ctx->prev_descriptor = ctx->buffer;
509 ctx->tail_descriptor = ctx->buffer;
510 ctx->tail_descriptor_last = ctx->buffer;
511
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400512 /*
513 * We put a dummy descriptor in the buffer that has a NULL
Kristian Høgsberg30200732007-02-16 17:34:39 -0500514 * branch address and looks like it's been sent. That way we
515 * have a descriptor to append DMA programs to. Also, the
516 * ring buffer invariant is that it always has at least one
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400517 * element so that head == tail means buffer full.
518 */
Kristian Høgsberg30200732007-02-16 17:34:39 -0500519
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400520 memset(ctx->head_descriptor, 0, sizeof(*ctx->head_descriptor));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400521 ctx->head_descriptor->control = cpu_to_le16(DESCRIPTOR_OUTPUT_LAST);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500522 ctx->head_descriptor->transfer_status = cpu_to_le16(0x8011);
523 ctx->head_descriptor++;
524
525 return 0;
526}
527
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500528static void
Kristian Høgsberg30200732007-02-16 17:34:39 -0500529context_release(struct context *ctx)
530{
531 struct fw_card *card = &ctx->ohci->card;
532
533 dma_unmap_single(card->device, ctx->buffer_bus,
534 ctx->buffer_size, DMA_TO_DEVICE);
535 kfree(ctx->buffer);
536}
537
538static struct descriptor *
539context_get_descriptors(struct context *ctx, int z, dma_addr_t *d_bus)
540{
541 struct descriptor *d, *tail, *end;
542
543 d = ctx->head_descriptor;
544 tail = ctx->tail_descriptor;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400545 end = ctx->buffer + ctx->buffer_size / sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500546
547 if (d + z <= tail) {
548 goto has_space;
549 } else if (d > tail && d + z <= end) {
550 goto has_space;
551 } else if (d > tail && ctx->buffer + z <= tail) {
552 d = ctx->buffer;
553 goto has_space;
554 }
555
556 return NULL;
557
558 has_space:
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400559 memset(d, 0, z * sizeof(*d));
560 *d_bus = ctx->buffer_bus + (d - ctx->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500561
562 return d;
563}
564
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500565static void context_run(struct context *ctx, u32 extra)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500566{
567 struct fw_ohci *ohci = ctx->ohci;
568
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400569 reg_write(ohci, COMMAND_PTR(ctx->regs),
Kristian Høgsberg30200732007-02-16 17:34:39 -0500570 le32_to_cpu(ctx->tail_descriptor_last->branch_address));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400571 reg_write(ohci, CONTROL_CLEAR(ctx->regs), ~0);
572 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN | extra);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500573 flush_writes(ohci);
574}
575
576static void context_append(struct context *ctx,
577 struct descriptor *d, int z, int extra)
578{
579 dma_addr_t d_bus;
580
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400581 d_bus = ctx->buffer_bus + (d - ctx->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500582
583 ctx->head_descriptor = d + z + extra;
584 ctx->prev_descriptor->branch_address = cpu_to_le32(d_bus | z);
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500585 ctx->prev_descriptor = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500586
587 dma_sync_single_for_device(ctx->ohci->card.device, ctx->buffer_bus,
588 ctx->buffer_size, DMA_TO_DEVICE);
589
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400590 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500591 flush_writes(ctx->ohci);
592}
593
594static void context_stop(struct context *ctx)
595{
596 u32 reg;
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500597 int i;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500598
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400599 reg_write(ctx->ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500600 flush_writes(ctx->ohci);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500601
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500602 for (i = 0; i < 10; i++) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400603 reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs));
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500604 if ((reg & CONTEXT_ACTIVE) == 0)
605 break;
606
607 fw_notify("context_stop: still active (0x%08x)\n", reg);
Stefan Richterb980f5a2007-07-12 22:25:14 +0200608 mdelay(1);
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500609 }
Kristian Høgsberg30200732007-02-16 17:34:39 -0500610}
Kristian Høgsberged568912006-12-19 19:58:35 -0500611
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500612struct driver_data {
Kristian Høgsberged568912006-12-19 19:58:35 -0500613 struct fw_packet *packet;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500614};
615
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400616/*
617 * This function apppends a packet to the DMA queue for transmission.
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500618 * Must always be called with the ochi->lock held to ensure proper
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400619 * generation handling and locking around packet queue manipulation.
620 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500621static int
622at_context_queue_packet(struct context *ctx, struct fw_packet *packet)
623{
Kristian Høgsberged568912006-12-19 19:58:35 -0500624 struct fw_ohci *ohci = ctx->ohci;
Stefan Richter4b6d51e2007-10-21 11:20:07 +0200625 dma_addr_t d_bus, uninitialized_var(payload_bus);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500626 struct driver_data *driver_data;
627 struct descriptor *d, *last;
628 __le32 *header;
Kristian Høgsberged568912006-12-19 19:58:35 -0500629 int z, tcode;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500630 u32 reg;
Kristian Høgsberged568912006-12-19 19:58:35 -0500631
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500632 d = context_get_descriptors(ctx, 4, &d_bus);
633 if (d == NULL) {
634 packet->ack = RCODE_SEND_ERROR;
635 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -0500636 }
637
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400638 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500639 d[0].res_count = cpu_to_le16(packet->timestamp);
640
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400641 /*
642 * The DMA format for asyncronous link packets is different
Kristian Høgsberged568912006-12-19 19:58:35 -0500643 * from the IEEE1394 layout, so shift the fields around
644 * accordingly. If header_length is 8, it's a PHY packet, to
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400645 * which we need to prepend an extra quadlet.
646 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500647
648 header = (__le32 *) &d[1];
Kristian Høgsberged568912006-12-19 19:58:35 -0500649 if (packet->header_length > 8) {
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500650 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
651 (packet->speed << 16));
652 header[1] = cpu_to_le32((packet->header[1] & 0xffff) |
653 (packet->header[0] & 0xffff0000));
654 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsberged568912006-12-19 19:58:35 -0500655
656 tcode = (packet->header[0] >> 4) & 0x0f;
657 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500658 header[3] = cpu_to_le32(packet->header[3]);
Kristian Høgsberged568912006-12-19 19:58:35 -0500659 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500660 header[3] = (__force __le32) packet->header[3];
661
662 d[0].req_count = cpu_to_le16(packet->header_length);
Kristian Høgsberged568912006-12-19 19:58:35 -0500663 } else {
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500664 header[0] = cpu_to_le32((OHCI1394_phy_tcode << 4) |
665 (packet->speed << 16));
666 header[1] = cpu_to_le32(packet->header[0]);
667 header[2] = cpu_to_le32(packet->header[1]);
668 d[0].req_count = cpu_to_le16(12);
Kristian Høgsberged568912006-12-19 19:58:35 -0500669 }
670
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500671 driver_data = (struct driver_data *) &d[3];
672 driver_data->packet = packet;
Kristian Høgsberg20d11672007-03-26 19:18:19 -0400673 packet->driver_data = driver_data;
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500674
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500675 if (packet->payload_length > 0) {
676 payload_bus =
677 dma_map_single(ohci->card.device, packet->payload,
678 packet->payload_length, DMA_TO_DEVICE);
679 if (dma_mapping_error(payload_bus)) {
680 packet->ack = RCODE_SEND_ERROR;
681 return -1;
682 }
683
684 d[2].req_count = cpu_to_le16(packet->payload_length);
685 d[2].data_address = cpu_to_le32(payload_bus);
686 last = &d[2];
687 z = 3;
688 } else {
689 last = &d[0];
690 z = 2;
691 }
692
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400693 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
694 DESCRIPTOR_IRQ_ALWAYS |
695 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500696
Kristian Høgsberged568912006-12-19 19:58:35 -0500697 /* FIXME: Document how the locking works. */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500698 if (ohci->generation != packet->generation) {
Stefan Richterab88ca42007-08-29 19:40:28 +0200699 if (packet->payload_length > 0)
700 dma_unmap_single(ohci->card.device, payload_bus,
701 packet->payload_length, DMA_TO_DEVICE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500702 packet->ack = RCODE_GENERATION;
703 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -0500704 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500705
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500706 context_append(ctx, d, z, 4 - z);
Kristian Høgsberged568912006-12-19 19:58:35 -0500707
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500708 /* If the context isn't already running, start it up. */
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400709 reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs));
Kristian Høgsberg053b3082007-04-10 18:11:17 -0400710 if ((reg & CONTEXT_RUN) == 0)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500711 context_run(ctx, 0);
Kristian Høgsberged568912006-12-19 19:58:35 -0500712
713 return 0;
714}
715
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500716static int handle_at_packet(struct context *context,
717 struct descriptor *d,
718 struct descriptor *last)
719{
720 struct driver_data *driver_data;
721 struct fw_packet *packet;
722 struct fw_ohci *ohci = context->ohci;
723 dma_addr_t payload_bus;
724 int evt;
725
726 if (last->transfer_status == 0)
727 /* This descriptor isn't done yet, stop iteration. */
728 return 0;
729
730 driver_data = (struct driver_data *) &d[3];
731 packet = driver_data->packet;
732 if (packet == NULL)
733 /* This packet was cancelled, just continue. */
734 return 1;
735
736 payload_bus = le32_to_cpu(last->data_address);
737 if (payload_bus != 0)
738 dma_unmap_single(ohci->card.device, payload_bus,
739 packet->payload_length, DMA_TO_DEVICE);
740
741 evt = le16_to_cpu(last->transfer_status) & 0x1f;
742 packet->timestamp = le16_to_cpu(last->res_count);
743
744 switch (evt) {
745 case OHCI1394_evt_timeout:
746 /* Async response transmit timed out. */
747 packet->ack = RCODE_CANCELLED;
748 break;
749
750 case OHCI1394_evt_flushed:
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400751 /*
752 * The packet was flushed should give same error as
753 * when we try to use a stale generation count.
754 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500755 packet->ack = RCODE_GENERATION;
756 break;
757
758 case OHCI1394_evt_missing_ack:
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400759 /*
760 * Using a valid (current) generation count, but the
761 * node is not on the bus or not sending acks.
762 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500763 packet->ack = RCODE_NO_ACK;
764 break;
765
766 case ACK_COMPLETE + 0x10:
767 case ACK_PENDING + 0x10:
768 case ACK_BUSY_X + 0x10:
769 case ACK_BUSY_A + 0x10:
770 case ACK_BUSY_B + 0x10:
771 case ACK_DATA_ERROR + 0x10:
772 case ACK_TYPE_ERROR + 0x10:
773 packet->ack = evt - 0x10;
774 break;
775
776 default:
777 packet->ack = RCODE_SEND_ERROR;
778 break;
779 }
780
781 packet->callback(packet, &ohci->card, packet->ack);
782
783 return 1;
784}
785
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400786#define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
787#define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
788#define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
789#define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
790#define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500791
792static void
793handle_local_rom(struct fw_ohci *ohci, struct fw_packet *packet, u32 csr)
794{
795 struct fw_packet response;
796 int tcode, length, i;
797
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400798 tcode = HEADER_GET_TCODE(packet->header[0]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500799 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400800 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500801 else
802 length = 4;
803
804 i = csr - CSR_CONFIG_ROM;
805 if (i + length > CONFIG_ROM_SIZE) {
806 fw_fill_response(&response, packet->header,
807 RCODE_ADDRESS_ERROR, NULL, 0);
808 } else if (!TCODE_IS_READ_REQUEST(tcode)) {
809 fw_fill_response(&response, packet->header,
810 RCODE_TYPE_ERROR, NULL, 0);
811 } else {
812 fw_fill_response(&response, packet->header, RCODE_COMPLETE,
813 (void *) ohci->config_rom + i, length);
814 }
815
816 fw_core_handle_response(&ohci->card, &response);
817}
818
819static void
820handle_local_lock(struct fw_ohci *ohci, struct fw_packet *packet, u32 csr)
821{
822 struct fw_packet response;
823 int tcode, length, ext_tcode, sel;
824 __be32 *payload, lock_old;
825 u32 lock_arg, lock_data;
826
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400827 tcode = HEADER_GET_TCODE(packet->header[0]);
828 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500829 payload = packet->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400830 ext_tcode = HEADER_GET_EXTENDED_TCODE(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500831
832 if (tcode == TCODE_LOCK_REQUEST &&
833 ext_tcode == EXTCODE_COMPARE_SWAP && length == 8) {
834 lock_arg = be32_to_cpu(payload[0]);
835 lock_data = be32_to_cpu(payload[1]);
836 } else if (tcode == TCODE_READ_QUADLET_REQUEST) {
837 lock_arg = 0;
838 lock_data = 0;
839 } else {
840 fw_fill_response(&response, packet->header,
841 RCODE_TYPE_ERROR, NULL, 0);
842 goto out;
843 }
844
845 sel = (csr - CSR_BUS_MANAGER_ID) / 4;
846 reg_write(ohci, OHCI1394_CSRData, lock_data);
847 reg_write(ohci, OHCI1394_CSRCompareData, lock_arg);
848 reg_write(ohci, OHCI1394_CSRControl, sel);
849
850 if (reg_read(ohci, OHCI1394_CSRControl) & 0x80000000)
851 lock_old = cpu_to_be32(reg_read(ohci, OHCI1394_CSRData));
852 else
853 fw_notify("swap not done yet\n");
854
855 fw_fill_response(&response, packet->header,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400856 RCODE_COMPLETE, &lock_old, sizeof(lock_old));
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500857 out:
858 fw_core_handle_response(&ohci->card, &response);
859}
860
861static void
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500862handle_local_request(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500863{
864 u64 offset;
865 u32 csr;
866
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500867 if (ctx == &ctx->ohci->at_request_ctx) {
868 packet->ack = ACK_PENDING;
869 packet->callback(packet, &ctx->ohci->card, packet->ack);
870 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500871
872 offset =
873 ((unsigned long long)
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400874 HEADER_GET_OFFSET_HIGH(packet->header[1]) << 32) |
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500875 packet->header[2];
876 csr = offset - CSR_REGISTER_BASE;
877
878 /* Handle config rom reads. */
879 if (csr >= CSR_CONFIG_ROM && csr < CSR_CONFIG_ROM_END)
880 handle_local_rom(ctx->ohci, packet, csr);
881 else switch (csr) {
882 case CSR_BUS_MANAGER_ID:
883 case CSR_BANDWIDTH_AVAILABLE:
884 case CSR_CHANNELS_AVAILABLE_HI:
885 case CSR_CHANNELS_AVAILABLE_LO:
886 handle_local_lock(ctx->ohci, packet, csr);
887 break;
888 default:
889 if (ctx == &ctx->ohci->at_request_ctx)
890 fw_core_handle_request(&ctx->ohci->card, packet);
891 else
892 fw_core_handle_response(&ctx->ohci->card, packet);
893 break;
894 }
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500895
896 if (ctx == &ctx->ohci->at_response_ctx) {
897 packet->ack = ACK_COMPLETE;
898 packet->callback(packet, &ctx->ohci->card, packet->ack);
899 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500900}
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500901
Kristian Høgsberged568912006-12-19 19:58:35 -0500902static void
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500903at_context_transmit(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberged568912006-12-19 19:58:35 -0500904{
Kristian Høgsberged568912006-12-19 19:58:35 -0500905 unsigned long flags;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500906 int retval;
Kristian Høgsberged568912006-12-19 19:58:35 -0500907
908 spin_lock_irqsave(&ctx->ohci->lock, flags);
909
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400910 if (HEADER_GET_DESTINATION(packet->header[0]) == ctx->ohci->node_id &&
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500911 ctx->ohci->generation == packet->generation) {
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500912 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
913 handle_local_request(ctx, packet);
914 return;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500915 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500916
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500917 retval = at_context_queue_packet(ctx, packet);
Kristian Høgsberged568912006-12-19 19:58:35 -0500918 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
919
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500920 if (retval < 0)
921 packet->callback(packet, &ctx->ohci->card, packet->ack);
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500922
Kristian Høgsberged568912006-12-19 19:58:35 -0500923}
924
925static void bus_reset_tasklet(unsigned long data)
926{
927 struct fw_ohci *ohci = (struct fw_ohci *)data;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500928 int self_id_count, i, j, reg;
Kristian Høgsberged568912006-12-19 19:58:35 -0500929 int generation, new_generation;
930 unsigned long flags;
Stefan Richter4eaff7d2007-07-25 19:18:08 +0200931 void *free_rom = NULL;
932 dma_addr_t free_rom_bus = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -0500933
934 reg = reg_read(ohci, OHCI1394_NodeID);
935 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter02ff8f82007-08-30 00:11:40 +0200936 fw_notify("node ID not valid, new bus reset in progress\n");
Kristian Høgsberged568912006-12-19 19:58:35 -0500937 return;
938 }
Stefan Richter02ff8f82007-08-30 00:11:40 +0200939 if ((reg & OHCI1394_NodeID_nodeNumber) == 63) {
940 fw_notify("malconfigured bus\n");
941 return;
942 }
943 ohci->node_id = reg & (OHCI1394_NodeID_busNumber |
944 OHCI1394_NodeID_nodeNumber);
Kristian Høgsberged568912006-12-19 19:58:35 -0500945
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400946 /*
947 * The count in the SelfIDCount register is the number of
Kristian Høgsberged568912006-12-19 19:58:35 -0500948 * bytes in the self ID receive buffer. Since we also receive
949 * the inverted quadlets and a header quadlet, we shift one
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400950 * bit extra to get the actual number of self IDs.
951 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500952
953 self_id_count = (reg_read(ohci, OHCI1394_SelfIDCount) >> 3) & 0x3ff;
954 generation = (le32_to_cpu(ohci->self_id_cpu[0]) >> 16) & 0xff;
Stefan Richteree71c2f2007-08-25 14:08:19 +0200955 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -0500956
957 for (i = 1, j = 0; j < self_id_count; i += 2, j++) {
958 if (ohci->self_id_cpu[i] != ~ohci->self_id_cpu[i + 1])
959 fw_error("inconsistent self IDs\n");
960 ohci->self_id_buffer[j] = le32_to_cpu(ohci->self_id_cpu[i]);
961 }
Stefan Richteree71c2f2007-08-25 14:08:19 +0200962 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -0500963
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400964 /*
965 * Check the consistency of the self IDs we just read. The
Kristian Høgsberged568912006-12-19 19:58:35 -0500966 * problem we face is that a new bus reset can start while we
967 * read out the self IDs from the DMA buffer. If this happens,
968 * the DMA buffer will be overwritten with new self IDs and we
969 * will read out inconsistent data. The OHCI specification
970 * (section 11.2) recommends a technique similar to
971 * linux/seqlock.h, where we remember the generation of the
972 * self IDs in the buffer before reading them out and compare
973 * it to the current generation after reading them out. If
974 * the two generations match we know we have a consistent set
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400975 * of self IDs.
976 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500977
978 new_generation = (reg_read(ohci, OHCI1394_SelfIDCount) >> 16) & 0xff;
979 if (new_generation != generation) {
980 fw_notify("recursive bus reset detected, "
981 "discarding self ids\n");
982 return;
983 }
984
985 /* FIXME: Document how the locking works. */
986 spin_lock_irqsave(&ohci->lock, flags);
987
988 ohci->generation = generation;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500989 context_stop(&ohci->at_request_ctx);
990 context_stop(&ohci->at_response_ctx);
Kristian Høgsberged568912006-12-19 19:58:35 -0500991 reg_write(ohci, OHCI1394_IntEventClear, OHCI1394_busReset);
992
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400993 /*
994 * This next bit is unrelated to the AT context stuff but we
Kristian Høgsberged568912006-12-19 19:58:35 -0500995 * have to do it under the spinlock also. If a new config rom
996 * was set up before this reset, the old one is now no longer
997 * in use and we can free it. Update the config rom pointers
998 * to point to the current config rom and clear the
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400999 * next_config_rom pointer so a new udpate can take place.
1000 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001001
1002 if (ohci->next_config_rom != NULL) {
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001003 if (ohci->next_config_rom != ohci->config_rom) {
1004 free_rom = ohci->config_rom;
1005 free_rom_bus = ohci->config_rom_bus;
1006 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001007 ohci->config_rom = ohci->next_config_rom;
1008 ohci->config_rom_bus = ohci->next_config_rom_bus;
1009 ohci->next_config_rom = NULL;
1010
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001011 /*
1012 * Restore config_rom image and manually update
Kristian Høgsberged568912006-12-19 19:58:35 -05001013 * config_rom registers. Writing the header quadlet
1014 * will indicate that the config rom is ready, so we
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001015 * do that last.
1016 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001017 reg_write(ohci, OHCI1394_BusOptions,
1018 be32_to_cpu(ohci->config_rom[2]));
1019 ohci->config_rom[0] = cpu_to_be32(ohci->next_header);
1020 reg_write(ohci, OHCI1394_ConfigROMhdr, ohci->next_header);
1021 }
1022
1023 spin_unlock_irqrestore(&ohci->lock, flags);
1024
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001025 if (free_rom)
1026 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1027 free_rom, free_rom_bus);
1028
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001029 fw_core_handle_bus_reset(&ohci->card, ohci->node_id, generation,
Kristian Høgsberged568912006-12-19 19:58:35 -05001030 self_id_count, ohci->self_id_buffer);
1031}
1032
1033static irqreturn_t irq_handler(int irq, void *data)
1034{
1035 struct fw_ohci *ohci = data;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001036 u32 event, iso_event, cycle_time;
Kristian Høgsberged568912006-12-19 19:58:35 -05001037 int i;
1038
1039 event = reg_read(ohci, OHCI1394_IntEventClear);
1040
Stefan Richtera5159582007-06-09 19:31:14 +02001041 if (!event || !~event)
Kristian Høgsberged568912006-12-19 19:58:35 -05001042 return IRQ_NONE;
1043
1044 reg_write(ohci, OHCI1394_IntEventClear, event);
1045
1046 if (event & OHCI1394_selfIDComplete)
1047 tasklet_schedule(&ohci->bus_reset_tasklet);
1048
1049 if (event & OHCI1394_RQPkt)
1050 tasklet_schedule(&ohci->ar_request_ctx.tasklet);
1051
1052 if (event & OHCI1394_RSPkt)
1053 tasklet_schedule(&ohci->ar_response_ctx.tasklet);
1054
1055 if (event & OHCI1394_reqTxComplete)
1056 tasklet_schedule(&ohci->at_request_ctx.tasklet);
1057
1058 if (event & OHCI1394_respTxComplete)
1059 tasklet_schedule(&ohci->at_response_ctx.tasklet);
1060
Kristian Høgsbergc8894752007-02-16 17:34:36 -05001061 iso_event = reg_read(ohci, OHCI1394_IsoRecvIntEventClear);
Kristian Høgsberged568912006-12-19 19:58:35 -05001062 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, iso_event);
1063
1064 while (iso_event) {
1065 i = ffs(iso_event) - 1;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001066 tasklet_schedule(&ohci->ir_context_list[i].context.tasklet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001067 iso_event &= ~(1 << i);
1068 }
1069
Kristian Høgsbergc8894752007-02-16 17:34:36 -05001070 iso_event = reg_read(ohci, OHCI1394_IsoXmitIntEventClear);
Kristian Høgsberged568912006-12-19 19:58:35 -05001071 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, iso_event);
1072
1073 while (iso_event) {
1074 i = ffs(iso_event) - 1;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001075 tasklet_schedule(&ohci->it_context_list[i].context.tasklet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001076 iso_event &= ~(1 << i);
1077 }
1078
Stefan Richtere524f6162007-08-20 21:58:30 +02001079 if (unlikely(event & OHCI1394_postedWriteErr))
1080 fw_error("PCI posted write error\n");
1081
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001082 if (event & OHCI1394_cycle64Seconds) {
1083 cycle_time = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1084 if ((cycle_time & 0x80000000) == 0)
1085 ohci->bus_seconds++;
1086 }
1087
Kristian Høgsberged568912006-12-19 19:58:35 -05001088 return IRQ_HANDLED;
1089}
1090
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001091static int software_reset(struct fw_ohci *ohci)
1092{
1093 int i;
1094
1095 reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset);
1096
1097 for (i = 0; i < OHCI_LOOP_COUNT; i++) {
1098 if ((reg_read(ohci, OHCI1394_HCControlSet) &
1099 OHCI1394_HCControl_softReset) == 0)
1100 return 0;
1101 msleep(1);
1102 }
1103
1104 return -EBUSY;
1105}
1106
Kristian Høgsberged568912006-12-19 19:58:35 -05001107static int ohci_enable(struct fw_card *card, u32 *config_rom, size_t length)
1108{
1109 struct fw_ohci *ohci = fw_ohci(card);
1110 struct pci_dev *dev = to_pci_dev(card->device);
1111
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001112 if (software_reset(ohci)) {
1113 fw_error("Failed to reset ohci card.\n");
1114 return -EBUSY;
1115 }
1116
1117 /*
1118 * Now enable LPS, which we need in order to start accessing
1119 * most of the registers. In fact, on some cards (ALI M5251),
1120 * accessing registers in the SClk domain without LPS enabled
1121 * will lock up the machine. Wait 50msec to make sure we have
1122 * full link enabled.
1123 */
1124 reg_write(ohci, OHCI1394_HCControlSet,
1125 OHCI1394_HCControl_LPS |
1126 OHCI1394_HCControl_postedWriteEnable);
1127 flush_writes(ohci);
1128 msleep(50);
1129
1130 reg_write(ohci, OHCI1394_HCControlClear,
1131 OHCI1394_HCControl_noByteSwapData);
1132
1133 reg_write(ohci, OHCI1394_LinkControlSet,
1134 OHCI1394_LinkControl_rcvSelfID |
1135 OHCI1394_LinkControl_cycleTimerEnable |
1136 OHCI1394_LinkControl_cycleMaster);
1137
1138 reg_write(ohci, OHCI1394_ATRetries,
1139 OHCI1394_MAX_AT_REQ_RETRIES |
1140 (OHCI1394_MAX_AT_RESP_RETRIES << 4) |
1141 (OHCI1394_MAX_PHYS_RESP_RETRIES << 8));
1142
1143 ar_context_run(&ohci->ar_request_ctx);
1144 ar_context_run(&ohci->ar_response_ctx);
1145
1146 reg_write(ohci, OHCI1394_SelfIDBuffer, ohci->self_id_bus);
1147 reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000);
1148 reg_write(ohci, OHCI1394_IntEventClear, ~0);
1149 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
1150 reg_write(ohci, OHCI1394_IntMaskSet,
1151 OHCI1394_selfIDComplete |
1152 OHCI1394_RQPkt | OHCI1394_RSPkt |
1153 OHCI1394_reqTxComplete | OHCI1394_respTxComplete |
1154 OHCI1394_isochRx | OHCI1394_isochTx |
Stefan Richtere524f6162007-08-20 21:58:30 +02001155 OHCI1394_postedWriteErr | OHCI1394_cycle64Seconds |
1156 OHCI1394_masterIntEnable);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001157
1158 /* Activate link_on bit and contender bit in our self ID packets.*/
1159 if (ohci_update_phy_reg(card, 4, 0,
1160 PHY_LINK_ACTIVE | PHY_CONTENDER) < 0)
1161 return -EIO;
1162
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001163 /*
1164 * When the link is not yet enabled, the atomic config rom
Kristian Høgsberged568912006-12-19 19:58:35 -05001165 * update mechanism described below in ohci_set_config_rom()
1166 * is not active. We have to update ConfigRomHeader and
1167 * BusOptions manually, and the write to ConfigROMmap takes
1168 * effect immediately. We tie this to the enabling of the
1169 * link, so we have a valid config rom before enabling - the
1170 * OHCI requires that ConfigROMhdr and BusOptions have valid
1171 * values before enabling.
1172 *
1173 * However, when the ConfigROMmap is written, some controllers
1174 * always read back quadlets 0 and 2 from the config rom to
1175 * the ConfigRomHeader and BusOptions registers on bus reset.
1176 * They shouldn't do that in this initial case where the link
1177 * isn't enabled. This means we have to use the same
1178 * workaround here, setting the bus header to 0 and then write
1179 * the right values in the bus reset tasklet.
1180 */
1181
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001182 if (config_rom) {
1183 ohci->next_config_rom =
1184 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1185 &ohci->next_config_rom_bus,
1186 GFP_KERNEL);
1187 if (ohci->next_config_rom == NULL)
1188 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05001189
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001190 memset(ohci->next_config_rom, 0, CONFIG_ROM_SIZE);
1191 fw_memcpy_to_be32(ohci->next_config_rom, config_rom, length * 4);
1192 } else {
1193 /*
1194 * In the suspend case, config_rom is NULL, which
1195 * means that we just reuse the old config rom.
1196 */
1197 ohci->next_config_rom = ohci->config_rom;
1198 ohci->next_config_rom_bus = ohci->config_rom_bus;
1199 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001200
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001201 ohci->next_header = be32_to_cpu(ohci->next_config_rom[0]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001202 ohci->next_config_rom[0] = 0;
1203 reg_write(ohci, OHCI1394_ConfigROMhdr, 0);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001204 reg_write(ohci, OHCI1394_BusOptions,
1205 be32_to_cpu(ohci->next_config_rom[2]));
Kristian Høgsberged568912006-12-19 19:58:35 -05001206 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
1207
1208 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
1209
1210 if (request_irq(dev->irq, irq_handler,
Thomas Gleixner65efffa2007-03-05 18:19:51 -08001211 IRQF_SHARED, ohci_driver_name, ohci)) {
Kristian Høgsberged568912006-12-19 19:58:35 -05001212 fw_error("Failed to allocate shared interrupt %d.\n",
1213 dev->irq);
1214 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1215 ohci->config_rom, ohci->config_rom_bus);
1216 return -EIO;
1217 }
1218
1219 reg_write(ohci, OHCI1394_HCControlSet,
1220 OHCI1394_HCControl_linkEnable |
1221 OHCI1394_HCControl_BIBimageValid);
1222 flush_writes(ohci);
1223
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001224 /*
1225 * We are ready to go, initiate bus reset to finish the
1226 * initialization.
1227 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001228
1229 fw_core_initiate_bus_reset(&ohci->card, 1);
1230
1231 return 0;
1232}
1233
1234static int
1235ohci_set_config_rom(struct fw_card *card, u32 *config_rom, size_t length)
1236{
1237 struct fw_ohci *ohci;
1238 unsigned long flags;
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001239 int retval = -EBUSY;
Kristian Høgsberged568912006-12-19 19:58:35 -05001240 __be32 *next_config_rom;
1241 dma_addr_t next_config_rom_bus;
1242
1243 ohci = fw_ohci(card);
1244
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001245 /*
1246 * When the OHCI controller is enabled, the config rom update
Kristian Høgsberged568912006-12-19 19:58:35 -05001247 * mechanism is a bit tricky, but easy enough to use. See
1248 * section 5.5.6 in the OHCI specification.
1249 *
1250 * The OHCI controller caches the new config rom address in a
1251 * shadow register (ConfigROMmapNext) and needs a bus reset
1252 * for the changes to take place. When the bus reset is
1253 * detected, the controller loads the new values for the
1254 * ConfigRomHeader and BusOptions registers from the specified
1255 * config rom and loads ConfigROMmap from the ConfigROMmapNext
1256 * shadow register. All automatically and atomically.
1257 *
1258 * Now, there's a twist to this story. The automatic load of
1259 * ConfigRomHeader and BusOptions doesn't honor the
1260 * noByteSwapData bit, so with a be32 config rom, the
1261 * controller will load be32 values in to these registers
1262 * during the atomic update, even on litte endian
1263 * architectures. The workaround we use is to put a 0 in the
1264 * header quadlet; 0 is endian agnostic and means that the
1265 * config rom isn't ready yet. In the bus reset tasklet we
1266 * then set up the real values for the two registers.
1267 *
1268 * We use ohci->lock to avoid racing with the code that sets
1269 * ohci->next_config_rom to NULL (see bus_reset_tasklet).
1270 */
1271
1272 next_config_rom =
1273 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1274 &next_config_rom_bus, GFP_KERNEL);
1275 if (next_config_rom == NULL)
1276 return -ENOMEM;
1277
1278 spin_lock_irqsave(&ohci->lock, flags);
1279
1280 if (ohci->next_config_rom == NULL) {
1281 ohci->next_config_rom = next_config_rom;
1282 ohci->next_config_rom_bus = next_config_rom_bus;
1283
1284 memset(ohci->next_config_rom, 0, CONFIG_ROM_SIZE);
1285 fw_memcpy_to_be32(ohci->next_config_rom, config_rom,
1286 length * 4);
1287
1288 ohci->next_header = config_rom[0];
1289 ohci->next_config_rom[0] = 0;
1290
1291 reg_write(ohci, OHCI1394_ConfigROMmap,
1292 ohci->next_config_rom_bus);
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001293 retval = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001294 }
1295
1296 spin_unlock_irqrestore(&ohci->lock, flags);
1297
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001298 /*
1299 * Now initiate a bus reset to have the changes take
Kristian Høgsberged568912006-12-19 19:58:35 -05001300 * effect. We clean up the old config rom memory and DMA
1301 * mappings in the bus reset tasklet, since the OHCI
1302 * controller could need to access it before the bus reset
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001303 * takes effect.
1304 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001305 if (retval == 0)
1306 fw_core_initiate_bus_reset(&ohci->card, 1);
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001307 else
1308 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1309 next_config_rom, next_config_rom_bus);
Kristian Høgsberged568912006-12-19 19:58:35 -05001310
1311 return retval;
1312}
1313
1314static void ohci_send_request(struct fw_card *card, struct fw_packet *packet)
1315{
1316 struct fw_ohci *ohci = fw_ohci(card);
1317
1318 at_context_transmit(&ohci->at_request_ctx, packet);
1319}
1320
1321static void ohci_send_response(struct fw_card *card, struct fw_packet *packet)
1322{
1323 struct fw_ohci *ohci = fw_ohci(card);
1324
1325 at_context_transmit(&ohci->at_response_ctx, packet);
1326}
1327
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001328static int ohci_cancel_packet(struct fw_card *card, struct fw_packet *packet)
1329{
1330 struct fw_ohci *ohci = fw_ohci(card);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001331 struct context *ctx = &ohci->at_request_ctx;
1332 struct driver_data *driver_data = packet->driver_data;
1333 int retval = -ENOENT;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001334
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001335 tasklet_disable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001336
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001337 if (packet->ack != 0)
1338 goto out;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001339
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001340 driver_data->packet = NULL;
1341 packet->ack = RCODE_CANCELLED;
1342 packet->callback(packet, &ohci->card, packet->ack);
1343 retval = 0;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001344
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001345 out:
1346 tasklet_enable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001347
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001348 return retval;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001349}
1350
Kristian Høgsberged568912006-12-19 19:58:35 -05001351static int
1352ohci_enable_phys_dma(struct fw_card *card, int node_id, int generation)
1353{
1354 struct fw_ohci *ohci = fw_ohci(card);
1355 unsigned long flags;
Stefan Richter907293d2007-01-23 21:11:43 +01001356 int n, retval = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001357
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001358 /*
1359 * FIXME: Make sure this bitmask is cleared when we clear the busReset
1360 * interrupt bit. Clear physReqResourceAllBuses on bus reset.
1361 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001362
1363 spin_lock_irqsave(&ohci->lock, flags);
1364
1365 if (ohci->generation != generation) {
1366 retval = -ESTALE;
1367 goto out;
1368 }
1369
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001370 /*
1371 * Note, if the node ID contains a non-local bus ID, physical DMA is
1372 * enabled for _all_ nodes on remote buses.
1373 */
Stefan Richter907293d2007-01-23 21:11:43 +01001374
1375 n = (node_id & 0xffc0) == LOCAL_BUS ? node_id & 0x3f : 63;
1376 if (n < 32)
1377 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 1 << n);
1378 else
1379 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 1 << (n - 32));
1380
Kristian Høgsberged568912006-12-19 19:58:35 -05001381 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05001382 out:
Stefan Richter6cad95f2007-01-21 20:46:45 +01001383 spin_unlock_irqrestore(&ohci->lock, flags);
Kristian Høgsberged568912006-12-19 19:58:35 -05001384 return retval;
1385}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001386
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001387static u64
1388ohci_get_bus_time(struct fw_card *card)
1389{
1390 struct fw_ohci *ohci = fw_ohci(card);
1391 u32 cycle_time;
1392 u64 bus_time;
1393
1394 cycle_time = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1395 bus_time = ((u64) ohci->bus_seconds << 32) | cycle_time;
1396
1397 return bus_time;
1398}
1399
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001400static int handle_ir_dualbuffer_packet(struct context *context,
1401 struct descriptor *d,
1402 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05001403{
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001404 struct iso_context *ctx =
1405 container_of(context, struct iso_context, context);
1406 struct db_descriptor *db = (struct db_descriptor *) d;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001407 __le32 *ir_header;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001408 size_t header_length;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001409 void *p, *end;
1410 int i;
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001411
David Moore0642b652007-12-19 03:09:18 -05001412 if (db->first_res_count > 0 && db->second_res_count > 0) {
1413 if (ctx->excess_bytes <= le16_to_cpu(db->second_req_count)) {
1414 /* This descriptor isn't done yet, stop iteration. */
1415 return 0;
1416 }
1417 ctx->excess_bytes -= le16_to_cpu(db->second_req_count);
1418 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001419
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001420 header_length = le16_to_cpu(db->first_req_count) -
1421 le16_to_cpu(db->first_res_count);
1422
1423 i = ctx->header_length;
1424 p = db + 1;
1425 end = p + header_length;
1426 while (p < end && i + ctx->base.header_size <= PAGE_SIZE) {
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001427 /*
1428 * The iso header is byteswapped to little endian by
Kristian Høgsberg15536222007-04-10 18:11:16 -04001429 * the controller, but the remaining header quadlets
1430 * are big endian. We want to present all the headers
1431 * as big endian, so we have to swap the first
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001432 * quadlet.
1433 */
Kristian Høgsberg15536222007-04-10 18:11:16 -04001434 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
1435 memcpy(ctx->header + i + 4, p + 8, ctx->base.header_size - 4);
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001436 i += ctx->base.header_size;
David Moore0642b652007-12-19 03:09:18 -05001437 ctx->excess_bytes +=
1438 (le32_to_cpu(*(u32 *)(p + 4)) >> 16) & 0xffff;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001439 p += ctx->base.header_size + 4;
1440 }
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001441 ctx->header_length = i;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001442
David Moore0642b652007-12-19 03:09:18 -05001443 ctx->excess_bytes -= le16_to_cpu(db->second_req_count) -
1444 le16_to_cpu(db->second_res_count);
1445
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001446 if (le16_to_cpu(db->control) & DESCRIPTOR_IRQ_ALWAYS) {
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001447 ir_header = (__le32 *) (db + 1);
1448 ctx->base.callback(&ctx->base,
1449 le32_to_cpu(ir_header[0]) & 0xffff,
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001450 ctx->header_length, ctx->header,
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001451 ctx->base.callback_data);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001452 ctx->header_length = 0;
1453 }
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001454
1455 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001456}
1457
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001458static int handle_ir_packet_per_buffer(struct context *context,
1459 struct descriptor *d,
1460 struct descriptor *last)
1461{
1462 struct iso_context *ctx =
1463 container_of(context, struct iso_context, context);
David Moorebcee8932007-12-19 15:26:38 -05001464 struct descriptor *pd;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001465 __le32 *ir_header;
David Moorebcee8932007-12-19 15:26:38 -05001466 void *p;
1467 int i;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001468
David Moorebcee8932007-12-19 15:26:38 -05001469 for (pd = d; pd <= last; pd++) {
1470 if (pd->transfer_status)
1471 break;
1472 }
1473 if (pd > last)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001474 /* Descriptor(s) not done yet, stop iteration */
1475 return 0;
1476
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001477 i = ctx->header_length;
David Moorebcee8932007-12-19 15:26:38 -05001478 p = last + 1;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001479
David Moorebcee8932007-12-19 15:26:38 -05001480 if (ctx->base.header_size > 0 &&
1481 i + ctx->base.header_size <= PAGE_SIZE) {
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001482 /*
1483 * The iso header is byteswapped to little endian by
1484 * the controller, but the remaining header quadlets
1485 * are big endian. We want to present all the headers
1486 * as big endian, so we have to swap the first quadlet.
1487 */
1488 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
1489 memcpy(ctx->header + i + 4, p + 8, ctx->base.header_size - 4);
David Moorebcee8932007-12-19 15:26:38 -05001490 ctx->header_length += ctx->base.header_size;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001491 }
1492
David Moorebcee8932007-12-19 15:26:38 -05001493 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
1494 ir_header = (__le32 *) p;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001495 ctx->base.callback(&ctx->base,
1496 le32_to_cpu(ir_header[0]) & 0xffff,
1497 ctx->header_length, ctx->header,
1498 ctx->base.callback_data);
1499 ctx->header_length = 0;
1500 }
1501
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001502 return 1;
1503}
1504
Kristian Høgsberg30200732007-02-16 17:34:39 -05001505static int handle_it_packet(struct context *context,
1506 struct descriptor *d,
1507 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05001508{
Kristian Høgsberg30200732007-02-16 17:34:39 -05001509 struct iso_context *ctx =
1510 container_of(context, struct iso_context, context);
Stefan Richter373b2ed2007-03-04 14:45:18 +01001511
Kristian Høgsberg30200732007-02-16 17:34:39 -05001512 if (last->transfer_status == 0)
1513 /* This descriptor isn't done yet, stop iteration. */
1514 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001515
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001516 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS)
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001517 ctx->base.callback(&ctx->base, le16_to_cpu(last->res_count),
1518 0, NULL, ctx->base.callback_data);
Kristian Høgsberged568912006-12-19 19:58:35 -05001519
Kristian Høgsberg30200732007-02-16 17:34:39 -05001520 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001521}
1522
Kristian Høgsberg30200732007-02-16 17:34:39 -05001523static struct fw_iso_context *
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04001524ohci_allocate_iso_context(struct fw_card *card, int type, size_t header_size)
Kristian Høgsberged568912006-12-19 19:58:35 -05001525{
1526 struct fw_ohci *ohci = fw_ohci(card);
1527 struct iso_context *ctx, *list;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001528 descriptor_callback_t callback;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001529 u32 *mask, regs;
Kristian Høgsberged568912006-12-19 19:58:35 -05001530 unsigned long flags;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001531 int index, retval = -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05001532
1533 if (type == FW_ISO_CONTEXT_TRANSMIT) {
1534 mask = &ohci->it_context_mask;
1535 list = ohci->it_context_list;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001536 callback = handle_it_packet;
Kristian Høgsberged568912006-12-19 19:58:35 -05001537 } else {
Stefan Richter373b2ed2007-03-04 14:45:18 +01001538 mask = &ohci->ir_context_mask;
1539 list = ohci->ir_context_list;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001540 if (ohci->version >= OHCI_VERSION_1_1)
1541 callback = handle_ir_dualbuffer_packet;
1542 else
1543 callback = handle_ir_packet_per_buffer;
Kristian Høgsberged568912006-12-19 19:58:35 -05001544 }
1545
1546 spin_lock_irqsave(&ohci->lock, flags);
1547 index = ffs(*mask) - 1;
1548 if (index >= 0)
1549 *mask &= ~(1 << index);
1550 spin_unlock_irqrestore(&ohci->lock, flags);
1551
1552 if (index < 0)
1553 return ERR_PTR(-EBUSY);
1554
Stefan Richter373b2ed2007-03-04 14:45:18 +01001555 if (type == FW_ISO_CONTEXT_TRANSMIT)
1556 regs = OHCI1394_IsoXmitContextBase(index);
1557 else
1558 regs = OHCI1394_IsoRcvContextBase(index);
1559
Kristian Høgsberged568912006-12-19 19:58:35 -05001560 ctx = &list[index];
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001561 memset(ctx, 0, sizeof(*ctx));
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001562 ctx->header_length = 0;
1563 ctx->header = (void *) __get_free_page(GFP_KERNEL);
1564 if (ctx->header == NULL)
1565 goto out;
1566
Kristian Høgsberg30200732007-02-16 17:34:39 -05001567 retval = context_init(&ctx->context, ohci, ISO_BUFFER_SIZE,
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001568 regs, callback);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001569 if (retval < 0)
1570 goto out_with_header;
Kristian Høgsberged568912006-12-19 19:58:35 -05001571
1572 return &ctx->base;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001573
1574 out_with_header:
1575 free_page((unsigned long)ctx->header);
1576 out:
1577 spin_lock_irqsave(&ohci->lock, flags);
1578 *mask |= 1 << index;
1579 spin_unlock_irqrestore(&ohci->lock, flags);
1580
1581 return ERR_PTR(retval);
Kristian Høgsberged568912006-12-19 19:58:35 -05001582}
1583
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04001584static int ohci_start_iso(struct fw_iso_context *base,
1585 s32 cycle, u32 sync, u32 tags)
Kristian Høgsberged568912006-12-19 19:58:35 -05001586{
Stefan Richter373b2ed2007-03-04 14:45:18 +01001587 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001588 struct fw_ohci *ohci = ctx->context.ohci;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001589 u32 control, match;
Kristian Høgsberged568912006-12-19 19:58:35 -05001590 int index;
1591
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001592 if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
1593 index = ctx - ohci->it_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001594 match = 0;
1595 if (cycle >= 0)
1596 match = IT_CONTEXT_CYCLE_MATCH_ENABLE |
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001597 (cycle & 0x7fff) << 16;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05001598
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001599 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 1 << index);
1600 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, 1 << index);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001601 context_run(&ctx->context, match);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001602 } else {
1603 index = ctx - ohci->ir_context_list;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001604 control = IR_CONTEXT_ISOCH_HEADER;
1605 if (ohci->version >= OHCI_VERSION_1_1)
1606 control |= IR_CONTEXT_DUAL_BUFFER_MODE;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001607 match = (tags << 28) | (sync << 8) | ctx->base.channel;
1608 if (cycle >= 0) {
1609 match |= (cycle & 0x07fff) << 12;
1610 control |= IR_CONTEXT_CYCLE_MATCH_ENABLE;
1611 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001612
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001613 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 1 << index);
1614 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, 1 << index);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001615 reg_write(ohci, CONTEXT_MATCH(ctx->context.regs), match);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001616 context_run(&ctx->context, control);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001617 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001618
1619 return 0;
1620}
1621
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001622static int ohci_stop_iso(struct fw_iso_context *base)
1623{
1624 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01001625 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001626 int index;
1627
1628 if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
1629 index = ctx - ohci->it_context_list;
1630 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 1 << index);
1631 } else {
1632 index = ctx - ohci->ir_context_list;
1633 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 1 << index);
1634 }
1635 flush_writes(ohci);
1636 context_stop(&ctx->context);
1637
1638 return 0;
1639}
1640
Kristian Høgsberged568912006-12-19 19:58:35 -05001641static void ohci_free_iso_context(struct fw_iso_context *base)
1642{
1643 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01001644 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberged568912006-12-19 19:58:35 -05001645 unsigned long flags;
1646 int index;
1647
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001648 ohci_stop_iso(base);
1649 context_release(&ctx->context);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001650 free_page((unsigned long)ctx->header);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001651
Kristian Høgsberged568912006-12-19 19:58:35 -05001652 spin_lock_irqsave(&ohci->lock, flags);
1653
1654 if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
1655 index = ctx - ohci->it_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05001656 ohci->it_context_mask |= 1 << index;
1657 } else {
1658 index = ctx - ohci->ir_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05001659 ohci->ir_context_mask |= 1 << index;
1660 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001661
1662 spin_unlock_irqrestore(&ohci->lock, flags);
1663}
1664
1665static int
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001666ohci_queue_iso_transmit(struct fw_iso_context *base,
1667 struct fw_iso_packet *packet,
1668 struct fw_iso_buffer *buffer,
1669 unsigned long payload)
Kristian Høgsberged568912006-12-19 19:58:35 -05001670{
Stefan Richter373b2ed2007-03-04 14:45:18 +01001671 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001672 struct descriptor *d, *last, *pd;
Kristian Høgsberged568912006-12-19 19:58:35 -05001673 struct fw_iso_packet *p;
1674 __le32 *header;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001675 dma_addr_t d_bus, page_bus;
Kristian Høgsberged568912006-12-19 19:58:35 -05001676 u32 z, header_z, payload_z, irq;
1677 u32 payload_index, payload_end_index, next_page_index;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001678 int page, end_page, i, length, offset;
Kristian Høgsberged568912006-12-19 19:58:35 -05001679
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001680 /*
1681 * FIXME: Cycle lost behavior should be configurable: lose
1682 * packet, retransmit or terminate..
1683 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001684
1685 p = packet;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001686 payload_index = payload;
Kristian Høgsberged568912006-12-19 19:58:35 -05001687
1688 if (p->skip)
1689 z = 1;
1690 else
1691 z = 2;
1692 if (p->header_length > 0)
1693 z++;
1694
1695 /* Determine the first page the payload isn't contained in. */
1696 end_page = PAGE_ALIGN(payload_index + p->payload_length) >> PAGE_SHIFT;
1697 if (p->payload_length > 0)
1698 payload_z = end_page - (payload_index >> PAGE_SHIFT);
1699 else
1700 payload_z = 0;
1701
1702 z += payload_z;
1703
1704 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001705 header_z = DIV_ROUND_UP(p->header_length, sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05001706
Kristian Høgsberg30200732007-02-16 17:34:39 -05001707 d = context_get_descriptors(&ctx->context, z + header_z, &d_bus);
1708 if (d == NULL)
1709 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05001710
1711 if (!p->skip) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001712 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsberged568912006-12-19 19:58:35 -05001713 d[0].req_count = cpu_to_le16(8);
1714
1715 header = (__le32 *) &d[1];
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001716 header[0] = cpu_to_le32(IT_HEADER_SY(p->sy) |
1717 IT_HEADER_TAG(p->tag) |
1718 IT_HEADER_TCODE(TCODE_STREAM_DATA) |
1719 IT_HEADER_CHANNEL(ctx->base.channel) |
1720 IT_HEADER_SPEED(ctx->base.speed));
Kristian Høgsberged568912006-12-19 19:58:35 -05001721 header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001722 cpu_to_le32(IT_HEADER_DATA_LENGTH(p->header_length +
Kristian Høgsberged568912006-12-19 19:58:35 -05001723 p->payload_length));
1724 }
1725
1726 if (p->header_length > 0) {
1727 d[2].req_count = cpu_to_le16(p->header_length);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001728 d[2].data_address = cpu_to_le32(d_bus + z * sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05001729 memcpy(&d[z], p->header, p->header_length);
1730 }
1731
1732 pd = d + z - payload_z;
1733 payload_end_index = payload_index + p->payload_length;
1734 for (i = 0; i < payload_z; i++) {
1735 page = payload_index >> PAGE_SHIFT;
1736 offset = payload_index & ~PAGE_MASK;
1737 next_page_index = (page + 1) << PAGE_SHIFT;
1738 length =
1739 min(next_page_index, payload_end_index) - payload_index;
1740 pd[i].req_count = cpu_to_le16(length);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001741
1742 page_bus = page_private(buffer->pages[page]);
1743 pd[i].data_address = cpu_to_le32(page_bus + offset);
Kristian Høgsberged568912006-12-19 19:58:35 -05001744
1745 payload_index += length;
1746 }
1747
Kristian Høgsberged568912006-12-19 19:58:35 -05001748 if (p->interrupt)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001749 irq = DESCRIPTOR_IRQ_ALWAYS;
Kristian Høgsberged568912006-12-19 19:58:35 -05001750 else
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001751 irq = DESCRIPTOR_NO_IRQ;
Kristian Høgsberged568912006-12-19 19:58:35 -05001752
Kristian Høgsberg30200732007-02-16 17:34:39 -05001753 last = z == 2 ? d : d + z - 1;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001754 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
1755 DESCRIPTOR_STATUS |
1756 DESCRIPTOR_BRANCH_ALWAYS |
Kristian Høgsbergcbb59da2007-02-16 17:34:35 -05001757 irq);
Kristian Høgsberged568912006-12-19 19:58:35 -05001758
Kristian Høgsberg30200732007-02-16 17:34:39 -05001759 context_append(&ctx->context, d, z, header_z);
Kristian Høgsberged568912006-12-19 19:58:35 -05001760
1761 return 0;
1762}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001763
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -05001764static int
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001765ohci_queue_iso_receive_dualbuffer(struct fw_iso_context *base,
1766 struct fw_iso_packet *packet,
1767 struct fw_iso_buffer *buffer,
1768 unsigned long payload)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001769{
1770 struct iso_context *ctx = container_of(base, struct iso_context, base);
1771 struct db_descriptor *db = NULL;
1772 struct descriptor *d;
1773 struct fw_iso_packet *p;
1774 dma_addr_t d_bus, page_bus;
1775 u32 z, header_z, length, rest;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001776 int page, offset, packet_count, header_size;
Stefan Richter373b2ed2007-03-04 14:45:18 +01001777
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001778 /*
1779 * FIXME: Cycle lost behavior should be configurable: lose
1780 * packet, retransmit or terminate..
1781 */
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001782
1783 p = packet;
1784 z = 2;
1785
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001786 /*
1787 * The OHCI controller puts the status word in the header
1788 * buffer too, so we need 4 extra bytes per packet.
1789 */
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001790 packet_count = p->header_length / ctx->base.header_size;
1791 header_size = packet_count * (ctx->base.header_size + 4);
1792
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001793 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001794 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001795 page = payload >> PAGE_SHIFT;
1796 offset = payload & ~PAGE_MASK;
1797 rest = p->payload_length;
1798
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001799 /* FIXME: make packet-per-buffer/dual-buffer a context option */
1800 while (rest > 0) {
1801 d = context_get_descriptors(&ctx->context,
1802 z + header_z, &d_bus);
1803 if (d == NULL)
1804 return -ENOMEM;
1805
1806 db = (struct db_descriptor *) d;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001807 db->control = cpu_to_le16(DESCRIPTOR_STATUS |
1808 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001809 db->first_size = cpu_to_le16(ctx->base.header_size + 4);
David Moore0642b652007-12-19 03:09:18 -05001810 if (p->skip && rest == p->payload_length) {
1811 db->control |= cpu_to_le16(DESCRIPTOR_WAIT);
1812 db->first_req_count = db->first_size;
1813 } else {
1814 db->first_req_count = cpu_to_le16(header_size);
1815 }
Kristian Høgsberg1e1d1962007-02-16 17:34:45 -05001816 db->first_res_count = db->first_req_count;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001817 db->first_buffer = cpu_to_le32(d_bus + sizeof(*db));
Stefan Richter373b2ed2007-03-04 14:45:18 +01001818
David Moore0642b652007-12-19 03:09:18 -05001819 if (p->skip && rest == p->payload_length)
1820 length = 4;
1821 else if (offset + rest < PAGE_SIZE)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001822 length = rest;
1823 else
1824 length = PAGE_SIZE - offset;
1825
Kristian Høgsberg1e1d1962007-02-16 17:34:45 -05001826 db->second_req_count = cpu_to_le16(length);
1827 db->second_res_count = db->second_req_count;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001828 page_bus = page_private(buffer->pages[page]);
1829 db->second_buffer = cpu_to_le32(page_bus + offset);
1830
Kristian Høgsbergcb2d2cd2007-02-16 17:34:47 -05001831 if (p->interrupt && length == rest)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001832 db->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
Kristian Høgsbergcb2d2cd2007-02-16 17:34:47 -05001833
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001834 context_append(&ctx->context, d, z, header_z);
1835 offset = (offset + length) & ~PAGE_MASK;
1836 rest -= length;
David Moore0642b652007-12-19 03:09:18 -05001837 if (offset == 0)
1838 page++;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001839 }
1840
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001841 return 0;
1842}
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05001843
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001844static int
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001845ohci_queue_iso_receive_packet_per_buffer(struct fw_iso_context *base,
1846 struct fw_iso_packet *packet,
1847 struct fw_iso_buffer *buffer,
1848 unsigned long payload)
1849{
1850 struct iso_context *ctx = container_of(base, struct iso_context, base);
1851 struct descriptor *d = NULL, *pd = NULL;
David Moorebcee8932007-12-19 15:26:38 -05001852 struct fw_iso_packet *p = packet;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001853 dma_addr_t d_bus, page_bus;
1854 u32 z, header_z, rest;
David Moorebcee8932007-12-19 15:26:38 -05001855 int i, j, length;
1856 int page, offset, packet_count, header_size, payload_per_buffer;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001857
1858 /*
1859 * The OHCI controller puts the status word in the
1860 * buffer too, so we need 4 extra bytes per packet.
1861 */
1862 packet_count = p->header_length / ctx->base.header_size;
David Moorebcee8932007-12-19 15:26:38 -05001863 header_size = ctx->base.header_size + 4;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001864
1865 /* Get header size in number of descriptors. */
1866 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
1867 page = payload >> PAGE_SHIFT;
1868 offset = payload & ~PAGE_MASK;
David Moorebcee8932007-12-19 15:26:38 -05001869 payload_per_buffer = p->payload_length / packet_count;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001870
1871 for (i = 0; i < packet_count; i++) {
1872 /* d points to the header descriptor */
David Moorebcee8932007-12-19 15:26:38 -05001873 z = DIV_ROUND_UP(payload_per_buffer + offset, PAGE_SIZE) + 1;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001874 d = context_get_descriptors(&ctx->context,
David Moorebcee8932007-12-19 15:26:38 -05001875 z + header_z, &d_bus);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001876 if (d == NULL)
1877 return -ENOMEM;
1878
David Moorebcee8932007-12-19 15:26:38 -05001879 d->control = cpu_to_le16(DESCRIPTOR_STATUS |
1880 DESCRIPTOR_INPUT_MORE);
1881 if (p->skip && i == 0)
1882 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001883 d->req_count = cpu_to_le16(header_size);
1884 d->res_count = d->req_count;
David Moorebcee8932007-12-19 15:26:38 -05001885 d->transfer_status = 0;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001886 d->data_address = cpu_to_le32(d_bus + (z * sizeof(*d)));
1887
David Moorebcee8932007-12-19 15:26:38 -05001888 rest = payload_per_buffer;
1889 for (j = 1; j < z; j++) {
1890 pd = d + j;
1891 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
1892 DESCRIPTOR_INPUT_MORE);
1893
1894 if (offset + rest < PAGE_SIZE)
1895 length = rest;
1896 else
1897 length = PAGE_SIZE - offset;
1898 pd->req_count = cpu_to_le16(length);
1899 pd->res_count = pd->req_count;
1900 pd->transfer_status = 0;
1901
1902 page_bus = page_private(buffer->pages[page]);
1903 pd->data_address = cpu_to_le32(page_bus + offset);
1904
1905 offset = (offset + length) & ~PAGE_MASK;
1906 rest -= length;
1907 if (offset == 0)
1908 page++;
1909 }
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001910 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
1911 DESCRIPTOR_INPUT_LAST |
1912 DESCRIPTOR_BRANCH_ALWAYS);
David Moorebcee8932007-12-19 15:26:38 -05001913 if (p->interrupt && i == packet_count - 1)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001914 pd->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
1915
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001916 context_append(&ctx->context, d, z, header_z);
1917 }
1918
1919 return 0;
1920}
1921
1922static int
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001923ohci_queue_iso(struct fw_iso_context *base,
1924 struct fw_iso_packet *packet,
1925 struct fw_iso_buffer *buffer,
1926 unsigned long payload)
1927{
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001928 struct iso_context *ctx = container_of(base, struct iso_context, base);
1929
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001930 if (base->type == FW_ISO_CONTEXT_TRANSMIT)
1931 return ohci_queue_iso_transmit(base, packet, buffer, payload);
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001932 else if (ctx->context.ohci->version >= OHCI_VERSION_1_1)
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001933 return ohci_queue_iso_receive_dualbuffer(base, packet,
1934 buffer, payload);
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001935 else
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001936 return ohci_queue_iso_receive_packet_per_buffer(base, packet,
1937 buffer,
1938 payload);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001939}
1940
Stefan Richter21ebcd12007-01-14 15:29:07 +01001941static const struct fw_card_driver ohci_driver = {
Kristian Høgsberged568912006-12-19 19:58:35 -05001942 .name = ohci_driver_name,
1943 .enable = ohci_enable,
1944 .update_phy_reg = ohci_update_phy_reg,
1945 .set_config_rom = ohci_set_config_rom,
1946 .send_request = ohci_send_request,
1947 .send_response = ohci_send_response,
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001948 .cancel_packet = ohci_cancel_packet,
Kristian Høgsberged568912006-12-19 19:58:35 -05001949 .enable_phys_dma = ohci_enable_phys_dma,
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001950 .get_bus_time = ohci_get_bus_time,
Kristian Høgsberged568912006-12-19 19:58:35 -05001951
1952 .allocate_iso_context = ohci_allocate_iso_context,
1953 .free_iso_context = ohci_free_iso_context,
1954 .queue_iso = ohci_queue_iso,
Kristian Høgsberg69cdb722007-02-16 17:34:41 -05001955 .start_iso = ohci_start_iso,
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001956 .stop_iso = ohci_stop_iso,
Kristian Høgsberged568912006-12-19 19:58:35 -05001957};
1958
Kristian Høgsberged568912006-12-19 19:58:35 -05001959static int __devinit
1960pci_probe(struct pci_dev *dev, const struct pci_device_id *ent)
1961{
1962 struct fw_ohci *ohci;
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001963 u32 bus_options, max_receive, link_speed;
Kristian Høgsberged568912006-12-19 19:58:35 -05001964 u64 guid;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001965 int err;
Kristian Høgsberged568912006-12-19 19:58:35 -05001966 size_t size;
1967
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001968 ohci = kzalloc(sizeof(*ohci), GFP_KERNEL);
Kristian Høgsberged568912006-12-19 19:58:35 -05001969 if (ohci == NULL) {
1970 fw_error("Could not malloc fw_ohci data.\n");
1971 return -ENOMEM;
1972 }
1973
1974 fw_card_initialize(&ohci->card, &ohci_driver, &dev->dev);
1975
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001976 err = pci_enable_device(dev);
1977 if (err) {
Kristian Høgsberged568912006-12-19 19:58:35 -05001978 fw_error("Failed to enable OHCI hardware.\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001979 goto fail_put_card;
Kristian Høgsberged568912006-12-19 19:58:35 -05001980 }
1981
1982 pci_set_master(dev);
1983 pci_write_config_dword(dev, OHCI1394_PCI_HCI_Control, 0);
1984 pci_set_drvdata(dev, ohci);
1985
1986 spin_lock_init(&ohci->lock);
1987
1988 tasklet_init(&ohci->bus_reset_tasklet,
1989 bus_reset_tasklet, (unsigned long)ohci);
1990
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001991 err = pci_request_region(dev, 0, ohci_driver_name);
1992 if (err) {
Kristian Høgsberged568912006-12-19 19:58:35 -05001993 fw_error("MMIO resource unavailable\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001994 goto fail_disable;
Kristian Høgsberged568912006-12-19 19:58:35 -05001995 }
1996
1997 ohci->registers = pci_iomap(dev, 0, OHCI1394_REGISTER_SIZE);
1998 if (ohci->registers == NULL) {
1999 fw_error("Failed to remap registers\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002000 err = -ENXIO;
2001 goto fail_iomem;
Kristian Høgsberged568912006-12-19 19:58:35 -05002002 }
2003
Kristian Høgsberged568912006-12-19 19:58:35 -05002004 ar_context_init(&ohci->ar_request_ctx, ohci,
2005 OHCI1394_AsReqRcvContextControlSet);
2006
2007 ar_context_init(&ohci->ar_response_ctx, ohci,
2008 OHCI1394_AsRspRcvContextControlSet);
2009
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002010 context_init(&ohci->at_request_ctx, ohci, AT_BUFFER_SIZE,
2011 OHCI1394_AsReqTrContextControlSet, handle_at_packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05002012
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002013 context_init(&ohci->at_response_ctx, ohci, AT_BUFFER_SIZE,
2014 OHCI1394_AsRspTrContextControlSet, handle_at_packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05002015
Kristian Høgsberged568912006-12-19 19:58:35 -05002016 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, ~0);
2017 ohci->it_context_mask = reg_read(ohci, OHCI1394_IsoRecvIntMaskSet);
2018 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, ~0);
2019 size = sizeof(struct iso_context) * hweight32(ohci->it_context_mask);
2020 ohci->it_context_list = kzalloc(size, GFP_KERNEL);
2021
2022 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, ~0);
2023 ohci->ir_context_mask = reg_read(ohci, OHCI1394_IsoXmitIntMaskSet);
2024 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, ~0);
2025 size = sizeof(struct iso_context) * hweight32(ohci->ir_context_mask);
2026 ohci->ir_context_list = kzalloc(size, GFP_KERNEL);
2027
2028 if (ohci->it_context_list == NULL || ohci->ir_context_list == NULL) {
2029 fw_error("Out of memory for it/ir contexts.\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002030 err = -ENOMEM;
2031 goto fail_registers;
Kristian Høgsberged568912006-12-19 19:58:35 -05002032 }
2033
2034 /* self-id dma buffer allocation */
2035 ohci->self_id_cpu = dma_alloc_coherent(ohci->card.device,
2036 SELF_ID_BUF_SIZE,
2037 &ohci->self_id_bus,
2038 GFP_KERNEL);
2039 if (ohci->self_id_cpu == NULL) {
2040 fw_error("Out of memory for self ID buffer.\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002041 err = -ENOMEM;
2042 goto fail_registers;
Kristian Høgsberged568912006-12-19 19:58:35 -05002043 }
2044
Kristian Høgsberged568912006-12-19 19:58:35 -05002045 bus_options = reg_read(ohci, OHCI1394_BusOptions);
2046 max_receive = (bus_options >> 12) & 0xf;
2047 link_speed = bus_options & 0x7;
2048 guid = ((u64) reg_read(ohci, OHCI1394_GUIDHi) << 32) |
2049 reg_read(ohci, OHCI1394_GUIDLo);
2050
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002051 err = fw_card_add(&ohci->card, max_receive, link_speed, guid);
2052 if (err < 0)
2053 goto fail_self_id;
Kristian Høgsberged568912006-12-19 19:58:35 -05002054
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002055 ohci->version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
Kristian Høgsberg500be722007-02-16 17:34:43 -05002056 fw_notify("Added fw-ohci device %s, OHCI version %x.%x\n",
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002057 dev->dev.bus_id, ohci->version >> 16, ohci->version & 0xff);
Kristian Høgsberged568912006-12-19 19:58:35 -05002058 return 0;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002059
2060 fail_self_id:
2061 dma_free_coherent(ohci->card.device, SELF_ID_BUF_SIZE,
2062 ohci->self_id_cpu, ohci->self_id_bus);
2063 fail_registers:
2064 kfree(ohci->it_context_list);
2065 kfree(ohci->ir_context_list);
2066 pci_iounmap(dev, ohci->registers);
2067 fail_iomem:
2068 pci_release_region(dev, 0);
2069 fail_disable:
2070 pci_disable_device(dev);
2071 fail_put_card:
2072 fw_card_put(&ohci->card);
2073
2074 return err;
Kristian Høgsberged568912006-12-19 19:58:35 -05002075}
2076
2077static void pci_remove(struct pci_dev *dev)
2078{
2079 struct fw_ohci *ohci;
2080
2081 ohci = pci_get_drvdata(dev);
Kristian Høgsberge254a4b2007-03-07 12:12:38 -05002082 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
2083 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002084 fw_core_remove_card(&ohci->card);
2085
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002086 /*
2087 * FIXME: Fail all pending packets here, now that the upper
2088 * layers can't queue any more.
2089 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002090
2091 software_reset(ohci);
2092 free_irq(dev->irq, ohci);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002093 dma_free_coherent(ohci->card.device, SELF_ID_BUF_SIZE,
2094 ohci->self_id_cpu, ohci->self_id_bus);
2095 kfree(ohci->it_context_list);
2096 kfree(ohci->ir_context_list);
2097 pci_iounmap(dev, ohci->registers);
2098 pci_release_region(dev, 0);
2099 pci_disable_device(dev);
2100 fw_card_put(&ohci->card);
Kristian Høgsberged568912006-12-19 19:58:35 -05002101
2102 fw_notify("Removed fw-ohci device.\n");
2103}
2104
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002105#ifdef CONFIG_PM
2106static int pci_suspend(struct pci_dev *pdev, pm_message_t state)
2107{
2108 struct fw_ohci *ohci = pci_get_drvdata(pdev);
2109 int err;
2110
2111 software_reset(ohci);
2112 free_irq(pdev->irq, ohci);
2113 err = pci_save_state(pdev);
2114 if (err) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02002115 fw_error("pci_save_state failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002116 return err;
2117 }
2118 err = pci_set_power_state(pdev, pci_choose_state(pdev, state));
Stefan Richter55111422007-09-06 09:50:30 +02002119 if (err)
2120 fw_error("pci_set_power_state failed with %d\n", err);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002121
2122 return 0;
2123}
2124
2125static int pci_resume(struct pci_dev *pdev)
2126{
2127 struct fw_ohci *ohci = pci_get_drvdata(pdev);
2128 int err;
2129
2130 pci_set_power_state(pdev, PCI_D0);
2131 pci_restore_state(pdev);
2132 err = pci_enable_device(pdev);
2133 if (err) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02002134 fw_error("pci_enable_device failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002135 return err;
2136 }
2137
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002138 return ohci_enable(&ohci->card, NULL, 0);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002139}
2140#endif
2141
Kristian Høgsberged568912006-12-19 19:58:35 -05002142static struct pci_device_id pci_table[] = {
2143 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_FIREWIRE_OHCI, ~0) },
2144 { }
2145};
2146
2147MODULE_DEVICE_TABLE(pci, pci_table);
2148
2149static struct pci_driver fw_ohci_pci_driver = {
2150 .name = ohci_driver_name,
2151 .id_table = pci_table,
2152 .probe = pci_probe,
2153 .remove = pci_remove,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002154#ifdef CONFIG_PM
2155 .resume = pci_resume,
2156 .suspend = pci_suspend,
2157#endif
Kristian Høgsberged568912006-12-19 19:58:35 -05002158};
2159
2160MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
2161MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers");
2162MODULE_LICENSE("GPL");
2163
Olaf Hering1e4c7b02007-05-05 23:17:13 +02002164/* Provide a module alias so root-on-sbp2 initrds don't break. */
2165#ifndef CONFIG_IEEE1394_OHCI1394_MODULE
2166MODULE_ALIAS("ohci1394");
2167#endif
2168
Kristian Høgsberged568912006-12-19 19:58:35 -05002169static int __init fw_ohci_init(void)
2170{
2171 return pci_register_driver(&fw_ohci_pci_driver);
2172}
2173
2174static void __exit fw_ohci_cleanup(void)
2175{
2176 pci_unregister_driver(&fw_ohci_pci_driver);
2177}
2178
2179module_init(fw_ohci_init);
2180module_exit(fw_ohci_cleanup);