blob: 862fdf3400cfdddc624eb2eb1e4dcf5dafccb116 [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 Ladisch386a4152010-12-24 14:42:46 +0100129 bool running;
Clemens Ladisch82b662d2010-12-24 14:40:15 +0100130 bool flushing;
Stefan Richter373b2ed2007-03-04 14:45:18 +0100131
David Moorefe5ca632008-01-06 17:21:41 -0500132 /*
133 * List of page-sized buffers for storing DMA descriptors.
134 * Head of list contains buffers in use and tail of list contains
135 * free buffers.
136 */
137 struct list_head buffer_list;
138
139 /*
140 * Pointer to a buffer inside buffer_list that contains the tail
141 * end of the current DMA program.
142 */
143 struct descriptor_buffer *buffer_tail;
144
145 /*
146 * The descriptor containing the branch address of the first
147 * descriptor that has not yet been filled by the device.
148 */
149 struct descriptor *last;
150
151 /*
152 * The last descriptor in the DMA program. It contains the branch
153 * address that must be updated upon appending a new descriptor.
154 */
155 struct descriptor *prev;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500156
157 descriptor_callback_t callback;
158
Stefan Richter373b2ed2007-03-04 14:45:18 +0100159 struct tasklet_struct tasklet;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500160};
Kristian Høgsberg30200732007-02-16 17:34:39 -0500161
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400162#define IT_HEADER_SY(v) ((v) << 0)
163#define IT_HEADER_TCODE(v) ((v) << 4)
164#define IT_HEADER_CHANNEL(v) ((v) << 8)
165#define IT_HEADER_TAG(v) ((v) << 14)
166#define IT_HEADER_SPEED(v) ((v) << 16)
167#define IT_HEADER_DATA_LENGTH(v) ((v) << 16)
Kristian Høgsberged568912006-12-19 19:58:35 -0500168
169struct iso_context {
170 struct fw_iso_context base;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500171 struct context context;
David Moore0642b652007-12-19 03:09:18 -0500172 int excess_bytes;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500173 void *header;
174 size_t header_length;
Maxim Levitskydd237362010-11-29 04:09:50 +0200175
176 u8 sync;
177 u8 tags;
Kristian Høgsberged568912006-12-19 19:58:35 -0500178};
179
180#define CONFIG_ROM_SIZE 1024
181
182struct fw_ohci {
183 struct fw_card card;
184
185 __iomem char *registers;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500186 int node_id;
Kristian Høgsberged568912006-12-19 19:58:35 -0500187 int generation;
Stefan Richtere09770d2008-03-11 02:23:29 +0100188 int request_generation; /* for timestamping incoming requests */
Stefan Richter4a635592010-02-21 17:58:01 +0100189 unsigned quirks;
Clemens Ladischa1a11322010-06-10 08:35:06 +0200190 unsigned int pri_req_max;
Clemens Ladischa48777e2010-06-10 08:33:07 +0200191 u32 bus_time;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +0200192 bool is_root;
Stefan Richterc8a94de2010-06-12 20:34:50 +0200193 bool csr_state_setclear_abdicate;
Maxim Levitskydd237362010-11-29 04:09:50 +0200194 int n_ir;
195 int n_it;
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400196 /*
197 * Spinlock for accessing fw_ohci data. Never call out of
198 * this driver with this lock held.
199 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500200 spinlock_t lock;
Kristian Høgsberged568912006-12-19 19:58:35 -0500201
Stefan Richter02d37be2010-07-08 16:09:06 +0200202 struct mutex phy_reg_mutex;
203
Clemens Ladischec766a72010-11-30 08:25:17 +0100204 void *misc_buffer;
205 dma_addr_t misc_buffer_bus;
206
Kristian Høgsberged568912006-12-19 19:58:35 -0500207 struct ar_context ar_request_ctx;
208 struct ar_context ar_response_ctx;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500209 struct context at_request_ctx;
210 struct context at_response_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -0500211
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100212 u32 it_context_support;
Stefan Richter872e3302010-07-29 18:19:22 +0200213 u32 it_context_mask; /* unoccupied IT contexts */
Kristian Høgsberged568912006-12-19 19:58:35 -0500214 struct iso_context *it_context_list;
Stefan Richter872e3302010-07-29 18:19:22 +0200215 u64 ir_context_channels; /* unoccupied channels */
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100216 u32 ir_context_support;
Stefan Richter872e3302010-07-29 18:19:22 +0200217 u32 ir_context_mask; /* unoccupied IR contexts */
Kristian Høgsberged568912006-12-19 19:58:35 -0500218 struct iso_context *ir_context_list;
Stefan Richter872e3302010-07-29 18:19:22 +0200219 u64 mc_channels; /* channels in use by the multichannel IR context */
220 bool mc_allocated;
Stefan Richterecb1cf92010-02-21 17:57:32 +0100221
222 __be32 *config_rom;
223 dma_addr_t config_rom_bus;
224 __be32 *next_config_rom;
225 dma_addr_t next_config_rom_bus;
226 __be32 next_header;
227
228 __le32 *self_id_cpu;
229 dma_addr_t self_id_bus;
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +0200230 struct work_struct bus_reset_work;
Stefan Richterecb1cf92010-02-21 17:57:32 +0100231
232 u32 self_id_buffer[512];
Kristian Høgsberged568912006-12-19 19:58:35 -0500233};
234
Adrian Bunk95688e92007-01-22 19:17:37 +0100235static inline struct fw_ohci *fw_ohci(struct fw_card *card)
Kristian Høgsberged568912006-12-19 19:58:35 -0500236{
237 return container_of(card, struct fw_ohci, card);
238}
239
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500240#define IT_CONTEXT_CYCLE_MATCH_ENABLE 0x80000000
241#define IR_CONTEXT_BUFFER_FILL 0x80000000
242#define IR_CONTEXT_ISOCH_HEADER 0x40000000
243#define IR_CONTEXT_CYCLE_MATCH_ENABLE 0x20000000
244#define IR_CONTEXT_MULTI_CHANNEL_MODE 0x10000000
245#define IR_CONTEXT_DUAL_BUFFER_MODE 0x08000000
Kristian Høgsberged568912006-12-19 19:58:35 -0500246
247#define CONTEXT_RUN 0x8000
248#define CONTEXT_WAKE 0x1000
249#define CONTEXT_DEAD 0x0800
250#define CONTEXT_ACTIVE 0x0400
251
Stefan Richter8b7b6af2009-01-20 19:10:58 +0100252#define OHCI1394_MAX_AT_REQ_RETRIES 0xf
Kristian Høgsberged568912006-12-19 19:58:35 -0500253#define OHCI1394_MAX_AT_RESP_RETRIES 0x2
254#define OHCI1394_MAX_PHYS_RESP_RETRIES 0x8
255
Kristian Høgsberged568912006-12-19 19:58:35 -0500256#define OHCI1394_REGISTER_SIZE 0x800
Kristian Høgsberged568912006-12-19 19:58:35 -0500257#define OHCI1394_PCI_HCI_Control 0x40
258#define SELF_ID_BUF_SIZE 0x800
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500259#define OHCI_TCODE_PHY_PACKET 0x0e
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500260#define OHCI_VERSION_1_1 0x010010
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500261
Kristian Høgsberged568912006-12-19 19:58:35 -0500262static char ohci_driver_name[] = KBUILD_MODNAME;
263
Stefan Richter9993e0f2010-12-07 20:32:40 +0100264#define PCI_DEVICE_ID_AGERE_FW643 0x5901
Clemens Ladisch262444e2010-06-05 12:31:25 +0200265#define PCI_DEVICE_ID_JMICRON_JMB38X_FW 0x2380
Clemens Ladisch8301b912010-03-17 11:07:55 +0100266#define PCI_DEVICE_ID_TI_TSB12LV22 0x8009
Stephan Gatzka25935eb2011-09-12 22:23:53 +0200267#define PCI_DEVICE_ID_TI_TSB12LV26 0x8020
268#define PCI_DEVICE_ID_TI_TSB82AA2 0x8025
Stefan Richter7f7e37112011-07-10 00:23:03 +0200269#define PCI_VENDOR_ID_PINNACLE_SYSTEMS 0x11bd
Clemens Ladisch8301b912010-03-17 11:07:55 +0100270
Stefan Richter4a635592010-02-21 17:58:01 +0100271#define QUIRK_CYCLE_TIMER 1
272#define QUIRK_RESET_PACKET 2
273#define QUIRK_BE_HEADERS 4
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200274#define QUIRK_NO_1394A 8
Clemens Ladisch262444e2010-06-05 12:31:25 +0200275#define QUIRK_NO_MSI 16
Stephan Gatzka25935eb2011-09-12 22:23:53 +0200276#define QUIRK_TI_SLLZ059 32
Stefan Richter4a635592010-02-21 17:58:01 +0100277
278/* In case of multiple matches in ohci_quirks[], only the first one is used. */
279static const struct {
Stefan Richter9993e0f2010-12-07 20:32:40 +0100280 unsigned short vendor, device, revision, flags;
Stefan Richter4a635592010-02-21 17:58:01 +0100281} ohci_quirks[] = {
Stefan Richter9993e0f2010-12-07 20:32:40 +0100282 {PCI_VENDOR_ID_AL, PCI_ANY_ID, PCI_ANY_ID,
283 QUIRK_CYCLE_TIMER},
284
285 {PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_FW, PCI_ANY_ID,
286 QUIRK_BE_HEADERS},
287
288 {PCI_VENDOR_ID_ATT, PCI_DEVICE_ID_AGERE_FW643, 6,
289 QUIRK_NO_MSI},
290
291 {PCI_VENDOR_ID_JMICRON, PCI_DEVICE_ID_JMICRON_JMB38X_FW, PCI_ANY_ID,
292 QUIRK_NO_MSI},
293
294 {PCI_VENDOR_ID_NEC, PCI_ANY_ID, PCI_ANY_ID,
295 QUIRK_CYCLE_TIMER},
296
Ming Leif39aa302011-08-31 10:45:46 +0800297 {PCI_VENDOR_ID_O2, PCI_ANY_ID, PCI_ANY_ID,
298 QUIRK_NO_MSI},
299
Stefan Richter9993e0f2010-12-07 20:32:40 +0100300 {PCI_VENDOR_ID_RICOH, PCI_ANY_ID, PCI_ANY_ID,
301 QUIRK_CYCLE_TIMER},
302
303 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV22, PCI_ANY_ID,
304 QUIRK_CYCLE_TIMER | QUIRK_RESET_PACKET | QUIRK_NO_1394A},
305
Stephan Gatzka25935eb2011-09-12 22:23:53 +0200306 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV26, PCI_ANY_ID,
307 QUIRK_RESET_PACKET | QUIRK_TI_SLLZ059},
308
309 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB82AA2, PCI_ANY_ID,
310 QUIRK_RESET_PACKET | QUIRK_TI_SLLZ059},
311
Stefan Richter9993e0f2010-12-07 20:32:40 +0100312 {PCI_VENDOR_ID_TI, PCI_ANY_ID, PCI_ANY_ID,
313 QUIRK_RESET_PACKET},
314
315 {PCI_VENDOR_ID_VIA, PCI_ANY_ID, PCI_ANY_ID,
316 QUIRK_CYCLE_TIMER | QUIRK_NO_MSI},
Stefan Richter4a635592010-02-21 17:58:01 +0100317};
318
Stefan Richter3e9cc2f2010-02-21 17:58:29 +0100319/* This overrides anything that was found in ohci_quirks[]. */
320static int param_quirks;
321module_param_named(quirks, param_quirks, int, 0644);
322MODULE_PARM_DESC(quirks, "Chip quirks (default = 0"
323 ", nonatomic cycle timer = " __stringify(QUIRK_CYCLE_TIMER)
324 ", reset packet generation = " __stringify(QUIRK_RESET_PACKET)
325 ", AR/selfID endianess = " __stringify(QUIRK_BE_HEADERS)
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200326 ", no 1394a enhancements = " __stringify(QUIRK_NO_1394A)
Clemens Ladisch262444e2010-06-05 12:31:25 +0200327 ", disable MSI = " __stringify(QUIRK_NO_MSI)
Stefan Richter28897fb2011-09-19 00:17:37 +0200328 ", TI SLLZ059 erratum = " __stringify(QUIRK_TI_SLLZ059)
Stefan Richter3e9cc2f2010-02-21 17:58:29 +0100329 ")");
330
Stefan Richtera007bb82008-04-07 22:33:35 +0200331#define OHCI_PARAM_DEBUG_AT_AR 1
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100332#define OHCI_PARAM_DEBUG_SELFIDS 2
Stefan Richtera007bb82008-04-07 22:33:35 +0200333#define OHCI_PARAM_DEBUG_IRQS 4
334#define OHCI_PARAM_DEBUG_BUSRESETS 8 /* only effective before chip init */
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100335
Stefan Richter5da3dac2010-04-02 14:05:02 +0200336#ifdef CONFIG_FIREWIRE_OHCI_DEBUG
337
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100338static int param_debug;
339module_param_named(debug, param_debug, int, 0644);
340MODULE_PARM_DESC(debug, "Verbose logging (default = 0"
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100341 ", AT/AR events = " __stringify(OHCI_PARAM_DEBUG_AT_AR)
Stefan Richtera007bb82008-04-07 22:33:35 +0200342 ", self-IDs = " __stringify(OHCI_PARAM_DEBUG_SELFIDS)
343 ", IRQs = " __stringify(OHCI_PARAM_DEBUG_IRQS)
344 ", busReset events = " __stringify(OHCI_PARAM_DEBUG_BUSRESETS)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100345 ", or a combination, or all = -1)");
346
347static void log_irqs(u32 evt)
348{
Stefan Richtera007bb82008-04-07 22:33:35 +0200349 if (likely(!(param_debug &
350 (OHCI_PARAM_DEBUG_IRQS | OHCI_PARAM_DEBUG_BUSRESETS))))
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100351 return;
352
Stefan Richtera007bb82008-04-07 22:33:35 +0200353 if (!(param_debug & OHCI_PARAM_DEBUG_IRQS) &&
354 !(evt & OHCI1394_busReset))
355 return;
356
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100357 fw_notify("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 +0200358 evt & OHCI1394_selfIDComplete ? " selfID" : "",
359 evt & OHCI1394_RQPkt ? " AR_req" : "",
360 evt & OHCI1394_RSPkt ? " AR_resp" : "",
361 evt & OHCI1394_reqTxComplete ? " AT_req" : "",
362 evt & OHCI1394_respTxComplete ? " AT_resp" : "",
363 evt & OHCI1394_isochRx ? " IR" : "",
364 evt & OHCI1394_isochTx ? " IT" : "",
365 evt & OHCI1394_postedWriteErr ? " postedWriteErr" : "",
366 evt & OHCI1394_cycleTooLong ? " cycleTooLong" : "",
Clemens Ladischa48777e2010-06-10 08:33:07 +0200367 evt & OHCI1394_cycle64Seconds ? " cycle64Seconds" : "",
Jay Fenlason5ed1f322009-11-17 12:29:17 -0500368 evt & OHCI1394_cycleInconsistent ? " cycleInconsistent" : "",
Stefan Richter161b96e2008-06-14 14:23:43 +0200369 evt & OHCI1394_regAccessFail ? " regAccessFail" : "",
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100370 evt & OHCI1394_unrecoverableError ? " unrecoverableError" : "",
Stefan Richter161b96e2008-06-14 14:23:43 +0200371 evt & OHCI1394_busReset ? " busReset" : "",
372 evt & ~(OHCI1394_selfIDComplete | OHCI1394_RQPkt |
373 OHCI1394_RSPkt | OHCI1394_reqTxComplete |
374 OHCI1394_respTxComplete | OHCI1394_isochRx |
375 OHCI1394_isochTx | OHCI1394_postedWriteErr |
Clemens Ladischa48777e2010-06-10 08:33:07 +0200376 OHCI1394_cycleTooLong | OHCI1394_cycle64Seconds |
377 OHCI1394_cycleInconsistent |
Stefan Richter161b96e2008-06-14 14:23:43 +0200378 OHCI1394_regAccessFail | OHCI1394_busReset)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100379 ? " ?" : "");
380}
381
382static const char *speed[] = {
383 [0] = "S100", [1] = "S200", [2] = "S400", [3] = "beta",
384};
385static const char *power[] = {
386 [0] = "+0W", [1] = "+15W", [2] = "+30W", [3] = "+45W",
387 [4] = "-3W", [5] = " ?W", [6] = "-3..-6W", [7] = "-3..-10W",
388};
389static const char port[] = { '.', '-', 'p', 'c', };
390
391static char _p(u32 *s, int shift)
392{
393 return port[*s >> shift & 3];
394}
395
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200396static void log_selfids(int node_id, int generation, int self_id_count, u32 *s)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100397{
398 if (likely(!(param_debug & OHCI_PARAM_DEBUG_SELFIDS)))
399 return;
400
Stefan Richter161b96e2008-06-14 14:23:43 +0200401 fw_notify("%d selfIDs, generation %d, local node ID %04x\n",
402 self_id_count, generation, node_id);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100403
404 for (; self_id_count--; ++s)
405 if ((*s & 1 << 23) == 0)
Stefan Richter161b96e2008-06-14 14:23:43 +0200406 fw_notify("selfID 0: %08x, phy %d [%c%c%c] "
407 "%s gc=%d %s %s%s%s\n",
408 *s, *s >> 24 & 63, _p(s, 6), _p(s, 4), _p(s, 2),
409 speed[*s >> 14 & 3], *s >> 16 & 63,
410 power[*s >> 8 & 7], *s >> 22 & 1 ? "L" : "",
411 *s >> 11 & 1 ? "c" : "", *s & 2 ? "i" : "");
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100412 else
Stefan Richter161b96e2008-06-14 14:23:43 +0200413 fw_notify("selfID n: %08x, phy %d [%c%c%c%c%c%c%c%c]\n",
414 *s, *s >> 24 & 63,
415 _p(s, 16), _p(s, 14), _p(s, 12), _p(s, 10),
416 _p(s, 8), _p(s, 6), _p(s, 4), _p(s, 2));
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100417}
418
419static const char *evts[] = {
420 [0x00] = "evt_no_status", [0x01] = "-reserved-",
421 [0x02] = "evt_long_packet", [0x03] = "evt_missing_ack",
422 [0x04] = "evt_underrun", [0x05] = "evt_overrun",
423 [0x06] = "evt_descriptor_read", [0x07] = "evt_data_read",
424 [0x08] = "evt_data_write", [0x09] = "evt_bus_reset",
425 [0x0a] = "evt_timeout", [0x0b] = "evt_tcode_err",
426 [0x0c] = "-reserved-", [0x0d] = "-reserved-",
427 [0x0e] = "evt_unknown", [0x0f] = "evt_flushed",
428 [0x10] = "-reserved-", [0x11] = "ack_complete",
429 [0x12] = "ack_pending ", [0x13] = "-reserved-",
430 [0x14] = "ack_busy_X", [0x15] = "ack_busy_A",
431 [0x16] = "ack_busy_B", [0x17] = "-reserved-",
432 [0x18] = "-reserved-", [0x19] = "-reserved-",
433 [0x1a] = "-reserved-", [0x1b] = "ack_tardy",
434 [0x1c] = "-reserved-", [0x1d] = "ack_data_error",
435 [0x1e] = "ack_type_error", [0x1f] = "-reserved-",
436 [0x20] = "pending/cancelled",
437};
438static const char *tcodes[] = {
439 [0x0] = "QW req", [0x1] = "BW req",
440 [0x2] = "W resp", [0x3] = "-reserved-",
441 [0x4] = "QR req", [0x5] = "BR req",
442 [0x6] = "QR resp", [0x7] = "BR resp",
443 [0x8] = "cycle start", [0x9] = "Lk req",
444 [0xa] = "async stream packet", [0xb] = "Lk resp",
445 [0xc] = "-reserved-", [0xd] = "-reserved-",
446 [0xe] = "link internal", [0xf] = "-reserved-",
447};
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100448
449static void log_ar_at_event(char dir, int speed, u32 *header, int evt)
450{
451 int tcode = header[0] >> 4 & 0xf;
452 char specific[12];
453
454 if (likely(!(param_debug & OHCI_PARAM_DEBUG_AT_AR)))
455 return;
456
457 if (unlikely(evt >= ARRAY_SIZE(evts)))
458 evt = 0x1f;
459
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200460 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter161b96e2008-06-14 14:23:43 +0200461 fw_notify("A%c evt_bus_reset, generation %d\n",
462 dir, (header[2] >> 16) & 0xff);
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200463 return;
464 }
465
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100466 switch (tcode) {
467 case 0x0: case 0x6: case 0x8:
468 snprintf(specific, sizeof(specific), " = %08x",
469 be32_to_cpu((__force __be32)header[3]));
470 break;
471 case 0x1: case 0x5: case 0x7: case 0x9: case 0xb:
472 snprintf(specific, sizeof(specific), " %x,%x",
473 header[3] >> 16, header[3] & 0xffff);
474 break;
475 default:
476 specific[0] = '\0';
477 }
478
479 switch (tcode) {
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100480 case 0xa:
Stefan Richter161b96e2008-06-14 14:23:43 +0200481 fw_notify("A%c %s, %s\n", dir, evts[evt], tcodes[tcode]);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100482 break;
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100483 case 0xe:
484 fw_notify("A%c %s, PHY %08x %08x\n",
485 dir, evts[evt], header[1], header[2]);
486 break;
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100487 case 0x0: case 0x1: case 0x4: case 0x5: case 0x9:
Stefan Richter161b96e2008-06-14 14:23:43 +0200488 fw_notify("A%c spd %x tl %02x, "
489 "%04x -> %04x, %s, "
490 "%s, %04x%08x%s\n",
491 dir, speed, header[0] >> 10 & 0x3f,
492 header[1] >> 16, header[0] >> 16, evts[evt],
493 tcodes[tcode], header[1] & 0xffff, header[2], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100494 break;
495 default:
Stefan Richter161b96e2008-06-14 14:23:43 +0200496 fw_notify("A%c spd %x tl %02x, "
497 "%04x -> %04x, %s, "
498 "%s%s\n",
499 dir, speed, header[0] >> 10 & 0x3f,
500 header[1] >> 16, header[0] >> 16, evts[evt],
501 tcodes[tcode], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100502 }
503}
504
505#else
506
Stefan Richter5da3dac2010-04-02 14:05:02 +0200507#define param_debug 0
508static inline void log_irqs(u32 evt) {}
509static inline void log_selfids(int node_id, int generation, int self_id_count, u32 *s) {}
510static inline void log_ar_at_event(char dir, int speed, u32 *header, int evt) {}
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100511
512#endif /* CONFIG_FIREWIRE_OHCI_DEBUG */
513
Adrian Bunk95688e92007-01-22 19:17:37 +0100514static inline void reg_write(const struct fw_ohci *ohci, int offset, u32 data)
Kristian Høgsberged568912006-12-19 19:58:35 -0500515{
516 writel(data, ohci->registers + offset);
517}
518
Adrian Bunk95688e92007-01-22 19:17:37 +0100519static inline u32 reg_read(const struct fw_ohci *ohci, int offset)
Kristian Høgsberged568912006-12-19 19:58:35 -0500520{
521 return readl(ohci->registers + offset);
522}
523
Adrian Bunk95688e92007-01-22 19:17:37 +0100524static inline void flush_writes(const struct fw_ohci *ohci)
Kristian Høgsberged568912006-12-19 19:58:35 -0500525{
526 /* Do a dummy read to flush writes. */
527 reg_read(ohci, OHCI1394_Version);
528}
529
Stefan Richterb14c3692011-06-21 15:24:26 +0200530/*
531 * Beware! read_phy_reg(), write_phy_reg(), update_phy_reg(), and
532 * read_paged_phy_reg() require the caller to hold ohci->phy_reg_mutex.
533 * In other words, only use ohci_read_phy_reg() and ohci_update_phy_reg()
534 * directly. Exceptions are intrinsically serialized contexts like pci_probe.
535 */
Stefan Richter35d999b2010-04-10 16:04:56 +0200536static int read_phy_reg(struct fw_ohci *ohci, int addr)
Kristian Høgsberged568912006-12-19 19:58:35 -0500537{
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200538 u32 val;
Stefan Richter35d999b2010-04-10 16:04:56 +0200539 int i;
Kristian Høgsberged568912006-12-19 19:58:35 -0500540
541 reg_write(ohci, OHCI1394_PhyControl, OHCI1394_PhyControl_Read(addr));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200542 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200543 val = reg_read(ohci, OHCI1394_PhyControl);
Stefan Richter215fa442011-06-22 21:05:08 +0200544 if (!~val)
545 return -ENODEV; /* Card was ejected. */
546
Stefan Richter35d999b2010-04-10 16:04:56 +0200547 if (val & OHCI1394_PhyControl_ReadDone)
548 return OHCI1394_PhyControl_ReadData(val);
549
Clemens Ladisch153e3972010-06-10 08:22:07 +0200550 /*
551 * Try a few times without waiting. Sleeping is necessary
552 * only when the link/PHY interface is busy.
553 */
554 if (i >= 3)
555 msleep(1);
Kristian Høgsberged568912006-12-19 19:58:35 -0500556 }
Stefan Richter35d999b2010-04-10 16:04:56 +0200557 fw_error("failed to read phy reg\n");
Kristian Høgsberged568912006-12-19 19:58:35 -0500558
Stefan Richter35d999b2010-04-10 16:04:56 +0200559 return -EBUSY;
560}
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200561
Stefan Richter35d999b2010-04-10 16:04:56 +0200562static int write_phy_reg(const struct fw_ohci *ohci, int addr, u32 val)
563{
564 int i;
565
566 reg_write(ohci, OHCI1394_PhyControl,
567 OHCI1394_PhyControl_Write(addr, val));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200568 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200569 val = reg_read(ohci, OHCI1394_PhyControl);
Stefan Richter215fa442011-06-22 21:05:08 +0200570 if (!~val)
571 return -ENODEV; /* Card was ejected. */
572
Stefan Richter35d999b2010-04-10 16:04:56 +0200573 if (!(val & OHCI1394_PhyControl_WritePending))
574 return 0;
575
Clemens Ladisch153e3972010-06-10 08:22:07 +0200576 if (i >= 3)
577 msleep(1);
Stefan Richter35d999b2010-04-10 16:04:56 +0200578 }
579 fw_error("failed to write phy reg\n");
580
581 return -EBUSY;
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200582}
583
Stefan Richter02d37be2010-07-08 16:09:06 +0200584static int update_phy_reg(struct fw_ohci *ohci, int addr,
585 int clear_bits, int set_bits)
Kristian Høgsberged568912006-12-19 19:58:35 -0500586{
Stefan Richter02d37be2010-07-08 16:09:06 +0200587 int ret = read_phy_reg(ohci, addr);
Stefan Richter35d999b2010-04-10 16:04:56 +0200588 if (ret < 0)
589 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500590
Clemens Ladische7014da2010-04-01 16:40:18 +0200591 /*
592 * The interrupt status bits are cleared by writing a one bit.
593 * Avoid clearing them unless explicitly requested in set_bits.
594 */
595 if (addr == 5)
596 clear_bits |= PHY_INT_STATUS_BITS;
Kristian Høgsberged568912006-12-19 19:58:35 -0500597
Stefan Richter35d999b2010-04-10 16:04:56 +0200598 return write_phy_reg(ohci, addr, (ret & ~clear_bits) | set_bits);
Kristian Høgsberged568912006-12-19 19:58:35 -0500599}
600
Stefan Richter35d999b2010-04-10 16:04:56 +0200601static int read_paged_phy_reg(struct fw_ohci *ohci, int page, int addr)
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200602{
Stefan Richter35d999b2010-04-10 16:04:56 +0200603 int ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200604
Stefan Richter02d37be2010-07-08 16:09:06 +0200605 ret = update_phy_reg(ohci, 7, PHY_PAGE_SELECT, page << 5);
Stefan Richter35d999b2010-04-10 16:04:56 +0200606 if (ret < 0)
607 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200608
Stefan Richter35d999b2010-04-10 16:04:56 +0200609 return read_phy_reg(ohci, addr);
Kristian Høgsberged568912006-12-19 19:58:35 -0500610}
611
Stefan Richter02d37be2010-07-08 16:09:06 +0200612static int ohci_read_phy_reg(struct fw_card *card, int addr)
613{
614 struct fw_ohci *ohci = fw_ohci(card);
615 int ret;
616
617 mutex_lock(&ohci->phy_reg_mutex);
618 ret = read_phy_reg(ohci, addr);
619 mutex_unlock(&ohci->phy_reg_mutex);
620
621 return ret;
622}
623
Kristian Høgsberged568912006-12-19 19:58:35 -0500624static int ohci_update_phy_reg(struct fw_card *card, int addr,
625 int clear_bits, int set_bits)
626{
627 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter02d37be2010-07-08 16:09:06 +0200628 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500629
Stefan Richter02d37be2010-07-08 16:09:06 +0200630 mutex_lock(&ohci->phy_reg_mutex);
631 ret = update_phy_reg(ohci, addr, clear_bits, set_bits);
632 mutex_unlock(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -0500633
Stefan Richter02d37be2010-07-08 16:09:06 +0200634 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500635}
636
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100637static inline dma_addr_t ar_buffer_bus(struct ar_context *ctx, unsigned int i)
Kristian Høgsberged568912006-12-19 19:58:35 -0500638{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100639 return page_private(ctx->pages[i]);
640}
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500641
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100642static void ar_context_link_page(struct ar_context *ctx, unsigned int index)
643{
644 struct descriptor *d;
645
646 d = &ctx->descriptors[index];
647 d->branch_address &= cpu_to_le32(~0xf);
648 d->res_count = cpu_to_le16(PAGE_SIZE);
649 d->transfer_status = 0;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500650
Stefan Richter071595e2010-07-27 13:20:33 +0200651 wmb(); /* finish init of new descriptors before branch_address update */
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100652 d = &ctx->descriptors[ctx->last_buffer_index];
653 d->branch_address |= cpu_to_le32(1);
654
655 ctx->last_buffer_index = index;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500656
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400657 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladisch837596a2010-10-25 11:42:42 +0200658}
659
Jay Fenlasona55709b2008-10-22 15:59:42 -0400660static void ar_context_release(struct ar_context *ctx)
661{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100662 unsigned int i;
Jay Fenlasona55709b2008-10-22 15:59:42 -0400663
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100664 if (ctx->buffer)
665 vm_unmap_ram(ctx->buffer, AR_BUFFERS + AR_WRAPAROUND_PAGES);
666
667 for (i = 0; i < AR_BUFFERS; i++)
668 if (ctx->pages[i]) {
669 dma_unmap_page(ctx->ohci->card.device,
670 ar_buffer_bus(ctx, i),
671 PAGE_SIZE, DMA_FROM_DEVICE);
672 __free_page(ctx->pages[i]);
673 }
674}
675
676static void ar_context_abort(struct ar_context *ctx, const char *error_msg)
677{
678 if (reg_read(ctx->ohci, CONTROL_CLEAR(ctx->regs)) & CONTEXT_RUN) {
679 reg_write(ctx->ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
680 flush_writes(ctx->ohci);
681
682 fw_error("AR error: %s; DMA stopped\n", error_msg);
Jay Fenlasona55709b2008-10-22 15:59:42 -0400683 }
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100684 /* FIXME: restart? */
685}
686
687static inline unsigned int ar_next_buffer_index(unsigned int index)
688{
689 return (index + 1) % AR_BUFFERS;
690}
691
692static inline unsigned int ar_prev_buffer_index(unsigned int index)
693{
694 return (index - 1 + AR_BUFFERS) % AR_BUFFERS;
695}
696
697static inline unsigned int ar_first_buffer_index(struct ar_context *ctx)
698{
699 return ar_next_buffer_index(ctx->last_buffer_index);
700}
701
702/*
703 * We search for the buffer that contains the last AR packet DMA data written
704 * by the controller.
705 */
706static unsigned int ar_search_last_active_buffer(struct ar_context *ctx,
707 unsigned int *buffer_offset)
708{
709 unsigned int i, next_i, last = ctx->last_buffer_index;
710 __le16 res_count, next_res_count;
711
712 i = ar_first_buffer_index(ctx);
713 res_count = ACCESS_ONCE(ctx->descriptors[i].res_count);
714
715 /* A buffer that is not yet completely filled must be the last one. */
716 while (i != last && res_count == 0) {
717
718 /* Peek at the next descriptor. */
719 next_i = ar_next_buffer_index(i);
720 rmb(); /* read descriptors in order */
721 next_res_count = ACCESS_ONCE(
722 ctx->descriptors[next_i].res_count);
723 /*
724 * If the next descriptor is still empty, we must stop at this
725 * descriptor.
726 */
727 if (next_res_count == cpu_to_le16(PAGE_SIZE)) {
728 /*
729 * The exception is when the DMA data for one packet is
730 * split over three buffers; in this case, the middle
731 * buffer's descriptor might be never updated by the
732 * controller and look still empty, and we have to peek
733 * at the third one.
734 */
735 if (MAX_AR_PACKET_SIZE > PAGE_SIZE && i != last) {
736 next_i = ar_next_buffer_index(next_i);
737 rmb();
738 next_res_count = ACCESS_ONCE(
739 ctx->descriptors[next_i].res_count);
740 if (next_res_count != cpu_to_le16(PAGE_SIZE))
741 goto next_buffer_is_active;
742 }
743
744 break;
745 }
746
747next_buffer_is_active:
748 i = next_i;
749 res_count = next_res_count;
750 }
751
752 rmb(); /* read res_count before the DMA data */
753
754 *buffer_offset = PAGE_SIZE - le16_to_cpu(res_count);
755 if (*buffer_offset > PAGE_SIZE) {
756 *buffer_offset = 0;
757 ar_context_abort(ctx, "corrupted descriptor");
758 }
759
760 return i;
761}
762
763static void ar_sync_buffers_for_cpu(struct ar_context *ctx,
764 unsigned int end_buffer_index,
765 unsigned int end_buffer_offset)
766{
767 unsigned int i;
768
769 i = ar_first_buffer_index(ctx);
770 while (i != end_buffer_index) {
771 dma_sync_single_for_cpu(ctx->ohci->card.device,
772 ar_buffer_bus(ctx, i),
773 PAGE_SIZE, DMA_FROM_DEVICE);
774 i = ar_next_buffer_index(i);
775 }
776 if (end_buffer_offset > 0)
777 dma_sync_single_for_cpu(ctx->ohci->card.device,
778 ar_buffer_bus(ctx, i),
779 end_buffer_offset, DMA_FROM_DEVICE);
Jay Fenlasona55709b2008-10-22 15:59:42 -0400780}
781
Stefan Richter11bf20a2008-03-01 02:47:15 +0100782#if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
783#define cond_le32_to_cpu(v) \
Stefan Richter4a635592010-02-21 17:58:01 +0100784 (ohci->quirks & QUIRK_BE_HEADERS ? (__force __u32)(v) : le32_to_cpu(v))
Stefan Richter11bf20a2008-03-01 02:47:15 +0100785#else
786#define cond_le32_to_cpu(v) le32_to_cpu(v)
787#endif
788
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500789static __le32 *handle_ar_packet(struct ar_context *ctx, __le32 *buffer)
Kristian Høgsberged568912006-12-19 19:58:35 -0500790{
Kristian Høgsberged568912006-12-19 19:58:35 -0500791 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500792 struct fw_packet p;
793 u32 status, length, tcode;
Stefan Richter43286562008-03-11 21:22:26 +0100794 int evt;
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500795
Stefan Richter11bf20a2008-03-01 02:47:15 +0100796 p.header[0] = cond_le32_to_cpu(buffer[0]);
797 p.header[1] = cond_le32_to_cpu(buffer[1]);
798 p.header[2] = cond_le32_to_cpu(buffer[2]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500799
800 tcode = (p.header[0] >> 4) & 0x0f;
801 switch (tcode) {
802 case TCODE_WRITE_QUADLET_REQUEST:
803 case TCODE_READ_QUADLET_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500804 p.header[3] = (__force __u32) buffer[3];
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500805 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500806 p.payload_length = 0;
807 break;
808
809 case TCODE_READ_BLOCK_REQUEST :
Stefan Richter11bf20a2008-03-01 02:47:15 +0100810 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500811 p.header_length = 16;
812 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500813 break;
814
815 case TCODE_WRITE_BLOCK_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500816 case TCODE_READ_BLOCK_RESPONSE:
817 case TCODE_LOCK_REQUEST:
818 case TCODE_LOCK_RESPONSE:
Stefan Richter11bf20a2008-03-01 02:47:15 +0100819 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500820 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500821 p.payload_length = p.header[3] >> 16;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100822 if (p.payload_length > MAX_ASYNC_PAYLOAD) {
823 ar_context_abort(ctx, "invalid packet length");
824 return NULL;
825 }
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500826 break;
827
828 case TCODE_WRITE_RESPONSE:
829 case TCODE_READ_QUADLET_REQUEST:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500830 case OHCI_TCODE_PHY_PACKET:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500831 p.header_length = 12;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500832 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500833 break;
Stefan Richterccff9622008-05-31 19:36:06 +0200834
835 default:
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100836 ar_context_abort(ctx, "invalid tcode");
837 return NULL;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500838 }
839
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500840 p.payload = (void *) buffer + p.header_length;
841
842 /* FIXME: What to do about evt_* errors? */
843 length = (p.header_length + p.payload_length + 3) / 4;
Stefan Richter11bf20a2008-03-01 02:47:15 +0100844 status = cond_le32_to_cpu(buffer[length]);
Stefan Richter43286562008-03-11 21:22:26 +0100845 evt = (status >> 16) & 0x1f;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500846
Stefan Richter43286562008-03-11 21:22:26 +0100847 p.ack = evt - 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500848 p.speed = (status >> 21) & 0x7;
849 p.timestamp = status & 0xffff;
850 p.generation = ohci->request_generation;
Kristian Høgsberged568912006-12-19 19:58:35 -0500851
Stefan Richter43286562008-03-11 21:22:26 +0100852 log_ar_at_event('R', p.speed, p.header, evt);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100853
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400854 /*
Stefan Richtera4dc0902010-08-28 14:21:26 +0200855 * Several controllers, notably from NEC and VIA, forget to
856 * write ack_complete status at PHY packet reception.
857 */
858 if (evt == OHCI1394_evt_no_status &&
859 (p.header[0] & 0xff) == (OHCI1394_phy_tcode << 4))
860 p.ack = ACK_COMPLETE;
861
862 /*
863 * The OHCI bus reset handler synthesizes a PHY packet with
Kristian Høgsberged568912006-12-19 19:58:35 -0500864 * the new generation number when a bus reset happens (see
865 * section 8.4.2.3). This helps us determine when a request
866 * was received and make sure we send the response in the same
867 * generation. We only need this for requests; for responses
868 * we use the unique tlabel for finding the matching
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400869 * request.
Stefan Richterd34316a2008-04-12 22:31:25 +0200870 *
871 * Alas some chips sometimes emit bus reset packets with a
872 * wrong generation. We set the correct generation for these
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +0200873 * at a slightly incorrect time (in bus_reset_work).
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400874 */
Stefan Richterd34316a2008-04-12 22:31:25 +0200875 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter4a635592010-02-21 17:58:01 +0100876 if (!(ohci->quirks & QUIRK_RESET_PACKET))
Stefan Richterd34316a2008-04-12 22:31:25 +0200877 ohci->request_generation = (p.header[2] >> 16) & 0xff;
878 } else if (ctx == &ohci->ar_request_ctx) {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500879 fw_core_handle_request(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200880 } else {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500881 fw_core_handle_response(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200882 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500883
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500884 return buffer + length + 1;
885}
Kristian Høgsberged568912006-12-19 19:58:35 -0500886
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100887static void *handle_ar_packets(struct ar_context *ctx, void *p, void *end)
888{
889 void *next;
890
891 while (p < end) {
892 next = handle_ar_packet(ctx, p);
893 if (!next)
894 return p;
895 p = next;
896 }
897
898 return p;
899}
900
901static void ar_recycle_buffers(struct ar_context *ctx, unsigned int end_buffer)
902{
903 unsigned int i;
904
905 i = ar_first_buffer_index(ctx);
906 while (i != end_buffer) {
907 dma_sync_single_for_device(ctx->ohci->card.device,
908 ar_buffer_bus(ctx, i),
909 PAGE_SIZE, DMA_FROM_DEVICE);
910 ar_context_link_page(ctx, i);
911 i = ar_next_buffer_index(i);
912 }
913}
914
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500915static void ar_context_tasklet(unsigned long data)
916{
917 struct ar_context *ctx = (struct ar_context *)data;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100918 unsigned int end_buffer_index, end_buffer_offset;
919 void *p, *end;
Kristian Høgsberged568912006-12-19 19:58:35 -0500920
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100921 p = ctx->pointer;
922 if (!p)
923 return;
Kristian Høgsberged568912006-12-19 19:58:35 -0500924
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100925 end_buffer_index = ar_search_last_active_buffer(ctx,
926 &end_buffer_offset);
927 ar_sync_buffers_for_cpu(ctx, end_buffer_index, end_buffer_offset);
928 end = ctx->buffer + end_buffer_index * PAGE_SIZE + end_buffer_offset;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500929
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100930 if (end_buffer_index < ar_first_buffer_index(ctx)) {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400931 /*
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100932 * The filled part of the overall buffer wraps around; handle
933 * all packets up to the buffer end here. If the last packet
934 * wraps around, its tail will be visible after the buffer end
935 * because the buffer start pages are mapped there again.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400936 */
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100937 void *buffer_end = ctx->buffer + AR_BUFFERS * PAGE_SIZE;
938 p = handle_ar_packets(ctx, p, buffer_end);
939 if (p < buffer_end)
940 goto error;
941 /* adjust p to point back into the actual buffer */
942 p -= AR_BUFFERS * PAGE_SIZE;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500943 }
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100944
945 p = handle_ar_packets(ctx, p, end);
946 if (p != end) {
947 if (p > end)
948 ar_context_abort(ctx, "inconsistent descriptor");
949 goto error;
950 }
951
952 ctx->pointer = p;
953 ar_recycle_buffers(ctx, end_buffer_index);
954
955 return;
956
957error:
958 ctx->pointer = NULL;
Kristian Høgsberged568912006-12-19 19:58:35 -0500959}
960
Clemens Ladischec766a72010-11-30 08:25:17 +0100961static int ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci,
962 unsigned int descriptors_offset, u32 regs)
Kristian Høgsberged568912006-12-19 19:58:35 -0500963{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100964 unsigned int i;
965 dma_addr_t dma_addr;
966 struct page *pages[AR_BUFFERS + AR_WRAPAROUND_PAGES];
967 struct descriptor *d;
Kristian Høgsberged568912006-12-19 19:58:35 -0500968
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500969 ctx->regs = regs;
970 ctx->ohci = ohci;
Kristian Høgsberged568912006-12-19 19:58:35 -0500971 tasklet_init(&ctx->tasklet, ar_context_tasklet, (unsigned long)ctx);
972
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100973 for (i = 0; i < AR_BUFFERS; i++) {
974 ctx->pages[i] = alloc_page(GFP_KERNEL | GFP_DMA32);
975 if (!ctx->pages[i])
976 goto out_of_memory;
977 dma_addr = dma_map_page(ohci->card.device, ctx->pages[i],
978 0, PAGE_SIZE, DMA_FROM_DEVICE);
979 if (dma_mapping_error(ohci->card.device, dma_addr)) {
980 __free_page(ctx->pages[i]);
981 ctx->pages[i] = NULL;
982 goto out_of_memory;
983 }
984 set_page_private(ctx->pages[i], dma_addr);
985 }
986
987 for (i = 0; i < AR_BUFFERS; i++)
988 pages[i] = ctx->pages[i];
989 for (i = 0; i < AR_WRAPAROUND_PAGES; i++)
990 pages[AR_BUFFERS + i] = ctx->pages[i];
991 ctx->buffer = vm_map_ram(pages, AR_BUFFERS + AR_WRAPAROUND_PAGES,
Clemens Ladisch14271302011-01-13 10:12:17 +0100992 -1, PAGE_KERNEL);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100993 if (!ctx->buffer)
994 goto out_of_memory;
995
Clemens Ladischec766a72010-11-30 08:25:17 +0100996 ctx->descriptors = ohci->misc_buffer + descriptors_offset;
997 ctx->descriptors_bus = ohci->misc_buffer_bus + descriptors_offset;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100998
999 for (i = 0; i < AR_BUFFERS; i++) {
1000 d = &ctx->descriptors[i];
1001 d->req_count = cpu_to_le16(PAGE_SIZE);
1002 d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
1003 DESCRIPTOR_STATUS |
1004 DESCRIPTOR_BRANCH_ALWAYS);
1005 d->data_address = cpu_to_le32(ar_buffer_bus(ctx, i));
1006 d->branch_address = cpu_to_le32(ctx->descriptors_bus +
1007 ar_next_buffer_index(i) * sizeof(struct descriptor));
1008 }
Kristian Høgsberg32b46092007-02-06 14:49:30 -05001009
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001010 return 0;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001011
1012out_of_memory:
1013 ar_context_release(ctx);
1014
1015 return -ENOMEM;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001016}
1017
1018static void ar_context_run(struct ar_context *ctx)
1019{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001020 unsigned int i;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001021
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001022 for (i = 0; i < AR_BUFFERS; i++)
1023 ar_context_link_page(ctx, i);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001024
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001025 ctx->pointer = ctx->buffer;
1026
1027 reg_write(ctx->ohci, COMMAND_PTR(ctx->regs), ctx->descriptors_bus | 1);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001028 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN);
Kristian Høgsberged568912006-12-19 19:58:35 -05001029}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001030
Stefan Richter53dca512008-12-14 21:47:04 +01001031static struct descriptor *find_branch_descriptor(struct descriptor *d, int z)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001032{
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001033 __le16 branch;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001034
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001035 branch = d->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001036
1037 /* figure out which descriptor the branch address goes in */
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001038 if (z == 2 && branch == cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001039 return d;
1040 else
1041 return d + z - 1;
1042}
1043
Kristian Høgsberg30200732007-02-16 17:34:39 -05001044static void context_tasklet(unsigned long data)
1045{
1046 struct context *ctx = (struct context *) data;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001047 struct descriptor *d, *last;
1048 u32 address;
1049 int z;
David Moorefe5ca632008-01-06 17:21:41 -05001050 struct descriptor_buffer *desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001051
David Moorefe5ca632008-01-06 17:21:41 -05001052 desc = list_entry(ctx->buffer_list.next,
1053 struct descriptor_buffer, list);
1054 last = ctx->last;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001055 while (last->branch_address != 0) {
David Moorefe5ca632008-01-06 17:21:41 -05001056 struct descriptor_buffer *old_desc = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001057 address = le32_to_cpu(last->branch_address);
1058 z = address & 0xf;
David Moorefe5ca632008-01-06 17:21:41 -05001059 address &= ~0xf;
1060
1061 /* If the branch address points to a buffer outside of the
1062 * current buffer, advance to the next buffer. */
1063 if (address < desc->buffer_bus ||
1064 address >= desc->buffer_bus + desc->used)
1065 desc = list_entry(desc->list.next,
1066 struct descriptor_buffer, list);
1067 d = desc->buffer + (address - desc->buffer_bus) / sizeof(*d);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001068 last = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001069
1070 if (!ctx->callback(ctx, d, last))
1071 break;
1072
David Moorefe5ca632008-01-06 17:21:41 -05001073 if (old_desc != desc) {
1074 /* If we've advanced to the next buffer, move the
1075 * previous buffer to the free list. */
1076 unsigned long flags;
1077 old_desc->used = 0;
1078 spin_lock_irqsave(&ctx->ohci->lock, flags);
1079 list_move_tail(&old_desc->list, &ctx->buffer_list);
1080 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1081 }
1082 ctx->last = last;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001083 }
1084}
1085
David Moorefe5ca632008-01-06 17:21:41 -05001086/*
1087 * Allocate a new buffer and add it to the list of free buffers for this
1088 * context. Must be called with ohci->lock held.
1089 */
Stefan Richter53dca512008-12-14 21:47:04 +01001090static int context_add_buffer(struct context *ctx)
David Moorefe5ca632008-01-06 17:21:41 -05001091{
1092 struct descriptor_buffer *desc;
Stefan Richterf5101d582008-03-14 00:27:49 +01001093 dma_addr_t uninitialized_var(bus_addr);
David Moorefe5ca632008-01-06 17:21:41 -05001094 int offset;
1095
1096 /*
1097 * 16MB of descriptors should be far more than enough for any DMA
1098 * program. This will catch run-away userspace or DoS attacks.
1099 */
1100 if (ctx->total_allocation >= 16*1024*1024)
1101 return -ENOMEM;
1102
1103 desc = dma_alloc_coherent(ctx->ohci->card.device, PAGE_SIZE,
1104 &bus_addr, GFP_ATOMIC);
1105 if (!desc)
1106 return -ENOMEM;
1107
1108 offset = (void *)&desc->buffer - (void *)desc;
1109 desc->buffer_size = PAGE_SIZE - offset;
1110 desc->buffer_bus = bus_addr + offset;
1111 desc->used = 0;
1112
1113 list_add_tail(&desc->list, &ctx->buffer_list);
1114 ctx->total_allocation += PAGE_SIZE;
1115
1116 return 0;
1117}
1118
Stefan Richter53dca512008-12-14 21:47:04 +01001119static int context_init(struct context *ctx, struct fw_ohci *ohci,
1120 u32 regs, descriptor_callback_t callback)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001121{
1122 ctx->ohci = ohci;
1123 ctx->regs = regs;
David Moorefe5ca632008-01-06 17:21:41 -05001124 ctx->total_allocation = 0;
1125
1126 INIT_LIST_HEAD(&ctx->buffer_list);
1127 if (context_add_buffer(ctx) < 0)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001128 return -ENOMEM;
1129
David Moorefe5ca632008-01-06 17:21:41 -05001130 ctx->buffer_tail = list_entry(ctx->buffer_list.next,
1131 struct descriptor_buffer, list);
1132
Kristian Høgsberg30200732007-02-16 17:34:39 -05001133 tasklet_init(&ctx->tasklet, context_tasklet, (unsigned long)ctx);
1134 ctx->callback = callback;
1135
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001136 /*
1137 * We put a dummy descriptor in the buffer that has a NULL
Kristian Høgsberg30200732007-02-16 17:34:39 -05001138 * branch address and looks like it's been sent. That way we
David Moorefe5ca632008-01-06 17:21:41 -05001139 * have a descriptor to append DMA programs to.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001140 */
David Moorefe5ca632008-01-06 17:21:41 -05001141 memset(ctx->buffer_tail->buffer, 0, sizeof(*ctx->buffer_tail->buffer));
1142 ctx->buffer_tail->buffer->control = cpu_to_le16(DESCRIPTOR_OUTPUT_LAST);
1143 ctx->buffer_tail->buffer->transfer_status = cpu_to_le16(0x8011);
1144 ctx->buffer_tail->used += sizeof(*ctx->buffer_tail->buffer);
1145 ctx->last = ctx->buffer_tail->buffer;
1146 ctx->prev = ctx->buffer_tail->buffer;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001147
1148 return 0;
1149}
1150
Stefan Richter53dca512008-12-14 21:47:04 +01001151static void context_release(struct context *ctx)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001152{
1153 struct fw_card *card = &ctx->ohci->card;
David Moorefe5ca632008-01-06 17:21:41 -05001154 struct descriptor_buffer *desc, *tmp;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001155
David Moorefe5ca632008-01-06 17:21:41 -05001156 list_for_each_entry_safe(desc, tmp, &ctx->buffer_list, list)
1157 dma_free_coherent(card->device, PAGE_SIZE, desc,
1158 desc->buffer_bus -
1159 ((void *)&desc->buffer - (void *)desc));
Kristian Høgsberg30200732007-02-16 17:34:39 -05001160}
1161
David Moorefe5ca632008-01-06 17:21:41 -05001162/* Must be called with ohci->lock held */
Stefan Richter53dca512008-12-14 21:47:04 +01001163static struct descriptor *context_get_descriptors(struct context *ctx,
1164 int z, dma_addr_t *d_bus)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001165{
David Moorefe5ca632008-01-06 17:21:41 -05001166 struct descriptor *d = NULL;
1167 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001168
David Moorefe5ca632008-01-06 17:21:41 -05001169 if (z * sizeof(*d) > desc->buffer_size)
1170 return NULL;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001171
David Moorefe5ca632008-01-06 17:21:41 -05001172 if (z * sizeof(*d) > desc->buffer_size - desc->used) {
1173 /* No room for the descriptor in this buffer, so advance to the
1174 * next one. */
1175
1176 if (desc->list.next == &ctx->buffer_list) {
1177 /* If there is no free buffer next in the list,
1178 * allocate one. */
1179 if (context_add_buffer(ctx) < 0)
1180 return NULL;
1181 }
1182 desc = list_entry(desc->list.next,
1183 struct descriptor_buffer, list);
1184 ctx->buffer_tail = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001185 }
1186
David Moorefe5ca632008-01-06 17:21:41 -05001187 d = desc->buffer + desc->used / sizeof(*d);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001188 memset(d, 0, z * sizeof(*d));
David Moorefe5ca632008-01-06 17:21:41 -05001189 *d_bus = desc->buffer_bus + desc->used;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001190
1191 return d;
1192}
1193
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001194static void context_run(struct context *ctx, u32 extra)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001195{
1196 struct fw_ohci *ohci = ctx->ohci;
1197
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001198 reg_write(ohci, COMMAND_PTR(ctx->regs),
David Moorefe5ca632008-01-06 17:21:41 -05001199 le32_to_cpu(ctx->last->branch_address));
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001200 reg_write(ohci, CONTROL_CLEAR(ctx->regs), ~0);
1201 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN | extra);
Clemens Ladisch386a4152010-12-24 14:42:46 +01001202 ctx->running = true;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001203 flush_writes(ohci);
1204}
1205
1206static void context_append(struct context *ctx,
1207 struct descriptor *d, int z, int extra)
1208{
1209 dma_addr_t d_bus;
David Moorefe5ca632008-01-06 17:21:41 -05001210 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001211
David Moorefe5ca632008-01-06 17:21:41 -05001212 d_bus = desc->buffer_bus + (d - desc->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001213
David Moorefe5ca632008-01-06 17:21:41 -05001214 desc->used += (z + extra) * sizeof(*d);
Stefan Richter071595e2010-07-27 13:20:33 +02001215
1216 wmb(); /* finish init of new descriptors before branch_address update */
David Moorefe5ca632008-01-06 17:21:41 -05001217 ctx->prev->branch_address = cpu_to_le32(d_bus | z);
1218 ctx->prev = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001219}
1220
1221static void context_stop(struct context *ctx)
1222{
1223 u32 reg;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001224 int i;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001225
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001226 reg_write(ctx->ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
Clemens Ladisch386a4152010-12-24 14:42:46 +01001227 ctx->running = false;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001228
Stefan Richter9ef28cc2011-06-12 14:30:57 +02001229 for (i = 0; i < 1000; i++) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001230 reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs));
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001231 if ((reg & CONTEXT_ACTIVE) == 0)
Stefan Richterb0068542009-01-05 20:43:23 +01001232 return;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001233
Stefan Richter9ef28cc2011-06-12 14:30:57 +02001234 if (i)
1235 udelay(10);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001236 }
Stefan Richterb0068542009-01-05 20:43:23 +01001237 fw_error("Error: DMA context still active (0x%08x)\n", reg);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001238}
Kristian Høgsberged568912006-12-19 19:58:35 -05001239
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001240struct driver_data {
Clemens Ladischda289472011-04-11 09:57:54 +02001241 u8 inline_data[8];
Kristian Høgsberged568912006-12-19 19:58:35 -05001242 struct fw_packet *packet;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001243};
1244
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001245/*
1246 * This function apppends a packet to the DMA queue for transmission.
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001247 * Must always be called with the ochi->lock held to ensure proper
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001248 * generation handling and locking around packet queue manipulation.
1249 */
Stefan Richter53dca512008-12-14 21:47:04 +01001250static int at_context_queue_packet(struct context *ctx,
1251 struct fw_packet *packet)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001252{
Kristian Høgsberged568912006-12-19 19:58:35 -05001253 struct fw_ohci *ohci = ctx->ohci;
Stefan Richter4b6d51e2007-10-21 11:20:07 +02001254 dma_addr_t d_bus, uninitialized_var(payload_bus);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001255 struct driver_data *driver_data;
1256 struct descriptor *d, *last;
1257 __le32 *header;
Kristian Høgsberged568912006-12-19 19:58:35 -05001258 int z, tcode;
1259
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001260 d = context_get_descriptors(ctx, 4, &d_bus);
1261 if (d == NULL) {
1262 packet->ack = RCODE_SEND_ERROR;
1263 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001264 }
1265
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001266 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001267 d[0].res_count = cpu_to_le16(packet->timestamp);
1268
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001269 /*
1270 * The DMA format for asyncronous link packets is different
Kristian Høgsberged568912006-12-19 19:58:35 -05001271 * from the IEEE1394 layout, so shift the fields around
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001272 * accordingly.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001273 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001274
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001275 tcode = (packet->header[0] >> 4) & 0x0f;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001276 header = (__le32 *) &d[1];
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001277 switch (tcode) {
1278 case TCODE_WRITE_QUADLET_REQUEST:
1279 case TCODE_WRITE_BLOCK_REQUEST:
1280 case TCODE_WRITE_RESPONSE:
1281 case TCODE_READ_QUADLET_REQUEST:
1282 case TCODE_READ_BLOCK_REQUEST:
1283 case TCODE_READ_QUADLET_RESPONSE:
1284 case TCODE_READ_BLOCK_RESPONSE:
1285 case TCODE_LOCK_REQUEST:
1286 case TCODE_LOCK_RESPONSE:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001287 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1288 (packet->speed << 16));
1289 header[1] = cpu_to_le32((packet->header[1] & 0xffff) |
1290 (packet->header[0] & 0xffff0000));
1291 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001292
Kristian Høgsberged568912006-12-19 19:58:35 -05001293 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001294 header[3] = cpu_to_le32(packet->header[3]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001295 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001296 header[3] = (__force __le32) packet->header[3];
1297
1298 d[0].req_count = cpu_to_le16(packet->header_length);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001299 break;
1300
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001301 case TCODE_LINK_INTERNAL:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001302 header[0] = cpu_to_le32((OHCI1394_phy_tcode << 4) |
1303 (packet->speed << 16));
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001304 header[1] = cpu_to_le32(packet->header[1]);
1305 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001306 d[0].req_count = cpu_to_le16(12);
Stefan Richtercc550212010-07-18 13:00:50 +02001307
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001308 if (is_ping_packet(&packet->header[1]))
Stefan Richtercc550212010-07-18 13:00:50 +02001309 d[0].control |= cpu_to_le16(DESCRIPTOR_PING);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001310 break;
1311
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001312 case TCODE_STREAM_DATA:
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001313 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1314 (packet->speed << 16));
1315 header[1] = cpu_to_le32(packet->header[0] & 0xffff0000);
1316 d[0].req_count = cpu_to_le16(8);
1317 break;
1318
1319 default:
1320 /* BUG(); */
1321 packet->ack = RCODE_SEND_ERROR;
1322 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001323 }
1324
Clemens Ladischda289472011-04-11 09:57:54 +02001325 BUILD_BUG_ON(sizeof(struct driver_data) > sizeof(struct descriptor));
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001326 driver_data = (struct driver_data *) &d[3];
1327 driver_data->packet = packet;
Kristian Høgsberg20d11672007-03-26 19:18:19 -04001328 packet->driver_data = driver_data;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001329
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001330 if (packet->payload_length > 0) {
Clemens Ladischda289472011-04-11 09:57:54 +02001331 if (packet->payload_length > sizeof(driver_data->inline_data)) {
1332 payload_bus = dma_map_single(ohci->card.device,
1333 packet->payload,
1334 packet->payload_length,
1335 DMA_TO_DEVICE);
1336 if (dma_mapping_error(ohci->card.device, payload_bus)) {
1337 packet->ack = RCODE_SEND_ERROR;
1338 return -1;
1339 }
1340 packet->payload_bus = payload_bus;
1341 packet->payload_mapped = true;
1342 } else {
1343 memcpy(driver_data->inline_data, packet->payload,
1344 packet->payload_length);
1345 payload_bus = d_bus + 3 * sizeof(*d);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001346 }
1347
1348 d[2].req_count = cpu_to_le16(packet->payload_length);
1349 d[2].data_address = cpu_to_le32(payload_bus);
1350 last = &d[2];
1351 z = 3;
1352 } else {
1353 last = &d[0];
1354 z = 2;
1355 }
1356
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001357 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
1358 DESCRIPTOR_IRQ_ALWAYS |
1359 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001360
Stefan Richterb6258fc2011-02-26 15:08:35 +01001361 /* FIXME: Document how the locking works. */
1362 if (ohci->generation != packet->generation) {
Stefan Richter19593ff2009-10-14 20:40:10 +02001363 if (packet->payload_mapped)
Stefan Richterab88ca42007-08-29 19:40:28 +02001364 dma_unmap_single(ohci->card.device, payload_bus,
1365 packet->payload_length, DMA_TO_DEVICE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001366 packet->ack = RCODE_GENERATION;
1367 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001368 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001369
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001370 context_append(ctx, d, z, 4 - z);
Kristian Høgsberged568912006-12-19 19:58:35 -05001371
Clemens Ladischdd6254e2011-05-16 08:10:10 +02001372 if (ctx->running)
Clemens Ladisch13882a82011-05-02 09:33:56 +02001373 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladischdd6254e2011-05-16 08:10:10 +02001374 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001375 context_run(ctx, 0);
Kristian Høgsberged568912006-12-19 19:58:35 -05001376
1377 return 0;
1378}
1379
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001380static void at_context_flush(struct context *ctx)
1381{
1382 tasklet_disable(&ctx->tasklet);
1383
1384 ctx->flushing = true;
1385 context_tasklet((unsigned long)ctx);
1386 ctx->flushing = false;
1387
1388 tasklet_enable(&ctx->tasklet);
1389}
1390
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001391static int handle_at_packet(struct context *context,
1392 struct descriptor *d,
1393 struct descriptor *last)
1394{
1395 struct driver_data *driver_data;
1396 struct fw_packet *packet;
1397 struct fw_ohci *ohci = context->ohci;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001398 int evt;
1399
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001400 if (last->transfer_status == 0 && !context->flushing)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001401 /* This descriptor isn't done yet, stop iteration. */
1402 return 0;
1403
1404 driver_data = (struct driver_data *) &d[3];
1405 packet = driver_data->packet;
1406 if (packet == NULL)
1407 /* This packet was cancelled, just continue. */
1408 return 1;
1409
Stefan Richter19593ff2009-10-14 20:40:10 +02001410 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01001411 dma_unmap_single(ohci->card.device, packet->payload_bus,
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001412 packet->payload_length, DMA_TO_DEVICE);
1413
1414 evt = le16_to_cpu(last->transfer_status) & 0x1f;
1415 packet->timestamp = le16_to_cpu(last->res_count);
1416
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001417 log_ar_at_event('T', packet->speed, packet->header, evt);
1418
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001419 switch (evt) {
1420 case OHCI1394_evt_timeout:
1421 /* Async response transmit timed out. */
1422 packet->ack = RCODE_CANCELLED;
1423 break;
1424
1425 case OHCI1394_evt_flushed:
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001426 /*
1427 * The packet was flushed should give same error as
1428 * when we try to use a stale generation count.
1429 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001430 packet->ack = RCODE_GENERATION;
1431 break;
1432
1433 case OHCI1394_evt_missing_ack:
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001434 if (context->flushing)
1435 packet->ack = RCODE_GENERATION;
1436 else {
1437 /*
1438 * Using a valid (current) generation count, but the
1439 * node is not on the bus or not sending acks.
1440 */
1441 packet->ack = RCODE_NO_ACK;
1442 }
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001443 break;
1444
1445 case ACK_COMPLETE + 0x10:
1446 case ACK_PENDING + 0x10:
1447 case ACK_BUSY_X + 0x10:
1448 case ACK_BUSY_A + 0x10:
1449 case ACK_BUSY_B + 0x10:
1450 case ACK_DATA_ERROR + 0x10:
1451 case ACK_TYPE_ERROR + 0x10:
1452 packet->ack = evt - 0x10;
1453 break;
1454
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001455 case OHCI1394_evt_no_status:
1456 if (context->flushing) {
1457 packet->ack = RCODE_GENERATION;
1458 break;
1459 }
1460 /* fall through */
1461
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001462 default:
1463 packet->ack = RCODE_SEND_ERROR;
1464 break;
1465 }
1466
1467 packet->callback(packet, &ohci->card, packet->ack);
1468
1469 return 1;
1470}
1471
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001472#define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
1473#define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
1474#define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
1475#define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
1476#define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001477
Stefan Richter53dca512008-12-14 21:47:04 +01001478static void handle_local_rom(struct fw_ohci *ohci,
1479 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001480{
1481 struct fw_packet response;
1482 int tcode, length, i;
1483
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001484 tcode = HEADER_GET_TCODE(packet->header[0]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001485 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001486 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001487 else
1488 length = 4;
1489
1490 i = csr - CSR_CONFIG_ROM;
1491 if (i + length > CONFIG_ROM_SIZE) {
1492 fw_fill_response(&response, packet->header,
1493 RCODE_ADDRESS_ERROR, NULL, 0);
1494 } else if (!TCODE_IS_READ_REQUEST(tcode)) {
1495 fw_fill_response(&response, packet->header,
1496 RCODE_TYPE_ERROR, NULL, 0);
1497 } else {
1498 fw_fill_response(&response, packet->header, RCODE_COMPLETE,
1499 (void *) ohci->config_rom + i, length);
1500 }
1501
1502 fw_core_handle_response(&ohci->card, &response);
1503}
1504
Stefan Richter53dca512008-12-14 21:47:04 +01001505static void handle_local_lock(struct fw_ohci *ohci,
1506 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001507{
1508 struct fw_packet response;
Clemens Ladische1393662010-04-12 10:35:44 +02001509 int tcode, length, ext_tcode, sel, try;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001510 __be32 *payload, lock_old;
1511 u32 lock_arg, lock_data;
1512
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001513 tcode = HEADER_GET_TCODE(packet->header[0]);
1514 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001515 payload = packet->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001516 ext_tcode = HEADER_GET_EXTENDED_TCODE(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001517
1518 if (tcode == TCODE_LOCK_REQUEST &&
1519 ext_tcode == EXTCODE_COMPARE_SWAP && length == 8) {
1520 lock_arg = be32_to_cpu(payload[0]);
1521 lock_data = be32_to_cpu(payload[1]);
1522 } else if (tcode == TCODE_READ_QUADLET_REQUEST) {
1523 lock_arg = 0;
1524 lock_data = 0;
1525 } else {
1526 fw_fill_response(&response, packet->header,
1527 RCODE_TYPE_ERROR, NULL, 0);
1528 goto out;
1529 }
1530
1531 sel = (csr - CSR_BUS_MANAGER_ID) / 4;
1532 reg_write(ohci, OHCI1394_CSRData, lock_data);
1533 reg_write(ohci, OHCI1394_CSRCompareData, lock_arg);
1534 reg_write(ohci, OHCI1394_CSRControl, sel);
1535
Clemens Ladische1393662010-04-12 10:35:44 +02001536 for (try = 0; try < 20; try++)
1537 if (reg_read(ohci, OHCI1394_CSRControl) & 0x80000000) {
1538 lock_old = cpu_to_be32(reg_read(ohci,
1539 OHCI1394_CSRData));
1540 fw_fill_response(&response, packet->header,
1541 RCODE_COMPLETE,
1542 &lock_old, sizeof(lock_old));
1543 goto out;
1544 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001545
Clemens Ladische1393662010-04-12 10:35:44 +02001546 fw_error("swap not done (CSR lock timeout)\n");
1547 fw_fill_response(&response, packet->header, RCODE_BUSY, NULL, 0);
1548
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001549 out:
1550 fw_core_handle_response(&ohci->card, &response);
1551}
1552
Stefan Richter53dca512008-12-14 21:47:04 +01001553static void handle_local_request(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001554{
Clemens Ladisch26082032010-04-12 10:35:30 +02001555 u64 offset, csr;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001556
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001557 if (ctx == &ctx->ohci->at_request_ctx) {
1558 packet->ack = ACK_PENDING;
1559 packet->callback(packet, &ctx->ohci->card, packet->ack);
1560 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001561
1562 offset =
1563 ((unsigned long long)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001564 HEADER_GET_OFFSET_HIGH(packet->header[1]) << 32) |
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001565 packet->header[2];
1566 csr = offset - CSR_REGISTER_BASE;
1567
1568 /* Handle config rom reads. */
1569 if (csr >= CSR_CONFIG_ROM && csr < CSR_CONFIG_ROM_END)
1570 handle_local_rom(ctx->ohci, packet, csr);
1571 else switch (csr) {
1572 case CSR_BUS_MANAGER_ID:
1573 case CSR_BANDWIDTH_AVAILABLE:
1574 case CSR_CHANNELS_AVAILABLE_HI:
1575 case CSR_CHANNELS_AVAILABLE_LO:
1576 handle_local_lock(ctx->ohci, packet, csr);
1577 break;
1578 default:
1579 if (ctx == &ctx->ohci->at_request_ctx)
1580 fw_core_handle_request(&ctx->ohci->card, packet);
1581 else
1582 fw_core_handle_response(&ctx->ohci->card, packet);
1583 break;
1584 }
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001585
1586 if (ctx == &ctx->ohci->at_response_ctx) {
1587 packet->ack = ACK_COMPLETE;
1588 packet->callback(packet, &ctx->ohci->card, packet->ack);
1589 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001590}
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001591
Stefan Richter53dca512008-12-14 21:47:04 +01001592static void at_context_transmit(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberged568912006-12-19 19:58:35 -05001593{
Kristian Høgsberged568912006-12-19 19:58:35 -05001594 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001595 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05001596
1597 spin_lock_irqsave(&ctx->ohci->lock, flags);
1598
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001599 if (HEADER_GET_DESTINATION(packet->header[0]) == ctx->ohci->node_id &&
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001600 ctx->ohci->generation == packet->generation) {
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001601 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1602 handle_local_request(ctx, packet);
1603 return;
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001604 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001605
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001606 ret = at_context_queue_packet(ctx, packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001607 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1608
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001609 if (ret < 0)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001610 packet->callback(packet, &ctx->ohci->card, packet->ack);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001611
Kristian Høgsberged568912006-12-19 19:58:35 -05001612}
1613
Clemens Ladischf117a3e2011-01-10 17:21:35 +01001614static void detect_dead_context(struct fw_ohci *ohci,
1615 const char *name, unsigned int regs)
1616{
1617 u32 ctl;
1618
1619 ctl = reg_read(ohci, CONTROL_SET(regs));
1620 if (ctl & CONTEXT_DEAD) {
1621#ifdef CONFIG_FIREWIRE_OHCI_DEBUG
1622 fw_error("DMA context %s has stopped, error code: %s\n",
1623 name, evts[ctl & 0x1f]);
1624#else
1625 fw_error("DMA context %s has stopped, error code: %#x\n",
1626 name, ctl & 0x1f);
1627#endif
1628 }
1629}
1630
1631static void handle_dead_contexts(struct fw_ohci *ohci)
1632{
1633 unsigned int i;
1634 char name[8];
1635
1636 detect_dead_context(ohci, "ATReq", OHCI1394_AsReqTrContextBase);
1637 detect_dead_context(ohci, "ATRsp", OHCI1394_AsRspTrContextBase);
1638 detect_dead_context(ohci, "ARReq", OHCI1394_AsReqRcvContextBase);
1639 detect_dead_context(ohci, "ARRsp", OHCI1394_AsRspRcvContextBase);
1640 for (i = 0; i < 32; ++i) {
1641 if (!(ohci->it_context_support & (1 << i)))
1642 continue;
1643 sprintf(name, "IT%u", i);
1644 detect_dead_context(ohci, name, OHCI1394_IsoXmitContextBase(i));
1645 }
1646 for (i = 0; i < 32; ++i) {
1647 if (!(ohci->ir_context_support & (1 << i)))
1648 continue;
1649 sprintf(name, "IR%u", i);
1650 detect_dead_context(ohci, name, OHCI1394_IsoRcvContextBase(i));
1651 }
1652 /* TODO: maybe try to flush and restart the dead contexts */
1653}
1654
Clemens Ladischa48777e2010-06-10 08:33:07 +02001655static u32 cycle_timer_ticks(u32 cycle_timer)
1656{
1657 u32 ticks;
1658
1659 ticks = cycle_timer & 0xfff;
1660 ticks += 3072 * ((cycle_timer >> 12) & 0x1fff);
1661 ticks += (3072 * 8000) * (cycle_timer >> 25);
1662
1663 return ticks;
1664}
1665
1666/*
1667 * Some controllers exhibit one or more of the following bugs when updating the
1668 * iso cycle timer register:
1669 * - When the lowest six bits are wrapping around to zero, a read that happens
1670 * at the same time will return garbage in the lowest ten bits.
1671 * - When the cycleOffset field wraps around to zero, the cycleCount field is
1672 * not incremented for about 60 ns.
1673 * - Occasionally, the entire register reads zero.
1674 *
1675 * To catch these, we read the register three times and ensure that the
1676 * difference between each two consecutive reads is approximately the same, i.e.
1677 * less than twice the other. Furthermore, any negative difference indicates an
1678 * error. (A PCI read should take at least 20 ticks of the 24.576 MHz timer to
1679 * execute, so we have enough precision to compute the ratio of the differences.)
1680 */
1681static u32 get_cycle_time(struct fw_ohci *ohci)
1682{
1683 u32 c0, c1, c2;
1684 u32 t0, t1, t2;
1685 s32 diff01, diff12;
1686 int i;
1687
1688 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1689
1690 if (ohci->quirks & QUIRK_CYCLE_TIMER) {
1691 i = 0;
1692 c1 = c2;
1693 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1694 do {
1695 c0 = c1;
1696 c1 = c2;
1697 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1698 t0 = cycle_timer_ticks(c0);
1699 t1 = cycle_timer_ticks(c1);
1700 t2 = cycle_timer_ticks(c2);
1701 diff01 = t1 - t0;
1702 diff12 = t2 - t1;
1703 } while ((diff01 <= 0 || diff12 <= 0 ||
1704 diff01 / diff12 >= 2 || diff12 / diff01 >= 2)
1705 && i++ < 20);
1706 }
1707
1708 return c2;
1709}
1710
1711/*
1712 * This function has to be called at least every 64 seconds. The bus_time
1713 * field stores not only the upper 25 bits of the BUS_TIME register but also
1714 * the most significant bit of the cycle timer in bit 6 so that we can detect
1715 * changes in this bit.
1716 */
1717static u32 update_bus_time(struct fw_ohci *ohci)
1718{
1719 u32 cycle_time_seconds = get_cycle_time(ohci) >> 25;
1720
1721 if ((ohci->bus_time & 0x40) != (cycle_time_seconds & 0x40))
1722 ohci->bus_time += 0x40;
1723
1724 return ohci->bus_time | cycle_time_seconds;
1725}
1726
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001727static int get_status_for_port(struct fw_ohci *ohci, int port_index)
1728{
1729 int reg;
1730
1731 mutex_lock(&ohci->phy_reg_mutex);
1732 reg = write_phy_reg(ohci, 7, port_index);
Stefan Richter28897fb2011-09-19 00:17:37 +02001733 if (reg >= 0)
1734 reg = read_phy_reg(ohci, 8);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001735 mutex_unlock(&ohci->phy_reg_mutex);
1736 if (reg < 0)
1737 return reg;
1738
1739 switch (reg & 0x0f) {
1740 case 0x06:
1741 return 2; /* is child node (connected to parent node) */
1742 case 0x0e:
1743 return 3; /* is parent node (connected to child node) */
1744 }
1745 return 1; /* not connected */
1746}
1747
1748static int get_self_id_pos(struct fw_ohci *ohci, u32 self_id,
1749 int self_id_count)
1750{
1751 int i;
1752 u32 entry;
Stefan Richter28897fb2011-09-19 00:17:37 +02001753
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001754 for (i = 0; i < self_id_count; i++) {
1755 entry = ohci->self_id_buffer[i];
1756 if ((self_id & 0xff000000) == (entry & 0xff000000))
1757 return -1;
1758 if ((self_id & 0xff000000) < (entry & 0xff000000))
1759 return i;
1760 }
1761 return i;
1762}
1763
1764/*
Stefan Richter28897fb2011-09-19 00:17:37 +02001765 * TI TSB82AA2B and TSB12LV26 do not receive the selfID of a locally
1766 * attached TSB41BA3D phy; see http://www.ti.com/litv/pdf/sllz059.
1767 * Construct the selfID from phy register contents.
1768 * FIXME: How to determine the selfID.i flag?
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001769 */
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001770static int find_and_insert_self_id(struct fw_ohci *ohci, int self_id_count)
1771{
Stefan Richter28897fb2011-09-19 00:17:37 +02001772 int reg, i, pos, status;
1773 /* link active 1, speed 3, bridge 0, contender 1, more packets 0 */
1774 u32 self_id = 0x8040c800;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001775
1776 reg = reg_read(ohci, OHCI1394_NodeID);
1777 if (!(reg & OHCI1394_NodeID_idValid)) {
1778 fw_notify("node ID not valid, new bus reset in progress\n");
1779 return -EBUSY;
1780 }
1781 self_id |= ((reg & 0x3f) << 24); /* phy ID */
1782
Stefan Richter28897fb2011-09-19 00:17:37 +02001783 reg = ohci_read_phy_reg(&ohci->card, 4);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001784 if (reg < 0)
1785 return reg;
1786 self_id |= ((reg & 0x07) << 8); /* power class */
1787
Stefan Richter28897fb2011-09-19 00:17:37 +02001788 reg = ohci_read_phy_reg(&ohci->card, 1);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001789 if (reg < 0)
1790 return reg;
1791 self_id |= ((reg & 0x3f) << 16); /* gap count */
1792
1793 for (i = 0; i < 3; i++) {
1794 status = get_status_for_port(ohci, i);
1795 if (status < 0)
1796 return status;
1797 self_id |= ((status & 0x3) << (6 - (i * 2)));
1798 }
1799
1800 pos = get_self_id_pos(ohci, self_id, self_id_count);
1801 if (pos >= 0) {
1802 memmove(&(ohci->self_id_buffer[pos+1]),
1803 &(ohci->self_id_buffer[pos]),
1804 (self_id_count - pos) * sizeof(*ohci->self_id_buffer));
1805 ohci->self_id_buffer[pos] = self_id;
1806 self_id_count++;
1807 }
1808 return self_id_count;
1809}
1810
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02001811static void bus_reset_work(struct work_struct *work)
Kristian Høgsberged568912006-12-19 19:58:35 -05001812{
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02001813 struct fw_ohci *ohci =
1814 container_of(work, struct fw_ohci, bus_reset_work);
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001815 int self_id_count, i, j, reg;
Kristian Høgsberged568912006-12-19 19:58:35 -05001816 int generation, new_generation;
1817 unsigned long flags;
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001818 void *free_rom = NULL;
1819 dma_addr_t free_rom_bus = 0;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001820 bool is_new_root;
Kristian Høgsberged568912006-12-19 19:58:35 -05001821
1822 reg = reg_read(ohci, OHCI1394_NodeID);
1823 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter02ff8f82007-08-30 00:11:40 +02001824 fw_notify("node ID not valid, new bus reset in progress\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05001825 return;
1826 }
Stefan Richter02ff8f82007-08-30 00:11:40 +02001827 if ((reg & OHCI1394_NodeID_nodeNumber) == 63) {
1828 fw_notify("malconfigured bus\n");
1829 return;
1830 }
1831 ohci->node_id = reg & (OHCI1394_NodeID_busNumber |
1832 OHCI1394_NodeID_nodeNumber);
Kristian Høgsberged568912006-12-19 19:58:35 -05001833
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001834 is_new_root = (reg & OHCI1394_NodeID_root) != 0;
1835 if (!(ohci->is_root && is_new_root))
1836 reg_write(ohci, OHCI1394_LinkControlSet,
1837 OHCI1394_LinkControl_cycleMaster);
1838 ohci->is_root = is_new_root;
1839
Stefan Richterc8a9a492008-03-19 21:40:32 +01001840 reg = reg_read(ohci, OHCI1394_SelfIDCount);
1841 if (reg & OHCI1394_SelfIDCount_selfIDError) {
1842 fw_notify("inconsistent self IDs\n");
1843 return;
1844 }
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001845 /*
1846 * The count in the SelfIDCount register is the number of
Kristian Høgsberged568912006-12-19 19:58:35 -05001847 * bytes in the self ID receive buffer. Since we also receive
1848 * the inverted quadlets and a header quadlet, we shift one
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001849 * bit extra to get the actual number of self IDs.
1850 */
Stefan Richter928ec5f2009-09-06 18:49:17 +02001851 self_id_count = (reg >> 3) & 0xff;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001852
1853 if (self_id_count > 252) {
Stefan Richter016bf3d2008-03-19 22:05:02 +01001854 fw_notify("inconsistent self IDs\n");
1855 return;
1856 }
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001857
Stefan Richter11bf20a2008-03-01 02:47:15 +01001858 generation = (cond_le32_to_cpu(ohci->self_id_cpu[0]) >> 16) & 0xff;
Stefan Richteree71c2f2007-08-25 14:08:19 +02001859 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001860
1861 for (i = 1, j = 0; j < self_id_count; i += 2, j++) {
Stefan Richterc8a9a492008-03-19 21:40:32 +01001862 if (ohci->self_id_cpu[i] != ~ohci->self_id_cpu[i + 1]) {
1863 fw_notify("inconsistent self IDs\n");
1864 return;
1865 }
Stefan Richter11bf20a2008-03-01 02:47:15 +01001866 ohci->self_id_buffer[j] =
1867 cond_le32_to_cpu(ohci->self_id_cpu[i]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001868 }
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001869
1870 if (ohci->quirks & QUIRK_TI_SLLZ059) {
1871 self_id_count = find_and_insert_self_id(ohci, self_id_count);
1872 if (self_id_count < 0) {
Stefan Richter28897fb2011-09-19 00:17:37 +02001873 fw_notify("could not construct local self ID\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001874 return;
1875 }
1876 }
1877
1878 if (self_id_count == 0) {
1879 fw_notify("inconsistent self IDs\n");
1880 return;
1881 }
Stefan Richteree71c2f2007-08-25 14:08:19 +02001882 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001883
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001884 /*
1885 * Check the consistency of the self IDs we just read. The
Kristian Høgsberged568912006-12-19 19:58:35 -05001886 * problem we face is that a new bus reset can start while we
1887 * read out the self IDs from the DMA buffer. If this happens,
1888 * the DMA buffer will be overwritten with new self IDs and we
1889 * will read out inconsistent data. The OHCI specification
1890 * (section 11.2) recommends a technique similar to
1891 * linux/seqlock.h, where we remember the generation of the
1892 * self IDs in the buffer before reading them out and compare
1893 * it to the current generation after reading them out. If
1894 * the two generations match we know we have a consistent set
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001895 * of self IDs.
1896 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001897
1898 new_generation = (reg_read(ohci, OHCI1394_SelfIDCount) >> 16) & 0xff;
1899 if (new_generation != generation) {
1900 fw_notify("recursive bus reset detected, "
1901 "discarding self ids\n");
1902 return;
1903 }
1904
1905 /* FIXME: Document how the locking works. */
1906 spin_lock_irqsave(&ohci->lock, flags);
1907
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001908 ohci->generation = -1; /* prevent AT packet queueing */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001909 context_stop(&ohci->at_request_ctx);
1910 context_stop(&ohci->at_response_ctx);
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001911
1912 spin_unlock_irqrestore(&ohci->lock, flags);
1913
Stefan Richter78dec562011-01-01 15:15:40 +01001914 /*
1915 * Per OHCI 1.2 draft, clause 7.2.3.3, hardware may leave unsent
1916 * packets in the AT queues and software needs to drain them.
1917 * Some OHCI 1.1 controllers (JMicron) apparently require this too.
1918 */
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001919 at_context_flush(&ohci->at_request_ctx);
1920 at_context_flush(&ohci->at_response_ctx);
1921
1922 spin_lock_irqsave(&ohci->lock, flags);
1923
1924 ohci->generation = generation;
Kristian Høgsberged568912006-12-19 19:58:35 -05001925 reg_write(ohci, OHCI1394_IntEventClear, OHCI1394_busReset);
1926
Stefan Richter4a635592010-02-21 17:58:01 +01001927 if (ohci->quirks & QUIRK_RESET_PACKET)
Stefan Richterd34316a2008-04-12 22:31:25 +02001928 ohci->request_generation = generation;
1929
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001930 /*
1931 * This next bit is unrelated to the AT context stuff but we
Kristian Høgsberged568912006-12-19 19:58:35 -05001932 * have to do it under the spinlock also. If a new config rom
1933 * was set up before this reset, the old one is now no longer
1934 * in use and we can free it. Update the config rom pointers
1935 * to point to the current config rom and clear the
Thomas Weber88393162010-03-16 11:47:56 +01001936 * next_config_rom pointer so a new update can take place.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001937 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001938
1939 if (ohci->next_config_rom != NULL) {
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001940 if (ohci->next_config_rom != ohci->config_rom) {
1941 free_rom = ohci->config_rom;
1942 free_rom_bus = ohci->config_rom_bus;
1943 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001944 ohci->config_rom = ohci->next_config_rom;
1945 ohci->config_rom_bus = ohci->next_config_rom_bus;
1946 ohci->next_config_rom = NULL;
1947
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001948 /*
1949 * Restore config_rom image and manually update
Kristian Høgsberged568912006-12-19 19:58:35 -05001950 * config_rom registers. Writing the header quadlet
1951 * will indicate that the config rom is ready, so we
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001952 * do that last.
1953 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001954 reg_write(ohci, OHCI1394_BusOptions,
1955 be32_to_cpu(ohci->config_rom[2]));
Stefan Richter8e859732009-10-08 00:41:59 +02001956 ohci->config_rom[0] = ohci->next_header;
1957 reg_write(ohci, OHCI1394_ConfigROMhdr,
1958 be32_to_cpu(ohci->next_header));
Kristian Høgsberged568912006-12-19 19:58:35 -05001959 }
1960
Stefan Richter080de8c2008-02-28 20:54:43 +01001961#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
1962 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, ~0);
1963 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, ~0);
1964#endif
1965
Kristian Høgsberged568912006-12-19 19:58:35 -05001966 spin_unlock_irqrestore(&ohci->lock, flags);
1967
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001968 if (free_rom)
1969 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1970 free_rom, free_rom_bus);
1971
Stefan Richter08ddb2f2008-04-11 00:51:15 +02001972 log_selfids(ohci->node_id, generation,
1973 self_id_count, ohci->self_id_buffer);
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001974
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001975 fw_core_handle_bus_reset(&ohci->card, ohci->node_id, generation,
Stefan Richterc8a94de2010-06-12 20:34:50 +02001976 self_id_count, ohci->self_id_buffer,
1977 ohci->csr_state_setclear_abdicate);
1978 ohci->csr_state_setclear_abdicate = false;
Kristian Høgsberged568912006-12-19 19:58:35 -05001979}
1980
1981static irqreturn_t irq_handler(int irq, void *data)
1982{
1983 struct fw_ohci *ohci = data;
Stefan Richter168cf9a2010-02-14 18:49:18 +01001984 u32 event, iso_event;
Kristian Høgsberged568912006-12-19 19:58:35 -05001985 int i;
1986
1987 event = reg_read(ohci, OHCI1394_IntEventClear);
1988
Stefan Richtera5159582007-06-09 19:31:14 +02001989 if (!event || !~event)
Kristian Høgsberged568912006-12-19 19:58:35 -05001990 return IRQ_NONE;
1991
Clemens Ladisch8327b372010-11-30 08:24:32 +01001992 /*
1993 * busReset and postedWriteErr must not be cleared yet
1994 * (OHCI 1.1 clauses 7.2.3.2 and 13.2.8.1)
1995 */
1996 reg_write(ohci, OHCI1394_IntEventClear,
1997 event & ~(OHCI1394_busReset | OHCI1394_postedWriteErr));
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001998 log_irqs(event);
Kristian Høgsberged568912006-12-19 19:58:35 -05001999
2000 if (event & OHCI1394_selfIDComplete)
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02002001 queue_work(fw_workqueue, &ohci->bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05002002
2003 if (event & OHCI1394_RQPkt)
2004 tasklet_schedule(&ohci->ar_request_ctx.tasklet);
2005
2006 if (event & OHCI1394_RSPkt)
2007 tasklet_schedule(&ohci->ar_response_ctx.tasklet);
2008
2009 if (event & OHCI1394_reqTxComplete)
2010 tasklet_schedule(&ohci->at_request_ctx.tasklet);
2011
2012 if (event & OHCI1394_respTxComplete)
2013 tasklet_schedule(&ohci->at_response_ctx.tasklet);
2014
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002015 if (event & OHCI1394_isochRx) {
2016 iso_event = reg_read(ohci, OHCI1394_IsoRecvIntEventClear);
2017 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, iso_event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002018
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002019 while (iso_event) {
2020 i = ffs(iso_event) - 1;
2021 tasklet_schedule(
2022 &ohci->ir_context_list[i].context.tasklet);
2023 iso_event &= ~(1 << i);
2024 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002025 }
2026
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002027 if (event & OHCI1394_isochTx) {
2028 iso_event = reg_read(ohci, OHCI1394_IsoXmitIntEventClear);
2029 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, iso_event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002030
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002031 while (iso_event) {
2032 i = ffs(iso_event) - 1;
2033 tasklet_schedule(
2034 &ohci->it_context_list[i].context.tasklet);
2035 iso_event &= ~(1 << i);
2036 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002037 }
2038
Jarod Wilson75f78322008-04-03 17:18:23 -04002039 if (unlikely(event & OHCI1394_regAccessFail))
2040 fw_error("Register access failure - "
2041 "please notify linux1394-devel@lists.sf.net\n");
2042
Clemens Ladisch8327b372010-11-30 08:24:32 +01002043 if (unlikely(event & OHCI1394_postedWriteErr)) {
2044 reg_read(ohci, OHCI1394_PostedWriteAddressHi);
2045 reg_read(ohci, OHCI1394_PostedWriteAddressLo);
2046 reg_write(ohci, OHCI1394_IntEventClear,
2047 OHCI1394_postedWriteErr);
Stefan Richtere524f6162007-08-20 21:58:30 +02002048 fw_error("PCI posted write error\n");
Clemens Ladisch8327b372010-11-30 08:24:32 +01002049 }
Stefan Richtere524f6162007-08-20 21:58:30 +02002050
Stefan Richterbb9f2202007-12-22 22:14:52 +01002051 if (unlikely(event & OHCI1394_cycleTooLong)) {
2052 if (printk_ratelimit())
2053 fw_notify("isochronous cycle too long\n");
2054 reg_write(ohci, OHCI1394_LinkControlSet,
2055 OHCI1394_LinkControl_cycleMaster);
2056 }
2057
Jay Fenlason5ed1f322009-11-17 12:29:17 -05002058 if (unlikely(event & OHCI1394_cycleInconsistent)) {
2059 /*
2060 * We need to clear this event bit in order to make
2061 * cycleMatch isochronous I/O work. In theory we should
2062 * stop active cycleMatch iso contexts now and restart
2063 * them at least two cycles later. (FIXME?)
2064 */
2065 if (printk_ratelimit())
2066 fw_notify("isochronous cycle inconsistent\n");
2067 }
2068
Clemens Ladischf117a3e2011-01-10 17:21:35 +01002069 if (unlikely(event & OHCI1394_unrecoverableError))
2070 handle_dead_contexts(ohci);
2071
Clemens Ladischa48777e2010-06-10 08:33:07 +02002072 if (event & OHCI1394_cycle64Seconds) {
2073 spin_lock(&ohci->lock);
2074 update_bus_time(ohci);
2075 spin_unlock(&ohci->lock);
Clemens Ladische597e982010-11-30 08:24:19 +01002076 } else
2077 flush_writes(ohci);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002078
Kristian Høgsberged568912006-12-19 19:58:35 -05002079 return IRQ_HANDLED;
2080}
2081
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002082static int software_reset(struct fw_ohci *ohci)
2083{
Stefan Richter9f426172011-07-03 17:39:26 +02002084 u32 val;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002085 int i;
2086
2087 reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset);
Stefan Richter9f426172011-07-03 17:39:26 +02002088 for (i = 0; i < 500; i++) {
2089 val = reg_read(ohci, OHCI1394_HCControlSet);
2090 if (!~val)
2091 return -ENODEV; /* Card was ejected. */
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002092
Stefan Richter9f426172011-07-03 17:39:26 +02002093 if (!(val & OHCI1394_HCControl_softReset))
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002094 return 0;
Stefan Richter9f426172011-07-03 17:39:26 +02002095
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002096 msleep(1);
2097 }
2098
2099 return -EBUSY;
2100}
2101
Stefan Richter8e859732009-10-08 00:41:59 +02002102static void copy_config_rom(__be32 *dest, const __be32 *src, size_t length)
2103{
2104 size_t size = length * 4;
2105
2106 memcpy(dest, src, size);
2107 if (size < CONFIG_ROM_SIZE)
2108 memset(&dest[length], 0, CONFIG_ROM_SIZE - size);
2109}
2110
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002111static int configure_1394a_enhancements(struct fw_ohci *ohci)
2112{
2113 bool enable_1394a;
Stefan Richter35d999b2010-04-10 16:04:56 +02002114 int ret, clear, set, offset;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002115
2116 /* Check if the driver should configure link and PHY. */
2117 if (!(reg_read(ohci, OHCI1394_HCControlSet) &
2118 OHCI1394_HCControl_programPhyEnable))
2119 return 0;
2120
2121 /* Paranoia: check whether the PHY supports 1394a, too. */
2122 enable_1394a = false;
Stefan Richter35d999b2010-04-10 16:04:56 +02002123 ret = read_phy_reg(ohci, 2);
2124 if (ret < 0)
2125 return ret;
2126 if ((ret & PHY_EXTENDED_REGISTERS) == PHY_EXTENDED_REGISTERS) {
2127 ret = read_paged_phy_reg(ohci, 1, 8);
2128 if (ret < 0)
2129 return ret;
2130 if (ret >= 1)
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002131 enable_1394a = true;
2132 }
2133
2134 if (ohci->quirks & QUIRK_NO_1394A)
2135 enable_1394a = false;
2136
2137 /* Configure PHY and link consistently. */
2138 if (enable_1394a) {
2139 clear = 0;
2140 set = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
2141 } else {
2142 clear = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
2143 set = 0;
2144 }
Stefan Richter02d37be2010-07-08 16:09:06 +02002145 ret = update_phy_reg(ohci, 5, clear, set);
Stefan Richter35d999b2010-04-10 16:04:56 +02002146 if (ret < 0)
2147 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002148
2149 if (enable_1394a)
2150 offset = OHCI1394_HCControlSet;
2151 else
2152 offset = OHCI1394_HCControlClear;
2153 reg_write(ohci, offset, OHCI1394_HCControl_aPhyEnhanceEnable);
2154
2155 /* Clean up: configuration has been taken care of. */
2156 reg_write(ohci, OHCI1394_HCControlClear,
2157 OHCI1394_HCControl_programPhyEnable);
2158
2159 return 0;
2160}
2161
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002162#define TSB41BA3D_VID 0x00080028
2163#define TSB41BA3D_PID 0x00833005
2164
2165static int probe_tsb41ba3d(struct fw_ohci *ohci)
2166{
Stefan Richter28897fb2011-09-19 00:17:37 +02002167 int reg, i, vendor_id, product_id;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002168
2169 reg = read_phy_reg(ohci, 2);
2170 if (reg < 0)
2171 return reg;
2172
2173 if ((reg & PHY_EXTENDED_REGISTERS) == PHY_EXTENDED_REGISTERS) {
2174 vendor_id = 0;
2175 for (i = 10; i < 13; i++) {
2176 reg = read_paged_phy_reg(ohci, 1, i);
2177 if (reg < 0)
2178 return reg;
2179 vendor_id = (vendor_id << 8) | reg;
2180 }
2181 product_id = 0;
2182 for (i = 13; i < 16; i++) {
2183 reg = read_paged_phy_reg(ohci, 1, i);
2184 if (reg < 0)
2185 return reg;
2186 product_id = (product_id << 8) | reg;
2187 }
2188
2189 if ((vendor_id == TSB41BA3D_VID) &&
Stefan Richter28897fb2011-09-19 00:17:37 +02002190 (product_id == TSB41BA3D_PID))
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002191 return 1;
2192 }
2193 return 0;
2194}
2195
Stefan Richter8e859732009-10-08 00:41:59 +02002196static int ohci_enable(struct fw_card *card,
2197 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05002198{
2199 struct fw_ohci *ohci = fw_ohci(card);
2200 struct pci_dev *dev = to_pci_dev(card->device);
Clemens Ladische91b2782010-06-10 08:40:49 +02002201 u32 lps, seconds, version, irqs;
Stefan Richter28897fb2011-09-19 00:17:37 +02002202 int i, ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05002203
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002204 if (software_reset(ohci)) {
2205 fw_error("Failed to reset ohci card.\n");
2206 return -EBUSY;
2207 }
2208
2209 /*
2210 * Now enable LPS, which we need in order to start accessing
2211 * most of the registers. In fact, on some cards (ALI M5251),
2212 * accessing registers in the SClk domain without LPS enabled
2213 * will lock up the machine. Wait 50msec to make sure we have
Jarod Wilson02214722008-03-28 10:02:50 -04002214 * full link enabled. However, with some cards (well, at least
2215 * a JMicron PCIe card), we have to try again sometimes.
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002216 */
2217 reg_write(ohci, OHCI1394_HCControlSet,
2218 OHCI1394_HCControl_LPS |
2219 OHCI1394_HCControl_postedWriteEnable);
2220 flush_writes(ohci);
Jarod Wilson02214722008-03-28 10:02:50 -04002221
2222 for (lps = 0, i = 0; !lps && i < 3; i++) {
2223 msleep(50);
2224 lps = reg_read(ohci, OHCI1394_HCControlSet) &
2225 OHCI1394_HCControl_LPS;
2226 }
2227
2228 if (!lps) {
2229 fw_error("Failed to set Link Power Status\n");
2230 return -EIO;
2231 }
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002232
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002233 if (ohci->quirks & QUIRK_TI_SLLZ059) {
Stefan Richter28897fb2011-09-19 00:17:37 +02002234 ret = probe_tsb41ba3d(ohci);
2235 if (ret < 0)
2236 return ret;
2237 if (ret)
2238 fw_notify("local TSB41BA3D phy\n");
2239 else
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002240 ohci->quirks &= ~QUIRK_TI_SLLZ059;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002241 }
2242
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002243 reg_write(ohci, OHCI1394_HCControlClear,
2244 OHCI1394_HCControl_noByteSwapData);
2245
Stefan Richteraffc9c22008-06-05 20:50:53 +02002246 reg_write(ohci, OHCI1394_SelfIDBuffer, ohci->self_id_bus);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002247 reg_write(ohci, OHCI1394_LinkControlSet,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002248 OHCI1394_LinkControl_cycleTimerEnable |
2249 OHCI1394_LinkControl_cycleMaster);
2250
2251 reg_write(ohci, OHCI1394_ATRetries,
2252 OHCI1394_MAX_AT_REQ_RETRIES |
2253 (OHCI1394_MAX_AT_RESP_RETRIES << 4) |
Clemens Ladisch27a23292010-06-10 08:34:13 +02002254 (OHCI1394_MAX_PHYS_RESP_RETRIES << 8) |
2255 (200 << 16));
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002256
Clemens Ladischa48777e2010-06-10 08:33:07 +02002257 seconds = lower_32_bits(get_seconds());
2258 reg_write(ohci, OHCI1394_IsochronousCycleTimer, seconds << 25);
2259 ohci->bus_time = seconds & ~0x3f;
2260
Clemens Ladische91b2782010-06-10 08:40:49 +02002261 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
2262 if (version >= OHCI_VERSION_1_1) {
2263 reg_write(ohci, OHCI1394_InitialChannelsAvailableHi,
2264 0xfffffffe);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02002265 card->broadcast_channel_auto_allocated = true;
Clemens Ladische91b2782010-06-10 08:40:49 +02002266 }
2267
Clemens Ladischa1a11322010-06-10 08:35:06 +02002268 /* Get implemented bits of the priority arbitration request counter. */
2269 reg_write(ohci, OHCI1394_FairnessControl, 0x3f);
2270 ohci->pri_req_max = reg_read(ohci, OHCI1394_FairnessControl) & 0x3f;
2271 reg_write(ohci, OHCI1394_FairnessControl, 0);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02002272 card->priority_budget_implemented = ohci->pri_req_max != 0;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002273
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002274 reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000);
2275 reg_write(ohci, OHCI1394_IntEventClear, ~0);
2276 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002277
Stefan Richter35d999b2010-04-10 16:04:56 +02002278 ret = configure_1394a_enhancements(ohci);
2279 if (ret < 0)
2280 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002281
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002282 /* Activate link_on bit and contender bit in our self ID packets.*/
Stefan Richter35d999b2010-04-10 16:04:56 +02002283 ret = ohci_update_phy_reg(card, 4, 0, PHY_LINK_ACTIVE | PHY_CONTENDER);
2284 if (ret < 0)
2285 return ret;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002286
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002287 /*
2288 * When the link is not yet enabled, the atomic config rom
Kristian Høgsberged568912006-12-19 19:58:35 -05002289 * update mechanism described below in ohci_set_config_rom()
2290 * is not active. We have to update ConfigRomHeader and
2291 * BusOptions manually, and the write to ConfigROMmap takes
2292 * effect immediately. We tie this to the enabling of the
2293 * link, so we have a valid config rom before enabling - the
2294 * OHCI requires that ConfigROMhdr and BusOptions have valid
2295 * values before enabling.
2296 *
2297 * However, when the ConfigROMmap is written, some controllers
2298 * always read back quadlets 0 and 2 from the config rom to
2299 * the ConfigRomHeader and BusOptions registers on bus reset.
2300 * They shouldn't do that in this initial case where the link
2301 * isn't enabled. This means we have to use the same
2302 * workaround here, setting the bus header to 0 and then write
2303 * the right values in the bus reset tasklet.
2304 */
2305
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002306 if (config_rom) {
2307 ohci->next_config_rom =
2308 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2309 &ohci->next_config_rom_bus,
2310 GFP_KERNEL);
2311 if (ohci->next_config_rom == NULL)
2312 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05002313
Stefan Richter8e859732009-10-08 00:41:59 +02002314 copy_config_rom(ohci->next_config_rom, config_rom, length);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002315 } else {
2316 /*
2317 * In the suspend case, config_rom is NULL, which
2318 * means that we just reuse the old config rom.
2319 */
2320 ohci->next_config_rom = ohci->config_rom;
2321 ohci->next_config_rom_bus = ohci->config_rom_bus;
2322 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002323
Stefan Richter8e859732009-10-08 00:41:59 +02002324 ohci->next_header = ohci->next_config_rom[0];
Kristian Høgsberged568912006-12-19 19:58:35 -05002325 ohci->next_config_rom[0] = 0;
2326 reg_write(ohci, OHCI1394_ConfigROMhdr, 0);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002327 reg_write(ohci, OHCI1394_BusOptions,
2328 be32_to_cpu(ohci->next_config_rom[2]));
Kristian Høgsberged568912006-12-19 19:58:35 -05002329 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
2330
2331 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
2332
Clemens Ladisch262444e2010-06-05 12:31:25 +02002333 if (!(ohci->quirks & QUIRK_NO_MSI))
2334 pci_enable_msi(dev);
Kristian Høgsberged568912006-12-19 19:58:35 -05002335 if (request_irq(dev->irq, irq_handler,
Clemens Ladisch262444e2010-06-05 12:31:25 +02002336 pci_dev_msi_enabled(dev) ? 0 : IRQF_SHARED,
2337 ohci_driver_name, ohci)) {
2338 fw_error("Failed to allocate interrupt %d.\n", dev->irq);
2339 pci_disable_msi(dev);
Stefan Richtera01e8362011-08-11 20:40:42 +02002340
2341 if (config_rom) {
2342 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2343 ohci->next_config_rom,
2344 ohci->next_config_rom_bus);
2345 ohci->next_config_rom = NULL;
2346 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002347 return -EIO;
2348 }
2349
Stefan Richter148c7862010-06-05 11:46:49 +02002350 irqs = OHCI1394_reqTxComplete | OHCI1394_respTxComplete |
2351 OHCI1394_RQPkt | OHCI1394_RSPkt |
2352 OHCI1394_isochTx | OHCI1394_isochRx |
2353 OHCI1394_postedWriteErr |
2354 OHCI1394_selfIDComplete |
2355 OHCI1394_regAccessFail |
Clemens Ladischa48777e2010-06-10 08:33:07 +02002356 OHCI1394_cycle64Seconds |
Clemens Ladischf117a3e2011-01-10 17:21:35 +01002357 OHCI1394_cycleInconsistent |
2358 OHCI1394_unrecoverableError |
2359 OHCI1394_cycleTooLong |
Stefan Richter148c7862010-06-05 11:46:49 +02002360 OHCI1394_masterIntEnable;
2361 if (param_debug & OHCI_PARAM_DEBUG_BUSRESETS)
2362 irqs |= OHCI1394_busReset;
2363 reg_write(ohci, OHCI1394_IntMaskSet, irqs);
2364
Kristian Høgsberged568912006-12-19 19:58:35 -05002365 reg_write(ohci, OHCI1394_HCControlSet,
2366 OHCI1394_HCControl_linkEnable |
2367 OHCI1394_HCControl_BIBimageValid);
Clemens Ladischecf83282011-04-11 09:56:12 +02002368
2369 reg_write(ohci, OHCI1394_LinkControlSet,
2370 OHCI1394_LinkControl_rcvSelfID |
2371 OHCI1394_LinkControl_rcvPhyPkt);
2372
2373 ar_context_run(&ohci->ar_request_ctx);
Clemens Ladischdd6254e2011-05-16 08:10:10 +02002374 ar_context_run(&ohci->ar_response_ctx);
2375
2376 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002377
Stefan Richter02d37be2010-07-08 16:09:06 +02002378 /* We are ready to go, reset bus to finish initialization. */
2379 fw_schedule_bus_reset(&ohci->card, false, true);
Kristian Høgsberged568912006-12-19 19:58:35 -05002380
2381 return 0;
2382}
2383
Stefan Richter53dca512008-12-14 21:47:04 +01002384static int ohci_set_config_rom(struct fw_card *card,
Stefan Richter8e859732009-10-08 00:41:59 +02002385 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05002386{
2387 struct fw_ohci *ohci;
2388 unsigned long flags;
Kristian Høgsberged568912006-12-19 19:58:35 -05002389 __be32 *next_config_rom;
Stefan Richterf5101d582008-03-14 00:27:49 +01002390 dma_addr_t uninitialized_var(next_config_rom_bus);
Kristian Høgsberged568912006-12-19 19:58:35 -05002391
2392 ohci = fw_ohci(card);
2393
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002394 /*
2395 * When the OHCI controller is enabled, the config rom update
Kristian Høgsberged568912006-12-19 19:58:35 -05002396 * mechanism is a bit tricky, but easy enough to use. See
2397 * section 5.5.6 in the OHCI specification.
2398 *
2399 * The OHCI controller caches the new config rom address in a
2400 * shadow register (ConfigROMmapNext) and needs a bus reset
2401 * for the changes to take place. When the bus reset is
2402 * detected, the controller loads the new values for the
2403 * ConfigRomHeader and BusOptions registers from the specified
2404 * config rom and loads ConfigROMmap from the ConfigROMmapNext
2405 * shadow register. All automatically and atomically.
2406 *
2407 * Now, there's a twist to this story. The automatic load of
2408 * ConfigRomHeader and BusOptions doesn't honor the
2409 * noByteSwapData bit, so with a be32 config rom, the
2410 * controller will load be32 values in to these registers
2411 * during the atomic update, even on litte endian
2412 * architectures. The workaround we use is to put a 0 in the
2413 * header quadlet; 0 is endian agnostic and means that the
2414 * config rom isn't ready yet. In the bus reset tasklet we
2415 * then set up the real values for the two registers.
2416 *
2417 * We use ohci->lock to avoid racing with the code that sets
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02002418 * ohci->next_config_rom to NULL (see bus_reset_work).
Kristian Høgsberged568912006-12-19 19:58:35 -05002419 */
2420
2421 next_config_rom =
2422 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2423 &next_config_rom_bus, GFP_KERNEL);
2424 if (next_config_rom == NULL)
2425 return -ENOMEM;
2426
2427 spin_lock_irqsave(&ohci->lock, flags);
2428
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002429 /*
2430 * If there is not an already pending config_rom update,
2431 * push our new allocation into the ohci->next_config_rom
2432 * and then mark the local variable as null so that we
2433 * won't deallocate the new buffer.
2434 *
2435 * OTOH, if there is a pending config_rom update, just
2436 * use that buffer with the new config_rom data, and
2437 * let this routine free the unused DMA allocation.
2438 */
2439
Kristian Høgsberged568912006-12-19 19:58:35 -05002440 if (ohci->next_config_rom == NULL) {
2441 ohci->next_config_rom = next_config_rom;
2442 ohci->next_config_rom_bus = next_config_rom_bus;
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002443 next_config_rom = NULL;
Kristian Høgsberged568912006-12-19 19:58:35 -05002444 }
2445
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002446 copy_config_rom(ohci->next_config_rom, config_rom, length);
2447
2448 ohci->next_header = config_rom[0];
2449 ohci->next_config_rom[0] = 0;
2450
2451 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
2452
Kristian Høgsberged568912006-12-19 19:58:35 -05002453 spin_unlock_irqrestore(&ohci->lock, flags);
2454
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002455 /* If we didn't use the DMA allocation, delete it. */
2456 if (next_config_rom != NULL)
2457 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2458 next_config_rom, next_config_rom_bus);
2459
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002460 /*
2461 * Now initiate a bus reset to have the changes take
Kristian Høgsberged568912006-12-19 19:58:35 -05002462 * effect. We clean up the old config rom memory and DMA
2463 * mappings in the bus reset tasklet, since the OHCI
2464 * controller could need to access it before the bus reset
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002465 * takes effect.
2466 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002467
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002468 fw_schedule_bus_reset(&ohci->card, true, true);
2469
2470 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002471}
2472
2473static void ohci_send_request(struct fw_card *card, struct fw_packet *packet)
2474{
2475 struct fw_ohci *ohci = fw_ohci(card);
2476
2477 at_context_transmit(&ohci->at_request_ctx, packet);
2478}
2479
2480static void ohci_send_response(struct fw_card *card, struct fw_packet *packet)
2481{
2482 struct fw_ohci *ohci = fw_ohci(card);
2483
2484 at_context_transmit(&ohci->at_response_ctx, packet);
2485}
2486
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002487static int ohci_cancel_packet(struct fw_card *card, struct fw_packet *packet)
2488{
2489 struct fw_ohci *ohci = fw_ohci(card);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002490 struct context *ctx = &ohci->at_request_ctx;
2491 struct driver_data *driver_data = packet->driver_data;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002492 int ret = -ENOENT;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002493
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002494 tasklet_disable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002495
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002496 if (packet->ack != 0)
2497 goto out;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002498
Stefan Richter19593ff2009-10-14 20:40:10 +02002499 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01002500 dma_unmap_single(ohci->card.device, packet->payload_bus,
2501 packet->payload_length, DMA_TO_DEVICE);
2502
Stefan Richterad3c0fe2008-03-20 22:04:36 +01002503 log_ar_at_event('T', packet->speed, packet->header, 0x20);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002504 driver_data->packet = NULL;
2505 packet->ack = RCODE_CANCELLED;
2506 packet->callback(packet, &ohci->card, packet->ack);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002507 ret = 0;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002508 out:
2509 tasklet_enable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002510
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002511 return ret;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002512}
2513
Stefan Richter53dca512008-12-14 21:47:04 +01002514static int ohci_enable_phys_dma(struct fw_card *card,
2515 int node_id, int generation)
Kristian Høgsberged568912006-12-19 19:58:35 -05002516{
Stefan Richter080de8c2008-02-28 20:54:43 +01002517#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
2518 return 0;
2519#else
Kristian Høgsberged568912006-12-19 19:58:35 -05002520 struct fw_ohci *ohci = fw_ohci(card);
2521 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002522 int n, ret = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002523
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002524 /*
2525 * FIXME: Make sure this bitmask is cleared when we clear the busReset
2526 * interrupt bit. Clear physReqResourceAllBuses on bus reset.
2527 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002528
2529 spin_lock_irqsave(&ohci->lock, flags);
2530
2531 if (ohci->generation != generation) {
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002532 ret = -ESTALE;
Kristian Høgsberged568912006-12-19 19:58:35 -05002533 goto out;
2534 }
2535
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002536 /*
2537 * Note, if the node ID contains a non-local bus ID, physical DMA is
2538 * enabled for _all_ nodes on remote buses.
2539 */
Stefan Richter907293d2007-01-23 21:11:43 +01002540
2541 n = (node_id & 0xffc0) == LOCAL_BUS ? node_id & 0x3f : 63;
2542 if (n < 32)
2543 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 1 << n);
2544 else
2545 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 1 << (n - 32));
2546
Kristian Høgsberged568912006-12-19 19:58:35 -05002547 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002548 out:
Stefan Richter6cad95f2007-01-21 20:46:45 +01002549 spin_unlock_irqrestore(&ohci->lock, flags);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002550
2551 return ret;
Stefan Richter080de8c2008-02-28 20:54:43 +01002552#endif /* CONFIG_FIREWIRE_OHCI_REMOTE_DMA */
Kristian Høgsberged568912006-12-19 19:58:35 -05002553}
Stefan Richter373b2ed2007-03-04 14:45:18 +01002554
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002555static u32 ohci_read_csr(struct fw_card *card, int csr_offset)
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002556{
2557 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002558 unsigned long flags;
2559 u32 value;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002560
Clemens Ladisch60d32972010-06-10 08:24:35 +02002561 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002562 case CSR_STATE_CLEAR:
2563 case CSR_STATE_SET:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002564 if (ohci->is_root &&
2565 (reg_read(ohci, OHCI1394_LinkControlSet) &
2566 OHCI1394_LinkControl_cycleMaster))
Stefan Richterc8a94de2010-06-12 20:34:50 +02002567 value = CSR_STATE_BIT_CMSTR;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002568 else
Stefan Richterc8a94de2010-06-12 20:34:50 +02002569 value = 0;
2570 if (ohci->csr_state_setclear_abdicate)
2571 value |= CSR_STATE_BIT_ABDICATE;
Stefan Richter4a9bde92010-02-20 22:24:43 +01002572
Stefan Richterc8a94de2010-06-12 20:34:50 +02002573 return value;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002574
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002575 case CSR_NODE_IDS:
2576 return reg_read(ohci, OHCI1394_NodeID) << 16;
2577
Clemens Ladisch60d32972010-06-10 08:24:35 +02002578 case CSR_CYCLE_TIME:
2579 return get_cycle_time(ohci);
2580
Clemens Ladischa48777e2010-06-10 08:33:07 +02002581 case CSR_BUS_TIME:
2582 /*
2583 * We might be called just after the cycle timer has wrapped
2584 * around but just before the cycle64Seconds handler, so we
2585 * better check here, too, if the bus time needs to be updated.
2586 */
2587 spin_lock_irqsave(&ohci->lock, flags);
2588 value = update_bus_time(ohci);
2589 spin_unlock_irqrestore(&ohci->lock, flags);
2590 return value;
2591
Clemens Ladisch27a23292010-06-10 08:34:13 +02002592 case CSR_BUSY_TIMEOUT:
2593 value = reg_read(ohci, OHCI1394_ATRetries);
2594 return (value >> 4) & 0x0ffff00f;
2595
Clemens Ladischa1a11322010-06-10 08:35:06 +02002596 case CSR_PRIORITY_BUDGET:
2597 return (reg_read(ohci, OHCI1394_FairnessControl) & 0x3f) |
2598 (ohci->pri_req_max << 8);
2599
Clemens Ladisch60d32972010-06-10 08:24:35 +02002600 default:
2601 WARN_ON(1);
2602 return 0;
Clemens Ladischb6775322010-01-20 09:58:02 +01002603 }
Clemens Ladisch60d32972010-06-10 08:24:35 +02002604}
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002605
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002606static void ohci_write_csr(struct fw_card *card, int csr_offset, u32 value)
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002607{
2608 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002609 unsigned long flags;
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002610
2611 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002612 case CSR_STATE_CLEAR:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002613 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2614 reg_write(ohci, OHCI1394_LinkControlClear,
2615 OHCI1394_LinkControl_cycleMaster);
2616 flush_writes(ohci);
2617 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002618 if (value & CSR_STATE_BIT_ABDICATE)
2619 ohci->csr_state_setclear_abdicate = false;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002620 break;
2621
2622 case CSR_STATE_SET:
2623 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2624 reg_write(ohci, OHCI1394_LinkControlSet,
2625 OHCI1394_LinkControl_cycleMaster);
2626 flush_writes(ohci);
2627 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002628 if (value & CSR_STATE_BIT_ABDICATE)
2629 ohci->csr_state_setclear_abdicate = true;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002630 break;
2631
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002632 case CSR_NODE_IDS:
2633 reg_write(ohci, OHCI1394_NodeID, value >> 16);
2634 flush_writes(ohci);
2635 break;
2636
Clemens Ladisch9ab50712010-06-10 08:26:48 +02002637 case CSR_CYCLE_TIME:
2638 reg_write(ohci, OHCI1394_IsochronousCycleTimer, value);
2639 reg_write(ohci, OHCI1394_IntEventSet,
2640 OHCI1394_cycleInconsistent);
2641 flush_writes(ohci);
2642 break;
2643
Clemens Ladischa48777e2010-06-10 08:33:07 +02002644 case CSR_BUS_TIME:
2645 spin_lock_irqsave(&ohci->lock, flags);
2646 ohci->bus_time = (ohci->bus_time & 0x7f) | (value & ~0x7f);
2647 spin_unlock_irqrestore(&ohci->lock, flags);
2648 break;
2649
Clemens Ladisch27a23292010-06-10 08:34:13 +02002650 case CSR_BUSY_TIMEOUT:
2651 value = (value & 0xf) | ((value & 0xf) << 4) |
2652 ((value & 0xf) << 8) | ((value & 0x0ffff000) << 4);
2653 reg_write(ohci, OHCI1394_ATRetries, value);
2654 flush_writes(ohci);
2655 break;
2656
Clemens Ladischa1a11322010-06-10 08:35:06 +02002657 case CSR_PRIORITY_BUDGET:
2658 reg_write(ohci, OHCI1394_FairnessControl, value & 0x3f);
2659 flush_writes(ohci);
2660 break;
2661
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002662 default:
2663 WARN_ON(1);
2664 break;
2665 }
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002666}
2667
David Moore1aa292b2008-07-22 23:23:40 -07002668static void copy_iso_headers(struct iso_context *ctx, void *p)
2669{
2670 int i = ctx->header_length;
2671
2672 if (i + ctx->base.header_size > PAGE_SIZE)
2673 return;
2674
2675 /*
2676 * The iso header is byteswapped to little endian by
2677 * the controller, but the remaining header quadlets
2678 * are big endian. We want to present all the headers
2679 * as big endian, so we have to swap the first quadlet.
2680 */
2681 if (ctx->base.header_size > 0)
2682 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
2683 if (ctx->base.header_size > 4)
2684 *(u32 *) (ctx->header + i + 4) = __swab32(*(u32 *) p);
2685 if (ctx->base.header_size > 8)
2686 memcpy(ctx->header + i + 8, p + 8, ctx->base.header_size - 8);
2687 ctx->header_length += ctx->base.header_size;
2688}
2689
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002690static int handle_ir_packet_per_buffer(struct context *context,
2691 struct descriptor *d,
2692 struct descriptor *last)
2693{
2694 struct iso_context *ctx =
2695 container_of(context, struct iso_context, context);
David Moorebcee8932007-12-19 15:26:38 -05002696 struct descriptor *pd;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002697 __le32 *ir_header;
David Moorebcee8932007-12-19 15:26:38 -05002698 void *p;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002699
Stefan Richter872e3302010-07-29 18:19:22 +02002700 for (pd = d; pd <= last; pd++)
David Moorebcee8932007-12-19 15:26:38 -05002701 if (pd->transfer_status)
2702 break;
David Moorebcee8932007-12-19 15:26:38 -05002703 if (pd > last)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002704 /* Descriptor(s) not done yet, stop iteration */
2705 return 0;
2706
David Moore1aa292b2008-07-22 23:23:40 -07002707 p = last + 1;
2708 copy_iso_headers(ctx, p);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002709
David Moorebcee8932007-12-19 15:26:38 -05002710 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
2711 ir_header = (__le32 *) p;
Stefan Richter872e3302010-07-29 18:19:22 +02002712 ctx->base.callback.sc(&ctx->base,
2713 le32_to_cpu(ir_header[0]) & 0xffff,
2714 ctx->header_length, ctx->header,
2715 ctx->base.callback_data);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002716 ctx->header_length = 0;
2717 }
2718
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002719 return 1;
2720}
2721
Stefan Richter872e3302010-07-29 18:19:22 +02002722/* d == last because each descriptor block is only a single descriptor. */
2723static int handle_ir_buffer_fill(struct context *context,
2724 struct descriptor *d,
2725 struct descriptor *last)
2726{
2727 struct iso_context *ctx =
2728 container_of(context, struct iso_context, context);
2729
2730 if (!last->transfer_status)
2731 /* Descriptor(s) not done yet, stop iteration */
2732 return 0;
2733
2734 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS)
2735 ctx->base.callback.mc(&ctx->base,
2736 le32_to_cpu(last->data_address) +
2737 le16_to_cpu(last->req_count) -
2738 le16_to_cpu(last->res_count),
2739 ctx->base.callback_data);
2740
2741 return 1;
2742}
2743
Kristian Høgsberg30200732007-02-16 17:34:39 -05002744static int handle_it_packet(struct context *context,
2745 struct descriptor *d,
2746 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05002747{
Kristian Høgsberg30200732007-02-16 17:34:39 -05002748 struct iso_context *ctx =
2749 container_of(context, struct iso_context, context);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002750 int i;
2751 struct descriptor *pd;
Stefan Richter373b2ed2007-03-04 14:45:18 +01002752
Jay Fenlason31769ce2009-11-21 00:05:56 +01002753 for (pd = d; pd <= last; pd++)
2754 if (pd->transfer_status)
2755 break;
2756 if (pd > last)
2757 /* Descriptor(s) not done yet, stop iteration */
Kristian Høgsberg30200732007-02-16 17:34:39 -05002758 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002759
Jay Fenlason31769ce2009-11-21 00:05:56 +01002760 i = ctx->header_length;
2761 if (i + 4 < PAGE_SIZE) {
2762 /* Present this value as big-endian to match the receive code */
2763 *(__be32 *)(ctx->header + i) = cpu_to_be32(
2764 ((u32)le16_to_cpu(pd->transfer_status) << 16) |
2765 le16_to_cpu(pd->res_count));
2766 ctx->header_length += 4;
2767 }
2768 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
Stefan Richter872e3302010-07-29 18:19:22 +02002769 ctx->base.callback.sc(&ctx->base, le16_to_cpu(last->res_count),
2770 ctx->header_length, ctx->header,
2771 ctx->base.callback_data);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002772 ctx->header_length = 0;
2773 }
Kristian Høgsberg30200732007-02-16 17:34:39 -05002774 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05002775}
2776
Stefan Richter872e3302010-07-29 18:19:22 +02002777static void set_multichannel_mask(struct fw_ohci *ohci, u64 channels)
2778{
2779 u32 hi = channels >> 32, lo = channels;
2780
2781 reg_write(ohci, OHCI1394_IRMultiChanMaskHiClear, ~hi);
2782 reg_write(ohci, OHCI1394_IRMultiChanMaskLoClear, ~lo);
2783 reg_write(ohci, OHCI1394_IRMultiChanMaskHiSet, hi);
2784 reg_write(ohci, OHCI1394_IRMultiChanMaskLoSet, lo);
2785 mmiowb();
2786 ohci->mc_channels = channels;
2787}
2788
Stefan Richter53dca512008-12-14 21:47:04 +01002789static struct fw_iso_context *ohci_allocate_iso_context(struct fw_card *card,
Stefan Richter4817ed22008-12-21 16:39:46 +01002790 int type, int channel, size_t header_size)
Kristian Høgsberged568912006-12-19 19:58:35 -05002791{
2792 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter872e3302010-07-29 18:19:22 +02002793 struct iso_context *uninitialized_var(ctx);
2794 descriptor_callback_t uninitialized_var(callback);
2795 u64 *uninitialized_var(channels);
2796 u32 *uninitialized_var(mask), uninitialized_var(regs);
Kristian Høgsberged568912006-12-19 19:58:35 -05002797 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02002798 int index, ret = -EBUSY;
Kristian Høgsberged568912006-12-19 19:58:35 -05002799
2800 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002801
2802 switch (type) {
2803 case FW_ISO_CONTEXT_TRANSMIT:
2804 mask = &ohci->it_context_mask;
2805 callback = handle_it_packet;
2806 index = ffs(*mask) - 1;
2807 if (index >= 0) {
2808 *mask &= ~(1 << index);
2809 regs = OHCI1394_IsoXmitContextBase(index);
2810 ctx = &ohci->it_context_list[index];
2811 }
2812 break;
2813
2814 case FW_ISO_CONTEXT_RECEIVE:
2815 channels = &ohci->ir_context_channels;
2816 mask = &ohci->ir_context_mask;
2817 callback = handle_ir_packet_per_buffer;
2818 index = *channels & 1ULL << channel ? ffs(*mask) - 1 : -1;
2819 if (index >= 0) {
2820 *channels &= ~(1ULL << channel);
2821 *mask &= ~(1 << index);
2822 regs = OHCI1394_IsoRcvContextBase(index);
2823 ctx = &ohci->ir_context_list[index];
2824 }
2825 break;
2826
2827 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2828 mask = &ohci->ir_context_mask;
2829 callback = handle_ir_buffer_fill;
2830 index = !ohci->mc_allocated ? ffs(*mask) - 1 : -1;
2831 if (index >= 0) {
2832 ohci->mc_allocated = true;
2833 *mask &= ~(1 << index);
2834 regs = OHCI1394_IsoRcvContextBase(index);
2835 ctx = &ohci->ir_context_list[index];
2836 }
2837 break;
2838
2839 default:
2840 index = -1;
2841 ret = -ENOSYS;
Stefan Richter4817ed22008-12-21 16:39:46 +01002842 }
Stefan Richter872e3302010-07-29 18:19:22 +02002843
Kristian Høgsberged568912006-12-19 19:58:35 -05002844 spin_unlock_irqrestore(&ohci->lock, flags);
2845
2846 if (index < 0)
Stefan Richter872e3302010-07-29 18:19:22 +02002847 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002848
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04002849 memset(ctx, 0, sizeof(*ctx));
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002850 ctx->header_length = 0;
2851 ctx->header = (void *) __get_free_page(GFP_KERNEL);
Stefan Richter872e3302010-07-29 18:19:22 +02002852 if (ctx->header == NULL) {
2853 ret = -ENOMEM;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002854 goto out;
Stefan Richter872e3302010-07-29 18:19:22 +02002855 }
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002856 ret = context_init(&ctx->context, ohci, regs, callback);
2857 if (ret < 0)
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002858 goto out_with_header;
Kristian Høgsberged568912006-12-19 19:58:35 -05002859
Stefan Richter872e3302010-07-29 18:19:22 +02002860 if (type == FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL)
2861 set_multichannel_mask(ohci, 0);
2862
Kristian Høgsberged568912006-12-19 19:58:35 -05002863 return &ctx->base;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002864
2865 out_with_header:
2866 free_page((unsigned long)ctx->header);
2867 out:
2868 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002869
2870 switch (type) {
2871 case FW_ISO_CONTEXT_RECEIVE:
2872 *channels |= 1ULL << channel;
2873 break;
2874
2875 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2876 ohci->mc_allocated = false;
2877 break;
2878 }
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002879 *mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02002880
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002881 spin_unlock_irqrestore(&ohci->lock, flags);
2882
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002883 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002884}
2885
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04002886static int ohci_start_iso(struct fw_iso_context *base,
2887 s32 cycle, u32 sync, u32 tags)
Kristian Høgsberged568912006-12-19 19:58:35 -05002888{
Stefan Richter373b2ed2007-03-04 14:45:18 +01002889 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05002890 struct fw_ohci *ohci = ctx->context.ohci;
Stefan Richter872e3302010-07-29 18:19:22 +02002891 u32 control = IR_CONTEXT_ISOCH_HEADER, match;
Kristian Høgsberged568912006-12-19 19:58:35 -05002892 int index;
2893
Clemens Ladisch44b74d92011-02-23 09:27:40 +01002894 /* the controller cannot start without any queued packets */
2895 if (ctx->context.last->branch_address == 0)
2896 return -ENODATA;
2897
Stefan Richter872e3302010-07-29 18:19:22 +02002898 switch (ctx->base.type) {
2899 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002900 index = ctx - ohci->it_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002901 match = 0;
2902 if (cycle >= 0)
2903 match = IT_CONTEXT_CYCLE_MATCH_ENABLE |
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002904 (cycle & 0x7fff) << 16;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05002905
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002906 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 1 << index);
2907 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, 1 << index);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002908 context_run(&ctx->context, match);
Stefan Richter872e3302010-07-29 18:19:22 +02002909 break;
2910
2911 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2912 control |= IR_CONTEXT_BUFFER_FILL|IR_CONTEXT_MULTI_CHANNEL_MODE;
2913 /* fall through */
2914 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002915 index = ctx - ohci->ir_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002916 match = (tags << 28) | (sync << 8) | ctx->base.channel;
2917 if (cycle >= 0) {
2918 match |= (cycle & 0x07fff) << 12;
2919 control |= IR_CONTEXT_CYCLE_MATCH_ENABLE;
2920 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002921
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002922 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 1 << index);
2923 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, 1 << index);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04002924 reg_write(ohci, CONTEXT_MATCH(ctx->context.regs), match);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002925 context_run(&ctx->context, control);
Maxim Levitskydd237362010-11-29 04:09:50 +02002926
2927 ctx->sync = sync;
2928 ctx->tags = tags;
2929
Stefan Richter872e3302010-07-29 18:19:22 +02002930 break;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002931 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002932
2933 return 0;
2934}
2935
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002936static int ohci_stop_iso(struct fw_iso_context *base)
2937{
2938 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01002939 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002940 int index;
2941
Stefan Richter872e3302010-07-29 18:19:22 +02002942 switch (ctx->base.type) {
2943 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002944 index = ctx - ohci->it_context_list;
2945 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02002946 break;
2947
2948 case FW_ISO_CONTEXT_RECEIVE:
2949 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002950 index = ctx - ohci->ir_context_list;
2951 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02002952 break;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002953 }
2954 flush_writes(ohci);
2955 context_stop(&ctx->context);
Clemens Ladische81cbeb2011-02-16 10:32:11 +01002956 tasklet_kill(&ctx->context.tasklet);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002957
2958 return 0;
2959}
2960
Kristian Høgsberged568912006-12-19 19:58:35 -05002961static void ohci_free_iso_context(struct fw_iso_context *base)
2962{
2963 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01002964 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberged568912006-12-19 19:58:35 -05002965 unsigned long flags;
2966 int index;
2967
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002968 ohci_stop_iso(base);
2969 context_release(&ctx->context);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002970 free_page((unsigned long)ctx->header);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002971
Kristian Høgsberged568912006-12-19 19:58:35 -05002972 spin_lock_irqsave(&ohci->lock, flags);
2973
Stefan Richter872e3302010-07-29 18:19:22 +02002974 switch (base->type) {
2975 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberged568912006-12-19 19:58:35 -05002976 index = ctx - ohci->it_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05002977 ohci->it_context_mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02002978 break;
2979
2980 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberged568912006-12-19 19:58:35 -05002981 index = ctx - ohci->ir_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05002982 ohci->ir_context_mask |= 1 << index;
Stefan Richter4817ed22008-12-21 16:39:46 +01002983 ohci->ir_context_channels |= 1ULL << base->channel;
Stefan Richter872e3302010-07-29 18:19:22 +02002984 break;
2985
2986 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2987 index = ctx - ohci->ir_context_list;
2988 ohci->ir_context_mask |= 1 << index;
2989 ohci->ir_context_channels |= ohci->mc_channels;
2990 ohci->mc_channels = 0;
2991 ohci->mc_allocated = false;
2992 break;
Kristian Høgsberged568912006-12-19 19:58:35 -05002993 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002994
2995 spin_unlock_irqrestore(&ohci->lock, flags);
2996}
2997
Stefan Richter872e3302010-07-29 18:19:22 +02002998static int ohci_set_iso_channels(struct fw_iso_context *base, u64 *channels)
Kristian Høgsberged568912006-12-19 19:58:35 -05002999{
Stefan Richter872e3302010-07-29 18:19:22 +02003000 struct fw_ohci *ohci = fw_ohci(base->card);
3001 unsigned long flags;
3002 int ret;
3003
3004 switch (base->type) {
3005 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3006
3007 spin_lock_irqsave(&ohci->lock, flags);
3008
3009 /* Don't allow multichannel to grab other contexts' channels. */
3010 if (~ohci->ir_context_channels & ~ohci->mc_channels & *channels) {
3011 *channels = ohci->ir_context_channels;
3012 ret = -EBUSY;
3013 } else {
3014 set_multichannel_mask(ohci, *channels);
3015 ret = 0;
3016 }
3017
3018 spin_unlock_irqrestore(&ohci->lock, flags);
3019
3020 break;
3021 default:
3022 ret = -EINVAL;
3023 }
3024
3025 return ret;
3026}
3027
Maxim Levitskydd237362010-11-29 04:09:50 +02003028#ifdef CONFIG_PM
3029static void ohci_resume_iso_dma(struct fw_ohci *ohci)
3030{
3031 int i;
3032 struct iso_context *ctx;
3033
3034 for (i = 0 ; i < ohci->n_ir ; i++) {
3035 ctx = &ohci->ir_context_list[i];
Stefan Richter693a50b2011-01-01 15:17:05 +01003036 if (ctx->context.running)
Maxim Levitskydd237362010-11-29 04:09:50 +02003037 ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags);
3038 }
3039
3040 for (i = 0 ; i < ohci->n_it ; i++) {
3041 ctx = &ohci->it_context_list[i];
Stefan Richter693a50b2011-01-01 15:17:05 +01003042 if (ctx->context.running)
Maxim Levitskydd237362010-11-29 04:09:50 +02003043 ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags);
3044 }
3045}
3046#endif
3047
Stefan Richter872e3302010-07-29 18:19:22 +02003048static int queue_iso_transmit(struct iso_context *ctx,
3049 struct fw_iso_packet *packet,
3050 struct fw_iso_buffer *buffer,
3051 unsigned long payload)
3052{
Kristian Høgsberg30200732007-02-16 17:34:39 -05003053 struct descriptor *d, *last, *pd;
Kristian Høgsberged568912006-12-19 19:58:35 -05003054 struct fw_iso_packet *p;
3055 __le32 *header;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003056 dma_addr_t d_bus, page_bus;
Kristian Høgsberged568912006-12-19 19:58:35 -05003057 u32 z, header_z, payload_z, irq;
3058 u32 payload_index, payload_end_index, next_page_index;
Kristian Høgsberg30200732007-02-16 17:34:39 -05003059 int page, end_page, i, length, offset;
Kristian Høgsberged568912006-12-19 19:58:35 -05003060
Kristian Høgsberged568912006-12-19 19:58:35 -05003061 p = packet;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003062 payload_index = payload;
Kristian Høgsberged568912006-12-19 19:58:35 -05003063
3064 if (p->skip)
3065 z = 1;
3066 else
3067 z = 2;
3068 if (p->header_length > 0)
3069 z++;
3070
3071 /* Determine the first page the payload isn't contained in. */
3072 end_page = PAGE_ALIGN(payload_index + p->payload_length) >> PAGE_SHIFT;
3073 if (p->payload_length > 0)
3074 payload_z = end_page - (payload_index >> PAGE_SHIFT);
3075 else
3076 payload_z = 0;
3077
3078 z += payload_z;
3079
3080 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003081 header_z = DIV_ROUND_UP(p->header_length, sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05003082
Kristian Høgsberg30200732007-02-16 17:34:39 -05003083 d = context_get_descriptors(&ctx->context, z + header_z, &d_bus);
3084 if (d == NULL)
3085 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05003086
3087 if (!p->skip) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003088 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsberged568912006-12-19 19:58:35 -05003089 d[0].req_count = cpu_to_le16(8);
Clemens Ladisch7f51a102010-02-08 08:30:03 +01003090 /*
3091 * Link the skip address to this descriptor itself. This causes
3092 * a context to skip a cycle whenever lost cycles or FIFO
3093 * overruns occur, without dropping the data. The application
3094 * should then decide whether this is an error condition or not.
3095 * FIXME: Make the context's cycle-lost behaviour configurable?
3096 */
3097 d[0].branch_address = cpu_to_le32(d_bus | z);
Kristian Høgsberged568912006-12-19 19:58:35 -05003098
3099 header = (__le32 *) &d[1];
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003100 header[0] = cpu_to_le32(IT_HEADER_SY(p->sy) |
3101 IT_HEADER_TAG(p->tag) |
3102 IT_HEADER_TCODE(TCODE_STREAM_DATA) |
3103 IT_HEADER_CHANNEL(ctx->base.channel) |
3104 IT_HEADER_SPEED(ctx->base.speed));
Kristian Høgsberged568912006-12-19 19:58:35 -05003105 header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003106 cpu_to_le32(IT_HEADER_DATA_LENGTH(p->header_length +
Kristian Høgsberged568912006-12-19 19:58:35 -05003107 p->payload_length));
3108 }
3109
3110 if (p->header_length > 0) {
3111 d[2].req_count = cpu_to_le16(p->header_length);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003112 d[2].data_address = cpu_to_le32(d_bus + z * sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05003113 memcpy(&d[z], p->header, p->header_length);
3114 }
3115
3116 pd = d + z - payload_z;
3117 payload_end_index = payload_index + p->payload_length;
3118 for (i = 0; i < payload_z; i++) {
3119 page = payload_index >> PAGE_SHIFT;
3120 offset = payload_index & ~PAGE_MASK;
3121 next_page_index = (page + 1) << PAGE_SHIFT;
3122 length =
3123 min(next_page_index, payload_end_index) - payload_index;
3124 pd[i].req_count = cpu_to_le16(length);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003125
3126 page_bus = page_private(buffer->pages[page]);
3127 pd[i].data_address = cpu_to_le32(page_bus + offset);
Kristian Høgsberged568912006-12-19 19:58:35 -05003128
3129 payload_index += length;
3130 }
3131
Kristian Høgsberged568912006-12-19 19:58:35 -05003132 if (p->interrupt)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003133 irq = DESCRIPTOR_IRQ_ALWAYS;
Kristian Høgsberged568912006-12-19 19:58:35 -05003134 else
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003135 irq = DESCRIPTOR_NO_IRQ;
Kristian Høgsberged568912006-12-19 19:58:35 -05003136
Kristian Høgsberg30200732007-02-16 17:34:39 -05003137 last = z == 2 ? d : d + z - 1;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003138 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
3139 DESCRIPTOR_STATUS |
3140 DESCRIPTOR_BRANCH_ALWAYS |
Kristian Høgsbergcbb59da2007-02-16 17:34:35 -05003141 irq);
Kristian Høgsberged568912006-12-19 19:58:35 -05003142
Kristian Høgsberg30200732007-02-16 17:34:39 -05003143 context_append(&ctx->context, d, z, header_z);
Kristian Høgsberged568912006-12-19 19:58:35 -05003144
3145 return 0;
3146}
Stefan Richter373b2ed2007-03-04 14:45:18 +01003147
Stefan Richter872e3302010-07-29 18:19:22 +02003148static int queue_iso_packet_per_buffer(struct iso_context *ctx,
3149 struct fw_iso_packet *packet,
3150 struct fw_iso_buffer *buffer,
3151 unsigned long payload)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003152{
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003153 struct descriptor *d, *pd;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003154 dma_addr_t d_bus, page_bus;
3155 u32 z, header_z, rest;
David Moorebcee8932007-12-19 15:26:38 -05003156 int i, j, length;
3157 int page, offset, packet_count, header_size, payload_per_buffer;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003158
3159 /*
David Moore1aa292b2008-07-22 23:23:40 -07003160 * The OHCI controller puts the isochronous header and trailer in the
3161 * buffer, so we need at least 8 bytes.
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003162 */
Stefan Richter872e3302010-07-29 18:19:22 +02003163 packet_count = packet->header_length / ctx->base.header_size;
David Moore1aa292b2008-07-22 23:23:40 -07003164 header_size = max(ctx->base.header_size, (size_t)8);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003165
3166 /* Get header size in number of descriptors. */
3167 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
3168 page = payload >> PAGE_SHIFT;
3169 offset = payload & ~PAGE_MASK;
Stefan Richter872e3302010-07-29 18:19:22 +02003170 payload_per_buffer = packet->payload_length / packet_count;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003171
3172 for (i = 0; i < packet_count; i++) {
3173 /* d points to the header descriptor */
David Moorebcee8932007-12-19 15:26:38 -05003174 z = DIV_ROUND_UP(payload_per_buffer + offset, PAGE_SIZE) + 1;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003175 d = context_get_descriptors(&ctx->context,
David Moorebcee8932007-12-19 15:26:38 -05003176 z + header_z, &d_bus);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003177 if (d == NULL)
3178 return -ENOMEM;
3179
David Moorebcee8932007-12-19 15:26:38 -05003180 d->control = cpu_to_le16(DESCRIPTOR_STATUS |
3181 DESCRIPTOR_INPUT_MORE);
Stefan Richter872e3302010-07-29 18:19:22 +02003182 if (packet->skip && i == 0)
David Moorebcee8932007-12-19 15:26:38 -05003183 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003184 d->req_count = cpu_to_le16(header_size);
3185 d->res_count = d->req_count;
David Moorebcee8932007-12-19 15:26:38 -05003186 d->transfer_status = 0;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003187 d->data_address = cpu_to_le32(d_bus + (z * sizeof(*d)));
3188
David Moorebcee8932007-12-19 15:26:38 -05003189 rest = payload_per_buffer;
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003190 pd = d;
David Moorebcee8932007-12-19 15:26:38 -05003191 for (j = 1; j < z; j++) {
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003192 pd++;
David Moorebcee8932007-12-19 15:26:38 -05003193 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
3194 DESCRIPTOR_INPUT_MORE);
3195
3196 if (offset + rest < PAGE_SIZE)
3197 length = rest;
3198 else
3199 length = PAGE_SIZE - offset;
3200 pd->req_count = cpu_to_le16(length);
3201 pd->res_count = pd->req_count;
3202 pd->transfer_status = 0;
3203
3204 page_bus = page_private(buffer->pages[page]);
3205 pd->data_address = cpu_to_le32(page_bus + offset);
3206
3207 offset = (offset + length) & ~PAGE_MASK;
3208 rest -= length;
3209 if (offset == 0)
3210 page++;
3211 }
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003212 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
3213 DESCRIPTOR_INPUT_LAST |
3214 DESCRIPTOR_BRANCH_ALWAYS);
Stefan Richter872e3302010-07-29 18:19:22 +02003215 if (packet->interrupt && i == packet_count - 1)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003216 pd->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
3217
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003218 context_append(&ctx->context, d, z, header_z);
3219 }
3220
3221 return 0;
3222}
3223
Stefan Richter872e3302010-07-29 18:19:22 +02003224static int queue_iso_buffer_fill(struct iso_context *ctx,
3225 struct fw_iso_packet *packet,
3226 struct fw_iso_buffer *buffer,
3227 unsigned long payload)
3228{
3229 struct descriptor *d;
3230 dma_addr_t d_bus, page_bus;
3231 int page, offset, rest, z, i, length;
3232
3233 page = payload >> PAGE_SHIFT;
3234 offset = payload & ~PAGE_MASK;
3235 rest = packet->payload_length;
3236
3237 /* We need one descriptor for each page in the buffer. */
3238 z = DIV_ROUND_UP(offset + rest, PAGE_SIZE);
3239
3240 if (WARN_ON(offset & 3 || rest & 3 || page + z > buffer->page_count))
3241 return -EFAULT;
3242
3243 for (i = 0; i < z; i++) {
3244 d = context_get_descriptors(&ctx->context, 1, &d_bus);
3245 if (d == NULL)
3246 return -ENOMEM;
3247
3248 d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
3249 DESCRIPTOR_BRANCH_ALWAYS);
3250 if (packet->skip && i == 0)
3251 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
3252 if (packet->interrupt && i == z - 1)
3253 d->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
3254
3255 if (offset + rest < PAGE_SIZE)
3256 length = rest;
3257 else
3258 length = PAGE_SIZE - offset;
3259 d->req_count = cpu_to_le16(length);
3260 d->res_count = d->req_count;
3261 d->transfer_status = 0;
3262
3263 page_bus = page_private(buffer->pages[page]);
3264 d->data_address = cpu_to_le32(page_bus + offset);
3265
3266 rest -= length;
3267 offset = 0;
3268 page++;
3269
3270 context_append(&ctx->context, d, 1, 0);
3271 }
3272
3273 return 0;
3274}
3275
Stefan Richter53dca512008-12-14 21:47:04 +01003276static int ohci_queue_iso(struct fw_iso_context *base,
3277 struct fw_iso_packet *packet,
3278 struct fw_iso_buffer *buffer,
3279 unsigned long payload)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003280{
Kristian Høgsberge364cf42007-02-16 17:34:49 -05003281 struct iso_context *ctx = container_of(base, struct iso_context, base);
David Moorefe5ca632008-01-06 17:21:41 -05003282 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02003283 int ret = -ENOSYS;
Kristian Høgsberge364cf42007-02-16 17:34:49 -05003284
David Moorefe5ca632008-01-06 17:21:41 -05003285 spin_lock_irqsave(&ctx->context.ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02003286 switch (base->type) {
3287 case FW_ISO_CONTEXT_TRANSMIT:
3288 ret = queue_iso_transmit(ctx, packet, buffer, payload);
3289 break;
3290 case FW_ISO_CONTEXT_RECEIVE:
3291 ret = queue_iso_packet_per_buffer(ctx, packet, buffer, payload);
3292 break;
3293 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3294 ret = queue_iso_buffer_fill(ctx, packet, buffer, payload);
3295 break;
3296 }
David Moorefe5ca632008-01-06 17:21:41 -05003297 spin_unlock_irqrestore(&ctx->context.ohci->lock, flags);
3298
Stefan Richter2dbd7d72008-12-14 21:45:45 +01003299 return ret;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003300}
3301
Clemens Ladisch13882a82011-05-02 09:33:56 +02003302static void ohci_flush_queue_iso(struct fw_iso_context *base)
3303{
3304 struct context *ctx =
3305 &container_of(base, struct iso_context, base)->context;
3306
3307 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladisch13882a82011-05-02 09:33:56 +02003308}
3309
Stefan Richter21ebcd12007-01-14 15:29:07 +01003310static const struct fw_card_driver ohci_driver = {
Kristian Høgsberged568912006-12-19 19:58:35 -05003311 .enable = ohci_enable,
Stefan Richter02d37be2010-07-08 16:09:06 +02003312 .read_phy_reg = ohci_read_phy_reg,
Kristian Høgsberged568912006-12-19 19:58:35 -05003313 .update_phy_reg = ohci_update_phy_reg,
3314 .set_config_rom = ohci_set_config_rom,
3315 .send_request = ohci_send_request,
3316 .send_response = ohci_send_response,
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05003317 .cancel_packet = ohci_cancel_packet,
Kristian Høgsberged568912006-12-19 19:58:35 -05003318 .enable_phys_dma = ohci_enable_phys_dma,
Stefan Richter0fcff4e2010-06-12 20:35:52 +02003319 .read_csr = ohci_read_csr,
3320 .write_csr = ohci_write_csr,
Kristian Høgsberged568912006-12-19 19:58:35 -05003321
3322 .allocate_iso_context = ohci_allocate_iso_context,
3323 .free_iso_context = ohci_free_iso_context,
Stefan Richter872e3302010-07-29 18:19:22 +02003324 .set_iso_channels = ohci_set_iso_channels,
Kristian Høgsberged568912006-12-19 19:58:35 -05003325 .queue_iso = ohci_queue_iso,
Clemens Ladisch13882a82011-05-02 09:33:56 +02003326 .flush_queue_iso = ohci_flush_queue_iso,
Kristian Høgsberg69cdb722007-02-16 17:34:41 -05003327 .start_iso = ohci_start_iso,
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003328 .stop_iso = ohci_stop_iso,
Kristian Høgsberged568912006-12-19 19:58:35 -05003329};
3330
Stefan Richter2ed0f182008-03-01 12:35:29 +01003331#ifdef CONFIG_PPC_PMAC
Stefan Richter5da3dac2010-04-02 14:05:02 +02003332static void pmac_ohci_on(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01003333{
3334 if (machine_is(powermac)) {
3335 struct device_node *ofn = pci_device_to_OF_node(dev);
3336
3337 if (ofn) {
3338 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 1);
3339 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 1);
3340 }
3341 }
3342}
3343
Stefan Richter5da3dac2010-04-02 14:05:02 +02003344static void pmac_ohci_off(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01003345{
3346 if (machine_is(powermac)) {
3347 struct device_node *ofn = pci_device_to_OF_node(dev);
3348
3349 if (ofn) {
3350 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 0);
3351 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 0);
3352 }
3353 }
3354}
3355#else
Stefan Richter5da3dac2010-04-02 14:05:02 +02003356static inline void pmac_ohci_on(struct pci_dev *dev) {}
3357static inline void pmac_ohci_off(struct pci_dev *dev) {}
Stefan Richter2ed0f182008-03-01 12:35:29 +01003358#endif /* CONFIG_PPC_PMAC */
3359
Stefan Richter53dca512008-12-14 21:47:04 +01003360static int __devinit pci_probe(struct pci_dev *dev,
3361 const struct pci_device_id *ent)
Kristian Høgsberged568912006-12-19 19:58:35 -05003362{
3363 struct fw_ohci *ohci;
Stefan Richteraa0170f2010-10-17 14:09:12 +02003364 u32 bus_options, max_receive, link_speed, version;
Kristian Høgsberged568912006-12-19 19:58:35 -05003365 u64 guid;
Maxim Levitskydd237362010-11-29 04:09:50 +02003366 int i, err;
Kristian Høgsberged568912006-12-19 19:58:35 -05003367 size_t size;
3368
Stefan Richter7f7e37112011-07-10 00:23:03 +02003369 if (dev->vendor == PCI_VENDOR_ID_PINNACLE_SYSTEMS) {
3370 dev_err(&dev->dev, "Pinnacle MovieBoard is not yet supported\n");
3371 return -ENOSYS;
3372 }
3373
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003374 ohci = kzalloc(sizeof(*ohci), GFP_KERNEL);
Kristian Høgsberged568912006-12-19 19:58:35 -05003375 if (ohci == NULL) {
Stefan Richter7007a072008-10-26 09:50:31 +01003376 err = -ENOMEM;
3377 goto fail;
Kristian Høgsberged568912006-12-19 19:58:35 -05003378 }
3379
3380 fw_card_initialize(&ohci->card, &ohci_driver, &dev->dev);
3381
Stefan Richter5da3dac2010-04-02 14:05:02 +02003382 pmac_ohci_on(dev);
Stefan Richter130d5492008-03-24 20:55:28 +01003383
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003384 err = pci_enable_device(dev);
3385 if (err) {
Stefan Richter7007a072008-10-26 09:50:31 +01003386 fw_error("Failed to enable OHCI hardware\n");
Stefan Richterbd7dee62008-02-24 18:59:55 +01003387 goto fail_free;
Kristian Høgsberged568912006-12-19 19:58:35 -05003388 }
3389
3390 pci_set_master(dev);
3391 pci_write_config_dword(dev, OHCI1394_PCI_HCI_Control, 0);
3392 pci_set_drvdata(dev, ohci);
3393
3394 spin_lock_init(&ohci->lock);
Stefan Richter02d37be2010-07-08 16:09:06 +02003395 mutex_init(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -05003396
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02003397 INIT_WORK(&ohci->bus_reset_work, bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05003398
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003399 err = pci_request_region(dev, 0, ohci_driver_name);
3400 if (err) {
Kristian Høgsberged568912006-12-19 19:58:35 -05003401 fw_error("MMIO resource unavailable\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003402 goto fail_disable;
Kristian Høgsberged568912006-12-19 19:58:35 -05003403 }
3404
3405 ohci->registers = pci_iomap(dev, 0, OHCI1394_REGISTER_SIZE);
3406 if (ohci->registers == NULL) {
3407 fw_error("Failed to remap registers\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003408 err = -ENXIO;
3409 goto fail_iomem;
Kristian Høgsberged568912006-12-19 19:58:35 -05003410 }
3411
Stefan Richter4a635592010-02-21 17:58:01 +01003412 for (i = 0; i < ARRAY_SIZE(ohci_quirks); i++)
Stefan Richter9993e0f2010-12-07 20:32:40 +01003413 if ((ohci_quirks[i].vendor == dev->vendor) &&
3414 (ohci_quirks[i].device == (unsigned short)PCI_ANY_ID ||
3415 ohci_quirks[i].device == dev->device) &&
3416 (ohci_quirks[i].revision == (unsigned short)PCI_ANY_ID ||
3417 ohci_quirks[i].revision >= dev->revision)) {
Stefan Richter4a635592010-02-21 17:58:01 +01003418 ohci->quirks = ohci_quirks[i].flags;
3419 break;
3420 }
Stefan Richter3e9cc2f2010-02-21 17:58:29 +01003421 if (param_quirks)
3422 ohci->quirks = param_quirks;
Clemens Ladischb6775322010-01-20 09:58:02 +01003423
Clemens Ladischec766a72010-11-30 08:25:17 +01003424 /*
3425 * Because dma_alloc_coherent() allocates at least one page,
3426 * we save space by using a common buffer for the AR request/
3427 * response descriptors and the self IDs buffer.
3428 */
3429 BUILD_BUG_ON(AR_BUFFERS * sizeof(struct descriptor) > PAGE_SIZE/4);
3430 BUILD_BUG_ON(SELF_ID_BUF_SIZE > PAGE_SIZE/2);
3431 ohci->misc_buffer = dma_alloc_coherent(ohci->card.device,
3432 PAGE_SIZE,
3433 &ohci->misc_buffer_bus,
3434 GFP_KERNEL);
3435 if (!ohci->misc_buffer) {
3436 err = -ENOMEM;
3437 goto fail_iounmap;
3438 }
3439
3440 err = ar_context_init(&ohci->ar_request_ctx, ohci, 0,
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003441 OHCI1394_AsReqRcvContextControlSet);
3442 if (err < 0)
Clemens Ladischec766a72010-11-30 08:25:17 +01003443 goto fail_misc_buf;
Kristian Høgsberged568912006-12-19 19:58:35 -05003444
Clemens Ladischec766a72010-11-30 08:25:17 +01003445 err = ar_context_init(&ohci->ar_response_ctx, ohci, PAGE_SIZE/4,
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003446 OHCI1394_AsRspRcvContextControlSet);
3447 if (err < 0)
3448 goto fail_arreq_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003449
Clemens Ladischc088ab302010-11-30 08:24:01 +01003450 err = context_init(&ohci->at_request_ctx, ohci,
3451 OHCI1394_AsReqTrContextControlSet, handle_at_packet);
3452 if (err < 0)
3453 goto fail_arrsp_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003454
Clemens Ladischc088ab302010-11-30 08:24:01 +01003455 err = context_init(&ohci->at_response_ctx, ohci,
3456 OHCI1394_AsRspTrContextControlSet, handle_at_packet);
3457 if (err < 0)
3458 goto fail_atreq_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003459
Kristian Høgsberged568912006-12-19 19:58:35 -05003460 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, ~0);
Stefan Richter4817ed22008-12-21 16:39:46 +01003461 ohci->ir_context_channels = ~0ULL;
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003462 ohci->ir_context_support = reg_read(ohci, OHCI1394_IsoRecvIntMaskSet);
Stefan Richter4802f162010-02-21 17:58:52 +01003463 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003464 ohci->ir_context_mask = ohci->ir_context_support;
Maxim Levitskydd237362010-11-29 04:09:50 +02003465 ohci->n_ir = hweight32(ohci->ir_context_mask);
3466 size = sizeof(struct iso_context) * ohci->n_ir;
Kristian Høgsberged568912006-12-19 19:58:35 -05003467 ohci->ir_context_list = kzalloc(size, GFP_KERNEL);
3468
Stefan Richter4802f162010-02-21 17:58:52 +01003469 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003470 ohci->it_context_support = reg_read(ohci, OHCI1394_IsoXmitIntMaskSet);
Stefan Richter4802f162010-02-21 17:58:52 +01003471 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003472 ohci->it_context_mask = ohci->it_context_support;
Maxim Levitskydd237362010-11-29 04:09:50 +02003473 ohci->n_it = hweight32(ohci->it_context_mask);
3474 size = sizeof(struct iso_context) * ohci->n_it;
Stefan Richter4802f162010-02-21 17:58:52 +01003475 ohci->it_context_list = kzalloc(size, GFP_KERNEL);
3476
Kristian Høgsberged568912006-12-19 19:58:35 -05003477 if (ohci->it_context_list == NULL || ohci->ir_context_list == NULL) {
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003478 err = -ENOMEM;
Stefan Richter7007a072008-10-26 09:50:31 +01003479 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05003480 }
3481
Clemens Ladischec766a72010-11-30 08:25:17 +01003482 ohci->self_id_cpu = ohci->misc_buffer + PAGE_SIZE/2;
3483 ohci->self_id_bus = ohci->misc_buffer_bus + PAGE_SIZE/2;
Kristian Høgsberged568912006-12-19 19:58:35 -05003484
Kristian Høgsberged568912006-12-19 19:58:35 -05003485 bus_options = reg_read(ohci, OHCI1394_BusOptions);
3486 max_receive = (bus_options >> 12) & 0xf;
3487 link_speed = bus_options & 0x7;
3488 guid = ((u64) reg_read(ohci, OHCI1394_GUIDHi) << 32) |
3489 reg_read(ohci, OHCI1394_GUIDLo);
3490
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003491 err = fw_card_add(&ohci->card, max_receive, link_speed, guid);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01003492 if (err)
Clemens Ladischec766a72010-11-30 08:25:17 +01003493 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05003494
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01003495 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
3496 fw_notify("Added fw-ohci device %s, OHCI v%x.%x, "
3497 "%d IR + %d IT contexts, quirks 0x%x\n",
3498 dev_name(&dev->dev), version >> 16, version & 0xff,
Maxim Levitskydd237362010-11-29 04:09:50 +02003499 ohci->n_ir, ohci->n_it, ohci->quirks);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01003500
Kristian Høgsberged568912006-12-19 19:58:35 -05003501 return 0;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003502
Stefan Richter7007a072008-10-26 09:50:31 +01003503 fail_contexts:
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003504 kfree(ohci->ir_context_list);
Stefan Richter7007a072008-10-26 09:50:31 +01003505 kfree(ohci->it_context_list);
3506 context_release(&ohci->at_response_ctx);
Clemens Ladischc088ab302010-11-30 08:24:01 +01003507 fail_atreq_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003508 context_release(&ohci->at_request_ctx);
Clemens Ladischc088ab302010-11-30 08:24:01 +01003509 fail_arrsp_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003510 ar_context_release(&ohci->ar_response_ctx);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003511 fail_arreq_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003512 ar_context_release(&ohci->ar_request_ctx);
Clemens Ladischec766a72010-11-30 08:25:17 +01003513 fail_misc_buf:
3514 dma_free_coherent(ohci->card.device, PAGE_SIZE,
3515 ohci->misc_buffer, ohci->misc_buffer_bus);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003516 fail_iounmap:
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003517 pci_iounmap(dev, ohci->registers);
3518 fail_iomem:
3519 pci_release_region(dev, 0);
3520 fail_disable:
3521 pci_disable_device(dev);
Stefan Richterbd7dee62008-02-24 18:59:55 +01003522 fail_free:
Oleg Drokind838d2c02011-03-11 04:17:27 +03003523 kfree(ohci);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003524 pmac_ohci_off(dev);
Stefan Richter7007a072008-10-26 09:50:31 +01003525 fail:
3526 if (err == -ENOMEM)
3527 fw_error("Out of memory\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003528
3529 return err;
Kristian Høgsberged568912006-12-19 19:58:35 -05003530}
3531
3532static void pci_remove(struct pci_dev *dev)
3533{
3534 struct fw_ohci *ohci;
3535
3536 ohci = pci_get_drvdata(dev);
Kristian Høgsberge254a4b2007-03-07 12:12:38 -05003537 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
3538 flush_writes(ohci);
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02003539 cancel_work_sync(&ohci->bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05003540 fw_core_remove_card(&ohci->card);
3541
Kristian Høgsbergc781c062007-05-07 20:33:32 -04003542 /*
3543 * FIXME: Fail all pending packets here, now that the upper
3544 * layers can't queue any more.
3545 */
Kristian Høgsberged568912006-12-19 19:58:35 -05003546
3547 software_reset(ohci);
3548 free_irq(dev->irq, ohci);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003549
3550 if (ohci->next_config_rom && ohci->next_config_rom != ohci->config_rom)
3551 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3552 ohci->next_config_rom, ohci->next_config_rom_bus);
3553 if (ohci->config_rom)
3554 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3555 ohci->config_rom, ohci->config_rom_bus);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003556 ar_context_release(&ohci->ar_request_ctx);
3557 ar_context_release(&ohci->ar_response_ctx);
Clemens Ladischec766a72010-11-30 08:25:17 +01003558 dma_free_coherent(ohci->card.device, PAGE_SIZE,
3559 ohci->misc_buffer, ohci->misc_buffer_bus);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003560 context_release(&ohci->at_request_ctx);
3561 context_release(&ohci->at_response_ctx);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003562 kfree(ohci->it_context_list);
3563 kfree(ohci->ir_context_list);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003564 pci_disable_msi(dev);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003565 pci_iounmap(dev, ohci->registers);
3566 pci_release_region(dev, 0);
3567 pci_disable_device(dev);
Oleg Drokind838d2c02011-03-11 04:17:27 +03003568 kfree(ohci);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003569 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003570
Kristian Høgsberged568912006-12-19 19:58:35 -05003571 fw_notify("Removed fw-ohci device.\n");
3572}
3573
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003574#ifdef CONFIG_PM
Stefan Richter2ed0f182008-03-01 12:35:29 +01003575static int pci_suspend(struct pci_dev *dev, pm_message_t state)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003576{
Stefan Richter2ed0f182008-03-01 12:35:29 +01003577 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003578 int err;
3579
3580 software_reset(ohci);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003581 free_irq(dev->irq, ohci);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003582 pci_disable_msi(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003583 err = pci_save_state(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003584 if (err) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02003585 fw_error("pci_save_state failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003586 return err;
3587 }
Stefan Richter2ed0f182008-03-01 12:35:29 +01003588 err = pci_set_power_state(dev, pci_choose_state(dev, state));
Stefan Richter55111422007-09-06 09:50:30 +02003589 if (err)
3590 fw_error("pci_set_power_state failed with %d\n", err);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003591 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003592
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003593 return 0;
3594}
3595
Stefan Richter2ed0f182008-03-01 12:35:29 +01003596static int pci_resume(struct pci_dev *dev)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003597{
Stefan Richter2ed0f182008-03-01 12:35:29 +01003598 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003599 int err;
3600
Stefan Richter5da3dac2010-04-02 14:05:02 +02003601 pmac_ohci_on(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003602 pci_set_power_state(dev, PCI_D0);
3603 pci_restore_state(dev);
3604 err = pci_enable_device(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003605 if (err) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02003606 fw_error("pci_enable_device failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003607 return err;
3608 }
3609
Maxim Levitsky8662b6b2010-11-29 04:09:49 +02003610 /* Some systems don't setup GUID register on resume from ram */
3611 if (!reg_read(ohci, OHCI1394_GUIDLo) &&
3612 !reg_read(ohci, OHCI1394_GUIDHi)) {
3613 reg_write(ohci, OHCI1394_GUIDLo, (u32)ohci->card.guid);
3614 reg_write(ohci, OHCI1394_GUIDHi, (u32)(ohci->card.guid >> 32));
3615 }
3616
Maxim Levitskydd237362010-11-29 04:09:50 +02003617 err = ohci_enable(&ohci->card, NULL, 0);
Maxim Levitskydd237362010-11-29 04:09:50 +02003618 if (err)
3619 return err;
3620
3621 ohci_resume_iso_dma(ohci);
Stefan Richter693a50b2011-01-01 15:17:05 +01003622
Maxim Levitskydd237362010-11-29 04:09:50 +02003623 return 0;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003624}
3625#endif
3626
Németh Mártona67483d2010-01-10 13:14:26 +01003627static const struct pci_device_id pci_table[] = {
Kristian Høgsberged568912006-12-19 19:58:35 -05003628 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_FIREWIRE_OHCI, ~0) },
3629 { }
3630};
3631
3632MODULE_DEVICE_TABLE(pci, pci_table);
3633
3634static struct pci_driver fw_ohci_pci_driver = {
3635 .name = ohci_driver_name,
3636 .id_table = pci_table,
3637 .probe = pci_probe,
3638 .remove = pci_remove,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003639#ifdef CONFIG_PM
3640 .resume = pci_resume,
3641 .suspend = pci_suspend,
3642#endif
Kristian Høgsberged568912006-12-19 19:58:35 -05003643};
3644
3645MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
3646MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers");
3647MODULE_LICENSE("GPL");
3648
Olaf Hering1e4c7b02007-05-05 23:17:13 +02003649/* Provide a module alias so root-on-sbp2 initrds don't break. */
3650#ifndef CONFIG_IEEE1394_OHCI1394_MODULE
3651MODULE_ALIAS("ohci1394");
3652#endif
3653
Kristian Høgsberged568912006-12-19 19:58:35 -05003654static int __init fw_ohci_init(void)
3655{
3656 return pci_register_driver(&fw_ohci_pci_driver);
3657}
3658
3659static void __exit fw_ohci_cleanup(void)
3660{
3661 pci_unregister_driver(&fw_ohci_pci_driver);
3662}
3663
3664module_init(fw_ohci_init);
3665module_exit(fw_ohci_cleanup);