blob: 68b3c1b635f62beab6b41ac045c93b84b15cabd1 [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
2 * Driver for OHCI 1394 controllers
Kristian Høgsberged568912006-12-19 19:58:35 -05003 *
Kristian Høgsberged568912006-12-19 19:58:35 -05004 * Copyright (C) 2003-2006 Kristian Hoegsberg <krh@bitplanet.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
Maxim Levitskydd237362010-11-29 04:09:50 +020021#include <linux/bitops.h>
Stefan Richter65b27422010-06-12 20:26:51 +020022#include <linux/bug.h>
Stefan Richtere524f6162007-08-20 21:58:30 +020023#include <linux/compiler.h>
Kristian Høgsberged568912006-12-19 19:58:35 -050024#include <linux/delay.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020025#include <linux/device.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080026#include <linux/dma-mapping.h>
Stefan Richter77c9a5d2009-06-05 16:26:18 +020027#include <linux/firewire.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020028#include <linux/firewire-constants.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020029#include <linux/init.h>
30#include <linux/interrupt.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020031#include <linux/io.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020032#include <linux/kernel.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020033#include <linux/list.h>
Al Virofaa2fb42007-05-15 20:36:10 +010034#include <linux/mm.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020035#include <linux/module.h>
Stefan Richterad3c0fe2008-03-20 22:04:36 +010036#include <linux/moduleparam.h>
Stefan Richter02d37be2010-07-08 16:09:06 +020037#include <linux/mutex.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020038#include <linux/pci.h>
Stefan Richterfc383792009-08-28 13:25:15 +020039#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Stefan Richterc26f0232007-08-20 21:40:30 +020041#include <linux/spinlock.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020042#include <linux/string.h>
Stefan Richtere78483c2010-08-02 09:33:25 +020043#include <linux/time.h>
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +010044#include <linux/vmalloc.h>
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +020045#include <linux/workqueue.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080046
Stefan Richtere8ca9702009-06-04 21:09:38 +020047#include <asm/byteorder.h>
Stefan Richterc26f0232007-08-20 21:40:30 +020048#include <asm/page.h>
Stefan Richteree71c2f2007-08-25 14:08:19 +020049#include <asm/system.h>
Kristian Høgsberged568912006-12-19 19:58:35 -050050
Stefan Richterea8d0062008-03-01 02:42:56 +010051#ifdef CONFIG_PPC_PMAC
52#include <asm/pmac_feature.h>
53#endif
54
Stefan Richter77c9a5d2009-06-05 16:26:18 +020055#include "core.h"
56#include "ohci.h"
Kristian Høgsberged568912006-12-19 19:58:35 -050057
Kristian Høgsberga77754a2007-05-07 20:33:35 -040058#define DESCRIPTOR_OUTPUT_MORE 0
59#define DESCRIPTOR_OUTPUT_LAST (1 << 12)
60#define DESCRIPTOR_INPUT_MORE (2 << 12)
61#define DESCRIPTOR_INPUT_LAST (3 << 12)
62#define DESCRIPTOR_STATUS (1 << 11)
63#define DESCRIPTOR_KEY_IMMEDIATE (2 << 8)
64#define DESCRIPTOR_PING (1 << 7)
65#define DESCRIPTOR_YY (1 << 6)
66#define DESCRIPTOR_NO_IRQ (0 << 4)
67#define DESCRIPTOR_IRQ_ERROR (1 << 4)
68#define DESCRIPTOR_IRQ_ALWAYS (3 << 4)
69#define DESCRIPTOR_BRANCH_ALWAYS (3 << 2)
70#define DESCRIPTOR_WAIT (3 << 0)
Kristian Høgsberged568912006-12-19 19:58:35 -050071
72struct descriptor {
73 __le16 req_count;
74 __le16 control;
75 __le32 data_address;
76 __le32 branch_address;
77 __le16 res_count;
78 __le16 transfer_status;
79} __attribute__((aligned(16)));
80
Kristian Høgsberga77754a2007-05-07 20:33:35 -040081#define CONTROL_SET(regs) (regs)
82#define CONTROL_CLEAR(regs) ((regs) + 4)
83#define COMMAND_PTR(regs) ((regs) + 12)
84#define CONTEXT_MATCH(regs) ((regs) + 16)
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050085
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +010086#define AR_BUFFER_SIZE (32*1024)
87#define AR_BUFFERS_MIN DIV_ROUND_UP(AR_BUFFER_SIZE, PAGE_SIZE)
88/* we need at least two pages for proper list management */
89#define AR_BUFFERS (AR_BUFFERS_MIN >= 2 ? AR_BUFFERS_MIN : 2)
90
91#define MAX_ASYNC_PAYLOAD 4096
92#define MAX_AR_PACKET_SIZE (16 + MAX_ASYNC_PAYLOAD + 4)
93#define AR_WRAPAROUND_PAGES DIV_ROUND_UP(MAX_AR_PACKET_SIZE, PAGE_SIZE)
Kristian Høgsberg32b46092007-02-06 14:49:30 -050094
Kristian Høgsberged568912006-12-19 19:58:35 -050095struct ar_context {
96 struct fw_ohci *ohci;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +010097 struct page *pages[AR_BUFFERS];
98 void *buffer;
99 struct descriptor *descriptors;
100 dma_addr_t descriptors_bus;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500101 void *pointer;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100102 unsigned int last_buffer_index;
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500103 u32 regs;
Kristian Høgsberged568912006-12-19 19:58:35 -0500104 struct tasklet_struct tasklet;
105};
106
Kristian Høgsberg30200732007-02-16 17:34:39 -0500107struct context;
108
109typedef int (*descriptor_callback_t)(struct context *ctx,
110 struct descriptor *d,
111 struct descriptor *last);
David Moorefe5ca632008-01-06 17:21:41 -0500112
113/*
114 * A buffer that contains a block of DMA-able coherent memory used for
115 * storing a portion of a DMA descriptor program.
116 */
117struct descriptor_buffer {
118 struct list_head list;
119 dma_addr_t buffer_bus;
120 size_t buffer_size;
121 size_t used;
122 struct descriptor buffer[0];
123};
124
Kristian Høgsberg30200732007-02-16 17:34:39 -0500125struct context {
Stefan Richter373b2ed2007-03-04 14:45:18 +0100126 struct fw_ohci *ohci;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500127 u32 regs;
David Moorefe5ca632008-01-06 17:21:41 -0500128 int total_allocation;
Clemens Ladischa572e682011-10-15 23:12:23 +0200129 u32 current_bus;
Clemens Ladisch386a4152010-12-24 14:42:46 +0100130 bool running;
Clemens Ladisch82b662d2010-12-24 14:40:15 +0100131 bool flushing;
Stefan Richter373b2ed2007-03-04 14:45:18 +0100132
David Moorefe5ca632008-01-06 17:21:41 -0500133 /*
134 * List of page-sized buffers for storing DMA descriptors.
135 * Head of list contains buffers in use and tail of list contains
136 * free buffers.
137 */
138 struct list_head buffer_list;
139
140 /*
141 * Pointer to a buffer inside buffer_list that contains the tail
142 * end of the current DMA program.
143 */
144 struct descriptor_buffer *buffer_tail;
145
146 /*
147 * The descriptor containing the branch address of the first
148 * descriptor that has not yet been filled by the device.
149 */
150 struct descriptor *last;
151
152 /*
153 * The last descriptor in the DMA program. It contains the branch
154 * address that must be updated upon appending a new descriptor.
155 */
156 struct descriptor *prev;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500157
158 descriptor_callback_t callback;
159
Stefan Richter373b2ed2007-03-04 14:45:18 +0100160 struct tasklet_struct tasklet;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500161};
Kristian Høgsberg30200732007-02-16 17:34:39 -0500162
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400163#define IT_HEADER_SY(v) ((v) << 0)
164#define IT_HEADER_TCODE(v) ((v) << 4)
165#define IT_HEADER_CHANNEL(v) ((v) << 8)
166#define IT_HEADER_TAG(v) ((v) << 14)
167#define IT_HEADER_SPEED(v) ((v) << 16)
168#define IT_HEADER_DATA_LENGTH(v) ((v) << 16)
Kristian Høgsberged568912006-12-19 19:58:35 -0500169
170struct iso_context {
171 struct fw_iso_context base;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500172 struct context context;
David Moore0642b652007-12-19 03:09:18 -0500173 int excess_bytes;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500174 void *header;
175 size_t header_length;
Maxim Levitskydd237362010-11-29 04:09:50 +0200176
177 u8 sync;
178 u8 tags;
Kristian Høgsberged568912006-12-19 19:58:35 -0500179};
180
181#define CONFIG_ROM_SIZE 1024
182
183struct fw_ohci {
184 struct fw_card card;
185
186 __iomem char *registers;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500187 int node_id;
Kristian Høgsberged568912006-12-19 19:58:35 -0500188 int generation;
Stefan Richtere09770d2008-03-11 02:23:29 +0100189 int request_generation; /* for timestamping incoming requests */
Stefan Richter4a635592010-02-21 17:58:01 +0100190 unsigned quirks;
Clemens Ladischa1a11322010-06-10 08:35:06 +0200191 unsigned int pri_req_max;
Clemens Ladischa48777e2010-06-10 08:33:07 +0200192 u32 bus_time;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +0200193 bool is_root;
Stefan Richterc8a94de2010-06-12 20:34:50 +0200194 bool csr_state_setclear_abdicate;
Maxim Levitskydd237362010-11-29 04:09:50 +0200195 int n_ir;
196 int n_it;
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400197 /*
198 * Spinlock for accessing fw_ohci data. Never call out of
199 * this driver with this lock held.
200 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500201 spinlock_t lock;
Kristian Høgsberged568912006-12-19 19:58:35 -0500202
Stefan Richter02d37be2010-07-08 16:09:06 +0200203 struct mutex phy_reg_mutex;
204
Clemens Ladischec766a72010-11-30 08:25:17 +0100205 void *misc_buffer;
206 dma_addr_t misc_buffer_bus;
207
Kristian Høgsberged568912006-12-19 19:58:35 -0500208 struct ar_context ar_request_ctx;
209 struct ar_context ar_response_ctx;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500210 struct context at_request_ctx;
211 struct context at_response_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -0500212
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100213 u32 it_context_support;
Stefan Richter872e3302010-07-29 18:19:22 +0200214 u32 it_context_mask; /* unoccupied IT contexts */
Kristian Høgsberged568912006-12-19 19:58:35 -0500215 struct iso_context *it_context_list;
Stefan Richter872e3302010-07-29 18:19:22 +0200216 u64 ir_context_channels; /* unoccupied channels */
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100217 u32 ir_context_support;
Stefan Richter872e3302010-07-29 18:19:22 +0200218 u32 ir_context_mask; /* unoccupied IR contexts */
Kristian Høgsberged568912006-12-19 19:58:35 -0500219 struct iso_context *ir_context_list;
Stefan Richter872e3302010-07-29 18:19:22 +0200220 u64 mc_channels; /* channels in use by the multichannel IR context */
221 bool mc_allocated;
Stefan Richterecb1cf92010-02-21 17:57:32 +0100222
223 __be32 *config_rom;
224 dma_addr_t config_rom_bus;
225 __be32 *next_config_rom;
226 dma_addr_t next_config_rom_bus;
227 __be32 next_header;
228
229 __le32 *self_id_cpu;
230 dma_addr_t self_id_bus;
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +0200231 struct work_struct bus_reset_work;
Stefan Richterecb1cf92010-02-21 17:57:32 +0100232
233 u32 self_id_buffer[512];
Kristian Høgsberged568912006-12-19 19:58:35 -0500234};
235
Adrian Bunk95688e92007-01-22 19:17:37 +0100236static inline struct fw_ohci *fw_ohci(struct fw_card *card)
Kristian Høgsberged568912006-12-19 19:58:35 -0500237{
238 return container_of(card, struct fw_ohci, card);
239}
240
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500241#define IT_CONTEXT_CYCLE_MATCH_ENABLE 0x80000000
242#define IR_CONTEXT_BUFFER_FILL 0x80000000
243#define IR_CONTEXT_ISOCH_HEADER 0x40000000
244#define IR_CONTEXT_CYCLE_MATCH_ENABLE 0x20000000
245#define IR_CONTEXT_MULTI_CHANNEL_MODE 0x10000000
246#define IR_CONTEXT_DUAL_BUFFER_MODE 0x08000000
Kristian Høgsberged568912006-12-19 19:58:35 -0500247
248#define CONTEXT_RUN 0x8000
249#define CONTEXT_WAKE 0x1000
250#define CONTEXT_DEAD 0x0800
251#define CONTEXT_ACTIVE 0x0400
252
Stefan Richter8b7b6af2009-01-20 19:10:58 +0100253#define OHCI1394_MAX_AT_REQ_RETRIES 0xf
Kristian Høgsberged568912006-12-19 19:58:35 -0500254#define OHCI1394_MAX_AT_RESP_RETRIES 0x2
255#define OHCI1394_MAX_PHYS_RESP_RETRIES 0x8
256
Kristian Høgsberged568912006-12-19 19:58:35 -0500257#define OHCI1394_REGISTER_SIZE 0x800
Kristian Høgsberged568912006-12-19 19:58:35 -0500258#define OHCI1394_PCI_HCI_Control 0x40
259#define SELF_ID_BUF_SIZE 0x800
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500260#define OHCI_TCODE_PHY_PACKET 0x0e
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500261#define OHCI_VERSION_1_1 0x010010
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500262
Kristian Høgsberged568912006-12-19 19:58:35 -0500263static char ohci_driver_name[] = KBUILD_MODNAME;
264
Stefan Richter9993e0f2010-12-07 20:32:40 +0100265#define PCI_DEVICE_ID_AGERE_FW643 0x5901
Clemens Ladisch262444e2010-06-05 12:31:25 +0200266#define PCI_DEVICE_ID_JMICRON_JMB38X_FW 0x2380
Clemens Ladisch8301b912010-03-17 11:07:55 +0100267#define PCI_DEVICE_ID_TI_TSB12LV22 0x8009
Stephan Gatzka25935eb2011-09-12 22:23:53 +0200268#define PCI_DEVICE_ID_TI_TSB12LV26 0x8020
269#define PCI_DEVICE_ID_TI_TSB82AA2 0x8025
Stefan Richter7f7e37112011-07-10 00:23:03 +0200270#define PCI_VENDOR_ID_PINNACLE_SYSTEMS 0x11bd
Clemens Ladisch8301b912010-03-17 11:07:55 +0100271
Stefan Richter4a635592010-02-21 17:58:01 +0100272#define QUIRK_CYCLE_TIMER 1
273#define QUIRK_RESET_PACKET 2
274#define QUIRK_BE_HEADERS 4
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200275#define QUIRK_NO_1394A 8
Clemens Ladisch262444e2010-06-05 12:31:25 +0200276#define QUIRK_NO_MSI 16
Stephan Gatzka25935eb2011-09-12 22:23:53 +0200277#define QUIRK_TI_SLLZ059 32
Stefan Richter4a635592010-02-21 17:58:01 +0100278
279/* In case of multiple matches in ohci_quirks[], only the first one is used. */
280static const struct {
Stefan Richter9993e0f2010-12-07 20:32:40 +0100281 unsigned short vendor, device, revision, flags;
Stefan Richter4a635592010-02-21 17:58:01 +0100282} ohci_quirks[] = {
Stefan Richter9993e0f2010-12-07 20:32:40 +0100283 {PCI_VENDOR_ID_AL, PCI_ANY_ID, PCI_ANY_ID,
284 QUIRK_CYCLE_TIMER},
285
286 {PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_FW, PCI_ANY_ID,
287 QUIRK_BE_HEADERS},
288
289 {PCI_VENDOR_ID_ATT, PCI_DEVICE_ID_AGERE_FW643, 6,
290 QUIRK_NO_MSI},
291
292 {PCI_VENDOR_ID_JMICRON, PCI_DEVICE_ID_JMICRON_JMB38X_FW, PCI_ANY_ID,
293 QUIRK_NO_MSI},
294
295 {PCI_VENDOR_ID_NEC, PCI_ANY_ID, PCI_ANY_ID,
296 QUIRK_CYCLE_TIMER},
297
Ming Leif39aa302011-08-31 10:45:46 +0800298 {PCI_VENDOR_ID_O2, PCI_ANY_ID, PCI_ANY_ID,
299 QUIRK_NO_MSI},
300
Stefan Richter9993e0f2010-12-07 20:32:40 +0100301 {PCI_VENDOR_ID_RICOH, PCI_ANY_ID, PCI_ANY_ID,
302 QUIRK_CYCLE_TIMER},
303
304 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV22, PCI_ANY_ID,
305 QUIRK_CYCLE_TIMER | QUIRK_RESET_PACKET | QUIRK_NO_1394A},
306
Stephan Gatzka25935eb2011-09-12 22:23:53 +0200307 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV26, PCI_ANY_ID,
308 QUIRK_RESET_PACKET | QUIRK_TI_SLLZ059},
309
310 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB82AA2, PCI_ANY_ID,
311 QUIRK_RESET_PACKET | QUIRK_TI_SLLZ059},
312
Stefan Richter9993e0f2010-12-07 20:32:40 +0100313 {PCI_VENDOR_ID_TI, PCI_ANY_ID, PCI_ANY_ID,
314 QUIRK_RESET_PACKET},
315
316 {PCI_VENDOR_ID_VIA, PCI_ANY_ID, PCI_ANY_ID,
317 QUIRK_CYCLE_TIMER | QUIRK_NO_MSI},
Stefan Richter4a635592010-02-21 17:58:01 +0100318};
319
Stefan Richter3e9cc2f2010-02-21 17:58:29 +0100320/* This overrides anything that was found in ohci_quirks[]. */
321static int param_quirks;
322module_param_named(quirks, param_quirks, int, 0644);
323MODULE_PARM_DESC(quirks, "Chip quirks (default = 0"
324 ", nonatomic cycle timer = " __stringify(QUIRK_CYCLE_TIMER)
325 ", reset packet generation = " __stringify(QUIRK_RESET_PACKET)
326 ", AR/selfID endianess = " __stringify(QUIRK_BE_HEADERS)
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200327 ", no 1394a enhancements = " __stringify(QUIRK_NO_1394A)
Clemens Ladisch262444e2010-06-05 12:31:25 +0200328 ", disable MSI = " __stringify(QUIRK_NO_MSI)
Stefan Richter28897fb2011-09-19 00:17:37 +0200329 ", TI SLLZ059 erratum = " __stringify(QUIRK_TI_SLLZ059)
Stefan Richter3e9cc2f2010-02-21 17:58:29 +0100330 ")");
331
Stefan Richtera007bb82008-04-07 22:33:35 +0200332#define OHCI_PARAM_DEBUG_AT_AR 1
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100333#define OHCI_PARAM_DEBUG_SELFIDS 2
Stefan Richtera007bb82008-04-07 22:33:35 +0200334#define OHCI_PARAM_DEBUG_IRQS 4
335#define OHCI_PARAM_DEBUG_BUSRESETS 8 /* only effective before chip init */
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100336
Stefan Richter5da3dac2010-04-02 14:05:02 +0200337#ifdef CONFIG_FIREWIRE_OHCI_DEBUG
338
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100339static int param_debug;
340module_param_named(debug, param_debug, int, 0644);
341MODULE_PARM_DESC(debug, "Verbose logging (default = 0"
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100342 ", AT/AR events = " __stringify(OHCI_PARAM_DEBUG_AT_AR)
Stefan Richtera007bb82008-04-07 22:33:35 +0200343 ", self-IDs = " __stringify(OHCI_PARAM_DEBUG_SELFIDS)
344 ", IRQs = " __stringify(OHCI_PARAM_DEBUG_IRQS)
345 ", busReset events = " __stringify(OHCI_PARAM_DEBUG_BUSRESETS)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100346 ", or a combination, or all = -1)");
347
Stefan Richter64d21722011-12-20 21:32:46 +0100348static void log_irqs(struct fw_ohci *ohci, u32 evt)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100349{
Stefan Richtera007bb82008-04-07 22:33:35 +0200350 if (likely(!(param_debug &
351 (OHCI_PARAM_DEBUG_IRQS | OHCI_PARAM_DEBUG_BUSRESETS))))
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100352 return;
353
Stefan Richtera007bb82008-04-07 22:33:35 +0200354 if (!(param_debug & OHCI_PARAM_DEBUG_IRQS) &&
355 !(evt & OHCI1394_busReset))
356 return;
357
Stefan Richter64d21722011-12-20 21:32:46 +0100358 dev_notice(ohci->card.device,
359 "IRQ %08x%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", evt,
Stefan Richter161b96e2008-06-14 14:23:43 +0200360 evt & OHCI1394_selfIDComplete ? " selfID" : "",
361 evt & OHCI1394_RQPkt ? " AR_req" : "",
362 evt & OHCI1394_RSPkt ? " AR_resp" : "",
363 evt & OHCI1394_reqTxComplete ? " AT_req" : "",
364 evt & OHCI1394_respTxComplete ? " AT_resp" : "",
365 evt & OHCI1394_isochRx ? " IR" : "",
366 evt & OHCI1394_isochTx ? " IT" : "",
367 evt & OHCI1394_postedWriteErr ? " postedWriteErr" : "",
368 evt & OHCI1394_cycleTooLong ? " cycleTooLong" : "",
Clemens Ladischa48777e2010-06-10 08:33:07 +0200369 evt & OHCI1394_cycle64Seconds ? " cycle64Seconds" : "",
Jay Fenlason5ed1f322009-11-17 12:29:17 -0500370 evt & OHCI1394_cycleInconsistent ? " cycleInconsistent" : "",
Stefan Richter161b96e2008-06-14 14:23:43 +0200371 evt & OHCI1394_regAccessFail ? " regAccessFail" : "",
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100372 evt & OHCI1394_unrecoverableError ? " unrecoverableError" : "",
Stefan Richter161b96e2008-06-14 14:23:43 +0200373 evt & OHCI1394_busReset ? " busReset" : "",
374 evt & ~(OHCI1394_selfIDComplete | OHCI1394_RQPkt |
375 OHCI1394_RSPkt | OHCI1394_reqTxComplete |
376 OHCI1394_respTxComplete | OHCI1394_isochRx |
377 OHCI1394_isochTx | OHCI1394_postedWriteErr |
Clemens Ladischa48777e2010-06-10 08:33:07 +0200378 OHCI1394_cycleTooLong | OHCI1394_cycle64Seconds |
379 OHCI1394_cycleInconsistent |
Stefan Richter161b96e2008-06-14 14:23:43 +0200380 OHCI1394_regAccessFail | OHCI1394_busReset)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100381 ? " ?" : "");
382}
383
384static const char *speed[] = {
385 [0] = "S100", [1] = "S200", [2] = "S400", [3] = "beta",
386};
387static const char *power[] = {
388 [0] = "+0W", [1] = "+15W", [2] = "+30W", [3] = "+45W",
389 [4] = "-3W", [5] = " ?W", [6] = "-3..-6W", [7] = "-3..-10W",
390};
391static const char port[] = { '.', '-', 'p', 'c', };
392
393static char _p(u32 *s, int shift)
394{
395 return port[*s >> shift & 3];
396}
397
Stefan Richter64d21722011-12-20 21:32:46 +0100398static void log_selfids(struct fw_ohci *ohci, int generation, int self_id_count)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100399{
Stefan Richter64d21722011-12-20 21:32:46 +0100400 u32 *s;
401
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100402 if (likely(!(param_debug & OHCI_PARAM_DEBUG_SELFIDS)))
403 return;
404
Stefan Richter64d21722011-12-20 21:32:46 +0100405 dev_notice(ohci->card.device,
406 "%d selfIDs, generation %d, local node ID %04x\n",
407 self_id_count, generation, ohci->node_id);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100408
Stefan Richter64d21722011-12-20 21:32:46 +0100409 for (s = ohci->self_id_buffer; self_id_count--; ++s)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100410 if ((*s & 1 << 23) == 0)
Stefan Richter64d21722011-12-20 21:32:46 +0100411 dev_notice(ohci->card.device,
412 "selfID 0: %08x, phy %d [%c%c%c] "
Stefan Richter161b96e2008-06-14 14:23:43 +0200413 "%s gc=%d %s %s%s%s\n",
414 *s, *s >> 24 & 63, _p(s, 6), _p(s, 4), _p(s, 2),
415 speed[*s >> 14 & 3], *s >> 16 & 63,
416 power[*s >> 8 & 7], *s >> 22 & 1 ? "L" : "",
417 *s >> 11 & 1 ? "c" : "", *s & 2 ? "i" : "");
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100418 else
Stefan Richter64d21722011-12-20 21:32:46 +0100419 dev_notice(ohci->card.device,
420 "selfID n: %08x, phy %d [%c%c%c%c%c%c%c%c]\n",
Stefan Richter161b96e2008-06-14 14:23:43 +0200421 *s, *s >> 24 & 63,
422 _p(s, 16), _p(s, 14), _p(s, 12), _p(s, 10),
423 _p(s, 8), _p(s, 6), _p(s, 4), _p(s, 2));
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100424}
425
426static const char *evts[] = {
427 [0x00] = "evt_no_status", [0x01] = "-reserved-",
428 [0x02] = "evt_long_packet", [0x03] = "evt_missing_ack",
429 [0x04] = "evt_underrun", [0x05] = "evt_overrun",
430 [0x06] = "evt_descriptor_read", [0x07] = "evt_data_read",
431 [0x08] = "evt_data_write", [0x09] = "evt_bus_reset",
432 [0x0a] = "evt_timeout", [0x0b] = "evt_tcode_err",
433 [0x0c] = "-reserved-", [0x0d] = "-reserved-",
434 [0x0e] = "evt_unknown", [0x0f] = "evt_flushed",
435 [0x10] = "-reserved-", [0x11] = "ack_complete",
436 [0x12] = "ack_pending ", [0x13] = "-reserved-",
437 [0x14] = "ack_busy_X", [0x15] = "ack_busy_A",
438 [0x16] = "ack_busy_B", [0x17] = "-reserved-",
439 [0x18] = "-reserved-", [0x19] = "-reserved-",
440 [0x1a] = "-reserved-", [0x1b] = "ack_tardy",
441 [0x1c] = "-reserved-", [0x1d] = "ack_data_error",
442 [0x1e] = "ack_type_error", [0x1f] = "-reserved-",
443 [0x20] = "pending/cancelled",
444};
445static const char *tcodes[] = {
446 [0x0] = "QW req", [0x1] = "BW req",
447 [0x2] = "W resp", [0x3] = "-reserved-",
448 [0x4] = "QR req", [0x5] = "BR req",
449 [0x6] = "QR resp", [0x7] = "BR resp",
450 [0x8] = "cycle start", [0x9] = "Lk req",
451 [0xa] = "async stream packet", [0xb] = "Lk resp",
452 [0xc] = "-reserved-", [0xd] = "-reserved-",
453 [0xe] = "link internal", [0xf] = "-reserved-",
454};
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100455
Stefan Richter64d21722011-12-20 21:32:46 +0100456static void log_ar_at_event(struct fw_ohci *ohci,
457 char dir, int speed, u32 *header, int evt)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100458{
459 int tcode = header[0] >> 4 & 0xf;
460 char specific[12];
461
462 if (likely(!(param_debug & OHCI_PARAM_DEBUG_AT_AR)))
463 return;
464
465 if (unlikely(evt >= ARRAY_SIZE(evts)))
466 evt = 0x1f;
467
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200468 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter64d21722011-12-20 21:32:46 +0100469 dev_notice(ohci->card.device,
470 "A%c evt_bus_reset, generation %d\n",
471 dir, (header[2] >> 16) & 0xff);
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200472 return;
473 }
474
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100475 switch (tcode) {
476 case 0x0: case 0x6: case 0x8:
477 snprintf(specific, sizeof(specific), " = %08x",
478 be32_to_cpu((__force __be32)header[3]));
479 break;
480 case 0x1: case 0x5: case 0x7: case 0x9: case 0xb:
481 snprintf(specific, sizeof(specific), " %x,%x",
482 header[3] >> 16, header[3] & 0xffff);
483 break;
484 default:
485 specific[0] = '\0';
486 }
487
488 switch (tcode) {
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100489 case 0xa:
Stefan Richter64d21722011-12-20 21:32:46 +0100490 dev_notice(ohci->card.device,
491 "A%c %s, %s\n",
492 dir, evts[evt], tcodes[tcode]);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100493 break;
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100494 case 0xe:
Stefan Richter64d21722011-12-20 21:32:46 +0100495 dev_notice(ohci->card.device,
496 "A%c %s, PHY %08x %08x\n",
497 dir, evts[evt], header[1], header[2]);
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100498 break;
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100499 case 0x0: case 0x1: case 0x4: case 0x5: case 0x9:
Stefan Richter64d21722011-12-20 21:32:46 +0100500 dev_notice(ohci->card.device,
501 "A%c spd %x tl %02x, "
502 "%04x -> %04x, %s, "
503 "%s, %04x%08x%s\n",
504 dir, speed, header[0] >> 10 & 0x3f,
505 header[1] >> 16, header[0] >> 16, evts[evt],
506 tcodes[tcode], header[1] & 0xffff, header[2], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100507 break;
508 default:
Stefan Richter64d21722011-12-20 21:32:46 +0100509 dev_notice(ohci->card.device,
510 "A%c spd %x tl %02x, "
511 "%04x -> %04x, %s, "
512 "%s%s\n",
513 dir, speed, header[0] >> 10 & 0x3f,
514 header[1] >> 16, header[0] >> 16, evts[evt],
515 tcodes[tcode], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100516 }
517}
518
519#else
520
Stefan Richter5da3dac2010-04-02 14:05:02 +0200521#define param_debug 0
Stefan Richter64d21722011-12-20 21:32:46 +0100522static inline void log_irqs(struct fw_ohci *ohci, u32 evt) {}
523static inline void log_selfids(struct fw_ohci *ohci, int generation, int self_id_count) {}
524static inline void log_ar_at_event(struct fw_ohci *ohci, char dir, int speed, u32 *header, int evt) {}
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100525
526#endif /* CONFIG_FIREWIRE_OHCI_DEBUG */
527
Adrian Bunk95688e92007-01-22 19:17:37 +0100528static inline void reg_write(const struct fw_ohci *ohci, int offset, u32 data)
Kristian Høgsberged568912006-12-19 19:58:35 -0500529{
530 writel(data, ohci->registers + offset);
531}
532
Adrian Bunk95688e92007-01-22 19:17:37 +0100533static inline u32 reg_read(const struct fw_ohci *ohci, int offset)
Kristian Høgsberged568912006-12-19 19:58:35 -0500534{
535 return readl(ohci->registers + offset);
536}
537
Adrian Bunk95688e92007-01-22 19:17:37 +0100538static inline void flush_writes(const struct fw_ohci *ohci)
Kristian Høgsberged568912006-12-19 19:58:35 -0500539{
540 /* Do a dummy read to flush writes. */
541 reg_read(ohci, OHCI1394_Version);
542}
543
Stefan Richterb14c3692011-06-21 15:24:26 +0200544/*
545 * Beware! read_phy_reg(), write_phy_reg(), update_phy_reg(), and
546 * read_paged_phy_reg() require the caller to hold ohci->phy_reg_mutex.
547 * In other words, only use ohci_read_phy_reg() and ohci_update_phy_reg()
548 * directly. Exceptions are intrinsically serialized contexts like pci_probe.
549 */
Stefan Richter35d999b2010-04-10 16:04:56 +0200550static int read_phy_reg(struct fw_ohci *ohci, int addr)
Kristian Høgsberged568912006-12-19 19:58:35 -0500551{
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200552 u32 val;
Stefan Richter35d999b2010-04-10 16:04:56 +0200553 int i;
Kristian Høgsberged568912006-12-19 19:58:35 -0500554
555 reg_write(ohci, OHCI1394_PhyControl, OHCI1394_PhyControl_Read(addr));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200556 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200557 val = reg_read(ohci, OHCI1394_PhyControl);
Stefan Richter215fa442011-06-22 21:05:08 +0200558 if (!~val)
559 return -ENODEV; /* Card was ejected. */
560
Stefan Richter35d999b2010-04-10 16:04:56 +0200561 if (val & OHCI1394_PhyControl_ReadDone)
562 return OHCI1394_PhyControl_ReadData(val);
563
Clemens Ladisch153e3972010-06-10 08:22:07 +0200564 /*
565 * Try a few times without waiting. Sleeping is necessary
566 * only when the link/PHY interface is busy.
567 */
568 if (i >= 3)
569 msleep(1);
Kristian Høgsberged568912006-12-19 19:58:35 -0500570 }
Stefan Richter64d21722011-12-20 21:32:46 +0100571 dev_err(ohci->card.device, "failed to read phy reg\n");
Kristian Høgsberged568912006-12-19 19:58:35 -0500572
Stefan Richter35d999b2010-04-10 16:04:56 +0200573 return -EBUSY;
574}
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200575
Stefan Richter35d999b2010-04-10 16:04:56 +0200576static int write_phy_reg(const struct fw_ohci *ohci, int addr, u32 val)
577{
578 int i;
579
580 reg_write(ohci, OHCI1394_PhyControl,
581 OHCI1394_PhyControl_Write(addr, val));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200582 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200583 val = reg_read(ohci, OHCI1394_PhyControl);
Stefan Richter215fa442011-06-22 21:05:08 +0200584 if (!~val)
585 return -ENODEV; /* Card was ejected. */
586
Stefan Richter35d999b2010-04-10 16:04:56 +0200587 if (!(val & OHCI1394_PhyControl_WritePending))
588 return 0;
589
Clemens Ladisch153e3972010-06-10 08:22:07 +0200590 if (i >= 3)
591 msleep(1);
Stefan Richter35d999b2010-04-10 16:04:56 +0200592 }
Stefan Richter64d21722011-12-20 21:32:46 +0100593 dev_err(ohci->card.device, "failed to write phy reg\n");
Stefan Richter35d999b2010-04-10 16:04:56 +0200594
595 return -EBUSY;
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200596}
597
Stefan Richter02d37be2010-07-08 16:09:06 +0200598static int update_phy_reg(struct fw_ohci *ohci, int addr,
599 int clear_bits, int set_bits)
Kristian Høgsberged568912006-12-19 19:58:35 -0500600{
Stefan Richter02d37be2010-07-08 16:09:06 +0200601 int ret = read_phy_reg(ohci, addr);
Stefan Richter35d999b2010-04-10 16:04:56 +0200602 if (ret < 0)
603 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500604
Clemens Ladische7014da2010-04-01 16:40:18 +0200605 /*
606 * The interrupt status bits are cleared by writing a one bit.
607 * Avoid clearing them unless explicitly requested in set_bits.
608 */
609 if (addr == 5)
610 clear_bits |= PHY_INT_STATUS_BITS;
Kristian Høgsberged568912006-12-19 19:58:35 -0500611
Stefan Richter35d999b2010-04-10 16:04:56 +0200612 return write_phy_reg(ohci, addr, (ret & ~clear_bits) | set_bits);
Kristian Høgsberged568912006-12-19 19:58:35 -0500613}
614
Stefan Richter35d999b2010-04-10 16:04:56 +0200615static int read_paged_phy_reg(struct fw_ohci *ohci, int page, int addr)
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200616{
Stefan Richter35d999b2010-04-10 16:04:56 +0200617 int ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200618
Stefan Richter02d37be2010-07-08 16:09:06 +0200619 ret = update_phy_reg(ohci, 7, PHY_PAGE_SELECT, page << 5);
Stefan Richter35d999b2010-04-10 16:04:56 +0200620 if (ret < 0)
621 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200622
Stefan Richter35d999b2010-04-10 16:04:56 +0200623 return read_phy_reg(ohci, addr);
Kristian Høgsberged568912006-12-19 19:58:35 -0500624}
625
Stefan Richter02d37be2010-07-08 16:09:06 +0200626static int ohci_read_phy_reg(struct fw_card *card, int addr)
627{
628 struct fw_ohci *ohci = fw_ohci(card);
629 int ret;
630
631 mutex_lock(&ohci->phy_reg_mutex);
632 ret = read_phy_reg(ohci, addr);
633 mutex_unlock(&ohci->phy_reg_mutex);
634
635 return ret;
636}
637
Kristian Høgsberged568912006-12-19 19:58:35 -0500638static int ohci_update_phy_reg(struct fw_card *card, int addr,
639 int clear_bits, int set_bits)
640{
641 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter02d37be2010-07-08 16:09:06 +0200642 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500643
Stefan Richter02d37be2010-07-08 16:09:06 +0200644 mutex_lock(&ohci->phy_reg_mutex);
645 ret = update_phy_reg(ohci, addr, clear_bits, set_bits);
646 mutex_unlock(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -0500647
Stefan Richter02d37be2010-07-08 16:09:06 +0200648 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500649}
650
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100651static inline dma_addr_t ar_buffer_bus(struct ar_context *ctx, unsigned int i)
Kristian Høgsberged568912006-12-19 19:58:35 -0500652{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100653 return page_private(ctx->pages[i]);
654}
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500655
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100656static void ar_context_link_page(struct ar_context *ctx, unsigned int index)
657{
658 struct descriptor *d;
659
660 d = &ctx->descriptors[index];
661 d->branch_address &= cpu_to_le32(~0xf);
662 d->res_count = cpu_to_le16(PAGE_SIZE);
663 d->transfer_status = 0;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500664
Stefan Richter071595e2010-07-27 13:20:33 +0200665 wmb(); /* finish init of new descriptors before branch_address update */
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100666 d = &ctx->descriptors[ctx->last_buffer_index];
667 d->branch_address |= cpu_to_le32(1);
668
669 ctx->last_buffer_index = index;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500670
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400671 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladisch837596a2010-10-25 11:42:42 +0200672}
673
Jay Fenlasona55709b2008-10-22 15:59:42 -0400674static void ar_context_release(struct ar_context *ctx)
675{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100676 unsigned int i;
Jay Fenlasona55709b2008-10-22 15:59:42 -0400677
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100678 if (ctx->buffer)
679 vm_unmap_ram(ctx->buffer, AR_BUFFERS + AR_WRAPAROUND_PAGES);
680
681 for (i = 0; i < AR_BUFFERS; i++)
682 if (ctx->pages[i]) {
683 dma_unmap_page(ctx->ohci->card.device,
684 ar_buffer_bus(ctx, i),
685 PAGE_SIZE, DMA_FROM_DEVICE);
686 __free_page(ctx->pages[i]);
687 }
688}
689
690static void ar_context_abort(struct ar_context *ctx, const char *error_msg)
691{
Stefan Richter64d21722011-12-20 21:32:46 +0100692 struct fw_ohci *ohci = ctx->ohci;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100693
Stefan Richter64d21722011-12-20 21:32:46 +0100694 if (reg_read(ohci, CONTROL_CLEAR(ctx->regs)) & CONTEXT_RUN) {
695 reg_write(ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
696 flush_writes(ohci);
697
698 dev_err(ohci->card.device, "AR error: %s; DMA stopped\n",
699 error_msg);
Jay Fenlasona55709b2008-10-22 15:59:42 -0400700 }
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100701 /* FIXME: restart? */
702}
703
704static inline unsigned int ar_next_buffer_index(unsigned int index)
705{
706 return (index + 1) % AR_BUFFERS;
707}
708
709static inline unsigned int ar_prev_buffer_index(unsigned int index)
710{
711 return (index - 1 + AR_BUFFERS) % AR_BUFFERS;
712}
713
714static inline unsigned int ar_first_buffer_index(struct ar_context *ctx)
715{
716 return ar_next_buffer_index(ctx->last_buffer_index);
717}
718
719/*
720 * We search for the buffer that contains the last AR packet DMA data written
721 * by the controller.
722 */
723static unsigned int ar_search_last_active_buffer(struct ar_context *ctx,
724 unsigned int *buffer_offset)
725{
726 unsigned int i, next_i, last = ctx->last_buffer_index;
727 __le16 res_count, next_res_count;
728
729 i = ar_first_buffer_index(ctx);
730 res_count = ACCESS_ONCE(ctx->descriptors[i].res_count);
731
732 /* A buffer that is not yet completely filled must be the last one. */
733 while (i != last && res_count == 0) {
734
735 /* Peek at the next descriptor. */
736 next_i = ar_next_buffer_index(i);
737 rmb(); /* read descriptors in order */
738 next_res_count = ACCESS_ONCE(
739 ctx->descriptors[next_i].res_count);
740 /*
741 * If the next descriptor is still empty, we must stop at this
742 * descriptor.
743 */
744 if (next_res_count == cpu_to_le16(PAGE_SIZE)) {
745 /*
746 * The exception is when the DMA data for one packet is
747 * split over three buffers; in this case, the middle
748 * buffer's descriptor might be never updated by the
749 * controller and look still empty, and we have to peek
750 * at the third one.
751 */
752 if (MAX_AR_PACKET_SIZE > PAGE_SIZE && i != last) {
753 next_i = ar_next_buffer_index(next_i);
754 rmb();
755 next_res_count = ACCESS_ONCE(
756 ctx->descriptors[next_i].res_count);
757 if (next_res_count != cpu_to_le16(PAGE_SIZE))
758 goto next_buffer_is_active;
759 }
760
761 break;
762 }
763
764next_buffer_is_active:
765 i = next_i;
766 res_count = next_res_count;
767 }
768
769 rmb(); /* read res_count before the DMA data */
770
771 *buffer_offset = PAGE_SIZE - le16_to_cpu(res_count);
772 if (*buffer_offset > PAGE_SIZE) {
773 *buffer_offset = 0;
774 ar_context_abort(ctx, "corrupted descriptor");
775 }
776
777 return i;
778}
779
780static void ar_sync_buffers_for_cpu(struct ar_context *ctx,
781 unsigned int end_buffer_index,
782 unsigned int end_buffer_offset)
783{
784 unsigned int i;
785
786 i = ar_first_buffer_index(ctx);
787 while (i != end_buffer_index) {
788 dma_sync_single_for_cpu(ctx->ohci->card.device,
789 ar_buffer_bus(ctx, i),
790 PAGE_SIZE, DMA_FROM_DEVICE);
791 i = ar_next_buffer_index(i);
792 }
793 if (end_buffer_offset > 0)
794 dma_sync_single_for_cpu(ctx->ohci->card.device,
795 ar_buffer_bus(ctx, i),
796 end_buffer_offset, DMA_FROM_DEVICE);
Jay Fenlasona55709b2008-10-22 15:59:42 -0400797}
798
Stefan Richter11bf20a2008-03-01 02:47:15 +0100799#if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
800#define cond_le32_to_cpu(v) \
Stefan Richter4a635592010-02-21 17:58:01 +0100801 (ohci->quirks & QUIRK_BE_HEADERS ? (__force __u32)(v) : le32_to_cpu(v))
Stefan Richter11bf20a2008-03-01 02:47:15 +0100802#else
803#define cond_le32_to_cpu(v) le32_to_cpu(v)
804#endif
805
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500806static __le32 *handle_ar_packet(struct ar_context *ctx, __le32 *buffer)
Kristian Høgsberged568912006-12-19 19:58:35 -0500807{
Kristian Høgsberged568912006-12-19 19:58:35 -0500808 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500809 struct fw_packet p;
810 u32 status, length, tcode;
Stefan Richter43286562008-03-11 21:22:26 +0100811 int evt;
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500812
Stefan Richter11bf20a2008-03-01 02:47:15 +0100813 p.header[0] = cond_le32_to_cpu(buffer[0]);
814 p.header[1] = cond_le32_to_cpu(buffer[1]);
815 p.header[2] = cond_le32_to_cpu(buffer[2]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500816
817 tcode = (p.header[0] >> 4) & 0x0f;
818 switch (tcode) {
819 case TCODE_WRITE_QUADLET_REQUEST:
820 case TCODE_READ_QUADLET_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500821 p.header[3] = (__force __u32) buffer[3];
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500822 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500823 p.payload_length = 0;
824 break;
825
826 case TCODE_READ_BLOCK_REQUEST :
Stefan Richter11bf20a2008-03-01 02:47:15 +0100827 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500828 p.header_length = 16;
829 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500830 break;
831
832 case TCODE_WRITE_BLOCK_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500833 case TCODE_READ_BLOCK_RESPONSE:
834 case TCODE_LOCK_REQUEST:
835 case TCODE_LOCK_RESPONSE:
Stefan Richter11bf20a2008-03-01 02:47:15 +0100836 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500837 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500838 p.payload_length = p.header[3] >> 16;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100839 if (p.payload_length > MAX_ASYNC_PAYLOAD) {
840 ar_context_abort(ctx, "invalid packet length");
841 return NULL;
842 }
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500843 break;
844
845 case TCODE_WRITE_RESPONSE:
846 case TCODE_READ_QUADLET_REQUEST:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500847 case OHCI_TCODE_PHY_PACKET:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500848 p.header_length = 12;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500849 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500850 break;
Stefan Richterccff9622008-05-31 19:36:06 +0200851
852 default:
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100853 ar_context_abort(ctx, "invalid tcode");
854 return NULL;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500855 }
856
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500857 p.payload = (void *) buffer + p.header_length;
858
859 /* FIXME: What to do about evt_* errors? */
860 length = (p.header_length + p.payload_length + 3) / 4;
Stefan Richter11bf20a2008-03-01 02:47:15 +0100861 status = cond_le32_to_cpu(buffer[length]);
Stefan Richter43286562008-03-11 21:22:26 +0100862 evt = (status >> 16) & 0x1f;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500863
Stefan Richter43286562008-03-11 21:22:26 +0100864 p.ack = evt - 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500865 p.speed = (status >> 21) & 0x7;
866 p.timestamp = status & 0xffff;
867 p.generation = ohci->request_generation;
Kristian Høgsberged568912006-12-19 19:58:35 -0500868
Stefan Richter64d21722011-12-20 21:32:46 +0100869 log_ar_at_event(ohci, 'R', p.speed, p.header, evt);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100870
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400871 /*
Stefan Richtera4dc0902010-08-28 14:21:26 +0200872 * Several controllers, notably from NEC and VIA, forget to
873 * write ack_complete status at PHY packet reception.
874 */
875 if (evt == OHCI1394_evt_no_status &&
876 (p.header[0] & 0xff) == (OHCI1394_phy_tcode << 4))
877 p.ack = ACK_COMPLETE;
878
879 /*
880 * The OHCI bus reset handler synthesizes a PHY packet with
Kristian Høgsberged568912006-12-19 19:58:35 -0500881 * the new generation number when a bus reset happens (see
882 * section 8.4.2.3). This helps us determine when a request
883 * was received and make sure we send the response in the same
884 * generation. We only need this for requests; for responses
885 * we use the unique tlabel for finding the matching
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400886 * request.
Stefan Richterd34316a2008-04-12 22:31:25 +0200887 *
888 * Alas some chips sometimes emit bus reset packets with a
889 * wrong generation. We set the correct generation for these
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +0200890 * at a slightly incorrect time (in bus_reset_work).
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400891 */
Stefan Richterd34316a2008-04-12 22:31:25 +0200892 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter4a635592010-02-21 17:58:01 +0100893 if (!(ohci->quirks & QUIRK_RESET_PACKET))
Stefan Richterd34316a2008-04-12 22:31:25 +0200894 ohci->request_generation = (p.header[2] >> 16) & 0xff;
895 } else if (ctx == &ohci->ar_request_ctx) {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500896 fw_core_handle_request(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200897 } else {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500898 fw_core_handle_response(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200899 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500900
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500901 return buffer + length + 1;
902}
Kristian Høgsberged568912006-12-19 19:58:35 -0500903
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100904static void *handle_ar_packets(struct ar_context *ctx, void *p, void *end)
905{
906 void *next;
907
908 while (p < end) {
909 next = handle_ar_packet(ctx, p);
910 if (!next)
911 return p;
912 p = next;
913 }
914
915 return p;
916}
917
918static void ar_recycle_buffers(struct ar_context *ctx, unsigned int end_buffer)
919{
920 unsigned int i;
921
922 i = ar_first_buffer_index(ctx);
923 while (i != end_buffer) {
924 dma_sync_single_for_device(ctx->ohci->card.device,
925 ar_buffer_bus(ctx, i),
926 PAGE_SIZE, DMA_FROM_DEVICE);
927 ar_context_link_page(ctx, i);
928 i = ar_next_buffer_index(i);
929 }
930}
931
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500932static void ar_context_tasklet(unsigned long data)
933{
934 struct ar_context *ctx = (struct ar_context *)data;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100935 unsigned int end_buffer_index, end_buffer_offset;
936 void *p, *end;
Kristian Høgsberged568912006-12-19 19:58:35 -0500937
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100938 p = ctx->pointer;
939 if (!p)
940 return;
Kristian Høgsberged568912006-12-19 19:58:35 -0500941
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100942 end_buffer_index = ar_search_last_active_buffer(ctx,
943 &end_buffer_offset);
944 ar_sync_buffers_for_cpu(ctx, end_buffer_index, end_buffer_offset);
945 end = ctx->buffer + end_buffer_index * PAGE_SIZE + end_buffer_offset;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500946
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100947 if (end_buffer_index < ar_first_buffer_index(ctx)) {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400948 /*
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100949 * The filled part of the overall buffer wraps around; handle
950 * all packets up to the buffer end here. If the last packet
951 * wraps around, its tail will be visible after the buffer end
952 * because the buffer start pages are mapped there again.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400953 */
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100954 void *buffer_end = ctx->buffer + AR_BUFFERS * PAGE_SIZE;
955 p = handle_ar_packets(ctx, p, buffer_end);
956 if (p < buffer_end)
957 goto error;
958 /* adjust p to point back into the actual buffer */
959 p -= AR_BUFFERS * PAGE_SIZE;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500960 }
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100961
962 p = handle_ar_packets(ctx, p, end);
963 if (p != end) {
964 if (p > end)
965 ar_context_abort(ctx, "inconsistent descriptor");
966 goto error;
967 }
968
969 ctx->pointer = p;
970 ar_recycle_buffers(ctx, end_buffer_index);
971
972 return;
973
974error:
975 ctx->pointer = NULL;
Kristian Høgsberged568912006-12-19 19:58:35 -0500976}
977
Clemens Ladischec766a72010-11-30 08:25:17 +0100978static int ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci,
979 unsigned int descriptors_offset, u32 regs)
Kristian Høgsberged568912006-12-19 19:58:35 -0500980{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100981 unsigned int i;
982 dma_addr_t dma_addr;
983 struct page *pages[AR_BUFFERS + AR_WRAPAROUND_PAGES];
984 struct descriptor *d;
Kristian Høgsberged568912006-12-19 19:58:35 -0500985
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500986 ctx->regs = regs;
987 ctx->ohci = ohci;
Kristian Høgsberged568912006-12-19 19:58:35 -0500988 tasklet_init(&ctx->tasklet, ar_context_tasklet, (unsigned long)ctx);
989
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100990 for (i = 0; i < AR_BUFFERS; i++) {
991 ctx->pages[i] = alloc_page(GFP_KERNEL | GFP_DMA32);
992 if (!ctx->pages[i])
993 goto out_of_memory;
994 dma_addr = dma_map_page(ohci->card.device, ctx->pages[i],
995 0, PAGE_SIZE, DMA_FROM_DEVICE);
996 if (dma_mapping_error(ohci->card.device, dma_addr)) {
997 __free_page(ctx->pages[i]);
998 ctx->pages[i] = NULL;
999 goto out_of_memory;
1000 }
1001 set_page_private(ctx->pages[i], dma_addr);
1002 }
1003
1004 for (i = 0; i < AR_BUFFERS; i++)
1005 pages[i] = ctx->pages[i];
1006 for (i = 0; i < AR_WRAPAROUND_PAGES; i++)
1007 pages[AR_BUFFERS + i] = ctx->pages[i];
1008 ctx->buffer = vm_map_ram(pages, AR_BUFFERS + AR_WRAPAROUND_PAGES,
Clemens Ladisch14271302011-01-13 10:12:17 +01001009 -1, PAGE_KERNEL);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001010 if (!ctx->buffer)
1011 goto out_of_memory;
1012
Clemens Ladischec766a72010-11-30 08:25:17 +01001013 ctx->descriptors = ohci->misc_buffer + descriptors_offset;
1014 ctx->descriptors_bus = ohci->misc_buffer_bus + descriptors_offset;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001015
1016 for (i = 0; i < AR_BUFFERS; i++) {
1017 d = &ctx->descriptors[i];
1018 d->req_count = cpu_to_le16(PAGE_SIZE);
1019 d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
1020 DESCRIPTOR_STATUS |
1021 DESCRIPTOR_BRANCH_ALWAYS);
1022 d->data_address = cpu_to_le32(ar_buffer_bus(ctx, i));
1023 d->branch_address = cpu_to_le32(ctx->descriptors_bus +
1024 ar_next_buffer_index(i) * sizeof(struct descriptor));
1025 }
Kristian Høgsberg32b46092007-02-06 14:49:30 -05001026
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001027 return 0;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001028
1029out_of_memory:
1030 ar_context_release(ctx);
1031
1032 return -ENOMEM;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001033}
1034
1035static void ar_context_run(struct ar_context *ctx)
1036{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001037 unsigned int i;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001038
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001039 for (i = 0; i < AR_BUFFERS; i++)
1040 ar_context_link_page(ctx, i);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001041
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001042 ctx->pointer = ctx->buffer;
1043
1044 reg_write(ctx->ohci, COMMAND_PTR(ctx->regs), ctx->descriptors_bus | 1);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001045 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN);
Kristian Høgsberged568912006-12-19 19:58:35 -05001046}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001047
Stefan Richter53dca512008-12-14 21:47:04 +01001048static struct descriptor *find_branch_descriptor(struct descriptor *d, int z)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001049{
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001050 __le16 branch;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001051
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001052 branch = d->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001053
1054 /* figure out which descriptor the branch address goes in */
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001055 if (z == 2 && branch == cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001056 return d;
1057 else
1058 return d + z - 1;
1059}
1060
Kristian Høgsberg30200732007-02-16 17:34:39 -05001061static void context_tasklet(unsigned long data)
1062{
1063 struct context *ctx = (struct context *) data;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001064 struct descriptor *d, *last;
1065 u32 address;
1066 int z;
David Moorefe5ca632008-01-06 17:21:41 -05001067 struct descriptor_buffer *desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001068
David Moorefe5ca632008-01-06 17:21:41 -05001069 desc = list_entry(ctx->buffer_list.next,
1070 struct descriptor_buffer, list);
1071 last = ctx->last;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001072 while (last->branch_address != 0) {
David Moorefe5ca632008-01-06 17:21:41 -05001073 struct descriptor_buffer *old_desc = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001074 address = le32_to_cpu(last->branch_address);
1075 z = address & 0xf;
David Moorefe5ca632008-01-06 17:21:41 -05001076 address &= ~0xf;
Clemens Ladischa572e682011-10-15 23:12:23 +02001077 ctx->current_bus = address;
David Moorefe5ca632008-01-06 17:21:41 -05001078
1079 /* If the branch address points to a buffer outside of the
1080 * current buffer, advance to the next buffer. */
1081 if (address < desc->buffer_bus ||
1082 address >= desc->buffer_bus + desc->used)
1083 desc = list_entry(desc->list.next,
1084 struct descriptor_buffer, list);
1085 d = desc->buffer + (address - desc->buffer_bus) / sizeof(*d);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001086 last = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001087
1088 if (!ctx->callback(ctx, d, last))
1089 break;
1090
David Moorefe5ca632008-01-06 17:21:41 -05001091 if (old_desc != desc) {
1092 /* If we've advanced to the next buffer, move the
1093 * previous buffer to the free list. */
1094 unsigned long flags;
1095 old_desc->used = 0;
1096 spin_lock_irqsave(&ctx->ohci->lock, flags);
1097 list_move_tail(&old_desc->list, &ctx->buffer_list);
1098 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1099 }
1100 ctx->last = last;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001101 }
1102}
1103
David Moorefe5ca632008-01-06 17:21:41 -05001104/*
1105 * Allocate a new buffer and add it to the list of free buffers for this
1106 * context. Must be called with ohci->lock held.
1107 */
Stefan Richter53dca512008-12-14 21:47:04 +01001108static int context_add_buffer(struct context *ctx)
David Moorefe5ca632008-01-06 17:21:41 -05001109{
1110 struct descriptor_buffer *desc;
Stefan Richterf5101d582008-03-14 00:27:49 +01001111 dma_addr_t uninitialized_var(bus_addr);
David Moorefe5ca632008-01-06 17:21:41 -05001112 int offset;
1113
1114 /*
1115 * 16MB of descriptors should be far more than enough for any DMA
1116 * program. This will catch run-away userspace or DoS attacks.
1117 */
1118 if (ctx->total_allocation >= 16*1024*1024)
1119 return -ENOMEM;
1120
1121 desc = dma_alloc_coherent(ctx->ohci->card.device, PAGE_SIZE,
1122 &bus_addr, GFP_ATOMIC);
1123 if (!desc)
1124 return -ENOMEM;
1125
1126 offset = (void *)&desc->buffer - (void *)desc;
1127 desc->buffer_size = PAGE_SIZE - offset;
1128 desc->buffer_bus = bus_addr + offset;
1129 desc->used = 0;
1130
1131 list_add_tail(&desc->list, &ctx->buffer_list);
1132 ctx->total_allocation += PAGE_SIZE;
1133
1134 return 0;
1135}
1136
Stefan Richter53dca512008-12-14 21:47:04 +01001137static int context_init(struct context *ctx, struct fw_ohci *ohci,
1138 u32 regs, descriptor_callback_t callback)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001139{
1140 ctx->ohci = ohci;
1141 ctx->regs = regs;
David Moorefe5ca632008-01-06 17:21:41 -05001142 ctx->total_allocation = 0;
1143
1144 INIT_LIST_HEAD(&ctx->buffer_list);
1145 if (context_add_buffer(ctx) < 0)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001146 return -ENOMEM;
1147
David Moorefe5ca632008-01-06 17:21:41 -05001148 ctx->buffer_tail = list_entry(ctx->buffer_list.next,
1149 struct descriptor_buffer, list);
1150
Kristian Høgsberg30200732007-02-16 17:34:39 -05001151 tasklet_init(&ctx->tasklet, context_tasklet, (unsigned long)ctx);
1152 ctx->callback = callback;
1153
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001154 /*
1155 * We put a dummy descriptor in the buffer that has a NULL
Kristian Høgsberg30200732007-02-16 17:34:39 -05001156 * branch address and looks like it's been sent. That way we
David Moorefe5ca632008-01-06 17:21:41 -05001157 * have a descriptor to append DMA programs to.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001158 */
David Moorefe5ca632008-01-06 17:21:41 -05001159 memset(ctx->buffer_tail->buffer, 0, sizeof(*ctx->buffer_tail->buffer));
1160 ctx->buffer_tail->buffer->control = cpu_to_le16(DESCRIPTOR_OUTPUT_LAST);
1161 ctx->buffer_tail->buffer->transfer_status = cpu_to_le16(0x8011);
1162 ctx->buffer_tail->used += sizeof(*ctx->buffer_tail->buffer);
1163 ctx->last = ctx->buffer_tail->buffer;
1164 ctx->prev = ctx->buffer_tail->buffer;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001165
1166 return 0;
1167}
1168
Stefan Richter53dca512008-12-14 21:47:04 +01001169static void context_release(struct context *ctx)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001170{
1171 struct fw_card *card = &ctx->ohci->card;
David Moorefe5ca632008-01-06 17:21:41 -05001172 struct descriptor_buffer *desc, *tmp;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001173
David Moorefe5ca632008-01-06 17:21:41 -05001174 list_for_each_entry_safe(desc, tmp, &ctx->buffer_list, list)
1175 dma_free_coherent(card->device, PAGE_SIZE, desc,
1176 desc->buffer_bus -
1177 ((void *)&desc->buffer - (void *)desc));
Kristian Høgsberg30200732007-02-16 17:34:39 -05001178}
1179
David Moorefe5ca632008-01-06 17:21:41 -05001180/* Must be called with ohci->lock held */
Stefan Richter53dca512008-12-14 21:47:04 +01001181static struct descriptor *context_get_descriptors(struct context *ctx,
1182 int z, dma_addr_t *d_bus)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001183{
David Moorefe5ca632008-01-06 17:21:41 -05001184 struct descriptor *d = NULL;
1185 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001186
David Moorefe5ca632008-01-06 17:21:41 -05001187 if (z * sizeof(*d) > desc->buffer_size)
1188 return NULL;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001189
David Moorefe5ca632008-01-06 17:21:41 -05001190 if (z * sizeof(*d) > desc->buffer_size - desc->used) {
1191 /* No room for the descriptor in this buffer, so advance to the
1192 * next one. */
1193
1194 if (desc->list.next == &ctx->buffer_list) {
1195 /* If there is no free buffer next in the list,
1196 * allocate one. */
1197 if (context_add_buffer(ctx) < 0)
1198 return NULL;
1199 }
1200 desc = list_entry(desc->list.next,
1201 struct descriptor_buffer, list);
1202 ctx->buffer_tail = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001203 }
1204
David Moorefe5ca632008-01-06 17:21:41 -05001205 d = desc->buffer + desc->used / sizeof(*d);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001206 memset(d, 0, z * sizeof(*d));
David Moorefe5ca632008-01-06 17:21:41 -05001207 *d_bus = desc->buffer_bus + desc->used;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001208
1209 return d;
1210}
1211
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001212static void context_run(struct context *ctx, u32 extra)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001213{
1214 struct fw_ohci *ohci = ctx->ohci;
1215
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001216 reg_write(ohci, COMMAND_PTR(ctx->regs),
David Moorefe5ca632008-01-06 17:21:41 -05001217 le32_to_cpu(ctx->last->branch_address));
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001218 reg_write(ohci, CONTROL_CLEAR(ctx->regs), ~0);
1219 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN | extra);
Clemens Ladisch386a4152010-12-24 14:42:46 +01001220 ctx->running = true;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001221 flush_writes(ohci);
1222}
1223
1224static void context_append(struct context *ctx,
1225 struct descriptor *d, int z, int extra)
1226{
1227 dma_addr_t d_bus;
David Moorefe5ca632008-01-06 17:21:41 -05001228 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001229
David Moorefe5ca632008-01-06 17:21:41 -05001230 d_bus = desc->buffer_bus + (d - desc->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001231
David Moorefe5ca632008-01-06 17:21:41 -05001232 desc->used += (z + extra) * sizeof(*d);
Stefan Richter071595e2010-07-27 13:20:33 +02001233
1234 wmb(); /* finish init of new descriptors before branch_address update */
David Moorefe5ca632008-01-06 17:21:41 -05001235 ctx->prev->branch_address = cpu_to_le32(d_bus | z);
1236 ctx->prev = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001237}
1238
1239static void context_stop(struct context *ctx)
1240{
Stefan Richter64d21722011-12-20 21:32:46 +01001241 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001242 u32 reg;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001243 int i;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001244
Stefan Richter64d21722011-12-20 21:32:46 +01001245 reg_write(ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
Clemens Ladisch386a4152010-12-24 14:42:46 +01001246 ctx->running = false;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001247
Stefan Richter9ef28cc2011-06-12 14:30:57 +02001248 for (i = 0; i < 1000; i++) {
Stefan Richter64d21722011-12-20 21:32:46 +01001249 reg = reg_read(ohci, CONTROL_SET(ctx->regs));
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001250 if ((reg & CONTEXT_ACTIVE) == 0)
Stefan Richterb0068542009-01-05 20:43:23 +01001251 return;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001252
Stefan Richter9ef28cc2011-06-12 14:30:57 +02001253 if (i)
1254 udelay(10);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001255 }
Stefan Richter64d21722011-12-20 21:32:46 +01001256 dev_err(ohci->card.device, "DMA context still active (0x%08x)\n", reg);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001257}
Kristian Høgsberged568912006-12-19 19:58:35 -05001258
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001259struct driver_data {
Clemens Ladischda289472011-04-11 09:57:54 +02001260 u8 inline_data[8];
Kristian Høgsberged568912006-12-19 19:58:35 -05001261 struct fw_packet *packet;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001262};
1263
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001264/*
1265 * This function apppends a packet to the DMA queue for transmission.
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001266 * Must always be called with the ochi->lock held to ensure proper
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001267 * generation handling and locking around packet queue manipulation.
1268 */
Stefan Richter53dca512008-12-14 21:47:04 +01001269static int at_context_queue_packet(struct context *ctx,
1270 struct fw_packet *packet)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001271{
Kristian Høgsberged568912006-12-19 19:58:35 -05001272 struct fw_ohci *ohci = ctx->ohci;
Stefan Richter4b6d51e2007-10-21 11:20:07 +02001273 dma_addr_t d_bus, uninitialized_var(payload_bus);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001274 struct driver_data *driver_data;
1275 struct descriptor *d, *last;
1276 __le32 *header;
Kristian Høgsberged568912006-12-19 19:58:35 -05001277 int z, tcode;
1278
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001279 d = context_get_descriptors(ctx, 4, &d_bus);
1280 if (d == NULL) {
1281 packet->ack = RCODE_SEND_ERROR;
1282 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001283 }
1284
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001285 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001286 d[0].res_count = cpu_to_le16(packet->timestamp);
1287
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001288 /*
1289 * The DMA format for asyncronous link packets is different
Kristian Høgsberged568912006-12-19 19:58:35 -05001290 * from the IEEE1394 layout, so shift the fields around
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001291 * accordingly.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001292 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001293
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001294 tcode = (packet->header[0] >> 4) & 0x0f;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001295 header = (__le32 *) &d[1];
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001296 switch (tcode) {
1297 case TCODE_WRITE_QUADLET_REQUEST:
1298 case TCODE_WRITE_BLOCK_REQUEST:
1299 case TCODE_WRITE_RESPONSE:
1300 case TCODE_READ_QUADLET_REQUEST:
1301 case TCODE_READ_BLOCK_REQUEST:
1302 case TCODE_READ_QUADLET_RESPONSE:
1303 case TCODE_READ_BLOCK_RESPONSE:
1304 case TCODE_LOCK_REQUEST:
1305 case TCODE_LOCK_RESPONSE:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001306 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1307 (packet->speed << 16));
1308 header[1] = cpu_to_le32((packet->header[1] & 0xffff) |
1309 (packet->header[0] & 0xffff0000));
1310 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001311
Kristian Høgsberged568912006-12-19 19:58:35 -05001312 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001313 header[3] = cpu_to_le32(packet->header[3]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001314 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001315 header[3] = (__force __le32) packet->header[3];
1316
1317 d[0].req_count = cpu_to_le16(packet->header_length);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001318 break;
1319
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001320 case TCODE_LINK_INTERNAL:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001321 header[0] = cpu_to_le32((OHCI1394_phy_tcode << 4) |
1322 (packet->speed << 16));
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001323 header[1] = cpu_to_le32(packet->header[1]);
1324 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001325 d[0].req_count = cpu_to_le16(12);
Stefan Richtercc550212010-07-18 13:00:50 +02001326
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001327 if (is_ping_packet(&packet->header[1]))
Stefan Richtercc550212010-07-18 13:00:50 +02001328 d[0].control |= cpu_to_le16(DESCRIPTOR_PING);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001329 break;
1330
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001331 case TCODE_STREAM_DATA:
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001332 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1333 (packet->speed << 16));
1334 header[1] = cpu_to_le32(packet->header[0] & 0xffff0000);
1335 d[0].req_count = cpu_to_le16(8);
1336 break;
1337
1338 default:
1339 /* BUG(); */
1340 packet->ack = RCODE_SEND_ERROR;
1341 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001342 }
1343
Clemens Ladischda289472011-04-11 09:57:54 +02001344 BUILD_BUG_ON(sizeof(struct driver_data) > sizeof(struct descriptor));
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001345 driver_data = (struct driver_data *) &d[3];
1346 driver_data->packet = packet;
Kristian Høgsberg20d11672007-03-26 19:18:19 -04001347 packet->driver_data = driver_data;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001348
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001349 if (packet->payload_length > 0) {
Clemens Ladischda289472011-04-11 09:57:54 +02001350 if (packet->payload_length > sizeof(driver_data->inline_data)) {
1351 payload_bus = dma_map_single(ohci->card.device,
1352 packet->payload,
1353 packet->payload_length,
1354 DMA_TO_DEVICE);
1355 if (dma_mapping_error(ohci->card.device, payload_bus)) {
1356 packet->ack = RCODE_SEND_ERROR;
1357 return -1;
1358 }
1359 packet->payload_bus = payload_bus;
1360 packet->payload_mapped = true;
1361 } else {
1362 memcpy(driver_data->inline_data, packet->payload,
1363 packet->payload_length);
1364 payload_bus = d_bus + 3 * sizeof(*d);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001365 }
1366
1367 d[2].req_count = cpu_to_le16(packet->payload_length);
1368 d[2].data_address = cpu_to_le32(payload_bus);
1369 last = &d[2];
1370 z = 3;
1371 } else {
1372 last = &d[0];
1373 z = 2;
1374 }
1375
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001376 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
1377 DESCRIPTOR_IRQ_ALWAYS |
1378 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001379
Stefan Richterb6258fc2011-02-26 15:08:35 +01001380 /* FIXME: Document how the locking works. */
1381 if (ohci->generation != packet->generation) {
Stefan Richter19593ff2009-10-14 20:40:10 +02001382 if (packet->payload_mapped)
Stefan Richterab88ca42007-08-29 19:40:28 +02001383 dma_unmap_single(ohci->card.device, payload_bus,
1384 packet->payload_length, DMA_TO_DEVICE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001385 packet->ack = RCODE_GENERATION;
1386 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001387 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001388
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001389 context_append(ctx, d, z, 4 - z);
Kristian Høgsberged568912006-12-19 19:58:35 -05001390
Clemens Ladischdd6254e2011-05-16 08:10:10 +02001391 if (ctx->running)
Clemens Ladisch13882a82011-05-02 09:33:56 +02001392 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladischdd6254e2011-05-16 08:10:10 +02001393 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001394 context_run(ctx, 0);
Kristian Høgsberged568912006-12-19 19:58:35 -05001395
1396 return 0;
1397}
1398
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001399static void at_context_flush(struct context *ctx)
1400{
1401 tasklet_disable(&ctx->tasklet);
1402
1403 ctx->flushing = true;
1404 context_tasklet((unsigned long)ctx);
1405 ctx->flushing = false;
1406
1407 tasklet_enable(&ctx->tasklet);
1408}
1409
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001410static int handle_at_packet(struct context *context,
1411 struct descriptor *d,
1412 struct descriptor *last)
1413{
1414 struct driver_data *driver_data;
1415 struct fw_packet *packet;
1416 struct fw_ohci *ohci = context->ohci;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001417 int evt;
1418
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001419 if (last->transfer_status == 0 && !context->flushing)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001420 /* This descriptor isn't done yet, stop iteration. */
1421 return 0;
1422
1423 driver_data = (struct driver_data *) &d[3];
1424 packet = driver_data->packet;
1425 if (packet == NULL)
1426 /* This packet was cancelled, just continue. */
1427 return 1;
1428
Stefan Richter19593ff2009-10-14 20:40:10 +02001429 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01001430 dma_unmap_single(ohci->card.device, packet->payload_bus,
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001431 packet->payload_length, DMA_TO_DEVICE);
1432
1433 evt = le16_to_cpu(last->transfer_status) & 0x1f;
1434 packet->timestamp = le16_to_cpu(last->res_count);
1435
Stefan Richter64d21722011-12-20 21:32:46 +01001436 log_ar_at_event(ohci, 'T', packet->speed, packet->header, evt);
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001437
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001438 switch (evt) {
1439 case OHCI1394_evt_timeout:
1440 /* Async response transmit timed out. */
1441 packet->ack = RCODE_CANCELLED;
1442 break;
1443
1444 case OHCI1394_evt_flushed:
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001445 /*
1446 * The packet was flushed should give same error as
1447 * when we try to use a stale generation count.
1448 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001449 packet->ack = RCODE_GENERATION;
1450 break;
1451
1452 case OHCI1394_evt_missing_ack:
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001453 if (context->flushing)
1454 packet->ack = RCODE_GENERATION;
1455 else {
1456 /*
1457 * Using a valid (current) generation count, but the
1458 * node is not on the bus or not sending acks.
1459 */
1460 packet->ack = RCODE_NO_ACK;
1461 }
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001462 break;
1463
1464 case ACK_COMPLETE + 0x10:
1465 case ACK_PENDING + 0x10:
1466 case ACK_BUSY_X + 0x10:
1467 case ACK_BUSY_A + 0x10:
1468 case ACK_BUSY_B + 0x10:
1469 case ACK_DATA_ERROR + 0x10:
1470 case ACK_TYPE_ERROR + 0x10:
1471 packet->ack = evt - 0x10;
1472 break;
1473
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001474 case OHCI1394_evt_no_status:
1475 if (context->flushing) {
1476 packet->ack = RCODE_GENERATION;
1477 break;
1478 }
1479 /* fall through */
1480
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001481 default:
1482 packet->ack = RCODE_SEND_ERROR;
1483 break;
1484 }
1485
1486 packet->callback(packet, &ohci->card, packet->ack);
1487
1488 return 1;
1489}
1490
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001491#define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
1492#define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
1493#define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
1494#define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
1495#define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001496
Stefan Richter53dca512008-12-14 21:47:04 +01001497static void handle_local_rom(struct fw_ohci *ohci,
1498 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001499{
1500 struct fw_packet response;
1501 int tcode, length, i;
1502
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001503 tcode = HEADER_GET_TCODE(packet->header[0]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001504 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001505 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001506 else
1507 length = 4;
1508
1509 i = csr - CSR_CONFIG_ROM;
1510 if (i + length > CONFIG_ROM_SIZE) {
1511 fw_fill_response(&response, packet->header,
1512 RCODE_ADDRESS_ERROR, NULL, 0);
1513 } else if (!TCODE_IS_READ_REQUEST(tcode)) {
1514 fw_fill_response(&response, packet->header,
1515 RCODE_TYPE_ERROR, NULL, 0);
1516 } else {
1517 fw_fill_response(&response, packet->header, RCODE_COMPLETE,
1518 (void *) ohci->config_rom + i, length);
1519 }
1520
1521 fw_core_handle_response(&ohci->card, &response);
1522}
1523
Stefan Richter53dca512008-12-14 21:47:04 +01001524static void handle_local_lock(struct fw_ohci *ohci,
1525 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001526{
1527 struct fw_packet response;
Clemens Ladische1393662010-04-12 10:35:44 +02001528 int tcode, length, ext_tcode, sel, try;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001529 __be32 *payload, lock_old;
1530 u32 lock_arg, lock_data;
1531
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001532 tcode = HEADER_GET_TCODE(packet->header[0]);
1533 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001534 payload = packet->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001535 ext_tcode = HEADER_GET_EXTENDED_TCODE(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001536
1537 if (tcode == TCODE_LOCK_REQUEST &&
1538 ext_tcode == EXTCODE_COMPARE_SWAP && length == 8) {
1539 lock_arg = be32_to_cpu(payload[0]);
1540 lock_data = be32_to_cpu(payload[1]);
1541 } else if (tcode == TCODE_READ_QUADLET_REQUEST) {
1542 lock_arg = 0;
1543 lock_data = 0;
1544 } else {
1545 fw_fill_response(&response, packet->header,
1546 RCODE_TYPE_ERROR, NULL, 0);
1547 goto out;
1548 }
1549
1550 sel = (csr - CSR_BUS_MANAGER_ID) / 4;
1551 reg_write(ohci, OHCI1394_CSRData, lock_data);
1552 reg_write(ohci, OHCI1394_CSRCompareData, lock_arg);
1553 reg_write(ohci, OHCI1394_CSRControl, sel);
1554
Clemens Ladische1393662010-04-12 10:35:44 +02001555 for (try = 0; try < 20; try++)
1556 if (reg_read(ohci, OHCI1394_CSRControl) & 0x80000000) {
1557 lock_old = cpu_to_be32(reg_read(ohci,
1558 OHCI1394_CSRData));
1559 fw_fill_response(&response, packet->header,
1560 RCODE_COMPLETE,
1561 &lock_old, sizeof(lock_old));
1562 goto out;
1563 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001564
Stefan Richter64d21722011-12-20 21:32:46 +01001565 dev_err(ohci->card.device, "swap not done (CSR lock timeout)\n");
Clemens Ladische1393662010-04-12 10:35:44 +02001566 fw_fill_response(&response, packet->header, RCODE_BUSY, NULL, 0);
1567
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001568 out:
1569 fw_core_handle_response(&ohci->card, &response);
1570}
1571
Stefan Richter53dca512008-12-14 21:47:04 +01001572static void handle_local_request(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001573{
Clemens Ladisch26082032010-04-12 10:35:30 +02001574 u64 offset, csr;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001575
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001576 if (ctx == &ctx->ohci->at_request_ctx) {
1577 packet->ack = ACK_PENDING;
1578 packet->callback(packet, &ctx->ohci->card, packet->ack);
1579 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001580
1581 offset =
1582 ((unsigned long long)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001583 HEADER_GET_OFFSET_HIGH(packet->header[1]) << 32) |
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001584 packet->header[2];
1585 csr = offset - CSR_REGISTER_BASE;
1586
1587 /* Handle config rom reads. */
1588 if (csr >= CSR_CONFIG_ROM && csr < CSR_CONFIG_ROM_END)
1589 handle_local_rom(ctx->ohci, packet, csr);
1590 else switch (csr) {
1591 case CSR_BUS_MANAGER_ID:
1592 case CSR_BANDWIDTH_AVAILABLE:
1593 case CSR_CHANNELS_AVAILABLE_HI:
1594 case CSR_CHANNELS_AVAILABLE_LO:
1595 handle_local_lock(ctx->ohci, packet, csr);
1596 break;
1597 default:
1598 if (ctx == &ctx->ohci->at_request_ctx)
1599 fw_core_handle_request(&ctx->ohci->card, packet);
1600 else
1601 fw_core_handle_response(&ctx->ohci->card, packet);
1602 break;
1603 }
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001604
1605 if (ctx == &ctx->ohci->at_response_ctx) {
1606 packet->ack = ACK_COMPLETE;
1607 packet->callback(packet, &ctx->ohci->card, packet->ack);
1608 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001609}
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001610
Stefan Richter53dca512008-12-14 21:47:04 +01001611static void at_context_transmit(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberged568912006-12-19 19:58:35 -05001612{
Kristian Høgsberged568912006-12-19 19:58:35 -05001613 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001614 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05001615
1616 spin_lock_irqsave(&ctx->ohci->lock, flags);
1617
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001618 if (HEADER_GET_DESTINATION(packet->header[0]) == ctx->ohci->node_id &&
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001619 ctx->ohci->generation == packet->generation) {
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001620 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1621 handle_local_request(ctx, packet);
1622 return;
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001623 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001624
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001625 ret = at_context_queue_packet(ctx, packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001626 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1627
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001628 if (ret < 0)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001629 packet->callback(packet, &ctx->ohci->card, packet->ack);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001630
Kristian Høgsberged568912006-12-19 19:58:35 -05001631}
1632
Clemens Ladischf117a3e2011-01-10 17:21:35 +01001633static void detect_dead_context(struct fw_ohci *ohci,
1634 const char *name, unsigned int regs)
1635{
1636 u32 ctl;
1637
1638 ctl = reg_read(ohci, CONTROL_SET(regs));
1639 if (ctl & CONTEXT_DEAD) {
1640#ifdef CONFIG_FIREWIRE_OHCI_DEBUG
Stefan Richter64d21722011-12-20 21:32:46 +01001641 dev_err(ohci->card.device,
1642 "DMA context %s has stopped, error code: %s\n",
1643 name, evts[ctl & 0x1f]);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01001644#else
Stefan Richter64d21722011-12-20 21:32:46 +01001645 dev_err(ohci->card.device,
1646 "DMA context %s has stopped, error code: %#x\n",
1647 name, ctl & 0x1f);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01001648#endif
1649 }
1650}
1651
1652static void handle_dead_contexts(struct fw_ohci *ohci)
1653{
1654 unsigned int i;
1655 char name[8];
1656
1657 detect_dead_context(ohci, "ATReq", OHCI1394_AsReqTrContextBase);
1658 detect_dead_context(ohci, "ATRsp", OHCI1394_AsRspTrContextBase);
1659 detect_dead_context(ohci, "ARReq", OHCI1394_AsReqRcvContextBase);
1660 detect_dead_context(ohci, "ARRsp", OHCI1394_AsRspRcvContextBase);
1661 for (i = 0; i < 32; ++i) {
1662 if (!(ohci->it_context_support & (1 << i)))
1663 continue;
1664 sprintf(name, "IT%u", i);
1665 detect_dead_context(ohci, name, OHCI1394_IsoXmitContextBase(i));
1666 }
1667 for (i = 0; i < 32; ++i) {
1668 if (!(ohci->ir_context_support & (1 << i)))
1669 continue;
1670 sprintf(name, "IR%u", i);
1671 detect_dead_context(ohci, name, OHCI1394_IsoRcvContextBase(i));
1672 }
1673 /* TODO: maybe try to flush and restart the dead contexts */
1674}
1675
Clemens Ladischa48777e2010-06-10 08:33:07 +02001676static u32 cycle_timer_ticks(u32 cycle_timer)
1677{
1678 u32 ticks;
1679
1680 ticks = cycle_timer & 0xfff;
1681 ticks += 3072 * ((cycle_timer >> 12) & 0x1fff);
1682 ticks += (3072 * 8000) * (cycle_timer >> 25);
1683
1684 return ticks;
1685}
1686
1687/*
1688 * Some controllers exhibit one or more of the following bugs when updating the
1689 * iso cycle timer register:
1690 * - When the lowest six bits are wrapping around to zero, a read that happens
1691 * at the same time will return garbage in the lowest ten bits.
1692 * - When the cycleOffset field wraps around to zero, the cycleCount field is
1693 * not incremented for about 60 ns.
1694 * - Occasionally, the entire register reads zero.
1695 *
1696 * To catch these, we read the register three times and ensure that the
1697 * difference between each two consecutive reads is approximately the same, i.e.
1698 * less than twice the other. Furthermore, any negative difference indicates an
1699 * error. (A PCI read should take at least 20 ticks of the 24.576 MHz timer to
1700 * execute, so we have enough precision to compute the ratio of the differences.)
1701 */
1702static u32 get_cycle_time(struct fw_ohci *ohci)
1703{
1704 u32 c0, c1, c2;
1705 u32 t0, t1, t2;
1706 s32 diff01, diff12;
1707 int i;
1708
1709 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1710
1711 if (ohci->quirks & QUIRK_CYCLE_TIMER) {
1712 i = 0;
1713 c1 = c2;
1714 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1715 do {
1716 c0 = c1;
1717 c1 = c2;
1718 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1719 t0 = cycle_timer_ticks(c0);
1720 t1 = cycle_timer_ticks(c1);
1721 t2 = cycle_timer_ticks(c2);
1722 diff01 = t1 - t0;
1723 diff12 = t2 - t1;
1724 } while ((diff01 <= 0 || diff12 <= 0 ||
1725 diff01 / diff12 >= 2 || diff12 / diff01 >= 2)
1726 && i++ < 20);
1727 }
1728
1729 return c2;
1730}
1731
1732/*
1733 * This function has to be called at least every 64 seconds. The bus_time
1734 * field stores not only the upper 25 bits of the BUS_TIME register but also
1735 * the most significant bit of the cycle timer in bit 6 so that we can detect
1736 * changes in this bit.
1737 */
1738static u32 update_bus_time(struct fw_ohci *ohci)
1739{
1740 u32 cycle_time_seconds = get_cycle_time(ohci) >> 25;
1741
1742 if ((ohci->bus_time & 0x40) != (cycle_time_seconds & 0x40))
1743 ohci->bus_time += 0x40;
1744
1745 return ohci->bus_time | cycle_time_seconds;
1746}
1747
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001748static int get_status_for_port(struct fw_ohci *ohci, int port_index)
1749{
1750 int reg;
1751
1752 mutex_lock(&ohci->phy_reg_mutex);
1753 reg = write_phy_reg(ohci, 7, port_index);
Stefan Richter28897fb2011-09-19 00:17:37 +02001754 if (reg >= 0)
1755 reg = read_phy_reg(ohci, 8);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001756 mutex_unlock(&ohci->phy_reg_mutex);
1757 if (reg < 0)
1758 return reg;
1759
1760 switch (reg & 0x0f) {
1761 case 0x06:
1762 return 2; /* is child node (connected to parent node) */
1763 case 0x0e:
1764 return 3; /* is parent node (connected to child node) */
1765 }
1766 return 1; /* not connected */
1767}
1768
1769static int get_self_id_pos(struct fw_ohci *ohci, u32 self_id,
1770 int self_id_count)
1771{
1772 int i;
1773 u32 entry;
Stefan Richter28897fb2011-09-19 00:17:37 +02001774
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001775 for (i = 0; i < self_id_count; i++) {
1776 entry = ohci->self_id_buffer[i];
1777 if ((self_id & 0xff000000) == (entry & 0xff000000))
1778 return -1;
1779 if ((self_id & 0xff000000) < (entry & 0xff000000))
1780 return i;
1781 }
1782 return i;
1783}
1784
1785/*
Stefan Richter28897fb2011-09-19 00:17:37 +02001786 * TI TSB82AA2B and TSB12LV26 do not receive the selfID of a locally
1787 * attached TSB41BA3D phy; see http://www.ti.com/litv/pdf/sllz059.
1788 * Construct the selfID from phy register contents.
1789 * FIXME: How to determine the selfID.i flag?
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001790 */
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001791static int find_and_insert_self_id(struct fw_ohci *ohci, int self_id_count)
1792{
Stefan Richter28897fb2011-09-19 00:17:37 +02001793 int reg, i, pos, status;
1794 /* link active 1, speed 3, bridge 0, contender 1, more packets 0 */
1795 u32 self_id = 0x8040c800;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001796
1797 reg = reg_read(ohci, OHCI1394_NodeID);
1798 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter64d21722011-12-20 21:32:46 +01001799 dev_notice(ohci->card.device,
1800 "node ID not valid, new bus reset in progress\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001801 return -EBUSY;
1802 }
1803 self_id |= ((reg & 0x3f) << 24); /* phy ID */
1804
Stefan Richter28897fb2011-09-19 00:17:37 +02001805 reg = ohci_read_phy_reg(&ohci->card, 4);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001806 if (reg < 0)
1807 return reg;
1808 self_id |= ((reg & 0x07) << 8); /* power class */
1809
Stefan Richter28897fb2011-09-19 00:17:37 +02001810 reg = ohci_read_phy_reg(&ohci->card, 1);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001811 if (reg < 0)
1812 return reg;
1813 self_id |= ((reg & 0x3f) << 16); /* gap count */
1814
1815 for (i = 0; i < 3; i++) {
1816 status = get_status_for_port(ohci, i);
1817 if (status < 0)
1818 return status;
1819 self_id |= ((status & 0x3) << (6 - (i * 2)));
1820 }
1821
1822 pos = get_self_id_pos(ohci, self_id, self_id_count);
1823 if (pos >= 0) {
1824 memmove(&(ohci->self_id_buffer[pos+1]),
1825 &(ohci->self_id_buffer[pos]),
1826 (self_id_count - pos) * sizeof(*ohci->self_id_buffer));
1827 ohci->self_id_buffer[pos] = self_id;
1828 self_id_count++;
1829 }
1830 return self_id_count;
1831}
1832
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02001833static void bus_reset_work(struct work_struct *work)
Kristian Høgsberged568912006-12-19 19:58:35 -05001834{
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02001835 struct fw_ohci *ohci =
1836 container_of(work, struct fw_ohci, bus_reset_work);
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001837 int self_id_count, i, j, reg;
Kristian Høgsberged568912006-12-19 19:58:35 -05001838 int generation, new_generation;
1839 unsigned long flags;
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001840 void *free_rom = NULL;
1841 dma_addr_t free_rom_bus = 0;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001842 bool is_new_root;
Kristian Høgsberged568912006-12-19 19:58:35 -05001843
1844 reg = reg_read(ohci, OHCI1394_NodeID);
1845 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter64d21722011-12-20 21:32:46 +01001846 dev_notice(ohci->card.device,
1847 "node ID not valid, new bus reset in progress\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05001848 return;
1849 }
Stefan Richter02ff8f82007-08-30 00:11:40 +02001850 if ((reg & OHCI1394_NodeID_nodeNumber) == 63) {
Stefan Richter64d21722011-12-20 21:32:46 +01001851 dev_notice(ohci->card.device, "malconfigured bus\n");
Stefan Richter02ff8f82007-08-30 00:11:40 +02001852 return;
1853 }
1854 ohci->node_id = reg & (OHCI1394_NodeID_busNumber |
1855 OHCI1394_NodeID_nodeNumber);
Kristian Høgsberged568912006-12-19 19:58:35 -05001856
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001857 is_new_root = (reg & OHCI1394_NodeID_root) != 0;
1858 if (!(ohci->is_root && is_new_root))
1859 reg_write(ohci, OHCI1394_LinkControlSet,
1860 OHCI1394_LinkControl_cycleMaster);
1861 ohci->is_root = is_new_root;
1862
Stefan Richterc8a9a492008-03-19 21:40:32 +01001863 reg = reg_read(ohci, OHCI1394_SelfIDCount);
1864 if (reg & OHCI1394_SelfIDCount_selfIDError) {
Stefan Richter64d21722011-12-20 21:32:46 +01001865 dev_notice(ohci->card.device, "inconsistent self IDs\n");
Stefan Richterc8a9a492008-03-19 21:40:32 +01001866 return;
1867 }
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001868 /*
1869 * The count in the SelfIDCount register is the number of
Kristian Høgsberged568912006-12-19 19:58:35 -05001870 * bytes in the self ID receive buffer. Since we also receive
1871 * the inverted quadlets and a header quadlet, we shift one
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001872 * bit extra to get the actual number of self IDs.
1873 */
Stefan Richter928ec5f2009-09-06 18:49:17 +02001874 self_id_count = (reg >> 3) & 0xff;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001875
1876 if (self_id_count > 252) {
Stefan Richter64d21722011-12-20 21:32:46 +01001877 dev_notice(ohci->card.device, "inconsistent self IDs\n");
Stefan Richter016bf3d2008-03-19 22:05:02 +01001878 return;
1879 }
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001880
Stefan Richter11bf20a2008-03-01 02:47:15 +01001881 generation = (cond_le32_to_cpu(ohci->self_id_cpu[0]) >> 16) & 0xff;
Stefan Richteree71c2f2007-08-25 14:08:19 +02001882 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001883
1884 for (i = 1, j = 0; j < self_id_count; i += 2, j++) {
Stefan Richterc8a9a492008-03-19 21:40:32 +01001885 if (ohci->self_id_cpu[i] != ~ohci->self_id_cpu[i + 1]) {
Clemens Ladisch32eaeae2011-10-15 18:14:39 +02001886 /*
1887 * If the invalid data looks like a cycle start packet,
1888 * it's likely to be the result of the cycle master
1889 * having a wrong gap count. In this case, the self IDs
1890 * so far are valid and should be processed so that the
1891 * bus manager can then correct the gap count.
1892 */
1893 if (cond_le32_to_cpu(ohci->self_id_cpu[i])
1894 == 0xffff008f) {
Stefan Richter64d21722011-12-20 21:32:46 +01001895 dev_notice(ohci->card.device,
1896 "ignoring spurious self IDs\n");
Clemens Ladisch32eaeae2011-10-15 18:14:39 +02001897 self_id_count = j;
1898 break;
1899 } else {
Stefan Richter64d21722011-12-20 21:32:46 +01001900 dev_notice(ohci->card.device,
1901 "inconsistent self IDs\n");
Clemens Ladisch32eaeae2011-10-15 18:14:39 +02001902 return;
1903 }
Stefan Richterc8a9a492008-03-19 21:40:32 +01001904 }
Stefan Richter11bf20a2008-03-01 02:47:15 +01001905 ohci->self_id_buffer[j] =
1906 cond_le32_to_cpu(ohci->self_id_cpu[i]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001907 }
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001908
1909 if (ohci->quirks & QUIRK_TI_SLLZ059) {
1910 self_id_count = find_and_insert_self_id(ohci, self_id_count);
1911 if (self_id_count < 0) {
Stefan Richter64d21722011-12-20 21:32:46 +01001912 dev_notice(ohci->card.device,
1913 "could not construct local self ID\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001914 return;
1915 }
1916 }
1917
1918 if (self_id_count == 0) {
Stefan Richter64d21722011-12-20 21:32:46 +01001919 dev_notice(ohci->card.device, "inconsistent self IDs\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001920 return;
1921 }
Stefan Richteree71c2f2007-08-25 14:08:19 +02001922 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001923
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001924 /*
1925 * Check the consistency of the self IDs we just read. The
Kristian Høgsberged568912006-12-19 19:58:35 -05001926 * problem we face is that a new bus reset can start while we
1927 * read out the self IDs from the DMA buffer. If this happens,
1928 * the DMA buffer will be overwritten with new self IDs and we
1929 * will read out inconsistent data. The OHCI specification
1930 * (section 11.2) recommends a technique similar to
1931 * linux/seqlock.h, where we remember the generation of the
1932 * self IDs in the buffer before reading them out and compare
1933 * it to the current generation after reading them out. If
1934 * the two generations match we know we have a consistent set
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001935 * of self IDs.
1936 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001937
1938 new_generation = (reg_read(ohci, OHCI1394_SelfIDCount) >> 16) & 0xff;
1939 if (new_generation != generation) {
Stefan Richter64d21722011-12-20 21:32:46 +01001940 dev_notice(ohci->card.device,
1941 "new bus reset, discarding self ids\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05001942 return;
1943 }
1944
1945 /* FIXME: Document how the locking works. */
1946 spin_lock_irqsave(&ohci->lock, flags);
1947
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001948 ohci->generation = -1; /* prevent AT packet queueing */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001949 context_stop(&ohci->at_request_ctx);
1950 context_stop(&ohci->at_response_ctx);
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001951
1952 spin_unlock_irqrestore(&ohci->lock, flags);
1953
Stefan Richter78dec562011-01-01 15:15:40 +01001954 /*
1955 * Per OHCI 1.2 draft, clause 7.2.3.3, hardware may leave unsent
1956 * packets in the AT queues and software needs to drain them.
1957 * Some OHCI 1.1 controllers (JMicron) apparently require this too.
1958 */
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001959 at_context_flush(&ohci->at_request_ctx);
1960 at_context_flush(&ohci->at_response_ctx);
1961
1962 spin_lock_irqsave(&ohci->lock, flags);
1963
1964 ohci->generation = generation;
Kristian Høgsberged568912006-12-19 19:58:35 -05001965 reg_write(ohci, OHCI1394_IntEventClear, OHCI1394_busReset);
1966
Stefan Richter4a635592010-02-21 17:58:01 +01001967 if (ohci->quirks & QUIRK_RESET_PACKET)
Stefan Richterd34316a2008-04-12 22:31:25 +02001968 ohci->request_generation = generation;
1969
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001970 /*
1971 * This next bit is unrelated to the AT context stuff but we
Kristian Høgsberged568912006-12-19 19:58:35 -05001972 * have to do it under the spinlock also. If a new config rom
1973 * was set up before this reset, the old one is now no longer
1974 * in use and we can free it. Update the config rom pointers
1975 * to point to the current config rom and clear the
Thomas Weber88393162010-03-16 11:47:56 +01001976 * next_config_rom pointer so a new update can take place.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001977 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001978
1979 if (ohci->next_config_rom != NULL) {
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001980 if (ohci->next_config_rom != ohci->config_rom) {
1981 free_rom = ohci->config_rom;
1982 free_rom_bus = ohci->config_rom_bus;
1983 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001984 ohci->config_rom = ohci->next_config_rom;
1985 ohci->config_rom_bus = ohci->next_config_rom_bus;
1986 ohci->next_config_rom = NULL;
1987
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001988 /*
1989 * Restore config_rom image and manually update
Kristian Høgsberged568912006-12-19 19:58:35 -05001990 * config_rom registers. Writing the header quadlet
1991 * will indicate that the config rom is ready, so we
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001992 * do that last.
1993 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001994 reg_write(ohci, OHCI1394_BusOptions,
1995 be32_to_cpu(ohci->config_rom[2]));
Stefan Richter8e859732009-10-08 00:41:59 +02001996 ohci->config_rom[0] = ohci->next_header;
1997 reg_write(ohci, OHCI1394_ConfigROMhdr,
1998 be32_to_cpu(ohci->next_header));
Kristian Høgsberged568912006-12-19 19:58:35 -05001999 }
2000
Stefan Richter080de8c2008-02-28 20:54:43 +01002001#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
2002 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, ~0);
2003 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, ~0);
2004#endif
2005
Kristian Høgsberged568912006-12-19 19:58:35 -05002006 spin_unlock_irqrestore(&ohci->lock, flags);
2007
Stefan Richter4eaff7d2007-07-25 19:18:08 +02002008 if (free_rom)
2009 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2010 free_rom, free_rom_bus);
2011
Stefan Richter64d21722011-12-20 21:32:46 +01002012 log_selfids(ohci, generation, self_id_count);
Stefan Richterad3c0fe2008-03-20 22:04:36 +01002013
Kristian Høgsberge636fe22007-01-26 00:38:04 -05002014 fw_core_handle_bus_reset(&ohci->card, ohci->node_id, generation,
Stefan Richterc8a94de2010-06-12 20:34:50 +02002015 self_id_count, ohci->self_id_buffer,
2016 ohci->csr_state_setclear_abdicate);
2017 ohci->csr_state_setclear_abdicate = false;
Kristian Høgsberged568912006-12-19 19:58:35 -05002018}
2019
2020static irqreturn_t irq_handler(int irq, void *data)
2021{
2022 struct fw_ohci *ohci = data;
Stefan Richter168cf9a2010-02-14 18:49:18 +01002023 u32 event, iso_event;
Kristian Høgsberged568912006-12-19 19:58:35 -05002024 int i;
2025
2026 event = reg_read(ohci, OHCI1394_IntEventClear);
2027
Stefan Richtera5159582007-06-09 19:31:14 +02002028 if (!event || !~event)
Kristian Høgsberged568912006-12-19 19:58:35 -05002029 return IRQ_NONE;
2030
Clemens Ladisch8327b372010-11-30 08:24:32 +01002031 /*
2032 * busReset and postedWriteErr must not be cleared yet
2033 * (OHCI 1.1 clauses 7.2.3.2 and 13.2.8.1)
2034 */
2035 reg_write(ohci, OHCI1394_IntEventClear,
2036 event & ~(OHCI1394_busReset | OHCI1394_postedWriteErr));
Stefan Richter64d21722011-12-20 21:32:46 +01002037 log_irqs(ohci, event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002038
2039 if (event & OHCI1394_selfIDComplete)
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02002040 queue_work(fw_workqueue, &ohci->bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05002041
2042 if (event & OHCI1394_RQPkt)
2043 tasklet_schedule(&ohci->ar_request_ctx.tasklet);
2044
2045 if (event & OHCI1394_RSPkt)
2046 tasklet_schedule(&ohci->ar_response_ctx.tasklet);
2047
2048 if (event & OHCI1394_reqTxComplete)
2049 tasklet_schedule(&ohci->at_request_ctx.tasklet);
2050
2051 if (event & OHCI1394_respTxComplete)
2052 tasklet_schedule(&ohci->at_response_ctx.tasklet);
2053
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002054 if (event & OHCI1394_isochRx) {
2055 iso_event = reg_read(ohci, OHCI1394_IsoRecvIntEventClear);
2056 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, iso_event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002057
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002058 while (iso_event) {
2059 i = ffs(iso_event) - 1;
2060 tasklet_schedule(
2061 &ohci->ir_context_list[i].context.tasklet);
2062 iso_event &= ~(1 << i);
2063 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002064 }
2065
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002066 if (event & OHCI1394_isochTx) {
2067 iso_event = reg_read(ohci, OHCI1394_IsoXmitIntEventClear);
2068 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, iso_event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002069
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002070 while (iso_event) {
2071 i = ffs(iso_event) - 1;
2072 tasklet_schedule(
2073 &ohci->it_context_list[i].context.tasklet);
2074 iso_event &= ~(1 << i);
2075 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002076 }
2077
Jarod Wilson75f78322008-04-03 17:18:23 -04002078 if (unlikely(event & OHCI1394_regAccessFail))
Stefan Richter64d21722011-12-20 21:32:46 +01002079 dev_err(ohci->card.device,
2080 "register access failure - please notify linux1394-devel@lists.sf.net\n");
Jarod Wilson75f78322008-04-03 17:18:23 -04002081
Clemens Ladisch8327b372010-11-30 08:24:32 +01002082 if (unlikely(event & OHCI1394_postedWriteErr)) {
2083 reg_read(ohci, OHCI1394_PostedWriteAddressHi);
2084 reg_read(ohci, OHCI1394_PostedWriteAddressLo);
2085 reg_write(ohci, OHCI1394_IntEventClear,
2086 OHCI1394_postedWriteErr);
Stephan Gatzkaa74477d2011-09-26 21:44:30 +02002087 if (printk_ratelimit())
Stefan Richter64d21722011-12-20 21:32:46 +01002088 dev_err(ohci->card.device, "PCI posted write error\n");
Clemens Ladisch8327b372010-11-30 08:24:32 +01002089 }
Stefan Richtere524f6162007-08-20 21:58:30 +02002090
Stefan Richterbb9f2202007-12-22 22:14:52 +01002091 if (unlikely(event & OHCI1394_cycleTooLong)) {
2092 if (printk_ratelimit())
Stefan Richter64d21722011-12-20 21:32:46 +01002093 dev_notice(ohci->card.device,
2094 "isochronous cycle too long\n");
Stefan Richterbb9f2202007-12-22 22:14:52 +01002095 reg_write(ohci, OHCI1394_LinkControlSet,
2096 OHCI1394_LinkControl_cycleMaster);
2097 }
2098
Jay Fenlason5ed1f322009-11-17 12:29:17 -05002099 if (unlikely(event & OHCI1394_cycleInconsistent)) {
2100 /*
2101 * We need to clear this event bit in order to make
2102 * cycleMatch isochronous I/O work. In theory we should
2103 * stop active cycleMatch iso contexts now and restart
2104 * them at least two cycles later. (FIXME?)
2105 */
2106 if (printk_ratelimit())
Stefan Richter64d21722011-12-20 21:32:46 +01002107 dev_notice(ohci->card.device,
2108 "isochronous cycle inconsistent\n");
Jay Fenlason5ed1f322009-11-17 12:29:17 -05002109 }
2110
Clemens Ladischf117a3e2011-01-10 17:21:35 +01002111 if (unlikely(event & OHCI1394_unrecoverableError))
2112 handle_dead_contexts(ohci);
2113
Clemens Ladischa48777e2010-06-10 08:33:07 +02002114 if (event & OHCI1394_cycle64Seconds) {
2115 spin_lock(&ohci->lock);
2116 update_bus_time(ohci);
2117 spin_unlock(&ohci->lock);
Clemens Ladische597e982010-11-30 08:24:19 +01002118 } else
2119 flush_writes(ohci);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002120
Kristian Høgsberged568912006-12-19 19:58:35 -05002121 return IRQ_HANDLED;
2122}
2123
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002124static int software_reset(struct fw_ohci *ohci)
2125{
Stefan Richter9f426172011-07-03 17:39:26 +02002126 u32 val;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002127 int i;
2128
2129 reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset);
Stefan Richter9f426172011-07-03 17:39:26 +02002130 for (i = 0; i < 500; i++) {
2131 val = reg_read(ohci, OHCI1394_HCControlSet);
2132 if (!~val)
2133 return -ENODEV; /* Card was ejected. */
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002134
Stefan Richter9f426172011-07-03 17:39:26 +02002135 if (!(val & OHCI1394_HCControl_softReset))
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002136 return 0;
Stefan Richter9f426172011-07-03 17:39:26 +02002137
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002138 msleep(1);
2139 }
2140
2141 return -EBUSY;
2142}
2143
Stefan Richter8e859732009-10-08 00:41:59 +02002144static void copy_config_rom(__be32 *dest, const __be32 *src, size_t length)
2145{
2146 size_t size = length * 4;
2147
2148 memcpy(dest, src, size);
2149 if (size < CONFIG_ROM_SIZE)
2150 memset(&dest[length], 0, CONFIG_ROM_SIZE - size);
2151}
2152
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002153static int configure_1394a_enhancements(struct fw_ohci *ohci)
2154{
2155 bool enable_1394a;
Stefan Richter35d999b2010-04-10 16:04:56 +02002156 int ret, clear, set, offset;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002157
2158 /* Check if the driver should configure link and PHY. */
2159 if (!(reg_read(ohci, OHCI1394_HCControlSet) &
2160 OHCI1394_HCControl_programPhyEnable))
2161 return 0;
2162
2163 /* Paranoia: check whether the PHY supports 1394a, too. */
2164 enable_1394a = false;
Stefan Richter35d999b2010-04-10 16:04:56 +02002165 ret = read_phy_reg(ohci, 2);
2166 if (ret < 0)
2167 return ret;
2168 if ((ret & PHY_EXTENDED_REGISTERS) == PHY_EXTENDED_REGISTERS) {
2169 ret = read_paged_phy_reg(ohci, 1, 8);
2170 if (ret < 0)
2171 return ret;
2172 if (ret >= 1)
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002173 enable_1394a = true;
2174 }
2175
2176 if (ohci->quirks & QUIRK_NO_1394A)
2177 enable_1394a = false;
2178
2179 /* Configure PHY and link consistently. */
2180 if (enable_1394a) {
2181 clear = 0;
2182 set = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
2183 } else {
2184 clear = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
2185 set = 0;
2186 }
Stefan Richter02d37be2010-07-08 16:09:06 +02002187 ret = update_phy_reg(ohci, 5, clear, set);
Stefan Richter35d999b2010-04-10 16:04:56 +02002188 if (ret < 0)
2189 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002190
2191 if (enable_1394a)
2192 offset = OHCI1394_HCControlSet;
2193 else
2194 offset = OHCI1394_HCControlClear;
2195 reg_write(ohci, offset, OHCI1394_HCControl_aPhyEnhanceEnable);
2196
2197 /* Clean up: configuration has been taken care of. */
2198 reg_write(ohci, OHCI1394_HCControlClear,
2199 OHCI1394_HCControl_programPhyEnable);
2200
2201 return 0;
2202}
2203
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002204static int probe_tsb41ba3d(struct fw_ohci *ohci)
2205{
Stefan Richterb810e4a2011-09-19 09:29:30 +02002206 /* TI vendor ID = 0x080028, TSB41BA3D product ID = 0x833005 (sic) */
2207 static const u8 id[] = { 0x08, 0x00, 0x28, 0x83, 0x30, 0x05, };
2208 int reg, i;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002209
2210 reg = read_phy_reg(ohci, 2);
2211 if (reg < 0)
2212 return reg;
Stefan Richterb810e4a2011-09-19 09:29:30 +02002213 if ((reg & PHY_EXTENDED_REGISTERS) != PHY_EXTENDED_REGISTERS)
2214 return 0;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002215
Stefan Richterb810e4a2011-09-19 09:29:30 +02002216 for (i = ARRAY_SIZE(id) - 1; i >= 0; i--) {
2217 reg = read_paged_phy_reg(ohci, 1, i + 10);
2218 if (reg < 0)
2219 return reg;
2220 if (reg != id[i])
2221 return 0;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002222 }
Stefan Richterb810e4a2011-09-19 09:29:30 +02002223 return 1;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002224}
2225
Stefan Richter8e859732009-10-08 00:41:59 +02002226static int ohci_enable(struct fw_card *card,
2227 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05002228{
2229 struct fw_ohci *ohci = fw_ohci(card);
2230 struct pci_dev *dev = to_pci_dev(card->device);
Clemens Ladische91b2782010-06-10 08:40:49 +02002231 u32 lps, seconds, version, irqs;
Stefan Richter28897fb2011-09-19 00:17:37 +02002232 int i, ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05002233
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002234 if (software_reset(ohci)) {
Stefan Richter64d21722011-12-20 21:32:46 +01002235 dev_err(card->device, "failed to reset ohci card\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002236 return -EBUSY;
2237 }
2238
2239 /*
2240 * Now enable LPS, which we need in order to start accessing
2241 * most of the registers. In fact, on some cards (ALI M5251),
2242 * accessing registers in the SClk domain without LPS enabled
2243 * will lock up the machine. Wait 50msec to make sure we have
Jarod Wilson02214722008-03-28 10:02:50 -04002244 * full link enabled. However, with some cards (well, at least
2245 * a JMicron PCIe card), we have to try again sometimes.
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002246 */
2247 reg_write(ohci, OHCI1394_HCControlSet,
2248 OHCI1394_HCControl_LPS |
2249 OHCI1394_HCControl_postedWriteEnable);
2250 flush_writes(ohci);
Jarod Wilson02214722008-03-28 10:02:50 -04002251
2252 for (lps = 0, i = 0; !lps && i < 3; i++) {
2253 msleep(50);
2254 lps = reg_read(ohci, OHCI1394_HCControlSet) &
2255 OHCI1394_HCControl_LPS;
2256 }
2257
2258 if (!lps) {
Stefan Richter64d21722011-12-20 21:32:46 +01002259 dev_err(card->device, "failed to set Link Power Status\n");
Jarod Wilson02214722008-03-28 10:02:50 -04002260 return -EIO;
2261 }
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002262
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002263 if (ohci->quirks & QUIRK_TI_SLLZ059) {
Stefan Richter28897fb2011-09-19 00:17:37 +02002264 ret = probe_tsb41ba3d(ohci);
2265 if (ret < 0)
2266 return ret;
2267 if (ret)
Stefan Richter64d21722011-12-20 21:32:46 +01002268 dev_notice(card->device, "local TSB41BA3D phy\n");
Stefan Richter28897fb2011-09-19 00:17:37 +02002269 else
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002270 ohci->quirks &= ~QUIRK_TI_SLLZ059;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002271 }
2272
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002273 reg_write(ohci, OHCI1394_HCControlClear,
2274 OHCI1394_HCControl_noByteSwapData);
2275
Stefan Richteraffc9c22008-06-05 20:50:53 +02002276 reg_write(ohci, OHCI1394_SelfIDBuffer, ohci->self_id_bus);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002277 reg_write(ohci, OHCI1394_LinkControlSet,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002278 OHCI1394_LinkControl_cycleTimerEnable |
2279 OHCI1394_LinkControl_cycleMaster);
2280
2281 reg_write(ohci, OHCI1394_ATRetries,
2282 OHCI1394_MAX_AT_REQ_RETRIES |
2283 (OHCI1394_MAX_AT_RESP_RETRIES << 4) |
Clemens Ladisch27a23292010-06-10 08:34:13 +02002284 (OHCI1394_MAX_PHYS_RESP_RETRIES << 8) |
2285 (200 << 16));
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002286
Clemens Ladischa48777e2010-06-10 08:33:07 +02002287 seconds = lower_32_bits(get_seconds());
2288 reg_write(ohci, OHCI1394_IsochronousCycleTimer, seconds << 25);
2289 ohci->bus_time = seconds & ~0x3f;
2290
Clemens Ladische91b2782010-06-10 08:40:49 +02002291 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
2292 if (version >= OHCI_VERSION_1_1) {
2293 reg_write(ohci, OHCI1394_InitialChannelsAvailableHi,
2294 0xfffffffe);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02002295 card->broadcast_channel_auto_allocated = true;
Clemens Ladische91b2782010-06-10 08:40:49 +02002296 }
2297
Clemens Ladischa1a11322010-06-10 08:35:06 +02002298 /* Get implemented bits of the priority arbitration request counter. */
2299 reg_write(ohci, OHCI1394_FairnessControl, 0x3f);
2300 ohci->pri_req_max = reg_read(ohci, OHCI1394_FairnessControl) & 0x3f;
2301 reg_write(ohci, OHCI1394_FairnessControl, 0);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02002302 card->priority_budget_implemented = ohci->pri_req_max != 0;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002303
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002304 reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000);
2305 reg_write(ohci, OHCI1394_IntEventClear, ~0);
2306 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002307
Stefan Richter35d999b2010-04-10 16:04:56 +02002308 ret = configure_1394a_enhancements(ohci);
2309 if (ret < 0)
2310 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002311
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002312 /* Activate link_on bit and contender bit in our self ID packets.*/
Stefan Richter35d999b2010-04-10 16:04:56 +02002313 ret = ohci_update_phy_reg(card, 4, 0, PHY_LINK_ACTIVE | PHY_CONTENDER);
2314 if (ret < 0)
2315 return ret;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002316
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002317 /*
2318 * When the link is not yet enabled, the atomic config rom
Kristian Høgsberged568912006-12-19 19:58:35 -05002319 * update mechanism described below in ohci_set_config_rom()
2320 * is not active. We have to update ConfigRomHeader and
2321 * BusOptions manually, and the write to ConfigROMmap takes
2322 * effect immediately. We tie this to the enabling of the
2323 * link, so we have a valid config rom before enabling - the
2324 * OHCI requires that ConfigROMhdr and BusOptions have valid
2325 * values before enabling.
2326 *
2327 * However, when the ConfigROMmap is written, some controllers
2328 * always read back quadlets 0 and 2 from the config rom to
2329 * the ConfigRomHeader and BusOptions registers on bus reset.
2330 * They shouldn't do that in this initial case where the link
2331 * isn't enabled. This means we have to use the same
2332 * workaround here, setting the bus header to 0 and then write
2333 * the right values in the bus reset tasklet.
2334 */
2335
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002336 if (config_rom) {
2337 ohci->next_config_rom =
2338 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2339 &ohci->next_config_rom_bus,
2340 GFP_KERNEL);
2341 if (ohci->next_config_rom == NULL)
2342 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05002343
Stefan Richter8e859732009-10-08 00:41:59 +02002344 copy_config_rom(ohci->next_config_rom, config_rom, length);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002345 } else {
2346 /*
2347 * In the suspend case, config_rom is NULL, which
2348 * means that we just reuse the old config rom.
2349 */
2350 ohci->next_config_rom = ohci->config_rom;
2351 ohci->next_config_rom_bus = ohci->config_rom_bus;
2352 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002353
Stefan Richter8e859732009-10-08 00:41:59 +02002354 ohci->next_header = ohci->next_config_rom[0];
Kristian Høgsberged568912006-12-19 19:58:35 -05002355 ohci->next_config_rom[0] = 0;
2356 reg_write(ohci, OHCI1394_ConfigROMhdr, 0);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002357 reg_write(ohci, OHCI1394_BusOptions,
2358 be32_to_cpu(ohci->next_config_rom[2]));
Kristian Høgsberged568912006-12-19 19:58:35 -05002359 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
2360
2361 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
2362
Clemens Ladisch262444e2010-06-05 12:31:25 +02002363 if (!(ohci->quirks & QUIRK_NO_MSI))
2364 pci_enable_msi(dev);
Kristian Høgsberged568912006-12-19 19:58:35 -05002365 if (request_irq(dev->irq, irq_handler,
Clemens Ladisch262444e2010-06-05 12:31:25 +02002366 pci_dev_msi_enabled(dev) ? 0 : IRQF_SHARED,
2367 ohci_driver_name, ohci)) {
Stefan Richter64d21722011-12-20 21:32:46 +01002368 dev_err(card->device, "failed to allocate interrupt %d\n",
2369 dev->irq);
Clemens Ladisch262444e2010-06-05 12:31:25 +02002370 pci_disable_msi(dev);
Stefan Richtera01e8362011-08-11 20:40:42 +02002371
2372 if (config_rom) {
2373 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2374 ohci->next_config_rom,
2375 ohci->next_config_rom_bus);
2376 ohci->next_config_rom = NULL;
2377 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002378 return -EIO;
2379 }
2380
Stefan Richter148c7862010-06-05 11:46:49 +02002381 irqs = OHCI1394_reqTxComplete | OHCI1394_respTxComplete |
2382 OHCI1394_RQPkt | OHCI1394_RSPkt |
2383 OHCI1394_isochTx | OHCI1394_isochRx |
2384 OHCI1394_postedWriteErr |
2385 OHCI1394_selfIDComplete |
2386 OHCI1394_regAccessFail |
Clemens Ladischa48777e2010-06-10 08:33:07 +02002387 OHCI1394_cycle64Seconds |
Clemens Ladischf117a3e2011-01-10 17:21:35 +01002388 OHCI1394_cycleInconsistent |
2389 OHCI1394_unrecoverableError |
2390 OHCI1394_cycleTooLong |
Stefan Richter148c7862010-06-05 11:46:49 +02002391 OHCI1394_masterIntEnable;
2392 if (param_debug & OHCI_PARAM_DEBUG_BUSRESETS)
2393 irqs |= OHCI1394_busReset;
2394 reg_write(ohci, OHCI1394_IntMaskSet, irqs);
2395
Kristian Høgsberged568912006-12-19 19:58:35 -05002396 reg_write(ohci, OHCI1394_HCControlSet,
2397 OHCI1394_HCControl_linkEnable |
2398 OHCI1394_HCControl_BIBimageValid);
Clemens Ladischecf83282011-04-11 09:56:12 +02002399
2400 reg_write(ohci, OHCI1394_LinkControlSet,
2401 OHCI1394_LinkControl_rcvSelfID |
2402 OHCI1394_LinkControl_rcvPhyPkt);
2403
2404 ar_context_run(&ohci->ar_request_ctx);
Clemens Ladischdd6254e2011-05-16 08:10:10 +02002405 ar_context_run(&ohci->ar_response_ctx);
2406
2407 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002408
Stefan Richter02d37be2010-07-08 16:09:06 +02002409 /* We are ready to go, reset bus to finish initialization. */
2410 fw_schedule_bus_reset(&ohci->card, false, true);
Kristian Høgsberged568912006-12-19 19:58:35 -05002411
2412 return 0;
2413}
2414
Stefan Richter53dca512008-12-14 21:47:04 +01002415static int ohci_set_config_rom(struct fw_card *card,
Stefan Richter8e859732009-10-08 00:41:59 +02002416 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05002417{
2418 struct fw_ohci *ohci;
2419 unsigned long flags;
Kristian Høgsberged568912006-12-19 19:58:35 -05002420 __be32 *next_config_rom;
Stefan Richterf5101d582008-03-14 00:27:49 +01002421 dma_addr_t uninitialized_var(next_config_rom_bus);
Kristian Høgsberged568912006-12-19 19:58:35 -05002422
2423 ohci = fw_ohci(card);
2424
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002425 /*
2426 * When the OHCI controller is enabled, the config rom update
Kristian Høgsberged568912006-12-19 19:58:35 -05002427 * mechanism is a bit tricky, but easy enough to use. See
2428 * section 5.5.6 in the OHCI specification.
2429 *
2430 * The OHCI controller caches the new config rom address in a
2431 * shadow register (ConfigROMmapNext) and needs a bus reset
2432 * for the changes to take place. When the bus reset is
2433 * detected, the controller loads the new values for the
2434 * ConfigRomHeader and BusOptions registers from the specified
2435 * config rom and loads ConfigROMmap from the ConfigROMmapNext
2436 * shadow register. All automatically and atomically.
2437 *
2438 * Now, there's a twist to this story. The automatic load of
2439 * ConfigRomHeader and BusOptions doesn't honor the
2440 * noByteSwapData bit, so with a be32 config rom, the
2441 * controller will load be32 values in to these registers
2442 * during the atomic update, even on litte endian
2443 * architectures. The workaround we use is to put a 0 in the
2444 * header quadlet; 0 is endian agnostic and means that the
2445 * config rom isn't ready yet. In the bus reset tasklet we
2446 * then set up the real values for the two registers.
2447 *
2448 * We use ohci->lock to avoid racing with the code that sets
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02002449 * ohci->next_config_rom to NULL (see bus_reset_work).
Kristian Høgsberged568912006-12-19 19:58:35 -05002450 */
2451
2452 next_config_rom =
2453 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2454 &next_config_rom_bus, GFP_KERNEL);
2455 if (next_config_rom == NULL)
2456 return -ENOMEM;
2457
2458 spin_lock_irqsave(&ohci->lock, flags);
2459
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002460 /*
2461 * If there is not an already pending config_rom update,
2462 * push our new allocation into the ohci->next_config_rom
2463 * and then mark the local variable as null so that we
2464 * won't deallocate the new buffer.
2465 *
2466 * OTOH, if there is a pending config_rom update, just
2467 * use that buffer with the new config_rom data, and
2468 * let this routine free the unused DMA allocation.
2469 */
2470
Kristian Høgsberged568912006-12-19 19:58:35 -05002471 if (ohci->next_config_rom == NULL) {
2472 ohci->next_config_rom = next_config_rom;
2473 ohci->next_config_rom_bus = next_config_rom_bus;
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002474 next_config_rom = NULL;
Kristian Høgsberged568912006-12-19 19:58:35 -05002475 }
2476
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002477 copy_config_rom(ohci->next_config_rom, config_rom, length);
2478
2479 ohci->next_header = config_rom[0];
2480 ohci->next_config_rom[0] = 0;
2481
2482 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
2483
Kristian Høgsberged568912006-12-19 19:58:35 -05002484 spin_unlock_irqrestore(&ohci->lock, flags);
2485
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002486 /* If we didn't use the DMA allocation, delete it. */
2487 if (next_config_rom != NULL)
2488 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2489 next_config_rom, next_config_rom_bus);
2490
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002491 /*
2492 * Now initiate a bus reset to have the changes take
Kristian Høgsberged568912006-12-19 19:58:35 -05002493 * effect. We clean up the old config rom memory and DMA
2494 * mappings in the bus reset tasklet, since the OHCI
2495 * controller could need to access it before the bus reset
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002496 * takes effect.
2497 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002498
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002499 fw_schedule_bus_reset(&ohci->card, true, true);
2500
2501 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002502}
2503
2504static void ohci_send_request(struct fw_card *card, struct fw_packet *packet)
2505{
2506 struct fw_ohci *ohci = fw_ohci(card);
2507
2508 at_context_transmit(&ohci->at_request_ctx, packet);
2509}
2510
2511static void ohci_send_response(struct fw_card *card, struct fw_packet *packet)
2512{
2513 struct fw_ohci *ohci = fw_ohci(card);
2514
2515 at_context_transmit(&ohci->at_response_ctx, packet);
2516}
2517
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002518static int ohci_cancel_packet(struct fw_card *card, struct fw_packet *packet)
2519{
2520 struct fw_ohci *ohci = fw_ohci(card);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002521 struct context *ctx = &ohci->at_request_ctx;
2522 struct driver_data *driver_data = packet->driver_data;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002523 int ret = -ENOENT;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002524
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002525 tasklet_disable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002526
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002527 if (packet->ack != 0)
2528 goto out;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002529
Stefan Richter19593ff2009-10-14 20:40:10 +02002530 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01002531 dma_unmap_single(ohci->card.device, packet->payload_bus,
2532 packet->payload_length, DMA_TO_DEVICE);
2533
Stefan Richter64d21722011-12-20 21:32:46 +01002534 log_ar_at_event(ohci, 'T', packet->speed, packet->header, 0x20);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002535 driver_data->packet = NULL;
2536 packet->ack = RCODE_CANCELLED;
2537 packet->callback(packet, &ohci->card, packet->ack);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002538 ret = 0;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002539 out:
2540 tasklet_enable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002541
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002542 return ret;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002543}
2544
Stefan Richter53dca512008-12-14 21:47:04 +01002545static int ohci_enable_phys_dma(struct fw_card *card,
2546 int node_id, int generation)
Kristian Høgsberged568912006-12-19 19:58:35 -05002547{
Stefan Richter080de8c2008-02-28 20:54:43 +01002548#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
2549 return 0;
2550#else
Kristian Høgsberged568912006-12-19 19:58:35 -05002551 struct fw_ohci *ohci = fw_ohci(card);
2552 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002553 int n, ret = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002554
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002555 /*
2556 * FIXME: Make sure this bitmask is cleared when we clear the busReset
2557 * interrupt bit. Clear physReqResourceAllBuses on bus reset.
2558 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002559
2560 spin_lock_irqsave(&ohci->lock, flags);
2561
2562 if (ohci->generation != generation) {
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002563 ret = -ESTALE;
Kristian Høgsberged568912006-12-19 19:58:35 -05002564 goto out;
2565 }
2566
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002567 /*
2568 * Note, if the node ID contains a non-local bus ID, physical DMA is
2569 * enabled for _all_ nodes on remote buses.
2570 */
Stefan Richter907293d2007-01-23 21:11:43 +01002571
2572 n = (node_id & 0xffc0) == LOCAL_BUS ? node_id & 0x3f : 63;
2573 if (n < 32)
2574 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 1 << n);
2575 else
2576 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 1 << (n - 32));
2577
Kristian Høgsberged568912006-12-19 19:58:35 -05002578 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002579 out:
Stefan Richter6cad95f2007-01-21 20:46:45 +01002580 spin_unlock_irqrestore(&ohci->lock, flags);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002581
2582 return ret;
Stefan Richter080de8c2008-02-28 20:54:43 +01002583#endif /* CONFIG_FIREWIRE_OHCI_REMOTE_DMA */
Kristian Høgsberged568912006-12-19 19:58:35 -05002584}
Stefan Richter373b2ed2007-03-04 14:45:18 +01002585
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002586static u32 ohci_read_csr(struct fw_card *card, int csr_offset)
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002587{
2588 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002589 unsigned long flags;
2590 u32 value;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002591
Clemens Ladisch60d32972010-06-10 08:24:35 +02002592 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002593 case CSR_STATE_CLEAR:
2594 case CSR_STATE_SET:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002595 if (ohci->is_root &&
2596 (reg_read(ohci, OHCI1394_LinkControlSet) &
2597 OHCI1394_LinkControl_cycleMaster))
Stefan Richterc8a94de2010-06-12 20:34:50 +02002598 value = CSR_STATE_BIT_CMSTR;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002599 else
Stefan Richterc8a94de2010-06-12 20:34:50 +02002600 value = 0;
2601 if (ohci->csr_state_setclear_abdicate)
2602 value |= CSR_STATE_BIT_ABDICATE;
Stefan Richter4a9bde92010-02-20 22:24:43 +01002603
Stefan Richterc8a94de2010-06-12 20:34:50 +02002604 return value;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002605
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002606 case CSR_NODE_IDS:
2607 return reg_read(ohci, OHCI1394_NodeID) << 16;
2608
Clemens Ladisch60d32972010-06-10 08:24:35 +02002609 case CSR_CYCLE_TIME:
2610 return get_cycle_time(ohci);
2611
Clemens Ladischa48777e2010-06-10 08:33:07 +02002612 case CSR_BUS_TIME:
2613 /*
2614 * We might be called just after the cycle timer has wrapped
2615 * around but just before the cycle64Seconds handler, so we
2616 * better check here, too, if the bus time needs to be updated.
2617 */
2618 spin_lock_irqsave(&ohci->lock, flags);
2619 value = update_bus_time(ohci);
2620 spin_unlock_irqrestore(&ohci->lock, flags);
2621 return value;
2622
Clemens Ladisch27a23292010-06-10 08:34:13 +02002623 case CSR_BUSY_TIMEOUT:
2624 value = reg_read(ohci, OHCI1394_ATRetries);
2625 return (value >> 4) & 0x0ffff00f;
2626
Clemens Ladischa1a11322010-06-10 08:35:06 +02002627 case CSR_PRIORITY_BUDGET:
2628 return (reg_read(ohci, OHCI1394_FairnessControl) & 0x3f) |
2629 (ohci->pri_req_max << 8);
2630
Clemens Ladisch60d32972010-06-10 08:24:35 +02002631 default:
2632 WARN_ON(1);
2633 return 0;
Clemens Ladischb6775322010-01-20 09:58:02 +01002634 }
Clemens Ladisch60d32972010-06-10 08:24:35 +02002635}
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002636
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002637static void ohci_write_csr(struct fw_card *card, int csr_offset, u32 value)
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002638{
2639 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002640 unsigned long flags;
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002641
2642 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002643 case CSR_STATE_CLEAR:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002644 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2645 reg_write(ohci, OHCI1394_LinkControlClear,
2646 OHCI1394_LinkControl_cycleMaster);
2647 flush_writes(ohci);
2648 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002649 if (value & CSR_STATE_BIT_ABDICATE)
2650 ohci->csr_state_setclear_abdicate = false;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002651 break;
2652
2653 case CSR_STATE_SET:
2654 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2655 reg_write(ohci, OHCI1394_LinkControlSet,
2656 OHCI1394_LinkControl_cycleMaster);
2657 flush_writes(ohci);
2658 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002659 if (value & CSR_STATE_BIT_ABDICATE)
2660 ohci->csr_state_setclear_abdicate = true;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002661 break;
2662
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002663 case CSR_NODE_IDS:
2664 reg_write(ohci, OHCI1394_NodeID, value >> 16);
2665 flush_writes(ohci);
2666 break;
2667
Clemens Ladisch9ab50712010-06-10 08:26:48 +02002668 case CSR_CYCLE_TIME:
2669 reg_write(ohci, OHCI1394_IsochronousCycleTimer, value);
2670 reg_write(ohci, OHCI1394_IntEventSet,
2671 OHCI1394_cycleInconsistent);
2672 flush_writes(ohci);
2673 break;
2674
Clemens Ladischa48777e2010-06-10 08:33:07 +02002675 case CSR_BUS_TIME:
2676 spin_lock_irqsave(&ohci->lock, flags);
2677 ohci->bus_time = (ohci->bus_time & 0x7f) | (value & ~0x7f);
2678 spin_unlock_irqrestore(&ohci->lock, flags);
2679 break;
2680
Clemens Ladisch27a23292010-06-10 08:34:13 +02002681 case CSR_BUSY_TIMEOUT:
2682 value = (value & 0xf) | ((value & 0xf) << 4) |
2683 ((value & 0xf) << 8) | ((value & 0x0ffff000) << 4);
2684 reg_write(ohci, OHCI1394_ATRetries, value);
2685 flush_writes(ohci);
2686 break;
2687
Clemens Ladischa1a11322010-06-10 08:35:06 +02002688 case CSR_PRIORITY_BUDGET:
2689 reg_write(ohci, OHCI1394_FairnessControl, value & 0x3f);
2690 flush_writes(ohci);
2691 break;
2692
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002693 default:
2694 WARN_ON(1);
2695 break;
2696 }
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002697}
2698
David Moore1aa292b2008-07-22 23:23:40 -07002699static void copy_iso_headers(struct iso_context *ctx, void *p)
2700{
2701 int i = ctx->header_length;
2702
2703 if (i + ctx->base.header_size > PAGE_SIZE)
2704 return;
2705
2706 /*
2707 * The iso header is byteswapped to little endian by
2708 * the controller, but the remaining header quadlets
2709 * are big endian. We want to present all the headers
2710 * as big endian, so we have to swap the first quadlet.
2711 */
2712 if (ctx->base.header_size > 0)
2713 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
2714 if (ctx->base.header_size > 4)
2715 *(u32 *) (ctx->header + i + 4) = __swab32(*(u32 *) p);
2716 if (ctx->base.header_size > 8)
2717 memcpy(ctx->header + i + 8, p + 8, ctx->base.header_size - 8);
2718 ctx->header_length += ctx->base.header_size;
2719}
2720
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002721static int handle_ir_packet_per_buffer(struct context *context,
2722 struct descriptor *d,
2723 struct descriptor *last)
2724{
2725 struct iso_context *ctx =
2726 container_of(context, struct iso_context, context);
David Moorebcee8932007-12-19 15:26:38 -05002727 struct descriptor *pd;
Clemens Ladischa572e682011-10-15 23:12:23 +02002728 u32 buffer_dma;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002729 __le32 *ir_header;
David Moorebcee8932007-12-19 15:26:38 -05002730 void *p;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002731
Stefan Richter872e3302010-07-29 18:19:22 +02002732 for (pd = d; pd <= last; pd++)
David Moorebcee8932007-12-19 15:26:38 -05002733 if (pd->transfer_status)
2734 break;
David Moorebcee8932007-12-19 15:26:38 -05002735 if (pd > last)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002736 /* Descriptor(s) not done yet, stop iteration */
2737 return 0;
2738
Clemens Ladischa572e682011-10-15 23:12:23 +02002739 while (!(d->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))) {
2740 d++;
2741 buffer_dma = le32_to_cpu(d->data_address);
2742 dma_sync_single_range_for_cpu(context->ohci->card.device,
2743 buffer_dma & PAGE_MASK,
2744 buffer_dma & ~PAGE_MASK,
2745 le16_to_cpu(d->req_count),
2746 DMA_FROM_DEVICE);
2747 }
2748
David Moore1aa292b2008-07-22 23:23:40 -07002749 p = last + 1;
2750 copy_iso_headers(ctx, p);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002751
David Moorebcee8932007-12-19 15:26:38 -05002752 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
2753 ir_header = (__le32 *) p;
Stefan Richter872e3302010-07-29 18:19:22 +02002754 ctx->base.callback.sc(&ctx->base,
2755 le32_to_cpu(ir_header[0]) & 0xffff,
2756 ctx->header_length, ctx->header,
2757 ctx->base.callback_data);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002758 ctx->header_length = 0;
2759 }
2760
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002761 return 1;
2762}
2763
Stefan Richter872e3302010-07-29 18:19:22 +02002764/* d == last because each descriptor block is only a single descriptor. */
2765static int handle_ir_buffer_fill(struct context *context,
2766 struct descriptor *d,
2767 struct descriptor *last)
2768{
2769 struct iso_context *ctx =
2770 container_of(context, struct iso_context, context);
Clemens Ladischa572e682011-10-15 23:12:23 +02002771 u32 buffer_dma;
Stefan Richter872e3302010-07-29 18:19:22 +02002772
2773 if (!last->transfer_status)
2774 /* Descriptor(s) not done yet, stop iteration */
2775 return 0;
2776
Clemens Ladischa572e682011-10-15 23:12:23 +02002777 buffer_dma = le32_to_cpu(last->data_address);
2778 dma_sync_single_range_for_cpu(context->ohci->card.device,
2779 buffer_dma & PAGE_MASK,
2780 buffer_dma & ~PAGE_MASK,
2781 le16_to_cpu(last->req_count),
2782 DMA_FROM_DEVICE);
2783
Stefan Richter872e3302010-07-29 18:19:22 +02002784 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS)
2785 ctx->base.callback.mc(&ctx->base,
2786 le32_to_cpu(last->data_address) +
2787 le16_to_cpu(last->req_count) -
2788 le16_to_cpu(last->res_count),
2789 ctx->base.callback_data);
2790
2791 return 1;
2792}
2793
Clemens Ladischa572e682011-10-15 23:12:23 +02002794static inline void sync_it_packet_for_cpu(struct context *context,
2795 struct descriptor *pd)
2796{
2797 __le16 control;
2798 u32 buffer_dma;
2799
2800 /* only packets beginning with OUTPUT_MORE* have data buffers */
2801 if (pd->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
2802 return;
2803
2804 /* skip over the OUTPUT_MORE_IMMEDIATE descriptor */
2805 pd += 2;
2806
2807 /*
2808 * If the packet has a header, the first OUTPUT_MORE/LAST descriptor's
2809 * data buffer is in the context program's coherent page and must not
2810 * be synced.
2811 */
2812 if ((le32_to_cpu(pd->data_address) & PAGE_MASK) ==
2813 (context->current_bus & PAGE_MASK)) {
2814 if (pd->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
2815 return;
2816 pd++;
2817 }
2818
2819 do {
2820 buffer_dma = le32_to_cpu(pd->data_address);
2821 dma_sync_single_range_for_cpu(context->ohci->card.device,
2822 buffer_dma & PAGE_MASK,
2823 buffer_dma & ~PAGE_MASK,
2824 le16_to_cpu(pd->req_count),
2825 DMA_TO_DEVICE);
2826 control = pd->control;
2827 pd++;
2828 } while (!(control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS)));
2829}
2830
Kristian Høgsberg30200732007-02-16 17:34:39 -05002831static int handle_it_packet(struct context *context,
2832 struct descriptor *d,
2833 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05002834{
Kristian Høgsberg30200732007-02-16 17:34:39 -05002835 struct iso_context *ctx =
2836 container_of(context, struct iso_context, context);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002837 int i;
2838 struct descriptor *pd;
Stefan Richter373b2ed2007-03-04 14:45:18 +01002839
Jay Fenlason31769ce2009-11-21 00:05:56 +01002840 for (pd = d; pd <= last; pd++)
2841 if (pd->transfer_status)
2842 break;
2843 if (pd > last)
2844 /* Descriptor(s) not done yet, stop iteration */
Kristian Høgsberg30200732007-02-16 17:34:39 -05002845 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002846
Clemens Ladischa572e682011-10-15 23:12:23 +02002847 sync_it_packet_for_cpu(context, d);
2848
Jay Fenlason31769ce2009-11-21 00:05:56 +01002849 i = ctx->header_length;
2850 if (i + 4 < PAGE_SIZE) {
2851 /* Present this value as big-endian to match the receive code */
2852 *(__be32 *)(ctx->header + i) = cpu_to_be32(
2853 ((u32)le16_to_cpu(pd->transfer_status) << 16) |
2854 le16_to_cpu(pd->res_count));
2855 ctx->header_length += 4;
2856 }
2857 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
Stefan Richter872e3302010-07-29 18:19:22 +02002858 ctx->base.callback.sc(&ctx->base, le16_to_cpu(last->res_count),
2859 ctx->header_length, ctx->header,
2860 ctx->base.callback_data);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002861 ctx->header_length = 0;
2862 }
Kristian Høgsberg30200732007-02-16 17:34:39 -05002863 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05002864}
2865
Stefan Richter872e3302010-07-29 18:19:22 +02002866static void set_multichannel_mask(struct fw_ohci *ohci, u64 channels)
2867{
2868 u32 hi = channels >> 32, lo = channels;
2869
2870 reg_write(ohci, OHCI1394_IRMultiChanMaskHiClear, ~hi);
2871 reg_write(ohci, OHCI1394_IRMultiChanMaskLoClear, ~lo);
2872 reg_write(ohci, OHCI1394_IRMultiChanMaskHiSet, hi);
2873 reg_write(ohci, OHCI1394_IRMultiChanMaskLoSet, lo);
2874 mmiowb();
2875 ohci->mc_channels = channels;
2876}
2877
Stefan Richter53dca512008-12-14 21:47:04 +01002878static struct fw_iso_context *ohci_allocate_iso_context(struct fw_card *card,
Stefan Richter4817ed22008-12-21 16:39:46 +01002879 int type, int channel, size_t header_size)
Kristian Høgsberged568912006-12-19 19:58:35 -05002880{
2881 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter872e3302010-07-29 18:19:22 +02002882 struct iso_context *uninitialized_var(ctx);
2883 descriptor_callback_t uninitialized_var(callback);
2884 u64 *uninitialized_var(channels);
2885 u32 *uninitialized_var(mask), uninitialized_var(regs);
Kristian Høgsberged568912006-12-19 19:58:35 -05002886 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02002887 int index, ret = -EBUSY;
Kristian Høgsberged568912006-12-19 19:58:35 -05002888
2889 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002890
2891 switch (type) {
2892 case FW_ISO_CONTEXT_TRANSMIT:
2893 mask = &ohci->it_context_mask;
2894 callback = handle_it_packet;
2895 index = ffs(*mask) - 1;
2896 if (index >= 0) {
2897 *mask &= ~(1 << index);
2898 regs = OHCI1394_IsoXmitContextBase(index);
2899 ctx = &ohci->it_context_list[index];
2900 }
2901 break;
2902
2903 case FW_ISO_CONTEXT_RECEIVE:
2904 channels = &ohci->ir_context_channels;
2905 mask = &ohci->ir_context_mask;
2906 callback = handle_ir_packet_per_buffer;
2907 index = *channels & 1ULL << channel ? ffs(*mask) - 1 : -1;
2908 if (index >= 0) {
2909 *channels &= ~(1ULL << channel);
2910 *mask &= ~(1 << index);
2911 regs = OHCI1394_IsoRcvContextBase(index);
2912 ctx = &ohci->ir_context_list[index];
2913 }
2914 break;
2915
2916 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2917 mask = &ohci->ir_context_mask;
2918 callback = handle_ir_buffer_fill;
2919 index = !ohci->mc_allocated ? ffs(*mask) - 1 : -1;
2920 if (index >= 0) {
2921 ohci->mc_allocated = true;
2922 *mask &= ~(1 << index);
2923 regs = OHCI1394_IsoRcvContextBase(index);
2924 ctx = &ohci->ir_context_list[index];
2925 }
2926 break;
2927
2928 default:
2929 index = -1;
2930 ret = -ENOSYS;
Stefan Richter4817ed22008-12-21 16:39:46 +01002931 }
Stefan Richter872e3302010-07-29 18:19:22 +02002932
Kristian Høgsberged568912006-12-19 19:58:35 -05002933 spin_unlock_irqrestore(&ohci->lock, flags);
2934
2935 if (index < 0)
Stefan Richter872e3302010-07-29 18:19:22 +02002936 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002937
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04002938 memset(ctx, 0, sizeof(*ctx));
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002939 ctx->header_length = 0;
2940 ctx->header = (void *) __get_free_page(GFP_KERNEL);
Stefan Richter872e3302010-07-29 18:19:22 +02002941 if (ctx->header == NULL) {
2942 ret = -ENOMEM;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002943 goto out;
Stefan Richter872e3302010-07-29 18:19:22 +02002944 }
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002945 ret = context_init(&ctx->context, ohci, regs, callback);
2946 if (ret < 0)
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002947 goto out_with_header;
Kristian Høgsberged568912006-12-19 19:58:35 -05002948
Stefan Richter872e3302010-07-29 18:19:22 +02002949 if (type == FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL)
2950 set_multichannel_mask(ohci, 0);
2951
Kristian Høgsberged568912006-12-19 19:58:35 -05002952 return &ctx->base;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002953
2954 out_with_header:
2955 free_page((unsigned long)ctx->header);
2956 out:
2957 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002958
2959 switch (type) {
2960 case FW_ISO_CONTEXT_RECEIVE:
2961 *channels |= 1ULL << channel;
2962 break;
2963
2964 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2965 ohci->mc_allocated = false;
2966 break;
2967 }
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002968 *mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02002969
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002970 spin_unlock_irqrestore(&ohci->lock, flags);
2971
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002972 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002973}
2974
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04002975static int ohci_start_iso(struct fw_iso_context *base,
2976 s32 cycle, u32 sync, u32 tags)
Kristian Høgsberged568912006-12-19 19:58:35 -05002977{
Stefan Richter373b2ed2007-03-04 14:45:18 +01002978 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05002979 struct fw_ohci *ohci = ctx->context.ohci;
Stefan Richter872e3302010-07-29 18:19:22 +02002980 u32 control = IR_CONTEXT_ISOCH_HEADER, match;
Kristian Høgsberged568912006-12-19 19:58:35 -05002981 int index;
2982
Clemens Ladisch44b74d92011-02-23 09:27:40 +01002983 /* the controller cannot start without any queued packets */
2984 if (ctx->context.last->branch_address == 0)
2985 return -ENODATA;
2986
Stefan Richter872e3302010-07-29 18:19:22 +02002987 switch (ctx->base.type) {
2988 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002989 index = ctx - ohci->it_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002990 match = 0;
2991 if (cycle >= 0)
2992 match = IT_CONTEXT_CYCLE_MATCH_ENABLE |
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002993 (cycle & 0x7fff) << 16;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05002994
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002995 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 1 << index);
2996 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, 1 << index);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002997 context_run(&ctx->context, match);
Stefan Richter872e3302010-07-29 18:19:22 +02002998 break;
2999
3000 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3001 control |= IR_CONTEXT_BUFFER_FILL|IR_CONTEXT_MULTI_CHANNEL_MODE;
3002 /* fall through */
3003 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003004 index = ctx - ohci->ir_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04003005 match = (tags << 28) | (sync << 8) | ctx->base.channel;
3006 if (cycle >= 0) {
3007 match |= (cycle & 0x07fff) << 12;
3008 control |= IR_CONTEXT_CYCLE_MATCH_ENABLE;
3009 }
Kristian Høgsberged568912006-12-19 19:58:35 -05003010
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003011 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 1 << index);
3012 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, 1 << index);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003013 reg_write(ohci, CONTEXT_MATCH(ctx->context.regs), match);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04003014 context_run(&ctx->context, control);
Maxim Levitskydd237362010-11-29 04:09:50 +02003015
3016 ctx->sync = sync;
3017 ctx->tags = tags;
3018
Stefan Richter872e3302010-07-29 18:19:22 +02003019 break;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003020 }
Kristian Høgsberged568912006-12-19 19:58:35 -05003021
3022 return 0;
3023}
3024
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003025static int ohci_stop_iso(struct fw_iso_context *base)
3026{
3027 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01003028 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003029 int index;
3030
Stefan Richter872e3302010-07-29 18:19:22 +02003031 switch (ctx->base.type) {
3032 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003033 index = ctx - ohci->it_context_list;
3034 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02003035 break;
3036
3037 case FW_ISO_CONTEXT_RECEIVE:
3038 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003039 index = ctx - ohci->ir_context_list;
3040 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02003041 break;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003042 }
3043 flush_writes(ohci);
3044 context_stop(&ctx->context);
Clemens Ladische81cbeb2011-02-16 10:32:11 +01003045 tasklet_kill(&ctx->context.tasklet);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003046
3047 return 0;
3048}
3049
Kristian Høgsberged568912006-12-19 19:58:35 -05003050static void ohci_free_iso_context(struct fw_iso_context *base)
3051{
3052 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01003053 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberged568912006-12-19 19:58:35 -05003054 unsigned long flags;
3055 int index;
3056
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003057 ohci_stop_iso(base);
3058 context_release(&ctx->context);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05003059 free_page((unsigned long)ctx->header);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003060
Kristian Høgsberged568912006-12-19 19:58:35 -05003061 spin_lock_irqsave(&ohci->lock, flags);
3062
Stefan Richter872e3302010-07-29 18:19:22 +02003063 switch (base->type) {
3064 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberged568912006-12-19 19:58:35 -05003065 index = ctx - ohci->it_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05003066 ohci->it_context_mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02003067 break;
3068
3069 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberged568912006-12-19 19:58:35 -05003070 index = ctx - ohci->ir_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05003071 ohci->ir_context_mask |= 1 << index;
Stefan Richter4817ed22008-12-21 16:39:46 +01003072 ohci->ir_context_channels |= 1ULL << base->channel;
Stefan Richter872e3302010-07-29 18:19:22 +02003073 break;
3074
3075 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3076 index = ctx - ohci->ir_context_list;
3077 ohci->ir_context_mask |= 1 << index;
3078 ohci->ir_context_channels |= ohci->mc_channels;
3079 ohci->mc_channels = 0;
3080 ohci->mc_allocated = false;
3081 break;
Kristian Høgsberged568912006-12-19 19:58:35 -05003082 }
Kristian Høgsberged568912006-12-19 19:58:35 -05003083
3084 spin_unlock_irqrestore(&ohci->lock, flags);
3085}
3086
Stefan Richter872e3302010-07-29 18:19:22 +02003087static int ohci_set_iso_channels(struct fw_iso_context *base, u64 *channels)
Kristian Høgsberged568912006-12-19 19:58:35 -05003088{
Stefan Richter872e3302010-07-29 18:19:22 +02003089 struct fw_ohci *ohci = fw_ohci(base->card);
3090 unsigned long flags;
3091 int ret;
3092
3093 switch (base->type) {
3094 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3095
3096 spin_lock_irqsave(&ohci->lock, flags);
3097
3098 /* Don't allow multichannel to grab other contexts' channels. */
3099 if (~ohci->ir_context_channels & ~ohci->mc_channels & *channels) {
3100 *channels = ohci->ir_context_channels;
3101 ret = -EBUSY;
3102 } else {
3103 set_multichannel_mask(ohci, *channels);
3104 ret = 0;
3105 }
3106
3107 spin_unlock_irqrestore(&ohci->lock, flags);
3108
3109 break;
3110 default:
3111 ret = -EINVAL;
3112 }
3113
3114 return ret;
3115}
3116
Maxim Levitskydd237362010-11-29 04:09:50 +02003117#ifdef CONFIG_PM
3118static void ohci_resume_iso_dma(struct fw_ohci *ohci)
3119{
3120 int i;
3121 struct iso_context *ctx;
3122
3123 for (i = 0 ; i < ohci->n_ir ; i++) {
3124 ctx = &ohci->ir_context_list[i];
Stefan Richter693a50b2011-01-01 15:17:05 +01003125 if (ctx->context.running)
Maxim Levitskydd237362010-11-29 04:09:50 +02003126 ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags);
3127 }
3128
3129 for (i = 0 ; i < ohci->n_it ; i++) {
3130 ctx = &ohci->it_context_list[i];
Stefan Richter693a50b2011-01-01 15:17:05 +01003131 if (ctx->context.running)
Maxim Levitskydd237362010-11-29 04:09:50 +02003132 ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags);
3133 }
3134}
3135#endif
3136
Stefan Richter872e3302010-07-29 18:19:22 +02003137static int queue_iso_transmit(struct iso_context *ctx,
3138 struct fw_iso_packet *packet,
3139 struct fw_iso_buffer *buffer,
3140 unsigned long payload)
3141{
Kristian Høgsberg30200732007-02-16 17:34:39 -05003142 struct descriptor *d, *last, *pd;
Kristian Høgsberged568912006-12-19 19:58:35 -05003143 struct fw_iso_packet *p;
3144 __le32 *header;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003145 dma_addr_t d_bus, page_bus;
Kristian Høgsberged568912006-12-19 19:58:35 -05003146 u32 z, header_z, payload_z, irq;
3147 u32 payload_index, payload_end_index, next_page_index;
Kristian Høgsberg30200732007-02-16 17:34:39 -05003148 int page, end_page, i, length, offset;
Kristian Høgsberged568912006-12-19 19:58:35 -05003149
Kristian Høgsberged568912006-12-19 19:58:35 -05003150 p = packet;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003151 payload_index = payload;
Kristian Høgsberged568912006-12-19 19:58:35 -05003152
3153 if (p->skip)
3154 z = 1;
3155 else
3156 z = 2;
3157 if (p->header_length > 0)
3158 z++;
3159
3160 /* Determine the first page the payload isn't contained in. */
3161 end_page = PAGE_ALIGN(payload_index + p->payload_length) >> PAGE_SHIFT;
3162 if (p->payload_length > 0)
3163 payload_z = end_page - (payload_index >> PAGE_SHIFT);
3164 else
3165 payload_z = 0;
3166
3167 z += payload_z;
3168
3169 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003170 header_z = DIV_ROUND_UP(p->header_length, sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05003171
Kristian Høgsberg30200732007-02-16 17:34:39 -05003172 d = context_get_descriptors(&ctx->context, z + header_z, &d_bus);
3173 if (d == NULL)
3174 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05003175
3176 if (!p->skip) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003177 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsberged568912006-12-19 19:58:35 -05003178 d[0].req_count = cpu_to_le16(8);
Clemens Ladisch7f51a102010-02-08 08:30:03 +01003179 /*
3180 * Link the skip address to this descriptor itself. This causes
3181 * a context to skip a cycle whenever lost cycles or FIFO
3182 * overruns occur, without dropping the data. The application
3183 * should then decide whether this is an error condition or not.
3184 * FIXME: Make the context's cycle-lost behaviour configurable?
3185 */
3186 d[0].branch_address = cpu_to_le32(d_bus | z);
Kristian Høgsberged568912006-12-19 19:58:35 -05003187
3188 header = (__le32 *) &d[1];
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003189 header[0] = cpu_to_le32(IT_HEADER_SY(p->sy) |
3190 IT_HEADER_TAG(p->tag) |
3191 IT_HEADER_TCODE(TCODE_STREAM_DATA) |
3192 IT_HEADER_CHANNEL(ctx->base.channel) |
3193 IT_HEADER_SPEED(ctx->base.speed));
Kristian Høgsberged568912006-12-19 19:58:35 -05003194 header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003195 cpu_to_le32(IT_HEADER_DATA_LENGTH(p->header_length +
Kristian Høgsberged568912006-12-19 19:58:35 -05003196 p->payload_length));
3197 }
3198
3199 if (p->header_length > 0) {
3200 d[2].req_count = cpu_to_le16(p->header_length);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003201 d[2].data_address = cpu_to_le32(d_bus + z * sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05003202 memcpy(&d[z], p->header, p->header_length);
3203 }
3204
3205 pd = d + z - payload_z;
3206 payload_end_index = payload_index + p->payload_length;
3207 for (i = 0; i < payload_z; i++) {
3208 page = payload_index >> PAGE_SHIFT;
3209 offset = payload_index & ~PAGE_MASK;
3210 next_page_index = (page + 1) << PAGE_SHIFT;
3211 length =
3212 min(next_page_index, payload_end_index) - payload_index;
3213 pd[i].req_count = cpu_to_le16(length);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003214
3215 page_bus = page_private(buffer->pages[page]);
3216 pd[i].data_address = cpu_to_le32(page_bus + offset);
Kristian Høgsberged568912006-12-19 19:58:35 -05003217
Clemens Ladischa572e682011-10-15 23:12:23 +02003218 dma_sync_single_range_for_device(ctx->context.ohci->card.device,
3219 page_bus, offset, length,
3220 DMA_TO_DEVICE);
3221
Kristian Høgsberged568912006-12-19 19:58:35 -05003222 payload_index += length;
3223 }
3224
Kristian Høgsberged568912006-12-19 19:58:35 -05003225 if (p->interrupt)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003226 irq = DESCRIPTOR_IRQ_ALWAYS;
Kristian Høgsberged568912006-12-19 19:58:35 -05003227 else
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003228 irq = DESCRIPTOR_NO_IRQ;
Kristian Høgsberged568912006-12-19 19:58:35 -05003229
Kristian Høgsberg30200732007-02-16 17:34:39 -05003230 last = z == 2 ? d : d + z - 1;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003231 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
3232 DESCRIPTOR_STATUS |
3233 DESCRIPTOR_BRANCH_ALWAYS |
Kristian Høgsbergcbb59da2007-02-16 17:34:35 -05003234 irq);
Kristian Høgsberged568912006-12-19 19:58:35 -05003235
Kristian Høgsberg30200732007-02-16 17:34:39 -05003236 context_append(&ctx->context, d, z, header_z);
Kristian Høgsberged568912006-12-19 19:58:35 -05003237
3238 return 0;
3239}
Stefan Richter373b2ed2007-03-04 14:45:18 +01003240
Stefan Richter872e3302010-07-29 18:19:22 +02003241static int queue_iso_packet_per_buffer(struct iso_context *ctx,
3242 struct fw_iso_packet *packet,
3243 struct fw_iso_buffer *buffer,
3244 unsigned long payload)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003245{
Clemens Ladischa572e682011-10-15 23:12:23 +02003246 struct device *device = ctx->context.ohci->card.device;
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003247 struct descriptor *d, *pd;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003248 dma_addr_t d_bus, page_bus;
3249 u32 z, header_z, rest;
David Moorebcee8932007-12-19 15:26:38 -05003250 int i, j, length;
3251 int page, offset, packet_count, header_size, payload_per_buffer;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003252
3253 /*
David Moore1aa292b2008-07-22 23:23:40 -07003254 * The OHCI controller puts the isochronous header and trailer in the
3255 * buffer, so we need at least 8 bytes.
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003256 */
Stefan Richter872e3302010-07-29 18:19:22 +02003257 packet_count = packet->header_length / ctx->base.header_size;
David Moore1aa292b2008-07-22 23:23:40 -07003258 header_size = max(ctx->base.header_size, (size_t)8);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003259
3260 /* Get header size in number of descriptors. */
3261 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
3262 page = payload >> PAGE_SHIFT;
3263 offset = payload & ~PAGE_MASK;
Stefan Richter872e3302010-07-29 18:19:22 +02003264 payload_per_buffer = packet->payload_length / packet_count;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003265
3266 for (i = 0; i < packet_count; i++) {
3267 /* d points to the header descriptor */
David Moorebcee8932007-12-19 15:26:38 -05003268 z = DIV_ROUND_UP(payload_per_buffer + offset, PAGE_SIZE) + 1;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003269 d = context_get_descriptors(&ctx->context,
David Moorebcee8932007-12-19 15:26:38 -05003270 z + header_z, &d_bus);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003271 if (d == NULL)
3272 return -ENOMEM;
3273
David Moorebcee8932007-12-19 15:26:38 -05003274 d->control = cpu_to_le16(DESCRIPTOR_STATUS |
3275 DESCRIPTOR_INPUT_MORE);
Stefan Richter872e3302010-07-29 18:19:22 +02003276 if (packet->skip && i == 0)
David Moorebcee8932007-12-19 15:26:38 -05003277 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003278 d->req_count = cpu_to_le16(header_size);
3279 d->res_count = d->req_count;
David Moorebcee8932007-12-19 15:26:38 -05003280 d->transfer_status = 0;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003281 d->data_address = cpu_to_le32(d_bus + (z * sizeof(*d)));
3282
David Moorebcee8932007-12-19 15:26:38 -05003283 rest = payload_per_buffer;
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003284 pd = d;
David Moorebcee8932007-12-19 15:26:38 -05003285 for (j = 1; j < z; j++) {
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003286 pd++;
David Moorebcee8932007-12-19 15:26:38 -05003287 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
3288 DESCRIPTOR_INPUT_MORE);
3289
3290 if (offset + rest < PAGE_SIZE)
3291 length = rest;
3292 else
3293 length = PAGE_SIZE - offset;
3294 pd->req_count = cpu_to_le16(length);
3295 pd->res_count = pd->req_count;
3296 pd->transfer_status = 0;
3297
3298 page_bus = page_private(buffer->pages[page]);
3299 pd->data_address = cpu_to_le32(page_bus + offset);
3300
Clemens Ladischa572e682011-10-15 23:12:23 +02003301 dma_sync_single_range_for_device(device, page_bus,
3302 offset, length,
3303 DMA_FROM_DEVICE);
3304
David Moorebcee8932007-12-19 15:26:38 -05003305 offset = (offset + length) & ~PAGE_MASK;
3306 rest -= length;
3307 if (offset == 0)
3308 page++;
3309 }
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003310 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
3311 DESCRIPTOR_INPUT_LAST |
3312 DESCRIPTOR_BRANCH_ALWAYS);
Stefan Richter872e3302010-07-29 18:19:22 +02003313 if (packet->interrupt && i == packet_count - 1)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003314 pd->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
3315
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003316 context_append(&ctx->context, d, z, header_z);
3317 }
3318
3319 return 0;
3320}
3321
Stefan Richter872e3302010-07-29 18:19:22 +02003322static int queue_iso_buffer_fill(struct iso_context *ctx,
3323 struct fw_iso_packet *packet,
3324 struct fw_iso_buffer *buffer,
3325 unsigned long payload)
3326{
3327 struct descriptor *d;
3328 dma_addr_t d_bus, page_bus;
3329 int page, offset, rest, z, i, length;
3330
3331 page = payload >> PAGE_SHIFT;
3332 offset = payload & ~PAGE_MASK;
3333 rest = packet->payload_length;
3334
3335 /* We need one descriptor for each page in the buffer. */
3336 z = DIV_ROUND_UP(offset + rest, PAGE_SIZE);
3337
3338 if (WARN_ON(offset & 3 || rest & 3 || page + z > buffer->page_count))
3339 return -EFAULT;
3340
3341 for (i = 0; i < z; i++) {
3342 d = context_get_descriptors(&ctx->context, 1, &d_bus);
3343 if (d == NULL)
3344 return -ENOMEM;
3345
3346 d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
3347 DESCRIPTOR_BRANCH_ALWAYS);
3348 if (packet->skip && i == 0)
3349 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
3350 if (packet->interrupt && i == z - 1)
3351 d->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
3352
3353 if (offset + rest < PAGE_SIZE)
3354 length = rest;
3355 else
3356 length = PAGE_SIZE - offset;
3357 d->req_count = cpu_to_le16(length);
3358 d->res_count = d->req_count;
3359 d->transfer_status = 0;
3360
3361 page_bus = page_private(buffer->pages[page]);
3362 d->data_address = cpu_to_le32(page_bus + offset);
3363
Clemens Ladischa572e682011-10-15 23:12:23 +02003364 dma_sync_single_range_for_device(ctx->context.ohci->card.device,
3365 page_bus, offset, length,
3366 DMA_FROM_DEVICE);
3367
Stefan Richter872e3302010-07-29 18:19:22 +02003368 rest -= length;
3369 offset = 0;
3370 page++;
3371
3372 context_append(&ctx->context, d, 1, 0);
3373 }
3374
3375 return 0;
3376}
3377
Stefan Richter53dca512008-12-14 21:47:04 +01003378static int ohci_queue_iso(struct fw_iso_context *base,
3379 struct fw_iso_packet *packet,
3380 struct fw_iso_buffer *buffer,
3381 unsigned long payload)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003382{
Kristian Høgsberge364cf42007-02-16 17:34:49 -05003383 struct iso_context *ctx = container_of(base, struct iso_context, base);
David Moorefe5ca632008-01-06 17:21:41 -05003384 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02003385 int ret = -ENOSYS;
Kristian Høgsberge364cf42007-02-16 17:34:49 -05003386
David Moorefe5ca632008-01-06 17:21:41 -05003387 spin_lock_irqsave(&ctx->context.ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02003388 switch (base->type) {
3389 case FW_ISO_CONTEXT_TRANSMIT:
3390 ret = queue_iso_transmit(ctx, packet, buffer, payload);
3391 break;
3392 case FW_ISO_CONTEXT_RECEIVE:
3393 ret = queue_iso_packet_per_buffer(ctx, packet, buffer, payload);
3394 break;
3395 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3396 ret = queue_iso_buffer_fill(ctx, packet, buffer, payload);
3397 break;
3398 }
David Moorefe5ca632008-01-06 17:21:41 -05003399 spin_unlock_irqrestore(&ctx->context.ohci->lock, flags);
3400
Stefan Richter2dbd7d72008-12-14 21:45:45 +01003401 return ret;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003402}
3403
Clemens Ladisch13882a82011-05-02 09:33:56 +02003404static void ohci_flush_queue_iso(struct fw_iso_context *base)
3405{
3406 struct context *ctx =
3407 &container_of(base, struct iso_context, base)->context;
3408
3409 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladisch13882a82011-05-02 09:33:56 +02003410}
3411
Stefan Richter21ebcd12007-01-14 15:29:07 +01003412static const struct fw_card_driver ohci_driver = {
Kristian Høgsberged568912006-12-19 19:58:35 -05003413 .enable = ohci_enable,
Stefan Richter02d37be2010-07-08 16:09:06 +02003414 .read_phy_reg = ohci_read_phy_reg,
Kristian Høgsberged568912006-12-19 19:58:35 -05003415 .update_phy_reg = ohci_update_phy_reg,
3416 .set_config_rom = ohci_set_config_rom,
3417 .send_request = ohci_send_request,
3418 .send_response = ohci_send_response,
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05003419 .cancel_packet = ohci_cancel_packet,
Kristian Høgsberged568912006-12-19 19:58:35 -05003420 .enable_phys_dma = ohci_enable_phys_dma,
Stefan Richter0fcff4e2010-06-12 20:35:52 +02003421 .read_csr = ohci_read_csr,
3422 .write_csr = ohci_write_csr,
Kristian Høgsberged568912006-12-19 19:58:35 -05003423
3424 .allocate_iso_context = ohci_allocate_iso_context,
3425 .free_iso_context = ohci_free_iso_context,
Stefan Richter872e3302010-07-29 18:19:22 +02003426 .set_iso_channels = ohci_set_iso_channels,
Kristian Høgsberged568912006-12-19 19:58:35 -05003427 .queue_iso = ohci_queue_iso,
Clemens Ladisch13882a82011-05-02 09:33:56 +02003428 .flush_queue_iso = ohci_flush_queue_iso,
Kristian Høgsberg69cdb722007-02-16 17:34:41 -05003429 .start_iso = ohci_start_iso,
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003430 .stop_iso = ohci_stop_iso,
Kristian Høgsberged568912006-12-19 19:58:35 -05003431};
3432
Stefan Richter2ed0f182008-03-01 12:35:29 +01003433#ifdef CONFIG_PPC_PMAC
Stefan Richter5da3dac2010-04-02 14:05:02 +02003434static void pmac_ohci_on(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01003435{
3436 if (machine_is(powermac)) {
3437 struct device_node *ofn = pci_device_to_OF_node(dev);
3438
3439 if (ofn) {
3440 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 1);
3441 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 1);
3442 }
3443 }
3444}
3445
Stefan Richter5da3dac2010-04-02 14:05:02 +02003446static void pmac_ohci_off(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01003447{
3448 if (machine_is(powermac)) {
3449 struct device_node *ofn = pci_device_to_OF_node(dev);
3450
3451 if (ofn) {
3452 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 0);
3453 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 0);
3454 }
3455 }
3456}
3457#else
Stefan Richter5da3dac2010-04-02 14:05:02 +02003458static inline void pmac_ohci_on(struct pci_dev *dev) {}
3459static inline void pmac_ohci_off(struct pci_dev *dev) {}
Stefan Richter2ed0f182008-03-01 12:35:29 +01003460#endif /* CONFIG_PPC_PMAC */
3461
Stefan Richter53dca512008-12-14 21:47:04 +01003462static int __devinit pci_probe(struct pci_dev *dev,
3463 const struct pci_device_id *ent)
Kristian Høgsberged568912006-12-19 19:58:35 -05003464{
3465 struct fw_ohci *ohci;
Stefan Richteraa0170f2010-10-17 14:09:12 +02003466 u32 bus_options, max_receive, link_speed, version;
Kristian Høgsberged568912006-12-19 19:58:35 -05003467 u64 guid;
Maxim Levitskydd237362010-11-29 04:09:50 +02003468 int i, err;
Kristian Høgsberged568912006-12-19 19:58:35 -05003469 size_t size;
3470
Stefan Richter7f7e37112011-07-10 00:23:03 +02003471 if (dev->vendor == PCI_VENDOR_ID_PINNACLE_SYSTEMS) {
3472 dev_err(&dev->dev, "Pinnacle MovieBoard is not yet supported\n");
3473 return -ENOSYS;
3474 }
3475
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003476 ohci = kzalloc(sizeof(*ohci), GFP_KERNEL);
Kristian Høgsberged568912006-12-19 19:58:35 -05003477 if (ohci == NULL) {
Stefan Richter7007a072008-10-26 09:50:31 +01003478 err = -ENOMEM;
3479 goto fail;
Kristian Høgsberged568912006-12-19 19:58:35 -05003480 }
3481
3482 fw_card_initialize(&ohci->card, &ohci_driver, &dev->dev);
3483
Stefan Richter5da3dac2010-04-02 14:05:02 +02003484 pmac_ohci_on(dev);
Stefan Richter130d5492008-03-24 20:55:28 +01003485
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003486 err = pci_enable_device(dev);
3487 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003488 dev_err(&dev->dev, "failed to enable OHCI hardware\n");
Stefan Richterbd7dee62008-02-24 18:59:55 +01003489 goto fail_free;
Kristian Høgsberged568912006-12-19 19:58:35 -05003490 }
3491
3492 pci_set_master(dev);
3493 pci_write_config_dword(dev, OHCI1394_PCI_HCI_Control, 0);
3494 pci_set_drvdata(dev, ohci);
3495
3496 spin_lock_init(&ohci->lock);
Stefan Richter02d37be2010-07-08 16:09:06 +02003497 mutex_init(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -05003498
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02003499 INIT_WORK(&ohci->bus_reset_work, bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05003500
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003501 err = pci_request_region(dev, 0, ohci_driver_name);
3502 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003503 dev_err(&dev->dev, "MMIO resource unavailable\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003504 goto fail_disable;
Kristian Høgsberged568912006-12-19 19:58:35 -05003505 }
3506
3507 ohci->registers = pci_iomap(dev, 0, OHCI1394_REGISTER_SIZE);
3508 if (ohci->registers == NULL) {
Stefan Richter64d21722011-12-20 21:32:46 +01003509 dev_err(&dev->dev, "failed to remap registers\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003510 err = -ENXIO;
3511 goto fail_iomem;
Kristian Høgsberged568912006-12-19 19:58:35 -05003512 }
3513
Stefan Richter4a635592010-02-21 17:58:01 +01003514 for (i = 0; i < ARRAY_SIZE(ohci_quirks); i++)
Stefan Richter9993e0f2010-12-07 20:32:40 +01003515 if ((ohci_quirks[i].vendor == dev->vendor) &&
3516 (ohci_quirks[i].device == (unsigned short)PCI_ANY_ID ||
3517 ohci_quirks[i].device == dev->device) &&
3518 (ohci_quirks[i].revision == (unsigned short)PCI_ANY_ID ||
3519 ohci_quirks[i].revision >= dev->revision)) {
Stefan Richter4a635592010-02-21 17:58:01 +01003520 ohci->quirks = ohci_quirks[i].flags;
3521 break;
3522 }
Stefan Richter3e9cc2f2010-02-21 17:58:29 +01003523 if (param_quirks)
3524 ohci->quirks = param_quirks;
Clemens Ladischb6775322010-01-20 09:58:02 +01003525
Clemens Ladischec766a72010-11-30 08:25:17 +01003526 /*
3527 * Because dma_alloc_coherent() allocates at least one page,
3528 * we save space by using a common buffer for the AR request/
3529 * response descriptors and the self IDs buffer.
3530 */
3531 BUILD_BUG_ON(AR_BUFFERS * sizeof(struct descriptor) > PAGE_SIZE/4);
3532 BUILD_BUG_ON(SELF_ID_BUF_SIZE > PAGE_SIZE/2);
3533 ohci->misc_buffer = dma_alloc_coherent(ohci->card.device,
3534 PAGE_SIZE,
3535 &ohci->misc_buffer_bus,
3536 GFP_KERNEL);
3537 if (!ohci->misc_buffer) {
3538 err = -ENOMEM;
3539 goto fail_iounmap;
3540 }
3541
3542 err = ar_context_init(&ohci->ar_request_ctx, ohci, 0,
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003543 OHCI1394_AsReqRcvContextControlSet);
3544 if (err < 0)
Clemens Ladischec766a72010-11-30 08:25:17 +01003545 goto fail_misc_buf;
Kristian Høgsberged568912006-12-19 19:58:35 -05003546
Clemens Ladischec766a72010-11-30 08:25:17 +01003547 err = ar_context_init(&ohci->ar_response_ctx, ohci, PAGE_SIZE/4,
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003548 OHCI1394_AsRspRcvContextControlSet);
3549 if (err < 0)
3550 goto fail_arreq_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003551
Clemens Ladischc088ab302010-11-30 08:24:01 +01003552 err = context_init(&ohci->at_request_ctx, ohci,
3553 OHCI1394_AsReqTrContextControlSet, handle_at_packet);
3554 if (err < 0)
3555 goto fail_arrsp_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003556
Clemens Ladischc088ab302010-11-30 08:24:01 +01003557 err = context_init(&ohci->at_response_ctx, ohci,
3558 OHCI1394_AsRspTrContextControlSet, handle_at_packet);
3559 if (err < 0)
3560 goto fail_atreq_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003561
Kristian Høgsberged568912006-12-19 19:58:35 -05003562 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, ~0);
Stefan Richter4817ed22008-12-21 16:39:46 +01003563 ohci->ir_context_channels = ~0ULL;
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003564 ohci->ir_context_support = reg_read(ohci, OHCI1394_IsoRecvIntMaskSet);
Stefan Richter4802f162010-02-21 17:58:52 +01003565 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003566 ohci->ir_context_mask = ohci->ir_context_support;
Maxim Levitskydd237362010-11-29 04:09:50 +02003567 ohci->n_ir = hweight32(ohci->ir_context_mask);
3568 size = sizeof(struct iso_context) * ohci->n_ir;
Kristian Høgsberged568912006-12-19 19:58:35 -05003569 ohci->ir_context_list = kzalloc(size, GFP_KERNEL);
3570
Stefan Richter4802f162010-02-21 17:58:52 +01003571 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003572 ohci->it_context_support = reg_read(ohci, OHCI1394_IsoXmitIntMaskSet);
Stefan Richter4802f162010-02-21 17:58:52 +01003573 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003574 ohci->it_context_mask = ohci->it_context_support;
Maxim Levitskydd237362010-11-29 04:09:50 +02003575 ohci->n_it = hweight32(ohci->it_context_mask);
3576 size = sizeof(struct iso_context) * ohci->n_it;
Stefan Richter4802f162010-02-21 17:58:52 +01003577 ohci->it_context_list = kzalloc(size, GFP_KERNEL);
3578
Kristian Høgsberged568912006-12-19 19:58:35 -05003579 if (ohci->it_context_list == NULL || ohci->ir_context_list == NULL) {
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003580 err = -ENOMEM;
Stefan Richter7007a072008-10-26 09:50:31 +01003581 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05003582 }
3583
Clemens Ladischec766a72010-11-30 08:25:17 +01003584 ohci->self_id_cpu = ohci->misc_buffer + PAGE_SIZE/2;
3585 ohci->self_id_bus = ohci->misc_buffer_bus + PAGE_SIZE/2;
Kristian Høgsberged568912006-12-19 19:58:35 -05003586
Kristian Høgsberged568912006-12-19 19:58:35 -05003587 bus_options = reg_read(ohci, OHCI1394_BusOptions);
3588 max_receive = (bus_options >> 12) & 0xf;
3589 link_speed = bus_options & 0x7;
3590 guid = ((u64) reg_read(ohci, OHCI1394_GUIDHi) << 32) |
3591 reg_read(ohci, OHCI1394_GUIDLo);
3592
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003593 err = fw_card_add(&ohci->card, max_receive, link_speed, guid);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01003594 if (err)
Clemens Ladischec766a72010-11-30 08:25:17 +01003595 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05003596
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01003597 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
Stefan Richter64d21722011-12-20 21:32:46 +01003598 dev_notice(&dev->dev,
3599 "added OHCI v%x.%x device as card %d, "
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01003600 "%d IR + %d IT contexts, quirks 0x%x\n",
Stefan Richter64d21722011-12-20 21:32:46 +01003601 version >> 16, version & 0xff, ohci->card.index,
Maxim Levitskydd237362010-11-29 04:09:50 +02003602 ohci->n_ir, ohci->n_it, ohci->quirks);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01003603
Kristian Høgsberged568912006-12-19 19:58:35 -05003604 return 0;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003605
Stefan Richter7007a072008-10-26 09:50:31 +01003606 fail_contexts:
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003607 kfree(ohci->ir_context_list);
Stefan Richter7007a072008-10-26 09:50:31 +01003608 kfree(ohci->it_context_list);
3609 context_release(&ohci->at_response_ctx);
Clemens Ladischc088ab302010-11-30 08:24:01 +01003610 fail_atreq_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003611 context_release(&ohci->at_request_ctx);
Clemens Ladischc088ab302010-11-30 08:24:01 +01003612 fail_arrsp_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003613 ar_context_release(&ohci->ar_response_ctx);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003614 fail_arreq_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003615 ar_context_release(&ohci->ar_request_ctx);
Clemens Ladischec766a72010-11-30 08:25:17 +01003616 fail_misc_buf:
3617 dma_free_coherent(ohci->card.device, PAGE_SIZE,
3618 ohci->misc_buffer, ohci->misc_buffer_bus);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003619 fail_iounmap:
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003620 pci_iounmap(dev, ohci->registers);
3621 fail_iomem:
3622 pci_release_region(dev, 0);
3623 fail_disable:
3624 pci_disable_device(dev);
Stefan Richterbd7dee62008-02-24 18:59:55 +01003625 fail_free:
Oleg Drokind838d2c02011-03-11 04:17:27 +03003626 kfree(ohci);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003627 pmac_ohci_off(dev);
Stefan Richter7007a072008-10-26 09:50:31 +01003628 fail:
3629 if (err == -ENOMEM)
Stefan Richter64d21722011-12-20 21:32:46 +01003630 dev_err(&dev->dev, "out of memory\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003631
3632 return err;
Kristian Høgsberged568912006-12-19 19:58:35 -05003633}
3634
3635static void pci_remove(struct pci_dev *dev)
3636{
3637 struct fw_ohci *ohci;
3638
3639 ohci = pci_get_drvdata(dev);
Kristian Høgsberge254a4b2007-03-07 12:12:38 -05003640 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
3641 flush_writes(ohci);
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02003642 cancel_work_sync(&ohci->bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05003643 fw_core_remove_card(&ohci->card);
3644
Kristian Høgsbergc781c062007-05-07 20:33:32 -04003645 /*
3646 * FIXME: Fail all pending packets here, now that the upper
3647 * layers can't queue any more.
3648 */
Kristian Høgsberged568912006-12-19 19:58:35 -05003649
3650 software_reset(ohci);
3651 free_irq(dev->irq, ohci);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003652
3653 if (ohci->next_config_rom && ohci->next_config_rom != ohci->config_rom)
3654 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3655 ohci->next_config_rom, ohci->next_config_rom_bus);
3656 if (ohci->config_rom)
3657 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3658 ohci->config_rom, ohci->config_rom_bus);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003659 ar_context_release(&ohci->ar_request_ctx);
3660 ar_context_release(&ohci->ar_response_ctx);
Clemens Ladischec766a72010-11-30 08:25:17 +01003661 dma_free_coherent(ohci->card.device, PAGE_SIZE,
3662 ohci->misc_buffer, ohci->misc_buffer_bus);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003663 context_release(&ohci->at_request_ctx);
3664 context_release(&ohci->at_response_ctx);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003665 kfree(ohci->it_context_list);
3666 kfree(ohci->ir_context_list);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003667 pci_disable_msi(dev);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003668 pci_iounmap(dev, ohci->registers);
3669 pci_release_region(dev, 0);
3670 pci_disable_device(dev);
Oleg Drokind838d2c02011-03-11 04:17:27 +03003671 kfree(ohci);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003672 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003673
Stefan Richter64d21722011-12-20 21:32:46 +01003674 dev_notice(&dev->dev, "removed fw-ohci device\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05003675}
3676
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003677#ifdef CONFIG_PM
Stefan Richter2ed0f182008-03-01 12:35:29 +01003678static int pci_suspend(struct pci_dev *dev, pm_message_t state)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003679{
Stefan Richter2ed0f182008-03-01 12:35:29 +01003680 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003681 int err;
3682
3683 software_reset(ohci);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003684 free_irq(dev->irq, ohci);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003685 pci_disable_msi(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003686 err = pci_save_state(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003687 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003688 dev_err(&dev->dev, "pci_save_state failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003689 return err;
3690 }
Stefan Richter2ed0f182008-03-01 12:35:29 +01003691 err = pci_set_power_state(dev, pci_choose_state(dev, state));
Stefan Richter55111422007-09-06 09:50:30 +02003692 if (err)
Stefan Richter64d21722011-12-20 21:32:46 +01003693 dev_err(&dev->dev, "pci_set_power_state failed with %d\n", err);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003694 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003695
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003696 return 0;
3697}
3698
Stefan Richter2ed0f182008-03-01 12:35:29 +01003699static int pci_resume(struct pci_dev *dev)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003700{
Stefan Richter2ed0f182008-03-01 12:35:29 +01003701 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003702 int err;
3703
Stefan Richter5da3dac2010-04-02 14:05:02 +02003704 pmac_ohci_on(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003705 pci_set_power_state(dev, PCI_D0);
3706 pci_restore_state(dev);
3707 err = pci_enable_device(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003708 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003709 dev_err(&dev->dev, "pci_enable_device failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003710 return err;
3711 }
3712
Maxim Levitsky8662b6b2010-11-29 04:09:49 +02003713 /* Some systems don't setup GUID register on resume from ram */
3714 if (!reg_read(ohci, OHCI1394_GUIDLo) &&
3715 !reg_read(ohci, OHCI1394_GUIDHi)) {
3716 reg_write(ohci, OHCI1394_GUIDLo, (u32)ohci->card.guid);
3717 reg_write(ohci, OHCI1394_GUIDHi, (u32)(ohci->card.guid >> 32));
3718 }
3719
Maxim Levitskydd237362010-11-29 04:09:50 +02003720 err = ohci_enable(&ohci->card, NULL, 0);
Maxim Levitskydd237362010-11-29 04:09:50 +02003721 if (err)
3722 return err;
3723
3724 ohci_resume_iso_dma(ohci);
Stefan Richter693a50b2011-01-01 15:17:05 +01003725
Maxim Levitskydd237362010-11-29 04:09:50 +02003726 return 0;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003727}
3728#endif
3729
Németh Mártona67483d2010-01-10 13:14:26 +01003730static const struct pci_device_id pci_table[] = {
Kristian Høgsberged568912006-12-19 19:58:35 -05003731 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_FIREWIRE_OHCI, ~0) },
3732 { }
3733};
3734
3735MODULE_DEVICE_TABLE(pci, pci_table);
3736
3737static struct pci_driver fw_ohci_pci_driver = {
3738 .name = ohci_driver_name,
3739 .id_table = pci_table,
3740 .probe = pci_probe,
3741 .remove = pci_remove,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003742#ifdef CONFIG_PM
3743 .resume = pci_resume,
3744 .suspend = pci_suspend,
3745#endif
Kristian Høgsberged568912006-12-19 19:58:35 -05003746};
3747
3748MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
3749MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers");
3750MODULE_LICENSE("GPL");
3751
Olaf Hering1e4c7b02007-05-05 23:17:13 +02003752/* Provide a module alias so root-on-sbp2 initrds don't break. */
3753#ifndef CONFIG_IEEE1394_OHCI1394_MODULE
3754MODULE_ALIAS("ohci1394");
3755#endif
3756
Kristian Høgsberged568912006-12-19 19:58:35 -05003757static int __init fw_ohci_init(void)
3758{
3759 return pci_register_driver(&fw_ohci_pci_driver);
3760}
3761
3762static void __exit fw_ohci_cleanup(void)
3763{
3764 pci_unregister_driver(&fw_ohci_pci_driver);
3765}
3766
3767module_init(fw_ohci_init);
3768module_exit(fw_ohci_cleanup);