blob: 74ff1a8f4fcb446ee96c8b210d779ed66024a261 [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
337static int param_debug;
338module_param_named(debug, param_debug, int, 0644);
339MODULE_PARM_DESC(debug, "Verbose logging (default = 0"
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100340 ", AT/AR events = " __stringify(OHCI_PARAM_DEBUG_AT_AR)
Stefan Richtera007bb82008-04-07 22:33:35 +0200341 ", self-IDs = " __stringify(OHCI_PARAM_DEBUG_SELFIDS)
342 ", IRQs = " __stringify(OHCI_PARAM_DEBUG_IRQS)
343 ", busReset events = " __stringify(OHCI_PARAM_DEBUG_BUSRESETS)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100344 ", or a combination, or all = -1)");
345
Stefan Richter64d21722011-12-20 21:32:46 +0100346static void log_irqs(struct fw_ohci *ohci, u32 evt)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100347{
Stefan Richtera007bb82008-04-07 22:33:35 +0200348 if (likely(!(param_debug &
349 (OHCI_PARAM_DEBUG_IRQS | OHCI_PARAM_DEBUG_BUSRESETS))))
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100350 return;
351
Stefan Richtera007bb82008-04-07 22:33:35 +0200352 if (!(param_debug & OHCI_PARAM_DEBUG_IRQS) &&
353 !(evt & OHCI1394_busReset))
354 return;
355
Stefan Richter64d21722011-12-20 21:32:46 +0100356 dev_notice(ohci->card.device,
357 "IRQ %08x%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", evt,
Stefan Richter161b96e2008-06-14 14:23:43 +0200358 evt & OHCI1394_selfIDComplete ? " selfID" : "",
359 evt & OHCI1394_RQPkt ? " AR_req" : "",
360 evt & OHCI1394_RSPkt ? " AR_resp" : "",
361 evt & OHCI1394_reqTxComplete ? " AT_req" : "",
362 evt & OHCI1394_respTxComplete ? " AT_resp" : "",
363 evt & OHCI1394_isochRx ? " IR" : "",
364 evt & OHCI1394_isochTx ? " IT" : "",
365 evt & OHCI1394_postedWriteErr ? " postedWriteErr" : "",
366 evt & OHCI1394_cycleTooLong ? " cycleTooLong" : "",
Clemens Ladischa48777e2010-06-10 08:33:07 +0200367 evt & OHCI1394_cycle64Seconds ? " cycle64Seconds" : "",
Jay Fenlason5ed1f322009-11-17 12:29:17 -0500368 evt & OHCI1394_cycleInconsistent ? " cycleInconsistent" : "",
Stefan Richter161b96e2008-06-14 14:23:43 +0200369 evt & OHCI1394_regAccessFail ? " regAccessFail" : "",
Clemens Ladischf117a3e2011-01-10 17:21:35 +0100370 evt & OHCI1394_unrecoverableError ? " unrecoverableError" : "",
Stefan Richter161b96e2008-06-14 14:23:43 +0200371 evt & OHCI1394_busReset ? " busReset" : "",
372 evt & ~(OHCI1394_selfIDComplete | OHCI1394_RQPkt |
373 OHCI1394_RSPkt | OHCI1394_reqTxComplete |
374 OHCI1394_respTxComplete | OHCI1394_isochRx |
375 OHCI1394_isochTx | OHCI1394_postedWriteErr |
Clemens Ladischa48777e2010-06-10 08:33:07 +0200376 OHCI1394_cycleTooLong | OHCI1394_cycle64Seconds |
377 OHCI1394_cycleInconsistent |
Stefan Richter161b96e2008-06-14 14:23:43 +0200378 OHCI1394_regAccessFail | OHCI1394_busReset)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100379 ? " ?" : "");
380}
381
382static const char *speed[] = {
383 [0] = "S100", [1] = "S200", [2] = "S400", [3] = "beta",
384};
385static const char *power[] = {
386 [0] = "+0W", [1] = "+15W", [2] = "+30W", [3] = "+45W",
387 [4] = "-3W", [5] = " ?W", [6] = "-3..-6W", [7] = "-3..-10W",
388};
389static const char port[] = { '.', '-', 'p', 'c', };
390
391static char _p(u32 *s, int shift)
392{
393 return port[*s >> shift & 3];
394}
395
Stefan Richter64d21722011-12-20 21:32:46 +0100396static void log_selfids(struct fw_ohci *ohci, int generation, int self_id_count)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100397{
Stefan Richter64d21722011-12-20 21:32:46 +0100398 u32 *s;
399
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100400 if (likely(!(param_debug & OHCI_PARAM_DEBUG_SELFIDS)))
401 return;
402
Stefan Richter64d21722011-12-20 21:32:46 +0100403 dev_notice(ohci->card.device,
404 "%d selfIDs, generation %d, local node ID %04x\n",
405 self_id_count, generation, ohci->node_id);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100406
Stefan Richter64d21722011-12-20 21:32:46 +0100407 for (s = ohci->self_id_buffer; self_id_count--; ++s)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100408 if ((*s & 1 << 23) == 0)
Stefan Richter64d21722011-12-20 21:32:46 +0100409 dev_notice(ohci->card.device,
410 "selfID 0: %08x, phy %d [%c%c%c] "
Stefan Richter161b96e2008-06-14 14:23:43 +0200411 "%s gc=%d %s %s%s%s\n",
412 *s, *s >> 24 & 63, _p(s, 6), _p(s, 4), _p(s, 2),
413 speed[*s >> 14 & 3], *s >> 16 & 63,
414 power[*s >> 8 & 7], *s >> 22 & 1 ? "L" : "",
415 *s >> 11 & 1 ? "c" : "", *s & 2 ? "i" : "");
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100416 else
Stefan Richter64d21722011-12-20 21:32:46 +0100417 dev_notice(ohci->card.device,
418 "selfID n: %08x, phy %d [%c%c%c%c%c%c%c%c]\n",
Stefan Richter161b96e2008-06-14 14:23:43 +0200419 *s, *s >> 24 & 63,
420 _p(s, 16), _p(s, 14), _p(s, 12), _p(s, 10),
421 _p(s, 8), _p(s, 6), _p(s, 4), _p(s, 2));
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100422}
423
424static const char *evts[] = {
425 [0x00] = "evt_no_status", [0x01] = "-reserved-",
426 [0x02] = "evt_long_packet", [0x03] = "evt_missing_ack",
427 [0x04] = "evt_underrun", [0x05] = "evt_overrun",
428 [0x06] = "evt_descriptor_read", [0x07] = "evt_data_read",
429 [0x08] = "evt_data_write", [0x09] = "evt_bus_reset",
430 [0x0a] = "evt_timeout", [0x0b] = "evt_tcode_err",
431 [0x0c] = "-reserved-", [0x0d] = "-reserved-",
432 [0x0e] = "evt_unknown", [0x0f] = "evt_flushed",
433 [0x10] = "-reserved-", [0x11] = "ack_complete",
434 [0x12] = "ack_pending ", [0x13] = "-reserved-",
435 [0x14] = "ack_busy_X", [0x15] = "ack_busy_A",
436 [0x16] = "ack_busy_B", [0x17] = "-reserved-",
437 [0x18] = "-reserved-", [0x19] = "-reserved-",
438 [0x1a] = "-reserved-", [0x1b] = "ack_tardy",
439 [0x1c] = "-reserved-", [0x1d] = "ack_data_error",
440 [0x1e] = "ack_type_error", [0x1f] = "-reserved-",
441 [0x20] = "pending/cancelled",
442};
443static const char *tcodes[] = {
444 [0x0] = "QW req", [0x1] = "BW req",
445 [0x2] = "W resp", [0x3] = "-reserved-",
446 [0x4] = "QR req", [0x5] = "BR req",
447 [0x6] = "QR resp", [0x7] = "BR resp",
448 [0x8] = "cycle start", [0x9] = "Lk req",
449 [0xa] = "async stream packet", [0xb] = "Lk resp",
450 [0xc] = "-reserved-", [0xd] = "-reserved-",
451 [0xe] = "link internal", [0xf] = "-reserved-",
452};
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100453
Stefan Richter64d21722011-12-20 21:32:46 +0100454static void log_ar_at_event(struct fw_ohci *ohci,
455 char dir, int speed, u32 *header, int evt)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100456{
457 int tcode = header[0] >> 4 & 0xf;
458 char specific[12];
459
460 if (likely(!(param_debug & OHCI_PARAM_DEBUG_AT_AR)))
461 return;
462
463 if (unlikely(evt >= ARRAY_SIZE(evts)))
464 evt = 0x1f;
465
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200466 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter64d21722011-12-20 21:32:46 +0100467 dev_notice(ohci->card.device,
468 "A%c evt_bus_reset, generation %d\n",
469 dir, (header[2] >> 16) & 0xff);
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200470 return;
471 }
472
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100473 switch (tcode) {
474 case 0x0: case 0x6: case 0x8:
475 snprintf(specific, sizeof(specific), " = %08x",
476 be32_to_cpu((__force __be32)header[3]));
477 break;
478 case 0x1: case 0x5: case 0x7: case 0x9: case 0xb:
479 snprintf(specific, sizeof(specific), " %x,%x",
480 header[3] >> 16, header[3] & 0xffff);
481 break;
482 default:
483 specific[0] = '\0';
484 }
485
486 switch (tcode) {
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100487 case 0xa:
Stefan Richter64d21722011-12-20 21:32:46 +0100488 dev_notice(ohci->card.device,
489 "A%c %s, %s\n",
490 dir, evts[evt], tcodes[tcode]);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100491 break;
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100492 case 0xe:
Stefan Richter64d21722011-12-20 21:32:46 +0100493 dev_notice(ohci->card.device,
494 "A%c %s, PHY %08x %08x\n",
495 dir, evts[evt], header[1], header[2]);
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100496 break;
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100497 case 0x0: case 0x1: case 0x4: case 0x5: case 0x9:
Stefan Richter64d21722011-12-20 21:32:46 +0100498 dev_notice(ohci->card.device,
499 "A%c spd %x tl %02x, "
500 "%04x -> %04x, %s, "
501 "%s, %04x%08x%s\n",
502 dir, speed, header[0] >> 10 & 0x3f,
503 header[1] >> 16, header[0] >> 16, evts[evt],
504 tcodes[tcode], header[1] & 0xffff, header[2], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100505 break;
506 default:
Stefan Richter64d21722011-12-20 21:32:46 +0100507 dev_notice(ohci->card.device,
508 "A%c spd %x tl %02x, "
509 "%04x -> %04x, %s, "
510 "%s%s\n",
511 dir, speed, header[0] >> 10 & 0x3f,
512 header[1] >> 16, header[0] >> 16, evts[evt],
513 tcodes[tcode], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100514 }
515}
516
Adrian Bunk95688e92007-01-22 19:17:37 +0100517static inline void reg_write(const struct fw_ohci *ohci, int offset, u32 data)
Kristian Høgsberged568912006-12-19 19:58:35 -0500518{
519 writel(data, ohci->registers + offset);
520}
521
Adrian Bunk95688e92007-01-22 19:17:37 +0100522static inline u32 reg_read(const struct fw_ohci *ohci, int offset)
Kristian Høgsberged568912006-12-19 19:58:35 -0500523{
524 return readl(ohci->registers + offset);
525}
526
Adrian Bunk95688e92007-01-22 19:17:37 +0100527static inline void flush_writes(const struct fw_ohci *ohci)
Kristian Høgsberged568912006-12-19 19:58:35 -0500528{
529 /* Do a dummy read to flush writes. */
530 reg_read(ohci, OHCI1394_Version);
531}
532
Stefan Richterb14c3692011-06-21 15:24:26 +0200533/*
534 * Beware! read_phy_reg(), write_phy_reg(), update_phy_reg(), and
535 * read_paged_phy_reg() require the caller to hold ohci->phy_reg_mutex.
536 * In other words, only use ohci_read_phy_reg() and ohci_update_phy_reg()
537 * directly. Exceptions are intrinsically serialized contexts like pci_probe.
538 */
Stefan Richter35d999b2010-04-10 16:04:56 +0200539static int read_phy_reg(struct fw_ohci *ohci, int addr)
Kristian Høgsberged568912006-12-19 19:58:35 -0500540{
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200541 u32 val;
Stefan Richter35d999b2010-04-10 16:04:56 +0200542 int i;
Kristian Høgsberged568912006-12-19 19:58:35 -0500543
544 reg_write(ohci, OHCI1394_PhyControl, OHCI1394_PhyControl_Read(addr));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200545 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200546 val = reg_read(ohci, OHCI1394_PhyControl);
Stefan Richter215fa442011-06-22 21:05:08 +0200547 if (!~val)
548 return -ENODEV; /* Card was ejected. */
549
Stefan Richter35d999b2010-04-10 16:04:56 +0200550 if (val & OHCI1394_PhyControl_ReadDone)
551 return OHCI1394_PhyControl_ReadData(val);
552
Clemens Ladisch153e3972010-06-10 08:22:07 +0200553 /*
554 * Try a few times without waiting. Sleeping is necessary
555 * only when the link/PHY interface is busy.
556 */
557 if (i >= 3)
558 msleep(1);
Kristian Høgsberged568912006-12-19 19:58:35 -0500559 }
Stefan Richter64d21722011-12-20 21:32:46 +0100560 dev_err(ohci->card.device, "failed to read phy reg\n");
Kristian Høgsberged568912006-12-19 19:58:35 -0500561
Stefan Richter35d999b2010-04-10 16:04:56 +0200562 return -EBUSY;
563}
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200564
Stefan Richter35d999b2010-04-10 16:04:56 +0200565static int write_phy_reg(const struct fw_ohci *ohci, int addr, u32 val)
566{
567 int i;
568
569 reg_write(ohci, OHCI1394_PhyControl,
570 OHCI1394_PhyControl_Write(addr, val));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200571 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200572 val = reg_read(ohci, OHCI1394_PhyControl);
Stefan Richter215fa442011-06-22 21:05:08 +0200573 if (!~val)
574 return -ENODEV; /* Card was ejected. */
575
Stefan Richter35d999b2010-04-10 16:04:56 +0200576 if (!(val & OHCI1394_PhyControl_WritePending))
577 return 0;
578
Clemens Ladisch153e3972010-06-10 08:22:07 +0200579 if (i >= 3)
580 msleep(1);
Stefan Richter35d999b2010-04-10 16:04:56 +0200581 }
Stefan Richter64d21722011-12-20 21:32:46 +0100582 dev_err(ohci->card.device, "failed to write phy reg\n");
Stefan Richter35d999b2010-04-10 16:04:56 +0200583
584 return -EBUSY;
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200585}
586
Stefan Richter02d37be2010-07-08 16:09:06 +0200587static int update_phy_reg(struct fw_ohci *ohci, int addr,
588 int clear_bits, int set_bits)
Kristian Høgsberged568912006-12-19 19:58:35 -0500589{
Stefan Richter02d37be2010-07-08 16:09:06 +0200590 int ret = read_phy_reg(ohci, addr);
Stefan Richter35d999b2010-04-10 16:04:56 +0200591 if (ret < 0)
592 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500593
Clemens Ladische7014da2010-04-01 16:40:18 +0200594 /*
595 * The interrupt status bits are cleared by writing a one bit.
596 * Avoid clearing them unless explicitly requested in set_bits.
597 */
598 if (addr == 5)
599 clear_bits |= PHY_INT_STATUS_BITS;
Kristian Høgsberged568912006-12-19 19:58:35 -0500600
Stefan Richter35d999b2010-04-10 16:04:56 +0200601 return write_phy_reg(ohci, addr, (ret & ~clear_bits) | set_bits);
Kristian Høgsberged568912006-12-19 19:58:35 -0500602}
603
Stefan Richter35d999b2010-04-10 16:04:56 +0200604static int read_paged_phy_reg(struct fw_ohci *ohci, int page, int addr)
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200605{
Stefan Richter35d999b2010-04-10 16:04:56 +0200606 int ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200607
Stefan Richter02d37be2010-07-08 16:09:06 +0200608 ret = update_phy_reg(ohci, 7, PHY_PAGE_SELECT, page << 5);
Stefan Richter35d999b2010-04-10 16:04:56 +0200609 if (ret < 0)
610 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200611
Stefan Richter35d999b2010-04-10 16:04:56 +0200612 return read_phy_reg(ohci, addr);
Kristian Høgsberged568912006-12-19 19:58:35 -0500613}
614
Stefan Richter02d37be2010-07-08 16:09:06 +0200615static int ohci_read_phy_reg(struct fw_card *card, int addr)
616{
617 struct fw_ohci *ohci = fw_ohci(card);
618 int ret;
619
620 mutex_lock(&ohci->phy_reg_mutex);
621 ret = read_phy_reg(ohci, addr);
622 mutex_unlock(&ohci->phy_reg_mutex);
623
624 return ret;
625}
626
Kristian Høgsberged568912006-12-19 19:58:35 -0500627static int ohci_update_phy_reg(struct fw_card *card, int addr,
628 int clear_bits, int set_bits)
629{
630 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter02d37be2010-07-08 16:09:06 +0200631 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500632
Stefan Richter02d37be2010-07-08 16:09:06 +0200633 mutex_lock(&ohci->phy_reg_mutex);
634 ret = update_phy_reg(ohci, addr, clear_bits, set_bits);
635 mutex_unlock(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -0500636
Stefan Richter02d37be2010-07-08 16:09:06 +0200637 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500638}
639
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100640static inline dma_addr_t ar_buffer_bus(struct ar_context *ctx, unsigned int i)
Kristian Høgsberged568912006-12-19 19:58:35 -0500641{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100642 return page_private(ctx->pages[i]);
643}
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500644
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100645static void ar_context_link_page(struct ar_context *ctx, unsigned int index)
646{
647 struct descriptor *d;
648
649 d = &ctx->descriptors[index];
650 d->branch_address &= cpu_to_le32(~0xf);
651 d->res_count = cpu_to_le16(PAGE_SIZE);
652 d->transfer_status = 0;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500653
Stefan Richter071595e2010-07-27 13:20:33 +0200654 wmb(); /* finish init of new descriptors before branch_address update */
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100655 d = &ctx->descriptors[ctx->last_buffer_index];
656 d->branch_address |= cpu_to_le32(1);
657
658 ctx->last_buffer_index = index;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500659
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400660 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladisch837596a2010-10-25 11:42:42 +0200661}
662
Jay Fenlasona55709b2008-10-22 15:59:42 -0400663static void ar_context_release(struct ar_context *ctx)
664{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100665 unsigned int i;
Jay Fenlasona55709b2008-10-22 15:59:42 -0400666
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100667 if (ctx->buffer)
668 vm_unmap_ram(ctx->buffer, AR_BUFFERS + AR_WRAPAROUND_PAGES);
669
670 for (i = 0; i < AR_BUFFERS; i++)
671 if (ctx->pages[i]) {
672 dma_unmap_page(ctx->ohci->card.device,
673 ar_buffer_bus(ctx, i),
674 PAGE_SIZE, DMA_FROM_DEVICE);
675 __free_page(ctx->pages[i]);
676 }
677}
678
679static void ar_context_abort(struct ar_context *ctx, const char *error_msg)
680{
Stefan Richter64d21722011-12-20 21:32:46 +0100681 struct fw_ohci *ohci = ctx->ohci;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100682
Stefan Richter64d21722011-12-20 21:32:46 +0100683 if (reg_read(ohci, CONTROL_CLEAR(ctx->regs)) & CONTEXT_RUN) {
684 reg_write(ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
685 flush_writes(ohci);
686
687 dev_err(ohci->card.device, "AR error: %s; DMA stopped\n",
688 error_msg);
Jay Fenlasona55709b2008-10-22 15:59:42 -0400689 }
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100690 /* FIXME: restart? */
691}
692
693static inline unsigned int ar_next_buffer_index(unsigned int index)
694{
695 return (index + 1) % AR_BUFFERS;
696}
697
698static inline unsigned int ar_prev_buffer_index(unsigned int index)
699{
700 return (index - 1 + AR_BUFFERS) % AR_BUFFERS;
701}
702
703static inline unsigned int ar_first_buffer_index(struct ar_context *ctx)
704{
705 return ar_next_buffer_index(ctx->last_buffer_index);
706}
707
708/*
709 * We search for the buffer that contains the last AR packet DMA data written
710 * by the controller.
711 */
712static unsigned int ar_search_last_active_buffer(struct ar_context *ctx,
713 unsigned int *buffer_offset)
714{
715 unsigned int i, next_i, last = ctx->last_buffer_index;
716 __le16 res_count, next_res_count;
717
718 i = ar_first_buffer_index(ctx);
719 res_count = ACCESS_ONCE(ctx->descriptors[i].res_count);
720
721 /* A buffer that is not yet completely filled must be the last one. */
722 while (i != last && res_count == 0) {
723
724 /* Peek at the next descriptor. */
725 next_i = ar_next_buffer_index(i);
726 rmb(); /* read descriptors in order */
727 next_res_count = ACCESS_ONCE(
728 ctx->descriptors[next_i].res_count);
729 /*
730 * If the next descriptor is still empty, we must stop at this
731 * descriptor.
732 */
733 if (next_res_count == cpu_to_le16(PAGE_SIZE)) {
734 /*
735 * The exception is when the DMA data for one packet is
736 * split over three buffers; in this case, the middle
737 * buffer's descriptor might be never updated by the
738 * controller and look still empty, and we have to peek
739 * at the third one.
740 */
741 if (MAX_AR_PACKET_SIZE > PAGE_SIZE && i != last) {
742 next_i = ar_next_buffer_index(next_i);
743 rmb();
744 next_res_count = ACCESS_ONCE(
745 ctx->descriptors[next_i].res_count);
746 if (next_res_count != cpu_to_le16(PAGE_SIZE))
747 goto next_buffer_is_active;
748 }
749
750 break;
751 }
752
753next_buffer_is_active:
754 i = next_i;
755 res_count = next_res_count;
756 }
757
758 rmb(); /* read res_count before the DMA data */
759
760 *buffer_offset = PAGE_SIZE - le16_to_cpu(res_count);
761 if (*buffer_offset > PAGE_SIZE) {
762 *buffer_offset = 0;
763 ar_context_abort(ctx, "corrupted descriptor");
764 }
765
766 return i;
767}
768
769static void ar_sync_buffers_for_cpu(struct ar_context *ctx,
770 unsigned int end_buffer_index,
771 unsigned int end_buffer_offset)
772{
773 unsigned int i;
774
775 i = ar_first_buffer_index(ctx);
776 while (i != end_buffer_index) {
777 dma_sync_single_for_cpu(ctx->ohci->card.device,
778 ar_buffer_bus(ctx, i),
779 PAGE_SIZE, DMA_FROM_DEVICE);
780 i = ar_next_buffer_index(i);
781 }
782 if (end_buffer_offset > 0)
783 dma_sync_single_for_cpu(ctx->ohci->card.device,
784 ar_buffer_bus(ctx, i),
785 end_buffer_offset, DMA_FROM_DEVICE);
Jay Fenlasona55709b2008-10-22 15:59:42 -0400786}
787
Stefan Richter11bf20a2008-03-01 02:47:15 +0100788#if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
789#define cond_le32_to_cpu(v) \
Stefan Richter4a635592010-02-21 17:58:01 +0100790 (ohci->quirks & QUIRK_BE_HEADERS ? (__force __u32)(v) : le32_to_cpu(v))
Stefan Richter11bf20a2008-03-01 02:47:15 +0100791#else
792#define cond_le32_to_cpu(v) le32_to_cpu(v)
793#endif
794
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500795static __le32 *handle_ar_packet(struct ar_context *ctx, __le32 *buffer)
Kristian Høgsberged568912006-12-19 19:58:35 -0500796{
Kristian Høgsberged568912006-12-19 19:58:35 -0500797 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500798 struct fw_packet p;
799 u32 status, length, tcode;
Stefan Richter43286562008-03-11 21:22:26 +0100800 int evt;
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500801
Stefan Richter11bf20a2008-03-01 02:47:15 +0100802 p.header[0] = cond_le32_to_cpu(buffer[0]);
803 p.header[1] = cond_le32_to_cpu(buffer[1]);
804 p.header[2] = cond_le32_to_cpu(buffer[2]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500805
806 tcode = (p.header[0] >> 4) & 0x0f;
807 switch (tcode) {
808 case TCODE_WRITE_QUADLET_REQUEST:
809 case TCODE_READ_QUADLET_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500810 p.header[3] = (__force __u32) buffer[3];
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500811 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500812 p.payload_length = 0;
813 break;
814
815 case TCODE_READ_BLOCK_REQUEST :
Stefan Richter11bf20a2008-03-01 02:47:15 +0100816 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500817 p.header_length = 16;
818 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500819 break;
820
821 case TCODE_WRITE_BLOCK_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500822 case TCODE_READ_BLOCK_RESPONSE:
823 case TCODE_LOCK_REQUEST:
824 case TCODE_LOCK_RESPONSE:
Stefan Richter11bf20a2008-03-01 02:47:15 +0100825 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500826 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500827 p.payload_length = p.header[3] >> 16;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100828 if (p.payload_length > MAX_ASYNC_PAYLOAD) {
829 ar_context_abort(ctx, "invalid packet length");
830 return NULL;
831 }
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500832 break;
833
834 case TCODE_WRITE_RESPONSE:
835 case TCODE_READ_QUADLET_REQUEST:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500836 case OHCI_TCODE_PHY_PACKET:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500837 p.header_length = 12;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500838 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500839 break;
Stefan Richterccff9622008-05-31 19:36:06 +0200840
841 default:
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100842 ar_context_abort(ctx, "invalid tcode");
843 return NULL;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500844 }
845
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500846 p.payload = (void *) buffer + p.header_length;
847
848 /* FIXME: What to do about evt_* errors? */
849 length = (p.header_length + p.payload_length + 3) / 4;
Stefan Richter11bf20a2008-03-01 02:47:15 +0100850 status = cond_le32_to_cpu(buffer[length]);
Stefan Richter43286562008-03-11 21:22:26 +0100851 evt = (status >> 16) & 0x1f;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500852
Stefan Richter43286562008-03-11 21:22:26 +0100853 p.ack = evt - 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500854 p.speed = (status >> 21) & 0x7;
855 p.timestamp = status & 0xffff;
856 p.generation = ohci->request_generation;
Kristian Høgsberged568912006-12-19 19:58:35 -0500857
Stefan Richter64d21722011-12-20 21:32:46 +0100858 log_ar_at_event(ohci, 'R', p.speed, p.header, evt);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100859
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400860 /*
Stefan Richtera4dc0902010-08-28 14:21:26 +0200861 * Several controllers, notably from NEC and VIA, forget to
862 * write ack_complete status at PHY packet reception.
863 */
864 if (evt == OHCI1394_evt_no_status &&
865 (p.header[0] & 0xff) == (OHCI1394_phy_tcode << 4))
866 p.ack = ACK_COMPLETE;
867
868 /*
869 * The OHCI bus reset handler synthesizes a PHY packet with
Kristian Høgsberged568912006-12-19 19:58:35 -0500870 * the new generation number when a bus reset happens (see
871 * section 8.4.2.3). This helps us determine when a request
872 * was received and make sure we send the response in the same
873 * generation. We only need this for requests; for responses
874 * we use the unique tlabel for finding the matching
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400875 * request.
Stefan Richterd34316a2008-04-12 22:31:25 +0200876 *
877 * Alas some chips sometimes emit bus reset packets with a
878 * wrong generation. We set the correct generation for these
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +0200879 * at a slightly incorrect time (in bus_reset_work).
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400880 */
Stefan Richterd34316a2008-04-12 22:31:25 +0200881 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter4a635592010-02-21 17:58:01 +0100882 if (!(ohci->quirks & QUIRK_RESET_PACKET))
Stefan Richterd34316a2008-04-12 22:31:25 +0200883 ohci->request_generation = (p.header[2] >> 16) & 0xff;
884 } else if (ctx == &ohci->ar_request_ctx) {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500885 fw_core_handle_request(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200886 } else {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500887 fw_core_handle_response(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200888 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500889
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500890 return buffer + length + 1;
891}
Kristian Høgsberged568912006-12-19 19:58:35 -0500892
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100893static void *handle_ar_packets(struct ar_context *ctx, void *p, void *end)
894{
895 void *next;
896
897 while (p < end) {
898 next = handle_ar_packet(ctx, p);
899 if (!next)
900 return p;
901 p = next;
902 }
903
904 return p;
905}
906
907static void ar_recycle_buffers(struct ar_context *ctx, unsigned int end_buffer)
908{
909 unsigned int i;
910
911 i = ar_first_buffer_index(ctx);
912 while (i != end_buffer) {
913 dma_sync_single_for_device(ctx->ohci->card.device,
914 ar_buffer_bus(ctx, i),
915 PAGE_SIZE, DMA_FROM_DEVICE);
916 ar_context_link_page(ctx, i);
917 i = ar_next_buffer_index(i);
918 }
919}
920
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500921static void ar_context_tasklet(unsigned long data)
922{
923 struct ar_context *ctx = (struct ar_context *)data;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100924 unsigned int end_buffer_index, end_buffer_offset;
925 void *p, *end;
Kristian Høgsberged568912006-12-19 19:58:35 -0500926
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100927 p = ctx->pointer;
928 if (!p)
929 return;
Kristian Høgsberged568912006-12-19 19:58:35 -0500930
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100931 end_buffer_index = ar_search_last_active_buffer(ctx,
932 &end_buffer_offset);
933 ar_sync_buffers_for_cpu(ctx, end_buffer_index, end_buffer_offset);
934 end = ctx->buffer + end_buffer_index * PAGE_SIZE + end_buffer_offset;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500935
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100936 if (end_buffer_index < ar_first_buffer_index(ctx)) {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400937 /*
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100938 * The filled part of the overall buffer wraps around; handle
939 * all packets up to the buffer end here. If the last packet
940 * wraps around, its tail will be visible after the buffer end
941 * because the buffer start pages are mapped there again.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400942 */
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100943 void *buffer_end = ctx->buffer + AR_BUFFERS * PAGE_SIZE;
944 p = handle_ar_packets(ctx, p, buffer_end);
945 if (p < buffer_end)
946 goto error;
947 /* adjust p to point back into the actual buffer */
948 p -= AR_BUFFERS * PAGE_SIZE;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500949 }
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100950
951 p = handle_ar_packets(ctx, p, end);
952 if (p != end) {
953 if (p > end)
954 ar_context_abort(ctx, "inconsistent descriptor");
955 goto error;
956 }
957
958 ctx->pointer = p;
959 ar_recycle_buffers(ctx, end_buffer_index);
960
961 return;
962
963error:
964 ctx->pointer = NULL;
Kristian Høgsberged568912006-12-19 19:58:35 -0500965}
966
Clemens Ladischec766a72010-11-30 08:25:17 +0100967static int ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci,
968 unsigned int descriptors_offset, u32 regs)
Kristian Høgsberged568912006-12-19 19:58:35 -0500969{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100970 unsigned int i;
971 dma_addr_t dma_addr;
972 struct page *pages[AR_BUFFERS + AR_WRAPAROUND_PAGES];
973 struct descriptor *d;
Kristian Høgsberged568912006-12-19 19:58:35 -0500974
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500975 ctx->regs = regs;
976 ctx->ohci = ohci;
Kristian Høgsberged568912006-12-19 19:58:35 -0500977 tasklet_init(&ctx->tasklet, ar_context_tasklet, (unsigned long)ctx);
978
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100979 for (i = 0; i < AR_BUFFERS; i++) {
980 ctx->pages[i] = alloc_page(GFP_KERNEL | GFP_DMA32);
981 if (!ctx->pages[i])
982 goto out_of_memory;
983 dma_addr = dma_map_page(ohci->card.device, ctx->pages[i],
984 0, PAGE_SIZE, DMA_FROM_DEVICE);
985 if (dma_mapping_error(ohci->card.device, dma_addr)) {
986 __free_page(ctx->pages[i]);
987 ctx->pages[i] = NULL;
988 goto out_of_memory;
989 }
990 set_page_private(ctx->pages[i], dma_addr);
991 }
992
993 for (i = 0; i < AR_BUFFERS; i++)
994 pages[i] = ctx->pages[i];
995 for (i = 0; i < AR_WRAPAROUND_PAGES; i++)
996 pages[AR_BUFFERS + i] = ctx->pages[i];
997 ctx->buffer = vm_map_ram(pages, AR_BUFFERS + AR_WRAPAROUND_PAGES,
Clemens Ladisch14271302011-01-13 10:12:17 +0100998 -1, PAGE_KERNEL);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +0100999 if (!ctx->buffer)
1000 goto out_of_memory;
1001
Clemens Ladischec766a72010-11-30 08:25:17 +01001002 ctx->descriptors = ohci->misc_buffer + descriptors_offset;
1003 ctx->descriptors_bus = ohci->misc_buffer_bus + descriptors_offset;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001004
1005 for (i = 0; i < AR_BUFFERS; i++) {
1006 d = &ctx->descriptors[i];
1007 d->req_count = cpu_to_le16(PAGE_SIZE);
1008 d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
1009 DESCRIPTOR_STATUS |
1010 DESCRIPTOR_BRANCH_ALWAYS);
1011 d->data_address = cpu_to_le32(ar_buffer_bus(ctx, i));
1012 d->branch_address = cpu_to_le32(ctx->descriptors_bus +
1013 ar_next_buffer_index(i) * sizeof(struct descriptor));
1014 }
Kristian Høgsberg32b46092007-02-06 14:49:30 -05001015
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001016 return 0;
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001017
1018out_of_memory:
1019 ar_context_release(ctx);
1020
1021 return -ENOMEM;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001022}
1023
1024static void ar_context_run(struct ar_context *ctx)
1025{
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001026 unsigned int i;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001027
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001028 for (i = 0; i < AR_BUFFERS; i++)
1029 ar_context_link_page(ctx, i);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001030
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01001031 ctx->pointer = ctx->buffer;
1032
1033 reg_write(ctx->ohci, COMMAND_PTR(ctx->regs), ctx->descriptors_bus | 1);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001034 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN);
Kristian Høgsberged568912006-12-19 19:58:35 -05001035}
Stefan Richter373b2ed2007-03-04 14:45:18 +01001036
Stefan Richter53dca512008-12-14 21:47:04 +01001037static struct descriptor *find_branch_descriptor(struct descriptor *d, int z)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001038{
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001039 __le16 branch;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001040
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001041 branch = d->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001042
1043 /* figure out which descriptor the branch address goes in */
Clemens Ladisch0ff8fbc2011-04-12 07:54:59 +02001044 if (z == 2 && branch == cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001045 return d;
1046 else
1047 return d + z - 1;
1048}
1049
Kristian Høgsberg30200732007-02-16 17:34:39 -05001050static void context_tasklet(unsigned long data)
1051{
1052 struct context *ctx = (struct context *) data;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001053 struct descriptor *d, *last;
1054 u32 address;
1055 int z;
David Moorefe5ca632008-01-06 17:21:41 -05001056 struct descriptor_buffer *desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001057
David Moorefe5ca632008-01-06 17:21:41 -05001058 desc = list_entry(ctx->buffer_list.next,
1059 struct descriptor_buffer, list);
1060 last = ctx->last;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001061 while (last->branch_address != 0) {
David Moorefe5ca632008-01-06 17:21:41 -05001062 struct descriptor_buffer *old_desc = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001063 address = le32_to_cpu(last->branch_address);
1064 z = address & 0xf;
David Moorefe5ca632008-01-06 17:21:41 -05001065 address &= ~0xf;
Clemens Ladischa572e682011-10-15 23:12:23 +02001066 ctx->current_bus = address;
David Moorefe5ca632008-01-06 17:21:41 -05001067
1068 /* If the branch address points to a buffer outside of the
1069 * current buffer, advance to the next buffer. */
1070 if (address < desc->buffer_bus ||
1071 address >= desc->buffer_bus + desc->used)
1072 desc = list_entry(desc->list.next,
1073 struct descriptor_buffer, list);
1074 d = desc->buffer + (address - desc->buffer_bus) / sizeof(*d);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001075 last = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001076
1077 if (!ctx->callback(ctx, d, last))
1078 break;
1079
David Moorefe5ca632008-01-06 17:21:41 -05001080 if (old_desc != desc) {
1081 /* If we've advanced to the next buffer, move the
1082 * previous buffer to the free list. */
1083 unsigned long flags;
1084 old_desc->used = 0;
1085 spin_lock_irqsave(&ctx->ohci->lock, flags);
1086 list_move_tail(&old_desc->list, &ctx->buffer_list);
1087 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1088 }
1089 ctx->last = last;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001090 }
1091}
1092
David Moorefe5ca632008-01-06 17:21:41 -05001093/*
1094 * Allocate a new buffer and add it to the list of free buffers for this
1095 * context. Must be called with ohci->lock held.
1096 */
Stefan Richter53dca512008-12-14 21:47:04 +01001097static int context_add_buffer(struct context *ctx)
David Moorefe5ca632008-01-06 17:21:41 -05001098{
1099 struct descriptor_buffer *desc;
Stefan Richterf5101d582008-03-14 00:27:49 +01001100 dma_addr_t uninitialized_var(bus_addr);
David Moorefe5ca632008-01-06 17:21:41 -05001101 int offset;
1102
1103 /*
1104 * 16MB of descriptors should be far more than enough for any DMA
1105 * program. This will catch run-away userspace or DoS attacks.
1106 */
1107 if (ctx->total_allocation >= 16*1024*1024)
1108 return -ENOMEM;
1109
1110 desc = dma_alloc_coherent(ctx->ohci->card.device, PAGE_SIZE,
1111 &bus_addr, GFP_ATOMIC);
1112 if (!desc)
1113 return -ENOMEM;
1114
1115 offset = (void *)&desc->buffer - (void *)desc;
1116 desc->buffer_size = PAGE_SIZE - offset;
1117 desc->buffer_bus = bus_addr + offset;
1118 desc->used = 0;
1119
1120 list_add_tail(&desc->list, &ctx->buffer_list);
1121 ctx->total_allocation += PAGE_SIZE;
1122
1123 return 0;
1124}
1125
Stefan Richter53dca512008-12-14 21:47:04 +01001126static int context_init(struct context *ctx, struct fw_ohci *ohci,
1127 u32 regs, descriptor_callback_t callback)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001128{
1129 ctx->ohci = ohci;
1130 ctx->regs = regs;
David Moorefe5ca632008-01-06 17:21:41 -05001131 ctx->total_allocation = 0;
1132
1133 INIT_LIST_HEAD(&ctx->buffer_list);
1134 if (context_add_buffer(ctx) < 0)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001135 return -ENOMEM;
1136
David Moorefe5ca632008-01-06 17:21:41 -05001137 ctx->buffer_tail = list_entry(ctx->buffer_list.next,
1138 struct descriptor_buffer, list);
1139
Kristian Høgsberg30200732007-02-16 17:34:39 -05001140 tasklet_init(&ctx->tasklet, context_tasklet, (unsigned long)ctx);
1141 ctx->callback = callback;
1142
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001143 /*
1144 * We put a dummy descriptor in the buffer that has a NULL
Kristian Høgsberg30200732007-02-16 17:34:39 -05001145 * branch address and looks like it's been sent. That way we
David Moorefe5ca632008-01-06 17:21:41 -05001146 * have a descriptor to append DMA programs to.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001147 */
David Moorefe5ca632008-01-06 17:21:41 -05001148 memset(ctx->buffer_tail->buffer, 0, sizeof(*ctx->buffer_tail->buffer));
1149 ctx->buffer_tail->buffer->control = cpu_to_le16(DESCRIPTOR_OUTPUT_LAST);
1150 ctx->buffer_tail->buffer->transfer_status = cpu_to_le16(0x8011);
1151 ctx->buffer_tail->used += sizeof(*ctx->buffer_tail->buffer);
1152 ctx->last = ctx->buffer_tail->buffer;
1153 ctx->prev = ctx->buffer_tail->buffer;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001154
1155 return 0;
1156}
1157
Stefan Richter53dca512008-12-14 21:47:04 +01001158static void context_release(struct context *ctx)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001159{
1160 struct fw_card *card = &ctx->ohci->card;
David Moorefe5ca632008-01-06 17:21:41 -05001161 struct descriptor_buffer *desc, *tmp;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001162
David Moorefe5ca632008-01-06 17:21:41 -05001163 list_for_each_entry_safe(desc, tmp, &ctx->buffer_list, list)
1164 dma_free_coherent(card->device, PAGE_SIZE, desc,
1165 desc->buffer_bus -
1166 ((void *)&desc->buffer - (void *)desc));
Kristian Høgsberg30200732007-02-16 17:34:39 -05001167}
1168
David Moorefe5ca632008-01-06 17:21:41 -05001169/* Must be called with ohci->lock held */
Stefan Richter53dca512008-12-14 21:47:04 +01001170static struct descriptor *context_get_descriptors(struct context *ctx,
1171 int z, dma_addr_t *d_bus)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001172{
David Moorefe5ca632008-01-06 17:21:41 -05001173 struct descriptor *d = NULL;
1174 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001175
David Moorefe5ca632008-01-06 17:21:41 -05001176 if (z * sizeof(*d) > desc->buffer_size)
1177 return NULL;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001178
David Moorefe5ca632008-01-06 17:21:41 -05001179 if (z * sizeof(*d) > desc->buffer_size - desc->used) {
1180 /* No room for the descriptor in this buffer, so advance to the
1181 * next one. */
1182
1183 if (desc->list.next == &ctx->buffer_list) {
1184 /* If there is no free buffer next in the list,
1185 * allocate one. */
1186 if (context_add_buffer(ctx) < 0)
1187 return NULL;
1188 }
1189 desc = list_entry(desc->list.next,
1190 struct descriptor_buffer, list);
1191 ctx->buffer_tail = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001192 }
1193
David Moorefe5ca632008-01-06 17:21:41 -05001194 d = desc->buffer + desc->used / sizeof(*d);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001195 memset(d, 0, z * sizeof(*d));
David Moorefe5ca632008-01-06 17:21:41 -05001196 *d_bus = desc->buffer_bus + desc->used;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001197
1198 return d;
1199}
1200
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001201static void context_run(struct context *ctx, u32 extra)
Kristian Høgsberg30200732007-02-16 17:34:39 -05001202{
1203 struct fw_ohci *ohci = ctx->ohci;
1204
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001205 reg_write(ohci, COMMAND_PTR(ctx->regs),
David Moorefe5ca632008-01-06 17:21:41 -05001206 le32_to_cpu(ctx->last->branch_address));
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001207 reg_write(ohci, CONTROL_CLEAR(ctx->regs), ~0);
1208 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN | extra);
Clemens Ladisch386a4152010-12-24 14:42:46 +01001209 ctx->running = true;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001210 flush_writes(ohci);
1211}
1212
1213static void context_append(struct context *ctx,
1214 struct descriptor *d, int z, int extra)
1215{
1216 dma_addr_t d_bus;
David Moorefe5ca632008-01-06 17:21:41 -05001217 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001218
David Moorefe5ca632008-01-06 17:21:41 -05001219 d_bus = desc->buffer_bus + (d - desc->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001220
David Moorefe5ca632008-01-06 17:21:41 -05001221 desc->used += (z + extra) * sizeof(*d);
Stefan Richter071595e2010-07-27 13:20:33 +02001222
1223 wmb(); /* finish init of new descriptors before branch_address update */
David Moorefe5ca632008-01-06 17:21:41 -05001224 ctx->prev->branch_address = cpu_to_le32(d_bus | z);
1225 ctx->prev = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001226}
1227
1228static void context_stop(struct context *ctx)
1229{
Stefan Richter64d21722011-12-20 21:32:46 +01001230 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001231 u32 reg;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001232 int i;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001233
Stefan Richter64d21722011-12-20 21:32:46 +01001234 reg_write(ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
Clemens Ladisch386a4152010-12-24 14:42:46 +01001235 ctx->running = false;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001236
Stefan Richter9ef28cc2011-06-12 14:30:57 +02001237 for (i = 0; i < 1000; i++) {
Stefan Richter64d21722011-12-20 21:32:46 +01001238 reg = reg_read(ohci, CONTROL_SET(ctx->regs));
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001239 if ((reg & CONTEXT_ACTIVE) == 0)
Stefan Richterb0068542009-01-05 20:43:23 +01001240 return;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001241
Stefan Richter9ef28cc2011-06-12 14:30:57 +02001242 if (i)
1243 udelay(10);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001244 }
Stefan Richter64d21722011-12-20 21:32:46 +01001245 dev_err(ohci->card.device, "DMA context still active (0x%08x)\n", reg);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001246}
Kristian Høgsberged568912006-12-19 19:58:35 -05001247
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001248struct driver_data {
Clemens Ladischda289472011-04-11 09:57:54 +02001249 u8 inline_data[8];
Kristian Høgsberged568912006-12-19 19:58:35 -05001250 struct fw_packet *packet;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001251};
1252
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001253/*
1254 * This function apppends a packet to the DMA queue for transmission.
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001255 * Must always be called with the ochi->lock held to ensure proper
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001256 * generation handling and locking around packet queue manipulation.
1257 */
Stefan Richter53dca512008-12-14 21:47:04 +01001258static int at_context_queue_packet(struct context *ctx,
1259 struct fw_packet *packet)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001260{
Kristian Høgsberged568912006-12-19 19:58:35 -05001261 struct fw_ohci *ohci = ctx->ohci;
Stefan Richter4b6d51e2007-10-21 11:20:07 +02001262 dma_addr_t d_bus, uninitialized_var(payload_bus);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001263 struct driver_data *driver_data;
1264 struct descriptor *d, *last;
1265 __le32 *header;
Kristian Høgsberged568912006-12-19 19:58:35 -05001266 int z, tcode;
1267
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001268 d = context_get_descriptors(ctx, 4, &d_bus);
1269 if (d == NULL) {
1270 packet->ack = RCODE_SEND_ERROR;
1271 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001272 }
1273
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001274 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001275 d[0].res_count = cpu_to_le16(packet->timestamp);
1276
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001277 /*
1278 * The DMA format for asyncronous link packets is different
Kristian Høgsberged568912006-12-19 19:58:35 -05001279 * from the IEEE1394 layout, so shift the fields around
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001280 * accordingly.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001281 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001282
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001283 tcode = (packet->header[0] >> 4) & 0x0f;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001284 header = (__le32 *) &d[1];
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001285 switch (tcode) {
1286 case TCODE_WRITE_QUADLET_REQUEST:
1287 case TCODE_WRITE_BLOCK_REQUEST:
1288 case TCODE_WRITE_RESPONSE:
1289 case TCODE_READ_QUADLET_REQUEST:
1290 case TCODE_READ_BLOCK_REQUEST:
1291 case TCODE_READ_QUADLET_RESPONSE:
1292 case TCODE_READ_BLOCK_RESPONSE:
1293 case TCODE_LOCK_REQUEST:
1294 case TCODE_LOCK_RESPONSE:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001295 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1296 (packet->speed << 16));
1297 header[1] = cpu_to_le32((packet->header[1] & 0xffff) |
1298 (packet->header[0] & 0xffff0000));
1299 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001300
Kristian Høgsberged568912006-12-19 19:58:35 -05001301 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001302 header[3] = cpu_to_le32(packet->header[3]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001303 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001304 header[3] = (__force __le32) packet->header[3];
1305
1306 d[0].req_count = cpu_to_le16(packet->header_length);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001307 break;
1308
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001309 case TCODE_LINK_INTERNAL:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001310 header[0] = cpu_to_le32((OHCI1394_phy_tcode << 4) |
1311 (packet->speed << 16));
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001312 header[1] = cpu_to_le32(packet->header[1]);
1313 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001314 d[0].req_count = cpu_to_le16(12);
Stefan Richtercc550212010-07-18 13:00:50 +02001315
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001316 if (is_ping_packet(&packet->header[1]))
Stefan Richtercc550212010-07-18 13:00:50 +02001317 d[0].control |= cpu_to_le16(DESCRIPTOR_PING);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001318 break;
1319
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001320 case TCODE_STREAM_DATA:
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001321 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1322 (packet->speed << 16));
1323 header[1] = cpu_to_le32(packet->header[0] & 0xffff0000);
1324 d[0].req_count = cpu_to_le16(8);
1325 break;
1326
1327 default:
1328 /* BUG(); */
1329 packet->ack = RCODE_SEND_ERROR;
1330 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001331 }
1332
Clemens Ladischda289472011-04-11 09:57:54 +02001333 BUILD_BUG_ON(sizeof(struct driver_data) > sizeof(struct descriptor));
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001334 driver_data = (struct driver_data *) &d[3];
1335 driver_data->packet = packet;
Kristian Høgsberg20d11672007-03-26 19:18:19 -04001336 packet->driver_data = driver_data;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001337
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001338 if (packet->payload_length > 0) {
Clemens Ladischda289472011-04-11 09:57:54 +02001339 if (packet->payload_length > sizeof(driver_data->inline_data)) {
1340 payload_bus = dma_map_single(ohci->card.device,
1341 packet->payload,
1342 packet->payload_length,
1343 DMA_TO_DEVICE);
1344 if (dma_mapping_error(ohci->card.device, payload_bus)) {
1345 packet->ack = RCODE_SEND_ERROR;
1346 return -1;
1347 }
1348 packet->payload_bus = payload_bus;
1349 packet->payload_mapped = true;
1350 } else {
1351 memcpy(driver_data->inline_data, packet->payload,
1352 packet->payload_length);
1353 payload_bus = d_bus + 3 * sizeof(*d);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001354 }
1355
1356 d[2].req_count = cpu_to_le16(packet->payload_length);
1357 d[2].data_address = cpu_to_le32(payload_bus);
1358 last = &d[2];
1359 z = 3;
1360 } else {
1361 last = &d[0];
1362 z = 2;
1363 }
1364
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001365 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
1366 DESCRIPTOR_IRQ_ALWAYS |
1367 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001368
Stefan Richterb6258fc2011-02-26 15:08:35 +01001369 /* FIXME: Document how the locking works. */
1370 if (ohci->generation != packet->generation) {
Stefan Richter19593ff2009-10-14 20:40:10 +02001371 if (packet->payload_mapped)
Stefan Richterab88ca42007-08-29 19:40:28 +02001372 dma_unmap_single(ohci->card.device, payload_bus,
1373 packet->payload_length, DMA_TO_DEVICE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001374 packet->ack = RCODE_GENERATION;
1375 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001376 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001377
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001378 context_append(ctx, d, z, 4 - z);
Kristian Høgsberged568912006-12-19 19:58:35 -05001379
Clemens Ladischdd6254e2011-05-16 08:10:10 +02001380 if (ctx->running)
Clemens Ladisch13882a82011-05-02 09:33:56 +02001381 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladischdd6254e2011-05-16 08:10:10 +02001382 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001383 context_run(ctx, 0);
Kristian Høgsberged568912006-12-19 19:58:35 -05001384
1385 return 0;
1386}
1387
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001388static void at_context_flush(struct context *ctx)
1389{
1390 tasklet_disable(&ctx->tasklet);
1391
1392 ctx->flushing = true;
1393 context_tasklet((unsigned long)ctx);
1394 ctx->flushing = false;
1395
1396 tasklet_enable(&ctx->tasklet);
1397}
1398
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001399static int handle_at_packet(struct context *context,
1400 struct descriptor *d,
1401 struct descriptor *last)
1402{
1403 struct driver_data *driver_data;
1404 struct fw_packet *packet;
1405 struct fw_ohci *ohci = context->ohci;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001406 int evt;
1407
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001408 if (last->transfer_status == 0 && !context->flushing)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001409 /* This descriptor isn't done yet, stop iteration. */
1410 return 0;
1411
1412 driver_data = (struct driver_data *) &d[3];
1413 packet = driver_data->packet;
1414 if (packet == NULL)
1415 /* This packet was cancelled, just continue. */
1416 return 1;
1417
Stefan Richter19593ff2009-10-14 20:40:10 +02001418 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01001419 dma_unmap_single(ohci->card.device, packet->payload_bus,
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001420 packet->payload_length, DMA_TO_DEVICE);
1421
1422 evt = le16_to_cpu(last->transfer_status) & 0x1f;
1423 packet->timestamp = le16_to_cpu(last->res_count);
1424
Stefan Richter64d21722011-12-20 21:32:46 +01001425 log_ar_at_event(ohci, 'T', packet->speed, packet->header, evt);
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001426
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001427 switch (evt) {
1428 case OHCI1394_evt_timeout:
1429 /* Async response transmit timed out. */
1430 packet->ack = RCODE_CANCELLED;
1431 break;
1432
1433 case OHCI1394_evt_flushed:
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001434 /*
1435 * The packet was flushed should give same error as
1436 * when we try to use a stale generation count.
1437 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001438 packet->ack = RCODE_GENERATION;
1439 break;
1440
1441 case OHCI1394_evt_missing_ack:
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001442 if (context->flushing)
1443 packet->ack = RCODE_GENERATION;
1444 else {
1445 /*
1446 * Using a valid (current) generation count, but the
1447 * node is not on the bus or not sending acks.
1448 */
1449 packet->ack = RCODE_NO_ACK;
1450 }
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001451 break;
1452
1453 case ACK_COMPLETE + 0x10:
1454 case ACK_PENDING + 0x10:
1455 case ACK_BUSY_X + 0x10:
1456 case ACK_BUSY_A + 0x10:
1457 case ACK_BUSY_B + 0x10:
1458 case ACK_DATA_ERROR + 0x10:
1459 case ACK_TYPE_ERROR + 0x10:
1460 packet->ack = evt - 0x10;
1461 break;
1462
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001463 case OHCI1394_evt_no_status:
1464 if (context->flushing) {
1465 packet->ack = RCODE_GENERATION;
1466 break;
1467 }
1468 /* fall through */
1469
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001470 default:
1471 packet->ack = RCODE_SEND_ERROR;
1472 break;
1473 }
1474
1475 packet->callback(packet, &ohci->card, packet->ack);
1476
1477 return 1;
1478}
1479
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001480#define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
1481#define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
1482#define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
1483#define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
1484#define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001485
Stefan Richter53dca512008-12-14 21:47:04 +01001486static void handle_local_rom(struct fw_ohci *ohci,
1487 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001488{
1489 struct fw_packet response;
1490 int tcode, length, i;
1491
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001492 tcode = HEADER_GET_TCODE(packet->header[0]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001493 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001494 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001495 else
1496 length = 4;
1497
1498 i = csr - CSR_CONFIG_ROM;
1499 if (i + length > CONFIG_ROM_SIZE) {
1500 fw_fill_response(&response, packet->header,
1501 RCODE_ADDRESS_ERROR, NULL, 0);
1502 } else if (!TCODE_IS_READ_REQUEST(tcode)) {
1503 fw_fill_response(&response, packet->header,
1504 RCODE_TYPE_ERROR, NULL, 0);
1505 } else {
1506 fw_fill_response(&response, packet->header, RCODE_COMPLETE,
1507 (void *) ohci->config_rom + i, length);
1508 }
1509
1510 fw_core_handle_response(&ohci->card, &response);
1511}
1512
Stefan Richter53dca512008-12-14 21:47:04 +01001513static void handle_local_lock(struct fw_ohci *ohci,
1514 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001515{
1516 struct fw_packet response;
Clemens Ladische1393662010-04-12 10:35:44 +02001517 int tcode, length, ext_tcode, sel, try;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001518 __be32 *payload, lock_old;
1519 u32 lock_arg, lock_data;
1520
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001521 tcode = HEADER_GET_TCODE(packet->header[0]);
1522 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001523 payload = packet->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001524 ext_tcode = HEADER_GET_EXTENDED_TCODE(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001525
1526 if (tcode == TCODE_LOCK_REQUEST &&
1527 ext_tcode == EXTCODE_COMPARE_SWAP && length == 8) {
1528 lock_arg = be32_to_cpu(payload[0]);
1529 lock_data = be32_to_cpu(payload[1]);
1530 } else if (tcode == TCODE_READ_QUADLET_REQUEST) {
1531 lock_arg = 0;
1532 lock_data = 0;
1533 } else {
1534 fw_fill_response(&response, packet->header,
1535 RCODE_TYPE_ERROR, NULL, 0);
1536 goto out;
1537 }
1538
1539 sel = (csr - CSR_BUS_MANAGER_ID) / 4;
1540 reg_write(ohci, OHCI1394_CSRData, lock_data);
1541 reg_write(ohci, OHCI1394_CSRCompareData, lock_arg);
1542 reg_write(ohci, OHCI1394_CSRControl, sel);
1543
Clemens Ladische1393662010-04-12 10:35:44 +02001544 for (try = 0; try < 20; try++)
1545 if (reg_read(ohci, OHCI1394_CSRControl) & 0x80000000) {
1546 lock_old = cpu_to_be32(reg_read(ohci,
1547 OHCI1394_CSRData));
1548 fw_fill_response(&response, packet->header,
1549 RCODE_COMPLETE,
1550 &lock_old, sizeof(lock_old));
1551 goto out;
1552 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001553
Stefan Richter64d21722011-12-20 21:32:46 +01001554 dev_err(ohci->card.device, "swap not done (CSR lock timeout)\n");
Clemens Ladische1393662010-04-12 10:35:44 +02001555 fw_fill_response(&response, packet->header, RCODE_BUSY, NULL, 0);
1556
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001557 out:
1558 fw_core_handle_response(&ohci->card, &response);
1559}
1560
Stefan Richter53dca512008-12-14 21:47:04 +01001561static void handle_local_request(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001562{
Clemens Ladisch26082032010-04-12 10:35:30 +02001563 u64 offset, csr;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001564
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001565 if (ctx == &ctx->ohci->at_request_ctx) {
1566 packet->ack = ACK_PENDING;
1567 packet->callback(packet, &ctx->ohci->card, packet->ack);
1568 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001569
1570 offset =
1571 ((unsigned long long)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001572 HEADER_GET_OFFSET_HIGH(packet->header[1]) << 32) |
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001573 packet->header[2];
1574 csr = offset - CSR_REGISTER_BASE;
1575
1576 /* Handle config rom reads. */
1577 if (csr >= CSR_CONFIG_ROM && csr < CSR_CONFIG_ROM_END)
1578 handle_local_rom(ctx->ohci, packet, csr);
1579 else switch (csr) {
1580 case CSR_BUS_MANAGER_ID:
1581 case CSR_BANDWIDTH_AVAILABLE:
1582 case CSR_CHANNELS_AVAILABLE_HI:
1583 case CSR_CHANNELS_AVAILABLE_LO:
1584 handle_local_lock(ctx->ohci, packet, csr);
1585 break;
1586 default:
1587 if (ctx == &ctx->ohci->at_request_ctx)
1588 fw_core_handle_request(&ctx->ohci->card, packet);
1589 else
1590 fw_core_handle_response(&ctx->ohci->card, packet);
1591 break;
1592 }
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001593
1594 if (ctx == &ctx->ohci->at_response_ctx) {
1595 packet->ack = ACK_COMPLETE;
1596 packet->callback(packet, &ctx->ohci->card, packet->ack);
1597 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001598}
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001599
Stefan Richter53dca512008-12-14 21:47:04 +01001600static void at_context_transmit(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberged568912006-12-19 19:58:35 -05001601{
Kristian Høgsberged568912006-12-19 19:58:35 -05001602 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001603 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05001604
1605 spin_lock_irqsave(&ctx->ohci->lock, flags);
1606
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001607 if (HEADER_GET_DESTINATION(packet->header[0]) == ctx->ohci->node_id &&
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001608 ctx->ohci->generation == packet->generation) {
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001609 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1610 handle_local_request(ctx, packet);
1611 return;
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001612 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001613
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001614 ret = at_context_queue_packet(ctx, packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001615 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1616
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001617 if (ret < 0)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001618 packet->callback(packet, &ctx->ohci->card, packet->ack);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001619
Kristian Høgsberged568912006-12-19 19:58:35 -05001620}
1621
Clemens Ladischf117a3e2011-01-10 17:21:35 +01001622static void detect_dead_context(struct fw_ohci *ohci,
1623 const char *name, unsigned int regs)
1624{
1625 u32 ctl;
1626
1627 ctl = reg_read(ohci, CONTROL_SET(regs));
Stefan Richtercfda62b2012-03-04 21:34:21 +01001628 if (ctl & CONTEXT_DEAD)
Stefan Richter64d21722011-12-20 21:32:46 +01001629 dev_err(ohci->card.device,
1630 "DMA context %s has stopped, error code: %s\n",
1631 name, evts[ctl & 0x1f]);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01001632}
1633
1634static void handle_dead_contexts(struct fw_ohci *ohci)
1635{
1636 unsigned int i;
1637 char name[8];
1638
1639 detect_dead_context(ohci, "ATReq", OHCI1394_AsReqTrContextBase);
1640 detect_dead_context(ohci, "ATRsp", OHCI1394_AsRspTrContextBase);
1641 detect_dead_context(ohci, "ARReq", OHCI1394_AsReqRcvContextBase);
1642 detect_dead_context(ohci, "ARRsp", OHCI1394_AsRspRcvContextBase);
1643 for (i = 0; i < 32; ++i) {
1644 if (!(ohci->it_context_support & (1 << i)))
1645 continue;
1646 sprintf(name, "IT%u", i);
1647 detect_dead_context(ohci, name, OHCI1394_IsoXmitContextBase(i));
1648 }
1649 for (i = 0; i < 32; ++i) {
1650 if (!(ohci->ir_context_support & (1 << i)))
1651 continue;
1652 sprintf(name, "IR%u", i);
1653 detect_dead_context(ohci, name, OHCI1394_IsoRcvContextBase(i));
1654 }
1655 /* TODO: maybe try to flush and restart the dead contexts */
1656}
1657
Clemens Ladischa48777e2010-06-10 08:33:07 +02001658static u32 cycle_timer_ticks(u32 cycle_timer)
1659{
1660 u32 ticks;
1661
1662 ticks = cycle_timer & 0xfff;
1663 ticks += 3072 * ((cycle_timer >> 12) & 0x1fff);
1664 ticks += (3072 * 8000) * (cycle_timer >> 25);
1665
1666 return ticks;
1667}
1668
1669/*
1670 * Some controllers exhibit one or more of the following bugs when updating the
1671 * iso cycle timer register:
1672 * - When the lowest six bits are wrapping around to zero, a read that happens
1673 * at the same time will return garbage in the lowest ten bits.
1674 * - When the cycleOffset field wraps around to zero, the cycleCount field is
1675 * not incremented for about 60 ns.
1676 * - Occasionally, the entire register reads zero.
1677 *
1678 * To catch these, we read the register three times and ensure that the
1679 * difference between each two consecutive reads is approximately the same, i.e.
1680 * less than twice the other. Furthermore, any negative difference indicates an
1681 * error. (A PCI read should take at least 20 ticks of the 24.576 MHz timer to
1682 * execute, so we have enough precision to compute the ratio of the differences.)
1683 */
1684static u32 get_cycle_time(struct fw_ohci *ohci)
1685{
1686 u32 c0, c1, c2;
1687 u32 t0, t1, t2;
1688 s32 diff01, diff12;
1689 int i;
1690
1691 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1692
1693 if (ohci->quirks & QUIRK_CYCLE_TIMER) {
1694 i = 0;
1695 c1 = c2;
1696 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1697 do {
1698 c0 = c1;
1699 c1 = c2;
1700 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1701 t0 = cycle_timer_ticks(c0);
1702 t1 = cycle_timer_ticks(c1);
1703 t2 = cycle_timer_ticks(c2);
1704 diff01 = t1 - t0;
1705 diff12 = t2 - t1;
1706 } while ((diff01 <= 0 || diff12 <= 0 ||
1707 diff01 / diff12 >= 2 || diff12 / diff01 >= 2)
1708 && i++ < 20);
1709 }
1710
1711 return c2;
1712}
1713
1714/*
1715 * This function has to be called at least every 64 seconds. The bus_time
1716 * field stores not only the upper 25 bits of the BUS_TIME register but also
1717 * the most significant bit of the cycle timer in bit 6 so that we can detect
1718 * changes in this bit.
1719 */
1720static u32 update_bus_time(struct fw_ohci *ohci)
1721{
1722 u32 cycle_time_seconds = get_cycle_time(ohci) >> 25;
1723
1724 if ((ohci->bus_time & 0x40) != (cycle_time_seconds & 0x40))
1725 ohci->bus_time += 0x40;
1726
1727 return ohci->bus_time | cycle_time_seconds;
1728}
1729
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001730static int get_status_for_port(struct fw_ohci *ohci, int port_index)
1731{
1732 int reg;
1733
1734 mutex_lock(&ohci->phy_reg_mutex);
1735 reg = write_phy_reg(ohci, 7, port_index);
Stefan Richter28897fb2011-09-19 00:17:37 +02001736 if (reg >= 0)
1737 reg = read_phy_reg(ohci, 8);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001738 mutex_unlock(&ohci->phy_reg_mutex);
1739 if (reg < 0)
1740 return reg;
1741
1742 switch (reg & 0x0f) {
1743 case 0x06:
1744 return 2; /* is child node (connected to parent node) */
1745 case 0x0e:
1746 return 3; /* is parent node (connected to child node) */
1747 }
1748 return 1; /* not connected */
1749}
1750
1751static int get_self_id_pos(struct fw_ohci *ohci, u32 self_id,
1752 int self_id_count)
1753{
1754 int i;
1755 u32 entry;
Stefan Richter28897fb2011-09-19 00:17:37 +02001756
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001757 for (i = 0; i < self_id_count; i++) {
1758 entry = ohci->self_id_buffer[i];
1759 if ((self_id & 0xff000000) == (entry & 0xff000000))
1760 return -1;
1761 if ((self_id & 0xff000000) < (entry & 0xff000000))
1762 return i;
1763 }
1764 return i;
1765}
1766
1767/*
Stefan Richter28897fb2011-09-19 00:17:37 +02001768 * TI TSB82AA2B and TSB12LV26 do not receive the selfID of a locally
1769 * attached TSB41BA3D phy; see http://www.ti.com/litv/pdf/sllz059.
1770 * Construct the selfID from phy register contents.
1771 * FIXME: How to determine the selfID.i flag?
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001772 */
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001773static int find_and_insert_self_id(struct fw_ohci *ohci, int self_id_count)
1774{
Stefan Richter28897fb2011-09-19 00:17:37 +02001775 int reg, i, pos, status;
1776 /* link active 1, speed 3, bridge 0, contender 1, more packets 0 */
1777 u32 self_id = 0x8040c800;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001778
1779 reg = reg_read(ohci, OHCI1394_NodeID);
1780 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter64d21722011-12-20 21:32:46 +01001781 dev_notice(ohci->card.device,
1782 "node ID not valid, new bus reset in progress\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001783 return -EBUSY;
1784 }
1785 self_id |= ((reg & 0x3f) << 24); /* phy ID */
1786
Stefan Richter28897fb2011-09-19 00:17:37 +02001787 reg = ohci_read_phy_reg(&ohci->card, 4);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001788 if (reg < 0)
1789 return reg;
1790 self_id |= ((reg & 0x07) << 8); /* power class */
1791
Stefan Richter28897fb2011-09-19 00:17:37 +02001792 reg = ohci_read_phy_reg(&ohci->card, 1);
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001793 if (reg < 0)
1794 return reg;
1795 self_id |= ((reg & 0x3f) << 16); /* gap count */
1796
1797 for (i = 0; i < 3; i++) {
1798 status = get_status_for_port(ohci, i);
1799 if (status < 0)
1800 return status;
1801 self_id |= ((status & 0x3) << (6 - (i * 2)));
1802 }
1803
1804 pos = get_self_id_pos(ohci, self_id, self_id_count);
1805 if (pos >= 0) {
1806 memmove(&(ohci->self_id_buffer[pos+1]),
1807 &(ohci->self_id_buffer[pos]),
1808 (self_id_count - pos) * sizeof(*ohci->self_id_buffer));
1809 ohci->self_id_buffer[pos] = self_id;
1810 self_id_count++;
1811 }
1812 return self_id_count;
1813}
1814
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02001815static void bus_reset_work(struct work_struct *work)
Kristian Høgsberged568912006-12-19 19:58:35 -05001816{
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02001817 struct fw_ohci *ohci =
1818 container_of(work, struct fw_ohci, bus_reset_work);
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001819 int self_id_count, i, j, reg;
Kristian Høgsberged568912006-12-19 19:58:35 -05001820 int generation, new_generation;
1821 unsigned long flags;
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001822 void *free_rom = NULL;
1823 dma_addr_t free_rom_bus = 0;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001824 bool is_new_root;
Kristian Høgsberged568912006-12-19 19:58:35 -05001825
1826 reg = reg_read(ohci, OHCI1394_NodeID);
1827 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter64d21722011-12-20 21:32:46 +01001828 dev_notice(ohci->card.device,
1829 "node ID not valid, new bus reset in progress\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05001830 return;
1831 }
Stefan Richter02ff8f82007-08-30 00:11:40 +02001832 if ((reg & OHCI1394_NodeID_nodeNumber) == 63) {
Stefan Richter64d21722011-12-20 21:32:46 +01001833 dev_notice(ohci->card.device, "malconfigured bus\n");
Stefan Richter02ff8f82007-08-30 00:11:40 +02001834 return;
1835 }
1836 ohci->node_id = reg & (OHCI1394_NodeID_busNumber |
1837 OHCI1394_NodeID_nodeNumber);
Kristian Høgsberged568912006-12-19 19:58:35 -05001838
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001839 is_new_root = (reg & OHCI1394_NodeID_root) != 0;
1840 if (!(ohci->is_root && is_new_root))
1841 reg_write(ohci, OHCI1394_LinkControlSet,
1842 OHCI1394_LinkControl_cycleMaster);
1843 ohci->is_root = is_new_root;
1844
Stefan Richterc8a9a492008-03-19 21:40:32 +01001845 reg = reg_read(ohci, OHCI1394_SelfIDCount);
1846 if (reg & OHCI1394_SelfIDCount_selfIDError) {
Stefan Richter64d21722011-12-20 21:32:46 +01001847 dev_notice(ohci->card.device, "inconsistent self IDs\n");
Stefan Richterc8a9a492008-03-19 21:40:32 +01001848 return;
1849 }
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001850 /*
1851 * The count in the SelfIDCount register is the number of
Kristian Høgsberged568912006-12-19 19:58:35 -05001852 * bytes in the self ID receive buffer. Since we also receive
1853 * the inverted quadlets and a header quadlet, we shift one
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001854 * bit extra to get the actual number of self IDs.
1855 */
Stefan Richter928ec5f2009-09-06 18:49:17 +02001856 self_id_count = (reg >> 3) & 0xff;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001857
1858 if (self_id_count > 252) {
Stefan Richter64d21722011-12-20 21:32:46 +01001859 dev_notice(ohci->card.device, "inconsistent self IDs\n");
Stefan Richter016bf3d2008-03-19 22:05:02 +01001860 return;
1861 }
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001862
Stefan Richter11bf20a2008-03-01 02:47:15 +01001863 generation = (cond_le32_to_cpu(ohci->self_id_cpu[0]) >> 16) & 0xff;
Stefan Richteree71c2f2007-08-25 14:08:19 +02001864 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001865
1866 for (i = 1, j = 0; j < self_id_count; i += 2, j++) {
Stefan Richterc8a9a492008-03-19 21:40:32 +01001867 if (ohci->self_id_cpu[i] != ~ohci->self_id_cpu[i + 1]) {
Clemens Ladisch32eaeae2011-10-15 18:14:39 +02001868 /*
1869 * If the invalid data looks like a cycle start packet,
1870 * it's likely to be the result of the cycle master
1871 * having a wrong gap count. In this case, the self IDs
1872 * so far are valid and should be processed so that the
1873 * bus manager can then correct the gap count.
1874 */
1875 if (cond_le32_to_cpu(ohci->self_id_cpu[i])
1876 == 0xffff008f) {
Stefan Richter64d21722011-12-20 21:32:46 +01001877 dev_notice(ohci->card.device,
1878 "ignoring spurious self IDs\n");
Clemens Ladisch32eaeae2011-10-15 18:14:39 +02001879 self_id_count = j;
1880 break;
1881 } else {
Stefan Richter64d21722011-12-20 21:32:46 +01001882 dev_notice(ohci->card.device,
1883 "inconsistent self IDs\n");
Clemens Ladisch32eaeae2011-10-15 18:14:39 +02001884 return;
1885 }
Stefan Richterc8a9a492008-03-19 21:40:32 +01001886 }
Stefan Richter11bf20a2008-03-01 02:47:15 +01001887 ohci->self_id_buffer[j] =
1888 cond_le32_to_cpu(ohci->self_id_cpu[i]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001889 }
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001890
1891 if (ohci->quirks & QUIRK_TI_SLLZ059) {
1892 self_id_count = find_and_insert_self_id(ohci, self_id_count);
1893 if (self_id_count < 0) {
Stefan Richter64d21722011-12-20 21:32:46 +01001894 dev_notice(ohci->card.device,
1895 "could not construct local self ID\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001896 return;
1897 }
1898 }
1899
1900 if (self_id_count == 0) {
Stefan Richter64d21722011-12-20 21:32:46 +01001901 dev_notice(ohci->card.device, "inconsistent self IDs\n");
Stephan Gatzka25935eb2011-09-12 22:23:53 +02001902 return;
1903 }
Stefan Richteree71c2f2007-08-25 14:08:19 +02001904 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001905
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001906 /*
1907 * Check the consistency of the self IDs we just read. The
Kristian Høgsberged568912006-12-19 19:58:35 -05001908 * problem we face is that a new bus reset can start while we
1909 * read out the self IDs from the DMA buffer. If this happens,
1910 * the DMA buffer will be overwritten with new self IDs and we
1911 * will read out inconsistent data. The OHCI specification
1912 * (section 11.2) recommends a technique similar to
1913 * linux/seqlock.h, where we remember the generation of the
1914 * self IDs in the buffer before reading them out and compare
1915 * it to the current generation after reading them out. If
1916 * the two generations match we know we have a consistent set
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001917 * of self IDs.
1918 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001919
1920 new_generation = (reg_read(ohci, OHCI1394_SelfIDCount) >> 16) & 0xff;
1921 if (new_generation != generation) {
Stefan Richter64d21722011-12-20 21:32:46 +01001922 dev_notice(ohci->card.device,
1923 "new bus reset, discarding self ids\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05001924 return;
1925 }
1926
1927 /* FIXME: Document how the locking works. */
1928 spin_lock_irqsave(&ohci->lock, flags);
1929
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001930 ohci->generation = -1; /* prevent AT packet queueing */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001931 context_stop(&ohci->at_request_ctx);
1932 context_stop(&ohci->at_response_ctx);
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001933
1934 spin_unlock_irqrestore(&ohci->lock, flags);
1935
Stefan Richter78dec562011-01-01 15:15:40 +01001936 /*
1937 * Per OHCI 1.2 draft, clause 7.2.3.3, hardware may leave unsent
1938 * packets in the AT queues and software needs to drain them.
1939 * Some OHCI 1.1 controllers (JMicron) apparently require this too.
1940 */
Clemens Ladisch82b662d2010-12-24 14:40:15 +01001941 at_context_flush(&ohci->at_request_ctx);
1942 at_context_flush(&ohci->at_response_ctx);
1943
1944 spin_lock_irqsave(&ohci->lock, flags);
1945
1946 ohci->generation = generation;
Kristian Høgsberged568912006-12-19 19:58:35 -05001947 reg_write(ohci, OHCI1394_IntEventClear, OHCI1394_busReset);
1948
Stefan Richter4a635592010-02-21 17:58:01 +01001949 if (ohci->quirks & QUIRK_RESET_PACKET)
Stefan Richterd34316a2008-04-12 22:31:25 +02001950 ohci->request_generation = generation;
1951
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001952 /*
1953 * This next bit is unrelated to the AT context stuff but we
Kristian Høgsberged568912006-12-19 19:58:35 -05001954 * have to do it under the spinlock also. If a new config rom
1955 * was set up before this reset, the old one is now no longer
1956 * in use and we can free it. Update the config rom pointers
1957 * to point to the current config rom and clear the
Thomas Weber88393162010-03-16 11:47:56 +01001958 * next_config_rom pointer so a new update can take place.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001959 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001960
1961 if (ohci->next_config_rom != NULL) {
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001962 if (ohci->next_config_rom != ohci->config_rom) {
1963 free_rom = ohci->config_rom;
1964 free_rom_bus = ohci->config_rom_bus;
1965 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001966 ohci->config_rom = ohci->next_config_rom;
1967 ohci->config_rom_bus = ohci->next_config_rom_bus;
1968 ohci->next_config_rom = NULL;
1969
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001970 /*
1971 * Restore config_rom image and manually update
Kristian Høgsberged568912006-12-19 19:58:35 -05001972 * config_rom registers. Writing the header quadlet
1973 * will indicate that the config rom is ready, so we
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001974 * do that last.
1975 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001976 reg_write(ohci, OHCI1394_BusOptions,
1977 be32_to_cpu(ohci->config_rom[2]));
Stefan Richter8e859732009-10-08 00:41:59 +02001978 ohci->config_rom[0] = ohci->next_header;
1979 reg_write(ohci, OHCI1394_ConfigROMhdr,
1980 be32_to_cpu(ohci->next_header));
Kristian Høgsberged568912006-12-19 19:58:35 -05001981 }
1982
Stefan Richter080de8c2008-02-28 20:54:43 +01001983#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
1984 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, ~0);
1985 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, ~0);
1986#endif
1987
Kristian Høgsberged568912006-12-19 19:58:35 -05001988 spin_unlock_irqrestore(&ohci->lock, flags);
1989
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001990 if (free_rom)
1991 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1992 free_rom, free_rom_bus);
1993
Stefan Richter64d21722011-12-20 21:32:46 +01001994 log_selfids(ohci, generation, self_id_count);
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001995
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001996 fw_core_handle_bus_reset(&ohci->card, ohci->node_id, generation,
Stefan Richterc8a94de2010-06-12 20:34:50 +02001997 self_id_count, ohci->self_id_buffer,
1998 ohci->csr_state_setclear_abdicate);
1999 ohci->csr_state_setclear_abdicate = false;
Kristian Høgsberged568912006-12-19 19:58:35 -05002000}
2001
2002static irqreturn_t irq_handler(int irq, void *data)
2003{
2004 struct fw_ohci *ohci = data;
Stefan Richter168cf9a2010-02-14 18:49:18 +01002005 u32 event, iso_event;
Kristian Høgsberged568912006-12-19 19:58:35 -05002006 int i;
2007
2008 event = reg_read(ohci, OHCI1394_IntEventClear);
2009
Stefan Richtera5159582007-06-09 19:31:14 +02002010 if (!event || !~event)
Kristian Høgsberged568912006-12-19 19:58:35 -05002011 return IRQ_NONE;
2012
Clemens Ladisch8327b372010-11-30 08:24:32 +01002013 /*
2014 * busReset and postedWriteErr must not be cleared yet
2015 * (OHCI 1.1 clauses 7.2.3.2 and 13.2.8.1)
2016 */
2017 reg_write(ohci, OHCI1394_IntEventClear,
2018 event & ~(OHCI1394_busReset | OHCI1394_postedWriteErr));
Stefan Richter64d21722011-12-20 21:32:46 +01002019 log_irqs(ohci, event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002020
2021 if (event & OHCI1394_selfIDComplete)
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02002022 queue_work(fw_workqueue, &ohci->bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05002023
2024 if (event & OHCI1394_RQPkt)
2025 tasklet_schedule(&ohci->ar_request_ctx.tasklet);
2026
2027 if (event & OHCI1394_RSPkt)
2028 tasklet_schedule(&ohci->ar_response_ctx.tasklet);
2029
2030 if (event & OHCI1394_reqTxComplete)
2031 tasklet_schedule(&ohci->at_request_ctx.tasklet);
2032
2033 if (event & OHCI1394_respTxComplete)
2034 tasklet_schedule(&ohci->at_response_ctx.tasklet);
2035
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002036 if (event & OHCI1394_isochRx) {
2037 iso_event = reg_read(ohci, OHCI1394_IsoRecvIntEventClear);
2038 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, iso_event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002039
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002040 while (iso_event) {
2041 i = ffs(iso_event) - 1;
2042 tasklet_schedule(
2043 &ohci->ir_context_list[i].context.tasklet);
2044 iso_event &= ~(1 << i);
2045 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002046 }
2047
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002048 if (event & OHCI1394_isochTx) {
2049 iso_event = reg_read(ohci, OHCI1394_IsoXmitIntEventClear);
2050 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, iso_event);
Kristian Høgsberged568912006-12-19 19:58:35 -05002051
Clemens Ladisch2dd5bed2010-11-30 08:25:05 +01002052 while (iso_event) {
2053 i = ffs(iso_event) - 1;
2054 tasklet_schedule(
2055 &ohci->it_context_list[i].context.tasklet);
2056 iso_event &= ~(1 << i);
2057 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002058 }
2059
Jarod Wilson75f78322008-04-03 17:18:23 -04002060 if (unlikely(event & OHCI1394_regAccessFail))
Stefan Richter98466cc2012-03-04 14:24:31 +01002061 dev_err(ohci->card.device, "register access failure\n");
Jarod Wilson75f78322008-04-03 17:18:23 -04002062
Clemens Ladisch8327b372010-11-30 08:24:32 +01002063 if (unlikely(event & OHCI1394_postedWriteErr)) {
2064 reg_read(ohci, OHCI1394_PostedWriteAddressHi);
2065 reg_read(ohci, OHCI1394_PostedWriteAddressLo);
2066 reg_write(ohci, OHCI1394_IntEventClear,
2067 OHCI1394_postedWriteErr);
Stephan Gatzkaa74477d2011-09-26 21:44:30 +02002068 if (printk_ratelimit())
Stefan Richter64d21722011-12-20 21:32:46 +01002069 dev_err(ohci->card.device, "PCI posted write error\n");
Clemens Ladisch8327b372010-11-30 08:24:32 +01002070 }
Stefan Richtere524f6162007-08-20 21:58:30 +02002071
Stefan Richterbb9f2202007-12-22 22:14:52 +01002072 if (unlikely(event & OHCI1394_cycleTooLong)) {
2073 if (printk_ratelimit())
Stefan Richter64d21722011-12-20 21:32:46 +01002074 dev_notice(ohci->card.device,
2075 "isochronous cycle too long\n");
Stefan Richterbb9f2202007-12-22 22:14:52 +01002076 reg_write(ohci, OHCI1394_LinkControlSet,
2077 OHCI1394_LinkControl_cycleMaster);
2078 }
2079
Jay Fenlason5ed1f322009-11-17 12:29:17 -05002080 if (unlikely(event & OHCI1394_cycleInconsistent)) {
2081 /*
2082 * We need to clear this event bit in order to make
2083 * cycleMatch isochronous I/O work. In theory we should
2084 * stop active cycleMatch iso contexts now and restart
2085 * them at least two cycles later. (FIXME?)
2086 */
2087 if (printk_ratelimit())
Stefan Richter64d21722011-12-20 21:32:46 +01002088 dev_notice(ohci->card.device,
2089 "isochronous cycle inconsistent\n");
Jay Fenlason5ed1f322009-11-17 12:29:17 -05002090 }
2091
Clemens Ladischf117a3e2011-01-10 17:21:35 +01002092 if (unlikely(event & OHCI1394_unrecoverableError))
2093 handle_dead_contexts(ohci);
2094
Clemens Ladischa48777e2010-06-10 08:33:07 +02002095 if (event & OHCI1394_cycle64Seconds) {
2096 spin_lock(&ohci->lock);
2097 update_bus_time(ohci);
2098 spin_unlock(&ohci->lock);
Clemens Ladische597e982010-11-30 08:24:19 +01002099 } else
2100 flush_writes(ohci);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002101
Kristian Høgsberged568912006-12-19 19:58:35 -05002102 return IRQ_HANDLED;
2103}
2104
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002105static int software_reset(struct fw_ohci *ohci)
2106{
Stefan Richter9f426172011-07-03 17:39:26 +02002107 u32 val;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002108 int i;
2109
2110 reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset);
Stefan Richter9f426172011-07-03 17:39:26 +02002111 for (i = 0; i < 500; i++) {
2112 val = reg_read(ohci, OHCI1394_HCControlSet);
2113 if (!~val)
2114 return -ENODEV; /* Card was ejected. */
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002115
Stefan Richter9f426172011-07-03 17:39:26 +02002116 if (!(val & OHCI1394_HCControl_softReset))
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002117 return 0;
Stefan Richter9f426172011-07-03 17:39:26 +02002118
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002119 msleep(1);
2120 }
2121
2122 return -EBUSY;
2123}
2124
Stefan Richter8e859732009-10-08 00:41:59 +02002125static void copy_config_rom(__be32 *dest, const __be32 *src, size_t length)
2126{
2127 size_t size = length * 4;
2128
2129 memcpy(dest, src, size);
2130 if (size < CONFIG_ROM_SIZE)
2131 memset(&dest[length], 0, CONFIG_ROM_SIZE - size);
2132}
2133
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002134static int configure_1394a_enhancements(struct fw_ohci *ohci)
2135{
2136 bool enable_1394a;
Stefan Richter35d999b2010-04-10 16:04:56 +02002137 int ret, clear, set, offset;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002138
2139 /* Check if the driver should configure link and PHY. */
2140 if (!(reg_read(ohci, OHCI1394_HCControlSet) &
2141 OHCI1394_HCControl_programPhyEnable))
2142 return 0;
2143
2144 /* Paranoia: check whether the PHY supports 1394a, too. */
2145 enable_1394a = false;
Stefan Richter35d999b2010-04-10 16:04:56 +02002146 ret = read_phy_reg(ohci, 2);
2147 if (ret < 0)
2148 return ret;
2149 if ((ret & PHY_EXTENDED_REGISTERS) == PHY_EXTENDED_REGISTERS) {
2150 ret = read_paged_phy_reg(ohci, 1, 8);
2151 if (ret < 0)
2152 return ret;
2153 if (ret >= 1)
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002154 enable_1394a = true;
2155 }
2156
2157 if (ohci->quirks & QUIRK_NO_1394A)
2158 enable_1394a = false;
2159
2160 /* Configure PHY and link consistently. */
2161 if (enable_1394a) {
2162 clear = 0;
2163 set = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
2164 } else {
2165 clear = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
2166 set = 0;
2167 }
Stefan Richter02d37be2010-07-08 16:09:06 +02002168 ret = update_phy_reg(ohci, 5, clear, set);
Stefan Richter35d999b2010-04-10 16:04:56 +02002169 if (ret < 0)
2170 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002171
2172 if (enable_1394a)
2173 offset = OHCI1394_HCControlSet;
2174 else
2175 offset = OHCI1394_HCControlClear;
2176 reg_write(ohci, offset, OHCI1394_HCControl_aPhyEnhanceEnable);
2177
2178 /* Clean up: configuration has been taken care of. */
2179 reg_write(ohci, OHCI1394_HCControlClear,
2180 OHCI1394_HCControl_programPhyEnable);
2181
2182 return 0;
2183}
2184
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002185static int probe_tsb41ba3d(struct fw_ohci *ohci)
2186{
Stefan Richterb810e4a2011-09-19 09:29:30 +02002187 /* TI vendor ID = 0x080028, TSB41BA3D product ID = 0x833005 (sic) */
2188 static const u8 id[] = { 0x08, 0x00, 0x28, 0x83, 0x30, 0x05, };
2189 int reg, i;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002190
2191 reg = read_phy_reg(ohci, 2);
2192 if (reg < 0)
2193 return reg;
Stefan Richterb810e4a2011-09-19 09:29:30 +02002194 if ((reg & PHY_EXTENDED_REGISTERS) != PHY_EXTENDED_REGISTERS)
2195 return 0;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002196
Stefan Richterb810e4a2011-09-19 09:29:30 +02002197 for (i = ARRAY_SIZE(id) - 1; i >= 0; i--) {
2198 reg = read_paged_phy_reg(ohci, 1, i + 10);
2199 if (reg < 0)
2200 return reg;
2201 if (reg != id[i])
2202 return 0;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002203 }
Stefan Richterb810e4a2011-09-19 09:29:30 +02002204 return 1;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002205}
2206
Stefan Richter8e859732009-10-08 00:41:59 +02002207static int ohci_enable(struct fw_card *card,
2208 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05002209{
2210 struct fw_ohci *ohci = fw_ohci(card);
2211 struct pci_dev *dev = to_pci_dev(card->device);
Clemens Ladische91b2782010-06-10 08:40:49 +02002212 u32 lps, seconds, version, irqs;
Stefan Richter28897fb2011-09-19 00:17:37 +02002213 int i, ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05002214
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002215 if (software_reset(ohci)) {
Stefan Richter64d21722011-12-20 21:32:46 +01002216 dev_err(card->device, "failed to reset ohci card\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002217 return -EBUSY;
2218 }
2219
2220 /*
2221 * Now enable LPS, which we need in order to start accessing
2222 * most of the registers. In fact, on some cards (ALI M5251),
2223 * accessing registers in the SClk domain without LPS enabled
2224 * will lock up the machine. Wait 50msec to make sure we have
Jarod Wilson02214722008-03-28 10:02:50 -04002225 * full link enabled. However, with some cards (well, at least
2226 * a JMicron PCIe card), we have to try again sometimes.
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002227 */
2228 reg_write(ohci, OHCI1394_HCControlSet,
2229 OHCI1394_HCControl_LPS |
2230 OHCI1394_HCControl_postedWriteEnable);
2231 flush_writes(ohci);
Jarod Wilson02214722008-03-28 10:02:50 -04002232
2233 for (lps = 0, i = 0; !lps && i < 3; i++) {
2234 msleep(50);
2235 lps = reg_read(ohci, OHCI1394_HCControlSet) &
2236 OHCI1394_HCControl_LPS;
2237 }
2238
2239 if (!lps) {
Stefan Richter64d21722011-12-20 21:32:46 +01002240 dev_err(card->device, "failed to set Link Power Status\n");
Jarod Wilson02214722008-03-28 10:02:50 -04002241 return -EIO;
2242 }
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002243
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002244 if (ohci->quirks & QUIRK_TI_SLLZ059) {
Stefan Richter28897fb2011-09-19 00:17:37 +02002245 ret = probe_tsb41ba3d(ohci);
2246 if (ret < 0)
2247 return ret;
2248 if (ret)
Stefan Richter64d21722011-12-20 21:32:46 +01002249 dev_notice(card->device, "local TSB41BA3D phy\n");
Stefan Richter28897fb2011-09-19 00:17:37 +02002250 else
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002251 ohci->quirks &= ~QUIRK_TI_SLLZ059;
Stephan Gatzka25935eb2011-09-12 22:23:53 +02002252 }
2253
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002254 reg_write(ohci, OHCI1394_HCControlClear,
2255 OHCI1394_HCControl_noByteSwapData);
2256
Stefan Richteraffc9c22008-06-05 20:50:53 +02002257 reg_write(ohci, OHCI1394_SelfIDBuffer, ohci->self_id_bus);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002258 reg_write(ohci, OHCI1394_LinkControlSet,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002259 OHCI1394_LinkControl_cycleTimerEnable |
2260 OHCI1394_LinkControl_cycleMaster);
2261
2262 reg_write(ohci, OHCI1394_ATRetries,
2263 OHCI1394_MAX_AT_REQ_RETRIES |
2264 (OHCI1394_MAX_AT_RESP_RETRIES << 4) |
Clemens Ladisch27a23292010-06-10 08:34:13 +02002265 (OHCI1394_MAX_PHYS_RESP_RETRIES << 8) |
2266 (200 << 16));
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002267
Clemens Ladischa48777e2010-06-10 08:33:07 +02002268 seconds = lower_32_bits(get_seconds());
2269 reg_write(ohci, OHCI1394_IsochronousCycleTimer, seconds << 25);
2270 ohci->bus_time = seconds & ~0x3f;
2271
Clemens Ladische91b2782010-06-10 08:40:49 +02002272 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
2273 if (version >= OHCI_VERSION_1_1) {
2274 reg_write(ohci, OHCI1394_InitialChannelsAvailableHi,
2275 0xfffffffe);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02002276 card->broadcast_channel_auto_allocated = true;
Clemens Ladische91b2782010-06-10 08:40:49 +02002277 }
2278
Clemens Ladischa1a11322010-06-10 08:35:06 +02002279 /* Get implemented bits of the priority arbitration request counter. */
2280 reg_write(ohci, OHCI1394_FairnessControl, 0x3f);
2281 ohci->pri_req_max = reg_read(ohci, OHCI1394_FairnessControl) & 0x3f;
2282 reg_write(ohci, OHCI1394_FairnessControl, 0);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02002283 card->priority_budget_implemented = ohci->pri_req_max != 0;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002284
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002285 reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000);
2286 reg_write(ohci, OHCI1394_IntEventClear, ~0);
2287 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002288
Stefan Richter35d999b2010-04-10 16:04:56 +02002289 ret = configure_1394a_enhancements(ohci);
2290 if (ret < 0)
2291 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02002292
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002293 /* Activate link_on bit and contender bit in our self ID packets.*/
Stefan Richter35d999b2010-04-10 16:04:56 +02002294 ret = ohci_update_phy_reg(card, 4, 0, PHY_LINK_ACTIVE | PHY_CONTENDER);
2295 if (ret < 0)
2296 return ret;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04002297
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002298 /*
2299 * When the link is not yet enabled, the atomic config rom
Kristian Høgsberged568912006-12-19 19:58:35 -05002300 * update mechanism described below in ohci_set_config_rom()
2301 * is not active. We have to update ConfigRomHeader and
2302 * BusOptions manually, and the write to ConfigROMmap takes
2303 * effect immediately. We tie this to the enabling of the
2304 * link, so we have a valid config rom before enabling - the
2305 * OHCI requires that ConfigROMhdr and BusOptions have valid
2306 * values before enabling.
2307 *
2308 * However, when the ConfigROMmap is written, some controllers
2309 * always read back quadlets 0 and 2 from the config rom to
2310 * the ConfigRomHeader and BusOptions registers on bus reset.
2311 * They shouldn't do that in this initial case where the link
2312 * isn't enabled. This means we have to use the same
2313 * workaround here, setting the bus header to 0 and then write
2314 * the right values in the bus reset tasklet.
2315 */
2316
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002317 if (config_rom) {
2318 ohci->next_config_rom =
2319 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2320 &ohci->next_config_rom_bus,
2321 GFP_KERNEL);
2322 if (ohci->next_config_rom == NULL)
2323 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05002324
Stefan Richter8e859732009-10-08 00:41:59 +02002325 copy_config_rom(ohci->next_config_rom, config_rom, length);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002326 } else {
2327 /*
2328 * In the suspend case, config_rom is NULL, which
2329 * means that we just reuse the old config rom.
2330 */
2331 ohci->next_config_rom = ohci->config_rom;
2332 ohci->next_config_rom_bus = ohci->config_rom_bus;
2333 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002334
Stefan Richter8e859732009-10-08 00:41:59 +02002335 ohci->next_header = ohci->next_config_rom[0];
Kristian Høgsberged568912006-12-19 19:58:35 -05002336 ohci->next_config_rom[0] = 0;
2337 reg_write(ohci, OHCI1394_ConfigROMhdr, 0);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04002338 reg_write(ohci, OHCI1394_BusOptions,
2339 be32_to_cpu(ohci->next_config_rom[2]));
Kristian Høgsberged568912006-12-19 19:58:35 -05002340 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
2341
2342 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
2343
Clemens Ladisch262444e2010-06-05 12:31:25 +02002344 if (!(ohci->quirks & QUIRK_NO_MSI))
2345 pci_enable_msi(dev);
Kristian Høgsberged568912006-12-19 19:58:35 -05002346 if (request_irq(dev->irq, irq_handler,
Clemens Ladisch262444e2010-06-05 12:31:25 +02002347 pci_dev_msi_enabled(dev) ? 0 : IRQF_SHARED,
2348 ohci_driver_name, ohci)) {
Stefan Richter64d21722011-12-20 21:32:46 +01002349 dev_err(card->device, "failed to allocate interrupt %d\n",
2350 dev->irq);
Clemens Ladisch262444e2010-06-05 12:31:25 +02002351 pci_disable_msi(dev);
Stefan Richtera01e8362011-08-11 20:40:42 +02002352
2353 if (config_rom) {
2354 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2355 ohci->next_config_rom,
2356 ohci->next_config_rom_bus);
2357 ohci->next_config_rom = NULL;
2358 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002359 return -EIO;
2360 }
2361
Stefan Richter148c7862010-06-05 11:46:49 +02002362 irqs = OHCI1394_reqTxComplete | OHCI1394_respTxComplete |
2363 OHCI1394_RQPkt | OHCI1394_RSPkt |
2364 OHCI1394_isochTx | OHCI1394_isochRx |
2365 OHCI1394_postedWriteErr |
2366 OHCI1394_selfIDComplete |
2367 OHCI1394_regAccessFail |
Clemens Ladischa48777e2010-06-10 08:33:07 +02002368 OHCI1394_cycle64Seconds |
Clemens Ladischf117a3e2011-01-10 17:21:35 +01002369 OHCI1394_cycleInconsistent |
2370 OHCI1394_unrecoverableError |
2371 OHCI1394_cycleTooLong |
Stefan Richter148c7862010-06-05 11:46:49 +02002372 OHCI1394_masterIntEnable;
2373 if (param_debug & OHCI_PARAM_DEBUG_BUSRESETS)
2374 irqs |= OHCI1394_busReset;
2375 reg_write(ohci, OHCI1394_IntMaskSet, irqs);
2376
Kristian Høgsberged568912006-12-19 19:58:35 -05002377 reg_write(ohci, OHCI1394_HCControlSet,
2378 OHCI1394_HCControl_linkEnable |
2379 OHCI1394_HCControl_BIBimageValid);
Clemens Ladischecf83282011-04-11 09:56:12 +02002380
2381 reg_write(ohci, OHCI1394_LinkControlSet,
2382 OHCI1394_LinkControl_rcvSelfID |
2383 OHCI1394_LinkControl_rcvPhyPkt);
2384
2385 ar_context_run(&ohci->ar_request_ctx);
Clemens Ladischdd6254e2011-05-16 08:10:10 +02002386 ar_context_run(&ohci->ar_response_ctx);
2387
2388 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002389
Stefan Richter02d37be2010-07-08 16:09:06 +02002390 /* We are ready to go, reset bus to finish initialization. */
2391 fw_schedule_bus_reset(&ohci->card, false, true);
Kristian Høgsberged568912006-12-19 19:58:35 -05002392
2393 return 0;
2394}
2395
Stefan Richter53dca512008-12-14 21:47:04 +01002396static int ohci_set_config_rom(struct fw_card *card,
Stefan Richter8e859732009-10-08 00:41:59 +02002397 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05002398{
2399 struct fw_ohci *ohci;
2400 unsigned long flags;
Kristian Høgsberged568912006-12-19 19:58:35 -05002401 __be32 *next_config_rom;
Stefan Richterf5101d582008-03-14 00:27:49 +01002402 dma_addr_t uninitialized_var(next_config_rom_bus);
Kristian Høgsberged568912006-12-19 19:58:35 -05002403
2404 ohci = fw_ohci(card);
2405
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002406 /*
2407 * When the OHCI controller is enabled, the config rom update
Kristian Høgsberged568912006-12-19 19:58:35 -05002408 * mechanism is a bit tricky, but easy enough to use. See
2409 * section 5.5.6 in the OHCI specification.
2410 *
2411 * The OHCI controller caches the new config rom address in a
2412 * shadow register (ConfigROMmapNext) and needs a bus reset
2413 * for the changes to take place. When the bus reset is
2414 * detected, the controller loads the new values for the
2415 * ConfigRomHeader and BusOptions registers from the specified
2416 * config rom and loads ConfigROMmap from the ConfigROMmapNext
2417 * shadow register. All automatically and atomically.
2418 *
2419 * Now, there's a twist to this story. The automatic load of
2420 * ConfigRomHeader and BusOptions doesn't honor the
2421 * noByteSwapData bit, so with a be32 config rom, the
2422 * controller will load be32 values in to these registers
2423 * during the atomic update, even on litte endian
2424 * architectures. The workaround we use is to put a 0 in the
2425 * header quadlet; 0 is endian agnostic and means that the
2426 * config rom isn't ready yet. In the bus reset tasklet we
2427 * then set up the real values for the two registers.
2428 *
2429 * We use ohci->lock to avoid racing with the code that sets
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02002430 * ohci->next_config_rom to NULL (see bus_reset_work).
Kristian Høgsberged568912006-12-19 19:58:35 -05002431 */
2432
2433 next_config_rom =
2434 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2435 &next_config_rom_bus, GFP_KERNEL);
2436 if (next_config_rom == NULL)
2437 return -ENOMEM;
2438
2439 spin_lock_irqsave(&ohci->lock, flags);
2440
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002441 /*
2442 * If there is not an already pending config_rom update,
2443 * push our new allocation into the ohci->next_config_rom
2444 * and then mark the local variable as null so that we
2445 * won't deallocate the new buffer.
2446 *
2447 * OTOH, if there is a pending config_rom update, just
2448 * use that buffer with the new config_rom data, and
2449 * let this routine free the unused DMA allocation.
2450 */
2451
Kristian Høgsberged568912006-12-19 19:58:35 -05002452 if (ohci->next_config_rom == NULL) {
2453 ohci->next_config_rom = next_config_rom;
2454 ohci->next_config_rom_bus = next_config_rom_bus;
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002455 next_config_rom = NULL;
Kristian Høgsberged568912006-12-19 19:58:35 -05002456 }
2457
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002458 copy_config_rom(ohci->next_config_rom, config_rom, length);
2459
2460 ohci->next_header = config_rom[0];
2461 ohci->next_config_rom[0] = 0;
2462
2463 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
2464
Kristian Høgsberged568912006-12-19 19:58:35 -05002465 spin_unlock_irqrestore(&ohci->lock, flags);
2466
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002467 /* If we didn't use the DMA allocation, delete it. */
2468 if (next_config_rom != NULL)
2469 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
2470 next_config_rom, next_config_rom_bus);
2471
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002472 /*
2473 * Now initiate a bus reset to have the changes take
Kristian Høgsberged568912006-12-19 19:58:35 -05002474 * effect. We clean up the old config rom memory and DMA
2475 * mappings in the bus reset tasklet, since the OHCI
2476 * controller could need to access it before the bus reset
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002477 * takes effect.
2478 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002479
B.J. Buchalter2e053a22011-05-02 13:33:42 -04002480 fw_schedule_bus_reset(&ohci->card, true, true);
2481
2482 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002483}
2484
2485static void ohci_send_request(struct fw_card *card, struct fw_packet *packet)
2486{
2487 struct fw_ohci *ohci = fw_ohci(card);
2488
2489 at_context_transmit(&ohci->at_request_ctx, packet);
2490}
2491
2492static void ohci_send_response(struct fw_card *card, struct fw_packet *packet)
2493{
2494 struct fw_ohci *ohci = fw_ohci(card);
2495
2496 at_context_transmit(&ohci->at_response_ctx, packet);
2497}
2498
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002499static int ohci_cancel_packet(struct fw_card *card, struct fw_packet *packet)
2500{
2501 struct fw_ohci *ohci = fw_ohci(card);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002502 struct context *ctx = &ohci->at_request_ctx;
2503 struct driver_data *driver_data = packet->driver_data;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002504 int ret = -ENOENT;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002505
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002506 tasklet_disable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002507
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002508 if (packet->ack != 0)
2509 goto out;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002510
Stefan Richter19593ff2009-10-14 20:40:10 +02002511 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01002512 dma_unmap_single(ohci->card.device, packet->payload_bus,
2513 packet->payload_length, DMA_TO_DEVICE);
2514
Stefan Richter64d21722011-12-20 21:32:46 +01002515 log_ar_at_event(ohci, 'T', packet->speed, packet->header, 0x20);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002516 driver_data->packet = NULL;
2517 packet->ack = RCODE_CANCELLED;
2518 packet->callback(packet, &ohci->card, packet->ack);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002519 ret = 0;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002520 out:
2521 tasklet_enable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002522
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002523 return ret;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002524}
2525
Stefan Richter53dca512008-12-14 21:47:04 +01002526static int ohci_enable_phys_dma(struct fw_card *card,
2527 int node_id, int generation)
Kristian Høgsberged568912006-12-19 19:58:35 -05002528{
Stefan Richter080de8c2008-02-28 20:54:43 +01002529#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
2530 return 0;
2531#else
Kristian Høgsberged568912006-12-19 19:58:35 -05002532 struct fw_ohci *ohci = fw_ohci(card);
2533 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002534 int n, ret = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002535
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002536 /*
2537 * FIXME: Make sure this bitmask is cleared when we clear the busReset
2538 * interrupt bit. Clear physReqResourceAllBuses on bus reset.
2539 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002540
2541 spin_lock_irqsave(&ohci->lock, flags);
2542
2543 if (ohci->generation != generation) {
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002544 ret = -ESTALE;
Kristian Høgsberged568912006-12-19 19:58:35 -05002545 goto out;
2546 }
2547
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002548 /*
2549 * Note, if the node ID contains a non-local bus ID, physical DMA is
2550 * enabled for _all_ nodes on remote buses.
2551 */
Stefan Richter907293d2007-01-23 21:11:43 +01002552
2553 n = (node_id & 0xffc0) == LOCAL_BUS ? node_id & 0x3f : 63;
2554 if (n < 32)
2555 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 1 << n);
2556 else
2557 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 1 << (n - 32));
2558
Kristian Høgsberged568912006-12-19 19:58:35 -05002559 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002560 out:
Stefan Richter6cad95f2007-01-21 20:46:45 +01002561 spin_unlock_irqrestore(&ohci->lock, flags);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002562
2563 return ret;
Stefan Richter080de8c2008-02-28 20:54:43 +01002564#endif /* CONFIG_FIREWIRE_OHCI_REMOTE_DMA */
Kristian Høgsberged568912006-12-19 19:58:35 -05002565}
Stefan Richter373b2ed2007-03-04 14:45:18 +01002566
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002567static u32 ohci_read_csr(struct fw_card *card, int csr_offset)
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002568{
2569 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002570 unsigned long flags;
2571 u32 value;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002572
Clemens Ladisch60d32972010-06-10 08:24:35 +02002573 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002574 case CSR_STATE_CLEAR:
2575 case CSR_STATE_SET:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002576 if (ohci->is_root &&
2577 (reg_read(ohci, OHCI1394_LinkControlSet) &
2578 OHCI1394_LinkControl_cycleMaster))
Stefan Richterc8a94de2010-06-12 20:34:50 +02002579 value = CSR_STATE_BIT_CMSTR;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002580 else
Stefan Richterc8a94de2010-06-12 20:34:50 +02002581 value = 0;
2582 if (ohci->csr_state_setclear_abdicate)
2583 value |= CSR_STATE_BIT_ABDICATE;
Stefan Richter4a9bde92010-02-20 22:24:43 +01002584
Stefan Richterc8a94de2010-06-12 20:34:50 +02002585 return value;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002586
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002587 case CSR_NODE_IDS:
2588 return reg_read(ohci, OHCI1394_NodeID) << 16;
2589
Clemens Ladisch60d32972010-06-10 08:24:35 +02002590 case CSR_CYCLE_TIME:
2591 return get_cycle_time(ohci);
2592
Clemens Ladischa48777e2010-06-10 08:33:07 +02002593 case CSR_BUS_TIME:
2594 /*
2595 * We might be called just after the cycle timer has wrapped
2596 * around but just before the cycle64Seconds handler, so we
2597 * better check here, too, if the bus time needs to be updated.
2598 */
2599 spin_lock_irqsave(&ohci->lock, flags);
2600 value = update_bus_time(ohci);
2601 spin_unlock_irqrestore(&ohci->lock, flags);
2602 return value;
2603
Clemens Ladisch27a23292010-06-10 08:34:13 +02002604 case CSR_BUSY_TIMEOUT:
2605 value = reg_read(ohci, OHCI1394_ATRetries);
2606 return (value >> 4) & 0x0ffff00f;
2607
Clemens Ladischa1a11322010-06-10 08:35:06 +02002608 case CSR_PRIORITY_BUDGET:
2609 return (reg_read(ohci, OHCI1394_FairnessControl) & 0x3f) |
2610 (ohci->pri_req_max << 8);
2611
Clemens Ladisch60d32972010-06-10 08:24:35 +02002612 default:
2613 WARN_ON(1);
2614 return 0;
Clemens Ladischb6775322010-01-20 09:58:02 +01002615 }
Clemens Ladisch60d32972010-06-10 08:24:35 +02002616}
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002617
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002618static void ohci_write_csr(struct fw_card *card, int csr_offset, u32 value)
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002619{
2620 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002621 unsigned long flags;
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002622
2623 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002624 case CSR_STATE_CLEAR:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002625 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2626 reg_write(ohci, OHCI1394_LinkControlClear,
2627 OHCI1394_LinkControl_cycleMaster);
2628 flush_writes(ohci);
2629 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002630 if (value & CSR_STATE_BIT_ABDICATE)
2631 ohci->csr_state_setclear_abdicate = false;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002632 break;
2633
2634 case CSR_STATE_SET:
2635 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2636 reg_write(ohci, OHCI1394_LinkControlSet,
2637 OHCI1394_LinkControl_cycleMaster);
2638 flush_writes(ohci);
2639 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002640 if (value & CSR_STATE_BIT_ABDICATE)
2641 ohci->csr_state_setclear_abdicate = true;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002642 break;
2643
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002644 case CSR_NODE_IDS:
2645 reg_write(ohci, OHCI1394_NodeID, value >> 16);
2646 flush_writes(ohci);
2647 break;
2648
Clemens Ladisch9ab50712010-06-10 08:26:48 +02002649 case CSR_CYCLE_TIME:
2650 reg_write(ohci, OHCI1394_IsochronousCycleTimer, value);
2651 reg_write(ohci, OHCI1394_IntEventSet,
2652 OHCI1394_cycleInconsistent);
2653 flush_writes(ohci);
2654 break;
2655
Clemens Ladischa48777e2010-06-10 08:33:07 +02002656 case CSR_BUS_TIME:
2657 spin_lock_irqsave(&ohci->lock, flags);
2658 ohci->bus_time = (ohci->bus_time & 0x7f) | (value & ~0x7f);
2659 spin_unlock_irqrestore(&ohci->lock, flags);
2660 break;
2661
Clemens Ladisch27a23292010-06-10 08:34:13 +02002662 case CSR_BUSY_TIMEOUT:
2663 value = (value & 0xf) | ((value & 0xf) << 4) |
2664 ((value & 0xf) << 8) | ((value & 0x0ffff000) << 4);
2665 reg_write(ohci, OHCI1394_ATRetries, value);
2666 flush_writes(ohci);
2667 break;
2668
Clemens Ladischa1a11322010-06-10 08:35:06 +02002669 case CSR_PRIORITY_BUDGET:
2670 reg_write(ohci, OHCI1394_FairnessControl, value & 0x3f);
2671 flush_writes(ohci);
2672 break;
2673
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002674 default:
2675 WARN_ON(1);
2676 break;
2677 }
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002678}
2679
David Moore1aa292b2008-07-22 23:23:40 -07002680static void copy_iso_headers(struct iso_context *ctx, void *p)
2681{
2682 int i = ctx->header_length;
2683
2684 if (i + ctx->base.header_size > PAGE_SIZE)
2685 return;
2686
2687 /*
Clemens Ladisch32c507f2012-03-18 19:01:39 +01002688 * The two iso header quadlets are byteswapped to little
2689 * endian by the controller, but we want to present them
2690 * as big endian for consistency with the bus endianness.
David Moore1aa292b2008-07-22 23:23:40 -07002691 */
2692 if (ctx->base.header_size > 0)
2693 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
2694 if (ctx->base.header_size > 4)
2695 *(u32 *) (ctx->header + i + 4) = __swab32(*(u32 *) p);
2696 if (ctx->base.header_size > 8)
2697 memcpy(ctx->header + i + 8, p + 8, ctx->base.header_size - 8);
2698 ctx->header_length += ctx->base.header_size;
2699}
2700
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002701static int handle_ir_packet_per_buffer(struct context *context,
2702 struct descriptor *d,
2703 struct descriptor *last)
2704{
2705 struct iso_context *ctx =
2706 container_of(context, struct iso_context, context);
David Moorebcee8932007-12-19 15:26:38 -05002707 struct descriptor *pd;
Clemens Ladischa572e682011-10-15 23:12:23 +02002708 u32 buffer_dma;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002709 __le32 *ir_header;
David Moorebcee8932007-12-19 15:26:38 -05002710 void *p;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002711
Stefan Richter872e3302010-07-29 18:19:22 +02002712 for (pd = d; pd <= last; pd++)
David Moorebcee8932007-12-19 15:26:38 -05002713 if (pd->transfer_status)
2714 break;
David Moorebcee8932007-12-19 15:26:38 -05002715 if (pd > last)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002716 /* Descriptor(s) not done yet, stop iteration */
2717 return 0;
2718
Clemens Ladischa572e682011-10-15 23:12:23 +02002719 while (!(d->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))) {
2720 d++;
2721 buffer_dma = le32_to_cpu(d->data_address);
2722 dma_sync_single_range_for_cpu(context->ohci->card.device,
2723 buffer_dma & PAGE_MASK,
2724 buffer_dma & ~PAGE_MASK,
2725 le16_to_cpu(d->req_count),
2726 DMA_FROM_DEVICE);
2727 }
2728
David Moore1aa292b2008-07-22 23:23:40 -07002729 p = last + 1;
2730 copy_iso_headers(ctx, p);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002731
David Moorebcee8932007-12-19 15:26:38 -05002732 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
2733 ir_header = (__le32 *) p;
Stefan Richter872e3302010-07-29 18:19:22 +02002734 ctx->base.callback.sc(&ctx->base,
2735 le32_to_cpu(ir_header[0]) & 0xffff,
2736 ctx->header_length, ctx->header,
2737 ctx->base.callback_data);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002738 ctx->header_length = 0;
2739 }
2740
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002741 return 1;
2742}
2743
Stefan Richter872e3302010-07-29 18:19:22 +02002744/* d == last because each descriptor block is only a single descriptor. */
2745static int handle_ir_buffer_fill(struct context *context,
2746 struct descriptor *d,
2747 struct descriptor *last)
2748{
2749 struct iso_context *ctx =
2750 container_of(context, struct iso_context, context);
Clemens Ladischa572e682011-10-15 23:12:23 +02002751 u32 buffer_dma;
Stefan Richter872e3302010-07-29 18:19:22 +02002752
Clemens Ladisch0c0efba2012-03-12 21:45:47 +01002753 if (last->res_count != 0)
Stefan Richter872e3302010-07-29 18:19:22 +02002754 /* Descriptor(s) not done yet, stop iteration */
2755 return 0;
2756
Clemens Ladischa572e682011-10-15 23:12:23 +02002757 buffer_dma = le32_to_cpu(last->data_address);
2758 dma_sync_single_range_for_cpu(context->ohci->card.device,
2759 buffer_dma & PAGE_MASK,
2760 buffer_dma & ~PAGE_MASK,
2761 le16_to_cpu(last->req_count),
2762 DMA_FROM_DEVICE);
2763
Stefan Richter872e3302010-07-29 18:19:22 +02002764 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS)
2765 ctx->base.callback.mc(&ctx->base,
2766 le32_to_cpu(last->data_address) +
Clemens Ladisch0c0efba2012-03-12 21:45:47 +01002767 le16_to_cpu(last->req_count),
Stefan Richter872e3302010-07-29 18:19:22 +02002768 ctx->base.callback_data);
2769
2770 return 1;
2771}
2772
Clemens Ladischa572e682011-10-15 23:12:23 +02002773static inline void sync_it_packet_for_cpu(struct context *context,
2774 struct descriptor *pd)
2775{
2776 __le16 control;
2777 u32 buffer_dma;
2778
2779 /* only packets beginning with OUTPUT_MORE* have data buffers */
2780 if (pd->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
2781 return;
2782
2783 /* skip over the OUTPUT_MORE_IMMEDIATE descriptor */
2784 pd += 2;
2785
2786 /*
2787 * If the packet has a header, the first OUTPUT_MORE/LAST descriptor's
2788 * data buffer is in the context program's coherent page and must not
2789 * be synced.
2790 */
2791 if ((le32_to_cpu(pd->data_address) & PAGE_MASK) ==
2792 (context->current_bus & PAGE_MASK)) {
2793 if (pd->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS))
2794 return;
2795 pd++;
2796 }
2797
2798 do {
2799 buffer_dma = le32_to_cpu(pd->data_address);
2800 dma_sync_single_range_for_cpu(context->ohci->card.device,
2801 buffer_dma & PAGE_MASK,
2802 buffer_dma & ~PAGE_MASK,
2803 le16_to_cpu(pd->req_count),
2804 DMA_TO_DEVICE);
2805 control = pd->control;
2806 pd++;
2807 } while (!(control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS)));
2808}
2809
Kristian Høgsberg30200732007-02-16 17:34:39 -05002810static int handle_it_packet(struct context *context,
2811 struct descriptor *d,
2812 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05002813{
Kristian Høgsberg30200732007-02-16 17:34:39 -05002814 struct iso_context *ctx =
2815 container_of(context, struct iso_context, context);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002816 int i;
2817 struct descriptor *pd;
Stefan Richter373b2ed2007-03-04 14:45:18 +01002818
Jay Fenlason31769ce2009-11-21 00:05:56 +01002819 for (pd = d; pd <= last; pd++)
2820 if (pd->transfer_status)
2821 break;
2822 if (pd > last)
2823 /* Descriptor(s) not done yet, stop iteration */
Kristian Høgsberg30200732007-02-16 17:34:39 -05002824 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002825
Clemens Ladischa572e682011-10-15 23:12:23 +02002826 sync_it_packet_for_cpu(context, d);
2827
Jay Fenlason31769ce2009-11-21 00:05:56 +01002828 i = ctx->header_length;
2829 if (i + 4 < PAGE_SIZE) {
2830 /* Present this value as big-endian to match the receive code */
2831 *(__be32 *)(ctx->header + i) = cpu_to_be32(
2832 ((u32)le16_to_cpu(pd->transfer_status) << 16) |
2833 le16_to_cpu(pd->res_count));
2834 ctx->header_length += 4;
2835 }
2836 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
Stefan Richter872e3302010-07-29 18:19:22 +02002837 ctx->base.callback.sc(&ctx->base, le16_to_cpu(last->res_count),
2838 ctx->header_length, ctx->header,
2839 ctx->base.callback_data);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002840 ctx->header_length = 0;
2841 }
Kristian Høgsberg30200732007-02-16 17:34:39 -05002842 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05002843}
2844
Stefan Richter872e3302010-07-29 18:19:22 +02002845static void set_multichannel_mask(struct fw_ohci *ohci, u64 channels)
2846{
2847 u32 hi = channels >> 32, lo = channels;
2848
2849 reg_write(ohci, OHCI1394_IRMultiChanMaskHiClear, ~hi);
2850 reg_write(ohci, OHCI1394_IRMultiChanMaskLoClear, ~lo);
2851 reg_write(ohci, OHCI1394_IRMultiChanMaskHiSet, hi);
2852 reg_write(ohci, OHCI1394_IRMultiChanMaskLoSet, lo);
2853 mmiowb();
2854 ohci->mc_channels = channels;
2855}
2856
Stefan Richter53dca512008-12-14 21:47:04 +01002857static struct fw_iso_context *ohci_allocate_iso_context(struct fw_card *card,
Stefan Richter4817ed22008-12-21 16:39:46 +01002858 int type, int channel, size_t header_size)
Kristian Høgsberged568912006-12-19 19:58:35 -05002859{
2860 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter872e3302010-07-29 18:19:22 +02002861 struct iso_context *uninitialized_var(ctx);
2862 descriptor_callback_t uninitialized_var(callback);
2863 u64 *uninitialized_var(channels);
2864 u32 *uninitialized_var(mask), uninitialized_var(regs);
Kristian Høgsberged568912006-12-19 19:58:35 -05002865 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02002866 int index, ret = -EBUSY;
Kristian Høgsberged568912006-12-19 19:58:35 -05002867
2868 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002869
2870 switch (type) {
2871 case FW_ISO_CONTEXT_TRANSMIT:
2872 mask = &ohci->it_context_mask;
2873 callback = handle_it_packet;
2874 index = ffs(*mask) - 1;
2875 if (index >= 0) {
2876 *mask &= ~(1 << index);
2877 regs = OHCI1394_IsoXmitContextBase(index);
2878 ctx = &ohci->it_context_list[index];
2879 }
2880 break;
2881
2882 case FW_ISO_CONTEXT_RECEIVE:
2883 channels = &ohci->ir_context_channels;
2884 mask = &ohci->ir_context_mask;
2885 callback = handle_ir_packet_per_buffer;
2886 index = *channels & 1ULL << channel ? ffs(*mask) - 1 : -1;
2887 if (index >= 0) {
2888 *channels &= ~(1ULL << channel);
2889 *mask &= ~(1 << index);
2890 regs = OHCI1394_IsoRcvContextBase(index);
2891 ctx = &ohci->ir_context_list[index];
2892 }
2893 break;
2894
2895 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2896 mask = &ohci->ir_context_mask;
2897 callback = handle_ir_buffer_fill;
2898 index = !ohci->mc_allocated ? ffs(*mask) - 1 : -1;
2899 if (index >= 0) {
2900 ohci->mc_allocated = true;
2901 *mask &= ~(1 << index);
2902 regs = OHCI1394_IsoRcvContextBase(index);
2903 ctx = &ohci->ir_context_list[index];
2904 }
2905 break;
2906
2907 default:
2908 index = -1;
2909 ret = -ENOSYS;
Stefan Richter4817ed22008-12-21 16:39:46 +01002910 }
Stefan Richter872e3302010-07-29 18:19:22 +02002911
Kristian Høgsberged568912006-12-19 19:58:35 -05002912 spin_unlock_irqrestore(&ohci->lock, flags);
2913
2914 if (index < 0)
Stefan Richter872e3302010-07-29 18:19:22 +02002915 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002916
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04002917 memset(ctx, 0, sizeof(*ctx));
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002918 ctx->header_length = 0;
2919 ctx->header = (void *) __get_free_page(GFP_KERNEL);
Stefan Richter872e3302010-07-29 18:19:22 +02002920 if (ctx->header == NULL) {
2921 ret = -ENOMEM;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002922 goto out;
Stefan Richter872e3302010-07-29 18:19:22 +02002923 }
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002924 ret = context_init(&ctx->context, ohci, regs, callback);
2925 if (ret < 0)
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002926 goto out_with_header;
Kristian Høgsberged568912006-12-19 19:58:35 -05002927
Stefan Richter872e3302010-07-29 18:19:22 +02002928 if (type == FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL)
2929 set_multichannel_mask(ohci, 0);
2930
Kristian Høgsberged568912006-12-19 19:58:35 -05002931 return &ctx->base;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002932
2933 out_with_header:
2934 free_page((unsigned long)ctx->header);
2935 out:
2936 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002937
2938 switch (type) {
2939 case FW_ISO_CONTEXT_RECEIVE:
2940 *channels |= 1ULL << channel;
2941 break;
2942
2943 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2944 ohci->mc_allocated = false;
2945 break;
2946 }
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002947 *mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02002948
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002949 spin_unlock_irqrestore(&ohci->lock, flags);
2950
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002951 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002952}
2953
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04002954static int ohci_start_iso(struct fw_iso_context *base,
2955 s32 cycle, u32 sync, u32 tags)
Kristian Høgsberged568912006-12-19 19:58:35 -05002956{
Stefan Richter373b2ed2007-03-04 14:45:18 +01002957 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05002958 struct fw_ohci *ohci = ctx->context.ohci;
Stefan Richter872e3302010-07-29 18:19:22 +02002959 u32 control = IR_CONTEXT_ISOCH_HEADER, match;
Kristian Høgsberged568912006-12-19 19:58:35 -05002960 int index;
2961
Clemens Ladisch44b74d92011-02-23 09:27:40 +01002962 /* the controller cannot start without any queued packets */
2963 if (ctx->context.last->branch_address == 0)
2964 return -ENODATA;
2965
Stefan Richter872e3302010-07-29 18:19:22 +02002966 switch (ctx->base.type) {
2967 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002968 index = ctx - ohci->it_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002969 match = 0;
2970 if (cycle >= 0)
2971 match = IT_CONTEXT_CYCLE_MATCH_ENABLE |
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002972 (cycle & 0x7fff) << 16;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05002973
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002974 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 1 << index);
2975 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, 1 << index);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002976 context_run(&ctx->context, match);
Stefan Richter872e3302010-07-29 18:19:22 +02002977 break;
2978
2979 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2980 control |= IR_CONTEXT_BUFFER_FILL|IR_CONTEXT_MULTI_CHANNEL_MODE;
2981 /* fall through */
2982 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002983 index = ctx - ohci->ir_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002984 match = (tags << 28) | (sync << 8) | ctx->base.channel;
2985 if (cycle >= 0) {
2986 match |= (cycle & 0x07fff) << 12;
2987 control |= IR_CONTEXT_CYCLE_MATCH_ENABLE;
2988 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002989
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002990 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 1 << index);
2991 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, 1 << index);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04002992 reg_write(ohci, CONTEXT_MATCH(ctx->context.regs), match);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002993 context_run(&ctx->context, control);
Maxim Levitskydd237362010-11-29 04:09:50 +02002994
2995 ctx->sync = sync;
2996 ctx->tags = tags;
2997
Stefan Richter872e3302010-07-29 18:19:22 +02002998 break;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002999 }
Kristian Høgsberged568912006-12-19 19:58:35 -05003000
3001 return 0;
3002}
3003
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003004static int ohci_stop_iso(struct fw_iso_context *base)
3005{
3006 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01003007 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003008 int index;
3009
Stefan Richter872e3302010-07-29 18:19:22 +02003010 switch (ctx->base.type) {
3011 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003012 index = ctx - ohci->it_context_list;
3013 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02003014 break;
3015
3016 case FW_ISO_CONTEXT_RECEIVE:
3017 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003018 index = ctx - ohci->ir_context_list;
3019 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02003020 break;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003021 }
3022 flush_writes(ohci);
3023 context_stop(&ctx->context);
Clemens Ladische81cbeb2011-02-16 10:32:11 +01003024 tasklet_kill(&ctx->context.tasklet);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003025
3026 return 0;
3027}
3028
Kristian Høgsberged568912006-12-19 19:58:35 -05003029static void ohci_free_iso_context(struct fw_iso_context *base)
3030{
3031 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01003032 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberged568912006-12-19 19:58:35 -05003033 unsigned long flags;
3034 int index;
3035
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003036 ohci_stop_iso(base);
3037 context_release(&ctx->context);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05003038 free_page((unsigned long)ctx->header);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003039
Kristian Høgsberged568912006-12-19 19:58:35 -05003040 spin_lock_irqsave(&ohci->lock, flags);
3041
Stefan Richter872e3302010-07-29 18:19:22 +02003042 switch (base->type) {
3043 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberged568912006-12-19 19:58:35 -05003044 index = ctx - ohci->it_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05003045 ohci->it_context_mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02003046 break;
3047
3048 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberged568912006-12-19 19:58:35 -05003049 index = ctx - ohci->ir_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05003050 ohci->ir_context_mask |= 1 << index;
Stefan Richter4817ed22008-12-21 16:39:46 +01003051 ohci->ir_context_channels |= 1ULL << base->channel;
Stefan Richter872e3302010-07-29 18:19:22 +02003052 break;
3053
3054 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3055 index = ctx - ohci->ir_context_list;
3056 ohci->ir_context_mask |= 1 << index;
3057 ohci->ir_context_channels |= ohci->mc_channels;
3058 ohci->mc_channels = 0;
3059 ohci->mc_allocated = false;
3060 break;
Kristian Høgsberged568912006-12-19 19:58:35 -05003061 }
Kristian Høgsberged568912006-12-19 19:58:35 -05003062
3063 spin_unlock_irqrestore(&ohci->lock, flags);
3064}
3065
Stefan Richter872e3302010-07-29 18:19:22 +02003066static int ohci_set_iso_channels(struct fw_iso_context *base, u64 *channels)
Kristian Høgsberged568912006-12-19 19:58:35 -05003067{
Stefan Richter872e3302010-07-29 18:19:22 +02003068 struct fw_ohci *ohci = fw_ohci(base->card);
3069 unsigned long flags;
3070 int ret;
3071
3072 switch (base->type) {
3073 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3074
3075 spin_lock_irqsave(&ohci->lock, flags);
3076
3077 /* Don't allow multichannel to grab other contexts' channels. */
3078 if (~ohci->ir_context_channels & ~ohci->mc_channels & *channels) {
3079 *channels = ohci->ir_context_channels;
3080 ret = -EBUSY;
3081 } else {
3082 set_multichannel_mask(ohci, *channels);
3083 ret = 0;
3084 }
3085
3086 spin_unlock_irqrestore(&ohci->lock, flags);
3087
3088 break;
3089 default:
3090 ret = -EINVAL;
3091 }
3092
3093 return ret;
3094}
3095
Maxim Levitskydd237362010-11-29 04:09:50 +02003096#ifdef CONFIG_PM
3097static void ohci_resume_iso_dma(struct fw_ohci *ohci)
3098{
3099 int i;
3100 struct iso_context *ctx;
3101
3102 for (i = 0 ; i < ohci->n_ir ; i++) {
3103 ctx = &ohci->ir_context_list[i];
Stefan Richter693a50b2011-01-01 15:17:05 +01003104 if (ctx->context.running)
Maxim Levitskydd237362010-11-29 04:09:50 +02003105 ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags);
3106 }
3107
3108 for (i = 0 ; i < ohci->n_it ; i++) {
3109 ctx = &ohci->it_context_list[i];
Stefan Richter693a50b2011-01-01 15:17:05 +01003110 if (ctx->context.running)
Maxim Levitskydd237362010-11-29 04:09:50 +02003111 ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags);
3112 }
3113}
3114#endif
3115
Stefan Richter872e3302010-07-29 18:19:22 +02003116static int queue_iso_transmit(struct iso_context *ctx,
3117 struct fw_iso_packet *packet,
3118 struct fw_iso_buffer *buffer,
3119 unsigned long payload)
3120{
Kristian Høgsberg30200732007-02-16 17:34:39 -05003121 struct descriptor *d, *last, *pd;
Kristian Høgsberged568912006-12-19 19:58:35 -05003122 struct fw_iso_packet *p;
3123 __le32 *header;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003124 dma_addr_t d_bus, page_bus;
Kristian Høgsberged568912006-12-19 19:58:35 -05003125 u32 z, header_z, payload_z, irq;
3126 u32 payload_index, payload_end_index, next_page_index;
Kristian Høgsberg30200732007-02-16 17:34:39 -05003127 int page, end_page, i, length, offset;
Kristian Høgsberged568912006-12-19 19:58:35 -05003128
Kristian Høgsberged568912006-12-19 19:58:35 -05003129 p = packet;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003130 payload_index = payload;
Kristian Høgsberged568912006-12-19 19:58:35 -05003131
3132 if (p->skip)
3133 z = 1;
3134 else
3135 z = 2;
3136 if (p->header_length > 0)
3137 z++;
3138
3139 /* Determine the first page the payload isn't contained in. */
3140 end_page = PAGE_ALIGN(payload_index + p->payload_length) >> PAGE_SHIFT;
3141 if (p->payload_length > 0)
3142 payload_z = end_page - (payload_index >> PAGE_SHIFT);
3143 else
3144 payload_z = 0;
3145
3146 z += payload_z;
3147
3148 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003149 header_z = DIV_ROUND_UP(p->header_length, sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05003150
Kristian Høgsberg30200732007-02-16 17:34:39 -05003151 d = context_get_descriptors(&ctx->context, z + header_z, &d_bus);
3152 if (d == NULL)
3153 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05003154
3155 if (!p->skip) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003156 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsberged568912006-12-19 19:58:35 -05003157 d[0].req_count = cpu_to_le16(8);
Clemens Ladisch7f51a102010-02-08 08:30:03 +01003158 /*
3159 * Link the skip address to this descriptor itself. This causes
3160 * a context to skip a cycle whenever lost cycles or FIFO
3161 * overruns occur, without dropping the data. The application
3162 * should then decide whether this is an error condition or not.
3163 * FIXME: Make the context's cycle-lost behaviour configurable?
3164 */
3165 d[0].branch_address = cpu_to_le32(d_bus | z);
Kristian Høgsberged568912006-12-19 19:58:35 -05003166
3167 header = (__le32 *) &d[1];
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003168 header[0] = cpu_to_le32(IT_HEADER_SY(p->sy) |
3169 IT_HEADER_TAG(p->tag) |
3170 IT_HEADER_TCODE(TCODE_STREAM_DATA) |
3171 IT_HEADER_CHANNEL(ctx->base.channel) |
3172 IT_HEADER_SPEED(ctx->base.speed));
Kristian Høgsberged568912006-12-19 19:58:35 -05003173 header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003174 cpu_to_le32(IT_HEADER_DATA_LENGTH(p->header_length +
Kristian Høgsberged568912006-12-19 19:58:35 -05003175 p->payload_length));
3176 }
3177
3178 if (p->header_length > 0) {
3179 d[2].req_count = cpu_to_le16(p->header_length);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003180 d[2].data_address = cpu_to_le32(d_bus + z * sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05003181 memcpy(&d[z], p->header, p->header_length);
3182 }
3183
3184 pd = d + z - payload_z;
3185 payload_end_index = payload_index + p->payload_length;
3186 for (i = 0; i < payload_z; i++) {
3187 page = payload_index >> PAGE_SHIFT;
3188 offset = payload_index & ~PAGE_MASK;
3189 next_page_index = (page + 1) << PAGE_SHIFT;
3190 length =
3191 min(next_page_index, payload_end_index) - payload_index;
3192 pd[i].req_count = cpu_to_le16(length);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05003193
3194 page_bus = page_private(buffer->pages[page]);
3195 pd[i].data_address = cpu_to_le32(page_bus + offset);
Kristian Høgsberged568912006-12-19 19:58:35 -05003196
Clemens Ladischa572e682011-10-15 23:12:23 +02003197 dma_sync_single_range_for_device(ctx->context.ohci->card.device,
3198 page_bus, offset, length,
3199 DMA_TO_DEVICE);
3200
Kristian Høgsberged568912006-12-19 19:58:35 -05003201 payload_index += length;
3202 }
3203
Kristian Høgsberged568912006-12-19 19:58:35 -05003204 if (p->interrupt)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003205 irq = DESCRIPTOR_IRQ_ALWAYS;
Kristian Høgsberged568912006-12-19 19:58:35 -05003206 else
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003207 irq = DESCRIPTOR_NO_IRQ;
Kristian Høgsberged568912006-12-19 19:58:35 -05003208
Kristian Høgsberg30200732007-02-16 17:34:39 -05003209 last = z == 2 ? d : d + z - 1;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04003210 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
3211 DESCRIPTOR_STATUS |
3212 DESCRIPTOR_BRANCH_ALWAYS |
Kristian Høgsbergcbb59da2007-02-16 17:34:35 -05003213 irq);
Kristian Høgsberged568912006-12-19 19:58:35 -05003214
Kristian Høgsberg30200732007-02-16 17:34:39 -05003215 context_append(&ctx->context, d, z, header_z);
Kristian Høgsberged568912006-12-19 19:58:35 -05003216
3217 return 0;
3218}
Stefan Richter373b2ed2007-03-04 14:45:18 +01003219
Stefan Richter872e3302010-07-29 18:19:22 +02003220static int queue_iso_packet_per_buffer(struct iso_context *ctx,
3221 struct fw_iso_packet *packet,
3222 struct fw_iso_buffer *buffer,
3223 unsigned long payload)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003224{
Clemens Ladischa572e682011-10-15 23:12:23 +02003225 struct device *device = ctx->context.ohci->card.device;
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003226 struct descriptor *d, *pd;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003227 dma_addr_t d_bus, page_bus;
3228 u32 z, header_z, rest;
David Moorebcee8932007-12-19 15:26:38 -05003229 int i, j, length;
3230 int page, offset, packet_count, header_size, payload_per_buffer;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003231
3232 /*
David Moore1aa292b2008-07-22 23:23:40 -07003233 * The OHCI controller puts the isochronous header and trailer in the
3234 * buffer, so we need at least 8 bytes.
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003235 */
Stefan Richter872e3302010-07-29 18:19:22 +02003236 packet_count = packet->header_length / ctx->base.header_size;
David Moore1aa292b2008-07-22 23:23:40 -07003237 header_size = max(ctx->base.header_size, (size_t)8);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003238
3239 /* Get header size in number of descriptors. */
3240 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
3241 page = payload >> PAGE_SHIFT;
3242 offset = payload & ~PAGE_MASK;
Stefan Richter872e3302010-07-29 18:19:22 +02003243 payload_per_buffer = packet->payload_length / packet_count;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003244
3245 for (i = 0; i < packet_count; i++) {
3246 /* d points to the header descriptor */
David Moorebcee8932007-12-19 15:26:38 -05003247 z = DIV_ROUND_UP(payload_per_buffer + offset, PAGE_SIZE) + 1;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003248 d = context_get_descriptors(&ctx->context,
David Moorebcee8932007-12-19 15:26:38 -05003249 z + header_z, &d_bus);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003250 if (d == NULL)
3251 return -ENOMEM;
3252
David Moorebcee8932007-12-19 15:26:38 -05003253 d->control = cpu_to_le16(DESCRIPTOR_STATUS |
3254 DESCRIPTOR_INPUT_MORE);
Stefan Richter872e3302010-07-29 18:19:22 +02003255 if (packet->skip && i == 0)
David Moorebcee8932007-12-19 15:26:38 -05003256 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003257 d->req_count = cpu_to_le16(header_size);
3258 d->res_count = d->req_count;
David Moorebcee8932007-12-19 15:26:38 -05003259 d->transfer_status = 0;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003260 d->data_address = cpu_to_le32(d_bus + (z * sizeof(*d)));
3261
David Moorebcee8932007-12-19 15:26:38 -05003262 rest = payload_per_buffer;
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003263 pd = d;
David Moorebcee8932007-12-19 15:26:38 -05003264 for (j = 1; j < z; j++) {
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05003265 pd++;
David Moorebcee8932007-12-19 15:26:38 -05003266 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
3267 DESCRIPTOR_INPUT_MORE);
3268
3269 if (offset + rest < PAGE_SIZE)
3270 length = rest;
3271 else
3272 length = PAGE_SIZE - offset;
3273 pd->req_count = cpu_to_le16(length);
3274 pd->res_count = pd->req_count;
3275 pd->transfer_status = 0;
3276
3277 page_bus = page_private(buffer->pages[page]);
3278 pd->data_address = cpu_to_le32(page_bus + offset);
3279
Clemens Ladischa572e682011-10-15 23:12:23 +02003280 dma_sync_single_range_for_device(device, page_bus,
3281 offset, length,
3282 DMA_FROM_DEVICE);
3283
David Moorebcee8932007-12-19 15:26:38 -05003284 offset = (offset + length) & ~PAGE_MASK;
3285 rest -= length;
3286 if (offset == 0)
3287 page++;
3288 }
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003289 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
3290 DESCRIPTOR_INPUT_LAST |
3291 DESCRIPTOR_BRANCH_ALWAYS);
Stefan Richter872e3302010-07-29 18:19:22 +02003292 if (packet->interrupt && i == packet_count - 1)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003293 pd->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
3294
Jarod Wilsona186b4a2007-12-03 13:43:12 -05003295 context_append(&ctx->context, d, z, header_z);
3296 }
3297
3298 return 0;
3299}
3300
Stefan Richter872e3302010-07-29 18:19:22 +02003301static int queue_iso_buffer_fill(struct iso_context *ctx,
3302 struct fw_iso_packet *packet,
3303 struct fw_iso_buffer *buffer,
3304 unsigned long payload)
3305{
3306 struct descriptor *d;
3307 dma_addr_t d_bus, page_bus;
3308 int page, offset, rest, z, i, length;
3309
3310 page = payload >> PAGE_SHIFT;
3311 offset = payload & ~PAGE_MASK;
3312 rest = packet->payload_length;
3313
3314 /* We need one descriptor for each page in the buffer. */
3315 z = DIV_ROUND_UP(offset + rest, PAGE_SIZE);
3316
3317 if (WARN_ON(offset & 3 || rest & 3 || page + z > buffer->page_count))
3318 return -EFAULT;
3319
3320 for (i = 0; i < z; i++) {
3321 d = context_get_descriptors(&ctx->context, 1, &d_bus);
3322 if (d == NULL)
3323 return -ENOMEM;
3324
3325 d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
3326 DESCRIPTOR_BRANCH_ALWAYS);
3327 if (packet->skip && i == 0)
3328 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
3329 if (packet->interrupt && i == z - 1)
3330 d->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
3331
3332 if (offset + rest < PAGE_SIZE)
3333 length = rest;
3334 else
3335 length = PAGE_SIZE - offset;
3336 d->req_count = cpu_to_le16(length);
3337 d->res_count = d->req_count;
3338 d->transfer_status = 0;
3339
3340 page_bus = page_private(buffer->pages[page]);
3341 d->data_address = cpu_to_le32(page_bus + offset);
3342
Clemens Ladischa572e682011-10-15 23:12:23 +02003343 dma_sync_single_range_for_device(ctx->context.ohci->card.device,
3344 page_bus, offset, length,
3345 DMA_FROM_DEVICE);
3346
Stefan Richter872e3302010-07-29 18:19:22 +02003347 rest -= length;
3348 offset = 0;
3349 page++;
3350
3351 context_append(&ctx->context, d, 1, 0);
3352 }
3353
3354 return 0;
3355}
3356
Stefan Richter53dca512008-12-14 21:47:04 +01003357static int ohci_queue_iso(struct fw_iso_context *base,
3358 struct fw_iso_packet *packet,
3359 struct fw_iso_buffer *buffer,
3360 unsigned long payload)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003361{
Kristian Høgsberge364cf42007-02-16 17:34:49 -05003362 struct iso_context *ctx = container_of(base, struct iso_context, base);
David Moorefe5ca632008-01-06 17:21:41 -05003363 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02003364 int ret = -ENOSYS;
Kristian Høgsberge364cf42007-02-16 17:34:49 -05003365
David Moorefe5ca632008-01-06 17:21:41 -05003366 spin_lock_irqsave(&ctx->context.ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02003367 switch (base->type) {
3368 case FW_ISO_CONTEXT_TRANSMIT:
3369 ret = queue_iso_transmit(ctx, packet, buffer, payload);
3370 break;
3371 case FW_ISO_CONTEXT_RECEIVE:
3372 ret = queue_iso_packet_per_buffer(ctx, packet, buffer, payload);
3373 break;
3374 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
3375 ret = queue_iso_buffer_fill(ctx, packet, buffer, payload);
3376 break;
3377 }
David Moorefe5ca632008-01-06 17:21:41 -05003378 spin_unlock_irqrestore(&ctx->context.ohci->lock, flags);
3379
Stefan Richter2dbd7d72008-12-14 21:45:45 +01003380 return ret;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05003381}
3382
Clemens Ladisch13882a82011-05-02 09:33:56 +02003383static void ohci_flush_queue_iso(struct fw_iso_context *base)
3384{
3385 struct context *ctx =
3386 &container_of(base, struct iso_context, base)->context;
3387
3388 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Clemens Ladisch13882a82011-05-02 09:33:56 +02003389}
3390
Stefan Richter21ebcd12007-01-14 15:29:07 +01003391static const struct fw_card_driver ohci_driver = {
Kristian Høgsberged568912006-12-19 19:58:35 -05003392 .enable = ohci_enable,
Stefan Richter02d37be2010-07-08 16:09:06 +02003393 .read_phy_reg = ohci_read_phy_reg,
Kristian Høgsberged568912006-12-19 19:58:35 -05003394 .update_phy_reg = ohci_update_phy_reg,
3395 .set_config_rom = ohci_set_config_rom,
3396 .send_request = ohci_send_request,
3397 .send_response = ohci_send_response,
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05003398 .cancel_packet = ohci_cancel_packet,
Kristian Høgsberged568912006-12-19 19:58:35 -05003399 .enable_phys_dma = ohci_enable_phys_dma,
Stefan Richter0fcff4e2010-06-12 20:35:52 +02003400 .read_csr = ohci_read_csr,
3401 .write_csr = ohci_write_csr,
Kristian Høgsberged568912006-12-19 19:58:35 -05003402
3403 .allocate_iso_context = ohci_allocate_iso_context,
3404 .free_iso_context = ohci_free_iso_context,
Stefan Richter872e3302010-07-29 18:19:22 +02003405 .set_iso_channels = ohci_set_iso_channels,
Kristian Høgsberged568912006-12-19 19:58:35 -05003406 .queue_iso = ohci_queue_iso,
Clemens Ladisch13882a82011-05-02 09:33:56 +02003407 .flush_queue_iso = ohci_flush_queue_iso,
Kristian Høgsberg69cdb722007-02-16 17:34:41 -05003408 .start_iso = ohci_start_iso,
Kristian Høgsbergb8295662007-02-16 17:34:42 -05003409 .stop_iso = ohci_stop_iso,
Kristian Høgsberged568912006-12-19 19:58:35 -05003410};
3411
Stefan Richter2ed0f182008-03-01 12:35:29 +01003412#ifdef CONFIG_PPC_PMAC
Stefan Richter5da3dac2010-04-02 14:05:02 +02003413static void pmac_ohci_on(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01003414{
3415 if (machine_is(powermac)) {
3416 struct device_node *ofn = pci_device_to_OF_node(dev);
3417
3418 if (ofn) {
3419 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 1);
3420 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 1);
3421 }
3422 }
3423}
3424
Stefan Richter5da3dac2010-04-02 14:05:02 +02003425static void pmac_ohci_off(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01003426{
3427 if (machine_is(powermac)) {
3428 struct device_node *ofn = pci_device_to_OF_node(dev);
3429
3430 if (ofn) {
3431 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 0);
3432 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 0);
3433 }
3434 }
3435}
3436#else
Stefan Richter5da3dac2010-04-02 14:05:02 +02003437static inline void pmac_ohci_on(struct pci_dev *dev) {}
3438static inline void pmac_ohci_off(struct pci_dev *dev) {}
Stefan Richter2ed0f182008-03-01 12:35:29 +01003439#endif /* CONFIG_PPC_PMAC */
3440
Stefan Richter53dca512008-12-14 21:47:04 +01003441static int __devinit pci_probe(struct pci_dev *dev,
3442 const struct pci_device_id *ent)
Kristian Høgsberged568912006-12-19 19:58:35 -05003443{
3444 struct fw_ohci *ohci;
Stefan Richteraa0170f2010-10-17 14:09:12 +02003445 u32 bus_options, max_receive, link_speed, version;
Kristian Høgsberged568912006-12-19 19:58:35 -05003446 u64 guid;
Maxim Levitskydd237362010-11-29 04:09:50 +02003447 int i, err;
Kristian Høgsberged568912006-12-19 19:58:35 -05003448 size_t size;
3449
Stefan Richter7f7e37112011-07-10 00:23:03 +02003450 if (dev->vendor == PCI_VENDOR_ID_PINNACLE_SYSTEMS) {
3451 dev_err(&dev->dev, "Pinnacle MovieBoard is not yet supported\n");
3452 return -ENOSYS;
3453 }
3454
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04003455 ohci = kzalloc(sizeof(*ohci), GFP_KERNEL);
Kristian Høgsberged568912006-12-19 19:58:35 -05003456 if (ohci == NULL) {
Stefan Richter7007a072008-10-26 09:50:31 +01003457 err = -ENOMEM;
3458 goto fail;
Kristian Høgsberged568912006-12-19 19:58:35 -05003459 }
3460
3461 fw_card_initialize(&ohci->card, &ohci_driver, &dev->dev);
3462
Stefan Richter5da3dac2010-04-02 14:05:02 +02003463 pmac_ohci_on(dev);
Stefan Richter130d5492008-03-24 20:55:28 +01003464
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003465 err = pci_enable_device(dev);
3466 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003467 dev_err(&dev->dev, "failed to enable OHCI hardware\n");
Stefan Richterbd7dee62008-02-24 18:59:55 +01003468 goto fail_free;
Kristian Høgsberged568912006-12-19 19:58:35 -05003469 }
3470
3471 pci_set_master(dev);
3472 pci_write_config_dword(dev, OHCI1394_PCI_HCI_Control, 0);
3473 pci_set_drvdata(dev, ohci);
3474
3475 spin_lock_init(&ohci->lock);
Stefan Richter02d37be2010-07-08 16:09:06 +02003476 mutex_init(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -05003477
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02003478 INIT_WORK(&ohci->bus_reset_work, bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05003479
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003480 err = pci_request_region(dev, 0, ohci_driver_name);
3481 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003482 dev_err(&dev->dev, "MMIO resource unavailable\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003483 goto fail_disable;
Kristian Høgsberged568912006-12-19 19:58:35 -05003484 }
3485
3486 ohci->registers = pci_iomap(dev, 0, OHCI1394_REGISTER_SIZE);
3487 if (ohci->registers == NULL) {
Stefan Richter64d21722011-12-20 21:32:46 +01003488 dev_err(&dev->dev, "failed to remap registers\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003489 err = -ENXIO;
3490 goto fail_iomem;
Kristian Høgsberged568912006-12-19 19:58:35 -05003491 }
3492
Stefan Richter4a635592010-02-21 17:58:01 +01003493 for (i = 0; i < ARRAY_SIZE(ohci_quirks); i++)
Stefan Richter9993e0f2010-12-07 20:32:40 +01003494 if ((ohci_quirks[i].vendor == dev->vendor) &&
3495 (ohci_quirks[i].device == (unsigned short)PCI_ANY_ID ||
3496 ohci_quirks[i].device == dev->device) &&
3497 (ohci_quirks[i].revision == (unsigned short)PCI_ANY_ID ||
3498 ohci_quirks[i].revision >= dev->revision)) {
Stefan Richter4a635592010-02-21 17:58:01 +01003499 ohci->quirks = ohci_quirks[i].flags;
3500 break;
3501 }
Stefan Richter3e9cc2f2010-02-21 17:58:29 +01003502 if (param_quirks)
3503 ohci->quirks = param_quirks;
Clemens Ladischb6775322010-01-20 09:58:02 +01003504
Clemens Ladischec766a72010-11-30 08:25:17 +01003505 /*
3506 * Because dma_alloc_coherent() allocates at least one page,
3507 * we save space by using a common buffer for the AR request/
3508 * response descriptors and the self IDs buffer.
3509 */
3510 BUILD_BUG_ON(AR_BUFFERS * sizeof(struct descriptor) > PAGE_SIZE/4);
3511 BUILD_BUG_ON(SELF_ID_BUF_SIZE > PAGE_SIZE/2);
3512 ohci->misc_buffer = dma_alloc_coherent(ohci->card.device,
3513 PAGE_SIZE,
3514 &ohci->misc_buffer_bus,
3515 GFP_KERNEL);
3516 if (!ohci->misc_buffer) {
3517 err = -ENOMEM;
3518 goto fail_iounmap;
3519 }
3520
3521 err = ar_context_init(&ohci->ar_request_ctx, ohci, 0,
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003522 OHCI1394_AsReqRcvContextControlSet);
3523 if (err < 0)
Clemens Ladischec766a72010-11-30 08:25:17 +01003524 goto fail_misc_buf;
Kristian Høgsberged568912006-12-19 19:58:35 -05003525
Clemens Ladischec766a72010-11-30 08:25:17 +01003526 err = ar_context_init(&ohci->ar_response_ctx, ohci, PAGE_SIZE/4,
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003527 OHCI1394_AsRspRcvContextControlSet);
3528 if (err < 0)
3529 goto fail_arreq_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003530
Clemens Ladischc088ab302010-11-30 08:24:01 +01003531 err = context_init(&ohci->at_request_ctx, ohci,
3532 OHCI1394_AsReqTrContextControlSet, handle_at_packet);
3533 if (err < 0)
3534 goto fail_arrsp_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003535
Clemens Ladischc088ab302010-11-30 08:24:01 +01003536 err = context_init(&ohci->at_response_ctx, ohci,
3537 OHCI1394_AsRspTrContextControlSet, handle_at_packet);
3538 if (err < 0)
3539 goto fail_atreq_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -05003540
Kristian Høgsberged568912006-12-19 19:58:35 -05003541 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, ~0);
Stefan Richter4817ed22008-12-21 16:39:46 +01003542 ohci->ir_context_channels = ~0ULL;
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003543 ohci->ir_context_support = reg_read(ohci, OHCI1394_IsoRecvIntMaskSet);
Stefan Richter4802f162010-02-21 17:58:52 +01003544 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003545 ohci->ir_context_mask = ohci->ir_context_support;
Maxim Levitskydd237362010-11-29 04:09:50 +02003546 ohci->n_ir = hweight32(ohci->ir_context_mask);
3547 size = sizeof(struct iso_context) * ohci->n_ir;
Kristian Høgsberged568912006-12-19 19:58:35 -05003548 ohci->ir_context_list = kzalloc(size, GFP_KERNEL);
3549
Stefan Richter4802f162010-02-21 17:58:52 +01003550 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003551 ohci->it_context_support = reg_read(ohci, OHCI1394_IsoXmitIntMaskSet);
Stefan Richter4802f162010-02-21 17:58:52 +01003552 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, ~0);
Clemens Ladischf117a3e2011-01-10 17:21:35 +01003553 ohci->it_context_mask = ohci->it_context_support;
Maxim Levitskydd237362010-11-29 04:09:50 +02003554 ohci->n_it = hweight32(ohci->it_context_mask);
3555 size = sizeof(struct iso_context) * ohci->n_it;
Stefan Richter4802f162010-02-21 17:58:52 +01003556 ohci->it_context_list = kzalloc(size, GFP_KERNEL);
3557
Kristian Høgsberged568912006-12-19 19:58:35 -05003558 if (ohci->it_context_list == NULL || ohci->ir_context_list == NULL) {
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003559 err = -ENOMEM;
Stefan Richter7007a072008-10-26 09:50:31 +01003560 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05003561 }
3562
Clemens Ladischec766a72010-11-30 08:25:17 +01003563 ohci->self_id_cpu = ohci->misc_buffer + PAGE_SIZE/2;
3564 ohci->self_id_bus = ohci->misc_buffer_bus + PAGE_SIZE/2;
Kristian Høgsberged568912006-12-19 19:58:35 -05003565
Kristian Høgsberged568912006-12-19 19:58:35 -05003566 bus_options = reg_read(ohci, OHCI1394_BusOptions);
3567 max_receive = (bus_options >> 12) & 0xf;
3568 link_speed = bus_options & 0x7;
3569 guid = ((u64) reg_read(ohci, OHCI1394_GUIDHi) << 32) |
3570 reg_read(ohci, OHCI1394_GUIDLo);
3571
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003572 err = fw_card_add(&ohci->card, max_receive, link_speed, guid);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01003573 if (err)
Clemens Ladischec766a72010-11-30 08:25:17 +01003574 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05003575
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01003576 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
Stefan Richter64d21722011-12-20 21:32:46 +01003577 dev_notice(&dev->dev,
3578 "added OHCI v%x.%x device as card %d, "
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01003579 "%d IR + %d IT contexts, quirks 0x%x\n",
Stefan Richter64d21722011-12-20 21:32:46 +01003580 version >> 16, version & 0xff, ohci->card.index,
Maxim Levitskydd237362010-11-29 04:09:50 +02003581 ohci->n_ir, ohci->n_it, ohci->quirks);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01003582
Kristian Høgsberged568912006-12-19 19:58:35 -05003583 return 0;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003584
Stefan Richter7007a072008-10-26 09:50:31 +01003585 fail_contexts:
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003586 kfree(ohci->ir_context_list);
Stefan Richter7007a072008-10-26 09:50:31 +01003587 kfree(ohci->it_context_list);
3588 context_release(&ohci->at_response_ctx);
Clemens Ladischc088ab302010-11-30 08:24:01 +01003589 fail_atreq_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003590 context_release(&ohci->at_request_ctx);
Clemens Ladischc088ab302010-11-30 08:24:01 +01003591 fail_arrsp_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003592 ar_context_release(&ohci->ar_response_ctx);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003593 fail_arreq_ctx:
Stefan Richter7007a072008-10-26 09:50:31 +01003594 ar_context_release(&ohci->ar_request_ctx);
Clemens Ladischec766a72010-11-30 08:25:17 +01003595 fail_misc_buf:
3596 dma_free_coherent(ohci->card.device, PAGE_SIZE,
3597 ohci->misc_buffer, ohci->misc_buffer_bus);
Clemens Ladisch7a39d8b2010-11-26 08:57:31 +01003598 fail_iounmap:
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003599 pci_iounmap(dev, ohci->registers);
3600 fail_iomem:
3601 pci_release_region(dev, 0);
3602 fail_disable:
3603 pci_disable_device(dev);
Stefan Richterbd7dee62008-02-24 18:59:55 +01003604 fail_free:
Oleg Drokind838d2c02011-03-11 04:17:27 +03003605 kfree(ohci);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003606 pmac_ohci_off(dev);
Stefan Richter7007a072008-10-26 09:50:31 +01003607 fail:
3608 if (err == -ENOMEM)
Stefan Richter64d21722011-12-20 21:32:46 +01003609 dev_err(&dev->dev, "out of memory\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003610
3611 return err;
Kristian Høgsberged568912006-12-19 19:58:35 -05003612}
3613
3614static void pci_remove(struct pci_dev *dev)
3615{
3616 struct fw_ohci *ohci;
3617
3618 ohci = pci_get_drvdata(dev);
Kristian Høgsberge254a4b2007-03-07 12:12:38 -05003619 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
3620 flush_writes(ohci);
Stephan Gatzka2d7a36e2011-07-25 22:16:24 +02003621 cancel_work_sync(&ohci->bus_reset_work);
Kristian Høgsberged568912006-12-19 19:58:35 -05003622 fw_core_remove_card(&ohci->card);
3623
Kristian Høgsbergc781c062007-05-07 20:33:32 -04003624 /*
3625 * FIXME: Fail all pending packets here, now that the upper
3626 * layers can't queue any more.
3627 */
Kristian Høgsberged568912006-12-19 19:58:35 -05003628
3629 software_reset(ohci);
3630 free_irq(dev->irq, ohci);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003631
3632 if (ohci->next_config_rom && ohci->next_config_rom != ohci->config_rom)
3633 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3634 ohci->next_config_rom, ohci->next_config_rom_bus);
3635 if (ohci->config_rom)
3636 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3637 ohci->config_rom, ohci->config_rom_bus);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003638 ar_context_release(&ohci->ar_request_ctx);
3639 ar_context_release(&ohci->ar_response_ctx);
Clemens Ladischec766a72010-11-30 08:25:17 +01003640 dma_free_coherent(ohci->card.device, PAGE_SIZE,
3641 ohci->misc_buffer, ohci->misc_buffer_bus);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003642 context_release(&ohci->at_request_ctx);
3643 context_release(&ohci->at_response_ctx);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003644 kfree(ohci->it_context_list);
3645 kfree(ohci->ir_context_list);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003646 pci_disable_msi(dev);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003647 pci_iounmap(dev, ohci->registers);
3648 pci_release_region(dev, 0);
3649 pci_disable_device(dev);
Oleg Drokind838d2c02011-03-11 04:17:27 +03003650 kfree(ohci);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003651 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003652
Stefan Richter64d21722011-12-20 21:32:46 +01003653 dev_notice(&dev->dev, "removed fw-ohci device\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05003654}
3655
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003656#ifdef CONFIG_PM
Stefan Richter2ed0f182008-03-01 12:35:29 +01003657static int pci_suspend(struct pci_dev *dev, pm_message_t state)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003658{
Stefan Richter2ed0f182008-03-01 12:35:29 +01003659 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003660 int err;
3661
3662 software_reset(ohci);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003663 free_irq(dev->irq, ohci);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003664 pci_disable_msi(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003665 err = pci_save_state(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003666 if (err) {
Stefan Richter64d21722011-12-20 21:32:46 +01003667 dev_err(&dev->dev, "pci_save_state failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003668 return err;
3669 }
Stefan Richter2ed0f182008-03-01 12:35:29 +01003670 err = pci_set_power_state(dev, pci_choose_state(dev, state));
Stefan Richter55111422007-09-06 09:50:30 +02003671 if (err)
Stefan Richter64d21722011-12-20 21:32:46 +01003672 dev_err(&dev->dev, "pci_set_power_state failed with %d\n", err);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003673 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003674
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003675 return 0;
3676}
3677
Stefan Richter2ed0f182008-03-01 12:35:29 +01003678static int pci_resume(struct pci_dev *dev)
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
Stefan Richter5da3dac2010-04-02 14:05:02 +02003683 pmac_ohci_on(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003684 pci_set_power_state(dev, PCI_D0);
3685 pci_restore_state(dev);
3686 err = pci_enable_device(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_enable_device failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003689 return err;
3690 }
3691
Maxim Levitsky8662b6b2010-11-29 04:09:49 +02003692 /* Some systems don't setup GUID register on resume from ram */
3693 if (!reg_read(ohci, OHCI1394_GUIDLo) &&
3694 !reg_read(ohci, OHCI1394_GUIDHi)) {
3695 reg_write(ohci, OHCI1394_GUIDLo, (u32)ohci->card.guid);
3696 reg_write(ohci, OHCI1394_GUIDHi, (u32)(ohci->card.guid >> 32));
3697 }
3698
Maxim Levitskydd237362010-11-29 04:09:50 +02003699 err = ohci_enable(&ohci->card, NULL, 0);
Maxim Levitskydd237362010-11-29 04:09:50 +02003700 if (err)
3701 return err;
3702
3703 ohci_resume_iso_dma(ohci);
Stefan Richter693a50b2011-01-01 15:17:05 +01003704
Maxim Levitskydd237362010-11-29 04:09:50 +02003705 return 0;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003706}
3707#endif
3708
Németh Mártona67483d2010-01-10 13:14:26 +01003709static const struct pci_device_id pci_table[] = {
Kristian Høgsberged568912006-12-19 19:58:35 -05003710 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_FIREWIRE_OHCI, ~0) },
3711 { }
3712};
3713
3714MODULE_DEVICE_TABLE(pci, pci_table);
3715
3716static struct pci_driver fw_ohci_pci_driver = {
3717 .name = ohci_driver_name,
3718 .id_table = pci_table,
3719 .probe = pci_probe,
3720 .remove = pci_remove,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003721#ifdef CONFIG_PM
3722 .resume = pci_resume,
3723 .suspend = pci_suspend,
3724#endif
Kristian Høgsberged568912006-12-19 19:58:35 -05003725};
3726
3727MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
3728MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers");
3729MODULE_LICENSE("GPL");
3730
Olaf Hering1e4c7b02007-05-05 23:17:13 +02003731/* Provide a module alias so root-on-sbp2 initrds don't break. */
3732#ifndef CONFIG_IEEE1394_OHCI1394_MODULE
3733MODULE_ALIAS("ohci1394");
3734#endif
3735
Kristian Høgsberged568912006-12-19 19:58:35 -05003736static int __init fw_ohci_init(void)
3737{
3738 return pci_register_driver(&fw_ohci_pci_driver);
3739}
3740
3741static void __exit fw_ohci_cleanup(void)
3742{
3743 pci_unregister_driver(&fw_ohci_pci_driver);
3744}
3745
3746module_init(fw_ohci_init);
3747module_exit(fw_ohci_cleanup);