blob: ee235b53777465481f7fb2b6c33eb337983e27f0 [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
Maxim Levitskydd237362010-11-29 04:09:50 +020021#include <linux/bitops.h>
Stefan Richter65b27422010-06-12 20:26:51 +020022#include <linux/bug.h>
Stefan Richtere524f6162007-08-20 21:58:30 +020023#include <linux/compiler.h>
Kristian Høgsberged568912006-12-19 19:58:35 -050024#include <linux/delay.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020025#include <linux/device.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080026#include <linux/dma-mapping.h>
Stefan Richter77c9a5d2009-06-05 16:26:18 +020027#include <linux/firewire.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020028#include <linux/firewire-constants.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020029#include <linux/init.h>
30#include <linux/interrupt.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020031#include <linux/io.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020032#include <linux/kernel.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020033#include <linux/list.h>
Al Virofaa2fb42007-05-15 20:36:10 +010034#include <linux/mm.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020035#include <linux/module.h>
Stefan Richterad3c0fe2008-03-20 22:04:36 +010036#include <linux/moduleparam.h>
Stefan Richter02d37be2010-07-08 16:09:06 +020037#include <linux/mutex.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020038#include <linux/pci.h>
Stefan Richterfc383792009-08-28 13:25:15 +020039#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Stefan Richterc26f0232007-08-20 21:40:30 +020041#include <linux/spinlock.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020042#include <linux/string.h>
Stefan Richtere78483c2010-08-02 09:33:25 +020043#include <linux/time.h>
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +010044#include <linux/vmalloc.h>
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +020045#include <linux/workqueue.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080046
Stefan Richtere8ca9702009-06-04 21:09:38 +020047#include <asm/byteorder.h>
Stefan Richterc26f0232007-08-20 21:40:30 +020048#include <asm/page.h>
Stefan Richteree71c2f2007-08-25 14:08:19 +020049#include <asm/system.h>
Kristian Høgsberged568912006-12-19 19:58:35 -050050
Stefan Richterea8d0062008-03-01 02:42:56 +010051#ifdef CONFIG_PPC_PMAC
52#include <asm/pmac_feature.h>
53#endif
54
Stefan Richter77c9a5d2009-06-05 16:26:18 +020055#include "core.h"
56#include "ohci.h"
Kristian Høgsberged568912006-12-19 19:58:35 -050057
Kristian Høgsberga77754a2007-05-07 20:33:35 -040058#define DESCRIPTOR_OUTPUT_MORE 0
59#define DESCRIPTOR_OUTPUT_LAST (1 << 12)
60#define DESCRIPTOR_INPUT_MORE (2 << 12)
61#define DESCRIPTOR_INPUT_LAST (3 << 12)
62#define DESCRIPTOR_STATUS (1 << 11)
63#define DESCRIPTOR_KEY_IMMEDIATE (2 << 8)
64#define DESCRIPTOR_PING (1 << 7)
65#define DESCRIPTOR_YY (1 << 6)
66#define DESCRIPTOR_NO_IRQ (0 << 4)
67#define DESCRIPTOR_IRQ_ERROR (1 << 4)
68#define DESCRIPTOR_IRQ_ALWAYS (3 << 4)
69#define DESCRIPTOR_BRANCH_ALWAYS (3 << 2)
70#define DESCRIPTOR_WAIT (3 << 0)
Kristian Høgsberged568912006-12-19 19:58:35 -050071
72struct descriptor {
73 __le16 req_count;
74 __le16 control;
75 __le32 data_address;
76 __le32 branch_address;
77 __le16 res_count;
78 __le16 transfer_status;
79} __attribute__((aligned(16)));
80
Kristian Høgsberga77754a2007-05-07 20:33:35 -040081#define CONTROL_SET(regs) (regs)
82#define CONTROL_CLEAR(regs) ((regs) + 4)
83#define COMMAND_PTR(regs) ((regs) + 12)
84#define CONTEXT_MATCH(regs) ((regs) + 16)
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050085
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +010086#define AR_BUFFER_SIZE (32*1024)
87#define AR_BUFFERS_MIN DIV_ROUND_UP(AR_BUFFER_SIZE, PAGE_SIZE)
88/* we need at least two pages for proper list management */
89#define AR_BUFFERS (AR_BUFFERS_MIN >= 2 ? AR_BUFFERS_MIN : 2)
90
91#define MAX_ASYNC_PAYLOAD 4096
92#define MAX_AR_PACKET_SIZE (16 + MAX_ASYNC_PAYLOAD + 4)
93#define AR_WRAPAROUND_PAGES DIV_ROUND_UP(MAX_AR_PACKET_SIZE, PAGE_SIZE)
Kristian Høgsberg32b46092007-02-06 14:49:30 -050094
Kristian Høgsberged568912006-12-19 19:58:35 -050095struct ar_context {
96 struct fw_ohci *ohci;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +010097 struct page *pages[AR_BUFFERS];
98 void *buffer;
99 struct descriptor *descriptors;
100 dma_addr_t descriptors_bus;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500101 void *pointer;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100102 unsigned int last_buffer_index;
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500103 u32 regs;
Kristian Høgsberged568912006-12-19 19:58:35 -0500104 struct tasklet_struct tasklet;
105};
106
Kristian Høgsberg30200732007-02-16 17:34:39 -0500107struct context;
108
109typedef int (*descriptor_callback_t)(struct context *ctx,
110 struct descriptor *d,
111 struct descriptor *last);
David Moorefe5ca632008-01-06 17:21:41 -0500112
113/*
114 * A buffer that contains a block of DMA-able coherent memory used for
115 * storing a portion of a DMA descriptor program.
116 */
117struct descriptor_buffer {
118 struct list_head list;
119 dma_addr_t buffer_bus;
120 size_t buffer_size;
121 size_t used;
122 struct descriptor buffer[0];
123};
124
Kristian Høgsberg30200732007-02-16 17:34:39 -0500125struct context {
Stefan Richter373b2ed2007-03-04 14:45:18 +0100126 struct fw_ohci *ohci;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500127 u32 regs;
David Moorefe5ca632008-01-06 17:21:41 -0500128 int total_allocation;
Clemens Ladischa572e682011-10-15 23:12:23 +0200129 u32 current_bus;
Clemens Ladisch386a4152010-12-24 14:42:46 +0100130 bool running;
Clemens Ladisch82b662d2010-12-24 14:40:15 +0100131 bool flushing;
Stefan Richter373b2ed2007-03-04 14:45:18 +0100132
David Moorefe5ca632008-01-06 17:21:41 -0500133 /*
134 * List of page-sized buffers for storing DMA descriptors.
135 * Head of list contains buffers in use and tail of list contains
136 * free buffers.
137 */
138 struct list_head buffer_list;
139
140 /*
141 * Pointer to a buffer inside buffer_list that contains the tail
142 * end of the current DMA program.
143 */
144 struct descriptor_buffer *buffer_tail;
145
146 /*
147 * The descriptor containing the branch address of the first
148 * descriptor that has not yet been filled by the device.
149 */
150 struct descriptor *last;
151
152 /*
153 * The last descriptor in the DMA program. It contains the branch
154 * address that must be updated upon appending a new descriptor.
155 */
156 struct descriptor *prev;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500157
158 descriptor_callback_t callback;
159
Stefan Richter373b2ed2007-03-04 14:45:18 +0100160 struct tasklet_struct tasklet;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500161};
Kristian Høgsberg30200732007-02-16 17:34:39 -0500162
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400163#define IT_HEADER_SY(v) ((v) << 0)
164#define IT_HEADER_TCODE(v) ((v) << 4)
165#define IT_HEADER_CHANNEL(v) ((v) << 8)
166#define IT_HEADER_TAG(v) ((v) << 14)
167#define IT_HEADER_SPEED(v) ((v) << 16)
168#define IT_HEADER_DATA_LENGTH(v) ((v) << 16)
Kristian Høgsberged568912006-12-19 19:58:35 -0500169
170struct iso_context {
171 struct fw_iso_context base;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500172 struct context context;
David Moore0642b652007-12-19 03:09:18 -0500173 int excess_bytes;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500174 void *header;
175 size_t header_length;
Maxim Levitskydd237362010-11-29 04:09:50 +0200176
177 u8 sync;
178 u8 tags;
Kristian Høgsberged568912006-12-19 19:58:35 -0500179};
180
181#define CONFIG_ROM_SIZE 1024
182
183struct fw_ohci {
184 struct fw_card card;
185
186 __iomem char *registers;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500187 int node_id;
Kristian Høgsberged568912006-12-19 19:58:35 -0500188 int generation;
Stefan Richtere09770d2008-03-11 02:23:29 +0100189 int request_generation; /* for timestamping incoming requests */
Stefan Richter4a635592010-02-21 17:58:01 +0100190 unsigned quirks;
Clemens Ladischa1a11322010-06-10 08:35:06 +0200191 unsigned int pri_req_max;
Clemens Ladischa48777e2010-06-10 08:33:07 +0200192 u32 bus_time;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +0200193 bool is_root;
Stefan Richterc8a94de2010-06-12 20:34:50 +0200194 bool csr_state_setclear_abdicate;
Maxim Levitskydd237362010-11-29 04:09:50 +0200195 int n_ir;
196 int n_it;
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400197 /*
198 * Spinlock for accessing fw_ohci data. Never call out of
199 * this driver with this lock held.
200 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500201 spinlock_t lock;
Kristian Høgsberged568912006-12-19 19:58:35 -0500202
Stefan Richter02d37be2010-07-08 16:09:06 +0200203 struct mutex phy_reg_mutex;
204
Clemens Ladischec766a72010-11-30 08:25:17 +0100205 void *misc_buffer;
206 dma_addr_t misc_buffer_bus;
207
Kristian Høgsberged568912006-12-19 19:58:35 -0500208 struct ar_context ar_request_ctx;
209 struct ar_context ar_response_ctx;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500210 struct context at_request_ctx;
211 struct context at_response_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -0500212
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100213 u32 it_context_support;
Stefan Richter872e3302010-07-29 18:19:22 +0200214 u32 it_context_mask; /* unoccupied IT contexts */
Kristian Høgsberged568912006-12-19 19:58:35 -0500215 struct iso_context *it_context_list;
Stefan Richter872e3302010-07-29 18:19:22 +0200216 u64 ir_context_channels; /* unoccupied channels */
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100217 u32 ir_context_support;
Stefan Richter872e3302010-07-29 18:19:22 +0200218 u32 ir_context_mask; /* unoccupied IR contexts */
Kristian Høgsberged568912006-12-19 19:58:35 -0500219 struct iso_context *ir_context_list;
Stefan Richter872e3302010-07-29 18:19:22 +0200220 u64 mc_channels; /* channels in use by the multichannel IR context */
221 bool mc_allocated;
Stefan Richterecb1cf92010-02-21 17:57:32 +0100222
223 __be32 *config_rom;
224 dma_addr_t config_rom_bus;
225 __be32 *next_config_rom;
226 dma_addr_t next_config_rom_bus;
227 __be32 next_header;
228
229 __le32 *self_id_cpu;
230 dma_addr_t self_id_bus;
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +0200231 struct work_struct bus_reset_work;
Stefan Richterecb1cf92010-02-21 17:57:32 +0100232
233 u32 self_id_buffer[512];
Kristian Høgsberged568912006-12-19 19:58:35 -0500234};
235
Adrian Bunk95688e92007-01-22 19:17:37 +0100236static inline struct fw_ohci *fw_ohci(struct fw_card *card)
Kristian Høgsberged568912006-12-19 19:58:35 -0500237{
238 return container_of(card, struct fw_ohci, card);
239}
240
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500241#define IT_CONTEXT_CYCLE_MATCH_ENABLE 0x80000000
242#define IR_CONTEXT_BUFFER_FILL 0x80000000
243#define IR_CONTEXT_ISOCH_HEADER 0x40000000
244#define IR_CONTEXT_CYCLE_MATCH_ENABLE 0x20000000
245#define IR_CONTEXT_MULTI_CHANNEL_MODE 0x10000000
246#define IR_CONTEXT_DUAL_BUFFER_MODE 0x08000000
Kristian Høgsberged568912006-12-19 19:58:35 -0500247
248#define CONTEXT_RUN 0x8000
249#define CONTEXT_WAKE 0x1000
250#define CONTEXT_DEAD 0x0800
251#define CONTEXT_ACTIVE 0x0400
252
Stefan Richter8b7b6af2009-01-20 19:10:58 +0100253#define OHCI1394_MAX_AT_REQ_RETRIES 0xf
Kristian Høgsberged568912006-12-19 19:58:35 -0500254#define OHCI1394_MAX_AT_RESP_RETRIES 0x2
255#define OHCI1394_MAX_PHYS_RESP_RETRIES 0x8
256
Kristian Høgsberged568912006-12-19 19:58:35 -0500257#define OHCI1394_REGISTER_SIZE 0x800
Kristian Høgsberged568912006-12-19 19:58:35 -0500258#define OHCI1394_PCI_HCI_Control 0x40
259#define SELF_ID_BUF_SIZE 0x800
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500260#define OHCI_TCODE_PHY_PACKET 0x0e
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500261#define OHCI_VERSION_1_1 0x010010
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500262
Kristian Høgsberged568912006-12-19 19:58:35 -0500263static char ohci_driver_name[] = KBUILD_MODNAME;
264
Stefan Richter9993e0f2010-12-07 20:32:40 +0100265#define PCI_DEVICE_ID_AGERE_FW643 0x5901
Clemens Ladisch262444e2010-06-05 12:31:25 +0200266#define PCI_DEVICE_ID_JMICRON_JMB38X_FW 0x2380
Clemens Ladisch8301b912010-03-17 11:07:55 +0100267#define PCI_DEVICE_ID_TI_TSB12LV22 0x8009
Stephan Gatzka25935eb2011-09-12 22:23:53 +0200268#define PCI_DEVICE_ID_TI_TSB12LV26 0x8020
269#define PCI_DEVICE_ID_TI_TSB82AA2 0x8025
Stefan Richter7f7e37112011-07-10 00:23:03 +0200270#define PCI_VENDOR_ID_PINNACLE_SYSTEMS 0x11bd
Clemens Ladisch8301b912010-03-17 11:07:55 +0100271
Stefan Richter4a635592010-02-21 17:58:01 +0100272#define QUIRK_CYCLE_TIMER 1
273#define QUIRK_RESET_PACKET 2
274#define QUIRK_BE_HEADERS 4
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200275#define QUIRK_NO_1394A 8
Clemens Ladisch262444e2010-06-05 12:31:25 +0200276#define QUIRK_NO_MSI 16
Stephan Gatzka25935eb2011-09-12 22:23:53 +0200277#define QUIRK_TI_SLLZ059 32
Stefan Richter4a635592010-02-21 17:58:01 +0100278
279/* In case of multiple matches in ohci_quirks[], only the first one is used. */
280static const struct {
Stefan Richter9993e0f2010-12-07 20:32:40 +0100281 unsigned short vendor, device, revision, flags;
Stefan Richter4a635592010-02-21 17:58:01 +0100282} ohci_quirks[] = {
Stefan Richter9993e0f2010-12-07 20:32:40 +0100283 {PCI_VENDOR_ID_AL, PCI_ANY_ID, PCI_ANY_ID,
284 QUIRK_CYCLE_TIMER},
285
286 {PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_FW, PCI_ANY_ID,
287 QUIRK_BE_HEADERS},
288
289 {PCI_VENDOR_ID_ATT, PCI_DEVICE_ID_AGERE_FW643, 6,
290 QUIRK_NO_MSI},
291
292 {PCI_VENDOR_ID_JMICRON, PCI_DEVICE_ID_JMICRON_JMB38X_FW, PCI_ANY_ID,
293 QUIRK_NO_MSI},
294
295 {PCI_VENDOR_ID_NEC, PCI_ANY_ID, PCI_ANY_ID,
296 QUIRK_CYCLE_TIMER},
297
Ming Leif39aa302011-08-31 10:45:46 +0800298 {PCI_VENDOR_ID_O2, PCI_ANY_ID, PCI_ANY_ID,
299 QUIRK_NO_MSI},
300
Stefan Richter9993e0f2010-12-07 20:32:40 +0100301 {PCI_VENDOR_ID_RICOH, PCI_ANY_ID, PCI_ANY_ID,
302 QUIRK_CYCLE_TIMER},
303
304 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV22, PCI_ANY_ID,
305 QUIRK_CYCLE_TIMER | QUIRK_RESET_PACKET | QUIRK_NO_1394A},
306
Stephan Gatzka25935eb2011-09-12 22:23:53 +0200307 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV26, PCI_ANY_ID,
308 QUIRK_RESET_PACKET | QUIRK_TI_SLLZ059},
309
310 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB82AA2, PCI_ANY_ID,
311 QUIRK_RESET_PACKET | QUIRK_TI_SLLZ059},
312
Stefan Richter9993e0f2010-12-07 20:32:40 +0100313 {PCI_VENDOR_ID_TI, PCI_ANY_ID, PCI_ANY_ID,
314 QUIRK_RESET_PACKET},
315
316 {PCI_VENDOR_ID_VIA, PCI_ANY_ID, PCI_ANY_ID,
317 QUIRK_CYCLE_TIMER | QUIRK_NO_MSI},
Stefan Richter4a635592010-02-21 17:58:01 +0100318};
319
Stefan Richter3e9cc2f2010-02-21 17:58:29 +0100320/* This overrides anything that was found in ohci_quirks[]. */
321static int param_quirks;
322module_param_named(quirks, param_quirks, int, 0644);
323MODULE_PARM_DESC(quirks, "Chip quirks (default = 0"
324 ", nonatomic cycle timer = " __stringify(QUIRK_CYCLE_TIMER)
325 ", reset packet generation = " __stringify(QUIRK_RESET_PACKET)
326 ", AR/selfID endianess = " __stringify(QUIRK_BE_HEADERS)
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200327 ", no 1394a enhancements = " __stringify(QUIRK_NO_1394A)
Clemens Ladisch262444e2010-06-05 12:31:25 +0200328 ", disable MSI = " __stringify(QUIRK_NO_MSI)
Stefan Richter28897fb2011-09-19 00:17:37 +0200329 ", TI SLLZ059 erratum = " __stringify(QUIRK_TI_SLLZ059)
Stefan Richter3e9cc2f2010-02-21 17:58:29 +0100330 ")");
331
Stefan Richtera007bb82008-04-07 22:33:35 +0200332#define OHCI_PARAM_DEBUG_AT_AR 1
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100333#define OHCI_PARAM_DEBUG_SELFIDS 2
Stefan Richtera007bb82008-04-07 22:33:35 +0200334#define OHCI_PARAM_DEBUG_IRQS 4
335#define OHCI_PARAM_DEBUG_BUSRESETS 8 /* only effective before chip init */
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100336
Stefan Richter5da3dac2010-04-02 14:05:02 +0200337#ifdef CONFIG_FIREWIRE_OHCI_DEBUG
338
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100339static int param_debug;
340module_param_named(debug, param_debug, int, 0644);
341MODULE_PARM_DESC(debug, "Verbose logging (default = 0"
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100342 ", AT/AR events = " __stringify(OHCI_PARAM_DEBUG_AT_AR)
Stefan Richtera007bb82008-04-07 22:33:35 +0200343 ", self-IDs = " __stringify(OHCI_PARAM_DEBUG_SELFIDS)
344 ", IRQs = " __stringify(OHCI_PARAM_DEBUG_IRQS)
345 ", busReset events = " __stringify(OHCI_PARAM_DEBUG_BUSRESETS)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100346 ", or a combination, or all = -1)");
347
Stefan Richter64d21722011-12-20 21:32:46 +0100348static void log_irqs(struct fw_ohci *ohci, u32 evt)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100349{
Stefan Richtera007bb82008-04-07 22:33:35 +0200350 if (likely(!(param_debug &
351 (OHCI_PARAM_DEBUG_IRQS | OHCI_PARAM_DEBUG_BUSRESETS))))
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100352 return;
353
Stefan Richtera007bb82008-04-07 22:33:35 +0200354 if (!(param_debug & OHCI_PARAM_DEBUG_IRQS) &&
355 !(evt & OHCI1394_busReset))
356 return;
357
Stefan Richter64d21722011-12-20 21:32:46 +0100358 dev_notice(ohci->card.device,
359 "IRQ %08x%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", evt,
Stefan Richter161b96e2008-06-14 14:23:43 +0200360 evt & OHCI1394_selfIDComplete ? " selfID" : "",
361 evt & OHCI1394_RQPkt ? " AR_req" : "",
362 evt & OHCI1394_RSPkt ? " AR_resp" : "",
363 evt & OHCI1394_reqTxComplete ? " AT_req" : "",
364 evt & OHCI1394_respTxComplete ? " AT_resp" : "",
365 evt & OHCI1394_isochRx ? " IR" : "",
366 evt & OHCI1394_isochTx ? " IT" : "",
367 evt & OHCI1394_postedWriteErr ? " postedWriteErr" : "",
368 evt & OHCI1394_cycleTooLong ? " cycleTooLong" : "",
Clemens Ladischa48777e2010-06-10 08:33:07 +0200369 evt & OHCI1394_cycle64Seconds ? " cycle64Seconds" : "",
Jay Fenlason5ed1f322009-11-17 12:29:17 -0500370 evt & OHCI1394_cycleInconsistent ? " cycleInconsistent" : "",
Stefan Richter161b96e2008-06-14 14:23:43 +0200371 evt & OHCI1394_regAccessFail ? " regAccessFail" : "",
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100372 evt & OHCI1394_unrecoverableError ? " unrecoverableError" : "",
Stefan Richter161b96e2008-06-14 14:23:43 +0200373 evt & OHCI1394_busReset ? " busReset" : "",
374 evt & ~(OHCI1394_selfIDComplete | OHCI1394_RQPkt |
375 OHCI1394_RSPkt | OHCI1394_reqTxComplete |
376 OHCI1394_respTxComplete | OHCI1394_isochRx |
377 OHCI1394_isochTx | OHCI1394_postedWriteErr |
Clemens Ladischa48777e2010-06-10 08:33:07 +0200378 OHCI1394_cycleTooLong | OHCI1394_cycle64Seconds |
379 OHCI1394_cycleInconsistent |
Stefan Richter161b96e2008-06-14 14:23:43 +0200380 OHCI1394_regAccessFail | OHCI1394_busReset)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100381 ? " ?" : "");
382}
383
384static const char *speed[] = {
385 [0] = "S100", [1] = "S200", [2] = "S400", [3] = "beta",
386};
387static const char *power[] = {
388 [0] = "+0W", [1] = "+15W", [2] = "+30W", [3] = "+45W",
389 [4] = "-3W", [5] = " ?W", [6] = "-3..-6W", [7] = "-3..-10W",
390};
391static const char port[] = { '.', '-', 'p', 'c', };
392
393static char _p(u32 *s, int shift)
394{
395 return port[*s >> shift & 3];
396}
397
Stefan Richter64d21722011-12-20 21:32:46 +0100398static void log_selfids(struct fw_ohci *ohci, int generation, int self_id_count)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100399{
Stefan Richter64d21722011-12-20 21:32:46 +0100400 u32 *s;
401
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100402 if (likely(!(param_debug & OHCI_PARAM_DEBUG_SELFIDS)))
403 return;
404
Stefan Richter64d21722011-12-20 21:32:46 +0100405 dev_notice(ohci->card.device,
406 "%d selfIDs, generation %d, local node ID %04x\n",
407 self_id_count, generation, ohci->node_id);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100408
Stefan Richter64d21722011-12-20 21:32:46 +0100409 for (s = ohci->self_id_buffer; self_id_count--; ++s)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100410 if ((*s & 1 << 23) == 0)
Stefan Richter64d21722011-12-20 21:32:46 +0100411 dev_notice(ohci->card.device,
412 "selfID 0: %08x, phy %d [%c%c%c] "
Stefan Richter161b96e2008-06-14 14:23:43 +0200413 "%s gc=%d %s %s%s%s\n",
414 *s, *s >> 24 & 63, _p(s, 6), _p(s, 4), _p(s, 2),
415 speed[*s >> 14 & 3], *s >> 16 & 63,
416 power[*s >> 8 & 7], *s >> 22 & 1 ? "L" : "",
417 *s >> 11 & 1 ? "c" : "", *s & 2 ? "i" : "");
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100418 else
Stefan Richter64d21722011-12-20 21:32:46 +0100419 dev_notice(ohci->card.device,
420 "selfID n: %08x, phy %d [%c%c%c%c%c%c%c%c]\n",
Stefan Richter161b96e2008-06-14 14:23:43 +0200421 *s, *s >> 24 & 63,
422 _p(s, 16), _p(s, 14), _p(s, 12), _p(s, 10),
423 _p(s, 8), _p(s, 6), _p(s, 4), _p(s, 2));
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100424}
425
426static const char *evts[] = {
427 [0x00] = "evt_no_status", [0x01] = "-reserved-",
428 [0x02] = "evt_long_packet", [0x03] = "evt_missing_ack",
429 [0x04] = "evt_underrun", [0x05] = "evt_overrun",
430 [0x06] = "evt_descriptor_read", [0x07] = "evt_data_read",
431 [0x08] = "evt_data_write", [0x09] = "evt_bus_reset",
432 [0x0a] = "evt_timeout", [0x0b] = "evt_tcode_err",
433 [0x0c] = "-reserved-", [0x0d] = "-reserved-",
434 [0x0e] = "evt_unknown", [0x0f] = "evt_flushed",
435 [0x10] = "-reserved-", [0x11] = "ack_complete",
436 [0x12] = "ack_pending ", [0x13] = "-reserved-",
437 [0x14] = "ack_busy_X", [0x15] = "ack_busy_A",
438 [0x16] = "ack_busy_B", [0x17] = "-reserved-",
439 [0x18] = "-reserved-", [0x19] = "-reserved-",
440 [0x1a] = "-reserved-", [0x1b] = "ack_tardy",
441 [0x1c] = "-reserved-", [0x1d] = "ack_data_error",
442 [0x1e] = "ack_type_error", [0x1f] = "-reserved-",
443 [0x20] = "pending/cancelled",
444};
445static const char *tcodes[] = {
446 [0x0] = "QW req", [0x1] = "BW req",
447 [0x2] = "W resp", [0x3] = "-reserved-",
448 [0x4] = "QR req", [0x5] = "BR req",
449 [0x6] = "QR resp", [0x7] = "BR resp",
450 [0x8] = "cycle start", [0x9] = "Lk req",
451 [0xa] = "async stream packet", [0xb] = "Lk resp",
452 [0xc] = "-reserved-", [0xd] = "-reserved-",
453 [0xe] = "link internal", [0xf] = "-reserved-",
454};
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100455
Stefan Richter64d21722011-12-20 21:32:46 +0100456static void log_ar_at_event(struct fw_ohci *ohci,
457 char dir, int speed, u32 *header, int evt)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100458{
459 int tcode = header[0] >> 4 & 0xf;
460 char specific[12];
461
462 if (likely(!(param_debug & OHCI_PARAM_DEBUG_AT_AR)))
463 return;
464
465 if (unlikely(evt >= ARRAY_SIZE(evts)))
466 evt = 0x1f;
467
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200468 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter64d21722011-12-20 21:32:46 +0100469 dev_notice(ohci->card.device,
470 "A%c evt_bus_reset, generation %d\n",
471 dir, (header[2] >> 16) & 0xff);
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200472 return;
473 }
474
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100475 switch (tcode) {
476 case 0x0: case 0x6: case 0x8:
477 snprintf(specific, sizeof(specific), " = %08x",
478 be32_to_cpu((__force __be32)header[3]));
479 break;
480 case 0x1: case 0x5: case 0x7: case 0x9: case 0xb:
481 snprintf(specific, sizeof(specific), " %x,%x",
482 header[3] >> 16, header[3] & 0xffff);
483 break;
484 default:
485 specific[0] = '\0';
486 }
487
488 switch (tcode) {
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100489 case 0xa:
Stefan Richter64d21722011-12-20 21:32:46 +0100490 dev_notice(ohci->card.device,
491 "A%c %s, %s\n",
492 dir, evts[evt], tcodes[tcode]);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100493 break;
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100494 case 0xe:
Stefan Richter64d21722011-12-20 21:32:46 +0100495 dev_notice(ohci->card.device,
496 "A%c %s, PHY %08x %08x\n",
497 dir, evts[evt], header[1], header[2]);
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100498 break;
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100499 case 0x0: case 0x1: case 0x4: case 0x5: case 0x9:
Stefan Richter64d21722011-12-20 21:32:46 +0100500 dev_notice(ohci->card.device,
501 "A%c spd %x tl %02x, "
502 "%04x -> %04x, %s, "
503 "%s, %04x%08x%s\n",
504 dir, speed, header[0] >> 10 & 0x3f,
505 header[1] >> 16, header[0] >> 16, evts[evt],
506 tcodes[tcode], header[1] & 0xffff, header[2], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100507 break;
508 default:
Stefan Richter64d21722011-12-20 21:32:46 +0100509 dev_notice(ohci->card.device,
510 "A%c spd %x tl %02x, "
511 "%04x -> %04x, %s, "
512 "%s%s\n",
513 dir, speed, header[0] >> 10 & 0x3f,
514 header[1] >> 16, header[0] >> 16, evts[evt],
515 tcodes[tcode], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100516 }
517}
518
519#else
520
Stefan Richter5da3dac2010-04-02 14:05:02 +0200521#define param_debug 0
Stefan Richter64d21722011-12-20 21:32:46 +0100522static inline void log_irqs(struct fw_ohci *ohci, u32 evt) {}
523static inline void log_selfids(struct fw_ohci *ohci, int generation, int self_id_count) {}
524static inline void log_ar_at_event(struct fw_ohci *ohci, char dir, int speed, u32 *header, int evt) {}
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100525
526#endif /* CONFIG_FIREWIRE_OHCI_DEBUG */
527
Adrian Bunk95688e92007-01-22 19:17:37 +0100528static inline void reg_write(const struct fw_ohci *ohci, int offset, u32 data)
Kristian Høgsberged568912006-12-19 19:58:35 -0500529{
530 writel(data, ohci->registers + offset);
531}
532
Adrian Bunk95688e92007-01-22 19:17:37 +0100533static inline u32 reg_read(const struct fw_ohci *ohci, int offset)
Kristian Høgsberged568912006-12-19 19:58:35 -0500534{
535 return readl(ohci->registers + offset);
536}
537
Adrian Bunk95688e92007-01-22 19:17:37 +0100538static inline void flush_writes(const struct fw_ohci *ohci)
Kristian Høgsberged568912006-12-19 19:58:35 -0500539{
540 /* Do a dummy read to flush writes. */
541 reg_read(ohci, OHCI1394_Version);
542}
543
Stefan Richterb14c3692011-06-21 15:24:26 +0200544/*
545 * Beware! read_phy_reg(), write_phy_reg(), update_phy_reg(), and
546 * read_paged_phy_reg() require the caller to hold ohci->phy_reg_mutex.
547 * In other words, only use ohci_read_phy_reg() and ohci_update_phy_reg()
548 * directly. Exceptions are intrinsically serialized contexts like pci_probe.
549 */
Stefan Richter35d999b2010-04-10 16:04:56 +0200550static int read_phy_reg(struct fw_ohci *ohci, int addr)
Kristian Høgsberged568912006-12-19 19:58:35 -0500551{
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200552 u32 val;
Stefan Richter35d999b2010-04-10 16:04:56 +0200553 int i;
Kristian Høgsberged568912006-12-19 19:58:35 -0500554
555 reg_write(ohci, OHCI1394_PhyControl, OHCI1394_PhyControl_Read(addr));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200556 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200557 val = reg_read(ohci, OHCI1394_PhyControl);
Stefan Richter215fa442011-06-22 21:05:08 +0200558 if (!~val)
559 return -ENODEV; /* Card was ejected. */
560
Stefan Richter35d999b2010-04-10 16:04:56 +0200561 if (val & OHCI1394_PhyControl_ReadDone)
562 return OHCI1394_PhyControl_ReadData(val);
563
Clemens Ladisch153e3972010-06-10 08:22:07 +0200564 /*
565 * Try a few times without waiting. Sleeping is necessary
566 * only when the link/PHY interface is busy.
567 */
568 if (i >= 3)
569 msleep(1);
Kristian Høgsberged568912006-12-19 19:58:35 -0500570 }
Stefan Richter64d21722011-12-20 21:32:46 +0100571 dev_err(ohci->card.device, "failed to read phy reg\n");
Kristian Høgsberged568912006-12-19 19:58:35 -0500572
Stefan Richter35d999b2010-04-10 16:04:56 +0200573 return -EBUSY;
574}
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200575
Stefan Richter35d999b2010-04-10 16:04:56 +0200576static int write_phy_reg(const struct fw_ohci *ohci, int addr, u32 val)
577{
578 int i;
579
580 reg_write(ohci, OHCI1394_PhyControl,
581 OHCI1394_PhyControl_Write(addr, val));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200582 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200583 val = reg_read(ohci, OHCI1394_PhyControl);
Stefan Richter215fa442011-06-22 21:05:08 +0200584 if (!~val)
585 return -ENODEV; /* Card was ejected. */
586
Stefan Richter35d999b2010-04-10 16:04:56 +0200587 if (!(val & OHCI1394_PhyControl_WritePending))
588 return 0;
589
Clemens Ladisch153e3972010-06-10 08:22:07 +0200590 if (i >= 3)
591 msleep(1);
Stefan Richter35d999b2010-04-10 16:04:56 +0200592 }
Stefan Richter64d21722011-12-20 21:32:46 +0100593 dev_err(ohci->card.device, "failed to write phy reg\n");
Stefan Richter35d999b2010-04-10 16:04:56 +0200594
595 return -EBUSY;
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200596}
597
Stefan Richter02d37be2010-07-08 16:09:06 +0200598static int update_phy_reg(struct fw_ohci *ohci, int addr,
599 int clear_bits, int set_bits)
Kristian Høgsberged568912006-12-19 19:58:35 -0500600{
Stefan Richter02d37be2010-07-08 16:09:06 +0200601 int ret = read_phy_reg(ohci, addr);
Stefan Richter35d999b2010-04-10 16:04:56 +0200602 if (ret < 0)
603 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500604
Clemens Ladische7014da2010-04-01 16:40:18 +0200605 /*
606 * The interrupt status bits are cleared by writing a one bit.
607 * Avoid clearing them unless explicitly requested in set_bits.
608 */
609 if (addr == 5)
610 clear_bits |= PHY_INT_STATUS_BITS;
Kristian Høgsberged568912006-12-19 19:58:35 -0500611
Stefan Richter35d999b2010-04-10 16:04:56 +0200612 return write_phy_reg(ohci, addr, (ret & ~clear_bits) | set_bits);
Kristian Høgsberged568912006-12-19 19:58:35 -0500613}
614
Stefan Richter35d999b2010-04-10 16:04:56 +0200615static int read_paged_phy_reg(struct fw_ohci *ohci, int page, int addr)
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200616{
Stefan Richter35d999b2010-04-10 16:04:56 +0200617 int ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200618
Stefan Richter02d37be2010-07-08 16:09:06 +0200619 ret = update_phy_reg(ohci, 7, PHY_PAGE_SELECT, page << 5);
Stefan Richter35d999b2010-04-10 16:04:56 +0200620 if (ret < 0)
621 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200622
Stefan Richter35d999b2010-04-10 16:04:56 +0200623 return read_phy_reg(ohci, addr);
Kristian Høgsberged568912006-12-19 19:58:35 -0500624}
625
Stefan Richter02d37be2010-07-08 16:09:06 +0200626static int ohci_read_phy_reg(struct fw_card *card, int addr)
627{
628 struct fw_ohci *ohci = fw_ohci(card);
629 int ret;
630
631 mutex_lock(&ohci->phy_reg_mutex);
632 ret = read_phy_reg(ohci, addr);
633 mutex_unlock(&ohci->phy_reg_mutex);
634
635 return ret;
636}
637
Kristian Høgsberged568912006-12-19 19:58:35 -0500638static int ohci_update_phy_reg(struct fw_card *card, int addr,
639 int clear_bits, int set_bits)
640{
641 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter02d37be2010-07-08 16:09:06 +0200642 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500643
Stefan Richter02d37be2010-07-08 16:09:06 +0200644 mutex_lock(&ohci->phy_reg_mutex);
645 ret = update_phy_reg(ohci, addr, clear_bits, set_bits);
646 mutex_unlock(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -0500647
Stefan Richter02d37be2010-07-08 16:09:06 +0200648 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500649}
650
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100651static inline dma_addr_t ar_buffer_bus(struct ar_context *ctx, unsigned int i)
Kristian Høgsberged568912006-12-19 19:58:35 -0500652{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100653 return page_private(ctx->pages[i]);
654}
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500655
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100656static void ar_context_link_page(struct ar_context *ctx, unsigned int index)
657{
658 struct descriptor *d;
659
660 d = &ctx->descriptors[index];
661 d->branch_address &= cpu_to_le32(~0xf);
662 d->res_count = cpu_to_le16(PAGE_SIZE);
663 d->transfer_status = 0;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500664
Stefan Richter071595e2010-07-27 13:20:33 +0200665 wmb(); /* finish init of new descriptors before branch_address update */
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100666 d = &ctx->descriptors[ctx->last_buffer_index];
667 d->branch_address |= cpu_to_le32(1);
668
669 ctx->last_buffer_index = index;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500670
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400671 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladisch837596a2010-10-25 11:42:42 +0200672}
673
Jay Fenlasona55709b2008-10-22 15:59:42 -0400674static void ar_context_release(struct ar_context *ctx)
675{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100676 unsigned int i;
Jay Fenlasona55709b2008-10-22 15:59:42 -0400677
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100678 if (ctx->buffer)
679 vm_unmap_ram(ctx->buffer, AR_BUFFERS + AR_WRAPAROUND_PAGES);
680
681 for (i = 0; i < AR_BUFFERS; i++)
682 if (ctx->pages[i]) {
683 dma_unmap_page(ctx->ohci->card.device,
684 ar_buffer_bus(ctx, i),
685 PAGE_SIZE, DMA_FROM_DEVICE);
686 __free_page(ctx->pages[i]);
687 }
688}
689
690static void ar_context_abort(struct ar_context *ctx, const char *error_msg)
691{
Stefan Richter64d21722011-12-20 21:32:46 +0100692 struct fw_ohci *ohci = ctx->ohci;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100693
Stefan Richter64d21722011-12-20 21:32:46 +0100694 if (reg_read(ohci, CONTROL_CLEAR(ctx->regs)) & CONTEXT_RUN) {
695 reg_write(ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
696 flush_writes(ohci);
697
698 dev_err(ohci->card.device, "AR error: %s; DMA stopped\n",
699 error_msg);
Jay Fenlasona55709b2008-10-22 15:59:42 -0400700 }
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100701 /* FIXME: restart? */
702}
703
704static inline unsigned int ar_next_buffer_index(unsigned int index)
705{
706 return (index + 1) % AR_BUFFERS;
707}
708
709static inline unsigned int ar_prev_buffer_index(unsigned int index)
710{
711 return (index - 1 + AR_BUFFERS) % AR_BUFFERS;
712}
713
714static inline unsigned int ar_first_buffer_index(struct ar_context *ctx)
715{
716 return ar_next_buffer_index(ctx->last_buffer_index);
717}
718
719/*
720 * We search for the buffer that contains the last AR packet DMA data written
721 * by the controller.
722 */
723static unsigned int ar_search_last_active_buffer(struct ar_context *ctx,
724 unsigned int *buffer_offset)
725{
726 unsigned int i, next_i, last = ctx->last_buffer_index;
727 __le16 res_count, next_res_count;
728
729 i = ar_first_buffer_index(ctx);
730 res_count = ACCESS_ONCE(ctx->descriptors[i].res_count);
731
732 /* A buffer that is not yet completely filled must be the last one. */
733 while (i != last && res_count == 0) {
734
735 /* Peek at the next descriptor. */
736 next_i = ar_next_buffer_index(i);
737 rmb(); /* read descriptors in order */
738 next_res_count = ACCESS_ONCE(
739 ctx->descriptors[next_i].res_count);
740 /*
741 * If the next descriptor is still empty, we must stop at this
742 * descriptor.
743 */
744 if (next_res_count == cpu_to_le16(PAGE_SIZE)) {
745 /*
746 * The exception is when the DMA data for one packet is
747 * split over three buffers; in this case, the middle
748 * buffer's descriptor might be never updated by the
749 * controller and look still empty, and we have to peek
750 * at the third one.
751 */
752 if (MAX_AR_PACKET_SIZE > PAGE_SIZE && i != last) {
753 next_i = ar_next_buffer_index(next_i);
754 rmb();
755 next_res_count = ACCESS_ONCE(
756 ctx->descriptors[next_i].res_count);
757 if (next_res_count != cpu_to_le16(PAGE_SIZE))
758 goto next_buffer_is_active;
759 }
760
761 break;
762 }
763
764next_buffer_is_active:
765 i = next_i;
766 res_count = next_res_count;
767 }
768
769 rmb(); /* read res_count before the DMA data */
770
771 *buffer_offset = PAGE_SIZE - le16_to_cpu(res_count);
772 if (*buffer_offset > PAGE_SIZE) {
773 *buffer_offset = 0;
774 ar_context_abort(ctx, "corrupted descriptor");
775 }
776
777 return i;
778}
779
780static void ar_sync_buffers_for_cpu(struct ar_context *ctx,
781 unsigned int end_buffer_index,
782 unsigned int end_buffer_offset)
783{
784 unsigned int i;
785
786 i = ar_first_buffer_index(ctx);
787 while (i != end_buffer_index) {
788 dma_sync_single_for_cpu(ctx->ohci->card.device,
789 ar_buffer_bus(ctx, i),
790 PAGE_SIZE, DMA_FROM_DEVICE);
791 i = ar_next_buffer_index(i);
792 }
793 if (end_buffer_offset > 0)
794 dma_sync_single_for_cpu(ctx->ohci->card.device,
795 ar_buffer_bus(ctx, i),
796 end_buffer_offset, DMA_FROM_DEVICE);
Jay Fenlasona55709b2008-10-22 15:59:42 -0400797}
798
Stefan Richter11bf20a2008-03-01 02:47:15 +0100799#if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
800#define cond_le32_to_cpu(v) \
Stefan Richter4a635592010-02-21 17:58:01 +0100801 (ohci->quirks & QUIRK_BE_HEADERS ? (__force __u32)(v) : le32_to_cpu(v))
Stefan Richter11bf20a2008-03-01 02:47:15 +0100802#else
803#define cond_le32_to_cpu(v) le32_to_cpu(v)
804#endif
805
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500806static __le32 *handle_ar_packet(struct ar_context *ctx, __le32 *buffer)
Kristian Høgsberged568912006-12-19 19:58:35 -0500807{
Kristian Høgsberged568912006-12-19 19:58:35 -0500808 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500809 struct fw_packet p;
810 u32 status, length, tcode;
Stefan Richter43286562008-03-11 21:22:26 +0100811 int evt;
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500812
Stefan Richter11bf20a2008-03-01 02:47:15 +0100813 p.header[0] = cond_le32_to_cpu(buffer[0]);
814 p.header[1] = cond_le32_to_cpu(buffer[1]);
815 p.header[2] = cond_le32_to_cpu(buffer[2]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500816
817 tcode = (p.header[0] >> 4) & 0x0f;
818 switch (tcode) {
819 case TCODE_WRITE_QUADLET_REQUEST:
820 case TCODE_READ_QUADLET_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500821 p.header[3] = (__force __u32) buffer[3];
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500822 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500823 p.payload_length = 0;
824 break;
825
826 case TCODE_READ_BLOCK_REQUEST :
Stefan Richter11bf20a2008-03-01 02:47:15 +0100827 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500828 p.header_length = 16;
829 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500830 break;
831
832 case TCODE_WRITE_BLOCK_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500833 case TCODE_READ_BLOCK_RESPONSE:
834 case TCODE_LOCK_REQUEST:
835 case TCODE_LOCK_RESPONSE:
Stefan Richter11bf20a2008-03-01 02:47:15 +0100836 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500837 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500838 p.payload_length = p.header[3] >> 16;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100839 if (p.payload_length > MAX_ASYNC_PAYLOAD) {
840 ar_context_abort(ctx, "invalid packet length");
841 return NULL;
842 }
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500843 break;
844
845 case TCODE_WRITE_RESPONSE:
846 case TCODE_READ_QUADLET_REQUEST:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500847 case OHCI_TCODE_PHY_PACKET:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500848 p.header_length = 12;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500849 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500850 break;
Stefan Richterccff9622008-05-31 19:36:06 +0200851
852 default:
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100853 ar_context_abort(ctx, "invalid tcode");
854 return NULL;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500855 }
856
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500857 p.payload = (void *) buffer + p.header_length;
858
859 /* FIXME: What to do about evt_* errors? */
860 length = (p.header_length + p.payload_length + 3) / 4;
Stefan Richter11bf20a2008-03-01 02:47:15 +0100861 status = cond_le32_to_cpu(buffer[length]);
Stefan Richter43286562008-03-11 21:22:26 +0100862 evt = (status >> 16) & 0x1f;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500863
Stefan Richter43286562008-03-11 21:22:26 +0100864 p.ack = evt - 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500865 p.speed = (status >> 21) & 0x7;
866 p.timestamp = status & 0xffff;
867 p.generation = ohci->request_generation;
Kristian Høgsberged568912006-12-19 19:58:35 -0500868
Stefan Richter64d21722011-12-20 21:32:46 +0100869 log_ar_at_event(ohci, 'R', p.speed, p.header, evt);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100870
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400871 /*
Stefan Richtera4dc0902010-08-28 14:21:26 +0200872 * Several controllers, notably from NEC and VIA, forget to
873 * write ack_complete status at PHY packet reception.
874 */
875 if (evt == OHCI1394_evt_no_status &&
876 (p.header[0] & 0xff) == (OHCI1394_phy_tcode << 4))
877 p.ack = ACK_COMPLETE;
878
879 /*
880 * The OHCI bus reset handler synthesizes a PHY packet with
Kristian Høgsberged568912006-12-19 19:58:35 -0500881 * the new generation number when a bus reset happens (see
882 * section 8.4.2.3). This helps us determine when a request
883 * was received and make sure we send the response in the same
884 * generation. We only need this for requests; for responses
885 * we use the unique tlabel for finding the matching
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400886 * request.
Stefan Richterd34316a2008-04-12 22:31:25 +0200887 *
888 * Alas some chips sometimes emit bus reset packets with a
889 * wrong generation. We set the correct generation for these
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +0200890 * at a slightly incorrect time (in bus_reset_work).
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400891 */
Stefan Richterd34316a2008-04-12 22:31:25 +0200892 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter4a635592010-02-21 17:58:01 +0100893 if (!(ohci->quirks & QUIRK_RESET_PACKET))
Stefan Richterd34316a2008-04-12 22:31:25 +0200894 ohci->request_generation = (p.header[2] >> 16) & 0xff;
895 } else if (ctx == &ohci->ar_request_ctx) {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500896 fw_core_handle_request(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200897 } else {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500898 fw_core_handle_response(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200899 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500900
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500901 return buffer + length + 1;
902}
Kristian Høgsberged568912006-12-19 19:58:35 -0500903
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100904static void *handle_ar_packets(struct ar_context *ctx, void *p, void *end)
905{
906 void *next;
907
908 while (p < end) {
909 next = handle_ar_packet(ctx, p);
910 if (!next)
911 return p;
912 p = next;
913 }
914
915 return p;
916}
917
918static void ar_recycle_buffers(struct ar_context *ctx, unsigned int end_buffer)
919{
920 unsigned int i;
921
922 i = ar_first_buffer_index(ctx);
923 while (i != end_buffer) {
924 dma_sync_single_for_device(ctx->ohci->card.device,
925 ar_buffer_bus(ctx, i),
926 PAGE_SIZE, DMA_FROM_DEVICE);
927 ar_context_link_page(ctx, i);
928 i = ar_next_buffer_index(i);
929 }
930}
931
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500932static void ar_context_tasklet(unsigned long data)
933{
934 struct ar_context *ctx = (struct ar_context *)data;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100935 unsigned int end_buffer_index, end_buffer_offset;
936 void *p, *end;
Kristian Høgsberged568912006-12-19 19:58:35 -0500937
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100938 p = ctx->pointer;
939 if (!p)
940 return;
Kristian Høgsberged568912006-12-19 19:58:35 -0500941
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100942 end_buffer_index = ar_search_last_active_buffer(ctx,
943 &end_buffer_offset);
944 ar_sync_buffers_for_cpu(ctx, end_buffer_index, end_buffer_offset);
945 end = ctx->buffer + end_buffer_index * PAGE_SIZE + end_buffer_offset;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500946
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100947 if (end_buffer_index < ar_first_buffer_index(ctx)) {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400948 /*
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100949 * The filled part of the overall buffer wraps around; handle
950 * all packets up to the buffer end here. If the last packet
951 * wraps around, its tail will be visible after the buffer end
952 * because the buffer start pages are mapped there again.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400953 */
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100954 void *buffer_end = ctx->buffer + AR_BUFFERS * PAGE_SIZE;
955 p = handle_ar_packets(ctx, p, buffer_end);
956 if (p < buffer_end)
957 goto error;
958 /* adjust p to point back into the actual buffer */
959 p -= AR_BUFFERS * PAGE_SIZE;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500960 }
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100961
962 p = handle_ar_packets(ctx, p, end);
963 if (p != end) {
964 if (p > end)
965 ar_context_abort(ctx, "inconsistent descriptor");
966 goto error;
967 }
968
969 ctx->pointer = p;
970 ar_recycle_buffers(ctx, end_buffer_index);
971
972 return;
973
974error:
975 ctx->pointer = NULL;
Kristian Høgsberged568912006-12-19 19:58:35 -0500976}
977
Clemens Ladischec766a72010-11-30 08:25:17 +0100978static int ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci,
979 unsigned int descriptors_offset, u32 regs)
Kristian Høgsberged568912006-12-19 19:58:35 -0500980{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100981 unsigned int i;
982 dma_addr_t dma_addr;
983 struct page *pages[AR_BUFFERS + AR_WRAPAROUND_PAGES];
984 struct descriptor *d;
Kristian Høgsberged568912006-12-19 19:58:35 -0500985
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500986 ctx->regs = regs;
987 ctx->ohci = ohci;
Kristian Høgsberged568912006-12-19 19:58:35 -0500988 tasklet_init(&ctx->tasklet, ar_context_tasklet, (unsigned long)ctx);
989
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100990 for (i = 0; i < AR_BUFFERS; i++) {
991 ctx->pages[i] = alloc_page(GFP_KERNEL | GFP_DMA32);
992 if (!ctx->pages[i])
993 goto out_of_memory;
994 dma_addr = dma_map_page(ohci->card.device, ctx->pages[i],
995 0, PAGE_SIZE, DMA_FROM_DEVICE);
996 if (dma_mapping_error(ohci->card.device, dma_addr)) {
997 __free_page(ctx->pages[i]);
998 ctx->pages[i] = NULL;
999 goto out_of_memory;
1000 }
1001 set_page_private(ctx->pages[i], dma_addr);
1002 }
1003
1004 for (i = 0; i < AR_BUFFERS; i++)
1005 pages[i] = ctx->pages[i];
1006 for (i = 0; i < AR_WRAPAROUND_PAGES; i++)
1007 pages[AR_BUFFERS + i] = ctx->pages[i];
1008 ctx->buffer = vm_map_ram(pages, AR_BUFFERS + AR_WRAPAROUND_PAGES,
Clemens Ladisch14271302011-01-13 10:12:17 +01001009 -1, PAGE_KERNEL);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001010 if (!ctx->buffer)
1011 goto out_of_memory;
1012
Clemens Ladischec766a72010-11-30 08:25:17 +01001013 ctx->descriptors = ohci->misc_buffer + descriptors_offset;
1014 ctx->descriptors_bus = ohci->misc_buffer_bus + descriptors_offset;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001015
1016 for (i = 0; i < AR_BUFFERS; i++) {
1017 d = &ctx->descriptors[i];
1018 d->req_count = cpu_to_le16(PAGE_SIZE);
1019 d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
1020 DESCRIPTOR_STATUS |
1021 DESCRIPTOR_BRANCH_ALWAYS);
1022 d->data_address = cpu_to_le32(ar_buffer_bus(ctx, i));
1023 d->branch_address = cpu_to_le32(ctx->descriptors_bus +
1024 ar_next_buffer_index(i) * sizeof(struct descriptor));
1025 }
Kristian Høgsberg32b46092007-02-06 14:49:30 -05001026
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001027 return 0;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001028
1029out_of_memory:
1030 ar_context_release(ctx);
1031
1032 return -ENOMEM;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001033}
1034
1035static void ar_context_run(struct ar_context *ctx)
1036{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001037 unsigned int i;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001038
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001039 for (i = 0; i < AR_BUFFERS; i++)
1040 ar_context_link_page(ctx, i);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001041
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001042 ctx->pointer = ctx->buffer;
1043
1044 reg_write(ctx->ohci, COMMAND_PTR(ctx->regs), ctx->descriptors_bus | 1);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001045 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN);
Kristian Høgsberged568912006-12-19 19:58:35 -05001046}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001047
Stefan Richter53dca512008-12-14 21:47:04 +01001048static struct descriptor *find_branch_descriptor(struct descriptor *d, int z)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001049{
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001050 __le16 branch;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001051
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001052 branch = d->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001053
1054 /* figure out which descriptor the branch address goes in */
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001055 if (z == 2 && branch == cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001056 return d;
1057 else
1058 return d + z - 1;
1059}
1060
Kristian Høgsberg30200732007-02-16 17:34:39 -05001061static void context_tasklet(unsigned long data)
1062{
1063 struct context *ctx = (struct context *) data;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001064 struct descriptor *d, *last;
1065 u32 address;
1066 int z;
David Moorefe5ca632008-01-06 17:21:41 -05001067 struct descriptor_buffer *desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001068
David Moorefe5ca632008-01-06 17:21:41 -05001069 desc = list_entry(ctx->buffer_list.next,
1070 struct descriptor_buffer, list);
1071 last = ctx->last;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001072 while (last->branch_address != 0) {
David Moorefe5ca632008-01-06 17:21:41 -05001073 struct descriptor_buffer *old_desc = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001074 address = le32_to_cpu(last->branch_address);
1075 z = address & 0xf;
David Moorefe5ca632008-01-06 17:21:41 -05001076 address &= ~0xf;
Clemens Ladischa572e682011-10-15 23:12:23 +02001077 ctx->current_bus = address;
David Moorefe5ca632008-01-06 17:21:41 -05001078
1079 /* If the branch address points to a buffer outside of the
1080 * current buffer, advance to the next buffer. */
1081 if (address < desc->buffer_bus ||
1082 address >= desc->buffer_bus + desc->used)
1083 desc = list_entry(desc->list.next,
1084 struct descriptor_buffer, list);
1085 d = desc->buffer + (address - desc->buffer_bus) / sizeof(*d);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001086 last = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001087
1088 if (!ctx->callback(ctx, d, last))
1089 break;
1090
David Moorefe5ca632008-01-06 17:21:41 -05001091 if (old_desc != desc) {
1092 /* If we've advanced to the next buffer, move the
1093 * previous buffer to the free list. */
1094 unsigned long flags;
1095 old_desc->used = 0;
1096 spin_lock_irqsave(&ctx->ohci->lock, flags);
1097 list_move_tail(&old_desc->list, &ctx->buffer_list);
1098 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1099 }
1100 ctx->last = last;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001101 }
1102}
1103
David Moorefe5ca632008-01-06 17:21:41 -05001104/*
1105 * Allocate a new buffer and add it to the list of free buffers for this
1106 * context. Must be called with ohci->lock held.
1107 */
Stefan Richter53dca512008-12-14 21:47:04 +01001108static int context_add_buffer(struct context *ctx)
David Moorefe5ca632008-01-06 17:21:41 -05001109{
1110 struct descriptor_buffer *desc;
Stefan Richterf5101d582008-03-14 00:27:49 +01001111 dma_addr_t uninitialized_var(bus_addr);
David Moorefe5ca632008-01-06 17:21:41 -05001112 int offset;
1113
1114 /*
1115 * 16MB of descriptors should be far more than enough for any DMA
1116 * program. This will catch run-away userspace or DoS attacks.
1117 */
1118 if (ctx->total_allocation >= 16*1024*1024)
1119 return -ENOMEM;
1120
1121 desc = dma_alloc_coherent(ctx->ohci->card.device, PAGE_SIZE,
1122 &bus_addr, GFP_ATOMIC);
1123 if (!desc)
1124 return -ENOMEM;
1125
1126 offset = (void *)&desc->buffer - (void *)desc;
1127 desc->buffer_size = PAGE_SIZE - offset;
1128 desc->buffer_bus = bus_addr + offset;
1129 desc->used = 0;
1130
1131 list_add_tail(&desc->list, &ctx->buffer_list);
1132 ctx->total_allocation += PAGE_SIZE;
1133
1134 return 0;
1135}
1136
Stefan Richter53dca512008-12-14 21:47:04 +01001137static int context_init(struct context *ctx, struct fw_ohci *ohci,
1138 u32 regs, descriptor_callback_t callback)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001139{
1140 ctx->ohci = ohci;
1141 ctx->regs = regs;
David Moorefe5ca632008-01-06 17:21:41 -05001142 ctx->total_allocation = 0;
1143
1144 INIT_LIST_HEAD(&ctx->buffer_list);
1145 if (context_add_buffer(ctx) < 0)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001146 return -ENOMEM;
1147
David Moorefe5ca632008-01-06 17:21:41 -05001148 ctx->buffer_tail = list_entry(ctx->buffer_list.next,
1149 struct descriptor_buffer, list);
1150
Kristian Høgsberg30200732007-02-16 17:34:39 -05001151 tasklet_init(&ctx->tasklet, context_tasklet, (unsigned long)ctx);
1152 ctx->callback = callback;
1153
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001154 /*
1155 * We put a dummy descriptor in the buffer that has a NULL
Kristian Høgsberg30200732007-02-16 17:34:39 -05001156 * branch address and looks like it's been sent. That way we
David Moorefe5ca632008-01-06 17:21:41 -05001157 * have a descriptor to append DMA programs to.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001158 */
David Moorefe5ca632008-01-06 17:21:41 -05001159 memset(ctx->buffer_tail->buffer, 0, sizeof(*ctx->buffer_tail->buffer));
1160 ctx->buffer_tail->buffer->control = cpu_to_le16(DESCRIPTOR_OUTPUT_LAST);
1161 ctx->buffer_tail->buffer->transfer_status = cpu_to_le16(0x8011);
1162 ctx->buffer_tail->used += sizeof(*ctx->buffer_tail->buffer);
1163 ctx->last = ctx->buffer_tail->buffer;
1164 ctx->prev = ctx->buffer_tail->buffer;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001165
1166 return 0;
1167}
1168
Stefan Richter53dca512008-12-14 21:47:04 +01001169static void context_release(struct context *ctx)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001170{
1171 struct fw_card *card = &ctx->ohci->card;
David Moorefe5ca632008-01-06 17:21:41 -05001172 struct descriptor_buffer *desc, *tmp;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001173
David Moorefe5ca632008-01-06 17:21:41 -05001174 list_for_each_entry_safe(desc, tmp, &ctx->buffer_list, list)
1175 dma_free_coherent(card->device, PAGE_SIZE, desc,
1176 desc->buffer_bus -
1177 ((void *)&desc->buffer - (void *)desc));
Kristian Høgsberg30200732007-02-16 17:34:39 -05001178}
1179
David Moorefe5ca632008-01-06 17:21:41 -05001180/* Must be called with ohci->lock held */
Stefan Richter53dca512008-12-14 21:47:04 +01001181static struct descriptor *context_get_descriptors(struct context *ctx,
1182 int z, dma_addr_t *d_bus)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001183{
David Moorefe5ca632008-01-06 17:21:41 -05001184 struct descriptor *d = NULL;
1185 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001186
David Moorefe5ca632008-01-06 17:21:41 -05001187 if (z * sizeof(*d) > desc->buffer_size)
1188 return NULL;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001189
David Moorefe5ca632008-01-06 17:21:41 -05001190 if (z * sizeof(*d) > desc->buffer_size - desc->used) {
1191 /* No room for the descriptor in this buffer, so advance to the
1192 * next one. */
1193
1194 if (desc->list.next == &ctx->buffer_list) {
1195 /* If there is no free buffer next in the list,
1196 * allocate one. */
1197 if (context_add_buffer(ctx) < 0)
1198 return NULL;
1199 }
1200 desc = list_entry(desc->list.next,
1201 struct descriptor_buffer, list);
1202 ctx->buffer_tail = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001203 }
1204
David Moorefe5ca632008-01-06 17:21:41 -05001205 d = desc->buffer + desc->used / sizeof(*d);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001206 memset(d, 0, z * sizeof(*d));
David Moorefe5ca632008-01-06 17:21:41 -05001207 *d_bus = desc->buffer_bus + desc->used;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001208
1209 return d;
1210}
1211
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001212static void context_run(struct context *ctx, u32 extra)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001213{
1214 struct fw_ohci *ohci = ctx->ohci;
1215
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001216 reg_write(ohci, COMMAND_PTR(ctx->regs),
David Moorefe5ca632008-01-06 17:21:41 -05001217 le32_to_cpu(ctx->last->branch_address));
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001218 reg_write(ohci, CONTROL_CLEAR(ctx->regs), ~0);
1219 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN | extra);
Clemens Ladisch386a4152010-12-24 14:42:46 +01001220 ctx->running = true;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001221 flush_writes(ohci);
1222}
1223
1224static void context_append(struct context *ctx,
1225 struct descriptor *d, int z, int extra)
1226{
1227 dma_addr_t d_bus;
David Moorefe5ca632008-01-06 17:21:41 -05001228 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001229
David Moorefe5ca632008-01-06 17:21:41 -05001230 d_bus = desc->buffer_bus + (d - desc->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001231
David Moorefe5ca632008-01-06 17:21:41 -05001232 desc->used += (z + extra) * sizeof(*d);
Stefan Richter071595e2010-07-27 13:20:33 +02001233
1234 wmb(); /* finish init of new descriptors before branch_address update */
David Moorefe5ca632008-01-06 17:21:41 -05001235 ctx->prev->branch_address = cpu_to_le32(d_bus | z);
1236 ctx->prev = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001237}
1238
1239static void context_stop(struct context *ctx)
1240{
Stefan Richter64d21722011-12-20 21:32:46 +01001241 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001242 u32 reg;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001243 int i;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001244
Stefan Richter64d21722011-12-20 21:32:46 +01001245 reg_write(ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
Clemens Ladisch386a4152010-12-24 14:42:46 +01001246 ctx->running = false;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001247
Stefan Richter9ef28cc2011-06-12 14:30:57 +02001248 for (i = 0; i < 1000; i++) {
Stefan Richter64d21722011-12-20 21:32:46 +01001249 reg = reg_read(ohci, CONTROL_SET(ctx->regs));
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001250 if ((reg & CONTEXT_ACTIVE) == 0)
Stefan Richterb0068542009-01-05 20:43:23 +01001251 return;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001252
Stefan Richter9ef28cc2011-06-12 14:30:57 +02001253 if (i)
1254 udelay(10);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001255 }
Stefan Richter64d21722011-12-20 21:32:46 +01001256 dev_err(ohci->card.device, "DMA context still active (0x%08x)\n", reg);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001257}
Kristian Høgsberged568912006-12-19 19:58:35 -05001258
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001259struct driver_data {
Clemens Ladischda289472011-04-11 09:57:54 +02001260 u8 inline_data[8];
Kristian Høgsberged568912006-12-19 19:58:35 -05001261 struct fw_packet *packet;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001262};
1263
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001264/*
1265 * This function apppends a packet to the DMA queue for transmission.
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001266 * Must always be called with the ochi->lock held to ensure proper
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001267 * generation handling and locking around packet queue manipulation.
1268 */
Stefan Richter53dca512008-12-14 21:47:04 +01001269static int at_context_queue_packet(struct context *ctx,
1270 struct fw_packet *packet)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001271{
Kristian Høgsberged568912006-12-19 19:58:35 -05001272 struct fw_ohci *ohci = ctx->ohci;
Stefan Richter4b6d51e2007-10-21 11:20:07 +02001273 dma_addr_t d_bus, uninitialized_var(payload_bus);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001274 struct driver_data *driver_data;
1275 struct descriptor *d, *last;
1276 __le32 *header;
Kristian Høgsberged568912006-12-19 19:58:35 -05001277 int z, tcode;
1278
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001279 d = context_get_descriptors(ctx, 4, &d_bus);
1280 if (d == NULL) {
1281 packet->ack = RCODE_SEND_ERROR;
1282 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001283 }
1284
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001285 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001286 d[0].res_count = cpu_to_le16(packet->timestamp);
1287
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001288 /*
1289 * The DMA format for asyncronous link packets is different
Kristian Høgsberged568912006-12-19 19:58:35 -05001290 * from the IEEE1394 layout, so shift the fields around
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001291 * accordingly.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001292 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001293
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001294 tcode = (packet->header[0] >> 4) & 0x0f;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001295 header = (__le32 *) &d[1];
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001296 switch (tcode) {
1297 case TCODE_WRITE_QUADLET_REQUEST:
1298 case TCODE_WRITE_BLOCK_REQUEST:
1299 case TCODE_WRITE_RESPONSE:
1300 case TCODE_READ_QUADLET_REQUEST:
1301 case TCODE_READ_BLOCK_REQUEST:
1302 case TCODE_READ_QUADLET_RESPONSE:
1303 case TCODE_READ_BLOCK_RESPONSE:
1304 case TCODE_LOCK_REQUEST:
1305 case TCODE_LOCK_RESPONSE:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001306 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1307 (packet->speed << 16));
1308 header[1] = cpu_to_le32((packet->header[1] & 0xffff) |
1309 (packet->header[0] & 0xffff0000));
1310 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001311
Kristian Høgsberged568912006-12-19 19:58:35 -05001312 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001313 header[3] = cpu_to_le32(packet->header[3]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001314 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001315 header[3] = (__force __le32) packet->header[3];
1316
1317 d[0].req_count = cpu_to_le16(packet->header_length);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001318 break;
1319
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001320 case TCODE_LINK_INTERNAL:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001321 header[0] = cpu_to_le32((OHCI1394_phy_tcode << 4) |
1322 (packet->speed << 16));
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001323 header[1] = cpu_to_le32(packet->header[1]);
1324 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001325 d[0].req_count = cpu_to_le16(12);
Stefan Richtercc550212010-07-18 13:00:50 +02001326
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001327 if (is_ping_packet(&packet->header[1]))
Stefan Richtercc550212010-07-18 13:00:50 +02001328 d[0].control |= cpu_to_le16(DESCRIPTOR_PING);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001329 break;
1330
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001331 case TCODE_STREAM_DATA:
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001332 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1333 (packet->speed << 16));
1334 header[1] = cpu_to_le32(packet->header[0] & 0xffff0000);
1335 d[0].req_count = cpu_to_le16(8);
1336 break;
1337
1338 default:
1339 /* BUG(); */
1340 packet->ack = RCODE_SEND_ERROR;
1341 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001342 }
1343
Clemens Ladischda289472011-04-11 09:57:54 +02001344 BUILD_BUG_ON(sizeof(struct driver_data) > sizeof(struct descriptor));
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001345 driver_data = (struct driver_data *) &d[3];
1346 driver_data->packet = packet;
Kristian Høgsberg20d11672007-03-26 19:18:19 -04001347 packet->driver_data = driver_data;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001348
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001349 if (packet->payload_length > 0) {
Clemens Ladischda289472011-04-11 09:57:54 +02001350 if (packet->payload_length > sizeof(driver_data->inline_data)) {
1351 payload_bus = dma_map_single(ohci->card.device,
1352 packet->payload,
1353 packet->payload_length,
1354 DMA_TO_DEVICE);
1355 if (dma_mapping_error(ohci->card.device, payload_bus)) {
1356 packet->ack = RCODE_SEND_ERROR;
1357 return -1;
1358 }
1359 packet->payload_bus = payload_bus;
1360 packet->payload_mapped = true;
1361 } else {
1362 memcpy(driver_data->inline_data, packet->payload,
1363 packet->payload_length);
1364 payload_bus = d_bus + 3 * sizeof(*d);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001365 }
1366
1367 d[2].req_count = cpu_to_le16(packet->payload_length);
1368 d[2].data_address = cpu_to_le32(payload_bus);
1369 last = &d[2];
1370 z = 3;
1371 } else {
1372 last = &d[0];
1373 z = 2;
1374 }
1375
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001376 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
1377 DESCRIPTOR_IRQ_ALWAYS |
1378 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001379
Stefan Richterb6258fc2011-02-26 15:08:35 +01001380 /* FIXME: Document how the locking works. */
1381 if (ohci->generation != packet->generation) {
Stefan Richter19593ff2009-10-14 20:40:10 +02001382 if (packet->payload_mapped)
Stefan Richterab88ca42007-08-29 19:40:28 +02001383 dma_unmap_single(ohci->card.device, payload_bus,
1384 packet->payload_length, DMA_TO_DEVICE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001385 packet->ack = RCODE_GENERATION;
1386 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001387 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001388
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001389 context_append(ctx, d, z, 4 - z);
Kristian Høgsberged568912006-12-19 19:58:35 -05001390
Clemens Ladischdd6254e2011-05-16 08:10:10 +02001391 if (ctx->running)
Clemens Ladisch13882a82011-05-02 09:33:56 +02001392 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladischdd6254e2011-05-16 08:10:10 +02001393 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001394 context_run(ctx, 0);
Kristian Høgsberged568912006-12-19 19:58:35 -05001395
1396 return 0;
1397}
1398
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001399static void at_context_flush(struct context *ctx)
1400{
1401 tasklet_disable(&ctx->tasklet);
1402
1403 ctx->flushing = true;
1404 context_tasklet((unsigned long)ctx);
1405 ctx->flushing = false;
1406
1407 tasklet_enable(&ctx->tasklet);
1408}
1409
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001410static int handle_at_packet(struct context *context,
1411 struct descriptor *d,
1412 struct descriptor *last)
1413{
1414 struct driver_data *driver_data;
1415 struct fw_packet *packet;
1416 struct fw_ohci *ohci = context->ohci;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001417 int evt;
1418
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001419 if (last->transfer_status == 0 && !context->flushing)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001420 /* This descriptor isn't done yet, stop iteration. */
1421 return 0;
1422
1423 driver_data = (struct driver_data *) &d[3];
1424 packet = driver_data->packet;
1425 if (packet == NULL)
1426 /* This packet was cancelled, just continue. */
1427 return 1;
1428
Stefan Richter19593ff2009-10-14 20:40:10 +02001429 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01001430 dma_unmap_single(ohci->card.device, packet->payload_bus,
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001431 packet->payload_length, DMA_TO_DEVICE);
1432
1433 evt = le16_to_cpu(last->transfer_status) & 0x1f;
1434 packet->timestamp = le16_to_cpu(last->res_count);
1435
Stefan Richter64d21722011-12-20 21:32:46 +01001436 log_ar_at_event(ohci, 'T', packet->speed, packet->header, evt);
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001437
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001438 switch (evt) {
1439 case OHCI1394_evt_timeout:
1440 /* Async response transmit timed out. */
1441 packet->ack = RCODE_CANCELLED;
1442 break;
1443
1444 case OHCI1394_evt_flushed:
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001445 /*
1446 * The packet was flushed should give same error as
1447 * when we try to use a stale generation count.
1448 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001449 packet->ack = RCODE_GENERATION;
1450 break;
1451
1452 case OHCI1394_evt_missing_ack:
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001453 if (context->flushing)
1454 packet->ack = RCODE_GENERATION;
1455 else {
1456 /*
1457 * Using a valid (current) generation count, but the
1458 * node is not on the bus or not sending acks.
1459 */
1460 packet->ack = RCODE_NO_ACK;
1461 }
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001462 break;
1463
1464 case ACK_COMPLETE + 0x10:
1465 case ACK_PENDING + 0x10:
1466 case ACK_BUSY_X + 0x10:
1467 case ACK_BUSY_A + 0x10:
1468 case ACK_BUSY_B + 0x10:
1469 case ACK_DATA_ERROR + 0x10:
1470 case ACK_TYPE_ERROR + 0x10:
1471 packet->ack = evt - 0x10;
1472 break;
1473
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001474 case OHCI1394_evt_no_status:
1475 if (context->flushing) {
1476 packet->ack = RCODE_GENERATION;
1477 break;
1478 }
1479 /* fall through */
1480
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001481 default:
1482 packet->ack = RCODE_SEND_ERROR;
1483 break;
1484 }
1485
1486 packet->callback(packet, &ohci->card, packet->ack);
1487
1488 return 1;
1489}
1490
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001491#define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
1492#define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
1493#define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
1494#define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
1495#define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001496
Stefan Richter53dca512008-12-14 21:47:04 +01001497static void handle_local_rom(struct fw_ohci *ohci,
1498 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001499{
1500 struct fw_packet response;
1501 int tcode, length, i;
1502
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001503 tcode = HEADER_GET_TCODE(packet->header[0]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001504 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001505 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001506 else
1507 length = 4;
1508
1509 i = csr - CSR_CONFIG_ROM;
1510 if (i + length > CONFIG_ROM_SIZE) {
1511 fw_fill_response(&response, packet->header,
1512 RCODE_ADDRESS_ERROR, NULL, 0);
1513 } else if (!TCODE_IS_READ_REQUEST(tcode)) {
1514 fw_fill_response(&response, packet->header,
1515 RCODE_TYPE_ERROR, NULL, 0);
1516 } else {
1517 fw_fill_response(&response, packet->header, RCODE_COMPLETE,
1518 (void *) ohci->config_rom + i, length);
1519 }
1520
1521 fw_core_handle_response(&ohci->card, &response);
1522}
1523
Stefan Richter53dca512008-12-14 21:47:04 +01001524static void handle_local_lock(struct fw_ohci *ohci,
1525 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001526{
1527 struct fw_packet response;
Clemens Ladische1393662010-04-12 10:35:44 +02001528 int tcode, length, ext_tcode, sel, try;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001529 __be32 *payload, lock_old;
1530 u32 lock_arg, lock_data;
1531
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001532 tcode = HEADER_GET_TCODE(packet->header[0]);
1533 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001534 payload = packet->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001535 ext_tcode = HEADER_GET_EXTENDED_TCODE(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001536
1537 if (tcode == TCODE_LOCK_REQUEST &&
1538 ext_tcode == EXTCODE_COMPARE_SWAP && length == 8) {
1539 lock_arg = be32_to_cpu(payload[0]);
1540 lock_data = be32_to_cpu(payload[1]);
1541 } else if (tcode == TCODE_READ_QUADLET_REQUEST) {
1542 lock_arg = 0;
1543 lock_data = 0;
1544 } else {
1545 fw_fill_response(&response, packet->header,
1546 RCODE_TYPE_ERROR, NULL, 0);
1547 goto out;
1548 }
1549
1550 sel = (csr - CSR_BUS_MANAGER_ID) / 4;
1551 reg_write(ohci, OHCI1394_CSRData, lock_data);
1552 reg_write(ohci, OHCI1394_CSRCompareData, lock_arg);
1553 reg_write(ohci, OHCI1394_CSRControl, sel);
1554
Clemens Ladische1393662010-04-12 10:35:44 +02001555 for (try = 0; try < 20; try++)
1556 if (reg_read(ohci, OHCI1394_CSRControl) & 0x80000000) {
1557 lock_old = cpu_to_be32(reg_read(ohci,
1558 OHCI1394_CSRData));
1559 fw_fill_response(&response, packet->header,
1560 RCODE_COMPLETE,
1561 &lock_old, sizeof(lock_old));
1562 goto out;
1563 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001564
Stefan Richter64d21722011-12-20 21:32:46 +01001565 dev_err(ohci->card.device, "swap not done (CSR lock timeout)\n");
Clemens Ladische1393662010-04-12 10:35:44 +02001566 fw_fill_response(&response, packet->header, RCODE_BUSY, NULL, 0);
1567
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001568 out:
1569 fw_core_handle_response(&ohci->card, &response);
1570}
1571
Stefan Richter53dca512008-12-14 21:47:04 +01001572static void handle_local_request(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001573{
Clemens Ladisch26082032010-04-12 10:35:30 +02001574 u64 offset, csr;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001575
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001576 if (ctx == &ctx->ohci->at_request_ctx) {
1577 packet->ack = ACK_PENDING;
1578 packet->callback(packet, &ctx->ohci->card, packet->ack);
1579 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001580
1581 offset =
1582 ((unsigned long long)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001583 HEADER_GET_OFFSET_HIGH(packet->header[1]) << 32) |
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001584 packet->header[2];
1585 csr = offset - CSR_REGISTER_BASE;
1586
1587 /* Handle config rom reads. */
1588 if (csr >= CSR_CONFIG_ROM && csr < CSR_CONFIG_ROM_END)
1589 handle_local_rom(ctx->ohci, packet, csr);
1590 else switch (csr) {
1591 case CSR_BUS_MANAGER_ID:
1592 case CSR_BANDWIDTH_AVAILABLE:
1593 case CSR_CHANNELS_AVAILABLE_HI:
1594 case CSR_CHANNELS_AVAILABLE_LO:
1595 handle_local_lock(ctx->ohci, packet, csr);
1596 break;
1597 default:
1598 if (ctx == &ctx->ohci->at_request_ctx)
1599 fw_core_handle_request(&ctx->ohci->card, packet);
1600 else
1601 fw_core_handle_response(&ctx->ohci->card, packet);
1602 break;
1603 }
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001604
1605 if (ctx == &ctx->ohci->at_response_ctx) {
1606 packet->ack = ACK_COMPLETE;
1607 packet->callback(packet, &ctx->ohci->card, packet->ack);
1608 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001609}
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001610
Stefan Richter53dca512008-12-14 21:47:04 +01001611static void at_context_transmit(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberged568912006-12-19 19:58:35 -05001612{
Kristian Høgsberged568912006-12-19 19:58:35 -05001613 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001614 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05001615
1616 spin_lock_irqsave(&ctx->ohci->lock, flags);
1617
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001618 if (HEADER_GET_DESTINATION(packet->header[0]) == ctx->ohci->node_id &&
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001619 ctx->ohci->generation == packet->generation) {
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001620 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1621 handle_local_request(ctx, packet);
1622 return;
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001623 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001624
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001625 ret = at_context_queue_packet(ctx, packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001626 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1627
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001628 if (ret < 0)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001629 packet->callback(packet, &ctx->ohci->card, packet->ack);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001630
Kristian Høgsberged568912006-12-19 19:58:35 -05001631}
1632
Clemens Ladischf117a3e2011-01-10 17:21:35 +01001633static void detect_dead_context(struct fw_ohci *ohci,
1634 const char *name, unsigned int regs)
1635{
1636 u32 ctl;
1637
1638 ctl = reg_read(ohci, CONTROL_SET(regs));
1639 if (ctl & CONTEXT_DEAD) {
1640#ifdef CONFIG_FIREWIRE_OHCI_DEBUG
Stefan Richter64d21722011-12-20 21:32:46 +01001641 dev_err(ohci->card.device,
1642 "DMA context %s has stopped, error code: %s\n",
1643 name, evts[ctl & 0x1f]);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01001644#else
Stefan Richter64d21722011-12-20 21:32:46 +01001645 dev_err(ohci->card.device,
1646 "DMA context %s has stopped, error code: %#x\n",
1647 name, ctl & 0x1f);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01001648#endif
1649 }
1650}
1651
1652static void handle_dead_contexts(struct fw_ohci *ohci)
1653{
1654 unsigned int i;
1655 char name[8];
1656
1657 detect_dead_context(ohci, "ATReq", OHCI1394_AsReqTrContextBase);
1658 detect_dead_context(ohci, "ATRsp", OHCI1394_AsRspTrContextBase);
1659 detect_dead_context(ohci, "ARReq", OHCI1394_AsReqRcvContextBase);
1660 detect_dead_context(ohci, "ARRsp", OHCI1394_AsRspRcvContextBase);
1661 for (i = 0; i < 32; ++i) {
1662 if (!(ohci->it_context_support & (1 << i)))
1663 continue;
1664 sprintf(name, "IT%u", i);
1665 detect_dead_context(ohci, name, OHCI1394_IsoXmitContextBase(i));
1666 }
1667 for (i = 0; i < 32; ++i) {
1668 if (!(ohci->ir_context_support & (1 << i)))
1669 continue;
1670 sprintf(name, "IR%u", i);
1671 detect_dead_context(ohci, name, OHCI1394_IsoRcvContextBase(i));
1672 }
1673 /* TODO: maybe try to flush and restart the dead contexts */
1674}
1675
Clemens Ladischa48777e2010-06-10 08:33:07 +02001676static u32 cycle_timer_ticks(u32 cycle_timer)
1677{
1678 u32 ticks;
1679
1680 ticks = cycle_timer & 0xfff;
1681 ticks += 3072 * ((cycle_timer >> 12) & 0x1fff);
1682 ticks += (3072 * 8000) * (cycle_timer >> 25);
1683
1684 return ticks;
1685}
1686
1687/*
1688 * Some controllers exhibit one or more of the following bugs when updating the
1689 * iso cycle timer register:
1690 * - When the lowest six bits are wrapping around to zero, a read that happens
1691 * at the same time will return garbage in the lowest ten bits.
1692 * - When the cycleOffset field wraps around to zero, the cycleCount field is
1693 * not incremented for about 60 ns.
1694 * - Occasionally, the entire register reads zero.
1695 *
1696 * To catch these, we read the register three times and ensure that the
1697 * difference between each two consecutive reads is approximately the same, i.e.
1698 * less than twice the other. Furthermore, any negative difference indicates an
1699 * error. (A PCI read should take at least 20 ticks of the 24.576 MHz timer to
1700 * execute, so we have enough precision to compute the ratio of the differences.)
1701 */
1702static u32 get_cycle_time(struct fw_ohci *ohci)
1703{
1704 u32 c0, c1, c2;
1705 u32 t0, t1, t2;
1706 s32 diff01, diff12;
1707 int i;
1708
1709 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1710
1711 if (ohci->quirks & QUIRK_CYCLE_TIMER) {
1712 i = 0;
1713 c1 = c2;
1714 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1715 do {
1716 c0 = c1;
1717 c1 = c2;
1718 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1719 t0 = cycle_timer_ticks(c0);
1720 t1 = cycle_timer_ticks(c1);
1721 t2 = cycle_timer_ticks(c2);
1722 diff01 = t1 - t0;
1723 diff12 = t2 - t1;
1724 } while ((diff01 <= 0 || diff12 <= 0 ||
1725 diff01 / diff12 >= 2 || diff12 / diff01 >= 2)
1726 && i++ < 20);
1727 }
1728
1729 return c2;
1730}
1731
1732/*
1733 * This function has to be called at least every 64 seconds. The bus_time
1734 * field stores not only the upper 25 bits of the BUS_TIME register but also
1735 * the most significant bit of the cycle timer in bit 6 so that we can detect
1736 * changes in this bit.
1737 */
1738static u32 update_bus_time(struct fw_ohci *ohci)
1739{
1740 u32 cycle_time_seconds = get_cycle_time(ohci) >> 25;
1741
1742 if ((ohci->bus_time & 0x40) != (cycle_time_seconds & 0x40))
1743 ohci->bus_time += 0x40;
1744
1745 return ohci->bus_time | cycle_time_seconds;
1746}
1747
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001748static int get_status_for_port(struct fw_ohci *ohci, int port_index)
1749{
1750 int reg;
1751
1752 mutex_lock(&ohci->phy_reg_mutex);
1753 reg = write_phy_reg(ohci, 7, port_index);
Stefan Richter28897fb2011-09-19 00:17:37 +02001754 if (reg >= 0)
1755 reg = read_phy_reg(ohci, 8);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001756 mutex_unlock(&ohci->phy_reg_mutex);
1757 if (reg < 0)
1758 return reg;
1759
1760 switch (reg & 0x0f) {
1761 case 0x06:
1762 return 2; /* is child node (connected to parent node) */
1763 case 0x0e:
1764 return 3; /* is parent node (connected to child node) */
1765 }
1766 return 1; /* not connected */
1767}
1768
1769static int get_self_id_pos(struct fw_ohci *ohci, u32 self_id,
1770 int self_id_count)
1771{
1772 int i;
1773 u32 entry;
Stefan Richter28897fb2011-09-19 00:17:37 +02001774
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001775 for (i = 0; i < self_id_count; i++) {
1776 entry = ohci->self_id_buffer[i];
1777 if ((self_id & 0xff000000) == (entry & 0xff000000))
1778 return -1;
1779 if ((self_id & 0xff000000) < (entry & 0xff000000))
1780 return i;
1781 }
1782 return i;
1783}
1784
1785/*
Stefan Richter28897fb2011-09-19 00:17:37 +02001786 * TI TSB82AA2B and TSB12LV26 do not receive the selfID of a locally
1787 * attached TSB41BA3D phy; see http://www.ti.com/litv/pdf/sllz059.
1788 * Construct the selfID from phy register contents.
1789 * FIXME: How to determine the selfID.i flag?
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001790 */
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001791static int find_and_insert_self_id(struct fw_ohci *ohci, int self_id_count)
1792{
Stefan Richter28897fb2011-09-19 00:17:37 +02001793 int reg, i, pos, status;
1794 /* link active 1, speed 3, bridge 0, contender 1, more packets 0 */
1795 u32 self_id = 0x8040c800;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001796
1797 reg = reg_read(ohci, OHCI1394_NodeID);
1798 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter64d21722011-12-20 21:32:46 +01001799 dev_notice(ohci->card.device,
1800 "node ID not valid, new bus reset in progress\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001801 return -EBUSY;
1802 }
1803 self_id |= ((reg & 0x3f) << 24); /* phy ID */
1804
Stefan Richter28897fb2011-09-19 00:17:37 +02001805 reg = ohci_read_phy_reg(&ohci->card, 4);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001806 if (reg < 0)
1807 return reg;
1808 self_id |= ((reg & 0x07) << 8); /* power class */
1809
Stefan Richter28897fb2011-09-19 00:17:37 +02001810 reg = ohci_read_phy_reg(&ohci->card, 1);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001811 if (reg < 0)
1812 return reg;
1813 self_id |= ((reg & 0x3f) << 16); /* gap count */
1814
1815 for (i = 0; i < 3; i++) {
1816 status = get_status_for_port(ohci, i);
1817 if (status < 0)
1818 return status;
1819 self_id |= ((status & 0x3) << (6 - (i * 2)));
1820 }
1821
1822 pos = get_self_id_pos(ohci, self_id, self_id_count);
1823 if (pos >= 0) {
1824 memmove(&(ohci->self_id_buffer[pos+1]),
1825 &(ohci->self_id_buffer[pos]),
1826 (self_id_count - pos) * sizeof(*ohci->self_id_buffer));
1827 ohci->self_id_buffer[pos] = self_id;
1828 self_id_count++;
1829 }
1830 return self_id_count;
1831}
1832
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02001833static void bus_reset_work(struct work_struct *work)
Kristian Høgsberged568912006-12-19 19:58:35 -05001834{
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02001835 struct fw_ohci *ohci =
1836 container_of(work, struct fw_ohci, bus_reset_work);
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001837 int self_id_count, i, j, reg;
Kristian Høgsberged568912006-12-19 19:58:35 -05001838 int generation, new_generation;
1839 unsigned long flags;
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001840 void *free_rom = NULL;
1841 dma_addr_t free_rom_bus = 0;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001842 bool is_new_root;
Kristian Høgsberged568912006-12-19 19:58:35 -05001843
1844 reg = reg_read(ohci, OHCI1394_NodeID);
1845 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter64d21722011-12-20 21:32:46 +01001846 dev_notice(ohci->card.device,
1847 "node ID not valid, new bus reset in progress\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05001848 return;
1849 }
Stefan Richter02ff8f82007-08-30 00:11:40 +02001850 if ((reg & OHCI1394_NodeID_nodeNumber) == 63) {
Stefan Richter64d21722011-12-20 21:32:46 +01001851 dev_notice(ohci->card.device, "malconfigured bus\n");
Stefan Richter02ff8f82007-08-30 00:11:40 +02001852 return;
1853 }
1854 ohci->node_id = reg & (OHCI1394_NodeID_busNumber |
1855 OHCI1394_NodeID_nodeNumber);
Kristian Høgsberged568912006-12-19 19:58:35 -05001856
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001857 is_new_root = (reg & OHCI1394_NodeID_root) != 0;
1858 if (!(ohci->is_root && is_new_root))
1859 reg_write(ohci, OHCI1394_LinkControlSet,
1860 OHCI1394_LinkControl_cycleMaster);
1861 ohci->is_root = is_new_root;
1862
Stefan Richterc8a9a492008-03-19 21:40:32 +01001863 reg = reg_read(ohci, OHCI1394_SelfIDCount);
1864 if (reg & OHCI1394_SelfIDCount_selfIDError) {
Stefan Richter64d21722011-12-20 21:32:46 +01001865 dev_notice(ohci->card.device, "inconsistent self IDs\n");
Stefan Richterc8a9a492008-03-19 21:40:32 +01001866 return;
1867 }
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001868 /*
1869 * The count in the SelfIDCount register is the number of
Kristian Høgsberged568912006-12-19 19:58:35 -05001870 * bytes in the self ID receive buffer. Since we also receive
1871 * the inverted quadlets and a header quadlet, we shift one
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001872 * bit extra to get the actual number of self IDs.
1873 */
Stefan Richter928ec5f2009-09-06 18:49:17 +02001874 self_id_count = (reg >> 3) & 0xff;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001875
1876 if (self_id_count > 252) {
Stefan Richter64d21722011-12-20 21:32:46 +01001877 dev_notice(ohci->card.device, "inconsistent self IDs\n");
Stefan Richter016bf3d2008-03-19 22:05:02 +01001878 return;
1879 }
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001880
Stefan Richter11bf20a2008-03-01 02:47:15 +01001881 generation = (cond_le32_to_cpu(ohci->self_id_cpu[0]) >> 16) & 0xff;
Stefan Richteree71c2f2007-08-25 14:08:19 +02001882 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001883
1884 for (i = 1, j = 0; j < self_id_count; i += 2, j++) {
Stefan Richterc8a9a492008-03-19 21:40:32 +01001885 if (ohci->self_id_cpu[i] != ~ohci->self_id_cpu[i + 1]) {
Clemens Ladisch32eaeae2011-10-15 18:14:39 +02001886 /*
1887 * If the invalid data looks like a cycle start packet,
1888 * it's likely to be the result of the cycle master
1889 * having a wrong gap count. In this case, the self IDs
1890 * so far are valid and should be processed so that the
1891 * bus manager can then correct the gap count.
1892 */
1893 if (cond_le32_to_cpu(ohci->self_id_cpu[i])
1894 == 0xffff008f) {
Stefan Richter64d21722011-12-20 21:32:46 +01001895 dev_notice(ohci->card.device,
1896 "ignoring spurious self IDs\n");
Clemens Ladisch32eaeae2011-10-15 18:14:39 +02001897 self_id_count = j;
1898 break;
1899 } else {
Stefan Richter64d21722011-12-20 21:32:46 +01001900 dev_notice(ohci->card.device,
1901 "inconsistent self IDs\n");
Clemens Ladisch32eaeae2011-10-15 18:14:39 +02001902 return;
1903 }
Stefan Richterc8a9a492008-03-19 21:40:32 +01001904 }
Stefan Richter11bf20a2008-03-01 02:47:15 +01001905 ohci->self_id_buffer[j] =
1906 cond_le32_to_cpu(ohci->self_id_cpu[i]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001907 }
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001908
1909 if (ohci->quirks & QUIRK_TI_SLLZ059) {
1910 self_id_count = find_and_insert_self_id(ohci, self_id_count);
1911 if (self_id_count < 0) {
Stefan Richter64d21722011-12-20 21:32:46 +01001912 dev_notice(ohci->card.device,
1913 "could not construct local self ID\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001914 return;
1915 }
1916 }
1917
1918 if (self_id_count == 0) {
Stefan Richter64d21722011-12-20 21:32:46 +01001919 dev_notice(ohci->card.device, "inconsistent self IDs\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001920 return;
1921 }
Stefan Richteree71c2f2007-08-25 14:08:19 +02001922 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001923
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001924 /*
1925 * Check the consistency of the self IDs we just read. The
Kristian Høgsberged568912006-12-19 19:58:35 -05001926 * problem we face is that a new bus reset can start while we
1927 * read out the self IDs from the DMA buffer. If this happens,
1928 * the DMA buffer will be overwritten with new self IDs and we
1929 * will read out inconsistent data. The OHCI specification
1930 * (section 11.2) recommends a technique similar to
1931 * linux/seqlock.h, where we remember the generation of the
1932 * self IDs in the buffer before reading them out and compare
1933 * it to the current generation after reading them out. If
1934 * the two generations match we know we have a consistent set
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001935 * of self IDs.
1936 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001937
1938 new_generation = (reg_read(ohci, OHCI1394_SelfIDCount) >> 16) & 0xff;
1939 if (new_generation != generation) {
Stefan Richter64d21722011-12-20 21:32:46 +01001940 dev_notice(ohci->card.device,
1941 "new bus reset, discarding self ids\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05001942 return;
1943 }
1944
1945 /* FIXME: Document how the locking works. */
1946 spin_lock_irqsave(&ohci->lock, flags);
1947
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001948 ohci->generation = -1; /* prevent AT packet queueing */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001949 context_stop(&ohci->at_request_ctx);
1950 context_stop(&ohci->at_response_ctx);
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001951
1952 spin_unlock_irqrestore(&ohci->lock, flags);
1953
Stefan Richter78dec562011-01-01 15:15:40 +01001954 /*
1955 * Per OHCI 1.2 draft, clause 7.2.3.3, hardware may leave unsent
1956 * packets in the AT queues and software needs to drain them.
1957 * Some OHCI 1.1 controllers (JMicron) apparently require this too.
1958 */
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001959 at_context_flush(&ohci->at_request_ctx);
1960 at_context_flush(&ohci->at_response_ctx);
1961
1962 spin_lock_irqsave(&ohci->lock, flags);
1963
1964 ohci->generation = generation;
Kristian Høgsberged568912006-12-19 19:58:35 -05001965 reg_write(ohci, OHCI1394_IntEventClear, OHCI1394_busReset);
1966
Stefan Richter4a635592010-02-21 17:58:01 +01001967 if (ohci->quirks & QUIRK_RESET_PACKET)
Stefan Richterd34316a2008-04-12 22:31:25 +02001968 ohci->request_generation = generation;
1969
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001970 /*
1971 * This next bit is unrelated to the AT context stuff but we
Kristian Høgsberged568912006-12-19 19:58:35 -05001972 * have to do it under the spinlock also. If a new config rom
1973 * was set up before this reset, the old one is now no longer
1974 * in use and we can free it. Update the config rom pointers
1975 * to point to the current config rom and clear the
Thomas Weber88393162010-03-16 11:47:56 +01001976 * next_config_rom pointer so a new update can take place.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001977 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001978
1979 if (ohci->next_config_rom != NULL) {
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001980 if (ohci->next_config_rom != ohci->config_rom) {
1981 free_rom = ohci->config_rom;
1982 free_rom_bus = ohci->config_rom_bus;
1983 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001984 ohci->config_rom = ohci->next_config_rom;
1985 ohci->config_rom_bus = ohci->next_config_rom_bus;
1986 ohci->next_config_rom = NULL;
1987
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001988 /*
1989 * Restore config_rom image and manually update
Kristian Høgsberged568912006-12-19 19:58:35 -05001990 * config_rom registers. Writing the header quadlet
1991 * will indicate that the config rom is ready, so we
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001992 * do that last.
1993 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001994 reg_write(ohci, OHCI1394_BusOptions,
1995 be32_to_cpu(ohci->config_rom[2]));
Stefan Richter8e859732009-10-08 00:41:59 +02001996 ohci->config_rom[0] = ohci->next_header;
1997 reg_write(ohci, OHCI1394_ConfigROMhdr,
1998 be32_to_cpu(ohci->next_header));
Kristian Høgsberged568912006-12-19 19:58:35 -05001999 }
2000
Stefan Richter080de8c2008-02-28 20:54:43 +01002001#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
2002 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, ~0);
2003 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, ~0);
2004#endif
2005
Kristian Høgsberged568912006-12-19 19:58:35 -05002006 spin_unlock_irqrestore(&ohci->lock, flags);
2007
Stefan Richter4eaff7d2007-07-25 19:18:08 +02002008 if (free_rom)
2009 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2010 free_rom, free_rom_bus);
2011
Stefan Richter64d21722011-12-20 21:32:46 +01002012 log_selfids(ohci, generation, self_id_count);
Stefan Richterad3c0fe2008-03-20 22:04:36 +01002013
Kristian Høgsberge636fe22007-01-26 00:38:04 -05002014 fw_core_handle_bus_reset(&ohci->card, ohci->node_id, generation,
Stefan Richterc8a94de2010-06-12 20:34:50 +02002015 self_id_count, ohci->self_id_buffer,
2016 ohci->csr_state_setclear_abdicate);
2017 ohci->csr_state_setclear_abdicate = false;
Kristian Høgsberged568912006-12-19 19:58:35 -05002018}
2019
2020static irqreturn_t irq_handler(int irq, void *data)
2021{
2022 struct fw_ohci *ohci = data;
Stefan Richter168cf9a2010-02-14 18:49:18 +01002023 u32 event, iso_event;
Kristian Høgsberged568912006-12-19 19:58:35 -05002024 int i;
2025
2026 event = reg_read(ohci, OHCI1394_IntEventClear);
2027
Stefan Richtera5159582007-06-09 19:31:14 +02002028 if (!event || !~event)
Kristian Høgsberged568912006-12-19 19:58:35 -05002029 return IRQ_NONE;
2030
Clemens Ladisch8327b372010-11-30 08:24:32 +01002031 /*
2032 * busReset and postedWriteErr must not be cleared yet
2033 * (OHCI 1.1 clauses 7.2.3.2 and 13.2.8.1)
2034 */
2035 reg_write(ohci, OHCI1394_IntEventClear,
2036 event & ~(OHCI1394_busReset | OHCI1394_postedWriteErr));
Stefan Richter64d21722011-12-20 21:32:46 +01002037 log_irqs(ohci, event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002038
2039 if (event & OHCI1394_selfIDComplete)
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02002040 queue_work(fw_workqueue, &ohci->bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05002041
2042 if (event & OHCI1394_RQPkt)
2043 tasklet_schedule(&ohci->ar_request_ctx.tasklet);
2044
2045 if (event & OHCI1394_RSPkt)
2046 tasklet_schedule(&ohci->ar_response_ctx.tasklet);
2047
2048 if (event & OHCI1394_reqTxComplete)
2049 tasklet_schedule(&ohci->at_request_ctx.tasklet);
2050
2051 if (event & OHCI1394_respTxComplete)
2052 tasklet_schedule(&ohci->at_response_ctx.tasklet);
2053
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002054 if (event & OHCI1394_isochRx) {
2055 iso_event = reg_read(ohci, OHCI1394_IsoRecvIntEventClear);
2056 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, iso_event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002057
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002058 while (iso_event) {
2059 i = ffs(iso_event) - 1;
2060 tasklet_schedule(
2061 &ohci->ir_context_list[i].context.tasklet);
2062 iso_event &= ~(1 << i);
2063 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002064 }
2065
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002066 if (event & OHCI1394_isochTx) {
2067 iso_event = reg_read(ohci, OHCI1394_IsoXmitIntEventClear);
2068 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, iso_event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002069
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002070 while (iso_event) {
2071 i = ffs(iso_event) - 1;
2072 tasklet_schedule(
2073 &ohci->it_context_list[i].context.tasklet);
2074 iso_event &= ~(1 << i);
2075 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002076 }
2077
Jarod Wilson75f78322008-04-03 17:18:23 -04002078 if (unlikely(event & OHCI1394_regAccessFail))
Stefan Richter98466cc2012-03-04 14:24:31 +01002079 dev_err(ohci->card.device, "register access failure\n");
Jarod Wilson75f78322008-04-03 17:18:23 -04002080
Clemens Ladisch8327b372010-11-30 08:24:32 +01002081 if (unlikely(event & OHCI1394_postedWriteErr)) {
2082 reg_read(ohci, OHCI1394_PostedWriteAddressHi);
2083 reg_read(ohci, OHCI1394_PostedWriteAddressLo);
2084 reg_write(ohci, OHCI1394_IntEventClear,
2085 OHCI1394_postedWriteErr);
Stephan Gatzkaa74477d2011-09-26 21:44:30 +02002086 if (printk_ratelimit())
Stefan Richter64d21722011-12-20 21:32:46 +01002087 dev_err(ohci->card.device, "PCI posted write error\n");
Clemens Ladisch8327b372010-11-30 08:24:32 +01002088 }
Stefan Richtere524f6162007-08-20 21:58:30 +02002089
Stefan Richterbb9f2202007-12-22 22:14:52 +01002090 if (unlikely(event & OHCI1394_cycleTooLong)) {
2091 if (printk_ratelimit())
Stefan Richter64d21722011-12-20 21:32:46 +01002092 dev_notice(ohci->card.device,
2093 "isochronous cycle too long\n");
Stefan Richterbb9f2202007-12-22 22:14:52 +01002094 reg_write(ohci, OHCI1394_LinkControlSet,
2095 OHCI1394_LinkControl_cycleMaster);
2096 }
2097
Jay Fenlason5ed1f322009-11-17 12:29:17 -05002098 if (unlikely(event & OHCI1394_cycleInconsistent)) {
2099 /*
2100 * We need to clear this event bit in order to make
2101 * cycleMatch isochronous I/O work. In theory we should
2102 * stop active cycleMatch iso contexts now and restart
2103 * them at least two cycles later. (FIXME?)
2104 */
2105 if (printk_ratelimit())
Stefan Richter64d21722011-12-20 21:32:46 +01002106 dev_notice(ohci->card.device,
2107 "isochronous cycle inconsistent\n");
Jay Fenlason5ed1f322009-11-17 12:29:17 -05002108 }
2109
Clemens Ladischf117a3e2011-01-10 17:21:35 +01002110 if (unlikely(event & OHCI1394_unrecoverableError))
2111 handle_dead_contexts(ohci);
2112
Clemens Ladischa48777e2010-06-10 08:33:07 +02002113 if (event & OHCI1394_cycle64Seconds) {
2114 spin_lock(&ohci->lock);
2115 update_bus_time(ohci);
2116 spin_unlock(&ohci->lock);
Clemens Ladische597e982010-11-30 08:24:19 +01002117 } else
2118 flush_writes(ohci);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002119
Kristian Høgsberged568912006-12-19 19:58:35 -05002120 return IRQ_HANDLED;
2121}
2122
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002123static int software_reset(struct fw_ohci *ohci)
2124{
Stefan Richter9f426172011-07-03 17:39:26 +02002125 u32 val;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002126 int i;
2127
2128 reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset);
Stefan Richter9f426172011-07-03 17:39:26 +02002129 for (i = 0; i < 500; i++) {
2130 val = reg_read(ohci, OHCI1394_HCControlSet);
2131 if (!~val)
2132 return -ENODEV; /* Card was ejected. */
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002133
Stefan Richter9f426172011-07-03 17:39:26 +02002134 if (!(val & OHCI1394_HCControl_softReset))
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002135 return 0;
Stefan Richter9f426172011-07-03 17:39:26 +02002136
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002137 msleep(1);
2138 }
2139
2140 return -EBUSY;
2141}
2142
Stefan Richter8e859732009-10-08 00:41:59 +02002143static void copy_config_rom(__be32 *dest, const __be32 *src, size_t length)
2144{
2145 size_t size = length * 4;
2146
2147 memcpy(dest, src, size);
2148 if (size < CONFIG_ROM_SIZE)
2149 memset(&dest[length], 0, CONFIG_ROM_SIZE - size);
2150}
2151
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002152static int configure_1394a_enhancements(struct fw_ohci *ohci)
2153{
2154 bool enable_1394a;
Stefan Richter35d999b2010-04-10 16:04:56 +02002155 int ret, clear, set, offset;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002156
2157 /* Check if the driver should configure link and PHY. */
2158 if (!(reg_read(ohci, OHCI1394_HCControlSet) &
2159 OHCI1394_HCControl_programPhyEnable))
2160 return 0;
2161
2162 /* Paranoia: check whether the PHY supports 1394a, too. */
2163 enable_1394a = false;
Stefan Richter35d999b2010-04-10 16:04:56 +02002164 ret = read_phy_reg(ohci, 2);
2165 if (ret < 0)
2166 return ret;
2167 if ((ret & PHY_EXTENDED_REGISTERS) == PHY_EXTENDED_REGISTERS) {
2168 ret = read_paged_phy_reg(ohci, 1, 8);
2169 if (ret < 0)
2170 return ret;
2171 if (ret >= 1)
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002172 enable_1394a = true;
2173 }
2174
2175 if (ohci->quirks & QUIRK_NO_1394A)
2176 enable_1394a = false;
2177
2178 /* Configure PHY and link consistently. */
2179 if (enable_1394a) {
2180 clear = 0;
2181 set = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
2182 } else {
2183 clear = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
2184 set = 0;
2185 }
Stefan Richter02d37be2010-07-08 16:09:06 +02002186 ret = update_phy_reg(ohci, 5, clear, set);
Stefan Richter35d999b2010-04-10 16:04:56 +02002187 if (ret < 0)
2188 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002189
2190 if (enable_1394a)
2191 offset = OHCI1394_HCControlSet;
2192 else
2193 offset = OHCI1394_HCControlClear;
2194 reg_write(ohci, offset, OHCI1394_HCControl_aPhyEnhanceEnable);
2195
2196 /* Clean up: configuration has been taken care of. */
2197 reg_write(ohci, OHCI1394_HCControlClear,
2198 OHCI1394_HCControl_programPhyEnable);
2199
2200 return 0;
2201}
2202
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002203static int probe_tsb41ba3d(struct fw_ohci *ohci)
2204{
Stefan Richterb810e4a2011-09-19 09:29:30 +02002205 /* TI vendor ID = 0x080028, TSB41BA3D product ID = 0x833005 (sic) */
2206 static const u8 id[] = { 0x08, 0x00, 0x28, 0x83, 0x30, 0x05, };
2207 int reg, i;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002208
2209 reg = read_phy_reg(ohci, 2);
2210 if (reg < 0)
2211 return reg;
Stefan Richterb810e4a2011-09-19 09:29:30 +02002212 if ((reg & PHY_EXTENDED_REGISTERS) != PHY_EXTENDED_REGISTERS)
2213 return 0;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002214
Stefan Richterb810e4a2011-09-19 09:29:30 +02002215 for (i = ARRAY_SIZE(id) - 1; i >= 0; i--) {
2216 reg = read_paged_phy_reg(ohci, 1, i + 10);
2217 if (reg < 0)
2218 return reg;
2219 if (reg != id[i])
2220 return 0;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002221 }
Stefan Richterb810e4a2011-09-19 09:29:30 +02002222 return 1;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002223}
2224
Stefan Richter8e859732009-10-08 00:41:59 +02002225static int ohci_enable(struct fw_card *card,
2226 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05002227{
2228 struct fw_ohci *ohci = fw_ohci(card);
2229 struct pci_dev *dev = to_pci_dev(card->device);
Clemens Ladische91b2782010-06-10 08:40:49 +02002230 u32 lps, seconds, version, irqs;
Stefan Richter28897fb2011-09-19 00:17:37 +02002231 int i, ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05002232
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002233 if (software_reset(ohci)) {
Stefan Richter64d21722011-12-20 21:32:46 +01002234 dev_err(card->device, "failed to reset ohci card\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002235 return -EBUSY;
2236 }
2237
2238 /*
2239 * Now enable LPS, which we need in order to start accessing
2240 * most of the registers. In fact, on some cards (ALI M5251),
2241 * accessing registers in the SClk domain without LPS enabled
2242 * will lock up the machine. Wait 50msec to make sure we have
Jarod Wilson02214722008-03-28 10:02:50 -04002243 * full link enabled. However, with some cards (well, at least
2244 * a JMicron PCIe card), we have to try again sometimes.
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002245 */
2246 reg_write(ohci, OHCI1394_HCControlSet,
2247 OHCI1394_HCControl_LPS |
2248 OHCI1394_HCControl_postedWriteEnable);
2249 flush_writes(ohci);
Jarod Wilson02214722008-03-28 10:02:50 -04002250
2251 for (lps = 0, i = 0; !lps && i < 3; i++) {
2252 msleep(50);
2253 lps = reg_read(ohci, OHCI1394_HCControlSet) &
2254 OHCI1394_HCControl_LPS;
2255 }
2256
2257 if (!lps) {
Stefan Richter64d21722011-12-20 21:32:46 +01002258 dev_err(card->device, "failed to set Link Power Status\n");
Jarod Wilson02214722008-03-28 10:02:50 -04002259 return -EIO;
2260 }
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002261
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002262 if (ohci->quirks & QUIRK_TI_SLLZ059) {
Stefan Richter28897fb2011-09-19 00:17:37 +02002263 ret = probe_tsb41ba3d(ohci);
2264 if (ret < 0)
2265 return ret;
2266 if (ret)
Stefan Richter64d21722011-12-20 21:32:46 +01002267 dev_notice(card->device, "local TSB41BA3D phy\n");
Stefan Richter28897fb2011-09-19 00:17:37 +02002268 else
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002269 ohci->quirks &= ~QUIRK_TI_SLLZ059;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002270 }
2271
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002272 reg_write(ohci, OHCI1394_HCControlClear,
2273 OHCI1394_HCControl_noByteSwapData);
2274
Stefan Richteraffc9c22008-06-05 20:50:53 +02002275 reg_write(ohci, OHCI1394_SelfIDBuffer, ohci->self_id_bus);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002276 reg_write(ohci, OHCI1394_LinkControlSet,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002277 OHCI1394_LinkControl_cycleTimerEnable |
2278 OHCI1394_LinkControl_cycleMaster);
2279
2280 reg_write(ohci, OHCI1394_ATRetries,
2281 OHCI1394_MAX_AT_REQ_RETRIES |
2282 (OHCI1394_MAX_AT_RESP_RETRIES << 4) |
Clemens Ladisch27a23292010-06-10 08:34:13 +02002283 (OHCI1394_MAX_PHYS_RESP_RETRIES << 8) |
2284 (200 << 16));
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002285
Clemens Ladischa48777e2010-06-10 08:33:07 +02002286 seconds = lower_32_bits(get_seconds());
2287 reg_write(ohci, OHCI1394_IsochronousCycleTimer, seconds << 25);
2288 ohci->bus_time = seconds & ~0x3f;
2289
Clemens Ladische91b2782010-06-10 08:40:49 +02002290 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
2291 if (version >= OHCI_VERSION_1_1) {
2292 reg_write(ohci, OHCI1394_InitialChannelsAvailableHi,
2293 0xfffffffe);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02002294 card->broadcast_channel_auto_allocated = true;
Clemens Ladische91b2782010-06-10 08:40:49 +02002295 }
2296
Clemens Ladischa1a11322010-06-10 08:35:06 +02002297 /* Get implemented bits of the priority arbitration request counter. */
2298 reg_write(ohci, OHCI1394_FairnessControl, 0x3f);
2299 ohci->pri_req_max = reg_read(ohci, OHCI1394_FairnessControl) & 0x3f;
2300 reg_write(ohci, OHCI1394_FairnessControl, 0);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02002301 card->priority_budget_implemented = ohci->pri_req_max != 0;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002302
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002303 reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000);
2304 reg_write(ohci, OHCI1394_IntEventClear, ~0);
2305 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002306
Stefan Richter35d999b2010-04-10 16:04:56 +02002307 ret = configure_1394a_enhancements(ohci);
2308 if (ret < 0)
2309 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002310
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002311 /* Activate link_on bit and contender bit in our self ID packets.*/
Stefan Richter35d999b2010-04-10 16:04:56 +02002312 ret = ohci_update_phy_reg(card, 4, 0, PHY_LINK_ACTIVE | PHY_CONTENDER);
2313 if (ret < 0)
2314 return ret;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002315
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002316 /*
2317 * When the link is not yet enabled, the atomic config rom
Kristian Høgsberged568912006-12-19 19:58:35 -05002318 * update mechanism described below in ohci_set_config_rom()
2319 * is not active. We have to update ConfigRomHeader and
2320 * BusOptions manually, and the write to ConfigROMmap takes
2321 * effect immediately. We tie this to the enabling of the
2322 * link, so we have a valid config rom before enabling - the
2323 * OHCI requires that ConfigROMhdr and BusOptions have valid
2324 * values before enabling.
2325 *
2326 * However, when the ConfigROMmap is written, some controllers
2327 * always read back quadlets 0 and 2 from the config rom to
2328 * the ConfigRomHeader and BusOptions registers on bus reset.
2329 * They shouldn't do that in this initial case where the link
2330 * isn't enabled. This means we have to use the same
2331 * workaround here, setting the bus header to 0 and then write
2332 * the right values in the bus reset tasklet.
2333 */
2334
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002335 if (config_rom) {
2336 ohci->next_config_rom =
2337 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2338 &ohci->next_config_rom_bus,
2339 GFP_KERNEL);
2340 if (ohci->next_config_rom == NULL)
2341 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05002342
Stefan Richter8e859732009-10-08 00:41:59 +02002343 copy_config_rom(ohci->next_config_rom, config_rom, length);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002344 } else {
2345 /*
2346 * In the suspend case, config_rom is NULL, which
2347 * means that we just reuse the old config rom.
2348 */
2349 ohci->next_config_rom = ohci->config_rom;
2350 ohci->next_config_rom_bus = ohci->config_rom_bus;
2351 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002352
Stefan Richter8e859732009-10-08 00:41:59 +02002353 ohci->next_header = ohci->next_config_rom[0];
Kristian Høgsberged568912006-12-19 19:58:35 -05002354 ohci->next_config_rom[0] = 0;
2355 reg_write(ohci, OHCI1394_ConfigROMhdr, 0);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002356 reg_write(ohci, OHCI1394_BusOptions,
2357 be32_to_cpu(ohci->next_config_rom[2]));
Kristian Høgsberged568912006-12-19 19:58:35 -05002358 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
2359
2360 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
2361
Clemens Ladisch262444e2010-06-05 12:31:25 +02002362 if (!(ohci->quirks & QUIRK_NO_MSI))
2363 pci_enable_msi(dev);
Kristian Høgsberged568912006-12-19 19:58:35 -05002364 if (request_irq(dev->irq, irq_handler,
Clemens Ladisch262444e2010-06-05 12:31:25 +02002365 pci_dev_msi_enabled(dev) ? 0 : IRQF_SHARED,
2366 ohci_driver_name, ohci)) {
Stefan Richter64d21722011-12-20 21:32:46 +01002367 dev_err(card->device, "failed to allocate interrupt %d\n",
2368 dev->irq);
Clemens Ladisch262444e2010-06-05 12:31:25 +02002369 pci_disable_msi(dev);
Stefan Richtera01e8362011-08-11 20:40:42 +02002370
2371 if (config_rom) {
2372 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2373 ohci->next_config_rom,
2374 ohci->next_config_rom_bus);
2375 ohci->next_config_rom = NULL;
2376 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002377 return -EIO;
2378 }
2379
Stefan Richter148c7862010-06-05 11:46:49 +02002380 irqs = OHCI1394_reqTxComplete | OHCI1394_respTxComplete |
2381 OHCI1394_RQPkt | OHCI1394_RSPkt |
2382 OHCI1394_isochTx | OHCI1394_isochRx |
2383 OHCI1394_postedWriteErr |
2384 OHCI1394_selfIDComplete |
2385 OHCI1394_regAccessFail |
Clemens Ladischa48777e2010-06-10 08:33:07 +02002386 OHCI1394_cycle64Seconds |
Clemens Ladischf117a3e2011-01-10 17:21:35 +01002387 OHCI1394_cycleInconsistent |
2388 OHCI1394_unrecoverableError |
2389 OHCI1394_cycleTooLong |
Stefan Richter148c7862010-06-05 11:46:49 +02002390 OHCI1394_masterIntEnable;
2391 if (param_debug & OHCI_PARAM_DEBUG_BUSRESETS)
2392 irqs |= OHCI1394_busReset;
2393 reg_write(ohci, OHCI1394_IntMaskSet, irqs);
2394
Kristian Høgsberged568912006-12-19 19:58:35 -05002395 reg_write(ohci, OHCI1394_HCControlSet,
2396 OHCI1394_HCControl_linkEnable |
2397 OHCI1394_HCControl_BIBimageValid);
Clemens Ladischecf83282011-04-11 09:56:12 +02002398
2399 reg_write(ohci, OHCI1394_LinkControlSet,
2400 OHCI1394_LinkControl_rcvSelfID |
2401 OHCI1394_LinkControl_rcvPhyPkt);
2402
2403 ar_context_run(&ohci->ar_request_ctx);
Clemens Ladischdd6254e2011-05-16 08:10:10 +02002404 ar_context_run(&ohci->ar_response_ctx);
2405
2406 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002407
Stefan Richter02d37be2010-07-08 16:09:06 +02002408 /* We are ready to go, reset bus to finish initialization. */
2409 fw_schedule_bus_reset(&ohci->card, false, true);
Kristian Høgsberged568912006-12-19 19:58:35 -05002410
2411 return 0;
2412}
2413
Stefan Richter53dca512008-12-14 21:47:04 +01002414static int ohci_set_config_rom(struct fw_card *card,
Stefan Richter8e859732009-10-08 00:41:59 +02002415 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05002416{
2417 struct fw_ohci *ohci;
2418 unsigned long flags;
Kristian Høgsberged568912006-12-19 19:58:35 -05002419 __be32 *next_config_rom;
Stefan Richterf5101d582008-03-14 00:27:49 +01002420 dma_addr_t uninitialized_var(next_config_rom_bus);
Kristian Høgsberged568912006-12-19 19:58:35 -05002421
2422 ohci = fw_ohci(card);
2423
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002424 /*
2425 * When the OHCI controller is enabled, the config rom update
Kristian Høgsberged568912006-12-19 19:58:35 -05002426 * mechanism is a bit tricky, but easy enough to use. See
2427 * section 5.5.6 in the OHCI specification.
2428 *
2429 * The OHCI controller caches the new config rom address in a
2430 * shadow register (ConfigROMmapNext) and needs a bus reset
2431 * for the changes to take place. When the bus reset is
2432 * detected, the controller loads the new values for the
2433 * ConfigRomHeader and BusOptions registers from the specified
2434 * config rom and loads ConfigROMmap from the ConfigROMmapNext
2435 * shadow register. All automatically and atomically.
2436 *
2437 * Now, there's a twist to this story. The automatic load of
2438 * ConfigRomHeader and BusOptions doesn't honor the
2439 * noByteSwapData bit, so with a be32 config rom, the
2440 * controller will load be32 values in to these registers
2441 * during the atomic update, even on litte endian
2442 * architectures. The workaround we use is to put a 0 in the
2443 * header quadlet; 0 is endian agnostic and means that the
2444 * config rom isn't ready yet. In the bus reset tasklet we
2445 * then set up the real values for the two registers.
2446 *
2447 * We use ohci->lock to avoid racing with the code that sets
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02002448 * ohci->next_config_rom to NULL (see bus_reset_work).
Kristian Høgsberged568912006-12-19 19:58:35 -05002449 */
2450
2451 next_config_rom =
2452 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2453 &next_config_rom_bus, GFP_KERNEL);
2454 if (next_config_rom == NULL)
2455 return -ENOMEM;
2456
2457 spin_lock_irqsave(&ohci->lock, flags);
2458
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002459 /*
2460 * If there is not an already pending config_rom update,
2461 * push our new allocation into the ohci->next_config_rom
2462 * and then mark the local variable as null so that we
2463 * won't deallocate the new buffer.
2464 *
2465 * OTOH, if there is a pending config_rom update, just
2466 * use that buffer with the new config_rom data, and
2467 * let this routine free the unused DMA allocation.
2468 */
2469
Kristian Høgsberged568912006-12-19 19:58:35 -05002470 if (ohci->next_config_rom == NULL) {
2471 ohci->next_config_rom = next_config_rom;
2472 ohci->next_config_rom_bus = next_config_rom_bus;
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002473 next_config_rom = NULL;
Kristian Høgsberged568912006-12-19 19:58:35 -05002474 }
2475
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002476 copy_config_rom(ohci->next_config_rom, config_rom, length);
2477
2478 ohci->next_header = config_rom[0];
2479 ohci->next_config_rom[0] = 0;
2480
2481 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
2482
Kristian Høgsberged568912006-12-19 19:58:35 -05002483 spin_unlock_irqrestore(&ohci->lock, flags);
2484
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002485 /* If we didn't use the DMA allocation, delete it. */
2486 if (next_config_rom != NULL)
2487 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2488 next_config_rom, next_config_rom_bus);
2489
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002490 /*
2491 * Now initiate a bus reset to have the changes take
Kristian Høgsberged568912006-12-19 19:58:35 -05002492 * effect. We clean up the old config rom memory and DMA
2493 * mappings in the bus reset tasklet, since the OHCI
2494 * controller could need to access it before the bus reset
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002495 * takes effect.
2496 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002497
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002498 fw_schedule_bus_reset(&ohci->card, true, true);
2499
2500 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002501}
2502
2503static void ohci_send_request(struct fw_card *card, struct fw_packet *packet)
2504{
2505 struct fw_ohci *ohci = fw_ohci(card);
2506
2507 at_context_transmit(&ohci->at_request_ctx, packet);
2508}
2509
2510static void ohci_send_response(struct fw_card *card, struct fw_packet *packet)
2511{
2512 struct fw_ohci *ohci = fw_ohci(card);
2513
2514 at_context_transmit(&ohci->at_response_ctx, packet);
2515}
2516
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002517static int ohci_cancel_packet(struct fw_card *card, struct fw_packet *packet)
2518{
2519 struct fw_ohci *ohci = fw_ohci(card);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002520 struct context *ctx = &ohci->at_request_ctx;
2521 struct driver_data *driver_data = packet->driver_data;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002522 int ret = -ENOENT;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002523
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002524 tasklet_disable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002525
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002526 if (packet->ack != 0)
2527 goto out;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002528
Stefan Richter19593ff2009-10-14 20:40:10 +02002529 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01002530 dma_unmap_single(ohci->card.device, packet->payload_bus,
2531 packet->payload_length, DMA_TO_DEVICE);
2532
Stefan Richter64d21722011-12-20 21:32:46 +01002533 log_ar_at_event(ohci, 'T', packet->speed, packet->header, 0x20);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002534 driver_data->packet = NULL;
2535 packet->ack = RCODE_CANCELLED;
2536 packet->callback(packet, &ohci->card, packet->ack);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002537 ret = 0;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002538 out:
2539 tasklet_enable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002540
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002541 return ret;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002542}
2543
Stefan Richter53dca512008-12-14 21:47:04 +01002544static int ohci_enable_phys_dma(struct fw_card *card,
2545 int node_id, int generation)
Kristian Høgsberged568912006-12-19 19:58:35 -05002546{
Stefan Richter080de8c2008-02-28 20:54:43 +01002547#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
2548 return 0;
2549#else
Kristian Høgsberged568912006-12-19 19:58:35 -05002550 struct fw_ohci *ohci = fw_ohci(card);
2551 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002552 int n, ret = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002553
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002554 /*
2555 * FIXME: Make sure this bitmask is cleared when we clear the busReset
2556 * interrupt bit. Clear physReqResourceAllBuses on bus reset.
2557 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002558
2559 spin_lock_irqsave(&ohci->lock, flags);
2560
2561 if (ohci->generation != generation) {
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002562 ret = -ESTALE;
Kristian Høgsberged568912006-12-19 19:58:35 -05002563 goto out;
2564 }
2565
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002566 /*
2567 * Note, if the node ID contains a non-local bus ID, physical DMA is
2568 * enabled for _all_ nodes on remote buses.
2569 */
Stefan Richter907293d2007-01-23 21:11:43 +01002570
2571 n = (node_id & 0xffc0) == LOCAL_BUS ? node_id & 0x3f : 63;
2572 if (n < 32)
2573 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 1 << n);
2574 else
2575 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 1 << (n - 32));
2576
Kristian Høgsberged568912006-12-19 19:58:35 -05002577 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002578 out:
Stefan Richter6cad95f2007-01-21 20:46:45 +01002579 spin_unlock_irqrestore(&ohci->lock, flags);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002580
2581 return ret;
Stefan Richter080de8c2008-02-28 20:54:43 +01002582#endif /* CONFIG_FIREWIRE_OHCI_REMOTE_DMA */
Kristian Høgsberged568912006-12-19 19:58:35 -05002583}
Stefan Richter373b2ed2007-03-04 14:45:18 +01002584
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002585static u32 ohci_read_csr(struct fw_card *card, int csr_offset)
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002586{
2587 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002588 unsigned long flags;
2589 u32 value;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002590
Clemens Ladisch60d32972010-06-10 08:24:35 +02002591 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002592 case CSR_STATE_CLEAR:
2593 case CSR_STATE_SET:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002594 if (ohci->is_root &&
2595 (reg_read(ohci, OHCI1394_LinkControlSet) &
2596 OHCI1394_LinkControl_cycleMaster))
Stefan Richterc8a94de2010-06-12 20:34:50 +02002597 value = CSR_STATE_BIT_CMSTR;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002598 else
Stefan Richterc8a94de2010-06-12 20:34:50 +02002599 value = 0;
2600 if (ohci->csr_state_setclear_abdicate)
2601 value |= CSR_STATE_BIT_ABDICATE;
Stefan Richter4a9bde92010-02-20 22:24:43 +01002602
Stefan Richterc8a94de2010-06-12 20:34:50 +02002603 return value;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002604
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002605 case CSR_NODE_IDS:
2606 return reg_read(ohci, OHCI1394_NodeID) << 16;
2607
Clemens Ladisch60d32972010-06-10 08:24:35 +02002608 case CSR_CYCLE_TIME:
2609 return get_cycle_time(ohci);
2610
Clemens Ladischa48777e2010-06-10 08:33:07 +02002611 case CSR_BUS_TIME:
2612 /*
2613 * We might be called just after the cycle timer has wrapped
2614 * around but just before the cycle64Seconds handler, so we
2615 * better check here, too, if the bus time needs to be updated.
2616 */
2617 spin_lock_irqsave(&ohci->lock, flags);
2618 value = update_bus_time(ohci);
2619 spin_unlock_irqrestore(&ohci->lock, flags);
2620 return value;
2621
Clemens Ladisch27a23292010-06-10 08:34:13 +02002622 case CSR_BUSY_TIMEOUT:
2623 value = reg_read(ohci, OHCI1394_ATRetries);
2624 return (value >> 4) & 0x0ffff00f;
2625
Clemens Ladischa1a11322010-06-10 08:35:06 +02002626 case CSR_PRIORITY_BUDGET:
2627 return (reg_read(ohci, OHCI1394_FairnessControl) & 0x3f) |
2628 (ohci->pri_req_max << 8);
2629
Clemens Ladisch60d32972010-06-10 08:24:35 +02002630 default:
2631 WARN_ON(1);
2632 return 0;
Clemens Ladischb6775322010-01-20 09:58:02 +01002633 }
Clemens Ladisch60d32972010-06-10 08:24:35 +02002634}
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002635
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002636static void ohci_write_csr(struct fw_card *card, int csr_offset, u32 value)
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002637{
2638 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002639 unsigned long flags;
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002640
2641 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002642 case CSR_STATE_CLEAR:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002643 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2644 reg_write(ohci, OHCI1394_LinkControlClear,
2645 OHCI1394_LinkControl_cycleMaster);
2646 flush_writes(ohci);
2647 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002648 if (value & CSR_STATE_BIT_ABDICATE)
2649 ohci->csr_state_setclear_abdicate = false;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002650 break;
2651
2652 case CSR_STATE_SET:
2653 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2654 reg_write(ohci, OHCI1394_LinkControlSet,
2655 OHCI1394_LinkControl_cycleMaster);
2656 flush_writes(ohci);
2657 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002658 if (value & CSR_STATE_BIT_ABDICATE)
2659 ohci->csr_state_setclear_abdicate = true;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002660 break;
2661
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002662 case CSR_NODE_IDS:
2663 reg_write(ohci, OHCI1394_NodeID, value >> 16);
2664 flush_writes(ohci);
2665 break;
2666
Clemens Ladisch9ab50712010-06-10 08:26:48 +02002667 case CSR_CYCLE_TIME:
2668 reg_write(ohci, OHCI1394_IsochronousCycleTimer, value);
2669 reg_write(ohci, OHCI1394_IntEventSet,
2670 OHCI1394_cycleInconsistent);
2671 flush_writes(ohci);
2672 break;
2673
Clemens Ladischa48777e2010-06-10 08:33:07 +02002674 case CSR_BUS_TIME:
2675 spin_lock_irqsave(&ohci->lock, flags);
2676 ohci->bus_time = (ohci->bus_time & 0x7f) | (value & ~0x7f);
2677 spin_unlock_irqrestore(&ohci->lock, flags);
2678 break;
2679
Clemens Ladisch27a23292010-06-10 08:34:13 +02002680 case CSR_BUSY_TIMEOUT:
2681 value = (value & 0xf) | ((value & 0xf) << 4) |
2682 ((value & 0xf) << 8) | ((value & 0x0ffff000) << 4);
2683 reg_write(ohci, OHCI1394_ATRetries, value);
2684 flush_writes(ohci);
2685 break;
2686
Clemens Ladischa1a11322010-06-10 08:35:06 +02002687 case CSR_PRIORITY_BUDGET:
2688 reg_write(ohci, OHCI1394_FairnessControl, value & 0x3f);
2689 flush_writes(ohci);
2690 break;
2691
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002692 default:
2693 WARN_ON(1);
2694 break;
2695 }
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002696}
2697
David Moore1aa292b2008-07-22 23:23:40 -07002698static void copy_iso_headers(struct iso_context *ctx, void *p)
2699{
2700 int i = ctx->header_length;
2701
2702 if (i + ctx->base.header_size > PAGE_SIZE)
2703 return;
2704
2705 /*
2706 * The iso header is byteswapped to little endian by
2707 * the controller, but the remaining header quadlets
2708 * are big endian. We want to present all the headers
2709 * as big endian, so we have to swap the first quadlet.
2710 */
2711 if (ctx->base.header_size > 0)
2712 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
2713 if (ctx->base.header_size > 4)
2714 *(u32 *) (ctx->header + i + 4) = __swab32(*(u32 *) p);
2715 if (ctx->base.header_size > 8)
2716 memcpy(ctx->header + i + 8, p + 8, ctx->base.header_size - 8);
2717 ctx->header_length += ctx->base.header_size;
2718}
2719
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002720static int handle_ir_packet_per_buffer(struct context *context,
2721 struct descriptor *d,
2722 struct descriptor *last)
2723{
2724 struct iso_context *ctx =
2725 container_of(context, struct iso_context, context);
David Moorebcee8932007-12-19 15:26:38 -05002726 struct descriptor *pd;
Clemens Ladischa572e682011-10-15 23:12:23 +02002727 u32 buffer_dma;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002728 __le32 *ir_header;
David Moorebcee8932007-12-19 15:26:38 -05002729 void *p;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002730
Stefan Richter872e3302010-07-29 18:19:22 +02002731 for (pd = d; pd <= last; pd++)
David Moorebcee8932007-12-19 15:26:38 -05002732 if (pd->transfer_status)
2733 break;
David Moorebcee8932007-12-19 15:26:38 -05002734 if (pd > last)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002735 /* Descriptor(s) not done yet, stop iteration */
2736 return 0;
2737
Clemens Ladischa572e682011-10-15 23:12:23 +02002738 while (!(d->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))) {
2739 d++;
2740 buffer_dma = le32_to_cpu(d->data_address);
2741 dma_sync_single_range_for_cpu(context->ohci->card.device,
2742 buffer_dma & PAGE_MASK,
2743 buffer_dma & ~PAGE_MASK,
2744 le16_to_cpu(d->req_count),
2745 DMA_FROM_DEVICE);
2746 }
2747
David Moore1aa292b2008-07-22 23:23:40 -07002748 p = last + 1;
2749 copy_iso_headers(ctx, p);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002750
David Moorebcee8932007-12-19 15:26:38 -05002751 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
2752 ir_header = (__le32 *) p;
Stefan Richter872e3302010-07-29 18:19:22 +02002753 ctx->base.callback.sc(&ctx->base,
2754 le32_to_cpu(ir_header[0]) & 0xffff,
2755 ctx->header_length, ctx->header,
2756 ctx->base.callback_data);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002757 ctx->header_length = 0;
2758 }
2759
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002760 return 1;
2761}
2762
Stefan Richter872e3302010-07-29 18:19:22 +02002763/* d == last because each descriptor block is only a single descriptor. */
2764static int handle_ir_buffer_fill(struct context *context,
2765 struct descriptor *d,
2766 struct descriptor *last)
2767{
2768 struct iso_context *ctx =
2769 container_of(context, struct iso_context, context);
Clemens Ladischa572e682011-10-15 23:12:23 +02002770 u32 buffer_dma;
Stefan Richter872e3302010-07-29 18:19:22 +02002771
2772 if (!last->transfer_status)
2773 /* Descriptor(s) not done yet, stop iteration */
2774 return 0;
2775
Clemens Ladischa572e682011-10-15 23:12:23 +02002776 buffer_dma = le32_to_cpu(last->data_address);
2777 dma_sync_single_range_for_cpu(context->ohci->card.device,
2778 buffer_dma & PAGE_MASK,
2779 buffer_dma & ~PAGE_MASK,
2780 le16_to_cpu(last->req_count),
2781 DMA_FROM_DEVICE);
2782
Stefan Richter872e3302010-07-29 18:19:22 +02002783 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS)
2784 ctx->base.callback.mc(&ctx->base,
2785 le32_to_cpu(last->data_address) +
2786 le16_to_cpu(last->req_count) -
2787 le16_to_cpu(last->res_count),
2788 ctx->base.callback_data);
2789
2790 return 1;
2791}
2792
Clemens Ladischa572e682011-10-15 23:12:23 +02002793static inline void sync_it_packet_for_cpu(struct context *context,
2794 struct descriptor *pd)
2795{
2796 __le16 control;
2797 u32 buffer_dma;
2798
2799 /* only packets beginning with OUTPUT_MORE* have data buffers */
2800 if (pd->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
2801 return;
2802
2803 /* skip over the OUTPUT_MORE_IMMEDIATE descriptor */
2804 pd += 2;
2805
2806 /*
2807 * If the packet has a header, the first OUTPUT_MORE/LAST descriptor's
2808 * data buffer is in the context program's coherent page and must not
2809 * be synced.
2810 */
2811 if ((le32_to_cpu(pd->data_address) & PAGE_MASK) ==
2812 (context->current_bus & PAGE_MASK)) {
2813 if (pd->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
2814 return;
2815 pd++;
2816 }
2817
2818 do {
2819 buffer_dma = le32_to_cpu(pd->data_address);
2820 dma_sync_single_range_for_cpu(context->ohci->card.device,
2821 buffer_dma & PAGE_MASK,
2822 buffer_dma & ~PAGE_MASK,
2823 le16_to_cpu(pd->req_count),
2824 DMA_TO_DEVICE);
2825 control = pd->control;
2826 pd++;
2827 } while (!(control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS)));
2828}
2829
Kristian Høgsberg30200732007-02-16 17:34:39 -05002830static int handle_it_packet(struct context *context,
2831 struct descriptor *d,
2832 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05002833{
Kristian Høgsberg30200732007-02-16 17:34:39 -05002834 struct iso_context *ctx =
2835 container_of(context, struct iso_context, context);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002836 int i;
2837 struct descriptor *pd;
Stefan Richter373b2ed2007-03-04 14:45:18 +01002838
Jay Fenlason31769ce2009-11-21 00:05:56 +01002839 for (pd = d; pd <= last; pd++)
2840 if (pd->transfer_status)
2841 break;
2842 if (pd > last)
2843 /* Descriptor(s) not done yet, stop iteration */
Kristian Høgsberg30200732007-02-16 17:34:39 -05002844 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002845
Clemens Ladischa572e682011-10-15 23:12:23 +02002846 sync_it_packet_for_cpu(context, d);
2847
Jay Fenlason31769ce2009-11-21 00:05:56 +01002848 i = ctx->header_length;
2849 if (i + 4 < PAGE_SIZE) {
2850 /* Present this value as big-endian to match the receive code */
2851 *(__be32 *)(ctx->header + i) = cpu_to_be32(
2852 ((u32)le16_to_cpu(pd->transfer_status) << 16) |
2853 le16_to_cpu(pd->res_count));
2854 ctx->header_length += 4;
2855 }
2856 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
Stefan Richter872e3302010-07-29 18:19:22 +02002857 ctx->base.callback.sc(&ctx->base, le16_to_cpu(last->res_count),
2858 ctx->header_length, ctx->header,
2859 ctx->base.callback_data);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002860 ctx->header_length = 0;
2861 }
Kristian Høgsberg30200732007-02-16 17:34:39 -05002862 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05002863}
2864
Stefan Richter872e3302010-07-29 18:19:22 +02002865static void set_multichannel_mask(struct fw_ohci *ohci, u64 channels)
2866{
2867 u32 hi = channels >> 32, lo = channels;
2868
2869 reg_write(ohci, OHCI1394_IRMultiChanMaskHiClear, ~hi);
2870 reg_write(ohci, OHCI1394_IRMultiChanMaskLoClear, ~lo);
2871 reg_write(ohci, OHCI1394_IRMultiChanMaskHiSet, hi);
2872 reg_write(ohci, OHCI1394_IRMultiChanMaskLoSet, lo);
2873 mmiowb();
2874 ohci->mc_channels = channels;
2875}
2876
Stefan Richter53dca512008-12-14 21:47:04 +01002877static struct fw_iso_context *ohci_allocate_iso_context(struct fw_card *card,
Stefan Richter4817ed22008-12-21 16:39:46 +01002878 int type, int channel, size_t header_size)
Kristian Høgsberged568912006-12-19 19:58:35 -05002879{
2880 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter872e3302010-07-29 18:19:22 +02002881 struct iso_context *uninitialized_var(ctx);
2882 descriptor_callback_t uninitialized_var(callback);
2883 u64 *uninitialized_var(channels);
2884 u32 *uninitialized_var(mask), uninitialized_var(regs);
Kristian Høgsberged568912006-12-19 19:58:35 -05002885 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02002886 int index, ret = -EBUSY;
Kristian Høgsberged568912006-12-19 19:58:35 -05002887
2888 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002889
2890 switch (type) {
2891 case FW_ISO_CONTEXT_TRANSMIT:
2892 mask = &ohci->it_context_mask;
2893 callback = handle_it_packet;
2894 index = ffs(*mask) - 1;
2895 if (index >= 0) {
2896 *mask &= ~(1 << index);
2897 regs = OHCI1394_IsoXmitContextBase(index);
2898 ctx = &ohci->it_context_list[index];
2899 }
2900 break;
2901
2902 case FW_ISO_CONTEXT_RECEIVE:
2903 channels = &ohci->ir_context_channels;
2904 mask = &ohci->ir_context_mask;
2905 callback = handle_ir_packet_per_buffer;
2906 index = *channels & 1ULL << channel ? ffs(*mask) - 1 : -1;
2907 if (index >= 0) {
2908 *channels &= ~(1ULL << channel);
2909 *mask &= ~(1 << index);
2910 regs = OHCI1394_IsoRcvContextBase(index);
2911 ctx = &ohci->ir_context_list[index];
2912 }
2913 break;
2914
2915 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2916 mask = &ohci->ir_context_mask;
2917 callback = handle_ir_buffer_fill;
2918 index = !ohci->mc_allocated ? ffs(*mask) - 1 : -1;
2919 if (index >= 0) {
2920 ohci->mc_allocated = true;
2921 *mask &= ~(1 << index);
2922 regs = OHCI1394_IsoRcvContextBase(index);
2923 ctx = &ohci->ir_context_list[index];
2924 }
2925 break;
2926
2927 default:
2928 index = -1;
2929 ret = -ENOSYS;
Stefan Richter4817ed22008-12-21 16:39:46 +01002930 }
Stefan Richter872e3302010-07-29 18:19:22 +02002931
Kristian Høgsberged568912006-12-19 19:58:35 -05002932 spin_unlock_irqrestore(&ohci->lock, flags);
2933
2934 if (index < 0)
Stefan Richter872e3302010-07-29 18:19:22 +02002935 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002936
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04002937 memset(ctx, 0, sizeof(*ctx));
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002938 ctx->header_length = 0;
2939 ctx->header = (void *) __get_free_page(GFP_KERNEL);
Stefan Richter872e3302010-07-29 18:19:22 +02002940 if (ctx->header == NULL) {
2941 ret = -ENOMEM;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002942 goto out;
Stefan Richter872e3302010-07-29 18:19:22 +02002943 }
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002944 ret = context_init(&ctx->context, ohci, regs, callback);
2945 if (ret < 0)
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002946 goto out_with_header;
Kristian Høgsberged568912006-12-19 19:58:35 -05002947
Stefan Richter872e3302010-07-29 18:19:22 +02002948 if (type == FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL)
2949 set_multichannel_mask(ohci, 0);
2950
Kristian Høgsberged568912006-12-19 19:58:35 -05002951 return &ctx->base;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002952
2953 out_with_header:
2954 free_page((unsigned long)ctx->header);
2955 out:
2956 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002957
2958 switch (type) {
2959 case FW_ISO_CONTEXT_RECEIVE:
2960 *channels |= 1ULL << channel;
2961 break;
2962
2963 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2964 ohci->mc_allocated = false;
2965 break;
2966 }
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002967 *mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02002968
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002969 spin_unlock_irqrestore(&ohci->lock, flags);
2970
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002971 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002972}
2973
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04002974static int ohci_start_iso(struct fw_iso_context *base,
2975 s32 cycle, u32 sync, u32 tags)
Kristian Høgsberged568912006-12-19 19:58:35 -05002976{
Stefan Richter373b2ed2007-03-04 14:45:18 +01002977 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05002978 struct fw_ohci *ohci = ctx->context.ohci;
Stefan Richter872e3302010-07-29 18:19:22 +02002979 u32 control = IR_CONTEXT_ISOCH_HEADER, match;
Kristian Høgsberged568912006-12-19 19:58:35 -05002980 int index;
2981
Clemens Ladisch44b74d92011-02-23 09:27:40 +01002982 /* the controller cannot start without any queued packets */
2983 if (ctx->context.last->branch_address == 0)
2984 return -ENODATA;
2985
Stefan Richter872e3302010-07-29 18:19:22 +02002986 switch (ctx->base.type) {
2987 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002988 index = ctx - ohci->it_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002989 match = 0;
2990 if (cycle >= 0)
2991 match = IT_CONTEXT_CYCLE_MATCH_ENABLE |
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002992 (cycle & 0x7fff) << 16;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05002993
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002994 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 1 << index);
2995 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, 1 << index);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002996 context_run(&ctx->context, match);
Stefan Richter872e3302010-07-29 18:19:22 +02002997 break;
2998
2999 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3000 control |= IR_CONTEXT_BUFFER_FILL|IR_CONTEXT_MULTI_CHANNEL_MODE;
3001 /* fall through */
3002 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003003 index = ctx - ohci->ir_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04003004 match = (tags << 28) | (sync << 8) | ctx->base.channel;
3005 if (cycle >= 0) {
3006 match |= (cycle & 0x07fff) << 12;
3007 control |= IR_CONTEXT_CYCLE_MATCH_ENABLE;
3008 }
Kristian Høgsberged568912006-12-19 19:58:35 -05003009
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003010 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 1 << index);
3011 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, 1 << index);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003012 reg_write(ohci, CONTEXT_MATCH(ctx->context.regs), match);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04003013 context_run(&ctx->context, control);
Maxim Levitskydd237362010-11-29 04:09:50 +02003014
3015 ctx->sync = sync;
3016 ctx->tags = tags;
3017
Stefan Richter872e3302010-07-29 18:19:22 +02003018 break;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003019 }
Kristian Høgsberged568912006-12-19 19:58:35 -05003020
3021 return 0;
3022}
3023
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003024static int ohci_stop_iso(struct fw_iso_context *base)
3025{
3026 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01003027 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003028 int index;
3029
Stefan Richter872e3302010-07-29 18:19:22 +02003030 switch (ctx->base.type) {
3031 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003032 index = ctx - ohci->it_context_list;
3033 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02003034 break;
3035
3036 case FW_ISO_CONTEXT_RECEIVE:
3037 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003038 index = ctx - ohci->ir_context_list;
3039 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02003040 break;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003041 }
3042 flush_writes(ohci);
3043 context_stop(&ctx->context);
Clemens Ladische81cbeb2011-02-16 10:32:11 +01003044 tasklet_kill(&ctx->context.tasklet);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003045
3046 return 0;
3047}
3048
Kristian Høgsberged568912006-12-19 19:58:35 -05003049static void ohci_free_iso_context(struct fw_iso_context *base)
3050{
3051 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01003052 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberged568912006-12-19 19:58:35 -05003053 unsigned long flags;
3054 int index;
3055
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003056 ohci_stop_iso(base);
3057 context_release(&ctx->context);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05003058 free_page((unsigned long)ctx->header);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003059
Kristian Høgsberged568912006-12-19 19:58:35 -05003060 spin_lock_irqsave(&ohci->lock, flags);
3061
Stefan Richter872e3302010-07-29 18:19:22 +02003062 switch (base->type) {
3063 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberged568912006-12-19 19:58:35 -05003064 index = ctx - ohci->it_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05003065 ohci->it_context_mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02003066 break;
3067
3068 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberged568912006-12-19 19:58:35 -05003069 index = ctx - ohci->ir_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05003070 ohci->ir_context_mask |= 1 << index;
Stefan Richter4817ed22008-12-21 16:39:46 +01003071 ohci->ir_context_channels |= 1ULL << base->channel;
Stefan Richter872e3302010-07-29 18:19:22 +02003072 break;
3073
3074 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3075 index = ctx - ohci->ir_context_list;
3076 ohci->ir_context_mask |= 1 << index;
3077 ohci->ir_context_channels |= ohci->mc_channels;
3078 ohci->mc_channels = 0;
3079 ohci->mc_allocated = false;
3080 break;
Kristian Høgsberged568912006-12-19 19:58:35 -05003081 }
Kristian Høgsberged568912006-12-19 19:58:35 -05003082
3083 spin_unlock_irqrestore(&ohci->lock, flags);
3084}
3085
Stefan Richter872e3302010-07-29 18:19:22 +02003086static int ohci_set_iso_channels(struct fw_iso_context *base, u64 *channels)
Kristian Høgsberged568912006-12-19 19:58:35 -05003087{
Stefan Richter872e3302010-07-29 18:19:22 +02003088 struct fw_ohci *ohci = fw_ohci(base->card);
3089 unsigned long flags;
3090 int ret;
3091
3092 switch (base->type) {
3093 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3094
3095 spin_lock_irqsave(&ohci->lock, flags);
3096
3097 /* Don't allow multichannel to grab other contexts' channels. */
3098 if (~ohci->ir_context_channels & ~ohci->mc_channels & *channels) {
3099 *channels = ohci->ir_context_channels;
3100 ret = -EBUSY;
3101 } else {
3102 set_multichannel_mask(ohci, *channels);
3103 ret = 0;
3104 }
3105
3106 spin_unlock_irqrestore(&ohci->lock, flags);
3107
3108 break;
3109 default:
3110 ret = -EINVAL;
3111 }
3112
3113 return ret;
3114}
3115
Maxim Levitskydd237362010-11-29 04:09:50 +02003116#ifdef CONFIG_PM
3117static void ohci_resume_iso_dma(struct fw_ohci *ohci)
3118{
3119 int i;
3120 struct iso_context *ctx;
3121
3122 for (i = 0 ; i < ohci->n_ir ; i++) {
3123 ctx = &ohci->ir_context_list[i];
Stefan Richter693a50b2011-01-01 15:17:05 +01003124 if (ctx->context.running)
Maxim Levitskydd237362010-11-29 04:09:50 +02003125 ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags);
3126 }
3127
3128 for (i = 0 ; i < ohci->n_it ; i++) {
3129 ctx = &ohci->it_context_list[i];
Stefan Richter693a50b2011-01-01 15:17:05 +01003130 if (ctx->context.running)
Maxim Levitskydd237362010-11-29 04:09:50 +02003131 ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags);
3132 }
3133}
3134#endif
3135
Stefan Richter872e3302010-07-29 18:19:22 +02003136static int queue_iso_transmit(struct iso_context *ctx,
3137 struct fw_iso_packet *packet,
3138 struct fw_iso_buffer *buffer,
3139 unsigned long payload)
3140{
Kristian Høgsberg30200732007-02-16 17:34:39 -05003141 struct descriptor *d, *last, *pd;
Kristian Høgsberged568912006-12-19 19:58:35 -05003142 struct fw_iso_packet *p;
3143 __le32 *header;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003144 dma_addr_t d_bus, page_bus;
Kristian Høgsberged568912006-12-19 19:58:35 -05003145 u32 z, header_z, payload_z, irq;
3146 u32 payload_index, payload_end_index, next_page_index;
Kristian Høgsberg30200732007-02-16 17:34:39 -05003147 int page, end_page, i, length, offset;
Kristian Høgsberged568912006-12-19 19:58:35 -05003148
Kristian Høgsberged568912006-12-19 19:58:35 -05003149 p = packet;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003150 payload_index = payload;
Kristian Høgsberged568912006-12-19 19:58:35 -05003151
3152 if (p->skip)
3153 z = 1;
3154 else
3155 z = 2;
3156 if (p->header_length > 0)
3157 z++;
3158
3159 /* Determine the first page the payload isn't contained in. */
3160 end_page = PAGE_ALIGN(payload_index + p->payload_length) >> PAGE_SHIFT;
3161 if (p->payload_length > 0)
3162 payload_z = end_page - (payload_index >> PAGE_SHIFT);
3163 else
3164 payload_z = 0;
3165
3166 z += payload_z;
3167
3168 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003169 header_z = DIV_ROUND_UP(p->header_length, sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05003170
Kristian Høgsberg30200732007-02-16 17:34:39 -05003171 d = context_get_descriptors(&ctx->context, z + header_z, &d_bus);
3172 if (d == NULL)
3173 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05003174
3175 if (!p->skip) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003176 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsberged568912006-12-19 19:58:35 -05003177 d[0].req_count = cpu_to_le16(8);
Clemens Ladisch7f51a102010-02-08 08:30:03 +01003178 /*
3179 * Link the skip address to this descriptor itself. This causes
3180 * a context to skip a cycle whenever lost cycles or FIFO
3181 * overruns occur, without dropping the data. The application
3182 * should then decide whether this is an error condition or not.
3183 * FIXME: Make the context's cycle-lost behaviour configurable?
3184 */
3185 d[0].branch_address = cpu_to_le32(d_bus | z);
Kristian Høgsberged568912006-12-19 19:58:35 -05003186
3187 header = (__le32 *) &d[1];
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003188 header[0] = cpu_to_le32(IT_HEADER_SY(p->sy) |
3189 IT_HEADER_TAG(p->tag) |
3190 IT_HEADER_TCODE(TCODE_STREAM_DATA) |
3191 IT_HEADER_CHANNEL(ctx->base.channel) |
3192 IT_HEADER_SPEED(ctx->base.speed));
Kristian Høgsberged568912006-12-19 19:58:35 -05003193 header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003194 cpu_to_le32(IT_HEADER_DATA_LENGTH(p->header_length +
Kristian Høgsberged568912006-12-19 19:58:35 -05003195 p->payload_length));
3196 }
3197
3198 if (p->header_length > 0) {
3199 d[2].req_count = cpu_to_le16(p->header_length);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003200 d[2].data_address = cpu_to_le32(d_bus + z * sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05003201 memcpy(&d[z], p->header, p->header_length);
3202 }
3203
3204 pd = d + z - payload_z;
3205 payload_end_index = payload_index + p->payload_length;
3206 for (i = 0; i < payload_z; i++) {
3207 page = payload_index >> PAGE_SHIFT;
3208 offset = payload_index & ~PAGE_MASK;
3209 next_page_index = (page + 1) << PAGE_SHIFT;
3210 length =
3211 min(next_page_index, payload_end_index) - payload_index;
3212 pd[i].req_count = cpu_to_le16(length);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003213
3214 page_bus = page_private(buffer->pages[page]);
3215 pd[i].data_address = cpu_to_le32(page_bus + offset);
Kristian Høgsberged568912006-12-19 19:58:35 -05003216
Clemens Ladischa572e682011-10-15 23:12:23 +02003217 dma_sync_single_range_for_device(ctx->context.ohci->card.device,
3218 page_bus, offset, length,
3219 DMA_TO_DEVICE);
3220
Kristian Høgsberged568912006-12-19 19:58:35 -05003221 payload_index += length;
3222 }
3223
Kristian Høgsberged568912006-12-19 19:58:35 -05003224 if (p->interrupt)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003225 irq = DESCRIPTOR_IRQ_ALWAYS;
Kristian Høgsberged568912006-12-19 19:58:35 -05003226 else
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003227 irq = DESCRIPTOR_NO_IRQ;
Kristian Høgsberged568912006-12-19 19:58:35 -05003228
Kristian Høgsberg30200732007-02-16 17:34:39 -05003229 last = z == 2 ? d : d + z - 1;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003230 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
3231 DESCRIPTOR_STATUS |
3232 DESCRIPTOR_BRANCH_ALWAYS |
Kristian Høgsbergcbb59da2007-02-16 17:34:35 -05003233 irq);
Kristian Høgsberged568912006-12-19 19:58:35 -05003234
Kristian Høgsberg30200732007-02-16 17:34:39 -05003235 context_append(&ctx->context, d, z, header_z);
Kristian Høgsberged568912006-12-19 19:58:35 -05003236
3237 return 0;
3238}
Stefan Richter373b2ed2007-03-04 14:45:18 +01003239
Stefan Richter872e3302010-07-29 18:19:22 +02003240static int queue_iso_packet_per_buffer(struct iso_context *ctx,
3241 struct fw_iso_packet *packet,
3242 struct fw_iso_buffer *buffer,
3243 unsigned long payload)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003244{
Clemens Ladischa572e682011-10-15 23:12:23 +02003245 struct device *device = ctx->context.ohci->card.device;
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003246 struct descriptor *d, *pd;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003247 dma_addr_t d_bus, page_bus;
3248 u32 z, header_z, rest;
David Moorebcee8932007-12-19 15:26:38 -05003249 int i, j, length;
3250 int page, offset, packet_count, header_size, payload_per_buffer;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003251
3252 /*
David Moore1aa292b2008-07-22 23:23:40 -07003253 * The OHCI controller puts the isochronous header and trailer in the
3254 * buffer, so we need at least 8 bytes.
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003255 */
Stefan Richter872e3302010-07-29 18:19:22 +02003256 packet_count = packet->header_length / ctx->base.header_size;
David Moore1aa292b2008-07-22 23:23:40 -07003257 header_size = max(ctx->base.header_size, (size_t)8);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003258
3259 /* Get header size in number of descriptors. */
3260 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
3261 page = payload >> PAGE_SHIFT;
3262 offset = payload & ~PAGE_MASK;
Stefan Richter872e3302010-07-29 18:19:22 +02003263 payload_per_buffer = packet->payload_length / packet_count;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003264
3265 for (i = 0; i < packet_count; i++) {
3266 /* d points to the header descriptor */
David Moorebcee8932007-12-19 15:26:38 -05003267 z = DIV_ROUND_UP(payload_per_buffer + offset, PAGE_SIZE) + 1;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003268 d = context_get_descriptors(&ctx->context,
David Moorebcee8932007-12-19 15:26:38 -05003269 z + header_z, &d_bus);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003270 if (d == NULL)
3271 return -ENOMEM;
3272
David Moorebcee8932007-12-19 15:26:38 -05003273 d->control = cpu_to_le16(DESCRIPTOR_STATUS |
3274 DESCRIPTOR_INPUT_MORE);
Stefan Richter872e3302010-07-29 18:19:22 +02003275 if (packet->skip && i == 0)
David Moorebcee8932007-12-19 15:26:38 -05003276 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003277 d->req_count = cpu_to_le16(header_size);
3278 d->res_count = d->req_count;
David Moorebcee8932007-12-19 15:26:38 -05003279 d->transfer_status = 0;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003280 d->data_address = cpu_to_le32(d_bus + (z * sizeof(*d)));
3281
David Moorebcee8932007-12-19 15:26:38 -05003282 rest = payload_per_buffer;
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003283 pd = d;
David Moorebcee8932007-12-19 15:26:38 -05003284 for (j = 1; j < z; j++) {
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003285 pd++;
David Moorebcee8932007-12-19 15:26:38 -05003286 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
3287 DESCRIPTOR_INPUT_MORE);
3288
3289 if (offset + rest < PAGE_SIZE)
3290 length = rest;
3291 else
3292 length = PAGE_SIZE - offset;
3293 pd->req_count = cpu_to_le16(length);
3294 pd->res_count = pd->req_count;
3295 pd->transfer_status = 0;
3296
3297 page_bus = page_private(buffer->pages[page]);
3298 pd->data_address = cpu_to_le32(page_bus + offset);
3299
Clemens Ladischa572e682011-10-15 23:12:23 +02003300 dma_sync_single_range_for_device(device, page_bus,
3301 offset, length,
3302 DMA_FROM_DEVICE);
3303
David Moorebcee8932007-12-19 15:26:38 -05003304 offset = (offset + length) & ~PAGE_MASK;
3305 rest -= length;
3306 if (offset == 0)
3307 page++;
3308 }
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003309 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
3310 DESCRIPTOR_INPUT_LAST |
3311 DESCRIPTOR_BRANCH_ALWAYS);
Stefan Richter872e3302010-07-29 18:19:22 +02003312 if (packet->interrupt && i == packet_count - 1)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003313 pd->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
3314
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003315 context_append(&ctx->context, d, z, header_z);
3316 }
3317
3318 return 0;
3319}
3320
Stefan Richter872e3302010-07-29 18:19:22 +02003321static int queue_iso_buffer_fill(struct iso_context *ctx,
3322 struct fw_iso_packet *packet,
3323 struct fw_iso_buffer *buffer,
3324 unsigned long payload)
3325{
3326 struct descriptor *d;
3327 dma_addr_t d_bus, page_bus;
3328 int page, offset, rest, z, i, length;
3329
3330 page = payload >> PAGE_SHIFT;
3331 offset = payload & ~PAGE_MASK;
3332 rest = packet->payload_length;
3333
3334 /* We need one descriptor for each page in the buffer. */
3335 z = DIV_ROUND_UP(offset + rest, PAGE_SIZE);
3336
3337 if (WARN_ON(offset & 3 || rest & 3 || page + z > buffer->page_count))
3338 return -EFAULT;
3339
3340 for (i = 0; i < z; i++) {
3341 d = context_get_descriptors(&ctx->context, 1, &d_bus);
3342 if (d == NULL)
3343 return -ENOMEM;
3344
3345 d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
3346 DESCRIPTOR_BRANCH_ALWAYS);
3347 if (packet->skip && i == 0)
3348 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
3349 if (packet->interrupt && i == z - 1)
3350 d->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
3351
3352 if (offset + rest < PAGE_SIZE)
3353 length = rest;
3354 else
3355 length = PAGE_SIZE - offset;
3356 d->req_count = cpu_to_le16(length);
3357 d->res_count = d->req_count;
3358 d->transfer_status = 0;
3359
3360 page_bus = page_private(buffer->pages[page]);
3361 d->data_address = cpu_to_le32(page_bus + offset);
3362
Clemens Ladischa572e682011-10-15 23:12:23 +02003363 dma_sync_single_range_for_device(ctx->context.ohci->card.device,
3364 page_bus, offset, length,
3365 DMA_FROM_DEVICE);
3366
Stefan Richter872e3302010-07-29 18:19:22 +02003367 rest -= length;
3368 offset = 0;
3369 page++;
3370
3371 context_append(&ctx->context, d, 1, 0);
3372 }
3373
3374 return 0;
3375}
3376
Stefan Richter53dca512008-12-14 21:47:04 +01003377static int ohci_queue_iso(struct fw_iso_context *base,
3378 struct fw_iso_packet *packet,
3379 struct fw_iso_buffer *buffer,
3380 unsigned long payload)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003381{
Kristian Høgsberge364cf42007-02-16 17:34:49 -05003382 struct iso_context *ctx = container_of(base, struct iso_context, base);
David Moorefe5ca632008-01-06 17:21:41 -05003383 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02003384 int ret = -ENOSYS;
Kristian Høgsberge364cf42007-02-16 17:34:49 -05003385
David Moorefe5ca632008-01-06 17:21:41 -05003386 spin_lock_irqsave(&ctx->context.ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02003387 switch (base->type) {
3388 case FW_ISO_CONTEXT_TRANSMIT:
3389 ret = queue_iso_transmit(ctx, packet, buffer, payload);
3390 break;
3391 case FW_ISO_CONTEXT_RECEIVE:
3392 ret = queue_iso_packet_per_buffer(ctx, packet, buffer, payload);
3393 break;
3394 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3395 ret = queue_iso_buffer_fill(ctx, packet, buffer, payload);
3396 break;
3397 }
David Moorefe5ca632008-01-06 17:21:41 -05003398 spin_unlock_irqrestore(&ctx->context.ohci->lock, flags);
3399
Stefan Richter2dbd7d72008-12-14 21:45:45 +01003400 return ret;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003401}
3402
Clemens Ladisch13882a82011-05-02 09:33:56 +02003403static void ohci_flush_queue_iso(struct fw_iso_context *base)
3404{
3405 struct context *ctx =
3406 &container_of(base, struct iso_context, base)->context;
3407
3408 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladisch13882a82011-05-02 09:33:56 +02003409}
3410
Stefan Richter21ebcd12007-01-14 15:29:07 +01003411static const struct fw_card_driver ohci_driver = {
Kristian Høgsberged568912006-12-19 19:58:35 -05003412 .enable = ohci_enable,
Stefan Richter02d37be2010-07-08 16:09:06 +02003413 .read_phy_reg = ohci_read_phy_reg,
Kristian Høgsberged568912006-12-19 19:58:35 -05003414 .update_phy_reg = ohci_update_phy_reg,
3415 .set_config_rom = ohci_set_config_rom,
3416 .send_request = ohci_send_request,
3417 .send_response = ohci_send_response,
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05003418 .cancel_packet = ohci_cancel_packet,
Kristian Høgsberged568912006-12-19 19:58:35 -05003419 .enable_phys_dma = ohci_enable_phys_dma,
Stefan Richter0fcff4e2010-06-12 20:35:52 +02003420 .read_csr = ohci_read_csr,
3421 .write_csr = ohci_write_csr,
Kristian Høgsberged568912006-12-19 19:58:35 -05003422
3423 .allocate_iso_context = ohci_allocate_iso_context,
3424 .free_iso_context = ohci_free_iso_context,
Stefan Richter872e3302010-07-29 18:19:22 +02003425 .set_iso_channels = ohci_set_iso_channels,
Kristian Høgsberged568912006-12-19 19:58:35 -05003426 .queue_iso = ohci_queue_iso,
Clemens Ladisch13882a82011-05-02 09:33:56 +02003427 .flush_queue_iso = ohci_flush_queue_iso,
Kristian Høgsberg69cdb722007-02-16 17:34:41 -05003428 .start_iso = ohci_start_iso,
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003429 .stop_iso = ohci_stop_iso,
Kristian Høgsberged568912006-12-19 19:58:35 -05003430};
3431
Stefan Richter2ed0f182008-03-01 12:35:29 +01003432#ifdef CONFIG_PPC_PMAC
Stefan Richter5da3dac2010-04-02 14:05:02 +02003433static void pmac_ohci_on(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01003434{
3435 if (machine_is(powermac)) {
3436 struct device_node *ofn = pci_device_to_OF_node(dev);
3437
3438 if (ofn) {
3439 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 1);
3440 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 1);
3441 }
3442 }
3443}
3444
Stefan Richter5da3dac2010-04-02 14:05:02 +02003445static void pmac_ohci_off(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01003446{
3447 if (machine_is(powermac)) {
3448 struct device_node *ofn = pci_device_to_OF_node(dev);
3449
3450 if (ofn) {
3451 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 0);
3452 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 0);
3453 }
3454 }
3455}
3456#else
Stefan Richter5da3dac2010-04-02 14:05:02 +02003457static inline void pmac_ohci_on(struct pci_dev *dev) {}
3458static inline void pmac_ohci_off(struct pci_dev *dev) {}
Stefan Richter2ed0f182008-03-01 12:35:29 +01003459#endif /* CONFIG_PPC_PMAC */
3460
Stefan Richter53dca512008-12-14 21:47:04 +01003461static int __devinit pci_probe(struct pci_dev *dev,
3462 const struct pci_device_id *ent)
Kristian Høgsberged568912006-12-19 19:58:35 -05003463{
3464 struct fw_ohci *ohci;
Stefan Richteraa0170f2010-10-17 14:09:12 +02003465 u32 bus_options, max_receive, link_speed, version;
Kristian Høgsberged568912006-12-19 19:58:35 -05003466 u64 guid;
Maxim Levitskydd237362010-11-29 04:09:50 +02003467 int i, err;
Kristian Høgsberged568912006-12-19 19:58:35 -05003468 size_t size;
3469
Stefan Richter7f7e37112011-07-10 00:23:03 +02003470 if (dev->vendor == PCI_VENDOR_ID_PINNACLE_SYSTEMS) {
3471 dev_err(&dev->dev, "Pinnacle MovieBoard is not yet supported\n");
3472 return -ENOSYS;
3473 }
3474
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003475 ohci = kzalloc(sizeof(*ohci), GFP_KERNEL);
Kristian Høgsberged568912006-12-19 19:58:35 -05003476 if (ohci == NULL) {
Stefan Richter7007a072008-10-26 09:50:31 +01003477 err = -ENOMEM;
3478 goto fail;
Kristian Høgsberged568912006-12-19 19:58:35 -05003479 }
3480
3481 fw_card_initialize(&ohci->card, &ohci_driver, &dev->dev);
3482
Stefan Richter5da3dac2010-04-02 14:05:02 +02003483 pmac_ohci_on(dev);
Stefan Richter130d5492008-03-24 20:55:28 +01003484
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003485 err = pci_enable_device(dev);
3486 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003487 dev_err(&dev->dev, "failed to enable OHCI hardware\n");
Stefan Richterbd7dee62008-02-24 18:59:55 +01003488 goto fail_free;
Kristian Høgsberged568912006-12-19 19:58:35 -05003489 }
3490
3491 pci_set_master(dev);
3492 pci_write_config_dword(dev, OHCI1394_PCI_HCI_Control, 0);
3493 pci_set_drvdata(dev, ohci);
3494
3495 spin_lock_init(&ohci->lock);
Stefan Richter02d37be2010-07-08 16:09:06 +02003496 mutex_init(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -05003497
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02003498 INIT_WORK(&ohci->bus_reset_work, bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05003499
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003500 err = pci_request_region(dev, 0, ohci_driver_name);
3501 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003502 dev_err(&dev->dev, "MMIO resource unavailable\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003503 goto fail_disable;
Kristian Høgsberged568912006-12-19 19:58:35 -05003504 }
3505
3506 ohci->registers = pci_iomap(dev, 0, OHCI1394_REGISTER_SIZE);
3507 if (ohci->registers == NULL) {
Stefan Richter64d21722011-12-20 21:32:46 +01003508 dev_err(&dev->dev, "failed to remap registers\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003509 err = -ENXIO;
3510 goto fail_iomem;
Kristian Høgsberged568912006-12-19 19:58:35 -05003511 }
3512
Stefan Richter4a635592010-02-21 17:58:01 +01003513 for (i = 0; i < ARRAY_SIZE(ohci_quirks); i++)
Stefan Richter9993e0f2010-12-07 20:32:40 +01003514 if ((ohci_quirks[i].vendor == dev->vendor) &&
3515 (ohci_quirks[i].device == (unsigned short)PCI_ANY_ID ||
3516 ohci_quirks[i].device == dev->device) &&
3517 (ohci_quirks[i].revision == (unsigned short)PCI_ANY_ID ||
3518 ohci_quirks[i].revision >= dev->revision)) {
Stefan Richter4a635592010-02-21 17:58:01 +01003519 ohci->quirks = ohci_quirks[i].flags;
3520 break;
3521 }
Stefan Richter3e9cc2f2010-02-21 17:58:29 +01003522 if (param_quirks)
3523 ohci->quirks = param_quirks;
Clemens Ladischb6775322010-01-20 09:58:02 +01003524
Clemens Ladischec766a72010-11-30 08:25:17 +01003525 /*
3526 * Because dma_alloc_coherent() allocates at least one page,
3527 * we save space by using a common buffer for the AR request/
3528 * response descriptors and the self IDs buffer.
3529 */
3530 BUILD_BUG_ON(AR_BUFFERS * sizeof(struct descriptor) > PAGE_SIZE/4);
3531 BUILD_BUG_ON(SELF_ID_BUF_SIZE > PAGE_SIZE/2);
3532 ohci->misc_buffer = dma_alloc_coherent(ohci->card.device,
3533 PAGE_SIZE,
3534 &ohci->misc_buffer_bus,
3535 GFP_KERNEL);
3536 if (!ohci->misc_buffer) {
3537 err = -ENOMEM;
3538 goto fail_iounmap;
3539 }
3540
3541 err = ar_context_init(&ohci->ar_request_ctx, ohci, 0,
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003542 OHCI1394_AsReqRcvContextControlSet);
3543 if (err < 0)
Clemens Ladischec766a72010-11-30 08:25:17 +01003544 goto fail_misc_buf;
Kristian Høgsberged568912006-12-19 19:58:35 -05003545
Clemens Ladischec766a72010-11-30 08:25:17 +01003546 err = ar_context_init(&ohci->ar_response_ctx, ohci, PAGE_SIZE/4,
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003547 OHCI1394_AsRspRcvContextControlSet);
3548 if (err < 0)
3549 goto fail_arreq_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003550
Clemens Ladischc088ab302010-11-30 08:24:01 +01003551 err = context_init(&ohci->at_request_ctx, ohci,
3552 OHCI1394_AsReqTrContextControlSet, handle_at_packet);
3553 if (err < 0)
3554 goto fail_arrsp_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003555
Clemens Ladischc088ab302010-11-30 08:24:01 +01003556 err = context_init(&ohci->at_response_ctx, ohci,
3557 OHCI1394_AsRspTrContextControlSet, handle_at_packet);
3558 if (err < 0)
3559 goto fail_atreq_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003560
Kristian Høgsberged568912006-12-19 19:58:35 -05003561 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, ~0);
Stefan Richter4817ed22008-12-21 16:39:46 +01003562 ohci->ir_context_channels = ~0ULL;
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003563 ohci->ir_context_support = reg_read(ohci, OHCI1394_IsoRecvIntMaskSet);
Stefan Richter4802f162010-02-21 17:58:52 +01003564 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003565 ohci->ir_context_mask = ohci->ir_context_support;
Maxim Levitskydd237362010-11-29 04:09:50 +02003566 ohci->n_ir = hweight32(ohci->ir_context_mask);
3567 size = sizeof(struct iso_context) * ohci->n_ir;
Kristian Høgsberged568912006-12-19 19:58:35 -05003568 ohci->ir_context_list = kzalloc(size, GFP_KERNEL);
3569
Stefan Richter4802f162010-02-21 17:58:52 +01003570 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003571 ohci->it_context_support = reg_read(ohci, OHCI1394_IsoXmitIntMaskSet);
Stefan Richter4802f162010-02-21 17:58:52 +01003572 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003573 ohci->it_context_mask = ohci->it_context_support;
Maxim Levitskydd237362010-11-29 04:09:50 +02003574 ohci->n_it = hweight32(ohci->it_context_mask);
3575 size = sizeof(struct iso_context) * ohci->n_it;
Stefan Richter4802f162010-02-21 17:58:52 +01003576 ohci->it_context_list = kzalloc(size, GFP_KERNEL);
3577
Kristian Høgsberged568912006-12-19 19:58:35 -05003578 if (ohci->it_context_list == NULL || ohci->ir_context_list == NULL) {
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003579 err = -ENOMEM;
Stefan Richter7007a072008-10-26 09:50:31 +01003580 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05003581 }
3582
Clemens Ladischec766a72010-11-30 08:25:17 +01003583 ohci->self_id_cpu = ohci->misc_buffer + PAGE_SIZE/2;
3584 ohci->self_id_bus = ohci->misc_buffer_bus + PAGE_SIZE/2;
Kristian Høgsberged568912006-12-19 19:58:35 -05003585
Kristian Høgsberged568912006-12-19 19:58:35 -05003586 bus_options = reg_read(ohci, OHCI1394_BusOptions);
3587 max_receive = (bus_options >> 12) & 0xf;
3588 link_speed = bus_options & 0x7;
3589 guid = ((u64) reg_read(ohci, OHCI1394_GUIDHi) << 32) |
3590 reg_read(ohci, OHCI1394_GUIDLo);
3591
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003592 err = fw_card_add(&ohci->card, max_receive, link_speed, guid);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01003593 if (err)
Clemens Ladischec766a72010-11-30 08:25:17 +01003594 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05003595
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01003596 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
Stefan Richter64d21722011-12-20 21:32:46 +01003597 dev_notice(&dev->dev,
3598 "added OHCI v%x.%x device as card %d, "
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01003599 "%d IR + %d IT contexts, quirks 0x%x\n",
Stefan Richter64d21722011-12-20 21:32:46 +01003600 version >> 16, version & 0xff, ohci->card.index,
Maxim Levitskydd237362010-11-29 04:09:50 +02003601 ohci->n_ir, ohci->n_it, ohci->quirks);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01003602
Kristian Høgsberged568912006-12-19 19:58:35 -05003603 return 0;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003604
Stefan Richter7007a072008-10-26 09:50:31 +01003605 fail_contexts:
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003606 kfree(ohci->ir_context_list);
Stefan Richter7007a072008-10-26 09:50:31 +01003607 kfree(ohci->it_context_list);
3608 context_release(&ohci->at_response_ctx);
Clemens Ladischc088ab302010-11-30 08:24:01 +01003609 fail_atreq_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003610 context_release(&ohci->at_request_ctx);
Clemens Ladischc088ab302010-11-30 08:24:01 +01003611 fail_arrsp_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003612 ar_context_release(&ohci->ar_response_ctx);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003613 fail_arreq_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003614 ar_context_release(&ohci->ar_request_ctx);
Clemens Ladischec766a72010-11-30 08:25:17 +01003615 fail_misc_buf:
3616 dma_free_coherent(ohci->card.device, PAGE_SIZE,
3617 ohci->misc_buffer, ohci->misc_buffer_bus);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003618 fail_iounmap:
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003619 pci_iounmap(dev, ohci->registers);
3620 fail_iomem:
3621 pci_release_region(dev, 0);
3622 fail_disable:
3623 pci_disable_device(dev);
Stefan Richterbd7dee62008-02-24 18:59:55 +01003624 fail_free:
Oleg Drokind838d2c02011-03-11 04:17:27 +03003625 kfree(ohci);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003626 pmac_ohci_off(dev);
Stefan Richter7007a072008-10-26 09:50:31 +01003627 fail:
3628 if (err == -ENOMEM)
Stefan Richter64d21722011-12-20 21:32:46 +01003629 dev_err(&dev->dev, "out of memory\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003630
3631 return err;
Kristian Høgsberged568912006-12-19 19:58:35 -05003632}
3633
3634static void pci_remove(struct pci_dev *dev)
3635{
3636 struct fw_ohci *ohci;
3637
3638 ohci = pci_get_drvdata(dev);
Kristian Høgsberge254a4b2007-03-07 12:12:38 -05003639 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
3640 flush_writes(ohci);
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02003641 cancel_work_sync(&ohci->bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05003642 fw_core_remove_card(&ohci->card);
3643
Kristian Høgsbergc781c062007-05-07 20:33:32 -04003644 /*
3645 * FIXME: Fail all pending packets here, now that the upper
3646 * layers can't queue any more.
3647 */
Kristian Høgsberged568912006-12-19 19:58:35 -05003648
3649 software_reset(ohci);
3650 free_irq(dev->irq, ohci);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003651
3652 if (ohci->next_config_rom && ohci->next_config_rom != ohci->config_rom)
3653 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3654 ohci->next_config_rom, ohci->next_config_rom_bus);
3655 if (ohci->config_rom)
3656 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3657 ohci->config_rom, ohci->config_rom_bus);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003658 ar_context_release(&ohci->ar_request_ctx);
3659 ar_context_release(&ohci->ar_response_ctx);
Clemens Ladischec766a72010-11-30 08:25:17 +01003660 dma_free_coherent(ohci->card.device, PAGE_SIZE,
3661 ohci->misc_buffer, ohci->misc_buffer_bus);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003662 context_release(&ohci->at_request_ctx);
3663 context_release(&ohci->at_response_ctx);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003664 kfree(ohci->it_context_list);
3665 kfree(ohci->ir_context_list);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003666 pci_disable_msi(dev);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003667 pci_iounmap(dev, ohci->registers);
3668 pci_release_region(dev, 0);
3669 pci_disable_device(dev);
Oleg Drokind838d2c02011-03-11 04:17:27 +03003670 kfree(ohci);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003671 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003672
Stefan Richter64d21722011-12-20 21:32:46 +01003673 dev_notice(&dev->dev, "removed fw-ohci device\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05003674}
3675
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003676#ifdef CONFIG_PM
Stefan Richter2ed0f182008-03-01 12:35:29 +01003677static int pci_suspend(struct pci_dev *dev, pm_message_t state)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003678{
Stefan Richter2ed0f182008-03-01 12:35:29 +01003679 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003680 int err;
3681
3682 software_reset(ohci);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003683 free_irq(dev->irq, ohci);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003684 pci_disable_msi(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003685 err = pci_save_state(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003686 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003687 dev_err(&dev->dev, "pci_save_state failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003688 return err;
3689 }
Stefan Richter2ed0f182008-03-01 12:35:29 +01003690 err = pci_set_power_state(dev, pci_choose_state(dev, state));
Stefan Richter55111422007-09-06 09:50:30 +02003691 if (err)
Stefan Richter64d21722011-12-20 21:32:46 +01003692 dev_err(&dev->dev, "pci_set_power_state failed with %d\n", err);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003693 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003694
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003695 return 0;
3696}
3697
Stefan Richter2ed0f182008-03-01 12:35:29 +01003698static int pci_resume(struct pci_dev *dev)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003699{
Stefan Richter2ed0f182008-03-01 12:35:29 +01003700 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003701 int err;
3702
Stefan Richter5da3dac2010-04-02 14:05:02 +02003703 pmac_ohci_on(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003704 pci_set_power_state(dev, PCI_D0);
3705 pci_restore_state(dev);
3706 err = pci_enable_device(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003707 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003708 dev_err(&dev->dev, "pci_enable_device failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003709 return err;
3710 }
3711
Maxim Levitsky8662b6b2010-11-29 04:09:49 +02003712 /* Some systems don't setup GUID register on resume from ram */
3713 if (!reg_read(ohci, OHCI1394_GUIDLo) &&
3714 !reg_read(ohci, OHCI1394_GUIDHi)) {
3715 reg_write(ohci, OHCI1394_GUIDLo, (u32)ohci->card.guid);
3716 reg_write(ohci, OHCI1394_GUIDHi, (u32)(ohci->card.guid >> 32));
3717 }
3718
Maxim Levitskydd237362010-11-29 04:09:50 +02003719 err = ohci_enable(&ohci->card, NULL, 0);
Maxim Levitskydd237362010-11-29 04:09:50 +02003720 if (err)
3721 return err;
3722
3723 ohci_resume_iso_dma(ohci);
Stefan Richter693a50b2011-01-01 15:17:05 +01003724
Maxim Levitskydd237362010-11-29 04:09:50 +02003725 return 0;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003726}
3727#endif
3728
Németh Mártona67483d2010-01-10 13:14:26 +01003729static const struct pci_device_id pci_table[] = {
Kristian Høgsberged568912006-12-19 19:58:35 -05003730 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_FIREWIRE_OHCI, ~0) },
3731 { }
3732};
3733
3734MODULE_DEVICE_TABLE(pci, pci_table);
3735
3736static struct pci_driver fw_ohci_pci_driver = {
3737 .name = ohci_driver_name,
3738 .id_table = pci_table,
3739 .probe = pci_probe,
3740 .remove = pci_remove,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003741#ifdef CONFIG_PM
3742 .resume = pci_resume,
3743 .suspend = pci_suspend,
3744#endif
Kristian Høgsberged568912006-12-19 19:58:35 -05003745};
3746
3747MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
3748MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers");
3749MODULE_LICENSE("GPL");
3750
Olaf Hering1e4c7b02007-05-05 23:17:13 +02003751/* Provide a module alias so root-on-sbp2 initrds don't break. */
3752#ifndef CONFIG_IEEE1394_OHCI1394_MODULE
3753MODULE_ALIAS("ohci1394");
3754#endif
3755
Kristian Høgsberged568912006-12-19 19:58:35 -05003756static int __init fw_ohci_init(void)
3757{
3758 return pci_register_driver(&fw_ohci_pci_driver);
3759}
3760
3761static void __exit fw_ohci_cleanup(void)
3762{
3763 pci_unregister_driver(&fw_ohci_pci_driver);
3764}
3765
3766module_init(fw_ohci_init);
3767module_exit(fw_ohci_cleanup);