blob: 1f6f15f0dce2063ce4bc6ed548d2f091fba4cf6c [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
Stefan Richterea8d0062008-03-01 02:42:56 +010036#ifdef CONFIG_PPC_PMAC
37#include <asm/pmac_feature.h>
38#endif
39
Kristian Høgsberged568912006-12-19 19:58:35 -050040#include "fw-ohci.h"
Stefan Richtera7fb60d2007-08-20 21:41:22 +020041#include "fw-transaction.h"
Kristian Høgsberged568912006-12-19 19:58:35 -050042
Kristian Høgsberga77754a2007-05-07 20:33:35 -040043#define DESCRIPTOR_OUTPUT_MORE 0
44#define DESCRIPTOR_OUTPUT_LAST (1 << 12)
45#define DESCRIPTOR_INPUT_MORE (2 << 12)
46#define DESCRIPTOR_INPUT_LAST (3 << 12)
47#define DESCRIPTOR_STATUS (1 << 11)
48#define DESCRIPTOR_KEY_IMMEDIATE (2 << 8)
49#define DESCRIPTOR_PING (1 << 7)
50#define DESCRIPTOR_YY (1 << 6)
51#define DESCRIPTOR_NO_IRQ (0 << 4)
52#define DESCRIPTOR_IRQ_ERROR (1 << 4)
53#define DESCRIPTOR_IRQ_ALWAYS (3 << 4)
54#define DESCRIPTOR_BRANCH_ALWAYS (3 << 2)
55#define DESCRIPTOR_WAIT (3 << 0)
Kristian Høgsberged568912006-12-19 19:58:35 -050056
57struct descriptor {
58 __le16 req_count;
59 __le16 control;
60 __le32 data_address;
61 __le32 branch_address;
62 __le16 res_count;
63 __le16 transfer_status;
64} __attribute__((aligned(16)));
65
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -050066struct db_descriptor {
67 __le16 first_size;
68 __le16 control;
69 __le16 second_req_count;
70 __le16 first_req_count;
71 __le32 branch_address;
72 __le16 second_res_count;
73 __le16 first_res_count;
74 __le32 reserved0;
75 __le32 first_buffer;
76 __le32 second_buffer;
77 __le32 reserved1;
78} __attribute__((aligned(16)));
79
Kristian Høgsberga77754a2007-05-07 20:33:35 -040080#define CONTROL_SET(regs) (regs)
81#define CONTROL_CLEAR(regs) ((regs) + 4)
82#define COMMAND_PTR(regs) ((regs) + 12)
83#define CONTEXT_MATCH(regs) ((regs) + 16)
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050084
Kristian Høgsberg32b46092007-02-06 14:49:30 -050085struct ar_buffer {
86 struct descriptor descriptor;
87 struct ar_buffer *next;
88 __le32 data[0];
89};
90
Kristian Høgsberged568912006-12-19 19:58:35 -050091struct ar_context {
92 struct fw_ohci *ohci;
Kristian Høgsberg32b46092007-02-06 14:49:30 -050093 struct ar_buffer *current_buffer;
94 struct ar_buffer *last_buffer;
95 void *pointer;
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050096 u32 regs;
Kristian Høgsberged568912006-12-19 19:58:35 -050097 struct tasklet_struct tasklet;
98};
99
Kristian Høgsberg30200732007-02-16 17:34:39 -0500100struct context;
101
102typedef int (*descriptor_callback_t)(struct context *ctx,
103 struct descriptor *d,
104 struct descriptor *last);
David Moorefe5ca632008-01-06 17:21:41 -0500105
106/*
107 * A buffer that contains a block of DMA-able coherent memory used for
108 * storing a portion of a DMA descriptor program.
109 */
110struct descriptor_buffer {
111 struct list_head list;
112 dma_addr_t buffer_bus;
113 size_t buffer_size;
114 size_t used;
115 struct descriptor buffer[0];
116};
117
Kristian Høgsberg30200732007-02-16 17:34:39 -0500118struct context {
Stefan Richter373b2ed2007-03-04 14:45:18 +0100119 struct fw_ohci *ohci;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500120 u32 regs;
David Moorefe5ca632008-01-06 17:21:41 -0500121 int total_allocation;
Stefan Richter373b2ed2007-03-04 14:45:18 +0100122
David Moorefe5ca632008-01-06 17:21:41 -0500123 /*
124 * List of page-sized buffers for storing DMA descriptors.
125 * Head of list contains buffers in use and tail of list contains
126 * free buffers.
127 */
128 struct list_head buffer_list;
129
130 /*
131 * Pointer to a buffer inside buffer_list that contains the tail
132 * end of the current DMA program.
133 */
134 struct descriptor_buffer *buffer_tail;
135
136 /*
137 * The descriptor containing the branch address of the first
138 * descriptor that has not yet been filled by the device.
139 */
140 struct descriptor *last;
141
142 /*
143 * The last descriptor in the DMA program. It contains the branch
144 * address that must be updated upon appending a new descriptor.
145 */
146 struct descriptor *prev;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500147
148 descriptor_callback_t callback;
149
Stefan Richter373b2ed2007-03-04 14:45:18 +0100150 struct tasklet_struct tasklet;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500151};
Kristian Høgsberg30200732007-02-16 17:34:39 -0500152
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400153#define IT_HEADER_SY(v) ((v) << 0)
154#define IT_HEADER_TCODE(v) ((v) << 4)
155#define IT_HEADER_CHANNEL(v) ((v) << 8)
156#define IT_HEADER_TAG(v) ((v) << 14)
157#define IT_HEADER_SPEED(v) ((v) << 16)
158#define IT_HEADER_DATA_LENGTH(v) ((v) << 16)
Kristian Høgsberged568912006-12-19 19:58:35 -0500159
160struct iso_context {
161 struct fw_iso_context base;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500162 struct context context;
David Moore0642b652007-12-19 03:09:18 -0500163 int excess_bytes;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500164 void *header;
165 size_t header_length;
Kristian Høgsberged568912006-12-19 19:58:35 -0500166};
167
168#define CONFIG_ROM_SIZE 1024
169
170struct fw_ohci {
171 struct fw_card card;
172
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500173 u32 version;
Kristian Høgsberged568912006-12-19 19:58:35 -0500174 __iomem char *registers;
175 dma_addr_t self_id_bus;
176 __le32 *self_id_cpu;
177 struct tasklet_struct bus_reset_tasklet;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500178 int node_id;
Kristian Høgsberged568912006-12-19 19:58:35 -0500179 int generation;
180 int request_generation;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500181 u32 bus_seconds;
Stefan Richter11bf20a2008-03-01 02:47:15 +0100182 bool old_uninorth;
Kristian Høgsberged568912006-12-19 19:58:35 -0500183
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400184 /*
185 * Spinlock for accessing fw_ohci data. Never call out of
186 * this driver with this lock held.
187 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500188 spinlock_t lock;
189 u32 self_id_buffer[512];
190
191 /* Config rom buffers */
192 __be32 *config_rom;
193 dma_addr_t config_rom_bus;
194 __be32 *next_config_rom;
195 dma_addr_t next_config_rom_bus;
196 u32 next_header;
197
198 struct ar_context ar_request_ctx;
199 struct ar_context ar_response_ctx;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500200 struct context at_request_ctx;
201 struct context at_response_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -0500202
203 u32 it_context_mask;
204 struct iso_context *it_context_list;
205 u32 ir_context_mask;
206 struct iso_context *ir_context_list;
207};
208
Adrian Bunk95688e92007-01-22 19:17:37 +0100209static inline struct fw_ohci *fw_ohci(struct fw_card *card)
Kristian Høgsberged568912006-12-19 19:58:35 -0500210{
211 return container_of(card, struct fw_ohci, card);
212}
213
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500214#define IT_CONTEXT_CYCLE_MATCH_ENABLE 0x80000000
215#define IR_CONTEXT_BUFFER_FILL 0x80000000
216#define IR_CONTEXT_ISOCH_HEADER 0x40000000
217#define IR_CONTEXT_CYCLE_MATCH_ENABLE 0x20000000
218#define IR_CONTEXT_MULTI_CHANNEL_MODE 0x10000000
219#define IR_CONTEXT_DUAL_BUFFER_MODE 0x08000000
Kristian Høgsberged568912006-12-19 19:58:35 -0500220
221#define CONTEXT_RUN 0x8000
222#define CONTEXT_WAKE 0x1000
223#define CONTEXT_DEAD 0x0800
224#define CONTEXT_ACTIVE 0x0400
225
226#define OHCI1394_MAX_AT_REQ_RETRIES 0x2
227#define OHCI1394_MAX_AT_RESP_RETRIES 0x2
228#define OHCI1394_MAX_PHYS_RESP_RETRIES 0x8
229
230#define FW_OHCI_MAJOR 240
231#define OHCI1394_REGISTER_SIZE 0x800
232#define OHCI_LOOP_COUNT 500
233#define OHCI1394_PCI_HCI_Control 0x40
234#define SELF_ID_BUF_SIZE 0x800
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500235#define OHCI_TCODE_PHY_PACKET 0x0e
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500236#define OHCI_VERSION_1_1 0x010010
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500237
Kristian Høgsberged568912006-12-19 19:58:35 -0500238static char ohci_driver_name[] = KBUILD_MODNAME;
239
Adrian Bunk95688e92007-01-22 19:17:37 +0100240static inline void reg_write(const struct fw_ohci *ohci, int offset, u32 data)
Kristian Høgsberged568912006-12-19 19:58:35 -0500241{
242 writel(data, ohci->registers + offset);
243}
244
Adrian Bunk95688e92007-01-22 19:17:37 +0100245static inline u32 reg_read(const struct fw_ohci *ohci, int offset)
Kristian Høgsberged568912006-12-19 19:58:35 -0500246{
247 return readl(ohci->registers + offset);
248}
249
Adrian Bunk95688e92007-01-22 19:17:37 +0100250static inline void flush_writes(const struct fw_ohci *ohci)
Kristian Høgsberged568912006-12-19 19:58:35 -0500251{
252 /* Do a dummy read to flush writes. */
253 reg_read(ohci, OHCI1394_Version);
254}
255
256static int
257ohci_update_phy_reg(struct fw_card *card, int addr,
258 int clear_bits, int set_bits)
259{
260 struct fw_ohci *ohci = fw_ohci(card);
261 u32 val, old;
262
263 reg_write(ohci, OHCI1394_PhyControl, OHCI1394_PhyControl_Read(addr));
Stefan Richter362e9012007-07-12 22:24:19 +0200264 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -0500265 msleep(2);
266 val = reg_read(ohci, OHCI1394_PhyControl);
267 if ((val & OHCI1394_PhyControl_ReadDone) == 0) {
268 fw_error("failed to set phy reg bits.\n");
269 return -EBUSY;
270 }
271
272 old = OHCI1394_PhyControl_ReadData(val);
273 old = (old & ~clear_bits) | set_bits;
274 reg_write(ohci, OHCI1394_PhyControl,
275 OHCI1394_PhyControl_Write(addr, old));
276
277 return 0;
278}
279
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500280static int ar_context_add_page(struct ar_context *ctx)
Kristian Høgsberged568912006-12-19 19:58:35 -0500281{
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500282 struct device *dev = ctx->ohci->card.device;
283 struct ar_buffer *ab;
Stefan Richterf5101d582008-03-14 00:27:49 +0100284 dma_addr_t uninitialized_var(ab_bus);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500285 size_t offset;
286
Jarod Wilsonbde17092008-03-12 17:43:26 -0400287 ab = dma_alloc_coherent(dev, PAGE_SIZE, &ab_bus, GFP_ATOMIC);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500288 if (ab == NULL)
289 return -ENOMEM;
290
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400291 memset(&ab->descriptor, 0, sizeof(ab->descriptor));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400292 ab->descriptor.control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
293 DESCRIPTOR_STATUS |
294 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500295 offset = offsetof(struct ar_buffer, data);
296 ab->descriptor.req_count = cpu_to_le16(PAGE_SIZE - offset);
297 ab->descriptor.data_address = cpu_to_le32(ab_bus + offset);
298 ab->descriptor.res_count = cpu_to_le16(PAGE_SIZE - offset);
299 ab->descriptor.branch_address = 0;
300
Kristian Høgsbergec839e42007-05-22 18:55:48 -0400301 ctx->last_buffer->descriptor.branch_address = cpu_to_le32(ab_bus | 1);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500302 ctx->last_buffer->next = ab;
303 ctx->last_buffer = ab;
304
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400305 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Kristian Høgsberged568912006-12-19 19:58:35 -0500306 flush_writes(ctx->ohci);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500307
308 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -0500309}
310
Stefan Richter11bf20a2008-03-01 02:47:15 +0100311#if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
312#define cond_le32_to_cpu(v) \
313 (ohci->old_uninorth ? (__force __u32)(v) : le32_to_cpu(v))
314#else
315#define cond_le32_to_cpu(v) le32_to_cpu(v)
316#endif
317
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500318static __le32 *handle_ar_packet(struct ar_context *ctx, __le32 *buffer)
Kristian Høgsberged568912006-12-19 19:58:35 -0500319{
Kristian Høgsberged568912006-12-19 19:58:35 -0500320 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500321 struct fw_packet p;
322 u32 status, length, tcode;
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500323
Stefan Richter11bf20a2008-03-01 02:47:15 +0100324 p.header[0] = cond_le32_to_cpu(buffer[0]);
325 p.header[1] = cond_le32_to_cpu(buffer[1]);
326 p.header[2] = cond_le32_to_cpu(buffer[2]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500327
328 tcode = (p.header[0] >> 4) & 0x0f;
329 switch (tcode) {
330 case TCODE_WRITE_QUADLET_REQUEST:
331 case TCODE_READ_QUADLET_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500332 p.header[3] = (__force __u32) buffer[3];
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500333 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500334 p.payload_length = 0;
335 break;
336
337 case TCODE_READ_BLOCK_REQUEST :
Stefan Richter11bf20a2008-03-01 02:47:15 +0100338 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500339 p.header_length = 16;
340 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500341 break;
342
343 case TCODE_WRITE_BLOCK_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500344 case TCODE_READ_BLOCK_RESPONSE:
345 case TCODE_LOCK_REQUEST:
346 case TCODE_LOCK_RESPONSE:
Stefan Richter11bf20a2008-03-01 02:47:15 +0100347 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500348 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500349 p.payload_length = p.header[3] >> 16;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500350 break;
351
352 case TCODE_WRITE_RESPONSE:
353 case TCODE_READ_QUADLET_REQUEST:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500354 case OHCI_TCODE_PHY_PACKET:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500355 p.header_length = 12;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500356 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500357 break;
358 }
359
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500360 p.payload = (void *) buffer + p.header_length;
361
362 /* FIXME: What to do about evt_* errors? */
363 length = (p.header_length + p.payload_length + 3) / 4;
Stefan Richter11bf20a2008-03-01 02:47:15 +0100364 status = cond_le32_to_cpu(buffer[length]);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500365
366 p.ack = ((status >> 16) & 0x1f) - 16;
367 p.speed = (status >> 21) & 0x7;
368 p.timestamp = status & 0xffff;
369 p.generation = ohci->request_generation;
Kristian Høgsberged568912006-12-19 19:58:35 -0500370
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400371 /*
372 * The OHCI bus reset handler synthesizes a phy packet with
Kristian Høgsberged568912006-12-19 19:58:35 -0500373 * the new generation number when a bus reset happens (see
374 * section 8.4.2.3). This helps us determine when a request
375 * was received and make sure we send the response in the same
376 * generation. We only need this for requests; for responses
377 * we use the unique tlabel for finding the matching
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400378 * request.
379 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500380
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500381 if (p.ack + 16 == 0x09)
Stefan Richter25df2872008-02-23 12:24:17 +0100382 ohci->request_generation = (p.header[2] >> 16) & 0xff;
Kristian Høgsberged568912006-12-19 19:58:35 -0500383 else if (ctx == &ohci->ar_request_ctx)
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500384 fw_core_handle_request(&ohci->card, &p);
Kristian Høgsberged568912006-12-19 19:58:35 -0500385 else
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500386 fw_core_handle_response(&ohci->card, &p);
Kristian Høgsberged568912006-12-19 19:58:35 -0500387
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500388 return buffer + length + 1;
389}
Kristian Høgsberged568912006-12-19 19:58:35 -0500390
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500391static void ar_context_tasklet(unsigned long data)
392{
393 struct ar_context *ctx = (struct ar_context *)data;
394 struct fw_ohci *ohci = ctx->ohci;
395 struct ar_buffer *ab;
396 struct descriptor *d;
397 void *buffer, *end;
Kristian Høgsberged568912006-12-19 19:58:35 -0500398
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500399 ab = ctx->current_buffer;
400 d = &ab->descriptor;
Kristian Høgsberged568912006-12-19 19:58:35 -0500401
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500402 if (d->res_count == 0) {
403 size_t size, rest, offset;
Jarod Wilson6b842362008-03-25 16:47:16 -0400404 dma_addr_t start_bus;
405 void *start;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500406
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400407 /*
408 * This descriptor is finished and we may have a
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500409 * packet split across this and the next buffer. We
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400410 * reuse the page for reassembling the split packet.
411 */
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500412
413 offset = offsetof(struct ar_buffer, data);
Jarod Wilson6b842362008-03-25 16:47:16 -0400414 start = buffer = ab;
415 start_bus = le32_to_cpu(ab->descriptor.data_address) - offset;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500416
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500417 ab = ab->next;
418 d = &ab->descriptor;
419 size = buffer + PAGE_SIZE - ctx->pointer;
420 rest = le16_to_cpu(d->req_count) - le16_to_cpu(d->res_count);
421 memmove(buffer, ctx->pointer, size);
422 memcpy(buffer + size, ab->data, rest);
423 ctx->current_buffer = ab;
424 ctx->pointer = (void *) ab->data + rest;
425 end = buffer + size + rest;
426
427 while (buffer < end)
428 buffer = handle_ar_packet(ctx, buffer);
429
Jarod Wilsonbde17092008-03-12 17:43:26 -0400430 dma_free_coherent(ohci->card.device, PAGE_SIZE,
Jarod Wilson6b842362008-03-25 16:47:16 -0400431 start, start_bus);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500432 ar_context_add_page(ctx);
433 } else {
434 buffer = ctx->pointer;
435 ctx->pointer = end =
436 (void *) ab + PAGE_SIZE - le16_to_cpu(d->res_count);
437
438 while (buffer < end)
439 buffer = handle_ar_packet(ctx, buffer);
440 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500441}
442
443static int
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500444ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci, u32 regs)
Kristian Høgsberged568912006-12-19 19:58:35 -0500445{
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500446 struct ar_buffer ab;
Kristian Høgsberged568912006-12-19 19:58:35 -0500447
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500448 ctx->regs = regs;
449 ctx->ohci = ohci;
450 ctx->last_buffer = &ab;
Kristian Høgsberged568912006-12-19 19:58:35 -0500451 tasklet_init(&ctx->tasklet, ar_context_tasklet, (unsigned long)ctx);
452
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500453 ar_context_add_page(ctx);
454 ar_context_add_page(ctx);
455 ctx->current_buffer = ab.next;
456 ctx->pointer = ctx->current_buffer->data;
457
Kristian Høgsberg2aef4692007-05-30 19:06:35 -0400458 return 0;
459}
460
461static void ar_context_run(struct ar_context *ctx)
462{
463 struct ar_buffer *ab = ctx->current_buffer;
464 dma_addr_t ab_bus;
465 size_t offset;
466
467 offset = offsetof(struct ar_buffer, data);
Stefan Richter0a9972b2007-06-23 20:28:17 +0200468 ab_bus = le32_to_cpu(ab->descriptor.data_address) - offset;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -0400469
470 reg_write(ctx->ohci, COMMAND_PTR(ctx->regs), ab_bus | 1);
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400471 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500472 flush_writes(ctx->ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -0500473}
Stefan Richter373b2ed2007-03-04 14:45:18 +0100474
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500475static struct descriptor *
476find_branch_descriptor(struct descriptor *d, int z)
477{
478 int b, key;
479
480 b = (le16_to_cpu(d->control) & DESCRIPTOR_BRANCH_ALWAYS) >> 2;
481 key = (le16_to_cpu(d->control) & DESCRIPTOR_KEY_IMMEDIATE) >> 8;
482
483 /* figure out which descriptor the branch address goes in */
484 if (z == 2 && (b == 3 || key == 2))
485 return d;
486 else
487 return d + z - 1;
488}
489
Kristian Høgsberg30200732007-02-16 17:34:39 -0500490static void context_tasklet(unsigned long data)
491{
492 struct context *ctx = (struct context *) data;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500493 struct descriptor *d, *last;
494 u32 address;
495 int z;
David Moorefe5ca632008-01-06 17:21:41 -0500496 struct descriptor_buffer *desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500497
David Moorefe5ca632008-01-06 17:21:41 -0500498 desc = list_entry(ctx->buffer_list.next,
499 struct descriptor_buffer, list);
500 last = ctx->last;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500501 while (last->branch_address != 0) {
David Moorefe5ca632008-01-06 17:21:41 -0500502 struct descriptor_buffer *old_desc = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500503 address = le32_to_cpu(last->branch_address);
504 z = address & 0xf;
David Moorefe5ca632008-01-06 17:21:41 -0500505 address &= ~0xf;
506
507 /* If the branch address points to a buffer outside of the
508 * current buffer, advance to the next buffer. */
509 if (address < desc->buffer_bus ||
510 address >= desc->buffer_bus + desc->used)
511 desc = list_entry(desc->list.next,
512 struct descriptor_buffer, list);
513 d = desc->buffer + (address - desc->buffer_bus) / sizeof(*d);
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500514 last = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500515
516 if (!ctx->callback(ctx, d, last))
517 break;
518
David Moorefe5ca632008-01-06 17:21:41 -0500519 if (old_desc != desc) {
520 /* If we've advanced to the next buffer, move the
521 * previous buffer to the free list. */
522 unsigned long flags;
523 old_desc->used = 0;
524 spin_lock_irqsave(&ctx->ohci->lock, flags);
525 list_move_tail(&old_desc->list, &ctx->buffer_list);
526 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
527 }
528 ctx->last = last;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500529 }
530}
531
David Moorefe5ca632008-01-06 17:21:41 -0500532/*
533 * Allocate a new buffer and add it to the list of free buffers for this
534 * context. Must be called with ohci->lock held.
535 */
536static int
537context_add_buffer(struct context *ctx)
538{
539 struct descriptor_buffer *desc;
Stefan Richterf5101d582008-03-14 00:27:49 +0100540 dma_addr_t uninitialized_var(bus_addr);
David Moorefe5ca632008-01-06 17:21:41 -0500541 int offset;
542
543 /*
544 * 16MB of descriptors should be far more than enough for any DMA
545 * program. This will catch run-away userspace or DoS attacks.
546 */
547 if (ctx->total_allocation >= 16*1024*1024)
548 return -ENOMEM;
549
550 desc = dma_alloc_coherent(ctx->ohci->card.device, PAGE_SIZE,
551 &bus_addr, GFP_ATOMIC);
552 if (!desc)
553 return -ENOMEM;
554
555 offset = (void *)&desc->buffer - (void *)desc;
556 desc->buffer_size = PAGE_SIZE - offset;
557 desc->buffer_bus = bus_addr + offset;
558 desc->used = 0;
559
560 list_add_tail(&desc->list, &ctx->buffer_list);
561 ctx->total_allocation += PAGE_SIZE;
562
563 return 0;
564}
565
Kristian Høgsberg30200732007-02-16 17:34:39 -0500566static int
567context_init(struct context *ctx, struct fw_ohci *ohci,
David Moorefe5ca632008-01-06 17:21:41 -0500568 u32 regs, descriptor_callback_t callback)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500569{
570 ctx->ohci = ohci;
571 ctx->regs = regs;
David Moorefe5ca632008-01-06 17:21:41 -0500572 ctx->total_allocation = 0;
573
574 INIT_LIST_HEAD(&ctx->buffer_list);
575 if (context_add_buffer(ctx) < 0)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500576 return -ENOMEM;
577
David Moorefe5ca632008-01-06 17:21:41 -0500578 ctx->buffer_tail = list_entry(ctx->buffer_list.next,
579 struct descriptor_buffer, list);
580
Kristian Høgsberg30200732007-02-16 17:34:39 -0500581 tasklet_init(&ctx->tasklet, context_tasklet, (unsigned long)ctx);
582 ctx->callback = callback;
583
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400584 /*
585 * We put a dummy descriptor in the buffer that has a NULL
Kristian Høgsberg30200732007-02-16 17:34:39 -0500586 * branch address and looks like it's been sent. That way we
David Moorefe5ca632008-01-06 17:21:41 -0500587 * have a descriptor to append DMA programs to.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400588 */
David Moorefe5ca632008-01-06 17:21:41 -0500589 memset(ctx->buffer_tail->buffer, 0, sizeof(*ctx->buffer_tail->buffer));
590 ctx->buffer_tail->buffer->control = cpu_to_le16(DESCRIPTOR_OUTPUT_LAST);
591 ctx->buffer_tail->buffer->transfer_status = cpu_to_le16(0x8011);
592 ctx->buffer_tail->used += sizeof(*ctx->buffer_tail->buffer);
593 ctx->last = ctx->buffer_tail->buffer;
594 ctx->prev = ctx->buffer_tail->buffer;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500595
596 return 0;
597}
598
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500599static void
Kristian Høgsberg30200732007-02-16 17:34:39 -0500600context_release(struct context *ctx)
601{
602 struct fw_card *card = &ctx->ohci->card;
David Moorefe5ca632008-01-06 17:21:41 -0500603 struct descriptor_buffer *desc, *tmp;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500604
David Moorefe5ca632008-01-06 17:21:41 -0500605 list_for_each_entry_safe(desc, tmp, &ctx->buffer_list, list)
606 dma_free_coherent(card->device, PAGE_SIZE, desc,
607 desc->buffer_bus -
608 ((void *)&desc->buffer - (void *)desc));
Kristian Høgsberg30200732007-02-16 17:34:39 -0500609}
610
David Moorefe5ca632008-01-06 17:21:41 -0500611/* Must be called with ohci->lock held */
Kristian Høgsberg30200732007-02-16 17:34:39 -0500612static struct descriptor *
613context_get_descriptors(struct context *ctx, int z, dma_addr_t *d_bus)
614{
David Moorefe5ca632008-01-06 17:21:41 -0500615 struct descriptor *d = NULL;
616 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500617
David Moorefe5ca632008-01-06 17:21:41 -0500618 if (z * sizeof(*d) > desc->buffer_size)
619 return NULL;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500620
David Moorefe5ca632008-01-06 17:21:41 -0500621 if (z * sizeof(*d) > desc->buffer_size - desc->used) {
622 /* No room for the descriptor in this buffer, so advance to the
623 * next one. */
624
625 if (desc->list.next == &ctx->buffer_list) {
626 /* If there is no free buffer next in the list,
627 * allocate one. */
628 if (context_add_buffer(ctx) < 0)
629 return NULL;
630 }
631 desc = list_entry(desc->list.next,
632 struct descriptor_buffer, list);
633 ctx->buffer_tail = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500634 }
635
David Moorefe5ca632008-01-06 17:21:41 -0500636 d = desc->buffer + desc->used / sizeof(*d);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400637 memset(d, 0, z * sizeof(*d));
David Moorefe5ca632008-01-06 17:21:41 -0500638 *d_bus = desc->buffer_bus + desc->used;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500639
640 return d;
641}
642
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500643static void context_run(struct context *ctx, u32 extra)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500644{
645 struct fw_ohci *ohci = ctx->ohci;
646
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400647 reg_write(ohci, COMMAND_PTR(ctx->regs),
David Moorefe5ca632008-01-06 17:21:41 -0500648 le32_to_cpu(ctx->last->branch_address));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400649 reg_write(ohci, CONTROL_CLEAR(ctx->regs), ~0);
650 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN | extra);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500651 flush_writes(ohci);
652}
653
654static void context_append(struct context *ctx,
655 struct descriptor *d, int z, int extra)
656{
657 dma_addr_t d_bus;
David Moorefe5ca632008-01-06 17:21:41 -0500658 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500659
David Moorefe5ca632008-01-06 17:21:41 -0500660 d_bus = desc->buffer_bus + (d - desc->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500661
David Moorefe5ca632008-01-06 17:21:41 -0500662 desc->used += (z + extra) * sizeof(*d);
663 ctx->prev->branch_address = cpu_to_le32(d_bus | z);
664 ctx->prev = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500665
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400666 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500667 flush_writes(ctx->ohci);
668}
669
670static void context_stop(struct context *ctx)
671{
672 u32 reg;
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500673 int i;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500674
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400675 reg_write(ctx->ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500676 flush_writes(ctx->ohci);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500677
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500678 for (i = 0; i < 10; i++) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400679 reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs));
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500680 if ((reg & CONTEXT_ACTIVE) == 0)
681 break;
682
683 fw_notify("context_stop: still active (0x%08x)\n", reg);
Stefan Richterb980f5a2007-07-12 22:25:14 +0200684 mdelay(1);
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500685 }
Kristian Høgsberg30200732007-02-16 17:34:39 -0500686}
Kristian Høgsberged568912006-12-19 19:58:35 -0500687
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500688struct driver_data {
Kristian Høgsberged568912006-12-19 19:58:35 -0500689 struct fw_packet *packet;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500690};
691
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400692/*
693 * This function apppends a packet to the DMA queue for transmission.
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500694 * Must always be called with the ochi->lock held to ensure proper
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400695 * generation handling and locking around packet queue manipulation.
696 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500697static int
698at_context_queue_packet(struct context *ctx, struct fw_packet *packet)
699{
Kristian Høgsberged568912006-12-19 19:58:35 -0500700 struct fw_ohci *ohci = ctx->ohci;
Stefan Richter4b6d51e2007-10-21 11:20:07 +0200701 dma_addr_t d_bus, uninitialized_var(payload_bus);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500702 struct driver_data *driver_data;
703 struct descriptor *d, *last;
704 __le32 *header;
Kristian Høgsberged568912006-12-19 19:58:35 -0500705 int z, tcode;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500706 u32 reg;
Kristian Høgsberged568912006-12-19 19:58:35 -0500707
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500708 d = context_get_descriptors(ctx, 4, &d_bus);
709 if (d == NULL) {
710 packet->ack = RCODE_SEND_ERROR;
711 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -0500712 }
713
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400714 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500715 d[0].res_count = cpu_to_le16(packet->timestamp);
716
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400717 /*
718 * The DMA format for asyncronous link packets is different
Kristian Høgsberged568912006-12-19 19:58:35 -0500719 * from the IEEE1394 layout, so shift the fields around
720 * accordingly. If header_length is 8, it's a PHY packet, to
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400721 * which we need to prepend an extra quadlet.
722 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500723
724 header = (__le32 *) &d[1];
Kristian Høgsberged568912006-12-19 19:58:35 -0500725 if (packet->header_length > 8) {
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500726 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
727 (packet->speed << 16));
728 header[1] = cpu_to_le32((packet->header[1] & 0xffff) |
729 (packet->header[0] & 0xffff0000));
730 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsberged568912006-12-19 19:58:35 -0500731
732 tcode = (packet->header[0] >> 4) & 0x0f;
733 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500734 header[3] = cpu_to_le32(packet->header[3]);
Kristian Høgsberged568912006-12-19 19:58:35 -0500735 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500736 header[3] = (__force __le32) packet->header[3];
737
738 d[0].req_count = cpu_to_le16(packet->header_length);
Kristian Høgsberged568912006-12-19 19:58:35 -0500739 } else {
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500740 header[0] = cpu_to_le32((OHCI1394_phy_tcode << 4) |
741 (packet->speed << 16));
742 header[1] = cpu_to_le32(packet->header[0]);
743 header[2] = cpu_to_le32(packet->header[1]);
744 d[0].req_count = cpu_to_le16(12);
Kristian Høgsberged568912006-12-19 19:58:35 -0500745 }
746
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500747 driver_data = (struct driver_data *) &d[3];
748 driver_data->packet = packet;
Kristian Høgsberg20d11672007-03-26 19:18:19 -0400749 packet->driver_data = driver_data;
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500750
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500751 if (packet->payload_length > 0) {
752 payload_bus =
753 dma_map_single(ohci->card.device, packet->payload,
754 packet->payload_length, DMA_TO_DEVICE);
755 if (dma_mapping_error(payload_bus)) {
756 packet->ack = RCODE_SEND_ERROR;
757 return -1;
758 }
759
760 d[2].req_count = cpu_to_le16(packet->payload_length);
761 d[2].data_address = cpu_to_le32(payload_bus);
762 last = &d[2];
763 z = 3;
764 } else {
765 last = &d[0];
766 z = 2;
767 }
768
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400769 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
770 DESCRIPTOR_IRQ_ALWAYS |
771 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500772
Kristian Høgsberged568912006-12-19 19:58:35 -0500773 /* FIXME: Document how the locking works. */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500774 if (ohci->generation != packet->generation) {
Stefan Richterab88ca42007-08-29 19:40:28 +0200775 if (packet->payload_length > 0)
776 dma_unmap_single(ohci->card.device, payload_bus,
777 packet->payload_length, DMA_TO_DEVICE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500778 packet->ack = RCODE_GENERATION;
779 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -0500780 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500781
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500782 context_append(ctx, d, z, 4 - z);
Kristian Høgsberged568912006-12-19 19:58:35 -0500783
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500784 /* If the context isn't already running, start it up. */
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400785 reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs));
Kristian Høgsberg053b3082007-04-10 18:11:17 -0400786 if ((reg & CONTEXT_RUN) == 0)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500787 context_run(ctx, 0);
Kristian Høgsberged568912006-12-19 19:58:35 -0500788
789 return 0;
790}
791
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500792static int handle_at_packet(struct context *context,
793 struct descriptor *d,
794 struct descriptor *last)
795{
796 struct driver_data *driver_data;
797 struct fw_packet *packet;
798 struct fw_ohci *ohci = context->ohci;
799 dma_addr_t payload_bus;
800 int evt;
801
802 if (last->transfer_status == 0)
803 /* This descriptor isn't done yet, stop iteration. */
804 return 0;
805
806 driver_data = (struct driver_data *) &d[3];
807 packet = driver_data->packet;
808 if (packet == NULL)
809 /* This packet was cancelled, just continue. */
810 return 1;
811
812 payload_bus = le32_to_cpu(last->data_address);
813 if (payload_bus != 0)
814 dma_unmap_single(ohci->card.device, payload_bus,
815 packet->payload_length, DMA_TO_DEVICE);
816
817 evt = le16_to_cpu(last->transfer_status) & 0x1f;
818 packet->timestamp = le16_to_cpu(last->res_count);
819
820 switch (evt) {
821 case OHCI1394_evt_timeout:
822 /* Async response transmit timed out. */
823 packet->ack = RCODE_CANCELLED;
824 break;
825
826 case OHCI1394_evt_flushed:
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400827 /*
828 * The packet was flushed should give same error as
829 * when we try to use a stale generation count.
830 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500831 packet->ack = RCODE_GENERATION;
832 break;
833
834 case OHCI1394_evt_missing_ack:
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400835 /*
836 * Using a valid (current) generation count, but the
837 * node is not on the bus or not sending acks.
838 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500839 packet->ack = RCODE_NO_ACK;
840 break;
841
842 case ACK_COMPLETE + 0x10:
843 case ACK_PENDING + 0x10:
844 case ACK_BUSY_X + 0x10:
845 case ACK_BUSY_A + 0x10:
846 case ACK_BUSY_B + 0x10:
847 case ACK_DATA_ERROR + 0x10:
848 case ACK_TYPE_ERROR + 0x10:
849 packet->ack = evt - 0x10;
850 break;
851
852 default:
853 packet->ack = RCODE_SEND_ERROR;
854 break;
855 }
856
857 packet->callback(packet, &ohci->card, packet->ack);
858
859 return 1;
860}
861
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400862#define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
863#define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
864#define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
865#define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
866#define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500867
868static void
869handle_local_rom(struct fw_ohci *ohci, struct fw_packet *packet, u32 csr)
870{
871 struct fw_packet response;
872 int tcode, length, i;
873
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400874 tcode = HEADER_GET_TCODE(packet->header[0]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500875 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400876 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500877 else
878 length = 4;
879
880 i = csr - CSR_CONFIG_ROM;
881 if (i + length > CONFIG_ROM_SIZE) {
882 fw_fill_response(&response, packet->header,
883 RCODE_ADDRESS_ERROR, NULL, 0);
884 } else if (!TCODE_IS_READ_REQUEST(tcode)) {
885 fw_fill_response(&response, packet->header,
886 RCODE_TYPE_ERROR, NULL, 0);
887 } else {
888 fw_fill_response(&response, packet->header, RCODE_COMPLETE,
889 (void *) ohci->config_rom + i, length);
890 }
891
892 fw_core_handle_response(&ohci->card, &response);
893}
894
895static void
896handle_local_lock(struct fw_ohci *ohci, struct fw_packet *packet, u32 csr)
897{
898 struct fw_packet response;
899 int tcode, length, ext_tcode, sel;
900 __be32 *payload, lock_old;
901 u32 lock_arg, lock_data;
902
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400903 tcode = HEADER_GET_TCODE(packet->header[0]);
904 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500905 payload = packet->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400906 ext_tcode = HEADER_GET_EXTENDED_TCODE(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500907
908 if (tcode == TCODE_LOCK_REQUEST &&
909 ext_tcode == EXTCODE_COMPARE_SWAP && length == 8) {
910 lock_arg = be32_to_cpu(payload[0]);
911 lock_data = be32_to_cpu(payload[1]);
912 } else if (tcode == TCODE_READ_QUADLET_REQUEST) {
913 lock_arg = 0;
914 lock_data = 0;
915 } else {
916 fw_fill_response(&response, packet->header,
917 RCODE_TYPE_ERROR, NULL, 0);
918 goto out;
919 }
920
921 sel = (csr - CSR_BUS_MANAGER_ID) / 4;
922 reg_write(ohci, OHCI1394_CSRData, lock_data);
923 reg_write(ohci, OHCI1394_CSRCompareData, lock_arg);
924 reg_write(ohci, OHCI1394_CSRControl, sel);
925
926 if (reg_read(ohci, OHCI1394_CSRControl) & 0x80000000)
927 lock_old = cpu_to_be32(reg_read(ohci, OHCI1394_CSRData));
928 else
929 fw_notify("swap not done yet\n");
930
931 fw_fill_response(&response, packet->header,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400932 RCODE_COMPLETE, &lock_old, sizeof(lock_old));
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500933 out:
934 fw_core_handle_response(&ohci->card, &response);
935}
936
937static void
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500938handle_local_request(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500939{
940 u64 offset;
941 u32 csr;
942
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500943 if (ctx == &ctx->ohci->at_request_ctx) {
944 packet->ack = ACK_PENDING;
945 packet->callback(packet, &ctx->ohci->card, packet->ack);
946 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500947
948 offset =
949 ((unsigned long long)
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400950 HEADER_GET_OFFSET_HIGH(packet->header[1]) << 32) |
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500951 packet->header[2];
952 csr = offset - CSR_REGISTER_BASE;
953
954 /* Handle config rom reads. */
955 if (csr >= CSR_CONFIG_ROM && csr < CSR_CONFIG_ROM_END)
956 handle_local_rom(ctx->ohci, packet, csr);
957 else switch (csr) {
958 case CSR_BUS_MANAGER_ID:
959 case CSR_BANDWIDTH_AVAILABLE:
960 case CSR_CHANNELS_AVAILABLE_HI:
961 case CSR_CHANNELS_AVAILABLE_LO:
962 handle_local_lock(ctx->ohci, packet, csr);
963 break;
964 default:
965 if (ctx == &ctx->ohci->at_request_ctx)
966 fw_core_handle_request(&ctx->ohci->card, packet);
967 else
968 fw_core_handle_response(&ctx->ohci->card, packet);
969 break;
970 }
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500971
972 if (ctx == &ctx->ohci->at_response_ctx) {
973 packet->ack = ACK_COMPLETE;
974 packet->callback(packet, &ctx->ohci->card, packet->ack);
975 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500976}
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500977
Kristian Høgsberged568912006-12-19 19:58:35 -0500978static void
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500979at_context_transmit(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberged568912006-12-19 19:58:35 -0500980{
Kristian Høgsberged568912006-12-19 19:58:35 -0500981 unsigned long flags;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500982 int retval;
Kristian Høgsberged568912006-12-19 19:58:35 -0500983
984 spin_lock_irqsave(&ctx->ohci->lock, flags);
985
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400986 if (HEADER_GET_DESTINATION(packet->header[0]) == ctx->ohci->node_id &&
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500987 ctx->ohci->generation == packet->generation) {
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500988 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
989 handle_local_request(ctx, packet);
990 return;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500991 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500992
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500993 retval = at_context_queue_packet(ctx, packet);
Kristian Høgsberged568912006-12-19 19:58:35 -0500994 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
995
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500996 if (retval < 0)
997 packet->callback(packet, &ctx->ohci->card, packet->ack);
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500998
Kristian Høgsberged568912006-12-19 19:58:35 -0500999}
1000
1001static void bus_reset_tasklet(unsigned long data)
1002{
1003 struct fw_ohci *ohci = (struct fw_ohci *)data;
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001004 int self_id_count, i, j, reg;
Kristian Høgsberged568912006-12-19 19:58:35 -05001005 int generation, new_generation;
1006 unsigned long flags;
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001007 void *free_rom = NULL;
1008 dma_addr_t free_rom_bus = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001009
1010 reg = reg_read(ohci, OHCI1394_NodeID);
1011 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter02ff8f82007-08-30 00:11:40 +02001012 fw_notify("node ID not valid, new bus reset in progress\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05001013 return;
1014 }
Stefan Richter02ff8f82007-08-30 00:11:40 +02001015 if ((reg & OHCI1394_NodeID_nodeNumber) == 63) {
1016 fw_notify("malconfigured bus\n");
1017 return;
1018 }
1019 ohci->node_id = reg & (OHCI1394_NodeID_busNumber |
1020 OHCI1394_NodeID_nodeNumber);
Kristian Høgsberged568912006-12-19 19:58:35 -05001021
Stefan Richterc8a9a492008-03-19 21:40:32 +01001022 reg = reg_read(ohci, OHCI1394_SelfIDCount);
1023 if (reg & OHCI1394_SelfIDCount_selfIDError) {
1024 fw_notify("inconsistent self IDs\n");
1025 return;
1026 }
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001027 /*
1028 * The count in the SelfIDCount register is the number of
Kristian Høgsberged568912006-12-19 19:58:35 -05001029 * bytes in the self ID receive buffer. Since we also receive
1030 * the inverted quadlets and a header quadlet, we shift one
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001031 * bit extra to get the actual number of self IDs.
1032 */
Stefan Richterc8a9a492008-03-19 21:40:32 +01001033 self_id_count = (reg >> 3) & 0x3ff;
Stefan Richter11bf20a2008-03-01 02:47:15 +01001034 generation = (cond_le32_to_cpu(ohci->self_id_cpu[0]) >> 16) & 0xff;
Stefan Richteree71c2f2007-08-25 14:08:19 +02001035 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001036
1037 for (i = 1, j = 0; j < self_id_count; i += 2, j++) {
Stefan Richterc8a9a492008-03-19 21:40:32 +01001038 if (ohci->self_id_cpu[i] != ~ohci->self_id_cpu[i + 1]) {
1039 fw_notify("inconsistent self IDs\n");
1040 return;
1041 }
Stefan Richter11bf20a2008-03-01 02:47:15 +01001042 ohci->self_id_buffer[j] =
1043 cond_le32_to_cpu(ohci->self_id_cpu[i]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001044 }
Stefan Richteree71c2f2007-08-25 14:08:19 +02001045 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001046
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001047 /*
1048 * Check the consistency of the self IDs we just read. The
Kristian Høgsberged568912006-12-19 19:58:35 -05001049 * problem we face is that a new bus reset can start while we
1050 * read out the self IDs from the DMA buffer. If this happens,
1051 * the DMA buffer will be overwritten with new self IDs and we
1052 * will read out inconsistent data. The OHCI specification
1053 * (section 11.2) recommends a technique similar to
1054 * linux/seqlock.h, where we remember the generation of the
1055 * self IDs in the buffer before reading them out and compare
1056 * it to the current generation after reading them out. If
1057 * the two generations match we know we have a consistent set
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001058 * of self IDs.
1059 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001060
1061 new_generation = (reg_read(ohci, OHCI1394_SelfIDCount) >> 16) & 0xff;
1062 if (new_generation != generation) {
1063 fw_notify("recursive bus reset detected, "
1064 "discarding self ids\n");
1065 return;
1066 }
1067
1068 /* FIXME: Document how the locking works. */
1069 spin_lock_irqsave(&ohci->lock, flags);
1070
1071 ohci->generation = generation;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001072 context_stop(&ohci->at_request_ctx);
1073 context_stop(&ohci->at_response_ctx);
Kristian Høgsberged568912006-12-19 19:58:35 -05001074 reg_write(ohci, OHCI1394_IntEventClear, OHCI1394_busReset);
1075
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001076 /*
1077 * This next bit is unrelated to the AT context stuff but we
Kristian Høgsberged568912006-12-19 19:58:35 -05001078 * have to do it under the spinlock also. If a new config rom
1079 * was set up before this reset, the old one is now no longer
1080 * in use and we can free it. Update the config rom pointers
1081 * to point to the current config rom and clear the
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001082 * next_config_rom pointer so a new udpate can take place.
1083 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001084
1085 if (ohci->next_config_rom != NULL) {
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001086 if (ohci->next_config_rom != ohci->config_rom) {
1087 free_rom = ohci->config_rom;
1088 free_rom_bus = ohci->config_rom_bus;
1089 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001090 ohci->config_rom = ohci->next_config_rom;
1091 ohci->config_rom_bus = ohci->next_config_rom_bus;
1092 ohci->next_config_rom = NULL;
1093
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001094 /*
1095 * Restore config_rom image and manually update
Kristian Høgsberged568912006-12-19 19:58:35 -05001096 * config_rom registers. Writing the header quadlet
1097 * will indicate that the config rom is ready, so we
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001098 * do that last.
1099 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001100 reg_write(ohci, OHCI1394_BusOptions,
1101 be32_to_cpu(ohci->config_rom[2]));
1102 ohci->config_rom[0] = cpu_to_be32(ohci->next_header);
1103 reg_write(ohci, OHCI1394_ConfigROMhdr, ohci->next_header);
1104 }
1105
Stefan Richter080de8c2008-02-28 20:54:43 +01001106#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
1107 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, ~0);
1108 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, ~0);
1109#endif
1110
Kristian Høgsberged568912006-12-19 19:58:35 -05001111 spin_unlock_irqrestore(&ohci->lock, flags);
1112
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001113 if (free_rom)
1114 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1115 free_rom, free_rom_bus);
1116
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001117 fw_core_handle_bus_reset(&ohci->card, ohci->node_id, generation,
Kristian Høgsberged568912006-12-19 19:58:35 -05001118 self_id_count, ohci->self_id_buffer);
1119}
1120
1121static irqreturn_t irq_handler(int irq, void *data)
1122{
1123 struct fw_ohci *ohci = data;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001124 u32 event, iso_event, cycle_time;
Kristian Høgsberged568912006-12-19 19:58:35 -05001125 int i;
1126
1127 event = reg_read(ohci, OHCI1394_IntEventClear);
1128
Stefan Richtera5159582007-06-09 19:31:14 +02001129 if (!event || !~event)
Kristian Høgsberged568912006-12-19 19:58:35 -05001130 return IRQ_NONE;
1131
1132 reg_write(ohci, OHCI1394_IntEventClear, event);
1133
1134 if (event & OHCI1394_selfIDComplete)
1135 tasklet_schedule(&ohci->bus_reset_tasklet);
1136
1137 if (event & OHCI1394_RQPkt)
1138 tasklet_schedule(&ohci->ar_request_ctx.tasklet);
1139
1140 if (event & OHCI1394_RSPkt)
1141 tasklet_schedule(&ohci->ar_response_ctx.tasklet);
1142
1143 if (event & OHCI1394_reqTxComplete)
1144 tasklet_schedule(&ohci->at_request_ctx.tasklet);
1145
1146 if (event & OHCI1394_respTxComplete)
1147 tasklet_schedule(&ohci->at_response_ctx.tasklet);
1148
Kristian Høgsbergc8894752007-02-16 17:34:36 -05001149 iso_event = reg_read(ohci, OHCI1394_IsoRecvIntEventClear);
Kristian Høgsberged568912006-12-19 19:58:35 -05001150 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, iso_event);
1151
1152 while (iso_event) {
1153 i = ffs(iso_event) - 1;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001154 tasklet_schedule(&ohci->ir_context_list[i].context.tasklet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001155 iso_event &= ~(1 << i);
1156 }
1157
Kristian Høgsbergc8894752007-02-16 17:34:36 -05001158 iso_event = reg_read(ohci, OHCI1394_IsoXmitIntEventClear);
Kristian Høgsberged568912006-12-19 19:58:35 -05001159 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, iso_event);
1160
1161 while (iso_event) {
1162 i = ffs(iso_event) - 1;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001163 tasklet_schedule(&ohci->it_context_list[i].context.tasklet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001164 iso_event &= ~(1 << i);
1165 }
1166
Stefan Richtere524f6162007-08-20 21:58:30 +02001167 if (unlikely(event & OHCI1394_postedWriteErr))
1168 fw_error("PCI posted write error\n");
1169
Stefan Richterbb9f2202007-12-22 22:14:52 +01001170 if (unlikely(event & OHCI1394_cycleTooLong)) {
1171 if (printk_ratelimit())
1172 fw_notify("isochronous cycle too long\n");
1173 reg_write(ohci, OHCI1394_LinkControlSet,
1174 OHCI1394_LinkControl_cycleMaster);
1175 }
1176
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001177 if (event & OHCI1394_cycle64Seconds) {
1178 cycle_time = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1179 if ((cycle_time & 0x80000000) == 0)
1180 ohci->bus_seconds++;
1181 }
1182
Kristian Høgsberged568912006-12-19 19:58:35 -05001183 return IRQ_HANDLED;
1184}
1185
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001186static int software_reset(struct fw_ohci *ohci)
1187{
1188 int i;
1189
1190 reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset);
1191
1192 for (i = 0; i < OHCI_LOOP_COUNT; i++) {
1193 if ((reg_read(ohci, OHCI1394_HCControlSet) &
1194 OHCI1394_HCControl_softReset) == 0)
1195 return 0;
1196 msleep(1);
1197 }
1198
1199 return -EBUSY;
1200}
1201
Kristian Høgsberged568912006-12-19 19:58:35 -05001202static int ohci_enable(struct fw_card *card, u32 *config_rom, size_t length)
1203{
1204 struct fw_ohci *ohci = fw_ohci(card);
1205 struct pci_dev *dev = to_pci_dev(card->device);
1206
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001207 if (software_reset(ohci)) {
1208 fw_error("Failed to reset ohci card.\n");
1209 return -EBUSY;
1210 }
1211
1212 /*
1213 * Now enable LPS, which we need in order to start accessing
1214 * most of the registers. In fact, on some cards (ALI M5251),
1215 * accessing registers in the SClk domain without LPS enabled
1216 * will lock up the machine. Wait 50msec to make sure we have
1217 * full link enabled.
1218 */
1219 reg_write(ohci, OHCI1394_HCControlSet,
1220 OHCI1394_HCControl_LPS |
1221 OHCI1394_HCControl_postedWriteEnable);
1222 flush_writes(ohci);
1223 msleep(50);
1224
1225 reg_write(ohci, OHCI1394_HCControlClear,
1226 OHCI1394_HCControl_noByteSwapData);
1227
1228 reg_write(ohci, OHCI1394_LinkControlSet,
1229 OHCI1394_LinkControl_rcvSelfID |
1230 OHCI1394_LinkControl_cycleTimerEnable |
1231 OHCI1394_LinkControl_cycleMaster);
1232
1233 reg_write(ohci, OHCI1394_ATRetries,
1234 OHCI1394_MAX_AT_REQ_RETRIES |
1235 (OHCI1394_MAX_AT_RESP_RETRIES << 4) |
1236 (OHCI1394_MAX_PHYS_RESP_RETRIES << 8));
1237
1238 ar_context_run(&ohci->ar_request_ctx);
1239 ar_context_run(&ohci->ar_response_ctx);
1240
1241 reg_write(ohci, OHCI1394_SelfIDBuffer, ohci->self_id_bus);
1242 reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000);
1243 reg_write(ohci, OHCI1394_IntEventClear, ~0);
1244 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
1245 reg_write(ohci, OHCI1394_IntMaskSet,
1246 OHCI1394_selfIDComplete |
1247 OHCI1394_RQPkt | OHCI1394_RSPkt |
1248 OHCI1394_reqTxComplete | OHCI1394_respTxComplete |
1249 OHCI1394_isochRx | OHCI1394_isochTx |
Stefan Richterbb9f2202007-12-22 22:14:52 +01001250 OHCI1394_postedWriteErr | OHCI1394_cycleTooLong |
1251 OHCI1394_cycle64Seconds | OHCI1394_masterIntEnable);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001252
1253 /* Activate link_on bit and contender bit in our self ID packets.*/
1254 if (ohci_update_phy_reg(card, 4, 0,
1255 PHY_LINK_ACTIVE | PHY_CONTENDER) < 0)
1256 return -EIO;
1257
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001258 /*
1259 * When the link is not yet enabled, the atomic config rom
Kristian Høgsberged568912006-12-19 19:58:35 -05001260 * update mechanism described below in ohci_set_config_rom()
1261 * is not active. We have to update ConfigRomHeader and
1262 * BusOptions manually, and the write to ConfigROMmap takes
1263 * effect immediately. We tie this to the enabling of the
1264 * link, so we have a valid config rom before enabling - the
1265 * OHCI requires that ConfigROMhdr and BusOptions have valid
1266 * values before enabling.
1267 *
1268 * However, when the ConfigROMmap is written, some controllers
1269 * always read back quadlets 0 and 2 from the config rom to
1270 * the ConfigRomHeader and BusOptions registers on bus reset.
1271 * They shouldn't do that in this initial case where the link
1272 * isn't enabled. This means we have to use the same
1273 * workaround here, setting the bus header to 0 and then write
1274 * the right values in the bus reset tasklet.
1275 */
1276
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001277 if (config_rom) {
1278 ohci->next_config_rom =
1279 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1280 &ohci->next_config_rom_bus,
1281 GFP_KERNEL);
1282 if (ohci->next_config_rom == NULL)
1283 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05001284
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001285 memset(ohci->next_config_rom, 0, CONFIG_ROM_SIZE);
1286 fw_memcpy_to_be32(ohci->next_config_rom, config_rom, length * 4);
1287 } else {
1288 /*
1289 * In the suspend case, config_rom is NULL, which
1290 * means that we just reuse the old config rom.
1291 */
1292 ohci->next_config_rom = ohci->config_rom;
1293 ohci->next_config_rom_bus = ohci->config_rom_bus;
1294 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001295
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001296 ohci->next_header = be32_to_cpu(ohci->next_config_rom[0]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001297 ohci->next_config_rom[0] = 0;
1298 reg_write(ohci, OHCI1394_ConfigROMhdr, 0);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001299 reg_write(ohci, OHCI1394_BusOptions,
1300 be32_to_cpu(ohci->next_config_rom[2]));
Kristian Høgsberged568912006-12-19 19:58:35 -05001301 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
1302
1303 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
1304
1305 if (request_irq(dev->irq, irq_handler,
Thomas Gleixner65efffa2007-03-05 18:19:51 -08001306 IRQF_SHARED, ohci_driver_name, ohci)) {
Kristian Høgsberged568912006-12-19 19:58:35 -05001307 fw_error("Failed to allocate shared interrupt %d.\n",
1308 dev->irq);
1309 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1310 ohci->config_rom, ohci->config_rom_bus);
1311 return -EIO;
1312 }
1313
1314 reg_write(ohci, OHCI1394_HCControlSet,
1315 OHCI1394_HCControl_linkEnable |
1316 OHCI1394_HCControl_BIBimageValid);
1317 flush_writes(ohci);
1318
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001319 /*
1320 * We are ready to go, initiate bus reset to finish the
1321 * initialization.
1322 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001323
1324 fw_core_initiate_bus_reset(&ohci->card, 1);
1325
1326 return 0;
1327}
1328
1329static int
1330ohci_set_config_rom(struct fw_card *card, u32 *config_rom, size_t length)
1331{
1332 struct fw_ohci *ohci;
1333 unsigned long flags;
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001334 int retval = -EBUSY;
Kristian Høgsberged568912006-12-19 19:58:35 -05001335 __be32 *next_config_rom;
Stefan Richterf5101d582008-03-14 00:27:49 +01001336 dma_addr_t uninitialized_var(next_config_rom_bus);
Kristian Høgsberged568912006-12-19 19:58:35 -05001337
1338 ohci = fw_ohci(card);
1339
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001340 /*
1341 * When the OHCI controller is enabled, the config rom update
Kristian Høgsberged568912006-12-19 19:58:35 -05001342 * mechanism is a bit tricky, but easy enough to use. See
1343 * section 5.5.6 in the OHCI specification.
1344 *
1345 * The OHCI controller caches the new config rom address in a
1346 * shadow register (ConfigROMmapNext) and needs a bus reset
1347 * for the changes to take place. When the bus reset is
1348 * detected, the controller loads the new values for the
1349 * ConfigRomHeader and BusOptions registers from the specified
1350 * config rom and loads ConfigROMmap from the ConfigROMmapNext
1351 * shadow register. All automatically and atomically.
1352 *
1353 * Now, there's a twist to this story. The automatic load of
1354 * ConfigRomHeader and BusOptions doesn't honor the
1355 * noByteSwapData bit, so with a be32 config rom, the
1356 * controller will load be32 values in to these registers
1357 * during the atomic update, even on litte endian
1358 * architectures. The workaround we use is to put a 0 in the
1359 * header quadlet; 0 is endian agnostic and means that the
1360 * config rom isn't ready yet. In the bus reset tasklet we
1361 * then set up the real values for the two registers.
1362 *
1363 * We use ohci->lock to avoid racing with the code that sets
1364 * ohci->next_config_rom to NULL (see bus_reset_tasklet).
1365 */
1366
1367 next_config_rom =
1368 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1369 &next_config_rom_bus, GFP_KERNEL);
1370 if (next_config_rom == NULL)
1371 return -ENOMEM;
1372
1373 spin_lock_irqsave(&ohci->lock, flags);
1374
1375 if (ohci->next_config_rom == NULL) {
1376 ohci->next_config_rom = next_config_rom;
1377 ohci->next_config_rom_bus = next_config_rom_bus;
1378
1379 memset(ohci->next_config_rom, 0, CONFIG_ROM_SIZE);
1380 fw_memcpy_to_be32(ohci->next_config_rom, config_rom,
1381 length * 4);
1382
1383 ohci->next_header = config_rom[0];
1384 ohci->next_config_rom[0] = 0;
1385
1386 reg_write(ohci, OHCI1394_ConfigROMmap,
1387 ohci->next_config_rom_bus);
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001388 retval = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001389 }
1390
1391 spin_unlock_irqrestore(&ohci->lock, flags);
1392
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001393 /*
1394 * Now initiate a bus reset to have the changes take
Kristian Høgsberged568912006-12-19 19:58:35 -05001395 * effect. We clean up the old config rom memory and DMA
1396 * mappings in the bus reset tasklet, since the OHCI
1397 * controller could need to access it before the bus reset
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001398 * takes effect.
1399 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001400 if (retval == 0)
1401 fw_core_initiate_bus_reset(&ohci->card, 1);
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001402 else
1403 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1404 next_config_rom, next_config_rom_bus);
Kristian Høgsberged568912006-12-19 19:58:35 -05001405
1406 return retval;
1407}
1408
1409static void ohci_send_request(struct fw_card *card, struct fw_packet *packet)
1410{
1411 struct fw_ohci *ohci = fw_ohci(card);
1412
1413 at_context_transmit(&ohci->at_request_ctx, packet);
1414}
1415
1416static void ohci_send_response(struct fw_card *card, struct fw_packet *packet)
1417{
1418 struct fw_ohci *ohci = fw_ohci(card);
1419
1420 at_context_transmit(&ohci->at_response_ctx, packet);
1421}
1422
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001423static int ohci_cancel_packet(struct fw_card *card, struct fw_packet *packet)
1424{
1425 struct fw_ohci *ohci = fw_ohci(card);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001426 struct context *ctx = &ohci->at_request_ctx;
1427 struct driver_data *driver_data = packet->driver_data;
1428 int retval = -ENOENT;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001429
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001430 tasklet_disable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001431
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001432 if (packet->ack != 0)
1433 goto out;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001434
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001435 driver_data->packet = NULL;
1436 packet->ack = RCODE_CANCELLED;
1437 packet->callback(packet, &ohci->card, packet->ack);
1438 retval = 0;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001439
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001440 out:
1441 tasklet_enable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001442
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001443 return retval;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05001444}
1445
Kristian Høgsberged568912006-12-19 19:58:35 -05001446static int
1447ohci_enable_phys_dma(struct fw_card *card, int node_id, int generation)
1448{
Stefan Richter080de8c2008-02-28 20:54:43 +01001449#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
1450 return 0;
1451#else
Kristian Høgsberged568912006-12-19 19:58:35 -05001452 struct fw_ohci *ohci = fw_ohci(card);
1453 unsigned long flags;
Stefan Richter907293d2007-01-23 21:11:43 +01001454 int n, retval = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001455
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001456 /*
1457 * FIXME: Make sure this bitmask is cleared when we clear the busReset
1458 * interrupt bit. Clear physReqResourceAllBuses on bus reset.
1459 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001460
1461 spin_lock_irqsave(&ohci->lock, flags);
1462
1463 if (ohci->generation != generation) {
1464 retval = -ESTALE;
1465 goto out;
1466 }
1467
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001468 /*
1469 * Note, if the node ID contains a non-local bus ID, physical DMA is
1470 * enabled for _all_ nodes on remote buses.
1471 */
Stefan Richter907293d2007-01-23 21:11:43 +01001472
1473 n = (node_id & 0xffc0) == LOCAL_BUS ? node_id & 0x3f : 63;
1474 if (n < 32)
1475 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 1 << n);
1476 else
1477 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 1 << (n - 32));
1478
Kristian Høgsberged568912006-12-19 19:58:35 -05001479 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05001480 out:
Stefan Richter6cad95f2007-01-21 20:46:45 +01001481 spin_unlock_irqrestore(&ohci->lock, flags);
Kristian Høgsberged568912006-12-19 19:58:35 -05001482 return retval;
Stefan Richter080de8c2008-02-28 20:54:43 +01001483#endif /* CONFIG_FIREWIRE_OHCI_REMOTE_DMA */
Kristian Høgsberged568912006-12-19 19:58:35 -05001484}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001485
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05001486static u64
1487ohci_get_bus_time(struct fw_card *card)
1488{
1489 struct fw_ohci *ohci = fw_ohci(card);
1490 u32 cycle_time;
1491 u64 bus_time;
1492
1493 cycle_time = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1494 bus_time = ((u64) ohci->bus_seconds << 32) | cycle_time;
1495
1496 return bus_time;
1497}
1498
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001499static int handle_ir_dualbuffer_packet(struct context *context,
1500 struct descriptor *d,
1501 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05001502{
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001503 struct iso_context *ctx =
1504 container_of(context, struct iso_context, context);
1505 struct db_descriptor *db = (struct db_descriptor *) d;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001506 __le32 *ir_header;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001507 size_t header_length;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001508 void *p, *end;
1509 int i;
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001510
Stefan Richterefbf3902008-02-23 12:24:57 +01001511 if (db->first_res_count != 0 && db->second_res_count != 0) {
David Moore0642b652007-12-19 03:09:18 -05001512 if (ctx->excess_bytes <= le16_to_cpu(db->second_req_count)) {
1513 /* This descriptor isn't done yet, stop iteration. */
1514 return 0;
1515 }
1516 ctx->excess_bytes -= le16_to_cpu(db->second_req_count);
1517 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001518
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001519 header_length = le16_to_cpu(db->first_req_count) -
1520 le16_to_cpu(db->first_res_count);
1521
1522 i = ctx->header_length;
1523 p = db + 1;
1524 end = p + header_length;
1525 while (p < end && i + ctx->base.header_size <= PAGE_SIZE) {
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001526 /*
1527 * The iso header is byteswapped to little endian by
Kristian Høgsberg15536222007-04-10 18:11:16 -04001528 * the controller, but the remaining header quadlets
1529 * are big endian. We want to present all the headers
1530 * as big endian, so we have to swap the first
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001531 * quadlet.
1532 */
Kristian Høgsberg15536222007-04-10 18:11:16 -04001533 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
1534 memcpy(ctx->header + i + 4, p + 8, ctx->base.header_size - 4);
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001535 i += ctx->base.header_size;
David Moore0642b652007-12-19 03:09:18 -05001536 ctx->excess_bytes +=
Stefan Richterefbf3902008-02-23 12:24:57 +01001537 (le32_to_cpu(*(__le32 *)(p + 4)) >> 16) & 0xffff;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001538 p += ctx->base.header_size + 4;
1539 }
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001540 ctx->header_length = i;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001541
David Moore0642b652007-12-19 03:09:18 -05001542 ctx->excess_bytes -= le16_to_cpu(db->second_req_count) -
1543 le16_to_cpu(db->second_res_count);
1544
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001545 if (le16_to_cpu(db->control) & DESCRIPTOR_IRQ_ALWAYS) {
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001546 ir_header = (__le32 *) (db + 1);
1547 ctx->base.callback(&ctx->base,
1548 le32_to_cpu(ir_header[0]) & 0xffff,
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001549 ctx->header_length, ctx->header,
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001550 ctx->base.callback_data);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001551 ctx->header_length = 0;
1552 }
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001553
1554 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001555}
1556
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001557static int handle_ir_packet_per_buffer(struct context *context,
1558 struct descriptor *d,
1559 struct descriptor *last)
1560{
1561 struct iso_context *ctx =
1562 container_of(context, struct iso_context, context);
David Moorebcee8932007-12-19 15:26:38 -05001563 struct descriptor *pd;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001564 __le32 *ir_header;
David Moorebcee8932007-12-19 15:26:38 -05001565 void *p;
1566 int i;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001567
David Moorebcee8932007-12-19 15:26:38 -05001568 for (pd = d; pd <= last; pd++) {
1569 if (pd->transfer_status)
1570 break;
1571 }
1572 if (pd > last)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001573 /* Descriptor(s) not done yet, stop iteration */
1574 return 0;
1575
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001576 i = ctx->header_length;
David Moorebcee8932007-12-19 15:26:38 -05001577 p = last + 1;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001578
David Moorebcee8932007-12-19 15:26:38 -05001579 if (ctx->base.header_size > 0 &&
1580 i + ctx->base.header_size <= PAGE_SIZE) {
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001581 /*
1582 * The iso header is byteswapped to little endian by
1583 * the controller, but the remaining header quadlets
1584 * are big endian. We want to present all the headers
1585 * as big endian, so we have to swap the first quadlet.
1586 */
1587 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
1588 memcpy(ctx->header + i + 4, p + 8, ctx->base.header_size - 4);
David Moorebcee8932007-12-19 15:26:38 -05001589 ctx->header_length += ctx->base.header_size;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001590 }
1591
David Moorebcee8932007-12-19 15:26:38 -05001592 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
1593 ir_header = (__le32 *) p;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001594 ctx->base.callback(&ctx->base,
1595 le32_to_cpu(ir_header[0]) & 0xffff,
1596 ctx->header_length, ctx->header,
1597 ctx->base.callback_data);
1598 ctx->header_length = 0;
1599 }
1600
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001601 return 1;
1602}
1603
Kristian Høgsberg30200732007-02-16 17:34:39 -05001604static int handle_it_packet(struct context *context,
1605 struct descriptor *d,
1606 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05001607{
Kristian Høgsberg30200732007-02-16 17:34:39 -05001608 struct iso_context *ctx =
1609 container_of(context, struct iso_context, context);
Stefan Richter373b2ed2007-03-04 14:45:18 +01001610
Kristian Høgsberg30200732007-02-16 17:34:39 -05001611 if (last->transfer_status == 0)
1612 /* This descriptor isn't done yet, stop iteration. */
1613 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001614
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001615 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS)
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001616 ctx->base.callback(&ctx->base, le16_to_cpu(last->res_count),
1617 0, NULL, ctx->base.callback_data);
Kristian Høgsberged568912006-12-19 19:58:35 -05001618
Kristian Høgsberg30200732007-02-16 17:34:39 -05001619 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001620}
1621
Kristian Høgsberg30200732007-02-16 17:34:39 -05001622static struct fw_iso_context *
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04001623ohci_allocate_iso_context(struct fw_card *card, int type, size_t header_size)
Kristian Høgsberged568912006-12-19 19:58:35 -05001624{
1625 struct fw_ohci *ohci = fw_ohci(card);
1626 struct iso_context *ctx, *list;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001627 descriptor_callback_t callback;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001628 u32 *mask, regs;
Kristian Høgsberged568912006-12-19 19:58:35 -05001629 unsigned long flags;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001630 int index, retval = -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05001631
1632 if (type == FW_ISO_CONTEXT_TRANSMIT) {
1633 mask = &ohci->it_context_mask;
1634 list = ohci->it_context_list;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001635 callback = handle_it_packet;
Kristian Høgsberged568912006-12-19 19:58:35 -05001636 } else {
Stefan Richter373b2ed2007-03-04 14:45:18 +01001637 mask = &ohci->ir_context_mask;
1638 list = ohci->ir_context_list;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001639 if (ohci->version >= OHCI_VERSION_1_1)
1640 callback = handle_ir_dualbuffer_packet;
1641 else
1642 callback = handle_ir_packet_per_buffer;
Kristian Høgsberged568912006-12-19 19:58:35 -05001643 }
1644
1645 spin_lock_irqsave(&ohci->lock, flags);
1646 index = ffs(*mask) - 1;
1647 if (index >= 0)
1648 *mask &= ~(1 << index);
1649 spin_unlock_irqrestore(&ohci->lock, flags);
1650
1651 if (index < 0)
1652 return ERR_PTR(-EBUSY);
1653
Stefan Richter373b2ed2007-03-04 14:45:18 +01001654 if (type == FW_ISO_CONTEXT_TRANSMIT)
1655 regs = OHCI1394_IsoXmitContextBase(index);
1656 else
1657 regs = OHCI1394_IsoRcvContextBase(index);
1658
Kristian Høgsberged568912006-12-19 19:58:35 -05001659 ctx = &list[index];
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001660 memset(ctx, 0, sizeof(*ctx));
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001661 ctx->header_length = 0;
1662 ctx->header = (void *) __get_free_page(GFP_KERNEL);
1663 if (ctx->header == NULL)
1664 goto out;
1665
David Moorefe5ca632008-01-06 17:21:41 -05001666 retval = context_init(&ctx->context, ohci, regs, callback);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001667 if (retval < 0)
1668 goto out_with_header;
Kristian Høgsberged568912006-12-19 19:58:35 -05001669
1670 return &ctx->base;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001671
1672 out_with_header:
1673 free_page((unsigned long)ctx->header);
1674 out:
1675 spin_lock_irqsave(&ohci->lock, flags);
1676 *mask |= 1 << index;
1677 spin_unlock_irqrestore(&ohci->lock, flags);
1678
1679 return ERR_PTR(retval);
Kristian Høgsberged568912006-12-19 19:58:35 -05001680}
1681
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04001682static int ohci_start_iso(struct fw_iso_context *base,
1683 s32 cycle, u32 sync, u32 tags)
Kristian Høgsberged568912006-12-19 19:58:35 -05001684{
Stefan Richter373b2ed2007-03-04 14:45:18 +01001685 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001686 struct fw_ohci *ohci = ctx->context.ohci;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001687 u32 control, match;
Kristian Høgsberged568912006-12-19 19:58:35 -05001688 int index;
1689
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001690 if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
1691 index = ctx - ohci->it_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001692 match = 0;
1693 if (cycle >= 0)
1694 match = IT_CONTEXT_CYCLE_MATCH_ENABLE |
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001695 (cycle & 0x7fff) << 16;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05001696
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001697 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 1 << index);
1698 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, 1 << index);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001699 context_run(&ctx->context, match);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001700 } else {
1701 index = ctx - ohci->ir_context_list;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001702 control = IR_CONTEXT_ISOCH_HEADER;
1703 if (ohci->version >= OHCI_VERSION_1_1)
1704 control |= IR_CONTEXT_DUAL_BUFFER_MODE;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001705 match = (tags << 28) | (sync << 8) | ctx->base.channel;
1706 if (cycle >= 0) {
1707 match |= (cycle & 0x07fff) << 12;
1708 control |= IR_CONTEXT_CYCLE_MATCH_ENABLE;
1709 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001710
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001711 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 1 << index);
1712 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, 1 << index);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001713 reg_write(ohci, CONTEXT_MATCH(ctx->context.regs), match);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04001714 context_run(&ctx->context, control);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001715 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001716
1717 return 0;
1718}
1719
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001720static int ohci_stop_iso(struct fw_iso_context *base)
1721{
1722 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01001723 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001724 int index;
1725
1726 if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
1727 index = ctx - ohci->it_context_list;
1728 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 1 << index);
1729 } else {
1730 index = ctx - ohci->ir_context_list;
1731 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 1 << index);
1732 }
1733 flush_writes(ohci);
1734 context_stop(&ctx->context);
1735
1736 return 0;
1737}
1738
Kristian Høgsberged568912006-12-19 19:58:35 -05001739static void ohci_free_iso_context(struct fw_iso_context *base)
1740{
1741 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01001742 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberged568912006-12-19 19:58:35 -05001743 unsigned long flags;
1744 int index;
1745
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001746 ohci_stop_iso(base);
1747 context_release(&ctx->context);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001748 free_page((unsigned long)ctx->header);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001749
Kristian Høgsberged568912006-12-19 19:58:35 -05001750 spin_lock_irqsave(&ohci->lock, flags);
1751
1752 if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
1753 index = ctx - ohci->it_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05001754 ohci->it_context_mask |= 1 << index;
1755 } else {
1756 index = ctx - ohci->ir_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05001757 ohci->ir_context_mask |= 1 << index;
1758 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001759
1760 spin_unlock_irqrestore(&ohci->lock, flags);
1761}
1762
1763static int
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001764ohci_queue_iso_transmit(struct fw_iso_context *base,
1765 struct fw_iso_packet *packet,
1766 struct fw_iso_buffer *buffer,
1767 unsigned long payload)
Kristian Høgsberged568912006-12-19 19:58:35 -05001768{
Stefan Richter373b2ed2007-03-04 14:45:18 +01001769 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001770 struct descriptor *d, *last, *pd;
Kristian Høgsberged568912006-12-19 19:58:35 -05001771 struct fw_iso_packet *p;
1772 __le32 *header;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001773 dma_addr_t d_bus, page_bus;
Kristian Høgsberged568912006-12-19 19:58:35 -05001774 u32 z, header_z, payload_z, irq;
1775 u32 payload_index, payload_end_index, next_page_index;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001776 int page, end_page, i, length, offset;
Kristian Høgsberged568912006-12-19 19:58:35 -05001777
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øgsberged568912006-12-19 19:58:35 -05001782
1783 p = packet;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001784 payload_index = payload;
Kristian Høgsberged568912006-12-19 19:58:35 -05001785
1786 if (p->skip)
1787 z = 1;
1788 else
1789 z = 2;
1790 if (p->header_length > 0)
1791 z++;
1792
1793 /* Determine the first page the payload isn't contained in. */
1794 end_page = PAGE_ALIGN(payload_index + p->payload_length) >> PAGE_SHIFT;
1795 if (p->payload_length > 0)
1796 payload_z = end_page - (payload_index >> PAGE_SHIFT);
1797 else
1798 payload_z = 0;
1799
1800 z += payload_z;
1801
1802 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001803 header_z = DIV_ROUND_UP(p->header_length, sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05001804
Kristian Høgsberg30200732007-02-16 17:34:39 -05001805 d = context_get_descriptors(&ctx->context, z + header_z, &d_bus);
1806 if (d == NULL)
1807 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05001808
1809 if (!p->skip) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001810 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsberged568912006-12-19 19:58:35 -05001811 d[0].req_count = cpu_to_le16(8);
1812
1813 header = (__le32 *) &d[1];
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001814 header[0] = cpu_to_le32(IT_HEADER_SY(p->sy) |
1815 IT_HEADER_TAG(p->tag) |
1816 IT_HEADER_TCODE(TCODE_STREAM_DATA) |
1817 IT_HEADER_CHANNEL(ctx->base.channel) |
1818 IT_HEADER_SPEED(ctx->base.speed));
Kristian Høgsberged568912006-12-19 19:58:35 -05001819 header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001820 cpu_to_le32(IT_HEADER_DATA_LENGTH(p->header_length +
Kristian Høgsberged568912006-12-19 19:58:35 -05001821 p->payload_length));
1822 }
1823
1824 if (p->header_length > 0) {
1825 d[2].req_count = cpu_to_le16(p->header_length);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001826 d[2].data_address = cpu_to_le32(d_bus + z * sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05001827 memcpy(&d[z], p->header, p->header_length);
1828 }
1829
1830 pd = d + z - payload_z;
1831 payload_end_index = payload_index + p->payload_length;
1832 for (i = 0; i < payload_z; i++) {
1833 page = payload_index >> PAGE_SHIFT;
1834 offset = payload_index & ~PAGE_MASK;
1835 next_page_index = (page + 1) << PAGE_SHIFT;
1836 length =
1837 min(next_page_index, payload_end_index) - payload_index;
1838 pd[i].req_count = cpu_to_le16(length);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001839
1840 page_bus = page_private(buffer->pages[page]);
1841 pd[i].data_address = cpu_to_le32(page_bus + offset);
Kristian Høgsberged568912006-12-19 19:58:35 -05001842
1843 payload_index += length;
1844 }
1845
Kristian Høgsberged568912006-12-19 19:58:35 -05001846 if (p->interrupt)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001847 irq = DESCRIPTOR_IRQ_ALWAYS;
Kristian Høgsberged568912006-12-19 19:58:35 -05001848 else
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001849 irq = DESCRIPTOR_NO_IRQ;
Kristian Høgsberged568912006-12-19 19:58:35 -05001850
Kristian Høgsberg30200732007-02-16 17:34:39 -05001851 last = z == 2 ? d : d + z - 1;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001852 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
1853 DESCRIPTOR_STATUS |
1854 DESCRIPTOR_BRANCH_ALWAYS |
Kristian Høgsbergcbb59da2007-02-16 17:34:35 -05001855 irq);
Kristian Høgsberged568912006-12-19 19:58:35 -05001856
Kristian Høgsberg30200732007-02-16 17:34:39 -05001857 context_append(&ctx->context, d, z, header_z);
Kristian Høgsberged568912006-12-19 19:58:35 -05001858
1859 return 0;
1860}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001861
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -05001862static int
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001863ohci_queue_iso_receive_dualbuffer(struct fw_iso_context *base,
1864 struct fw_iso_packet *packet,
1865 struct fw_iso_buffer *buffer,
1866 unsigned long payload)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001867{
1868 struct iso_context *ctx = container_of(base, struct iso_context, base);
1869 struct db_descriptor *db = NULL;
1870 struct descriptor *d;
1871 struct fw_iso_packet *p;
1872 dma_addr_t d_bus, page_bus;
1873 u32 z, header_z, length, rest;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001874 int page, offset, packet_count, header_size;
Stefan Richter373b2ed2007-03-04 14:45:18 +01001875
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001876 /*
1877 * FIXME: Cycle lost behavior should be configurable: lose
1878 * packet, retransmit or terminate..
1879 */
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001880
1881 p = packet;
1882 z = 2;
1883
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001884 /*
1885 * The OHCI controller puts the status word in the header
1886 * buffer too, so we need 4 extra bytes per packet.
1887 */
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001888 packet_count = p->header_length / ctx->base.header_size;
1889 header_size = packet_count * (ctx->base.header_size + 4);
1890
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001891 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001892 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001893 page = payload >> PAGE_SHIFT;
1894 offset = payload & ~PAGE_MASK;
1895 rest = p->payload_length;
1896
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001897 /* FIXME: make packet-per-buffer/dual-buffer a context option */
1898 while (rest > 0) {
1899 d = context_get_descriptors(&ctx->context,
1900 z + header_z, &d_bus);
1901 if (d == NULL)
1902 return -ENOMEM;
1903
1904 db = (struct db_descriptor *) d;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001905 db->control = cpu_to_le16(DESCRIPTOR_STATUS |
1906 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergc70dc782007-03-14 17:34:53 -04001907 db->first_size = cpu_to_le16(ctx->base.header_size + 4);
David Moore0642b652007-12-19 03:09:18 -05001908 if (p->skip && rest == p->payload_length) {
1909 db->control |= cpu_to_le16(DESCRIPTOR_WAIT);
1910 db->first_req_count = db->first_size;
1911 } else {
1912 db->first_req_count = cpu_to_le16(header_size);
1913 }
Kristian Høgsberg1e1d1962007-02-16 17:34:45 -05001914 db->first_res_count = db->first_req_count;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001915 db->first_buffer = cpu_to_le32(d_bus + sizeof(*db));
Stefan Richter373b2ed2007-03-04 14:45:18 +01001916
David Moore0642b652007-12-19 03:09:18 -05001917 if (p->skip && rest == p->payload_length)
1918 length = 4;
1919 else if (offset + rest < PAGE_SIZE)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001920 length = rest;
1921 else
1922 length = PAGE_SIZE - offset;
1923
Kristian Høgsberg1e1d1962007-02-16 17:34:45 -05001924 db->second_req_count = cpu_to_le16(length);
1925 db->second_res_count = db->second_req_count;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001926 page_bus = page_private(buffer->pages[page]);
1927 db->second_buffer = cpu_to_le32(page_bus + offset);
1928
Kristian Høgsbergcb2d2cd2007-02-16 17:34:47 -05001929 if (p->interrupt && length == rest)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001930 db->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
Kristian Høgsbergcb2d2cd2007-02-16 17:34:47 -05001931
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001932 context_append(&ctx->context, d, z, header_z);
1933 offset = (offset + length) & ~PAGE_MASK;
1934 rest -= length;
David Moore0642b652007-12-19 03:09:18 -05001935 if (offset == 0)
1936 page++;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001937 }
1938
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001939 return 0;
1940}
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05001941
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05001942static int
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001943ohci_queue_iso_receive_packet_per_buffer(struct fw_iso_context *base,
1944 struct fw_iso_packet *packet,
1945 struct fw_iso_buffer *buffer,
1946 unsigned long payload)
1947{
1948 struct iso_context *ctx = container_of(base, struct iso_context, base);
1949 struct descriptor *d = NULL, *pd = NULL;
David Moorebcee8932007-12-19 15:26:38 -05001950 struct fw_iso_packet *p = packet;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001951 dma_addr_t d_bus, page_bus;
1952 u32 z, header_z, rest;
David Moorebcee8932007-12-19 15:26:38 -05001953 int i, j, length;
1954 int page, offset, packet_count, header_size, payload_per_buffer;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001955
1956 /*
1957 * The OHCI controller puts the status word in the
1958 * buffer too, so we need 4 extra bytes per packet.
1959 */
1960 packet_count = p->header_length / ctx->base.header_size;
David Moorebcee8932007-12-19 15:26:38 -05001961 header_size = ctx->base.header_size + 4;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001962
1963 /* Get header size in number of descriptors. */
1964 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
1965 page = payload >> PAGE_SHIFT;
1966 offset = payload & ~PAGE_MASK;
David Moorebcee8932007-12-19 15:26:38 -05001967 payload_per_buffer = p->payload_length / packet_count;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001968
1969 for (i = 0; i < packet_count; i++) {
1970 /* d points to the header descriptor */
David Moorebcee8932007-12-19 15:26:38 -05001971 z = DIV_ROUND_UP(payload_per_buffer + offset, PAGE_SIZE) + 1;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001972 d = context_get_descriptors(&ctx->context,
David Moorebcee8932007-12-19 15:26:38 -05001973 z + header_z, &d_bus);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001974 if (d == NULL)
1975 return -ENOMEM;
1976
David Moorebcee8932007-12-19 15:26:38 -05001977 d->control = cpu_to_le16(DESCRIPTOR_STATUS |
1978 DESCRIPTOR_INPUT_MORE);
1979 if (p->skip && i == 0)
1980 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001981 d->req_count = cpu_to_le16(header_size);
1982 d->res_count = d->req_count;
David Moorebcee8932007-12-19 15:26:38 -05001983 d->transfer_status = 0;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001984 d->data_address = cpu_to_le32(d_bus + (z * sizeof(*d)));
1985
David Moorebcee8932007-12-19 15:26:38 -05001986 rest = payload_per_buffer;
1987 for (j = 1; j < z; j++) {
1988 pd = d + j;
1989 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
1990 DESCRIPTOR_INPUT_MORE);
1991
1992 if (offset + rest < PAGE_SIZE)
1993 length = rest;
1994 else
1995 length = PAGE_SIZE - offset;
1996 pd->req_count = cpu_to_le16(length);
1997 pd->res_count = pd->req_count;
1998 pd->transfer_status = 0;
1999
2000 page_bus = page_private(buffer->pages[page]);
2001 pd->data_address = cpu_to_le32(page_bus + offset);
2002
2003 offset = (offset + length) & ~PAGE_MASK;
2004 rest -= length;
2005 if (offset == 0)
2006 page++;
2007 }
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002008 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
2009 DESCRIPTOR_INPUT_LAST |
2010 DESCRIPTOR_BRANCH_ALWAYS);
David Moorebcee8932007-12-19 15:26:38 -05002011 if (p->interrupt && i == packet_count - 1)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002012 pd->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
2013
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002014 context_append(&ctx->context, d, z, header_z);
2015 }
2016
2017 return 0;
2018}
2019
2020static int
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002021ohci_queue_iso(struct fw_iso_context *base,
2022 struct fw_iso_packet *packet,
2023 struct fw_iso_buffer *buffer,
2024 unsigned long payload)
2025{
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002026 struct iso_context *ctx = container_of(base, struct iso_context, base);
David Moorefe5ca632008-01-06 17:21:41 -05002027 unsigned long flags;
2028 int retval;
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002029
David Moorefe5ca632008-01-06 17:21:41 -05002030 spin_lock_irqsave(&ctx->context.ohci->lock, flags);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002031 if (base->type == FW_ISO_CONTEXT_TRANSMIT)
David Moorefe5ca632008-01-06 17:21:41 -05002032 retval = ohci_queue_iso_transmit(base, packet, buffer, payload);
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002033 else if (ctx->context.ohci->version >= OHCI_VERSION_1_1)
David Moorefe5ca632008-01-06 17:21:41 -05002034 retval = ohci_queue_iso_receive_dualbuffer(base, packet,
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -05002035 buffer, payload);
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002036 else
David Moorefe5ca632008-01-06 17:21:41 -05002037 retval = ohci_queue_iso_receive_packet_per_buffer(base, packet,
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002038 buffer,
2039 payload);
David Moorefe5ca632008-01-06 17:21:41 -05002040 spin_unlock_irqrestore(&ctx->context.ohci->lock, flags);
2041
2042 return retval;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002043}
2044
Stefan Richter21ebcd12007-01-14 15:29:07 +01002045static const struct fw_card_driver ohci_driver = {
Kristian Høgsberged568912006-12-19 19:58:35 -05002046 .name = ohci_driver_name,
2047 .enable = ohci_enable,
2048 .update_phy_reg = ohci_update_phy_reg,
2049 .set_config_rom = ohci_set_config_rom,
2050 .send_request = ohci_send_request,
2051 .send_response = ohci_send_response,
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002052 .cancel_packet = ohci_cancel_packet,
Kristian Høgsberged568912006-12-19 19:58:35 -05002053 .enable_phys_dma = ohci_enable_phys_dma,
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002054 .get_bus_time = ohci_get_bus_time,
Kristian Høgsberged568912006-12-19 19:58:35 -05002055
2056 .allocate_iso_context = ohci_allocate_iso_context,
2057 .free_iso_context = ohci_free_iso_context,
2058 .queue_iso = ohci_queue_iso,
Kristian Høgsberg69cdb722007-02-16 17:34:41 -05002059 .start_iso = ohci_start_iso,
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002060 .stop_iso = ohci_stop_iso,
Kristian Høgsberged568912006-12-19 19:58:35 -05002061};
2062
Stefan Richter2ed0f182008-03-01 12:35:29 +01002063#ifdef CONFIG_PPC_PMAC
2064static void ohci_pmac_on(struct pci_dev *dev)
2065{
2066 if (machine_is(powermac)) {
2067 struct device_node *ofn = pci_device_to_OF_node(dev);
2068
2069 if (ofn) {
2070 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 1);
2071 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 1);
2072 }
2073 }
2074}
2075
2076static void ohci_pmac_off(struct pci_dev *dev)
2077{
2078 if (machine_is(powermac)) {
2079 struct device_node *ofn = pci_device_to_OF_node(dev);
2080
2081 if (ofn) {
2082 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 0);
2083 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 0);
2084 }
2085 }
2086}
2087#else
2088#define ohci_pmac_on(dev)
2089#define ohci_pmac_off(dev)
2090#endif /* CONFIG_PPC_PMAC */
2091
Kristian Høgsberged568912006-12-19 19:58:35 -05002092static int __devinit
2093pci_probe(struct pci_dev *dev, const struct pci_device_id *ent)
2094{
2095 struct fw_ohci *ohci;
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002096 u32 bus_options, max_receive, link_speed;
Kristian Høgsberged568912006-12-19 19:58:35 -05002097 u64 guid;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002098 int err;
Kristian Høgsberged568912006-12-19 19:58:35 -05002099 size_t size;
2100
Stefan Richter2ed0f182008-03-01 12:35:29 +01002101 ohci_pmac_on(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01002102
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04002103 ohci = kzalloc(sizeof(*ohci), GFP_KERNEL);
Kristian Høgsberged568912006-12-19 19:58:35 -05002104 if (ohci == NULL) {
2105 fw_error("Could not malloc fw_ohci data.\n");
2106 return -ENOMEM;
2107 }
2108
2109 fw_card_initialize(&ohci->card, &ohci_driver, &dev->dev);
2110
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002111 err = pci_enable_device(dev);
2112 if (err) {
Kristian Høgsberged568912006-12-19 19:58:35 -05002113 fw_error("Failed to enable OHCI hardware.\n");
Stefan Richterbd7dee62008-02-24 18:59:55 +01002114 goto fail_free;
Kristian Høgsberged568912006-12-19 19:58:35 -05002115 }
2116
2117 pci_set_master(dev);
2118 pci_write_config_dword(dev, OHCI1394_PCI_HCI_Control, 0);
2119 pci_set_drvdata(dev, ohci);
2120
Stefan Richter11bf20a2008-03-01 02:47:15 +01002121#if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
2122 ohci->old_uninorth = dev->vendor == PCI_VENDOR_ID_APPLE &&
2123 dev->device == PCI_DEVICE_ID_APPLE_UNI_N_FW;
2124#endif
Kristian Høgsberged568912006-12-19 19:58:35 -05002125 spin_lock_init(&ohci->lock);
2126
2127 tasklet_init(&ohci->bus_reset_tasklet,
2128 bus_reset_tasklet, (unsigned long)ohci);
2129
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002130 err = pci_request_region(dev, 0, ohci_driver_name);
2131 if (err) {
Kristian Høgsberged568912006-12-19 19:58:35 -05002132 fw_error("MMIO resource unavailable\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002133 goto fail_disable;
Kristian Høgsberged568912006-12-19 19:58:35 -05002134 }
2135
2136 ohci->registers = pci_iomap(dev, 0, OHCI1394_REGISTER_SIZE);
2137 if (ohci->registers == NULL) {
2138 fw_error("Failed to remap registers\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002139 err = -ENXIO;
2140 goto fail_iomem;
Kristian Høgsberged568912006-12-19 19:58:35 -05002141 }
2142
Kristian Høgsberged568912006-12-19 19:58:35 -05002143 ar_context_init(&ohci->ar_request_ctx, ohci,
2144 OHCI1394_AsReqRcvContextControlSet);
2145
2146 ar_context_init(&ohci->ar_response_ctx, ohci,
2147 OHCI1394_AsRspRcvContextControlSet);
2148
David Moorefe5ca632008-01-06 17:21:41 -05002149 context_init(&ohci->at_request_ctx, ohci,
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002150 OHCI1394_AsReqTrContextControlSet, handle_at_packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05002151
David Moorefe5ca632008-01-06 17:21:41 -05002152 context_init(&ohci->at_response_ctx, ohci,
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002153 OHCI1394_AsRspTrContextControlSet, handle_at_packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05002154
Kristian Høgsberged568912006-12-19 19:58:35 -05002155 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, ~0);
2156 ohci->it_context_mask = reg_read(ohci, OHCI1394_IsoRecvIntMaskSet);
2157 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, ~0);
2158 size = sizeof(struct iso_context) * hweight32(ohci->it_context_mask);
2159 ohci->it_context_list = kzalloc(size, GFP_KERNEL);
2160
2161 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, ~0);
2162 ohci->ir_context_mask = reg_read(ohci, OHCI1394_IsoXmitIntMaskSet);
2163 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, ~0);
2164 size = sizeof(struct iso_context) * hweight32(ohci->ir_context_mask);
2165 ohci->ir_context_list = kzalloc(size, GFP_KERNEL);
2166
2167 if (ohci->it_context_list == NULL || ohci->ir_context_list == NULL) {
2168 fw_error("Out of memory for it/ir contexts.\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002169 err = -ENOMEM;
2170 goto fail_registers;
Kristian Høgsberged568912006-12-19 19:58:35 -05002171 }
2172
2173 /* self-id dma buffer allocation */
2174 ohci->self_id_cpu = dma_alloc_coherent(ohci->card.device,
2175 SELF_ID_BUF_SIZE,
2176 &ohci->self_id_bus,
2177 GFP_KERNEL);
2178 if (ohci->self_id_cpu == NULL) {
2179 fw_error("Out of memory for self ID buffer.\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002180 err = -ENOMEM;
2181 goto fail_registers;
Kristian Høgsberged568912006-12-19 19:58:35 -05002182 }
2183
Kristian Høgsberged568912006-12-19 19:58:35 -05002184 bus_options = reg_read(ohci, OHCI1394_BusOptions);
2185 max_receive = (bus_options >> 12) & 0xf;
2186 link_speed = bus_options & 0x7;
2187 guid = ((u64) reg_read(ohci, OHCI1394_GUIDHi) << 32) |
2188 reg_read(ohci, OHCI1394_GUIDLo);
2189
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002190 err = fw_card_add(&ohci->card, max_receive, link_speed, guid);
2191 if (err < 0)
2192 goto fail_self_id;
Kristian Høgsberged568912006-12-19 19:58:35 -05002193
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002194 ohci->version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
Kristian Høgsberg500be722007-02-16 17:34:43 -05002195 fw_notify("Added fw-ohci device %s, OHCI version %x.%x\n",
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002196 dev->dev.bus_id, ohci->version >> 16, ohci->version & 0xff);
Kristian Høgsberged568912006-12-19 19:58:35 -05002197 return 0;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002198
2199 fail_self_id:
2200 dma_free_coherent(ohci->card.device, SELF_ID_BUF_SIZE,
2201 ohci->self_id_cpu, ohci->self_id_bus);
2202 fail_registers:
2203 kfree(ohci->it_context_list);
2204 kfree(ohci->ir_context_list);
2205 pci_iounmap(dev, ohci->registers);
2206 fail_iomem:
2207 pci_release_region(dev, 0);
2208 fail_disable:
2209 pci_disable_device(dev);
Stefan Richterbd7dee62008-02-24 18:59:55 +01002210 fail_free:
2211 kfree(&ohci->card);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002212
2213 return err;
Kristian Høgsberged568912006-12-19 19:58:35 -05002214}
2215
2216static void pci_remove(struct pci_dev *dev)
2217{
2218 struct fw_ohci *ohci;
2219
2220 ohci = pci_get_drvdata(dev);
Kristian Høgsberge254a4b2007-03-07 12:12:38 -05002221 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
2222 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002223 fw_core_remove_card(&ohci->card);
2224
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002225 /*
2226 * FIXME: Fail all pending packets here, now that the upper
2227 * layers can't queue any more.
2228 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002229
2230 software_reset(ohci);
2231 free_irq(dev->irq, ohci);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002232 dma_free_coherent(ohci->card.device, SELF_ID_BUF_SIZE,
2233 ohci->self_id_cpu, ohci->self_id_bus);
2234 kfree(ohci->it_context_list);
2235 kfree(ohci->ir_context_list);
2236 pci_iounmap(dev, ohci->registers);
2237 pci_release_region(dev, 0);
2238 pci_disable_device(dev);
Stefan Richterbd7dee62008-02-24 18:59:55 +01002239 kfree(&ohci->card);
Stefan Richter2ed0f182008-03-01 12:35:29 +01002240 ohci_pmac_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01002241
Kristian Høgsberged568912006-12-19 19:58:35 -05002242 fw_notify("Removed fw-ohci device.\n");
2243}
2244
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002245#ifdef CONFIG_PM
Stefan Richter2ed0f182008-03-01 12:35:29 +01002246static int pci_suspend(struct pci_dev *dev, pm_message_t state)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002247{
Stefan Richter2ed0f182008-03-01 12:35:29 +01002248 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002249 int err;
2250
2251 software_reset(ohci);
Stefan Richter2ed0f182008-03-01 12:35:29 +01002252 free_irq(dev->irq, ohci);
2253 err = pci_save_state(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002254 if (err) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02002255 fw_error("pci_save_state failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002256 return err;
2257 }
Stefan Richter2ed0f182008-03-01 12:35:29 +01002258 err = pci_set_power_state(dev, pci_choose_state(dev, state));
Stefan Richter55111422007-09-06 09:50:30 +02002259 if (err)
2260 fw_error("pci_set_power_state failed with %d\n", err);
Stefan Richter2ed0f182008-03-01 12:35:29 +01002261 ohci_pmac_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01002262
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002263 return 0;
2264}
2265
Stefan Richter2ed0f182008-03-01 12:35:29 +01002266static int pci_resume(struct pci_dev *dev)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002267{
Stefan Richter2ed0f182008-03-01 12:35:29 +01002268 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002269 int err;
2270
Stefan Richter2ed0f182008-03-01 12:35:29 +01002271 ohci_pmac_on(dev);
2272 pci_set_power_state(dev, PCI_D0);
2273 pci_restore_state(dev);
2274 err = pci_enable_device(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002275 if (err) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02002276 fw_error("pci_enable_device failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002277 return err;
2278 }
2279
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002280 return ohci_enable(&ohci->card, NULL, 0);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002281}
2282#endif
2283
Kristian Høgsberged568912006-12-19 19:58:35 -05002284static struct pci_device_id pci_table[] = {
2285 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_FIREWIRE_OHCI, ~0) },
2286 { }
2287};
2288
2289MODULE_DEVICE_TABLE(pci, pci_table);
2290
2291static struct pci_driver fw_ohci_pci_driver = {
2292 .name = ohci_driver_name,
2293 .id_table = pci_table,
2294 .probe = pci_probe,
2295 .remove = pci_remove,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002296#ifdef CONFIG_PM
2297 .resume = pci_resume,
2298 .suspend = pci_suspend,
2299#endif
Kristian Høgsberged568912006-12-19 19:58:35 -05002300};
2301
2302MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
2303MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers");
2304MODULE_LICENSE("GPL");
2305
Olaf Hering1e4c7b02007-05-05 23:17:13 +02002306/* Provide a module alias so root-on-sbp2 initrds don't break. */
2307#ifndef CONFIG_IEEE1394_OHCI1394_MODULE
2308MODULE_ALIAS("ohci1394");
2309#endif
2310
Kristian Høgsberged568912006-12-19 19:58:35 -05002311static int __init fw_ohci_init(void)
2312{
2313 return pci_register_driver(&fw_ohci_pci_driver);
2314}
2315
2316static void __exit fw_ohci_cleanup(void)
2317{
2318 pci_unregister_driver(&fw_ohci_pci_driver);
2319}
2320
2321module_init(fw_ohci_init);
2322module_exit(fw_ohci_cleanup);