blob: 96c8ac5b86ccceaeed1ce0355b1f8c0c3cd1dda0 [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
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/interrupt.h>
25#include <linux/pci.h>
26#include <linux/delay.h>
27#include <linux/poll.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080028#include <linux/dma-mapping.h>
Al Virofaa2fb42007-05-15 20:36:10 +010029#include <linux/mm.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080030
Kristian Høgsberged568912006-12-19 19:58:35 -050031#include <asm/uaccess.h>
32#include <asm/semaphore.h>
33
34#include "fw-transaction.h"
35#include "fw-ohci.h"
36
Kristian Høgsberga77754a2007-05-07 20:33:35 -040037#define DESCRIPTOR_OUTPUT_MORE 0
38#define DESCRIPTOR_OUTPUT_LAST (1 << 12)
39#define DESCRIPTOR_INPUT_MORE (2 << 12)
40#define DESCRIPTOR_INPUT_LAST (3 << 12)
41#define DESCRIPTOR_STATUS (1 << 11)
42#define DESCRIPTOR_KEY_IMMEDIATE (2 << 8)
43#define DESCRIPTOR_PING (1 << 7)
44#define DESCRIPTOR_YY (1 << 6)
45#define DESCRIPTOR_NO_IRQ (0 << 4)
46#define DESCRIPTOR_IRQ_ERROR (1 << 4)
47#define DESCRIPTOR_IRQ_ALWAYS (3 << 4)
48#define DESCRIPTOR_BRANCH_ALWAYS (3 << 2)
49#define DESCRIPTOR_WAIT (3 << 0)
Kristian Høgsberged568912006-12-19 19:58:35 -050050
51struct descriptor {
52 __le16 req_count;
53 __le16 control;
54 __le32 data_address;
55 __le32 branch_address;
56 __le16 res_count;
57 __le16 transfer_status;
58} __attribute__((aligned(16)));
59
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -050060struct db_descriptor {
61 __le16 first_size;
62 __le16 control;
63 __le16 second_req_count;
64 __le16 first_req_count;
65 __le32 branch_address;
66 __le16 second_res_count;
67 __le16 first_res_count;
68 __le32 reserved0;
69 __le32 first_buffer;
70 __le32 second_buffer;
71 __le32 reserved1;
72} __attribute__((aligned(16)));
73
Kristian Høgsberga77754a2007-05-07 20:33:35 -040074#define CONTROL_SET(regs) (regs)
75#define CONTROL_CLEAR(regs) ((regs) + 4)
76#define COMMAND_PTR(regs) ((regs) + 12)
77#define CONTEXT_MATCH(regs) ((regs) + 16)
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050078
Kristian Høgsberg32b46092007-02-06 14:49:30 -050079struct ar_buffer {
80 struct descriptor descriptor;
81 struct ar_buffer *next;
82 __le32 data[0];
83};
84
Kristian Høgsberged568912006-12-19 19:58:35 -050085struct ar_context {
86 struct fw_ohci *ohci;
Kristian Høgsberg32b46092007-02-06 14:49:30 -050087 struct ar_buffer *current_buffer;
88 struct ar_buffer *last_buffer;
89 void *pointer;
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050090 u32 regs;
Kristian Høgsberged568912006-12-19 19:58:35 -050091 struct tasklet_struct tasklet;
92};
93
Kristian Høgsberg30200732007-02-16 17:34:39 -050094struct context;
95
96typedef int (*descriptor_callback_t)(struct context *ctx,
97 struct descriptor *d,
98 struct descriptor *last);
99struct context {
Stefan Richter373b2ed2007-03-04 14:45:18 +0100100 struct fw_ohci *ohci;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500101 u32 regs;
Stefan Richter373b2ed2007-03-04 14:45:18 +0100102
Kristian Høgsberg30200732007-02-16 17:34:39 -0500103 struct descriptor *buffer;
104 dma_addr_t buffer_bus;
105 size_t buffer_size;
106 struct descriptor *head_descriptor;
107 struct descriptor *tail_descriptor;
108 struct descriptor *tail_descriptor_last;
109 struct descriptor *prev_descriptor;
110
111 descriptor_callback_t callback;
112
Stefan Richter373b2ed2007-03-04 14:45:18 +0100113 struct tasklet_struct tasklet;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500114};
Kristian Høgsberg30200732007-02-16 17:34:39 -0500115
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400116#define IT_HEADER_SY(v) ((v) << 0)
117#define IT_HEADER_TCODE(v) ((v) << 4)
118#define IT_HEADER_CHANNEL(v) ((v) << 8)
119#define IT_HEADER_TAG(v) ((v) << 14)
120#define IT_HEADER_SPEED(v) ((v) << 16)
121#define IT_HEADER_DATA_LENGTH(v) ((v) << 16)
Kristian Høgsberged568912006-12-19 19:58:35 -0500122
123struct iso_context {
124 struct fw_iso_context base;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500125 struct context context;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500126 void *header;
127 size_t header_length;
Kristian Høgsberged568912006-12-19 19:58:35 -0500128};
129
130#define CONFIG_ROM_SIZE 1024
131
132struct fw_ohci {
133 struct fw_card card;
134
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500135 u32 version;
Kristian Høgsberged568912006-12-19 19:58:35 -0500136 __iomem char *registers;
137 dma_addr_t self_id_bus;
138 __le32 *self_id_cpu;
139 struct tasklet_struct bus_reset_tasklet;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500140 int node_id;
Kristian Høgsberged568912006-12-19 19:58:35 -0500141 int generation;
142 int request_generation;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500143 u32 bus_seconds;
Kristian Høgsberged568912006-12-19 19:58:35 -0500144
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400145 /*
146 * Spinlock for accessing fw_ohci data. Never call out of
147 * this driver with this lock held.
148 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500149 spinlock_t lock;
150 u32 self_id_buffer[512];
151
152 /* Config rom buffers */
153 __be32 *config_rom;
154 dma_addr_t config_rom_bus;
155 __be32 *next_config_rom;
156 dma_addr_t next_config_rom_bus;
157 u32 next_header;
158
159 struct ar_context ar_request_ctx;
160 struct ar_context ar_response_ctx;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500161 struct context at_request_ctx;
162 struct context at_response_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -0500163
164 u32 it_context_mask;
165 struct iso_context *it_context_list;
166 u32 ir_context_mask;
167 struct iso_context *ir_context_list;
168};
169
Adrian Bunk95688e92007-01-22 19:17:37 +0100170static inline struct fw_ohci *fw_ohci(struct fw_card *card)
Kristian Høgsberged568912006-12-19 19:58:35 -0500171{
172 return container_of(card, struct fw_ohci, card);
173}
174
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500175#define IT_CONTEXT_CYCLE_MATCH_ENABLE 0x80000000
176#define IR_CONTEXT_BUFFER_FILL 0x80000000
177#define IR_CONTEXT_ISOCH_HEADER 0x40000000
178#define IR_CONTEXT_CYCLE_MATCH_ENABLE 0x20000000
179#define IR_CONTEXT_MULTI_CHANNEL_MODE 0x10000000
180#define IR_CONTEXT_DUAL_BUFFER_MODE 0x08000000
Kristian Høgsberged568912006-12-19 19:58:35 -0500181
182#define CONTEXT_RUN 0x8000
183#define CONTEXT_WAKE 0x1000
184#define CONTEXT_DEAD 0x0800
185#define CONTEXT_ACTIVE 0x0400
186
187#define OHCI1394_MAX_AT_REQ_RETRIES 0x2
188#define OHCI1394_MAX_AT_RESP_RETRIES 0x2
189#define OHCI1394_MAX_PHYS_RESP_RETRIES 0x8
190
191#define FW_OHCI_MAJOR 240
192#define OHCI1394_REGISTER_SIZE 0x800
193#define OHCI_LOOP_COUNT 500
194#define OHCI1394_PCI_HCI_Control 0x40
195#define SELF_ID_BUF_SIZE 0x800
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500196#define OHCI_TCODE_PHY_PACKET 0x0e
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500197#define OHCI_VERSION_1_1 0x010010
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500198#define ISO_BUFFER_SIZE (64 * 1024)
199#define AT_BUFFER_SIZE 4096
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500200
Kristian Høgsberged568912006-12-19 19:58:35 -0500201static char ohci_driver_name[] = KBUILD_MODNAME;
202
Adrian Bunk95688e92007-01-22 19:17:37 +0100203static inline void reg_write(const struct fw_ohci *ohci, int offset, u32 data)
Kristian Høgsberged568912006-12-19 19:58:35 -0500204{
205 writel(data, ohci->registers + offset);
206}
207
Adrian Bunk95688e92007-01-22 19:17:37 +0100208static inline u32 reg_read(const struct fw_ohci *ohci, int offset)
Kristian Høgsberged568912006-12-19 19:58:35 -0500209{
210 return readl(ohci->registers + offset);
211}
212
Adrian Bunk95688e92007-01-22 19:17:37 +0100213static inline void flush_writes(const struct fw_ohci *ohci)
Kristian Høgsberged568912006-12-19 19:58:35 -0500214{
215 /* Do a dummy read to flush writes. */
216 reg_read(ohci, OHCI1394_Version);
217}
218
219static int
220ohci_update_phy_reg(struct fw_card *card, int addr,
221 int clear_bits, int set_bits)
222{
223 struct fw_ohci *ohci = fw_ohci(card);
224 u32 val, old;
225
226 reg_write(ohci, OHCI1394_PhyControl, OHCI1394_PhyControl_Read(addr));
227 msleep(2);
228 val = reg_read(ohci, OHCI1394_PhyControl);
229 if ((val & OHCI1394_PhyControl_ReadDone) == 0) {
230 fw_error("failed to set phy reg bits.\n");
231 return -EBUSY;
232 }
233
234 old = OHCI1394_PhyControl_ReadData(val);
235 old = (old & ~clear_bits) | set_bits;
236 reg_write(ohci, OHCI1394_PhyControl,
237 OHCI1394_PhyControl_Write(addr, old));
238
239 return 0;
240}
241
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500242static int ar_context_add_page(struct ar_context *ctx)
Kristian Høgsberged568912006-12-19 19:58:35 -0500243{
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500244 struct device *dev = ctx->ohci->card.device;
245 struct ar_buffer *ab;
246 dma_addr_t ab_bus;
247 size_t offset;
248
249 ab = (struct ar_buffer *) __get_free_page(GFP_ATOMIC);
250 if (ab == NULL)
251 return -ENOMEM;
252
253 ab_bus = dma_map_single(dev, ab, PAGE_SIZE, DMA_BIDIRECTIONAL);
254 if (dma_mapping_error(ab_bus)) {
255 free_page((unsigned long) ab);
256 return -ENOMEM;
257 }
258
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400259 memset(&ab->descriptor, 0, sizeof(ab->descriptor));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400260 ab->descriptor.control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
261 DESCRIPTOR_STATUS |
262 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500263 offset = offsetof(struct ar_buffer, data);
264 ab->descriptor.req_count = cpu_to_le16(PAGE_SIZE - offset);
265 ab->descriptor.data_address = cpu_to_le32(ab_bus + offset);
266 ab->descriptor.res_count = cpu_to_le16(PAGE_SIZE - offset);
267 ab->descriptor.branch_address = 0;
268
269 dma_sync_single_for_device(dev, ab_bus, PAGE_SIZE, DMA_BIDIRECTIONAL);
270
Kristian Høgsbergec839e42007-05-22 18:55:48 -0400271 ctx->last_buffer->descriptor.branch_address = cpu_to_le32(ab_bus | 1);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500272 ctx->last_buffer->next = ab;
273 ctx->last_buffer = ab;
274
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400275 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Kristian Høgsberged568912006-12-19 19:58:35 -0500276 flush_writes(ctx->ohci);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500277
278 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -0500279}
280
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500281static __le32 *handle_ar_packet(struct ar_context *ctx, __le32 *buffer)
Kristian Høgsberged568912006-12-19 19:58:35 -0500282{
Kristian Høgsberged568912006-12-19 19:58:35 -0500283 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500284 struct fw_packet p;
285 u32 status, length, tcode;
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500286
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500287 p.header[0] = le32_to_cpu(buffer[0]);
288 p.header[1] = le32_to_cpu(buffer[1]);
289 p.header[2] = le32_to_cpu(buffer[2]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500290
291 tcode = (p.header[0] >> 4) & 0x0f;
292 switch (tcode) {
293 case TCODE_WRITE_QUADLET_REQUEST:
294 case TCODE_READ_QUADLET_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500295 p.header[3] = (__force __u32) buffer[3];
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500296 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500297 p.payload_length = 0;
298 break;
299
300 case TCODE_READ_BLOCK_REQUEST :
301 p.header[3] = le32_to_cpu(buffer[3]);
302 p.header_length = 16;
303 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500304 break;
305
306 case TCODE_WRITE_BLOCK_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500307 case TCODE_READ_BLOCK_RESPONSE:
308 case TCODE_LOCK_REQUEST:
309 case TCODE_LOCK_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500310 p.header[3] = le32_to_cpu(buffer[3]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500311 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500312 p.payload_length = p.header[3] >> 16;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500313 break;
314
315 case TCODE_WRITE_RESPONSE:
316 case TCODE_READ_QUADLET_REQUEST:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500317 case OHCI_TCODE_PHY_PACKET:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500318 p.header_length = 12;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500319 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500320 break;
321 }
322
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500323 p.payload = (void *) buffer + p.header_length;
324
325 /* FIXME: What to do about evt_* errors? */
326 length = (p.header_length + p.payload_length + 3) / 4;
327 status = le32_to_cpu(buffer[length]);
328
329 p.ack = ((status >> 16) & 0x1f) - 16;
330 p.speed = (status >> 21) & 0x7;
331 p.timestamp = status & 0xffff;
332 p.generation = ohci->request_generation;
Kristian Høgsberged568912006-12-19 19:58:35 -0500333
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400334 /*
335 * The OHCI bus reset handler synthesizes a phy packet with
Kristian Høgsberged568912006-12-19 19:58:35 -0500336 * the new generation number when a bus reset happens (see
337 * section 8.4.2.3). This helps us determine when a request
338 * was received and make sure we send the response in the same
339 * generation. We only need this for requests; for responses
340 * we use the unique tlabel for finding the matching
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400341 * request.
342 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500343
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500344 if (p.ack + 16 == 0x09)
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500345 ohci->request_generation = (buffer[2] >> 16) & 0xff;
Kristian Høgsberged568912006-12-19 19:58:35 -0500346 else if (ctx == &ohci->ar_request_ctx)
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500347 fw_core_handle_request(&ohci->card, &p);
Kristian Høgsberged568912006-12-19 19:58:35 -0500348 else
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500349 fw_core_handle_response(&ohci->card, &p);
Kristian Høgsberged568912006-12-19 19:58:35 -0500350
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500351 return buffer + length + 1;
352}
Kristian Høgsberged568912006-12-19 19:58:35 -0500353
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500354static void ar_context_tasklet(unsigned long data)
355{
356 struct ar_context *ctx = (struct ar_context *)data;
357 struct fw_ohci *ohci = ctx->ohci;
358 struct ar_buffer *ab;
359 struct descriptor *d;
360 void *buffer, *end;
Kristian Høgsberged568912006-12-19 19:58:35 -0500361
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500362 ab = ctx->current_buffer;
363 d = &ab->descriptor;
Kristian Høgsberged568912006-12-19 19:58:35 -0500364
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500365 if (d->res_count == 0) {
366 size_t size, rest, offset;
367
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400368 /*
369 * This descriptor is finished and we may have a
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500370 * packet split across this and the next buffer. We
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400371 * reuse the page for reassembling the split packet.
372 */
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500373
374 offset = offsetof(struct ar_buffer, data);
375 dma_unmap_single(ohci->card.device,
Stefan Richter0a9972b2007-06-23 20:28:17 +0200376 le32_to_cpu(ab->descriptor.data_address) - offset,
377 PAGE_SIZE, DMA_BIDIRECTIONAL);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500378
379 buffer = ab;
380 ab = ab->next;
381 d = &ab->descriptor;
382 size = buffer + PAGE_SIZE - ctx->pointer;
383 rest = le16_to_cpu(d->req_count) - le16_to_cpu(d->res_count);
384 memmove(buffer, ctx->pointer, size);
385 memcpy(buffer + size, ab->data, rest);
386 ctx->current_buffer = ab;
387 ctx->pointer = (void *) ab->data + rest;
388 end = buffer + size + rest;
389
390 while (buffer < end)
391 buffer = handle_ar_packet(ctx, buffer);
392
393 free_page((unsigned long)buffer);
394 ar_context_add_page(ctx);
395 } else {
396 buffer = ctx->pointer;
397 ctx->pointer = end =
398 (void *) ab + PAGE_SIZE - le16_to_cpu(d->res_count);
399
400 while (buffer < end)
401 buffer = handle_ar_packet(ctx, buffer);
402 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500403}
404
405static int
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500406ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci, u32 regs)
Kristian Høgsberged568912006-12-19 19:58:35 -0500407{
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500408 struct ar_buffer ab;
Kristian Høgsberged568912006-12-19 19:58:35 -0500409
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500410 ctx->regs = regs;
411 ctx->ohci = ohci;
412 ctx->last_buffer = &ab;
Kristian Høgsberged568912006-12-19 19:58:35 -0500413 tasklet_init(&ctx->tasklet, ar_context_tasklet, (unsigned long)ctx);
414
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500415 ar_context_add_page(ctx);
416 ar_context_add_page(ctx);
417 ctx->current_buffer = ab.next;
418 ctx->pointer = ctx->current_buffer->data;
419
Kristian Høgsberg2aef4692007-05-30 19:06:35 -0400420 return 0;
421}
422
423static void ar_context_run(struct ar_context *ctx)
424{
425 struct ar_buffer *ab = ctx->current_buffer;
426 dma_addr_t ab_bus;
427 size_t offset;
428
429 offset = offsetof(struct ar_buffer, data);
Stefan Richter0a9972b2007-06-23 20:28:17 +0200430 ab_bus = le32_to_cpu(ab->descriptor.data_address) - offset;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -0400431
432 reg_write(ctx->ohci, COMMAND_PTR(ctx->regs), ab_bus | 1);
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400433 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500434 flush_writes(ctx->ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -0500435}
Stefan Richter373b2ed2007-03-04 14:45:18 +0100436
Kristian Høgsberg30200732007-02-16 17:34:39 -0500437static void context_tasklet(unsigned long data)
438{
439 struct context *ctx = (struct context *) data;
440 struct fw_ohci *ohci = ctx->ohci;
441 struct descriptor *d, *last;
442 u32 address;
443 int z;
444
445 dma_sync_single_for_cpu(ohci->card.device, ctx->buffer_bus,
446 ctx->buffer_size, DMA_TO_DEVICE);
447
448 d = ctx->tail_descriptor;
449 last = ctx->tail_descriptor_last;
450
451 while (last->branch_address != 0) {
452 address = le32_to_cpu(last->branch_address);
453 z = address & 0xf;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400454 d = ctx->buffer + (address - ctx->buffer_bus) / sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500455 last = (z == 2) ? d : d + z - 1;
456
457 if (!ctx->callback(ctx, d, last))
458 break;
459
460 ctx->tail_descriptor = d;
461 ctx->tail_descriptor_last = last;
462 }
463}
464
465static int
466context_init(struct context *ctx, struct fw_ohci *ohci,
467 size_t buffer_size, u32 regs,
468 descriptor_callback_t callback)
469{
470 ctx->ohci = ohci;
471 ctx->regs = regs;
472 ctx->buffer_size = buffer_size;
473 ctx->buffer = kmalloc(buffer_size, GFP_KERNEL);
474 if (ctx->buffer == NULL)
475 return -ENOMEM;
476
477 tasklet_init(&ctx->tasklet, context_tasklet, (unsigned long)ctx);
478 ctx->callback = callback;
479
480 ctx->buffer_bus =
481 dma_map_single(ohci->card.device, ctx->buffer,
482 buffer_size, DMA_TO_DEVICE);
483 if (dma_mapping_error(ctx->buffer_bus)) {
484 kfree(ctx->buffer);
485 return -ENOMEM;
486 }
487
488 ctx->head_descriptor = ctx->buffer;
489 ctx->prev_descriptor = ctx->buffer;
490 ctx->tail_descriptor = ctx->buffer;
491 ctx->tail_descriptor_last = ctx->buffer;
492
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400493 /*
494 * We put a dummy descriptor in the buffer that has a NULL
Kristian Høgsberg30200732007-02-16 17:34:39 -0500495 * branch address and looks like it's been sent. That way we
496 * have a descriptor to append DMA programs to. Also, the
497 * ring buffer invariant is that it always has at least one
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400498 * element so that head == tail means buffer full.
499 */
Kristian Høgsberg30200732007-02-16 17:34:39 -0500500
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400501 memset(ctx->head_descriptor, 0, sizeof(*ctx->head_descriptor));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400502 ctx->head_descriptor->control = cpu_to_le16(DESCRIPTOR_OUTPUT_LAST);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500503 ctx->head_descriptor->transfer_status = cpu_to_le16(0x8011);
504 ctx->head_descriptor++;
505
506 return 0;
507}
508
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500509static void
Kristian Høgsberg30200732007-02-16 17:34:39 -0500510context_release(struct context *ctx)
511{
512 struct fw_card *card = &ctx->ohci->card;
513
514 dma_unmap_single(card->device, ctx->buffer_bus,
515 ctx->buffer_size, DMA_TO_DEVICE);
516 kfree(ctx->buffer);
517}
518
519static struct descriptor *
520context_get_descriptors(struct context *ctx, int z, dma_addr_t *d_bus)
521{
522 struct descriptor *d, *tail, *end;
523
524 d = ctx->head_descriptor;
525 tail = ctx->tail_descriptor;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400526 end = ctx->buffer + ctx->buffer_size / sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500527
528 if (d + z <= tail) {
529 goto has_space;
530 } else if (d > tail && d + z <= end) {
531 goto has_space;
532 } else if (d > tail && ctx->buffer + z <= tail) {
533 d = ctx->buffer;
534 goto has_space;
535 }
536
537 return NULL;
538
539 has_space:
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400540 memset(d, 0, z * sizeof(*d));
541 *d_bus = ctx->buffer_bus + (d - ctx->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500542
543 return d;
544}
545
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500546static void context_run(struct context *ctx, u32 extra)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500547{
548 struct fw_ohci *ohci = ctx->ohci;
549
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400550 reg_write(ohci, COMMAND_PTR(ctx->regs),
Kristian Høgsberg30200732007-02-16 17:34:39 -0500551 le32_to_cpu(ctx->tail_descriptor_last->branch_address));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400552 reg_write(ohci, CONTROL_CLEAR(ctx->regs), ~0);
553 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN | extra);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500554 flush_writes(ohci);
555}
556
557static void context_append(struct context *ctx,
558 struct descriptor *d, int z, int extra)
559{
560 dma_addr_t d_bus;
561
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400562 d_bus = ctx->buffer_bus + (d - ctx->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500563
564 ctx->head_descriptor = d + z + extra;
565 ctx->prev_descriptor->branch_address = cpu_to_le32(d_bus | z);
566 ctx->prev_descriptor = z == 2 ? d : d + z - 1;
567
568 dma_sync_single_for_device(ctx->ohci->card.device, ctx->buffer_bus,
569 ctx->buffer_size, DMA_TO_DEVICE);
570
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400571 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500572 flush_writes(ctx->ohci);
573}
574
575static void context_stop(struct context *ctx)
576{
577 u32 reg;
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500578 int i;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500579
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400580 reg_write(ctx->ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500581 flush_writes(ctx->ohci);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500582
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500583 for (i = 0; i < 10; i++) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400584 reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs));
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500585 if ((reg & CONTEXT_ACTIVE) == 0)
586 break;
587
588 fw_notify("context_stop: still active (0x%08x)\n", reg);
589 msleep(1);
590 }
Kristian Høgsberg30200732007-02-16 17:34:39 -0500591}
Kristian Høgsberged568912006-12-19 19:58:35 -0500592
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500593struct driver_data {
Kristian Høgsberged568912006-12-19 19:58:35 -0500594 struct fw_packet *packet;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500595};
596
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400597/*
598 * This function apppends a packet to the DMA queue for transmission.
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500599 * Must always be called with the ochi->lock held to ensure proper
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400600 * generation handling and locking around packet queue manipulation.
601 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500602static int
603at_context_queue_packet(struct context *ctx, struct fw_packet *packet)
604{
Kristian Høgsberged568912006-12-19 19:58:35 -0500605 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500606 dma_addr_t d_bus, payload_bus;
607 struct driver_data *driver_data;
608 struct descriptor *d, *last;
609 __le32 *header;
Kristian Høgsberged568912006-12-19 19:58:35 -0500610 int z, tcode;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500611 u32 reg;
Kristian Høgsberged568912006-12-19 19:58:35 -0500612
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500613 d = context_get_descriptors(ctx, 4, &d_bus);
614 if (d == NULL) {
615 packet->ack = RCODE_SEND_ERROR;
616 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -0500617 }
618
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400619 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500620 d[0].res_count = cpu_to_le16(packet->timestamp);
621
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400622 /*
623 * The DMA format for asyncronous link packets is different
Kristian Høgsberged568912006-12-19 19:58:35 -0500624 * from the IEEE1394 layout, so shift the fields around
625 * accordingly. If header_length is 8, it's a PHY packet, to
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400626 * which we need to prepend an extra quadlet.
627 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500628
629 header = (__le32 *) &d[1];
Kristian Høgsberged568912006-12-19 19:58:35 -0500630 if (packet->header_length > 8) {
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500631 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
632 (packet->speed << 16));
633 header[1] = cpu_to_le32((packet->header[1] & 0xffff) |
634 (packet->header[0] & 0xffff0000));
635 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsberged568912006-12-19 19:58:35 -0500636
637 tcode = (packet->header[0] >> 4) & 0x0f;
638 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500639 header[3] = cpu_to_le32(packet->header[3]);
Kristian Høgsberged568912006-12-19 19:58:35 -0500640 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500641 header[3] = (__force __le32) packet->header[3];
642
643 d[0].req_count = cpu_to_le16(packet->header_length);
Kristian Høgsberged568912006-12-19 19:58:35 -0500644 } else {
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500645 header[0] = cpu_to_le32((OHCI1394_phy_tcode << 4) |
646 (packet->speed << 16));
647 header[1] = cpu_to_le32(packet->header[0]);
648 header[2] = cpu_to_le32(packet->header[1]);
649 d[0].req_count = cpu_to_le16(12);
Kristian Høgsberged568912006-12-19 19:58:35 -0500650 }
651
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500652 driver_data = (struct driver_data *) &d[3];
653 driver_data->packet = packet;
Kristian Høgsberg20d11672007-03-26 19:18:19 -0400654 packet->driver_data = driver_data;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500655
656 if (packet->payload_length > 0) {
657 payload_bus =
658 dma_map_single(ohci->card.device, packet->payload,
659 packet->payload_length, DMA_TO_DEVICE);
660 if (dma_mapping_error(payload_bus)) {
661 packet->ack = RCODE_SEND_ERROR;
662 return -1;
663 }
664
665 d[2].req_count = cpu_to_le16(packet->payload_length);
666 d[2].data_address = cpu_to_le32(payload_bus);
667 last = &d[2];
668 z = 3;
669 } else {
670 last = &d[0];
671 z = 2;
672 }
673
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400674 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
675 DESCRIPTOR_IRQ_ALWAYS |
676 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500677
Kristian Høgsberged568912006-12-19 19:58:35 -0500678 /* FIXME: Document how the locking works. */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500679 if (ohci->generation != packet->generation) {
680 packet->ack = RCODE_GENERATION;
681 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -0500682 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500683
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500684 context_append(ctx, d, z, 4 - z);
Kristian Høgsberged568912006-12-19 19:58:35 -0500685
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500686 /* If the context isn't already running, start it up. */
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400687 reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs));
Kristian Høgsberg053b3082007-04-10 18:11:17 -0400688 if ((reg & CONTEXT_RUN) == 0)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500689 context_run(ctx, 0);
Kristian Høgsberged568912006-12-19 19:58:35 -0500690
691 return 0;
692}
693
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500694static int handle_at_packet(struct context *context,
695 struct descriptor *d,
696 struct descriptor *last)
697{
698 struct driver_data *driver_data;
699 struct fw_packet *packet;
700 struct fw_ohci *ohci = context->ohci;
701 dma_addr_t payload_bus;
702 int evt;
703
704 if (last->transfer_status == 0)
705 /* This descriptor isn't done yet, stop iteration. */
706 return 0;
707
708 driver_data = (struct driver_data *) &d[3];
709 packet = driver_data->packet;
710 if (packet == NULL)
711 /* This packet was cancelled, just continue. */
712 return 1;
713
714 payload_bus = le32_to_cpu(last->data_address);
715 if (payload_bus != 0)
716 dma_unmap_single(ohci->card.device, payload_bus,
717 packet->payload_length, DMA_TO_DEVICE);
718
719 evt = le16_to_cpu(last->transfer_status) & 0x1f;
720 packet->timestamp = le16_to_cpu(last->res_count);
721
722 switch (evt) {
723 case OHCI1394_evt_timeout:
724 /* Async response transmit timed out. */
725 packet->ack = RCODE_CANCELLED;
726 break;
727
728 case OHCI1394_evt_flushed:
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400729 /*
730 * The packet was flushed should give same error as
731 * when we try to use a stale generation count.
732 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500733 packet->ack = RCODE_GENERATION;
734 break;
735
736 case OHCI1394_evt_missing_ack:
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400737 /*
738 * Using a valid (current) generation count, but the
739 * node is not on the bus or not sending acks.
740 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500741 packet->ack = RCODE_NO_ACK;
742 break;
743
744 case ACK_COMPLETE + 0x10:
745 case ACK_PENDING + 0x10:
746 case ACK_BUSY_X + 0x10:
747 case ACK_BUSY_A + 0x10:
748 case ACK_BUSY_B + 0x10:
749 case ACK_DATA_ERROR + 0x10:
750 case ACK_TYPE_ERROR + 0x10:
751 packet->ack = evt - 0x10;
752 break;
753
754 default:
755 packet->ack = RCODE_SEND_ERROR;
756 break;
757 }
758
759 packet->callback(packet, &ohci->card, packet->ack);
760
761 return 1;
762}
763
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400764#define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
765#define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
766#define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
767#define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
768#define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500769
770static void
771handle_local_rom(struct fw_ohci *ohci, struct fw_packet *packet, u32 csr)
772{
773 struct fw_packet response;
774 int tcode, length, i;
775
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400776 tcode = HEADER_GET_TCODE(packet->header[0]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500777 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400778 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500779 else
780 length = 4;
781
782 i = csr - CSR_CONFIG_ROM;
783 if (i + length > CONFIG_ROM_SIZE) {
784 fw_fill_response(&response, packet->header,
785 RCODE_ADDRESS_ERROR, NULL, 0);
786 } else if (!TCODE_IS_READ_REQUEST(tcode)) {
787 fw_fill_response(&response, packet->header,
788 RCODE_TYPE_ERROR, NULL, 0);
789 } else {
790 fw_fill_response(&response, packet->header, RCODE_COMPLETE,
791 (void *) ohci->config_rom + i, length);
792 }
793
794 fw_core_handle_response(&ohci->card, &response);
795}
796
797static void
798handle_local_lock(struct fw_ohci *ohci, struct fw_packet *packet, u32 csr)
799{
800 struct fw_packet response;
801 int tcode, length, ext_tcode, sel;
802 __be32 *payload, lock_old;
803 u32 lock_arg, lock_data;
804
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400805 tcode = HEADER_GET_TCODE(packet->header[0]);
806 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500807 payload = packet->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400808 ext_tcode = HEADER_GET_EXTENDED_TCODE(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500809
810 if (tcode == TCODE_LOCK_REQUEST &&
811 ext_tcode == EXTCODE_COMPARE_SWAP && length == 8) {
812 lock_arg = be32_to_cpu(payload[0]);
813 lock_data = be32_to_cpu(payload[1]);
814 } else if (tcode == TCODE_READ_QUADLET_REQUEST) {
815 lock_arg = 0;
816 lock_data = 0;
817 } else {
818 fw_fill_response(&response, packet->header,
819 RCODE_TYPE_ERROR, NULL, 0);
820 goto out;
821 }
822
823 sel = (csr - CSR_BUS_MANAGER_ID) / 4;
824 reg_write(ohci, OHCI1394_CSRData, lock_data);
825 reg_write(ohci, OHCI1394_CSRCompareData, lock_arg);
826 reg_write(ohci, OHCI1394_CSRControl, sel);
827
828 if (reg_read(ohci, OHCI1394_CSRControl) & 0x80000000)
829 lock_old = cpu_to_be32(reg_read(ohci, OHCI1394_CSRData));
830 else
831 fw_notify("swap not done yet\n");
832
833 fw_fill_response(&response, packet->header,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400834 RCODE_COMPLETE, &lock_old, sizeof(lock_old));
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500835 out:
836 fw_core_handle_response(&ohci->card, &response);
837}
838
839static void
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500840handle_local_request(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500841{
842 u64 offset;
843 u32 csr;
844
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500845 if (ctx == &ctx->ohci->at_request_ctx) {
846 packet->ack = ACK_PENDING;
847 packet->callback(packet, &ctx->ohci->card, packet->ack);
848 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500849
850 offset =
851 ((unsigned long long)
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400852 HEADER_GET_OFFSET_HIGH(packet->header[1]) << 32) |
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500853 packet->header[2];
854 csr = offset - CSR_REGISTER_BASE;
855
856 /* Handle config rom reads. */
857 if (csr >= CSR_CONFIG_ROM && csr < CSR_CONFIG_ROM_END)
858 handle_local_rom(ctx->ohci, packet, csr);
859 else switch (csr) {
860 case CSR_BUS_MANAGER_ID:
861 case CSR_BANDWIDTH_AVAILABLE:
862 case CSR_CHANNELS_AVAILABLE_HI:
863 case CSR_CHANNELS_AVAILABLE_LO:
864 handle_local_lock(ctx->ohci, packet, csr);
865 break;
866 default:
867 if (ctx == &ctx->ohci->at_request_ctx)
868 fw_core_handle_request(&ctx->ohci->card, packet);
869 else
870 fw_core_handle_response(&ctx->ohci->card, packet);
871 break;
872 }
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500873
874 if (ctx == &ctx->ohci->at_response_ctx) {
875 packet->ack = ACK_COMPLETE;
876 packet->callback(packet, &ctx->ohci->card, packet->ack);
877 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500878}
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500879
Kristian Høgsberged568912006-12-19 19:58:35 -0500880static void
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500881at_context_transmit(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberged568912006-12-19 19:58:35 -0500882{
Kristian Høgsberged568912006-12-19 19:58:35 -0500883 unsigned long flags;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500884 int retval;
Kristian Høgsberged568912006-12-19 19:58:35 -0500885
886 spin_lock_irqsave(&ctx->ohci->lock, flags);
887
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400888 if (HEADER_GET_DESTINATION(packet->header[0]) == ctx->ohci->node_id &&
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500889 ctx->ohci->generation == packet->generation) {
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500890 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
891 handle_local_request(ctx, packet);
892 return;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500893 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500894
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500895 retval = at_context_queue_packet(ctx, packet);
Kristian Høgsberged568912006-12-19 19:58:35 -0500896 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
897
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500898 if (retval < 0)
899 packet->callback(packet, &ctx->ohci->card, packet->ack);
900
Kristian Høgsberged568912006-12-19 19:58:35 -0500901}
902
903static void bus_reset_tasklet(unsigned long data)
904{
905 struct fw_ohci *ohci = (struct fw_ohci *)data;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500906 int self_id_count, i, j, reg;
Kristian Høgsberged568912006-12-19 19:58:35 -0500907 int generation, new_generation;
908 unsigned long flags;
909
910 reg = reg_read(ohci, OHCI1394_NodeID);
911 if (!(reg & OHCI1394_NodeID_idValid)) {
912 fw_error("node ID not valid, new bus reset in progress\n");
913 return;
914 }
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500915 ohci->node_id = reg & 0xffff;
Kristian Høgsberged568912006-12-19 19:58:35 -0500916
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400917 /*
918 * The count in the SelfIDCount register is the number of
Kristian Høgsberged568912006-12-19 19:58:35 -0500919 * bytes in the self ID receive buffer. Since we also receive
920 * the inverted quadlets and a header quadlet, we shift one
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400921 * bit extra to get the actual number of self IDs.
922 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500923
924 self_id_count = (reg_read(ohci, OHCI1394_SelfIDCount) >> 3) & 0x3ff;
925 generation = (le32_to_cpu(ohci->self_id_cpu[0]) >> 16) & 0xff;
926
927 for (i = 1, j = 0; j < self_id_count; i += 2, j++) {
928 if (ohci->self_id_cpu[i] != ~ohci->self_id_cpu[i + 1])
929 fw_error("inconsistent self IDs\n");
930 ohci->self_id_buffer[j] = le32_to_cpu(ohci->self_id_cpu[i]);
931 }
932
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400933 /*
934 * Check the consistency of the self IDs we just read. The
Kristian Høgsberged568912006-12-19 19:58:35 -0500935 * problem we face is that a new bus reset can start while we
936 * read out the self IDs from the DMA buffer. If this happens,
937 * the DMA buffer will be overwritten with new self IDs and we
938 * will read out inconsistent data. The OHCI specification
939 * (section 11.2) recommends a technique similar to
940 * linux/seqlock.h, where we remember the generation of the
941 * self IDs in the buffer before reading them out and compare
942 * it to the current generation after reading them out. If
943 * the two generations match we know we have a consistent set
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400944 * of self IDs.
945 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500946
947 new_generation = (reg_read(ohci, OHCI1394_SelfIDCount) >> 16) & 0xff;
948 if (new_generation != generation) {
949 fw_notify("recursive bus reset detected, "
950 "discarding self ids\n");
951 return;
952 }
953
954 /* FIXME: Document how the locking works. */
955 spin_lock_irqsave(&ohci->lock, flags);
956
957 ohci->generation = generation;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500958 context_stop(&ohci->at_request_ctx);
959 context_stop(&ohci->at_response_ctx);
Kristian Høgsberged568912006-12-19 19:58:35 -0500960 reg_write(ohci, OHCI1394_IntEventClear, OHCI1394_busReset);
961
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400962 /*
963 * This next bit is unrelated to the AT context stuff but we
Kristian Høgsberged568912006-12-19 19:58:35 -0500964 * have to do it under the spinlock also. If a new config rom
965 * was set up before this reset, the old one is now no longer
966 * in use and we can free it. Update the config rom pointers
967 * to point to the current config rom and clear the
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400968 * next_config_rom pointer so a new udpate can take place.
969 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500970
971 if (ohci->next_config_rom != NULL) {
972 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
973 ohci->config_rom, ohci->config_rom_bus);
974 ohci->config_rom = ohci->next_config_rom;
975 ohci->config_rom_bus = ohci->next_config_rom_bus;
976 ohci->next_config_rom = NULL;
977
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400978 /*
979 * Restore config_rom image and manually update
Kristian Høgsberged568912006-12-19 19:58:35 -0500980 * config_rom registers. Writing the header quadlet
981 * will indicate that the config rom is ready, so we
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400982 * do that last.
983 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500984 reg_write(ohci, OHCI1394_BusOptions,
985 be32_to_cpu(ohci->config_rom[2]));
986 ohci->config_rom[0] = cpu_to_be32(ohci->next_header);
987 reg_write(ohci, OHCI1394_ConfigROMhdr, ohci->next_header);
988 }
989
990 spin_unlock_irqrestore(&ohci->lock, flags);
991
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500992 fw_core_handle_bus_reset(&ohci->card, ohci->node_id, generation,
Kristian Høgsberged568912006-12-19 19:58:35 -0500993 self_id_count, ohci->self_id_buffer);
994}
995
996static irqreturn_t irq_handler(int irq, void *data)
997{
998 struct fw_ohci *ohci = data;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500999 u32 event, iso_event, cycle_time;
Kristian Høgsberged568912006-12-19 19:58:35 -05001000 int i;
1001
1002 event = reg_read(ohci, OHCI1394_IntEventClear);
1003
Stefan Richtera5159582007-06-09 19:31:14 +02001004 if (!event || !~event)
Kristian Høgsberged568912006-12-19 19:58:35 -05001005 return IRQ_NONE;
1006
1007 reg_write(ohci, OHCI1394_IntEventClear, event);
1008
1009 if (event & OHCI1394_selfIDComplete)
1010 tasklet_schedule(&ohci->bus_reset_tasklet);
1011
1012 if (event & OHCI1394_RQPkt)
1013 tasklet_schedule(&ohci->ar_request_ctx.tasklet);
1014
1015 if (event & OHCI1394_RSPkt)
1016 tasklet_schedule(&ohci->ar_response_ctx.tasklet);
1017
1018 if (event & OHCI1394_reqTxComplete)
1019 tasklet_schedule(&ohci->at_request_ctx.tasklet);
1020
1021 if (event & OHCI1394_respTxComplete)
1022 tasklet_schedule(&ohci->at_response_ctx.tasklet);
1023
Kristian Høgsbergc8894752007-02-16 17:34:36 -05001024 iso_event = reg_read(ohci, OHCI1394_IsoRecvIntEventClear);
Kristian Høgsberged568912006-12-19 19:58:35 -05001025 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, iso_event);
1026
1027 while (iso_event) {
1028 i = ffs(iso_event) - 1;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001029 tasklet_schedule(&ohci->ir_context_list[i].context.tasklet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001030 iso_event &= ~(1 << i);
1031 }
1032
Kristian Høgsbergc8894752007-02-16 17:34:36 -05001033 iso_event = reg_read(ohci, OHCI1394_IsoXmitIntEventClear);
Kristian Høgsberged568912006-12-19 19:58:35 -05001034 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, iso_event);
1035
1036 while (iso_event) {
1037 i = ffs(iso_event) - 1;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001038 tasklet_schedule(&ohci->it_context_list[i].context.tasklet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001039 iso_event &= ~(1 << i);
1040 }
1041
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001042 if (event & OHCI1394_cycle64Seconds) {
1043 cycle_time = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1044 if ((cycle_time & 0x80000000) == 0)
1045 ohci->bus_seconds++;
1046 }
1047
Kristian Høgsberged568912006-12-19 19:58:35 -05001048 return IRQ_HANDLED;
1049}
1050
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001051static int software_reset(struct fw_ohci *ohci)
1052{
1053 int i;
1054
1055 reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset);
1056
1057 for (i = 0; i < OHCI_LOOP_COUNT; i++) {
1058 if ((reg_read(ohci, OHCI1394_HCControlSet) &
1059 OHCI1394_HCControl_softReset) == 0)
1060 return 0;
1061 msleep(1);
1062 }
1063
1064 return -EBUSY;
1065}
1066
Kristian Høgsberged568912006-12-19 19:58:35 -05001067static int ohci_enable(struct fw_card *card, u32 *config_rom, size_t length)
1068{
1069 struct fw_ohci *ohci = fw_ohci(card);
1070 struct pci_dev *dev = to_pci_dev(card->device);
1071
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001072 if (software_reset(ohci)) {
1073 fw_error("Failed to reset ohci card.\n");
1074 return -EBUSY;
1075 }
1076
1077 /*
1078 * Now enable LPS, which we need in order to start accessing
1079 * most of the registers. In fact, on some cards (ALI M5251),
1080 * accessing registers in the SClk domain without LPS enabled
1081 * will lock up the machine. Wait 50msec to make sure we have
1082 * full link enabled.
1083 */
1084 reg_write(ohci, OHCI1394_HCControlSet,
1085 OHCI1394_HCControl_LPS |
1086 OHCI1394_HCControl_postedWriteEnable);
1087 flush_writes(ohci);
1088 msleep(50);
1089
1090 reg_write(ohci, OHCI1394_HCControlClear,
1091 OHCI1394_HCControl_noByteSwapData);
1092
1093 reg_write(ohci, OHCI1394_LinkControlSet,
1094 OHCI1394_LinkControl_rcvSelfID |
1095 OHCI1394_LinkControl_cycleTimerEnable |
1096 OHCI1394_LinkControl_cycleMaster);
1097
1098 reg_write(ohci, OHCI1394_ATRetries,
1099 OHCI1394_MAX_AT_REQ_RETRIES |
1100 (OHCI1394_MAX_AT_RESP_RETRIES << 4) |
1101 (OHCI1394_MAX_PHYS_RESP_RETRIES << 8));
1102
1103 ar_context_run(&ohci->ar_request_ctx);
1104 ar_context_run(&ohci->ar_response_ctx);
1105
1106 reg_write(ohci, OHCI1394_SelfIDBuffer, ohci->self_id_bus);
1107 reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000);
1108 reg_write(ohci, OHCI1394_IntEventClear, ~0);
1109 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
1110 reg_write(ohci, OHCI1394_IntMaskSet,
1111 OHCI1394_selfIDComplete |
1112 OHCI1394_RQPkt | OHCI1394_RSPkt |
1113 OHCI1394_reqTxComplete | OHCI1394_respTxComplete |
1114 OHCI1394_isochRx | OHCI1394_isochTx |
1115 OHCI1394_masterIntEnable |
1116 OHCI1394_cycle64Seconds);
1117
1118 /* Activate link_on bit and contender bit in our self ID packets.*/
1119 if (ohci_update_phy_reg(card, 4, 0,
1120 PHY_LINK_ACTIVE | PHY_CONTENDER) < 0)
1121 return -EIO;
1122
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001123 /*
1124 * When the link is not yet enabled, the atomic config rom
Kristian Høgsberged568912006-12-19 19:58:35 -05001125 * update mechanism described below in ohci_set_config_rom()
1126 * is not active. We have to update ConfigRomHeader and
1127 * BusOptions manually, and the write to ConfigROMmap takes
1128 * effect immediately. We tie this to the enabling of the
1129 * link, so we have a valid config rom before enabling - the
1130 * OHCI requires that ConfigROMhdr and BusOptions have valid
1131 * values before enabling.
1132 *
1133 * However, when the ConfigROMmap is written, some controllers
1134 * always read back quadlets 0 and 2 from the config rom to
1135 * the ConfigRomHeader and BusOptions registers on bus reset.
1136 * They shouldn't do that in this initial case where the link
1137 * isn't enabled. This means we have to use the same
1138 * workaround here, setting the bus header to 0 and then write
1139 * the right values in the bus reset tasklet.
1140 */
1141
1142 ohci->next_config_rom =
1143 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1144 &ohci->next_config_rom_bus, GFP_KERNEL);
1145 if (ohci->next_config_rom == NULL)
1146 return -ENOMEM;
1147
1148 memset(ohci->next_config_rom, 0, CONFIG_ROM_SIZE);
1149 fw_memcpy_to_be32(ohci->next_config_rom, config_rom, length * 4);
1150
1151 ohci->next_header = config_rom[0];
1152 ohci->next_config_rom[0] = 0;
1153 reg_write(ohci, OHCI1394_ConfigROMhdr, 0);
1154 reg_write(ohci, OHCI1394_BusOptions, config_rom[2]);
1155 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
1156
1157 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
1158
1159 if (request_irq(dev->irq, irq_handler,
Thomas Gleixner65efffa2007-03-05 18:19:51 -08001160 IRQF_SHARED, ohci_driver_name, ohci)) {
Kristian Høgsberged568912006-12-19 19:58:35 -05001161 fw_error("Failed to allocate shared interrupt %d.\n",
1162 dev->irq);
1163 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1164 ohci->config_rom, ohci->config_rom_bus);
1165 return -EIO;
1166 }
1167
1168 reg_write(ohci, OHCI1394_HCControlSet,
1169 OHCI1394_HCControl_linkEnable |
1170 OHCI1394_HCControl_BIBimageValid);
1171 flush_writes(ohci);
1172
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001173 /*
1174 * We are ready to go, initiate bus reset to finish the
1175 * initialization.
1176 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001177
1178 fw_core_initiate_bus_reset(&ohci->card, 1);
1179
1180 return 0;
1181}
1182
1183static int
1184ohci_set_config_rom(struct fw_card *card, u32 *config_rom, size_t length)
1185{
1186 struct fw_ohci *ohci;
1187 unsigned long flags;
1188 int retval = 0;
1189 __be32 *next_config_rom;
1190 dma_addr_t next_config_rom_bus;
1191
1192 ohci = fw_ohci(card);
1193
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001194 /*
1195 * When the OHCI controller is enabled, the config rom update
Kristian Høgsberged568912006-12-19 19:58:35 -05001196 * mechanism is a bit tricky, but easy enough to use. See
1197 * section 5.5.6 in the OHCI specification.
1198 *
1199 * The OHCI controller caches the new config rom address in a
1200 * shadow register (ConfigROMmapNext) and needs a bus reset
1201 * for the changes to take place. When the bus reset is
1202 * detected, the controller loads the new values for the
1203 * ConfigRomHeader and BusOptions registers from the specified
1204 * config rom and loads ConfigROMmap from the ConfigROMmapNext
1205 * shadow register. All automatically and atomically.
1206 *
1207 * Now, there's a twist to this story. The automatic load of
1208 * ConfigRomHeader and BusOptions doesn't honor the
1209 * noByteSwapData bit, so with a be32 config rom, the
1210 * controller will load be32 values in to these registers
1211 * during the atomic update, even on litte endian
1212 * architectures. The workaround we use is to put a 0 in the
1213 * header quadlet; 0 is endian agnostic and means that the
1214 * config rom isn't ready yet. In the bus reset tasklet we
1215 * then set up the real values for the two registers.
1216 *
1217 * We use ohci->lock to avoid racing with the code that sets
1218 * ohci->next_config_rom to NULL (see bus_reset_tasklet).
1219 */
1220
1221 next_config_rom =
1222 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1223 &next_config_rom_bus, GFP_KERNEL);
1224 if (next_config_rom == NULL)
1225 return -ENOMEM;
1226
1227 spin_lock_irqsave(&ohci->lock, flags);
1228
1229 if (ohci->next_config_rom == NULL) {
1230 ohci->next_config_rom = next_config_rom;
1231 ohci->next_config_rom_bus = next_config_rom_bus;
1232
1233 memset(ohci->next_config_rom, 0, CONFIG_ROM_SIZE);
1234 fw_memcpy_to_be32(ohci->next_config_rom, config_rom,
1235 length * 4);
1236
1237 ohci->next_header = config_rom[0];
1238 ohci->next_config_rom[0] = 0;
1239
1240 reg_write(ohci, OHCI1394_ConfigROMmap,
1241 ohci->next_config_rom_bus);
1242 } else {
1243 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1244 next_config_rom, next_config_rom_bus);
1245 retval = -EBUSY;
1246 }
1247
1248 spin_unlock_irqrestore(&ohci->lock, flags);
1249
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001250 /*
1251 * Now initiate a bus reset to have the changes take
Kristian Høgsberged568912006-12-19 19:58:35 -05001252 * effect. We clean up the old config rom memory and DMA
1253 * mappings in the bus reset tasklet, since the OHCI
1254 * controller could need to access it before the bus reset
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001255 * takes effect.
1256 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001257 if (retval == 0)
1258 fw_core_initiate_bus_reset(&ohci->card, 1);
1259
1260 return retval;
1261}
1262
1263static void ohci_send_request(struct fw_card *card, struct fw_packet *packet)
1264{
1265 struct fw_ohci *ohci = fw_ohci(card);
1266
1267 at_context_transmit(&ohci->at_request_ctx, packet);
1268}
1269
1270static void ohci_send_response(struct fw_card *card, struct fw_packet *packet)
1271{
1272 struct fw_ohci *ohci = fw_ohci(card);
1273
1274 at_context_transmit(&ohci->at_response_ctx, packet);
1275}
1276
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001277static int ohci_cancel_packet(struct fw_card *card, struct fw_packet *packet)
1278{
1279 struct fw_ohci *ohci = fw_ohci(card);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001280 struct context *ctx = &ohci->at_request_ctx;
1281 struct driver_data *driver_data = packet->driver_data;
1282 int retval = -ENOENT;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001283
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001284 tasklet_disable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001285
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001286 if (packet->ack != 0)
1287 goto out;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001288
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001289 driver_data->packet = NULL;
1290 packet->ack = RCODE_CANCELLED;
1291 packet->callback(packet, &ohci->card, packet->ack);
1292 retval = 0;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001293
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001294 out:
1295 tasklet_enable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001296
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001297 return retval;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001298}
1299
Kristian Høgsberged568912006-12-19 19:58:35 -05001300static int
1301ohci_enable_phys_dma(struct fw_card *card, int node_id, int generation)
1302{
1303 struct fw_ohci *ohci = fw_ohci(card);
1304 unsigned long flags;
Stefan Richter907293d2007-01-23 21:11:43 +01001305 int n, retval = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001306
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001307 /*
1308 * FIXME: Make sure this bitmask is cleared when we clear the busReset
1309 * interrupt bit. Clear physReqResourceAllBuses on bus reset.
1310 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001311
1312 spin_lock_irqsave(&ohci->lock, flags);
1313
1314 if (ohci->generation != generation) {
1315 retval = -ESTALE;
1316 goto out;
1317 }
1318
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001319 /*
1320 * Note, if the node ID contains a non-local bus ID, physical DMA is
1321 * enabled for _all_ nodes on remote buses.
1322 */
Stefan Richter907293d2007-01-23 21:11:43 +01001323
1324 n = (node_id & 0xffc0) == LOCAL_BUS ? node_id & 0x3f : 63;
1325 if (n < 32)
1326 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 1 << n);
1327 else
1328 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 1 << (n - 32));
1329
Kristian Høgsberged568912006-12-19 19:58:35 -05001330 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05001331 out:
Stefan Richter6cad95f2007-01-21 20:46:45 +01001332 spin_unlock_irqrestore(&ohci->lock, flags);
Kristian Høgsberged568912006-12-19 19:58:35 -05001333 return retval;
1334}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001335
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001336static u64
1337ohci_get_bus_time(struct fw_card *card)
1338{
1339 struct fw_ohci *ohci = fw_ohci(card);
1340 u32 cycle_time;
1341 u64 bus_time;
1342
1343 cycle_time = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1344 bus_time = ((u64) ohci->bus_seconds << 32) | cycle_time;
1345
1346 return bus_time;
1347}
1348
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001349static int handle_ir_dualbuffer_packet(struct context *context,
1350 struct descriptor *d,
1351 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05001352{
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001353 struct iso_context *ctx =
1354 container_of(context, struct iso_context, context);
1355 struct db_descriptor *db = (struct db_descriptor *) d;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001356 __le32 *ir_header;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001357 size_t header_length;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001358 void *p, *end;
1359 int i;
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001360
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001361 if (db->first_res_count > 0 && db->second_res_count > 0)
1362 /* This descriptor isn't done yet, stop iteration. */
1363 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001364
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001365 header_length = le16_to_cpu(db->first_req_count) -
1366 le16_to_cpu(db->first_res_count);
1367
1368 i = ctx->header_length;
1369 p = db + 1;
1370 end = p + header_length;
1371 while (p < end && i + ctx->base.header_size <= PAGE_SIZE) {
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001372 /*
1373 * The iso header is byteswapped to little endian by
Kristian Høgsberg15536222007-04-10 18:11:16 -04001374 * the controller, but the remaining header quadlets
1375 * are big endian. We want to present all the headers
1376 * as big endian, so we have to swap the first
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001377 * quadlet.
1378 */
Kristian Høgsberg15536222007-04-10 18:11:16 -04001379 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
1380 memcpy(ctx->header + i + 4, p + 8, ctx->base.header_size - 4);
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001381 i += ctx->base.header_size;
1382 p += ctx->base.header_size + 4;
1383 }
1384
1385 ctx->header_length = i;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001386
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001387 if (le16_to_cpu(db->control) & DESCRIPTOR_IRQ_ALWAYS) {
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001388 ir_header = (__le32 *) (db + 1);
1389 ctx->base.callback(&ctx->base,
1390 le32_to_cpu(ir_header[0]) & 0xffff,
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001391 ctx->header_length, ctx->header,
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001392 ctx->base.callback_data);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001393 ctx->header_length = 0;
1394 }
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001395
1396 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001397}
1398
Kristian Høgsberg30200732007-02-16 17:34:39 -05001399static int handle_it_packet(struct context *context,
1400 struct descriptor *d,
1401 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05001402{
Kristian Høgsberg30200732007-02-16 17:34:39 -05001403 struct iso_context *ctx =
1404 container_of(context, struct iso_context, context);
Stefan Richter373b2ed2007-03-04 14:45:18 +01001405
Kristian Høgsberg30200732007-02-16 17:34:39 -05001406 if (last->transfer_status == 0)
1407 /* This descriptor isn't done yet, stop iteration. */
1408 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001409
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001410 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS)
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001411 ctx->base.callback(&ctx->base, le16_to_cpu(last->res_count),
1412 0, NULL, ctx->base.callback_data);
Kristian Høgsberged568912006-12-19 19:58:35 -05001413
Kristian Høgsberg30200732007-02-16 17:34:39 -05001414 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001415}
1416
Kristian Høgsberg30200732007-02-16 17:34:39 -05001417static struct fw_iso_context *
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04001418ohci_allocate_iso_context(struct fw_card *card, int type, size_t header_size)
Kristian Høgsberged568912006-12-19 19:58:35 -05001419{
1420 struct fw_ohci *ohci = fw_ohci(card);
1421 struct iso_context *ctx, *list;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001422 descriptor_callback_t callback;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001423 u32 *mask, regs;
Kristian Høgsberged568912006-12-19 19:58:35 -05001424 unsigned long flags;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001425 int index, retval = -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05001426
1427 if (type == FW_ISO_CONTEXT_TRANSMIT) {
1428 mask = &ohci->it_context_mask;
1429 list = ohci->it_context_list;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001430 callback = handle_it_packet;
Kristian Høgsberged568912006-12-19 19:58:35 -05001431 } else {
Stefan Richter373b2ed2007-03-04 14:45:18 +01001432 mask = &ohci->ir_context_mask;
1433 list = ohci->ir_context_list;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001434 callback = handle_ir_dualbuffer_packet;
Kristian Høgsberged568912006-12-19 19:58:35 -05001435 }
1436
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001437 /* FIXME: We need a fallback for pre 1.1 OHCI. */
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001438 if (callback == handle_ir_dualbuffer_packet &&
1439 ohci->version < OHCI_VERSION_1_1)
1440 return ERR_PTR(-EINVAL);
1441
Kristian Høgsberged568912006-12-19 19:58:35 -05001442 spin_lock_irqsave(&ohci->lock, flags);
1443 index = ffs(*mask) - 1;
1444 if (index >= 0)
1445 *mask &= ~(1 << index);
1446 spin_unlock_irqrestore(&ohci->lock, flags);
1447
1448 if (index < 0)
1449 return ERR_PTR(-EBUSY);
1450
Stefan Richter373b2ed2007-03-04 14:45:18 +01001451 if (type == FW_ISO_CONTEXT_TRANSMIT)
1452 regs = OHCI1394_IsoXmitContextBase(index);
1453 else
1454 regs = OHCI1394_IsoRcvContextBase(index);
1455
Kristian Høgsberged568912006-12-19 19:58:35 -05001456 ctx = &list[index];
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001457 memset(ctx, 0, sizeof(*ctx));
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001458 ctx->header_length = 0;
1459 ctx->header = (void *) __get_free_page(GFP_KERNEL);
1460 if (ctx->header == NULL)
1461 goto out;
1462
Kristian Høgsberg30200732007-02-16 17:34:39 -05001463 retval = context_init(&ctx->context, ohci, ISO_BUFFER_SIZE,
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001464 regs, callback);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001465 if (retval < 0)
1466 goto out_with_header;
Kristian Høgsberged568912006-12-19 19:58:35 -05001467
1468 return &ctx->base;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001469
1470 out_with_header:
1471 free_page((unsigned long)ctx->header);
1472 out:
1473 spin_lock_irqsave(&ohci->lock, flags);
1474 *mask |= 1 << index;
1475 spin_unlock_irqrestore(&ohci->lock, flags);
1476
1477 return ERR_PTR(retval);
Kristian Høgsberged568912006-12-19 19:58:35 -05001478}
1479
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04001480static int ohci_start_iso(struct fw_iso_context *base,
1481 s32 cycle, u32 sync, u32 tags)
Kristian Høgsberged568912006-12-19 19:58:35 -05001482{
Stefan Richter373b2ed2007-03-04 14:45:18 +01001483 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001484 struct fw_ohci *ohci = ctx->context.ohci;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001485 u32 control, match;
Kristian Høgsberged568912006-12-19 19:58:35 -05001486 int index;
1487
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001488 if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
1489 index = ctx - ohci->it_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001490 match = 0;
1491 if (cycle >= 0)
1492 match = IT_CONTEXT_CYCLE_MATCH_ENABLE |
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001493 (cycle & 0x7fff) << 16;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05001494
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001495 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 1 << index);
1496 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, 1 << index);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001497 context_run(&ctx->context, match);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001498 } else {
1499 index = ctx - ohci->ir_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001500 control = IR_CONTEXT_DUAL_BUFFER_MODE | IR_CONTEXT_ISOCH_HEADER;
1501 match = (tags << 28) | (sync << 8) | ctx->base.channel;
1502 if (cycle >= 0) {
1503 match |= (cycle & 0x07fff) << 12;
1504 control |= IR_CONTEXT_CYCLE_MATCH_ENABLE;
1505 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001506
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001507 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 1 << index);
1508 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, 1 << index);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001509 reg_write(ohci, CONTEXT_MATCH(ctx->context.regs), match);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001510 context_run(&ctx->context, control);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001511 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001512
1513 return 0;
1514}
1515
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001516static int ohci_stop_iso(struct fw_iso_context *base)
1517{
1518 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01001519 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001520 int index;
1521
1522 if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
1523 index = ctx - ohci->it_context_list;
1524 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 1 << index);
1525 } else {
1526 index = ctx - ohci->ir_context_list;
1527 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 1 << index);
1528 }
1529 flush_writes(ohci);
1530 context_stop(&ctx->context);
1531
1532 return 0;
1533}
1534
Kristian Høgsberged568912006-12-19 19:58:35 -05001535static void ohci_free_iso_context(struct fw_iso_context *base)
1536{
1537 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01001538 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberged568912006-12-19 19:58:35 -05001539 unsigned long flags;
1540 int index;
1541
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001542 ohci_stop_iso(base);
1543 context_release(&ctx->context);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001544 free_page((unsigned long)ctx->header);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001545
Kristian Høgsberged568912006-12-19 19:58:35 -05001546 spin_lock_irqsave(&ohci->lock, flags);
1547
1548 if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
1549 index = ctx - ohci->it_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05001550 ohci->it_context_mask |= 1 << index;
1551 } else {
1552 index = ctx - ohci->ir_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05001553 ohci->ir_context_mask |= 1 << index;
1554 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001555
1556 spin_unlock_irqrestore(&ohci->lock, flags);
1557}
1558
1559static int
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001560ohci_queue_iso_transmit(struct fw_iso_context *base,
1561 struct fw_iso_packet *packet,
1562 struct fw_iso_buffer *buffer,
1563 unsigned long payload)
Kristian Høgsberged568912006-12-19 19:58:35 -05001564{
Stefan Richter373b2ed2007-03-04 14:45:18 +01001565 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001566 struct descriptor *d, *last, *pd;
Kristian Høgsberged568912006-12-19 19:58:35 -05001567 struct fw_iso_packet *p;
1568 __le32 *header;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001569 dma_addr_t d_bus, page_bus;
Kristian Høgsberged568912006-12-19 19:58:35 -05001570 u32 z, header_z, payload_z, irq;
1571 u32 payload_index, payload_end_index, next_page_index;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001572 int page, end_page, i, length, offset;
Kristian Høgsberged568912006-12-19 19:58:35 -05001573
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001574 /*
1575 * FIXME: Cycle lost behavior should be configurable: lose
1576 * packet, retransmit or terminate..
1577 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001578
1579 p = packet;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001580 payload_index = payload;
Kristian Høgsberged568912006-12-19 19:58:35 -05001581
1582 if (p->skip)
1583 z = 1;
1584 else
1585 z = 2;
1586 if (p->header_length > 0)
1587 z++;
1588
1589 /* Determine the first page the payload isn't contained in. */
1590 end_page = PAGE_ALIGN(payload_index + p->payload_length) >> PAGE_SHIFT;
1591 if (p->payload_length > 0)
1592 payload_z = end_page - (payload_index >> PAGE_SHIFT);
1593 else
1594 payload_z = 0;
1595
1596 z += payload_z;
1597
1598 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001599 header_z = DIV_ROUND_UP(p->header_length, sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05001600
Kristian Høgsberg30200732007-02-16 17:34:39 -05001601 d = context_get_descriptors(&ctx->context, z + header_z, &d_bus);
1602 if (d == NULL)
1603 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05001604
1605 if (!p->skip) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001606 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsberged568912006-12-19 19:58:35 -05001607 d[0].req_count = cpu_to_le16(8);
1608
1609 header = (__le32 *) &d[1];
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001610 header[0] = cpu_to_le32(IT_HEADER_SY(p->sy) |
1611 IT_HEADER_TAG(p->tag) |
1612 IT_HEADER_TCODE(TCODE_STREAM_DATA) |
1613 IT_HEADER_CHANNEL(ctx->base.channel) |
1614 IT_HEADER_SPEED(ctx->base.speed));
Kristian Høgsberged568912006-12-19 19:58:35 -05001615 header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001616 cpu_to_le32(IT_HEADER_DATA_LENGTH(p->header_length +
Kristian Høgsberged568912006-12-19 19:58:35 -05001617 p->payload_length));
1618 }
1619
1620 if (p->header_length > 0) {
1621 d[2].req_count = cpu_to_le16(p->header_length);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001622 d[2].data_address = cpu_to_le32(d_bus + z * sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05001623 memcpy(&d[z], p->header, p->header_length);
1624 }
1625
1626 pd = d + z - payload_z;
1627 payload_end_index = payload_index + p->payload_length;
1628 for (i = 0; i < payload_z; i++) {
1629 page = payload_index >> PAGE_SHIFT;
1630 offset = payload_index & ~PAGE_MASK;
1631 next_page_index = (page + 1) << PAGE_SHIFT;
1632 length =
1633 min(next_page_index, payload_end_index) - payload_index;
1634 pd[i].req_count = cpu_to_le16(length);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001635
1636 page_bus = page_private(buffer->pages[page]);
1637 pd[i].data_address = cpu_to_le32(page_bus + offset);
Kristian Høgsberged568912006-12-19 19:58:35 -05001638
1639 payload_index += length;
1640 }
1641
Kristian Høgsberged568912006-12-19 19:58:35 -05001642 if (p->interrupt)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001643 irq = DESCRIPTOR_IRQ_ALWAYS;
Kristian Høgsberged568912006-12-19 19:58:35 -05001644 else
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001645 irq = DESCRIPTOR_NO_IRQ;
Kristian Høgsberged568912006-12-19 19:58:35 -05001646
Kristian Høgsberg30200732007-02-16 17:34:39 -05001647 last = z == 2 ? d : d + z - 1;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001648 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
1649 DESCRIPTOR_STATUS |
1650 DESCRIPTOR_BRANCH_ALWAYS |
Kristian Høgsbergcbb59da2007-02-16 17:34:35 -05001651 irq);
Kristian Høgsberged568912006-12-19 19:58:35 -05001652
Kristian Høgsberg30200732007-02-16 17:34:39 -05001653 context_append(&ctx->context, d, z, header_z);
Kristian Høgsberged568912006-12-19 19:58:35 -05001654
1655 return 0;
1656}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001657
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -05001658static int
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001659ohci_queue_iso_receive_dualbuffer(struct fw_iso_context *base,
1660 struct fw_iso_packet *packet,
1661 struct fw_iso_buffer *buffer,
1662 unsigned long payload)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001663{
1664 struct iso_context *ctx = container_of(base, struct iso_context, base);
1665 struct db_descriptor *db = NULL;
1666 struct descriptor *d;
1667 struct fw_iso_packet *p;
1668 dma_addr_t d_bus, page_bus;
1669 u32 z, header_z, length, rest;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001670 int page, offset, packet_count, header_size;
Stefan Richter373b2ed2007-03-04 14:45:18 +01001671
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001672 /*
1673 * FIXME: Cycle lost behavior should be configurable: lose
1674 * packet, retransmit or terminate..
1675 */
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001676
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001677 if (packet->skip) {
1678 d = context_get_descriptors(&ctx->context, 2, &d_bus);
1679 if (d == NULL)
1680 return -ENOMEM;
1681
1682 db = (struct db_descriptor *) d;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001683 db->control = cpu_to_le16(DESCRIPTOR_STATUS |
1684 DESCRIPTOR_BRANCH_ALWAYS |
1685 DESCRIPTOR_WAIT);
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001686 db->first_size = cpu_to_le16(ctx->base.header_size + 4);
1687 context_append(&ctx->context, d, 2, 0);
1688 }
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -05001689
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001690 p = packet;
1691 z = 2;
1692
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001693 /*
1694 * The OHCI controller puts the status word in the header
1695 * buffer too, so we need 4 extra bytes per packet.
1696 */
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001697 packet_count = p->header_length / ctx->base.header_size;
1698 header_size = packet_count * (ctx->base.header_size + 4);
1699
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001700 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001701 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001702 page = payload >> PAGE_SHIFT;
1703 offset = payload & ~PAGE_MASK;
1704 rest = p->payload_length;
1705
1706 /* FIXME: OHCI 1.0 doesn't support dual buffer receive */
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001707 /* FIXME: make packet-per-buffer/dual-buffer a context option */
1708 while (rest > 0) {
1709 d = context_get_descriptors(&ctx->context,
1710 z + header_z, &d_bus);
1711 if (d == NULL)
1712 return -ENOMEM;
1713
1714 db = (struct db_descriptor *) d;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001715 db->control = cpu_to_le16(DESCRIPTOR_STATUS |
1716 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001717 db->first_size = cpu_to_le16(ctx->base.header_size + 4);
1718 db->first_req_count = cpu_to_le16(header_size);
Kristian Høgsberg1e1d1962007-02-16 17:34:45 -05001719 db->first_res_count = db->first_req_count;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001720 db->first_buffer = cpu_to_le32(d_bus + sizeof(*db));
Stefan Richter373b2ed2007-03-04 14:45:18 +01001721
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001722 if (offset + rest < PAGE_SIZE)
1723 length = rest;
1724 else
1725 length = PAGE_SIZE - offset;
1726
Kristian Høgsberg1e1d1962007-02-16 17:34:45 -05001727 db->second_req_count = cpu_to_le16(length);
1728 db->second_res_count = db->second_req_count;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001729 page_bus = page_private(buffer->pages[page]);
1730 db->second_buffer = cpu_to_le32(page_bus + offset);
1731
Kristian Høgsbergcb2d2cd2007-02-16 17:34:47 -05001732 if (p->interrupt && length == rest)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001733 db->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
Kristian Høgsbergcb2d2cd2007-02-16 17:34:47 -05001734
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001735 context_append(&ctx->context, d, z, header_z);
1736 offset = (offset + length) & ~PAGE_MASK;
1737 rest -= length;
1738 page++;
1739 }
1740
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001741 return 0;
1742}
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05001743
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001744static int
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001745ohci_queue_iso(struct fw_iso_context *base,
1746 struct fw_iso_packet *packet,
1747 struct fw_iso_buffer *buffer,
1748 unsigned long payload)
1749{
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001750 struct iso_context *ctx = container_of(base, struct iso_context, base);
1751
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001752 if (base->type == FW_ISO_CONTEXT_TRANSMIT)
1753 return ohci_queue_iso_transmit(base, packet, buffer, payload);
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001754 else if (ctx->context.ohci->version >= OHCI_VERSION_1_1)
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001755 return ohci_queue_iso_receive_dualbuffer(base, packet,
1756 buffer, payload);
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001757 else
1758 /* FIXME: Implement fallback for OHCI 1.0 controllers. */
1759 return -EINVAL;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001760}
1761
Stefan Richter21ebcd12007-01-14 15:29:07 +01001762static const struct fw_card_driver ohci_driver = {
Kristian Høgsberged568912006-12-19 19:58:35 -05001763 .name = ohci_driver_name,
1764 .enable = ohci_enable,
1765 .update_phy_reg = ohci_update_phy_reg,
1766 .set_config_rom = ohci_set_config_rom,
1767 .send_request = ohci_send_request,
1768 .send_response = ohci_send_response,
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001769 .cancel_packet = ohci_cancel_packet,
Kristian Høgsberged568912006-12-19 19:58:35 -05001770 .enable_phys_dma = ohci_enable_phys_dma,
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001771 .get_bus_time = ohci_get_bus_time,
Kristian Høgsberged568912006-12-19 19:58:35 -05001772
1773 .allocate_iso_context = ohci_allocate_iso_context,
1774 .free_iso_context = ohci_free_iso_context,
1775 .queue_iso = ohci_queue_iso,
Kristian Høgsberg69cdb722007-02-16 17:34:41 -05001776 .start_iso = ohci_start_iso,
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001777 .stop_iso = ohci_stop_iso,
Kristian Høgsberged568912006-12-19 19:58:35 -05001778};
1779
Kristian Høgsberged568912006-12-19 19:58:35 -05001780static int __devinit
1781pci_probe(struct pci_dev *dev, const struct pci_device_id *ent)
1782{
1783 struct fw_ohci *ohci;
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001784 u32 bus_options, max_receive, link_speed;
Kristian Høgsberged568912006-12-19 19:58:35 -05001785 u64 guid;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001786 int err;
Kristian Høgsberged568912006-12-19 19:58:35 -05001787 size_t size;
1788
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001789 ohci = kzalloc(sizeof(*ohci), GFP_KERNEL);
Kristian Høgsberged568912006-12-19 19:58:35 -05001790 if (ohci == NULL) {
1791 fw_error("Could not malloc fw_ohci data.\n");
1792 return -ENOMEM;
1793 }
1794
1795 fw_card_initialize(&ohci->card, &ohci_driver, &dev->dev);
1796
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001797 err = pci_enable_device(dev);
1798 if (err) {
Kristian Høgsberged568912006-12-19 19:58:35 -05001799 fw_error("Failed to enable OHCI hardware.\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001800 goto fail_put_card;
Kristian Høgsberged568912006-12-19 19:58:35 -05001801 }
1802
1803 pci_set_master(dev);
1804 pci_write_config_dword(dev, OHCI1394_PCI_HCI_Control, 0);
1805 pci_set_drvdata(dev, ohci);
1806
1807 spin_lock_init(&ohci->lock);
1808
1809 tasklet_init(&ohci->bus_reset_tasklet,
1810 bus_reset_tasklet, (unsigned long)ohci);
1811
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001812 err = pci_request_region(dev, 0, ohci_driver_name);
1813 if (err) {
Kristian Høgsberged568912006-12-19 19:58:35 -05001814 fw_error("MMIO resource unavailable\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001815 goto fail_disable;
Kristian Høgsberged568912006-12-19 19:58:35 -05001816 }
1817
1818 ohci->registers = pci_iomap(dev, 0, OHCI1394_REGISTER_SIZE);
1819 if (ohci->registers == NULL) {
1820 fw_error("Failed to remap registers\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001821 err = -ENXIO;
1822 goto fail_iomem;
Kristian Høgsberged568912006-12-19 19:58:35 -05001823 }
1824
Kristian Høgsberged568912006-12-19 19:58:35 -05001825 ar_context_init(&ohci->ar_request_ctx, ohci,
1826 OHCI1394_AsReqRcvContextControlSet);
1827
1828 ar_context_init(&ohci->ar_response_ctx, ohci,
1829 OHCI1394_AsRspRcvContextControlSet);
1830
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001831 context_init(&ohci->at_request_ctx, ohci, AT_BUFFER_SIZE,
1832 OHCI1394_AsReqTrContextControlSet, handle_at_packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001833
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001834 context_init(&ohci->at_response_ctx, ohci, AT_BUFFER_SIZE,
1835 OHCI1394_AsRspTrContextControlSet, handle_at_packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001836
Kristian Høgsberged568912006-12-19 19:58:35 -05001837 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, ~0);
1838 ohci->it_context_mask = reg_read(ohci, OHCI1394_IsoRecvIntMaskSet);
1839 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, ~0);
1840 size = sizeof(struct iso_context) * hweight32(ohci->it_context_mask);
1841 ohci->it_context_list = kzalloc(size, GFP_KERNEL);
1842
1843 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, ~0);
1844 ohci->ir_context_mask = reg_read(ohci, OHCI1394_IsoXmitIntMaskSet);
1845 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, ~0);
1846 size = sizeof(struct iso_context) * hweight32(ohci->ir_context_mask);
1847 ohci->ir_context_list = kzalloc(size, GFP_KERNEL);
1848
1849 if (ohci->it_context_list == NULL || ohci->ir_context_list == NULL) {
1850 fw_error("Out of memory for it/ir contexts.\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001851 err = -ENOMEM;
1852 goto fail_registers;
Kristian Høgsberged568912006-12-19 19:58:35 -05001853 }
1854
1855 /* self-id dma buffer allocation */
1856 ohci->self_id_cpu = dma_alloc_coherent(ohci->card.device,
1857 SELF_ID_BUF_SIZE,
1858 &ohci->self_id_bus,
1859 GFP_KERNEL);
1860 if (ohci->self_id_cpu == NULL) {
1861 fw_error("Out of memory for self ID buffer.\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001862 err = -ENOMEM;
1863 goto fail_registers;
Kristian Høgsberged568912006-12-19 19:58:35 -05001864 }
1865
Kristian Høgsberged568912006-12-19 19:58:35 -05001866 bus_options = reg_read(ohci, OHCI1394_BusOptions);
1867 max_receive = (bus_options >> 12) & 0xf;
1868 link_speed = bus_options & 0x7;
1869 guid = ((u64) reg_read(ohci, OHCI1394_GUIDHi) << 32) |
1870 reg_read(ohci, OHCI1394_GUIDLo);
1871
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001872 err = fw_card_add(&ohci->card, max_receive, link_speed, guid);
1873 if (err < 0)
1874 goto fail_self_id;
Kristian Høgsberged568912006-12-19 19:58:35 -05001875
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001876 ohci->version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
Kristian Høgsberg500be722007-02-16 17:34:43 -05001877 fw_notify("Added fw-ohci device %s, OHCI version %x.%x\n",
Kristian Høgsberge364cf42007-02-16 17:34:49 -05001878 dev->dev.bus_id, ohci->version >> 16, ohci->version & 0xff);
Kristian Høgsberged568912006-12-19 19:58:35 -05001879
1880 return 0;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001881
1882 fail_self_id:
1883 dma_free_coherent(ohci->card.device, SELF_ID_BUF_SIZE,
1884 ohci->self_id_cpu, ohci->self_id_bus);
1885 fail_registers:
1886 kfree(ohci->it_context_list);
1887 kfree(ohci->ir_context_list);
1888 pci_iounmap(dev, ohci->registers);
1889 fail_iomem:
1890 pci_release_region(dev, 0);
1891 fail_disable:
1892 pci_disable_device(dev);
1893 fail_put_card:
1894 fw_card_put(&ohci->card);
1895
1896 return err;
Kristian Høgsberged568912006-12-19 19:58:35 -05001897}
1898
1899static void pci_remove(struct pci_dev *dev)
1900{
1901 struct fw_ohci *ohci;
1902
1903 ohci = pci_get_drvdata(dev);
Kristian Høgsberge254a4b2007-03-07 12:12:38 -05001904 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
1905 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05001906 fw_core_remove_card(&ohci->card);
1907
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001908 /*
1909 * FIXME: Fail all pending packets here, now that the upper
1910 * layers can't queue any more.
1911 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001912
1913 software_reset(ohci);
1914 free_irq(dev->irq, ohci);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04001915 dma_free_coherent(ohci->card.device, SELF_ID_BUF_SIZE,
1916 ohci->self_id_cpu, ohci->self_id_bus);
1917 kfree(ohci->it_context_list);
1918 kfree(ohci->ir_context_list);
1919 pci_iounmap(dev, ohci->registers);
1920 pci_release_region(dev, 0);
1921 pci_disable_device(dev);
1922 fw_card_put(&ohci->card);
Kristian Høgsberged568912006-12-19 19:58:35 -05001923
1924 fw_notify("Removed fw-ohci device.\n");
1925}
1926
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001927#ifdef CONFIG_PM
1928static int pci_suspend(struct pci_dev *pdev, pm_message_t state)
1929{
1930 struct fw_ohci *ohci = pci_get_drvdata(pdev);
1931 int err;
1932
1933 software_reset(ohci);
1934 free_irq(pdev->irq, ohci);
1935 err = pci_save_state(pdev);
1936 if (err) {
1937 fw_error("pci_save_state failed with %d", err);
1938 return err;
1939 }
1940 err = pci_set_power_state(pdev, pci_choose_state(pdev, state));
1941 if (err) {
1942 fw_error("pci_set_power_state failed with %d", err);
1943 return err;
1944 }
1945
1946 return 0;
1947}
1948
1949static int pci_resume(struct pci_dev *pdev)
1950{
1951 struct fw_ohci *ohci = pci_get_drvdata(pdev);
1952 int err;
1953
1954 pci_set_power_state(pdev, PCI_D0);
1955 pci_restore_state(pdev);
1956 err = pci_enable_device(pdev);
1957 if (err) {
1958 fw_error("pci_enable_device failed with %d", err);
1959 return err;
1960 }
1961
1962 return ohci_enable(&ohci->card, ohci->config_rom, CONFIG_ROM_SIZE);
1963}
1964#endif
1965
Kristian Høgsberged568912006-12-19 19:58:35 -05001966static struct pci_device_id pci_table[] = {
1967 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_FIREWIRE_OHCI, ~0) },
1968 { }
1969};
1970
1971MODULE_DEVICE_TABLE(pci, pci_table);
1972
1973static struct pci_driver fw_ohci_pci_driver = {
1974 .name = ohci_driver_name,
1975 .id_table = pci_table,
1976 .probe = pci_probe,
1977 .remove = pci_remove,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001978#ifdef CONFIG_PM
1979 .resume = pci_resume,
1980 .suspend = pci_suspend,
1981#endif
Kristian Høgsberged568912006-12-19 19:58:35 -05001982};
1983
1984MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
1985MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers");
1986MODULE_LICENSE("GPL");
1987
Olaf Hering1e4c7b02007-05-05 23:17:13 +02001988/* Provide a module alias so root-on-sbp2 initrds don't break. */
1989#ifndef CONFIG_IEEE1394_OHCI1394_MODULE
1990MODULE_ALIAS("ohci1394");
1991#endif
1992
Kristian Høgsberged568912006-12-19 19:58:35 -05001993static int __init fw_ohci_init(void)
1994{
1995 return pci_register_driver(&fw_ohci_pci_driver);
1996}
1997
1998static void __exit fw_ohci_cleanup(void)
1999{
2000 pci_unregister_driver(&fw_ohci_pci_driver);
2001}
2002
2003module_init(fw_ohci_init);
2004module_exit(fw_ohci_cleanup);