blob: be29b0bb247101442a63fa623467e98ad7b77524 [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
2 * Driver for OHCI 1394 controllers
Kristian Høgsberged568912006-12-19 19:58:35 -05003 *
Kristian Høgsberged568912006-12-19 19:58:35 -05004 * Copyright (C) 2003-2006 Kristian Hoegsberg <krh@bitplanet.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
Stefan Richter65b27422010-06-12 20:26:51 +020021#include <linux/bug.h>
Stefan Richtere524f6162007-08-20 21:58:30 +020022#include <linux/compiler.h>
Kristian Høgsberged568912006-12-19 19:58:35 -050023#include <linux/delay.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020024#include <linux/device.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080025#include <linux/dma-mapping.h>
Stefan Richter77c9a5d2009-06-05 16:26:18 +020026#include <linux/firewire.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020027#include <linux/firewire-constants.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020028#include <linux/init.h>
29#include <linux/interrupt.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020030#include <linux/io.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020031#include <linux/kernel.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020032#include <linux/list.h>
Al Virofaa2fb42007-05-15 20:36:10 +010033#include <linux/mm.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020034#include <linux/module.h>
Stefan Richterad3c0fe2008-03-20 22:04:36 +010035#include <linux/moduleparam.h>
Stefan Richter02d37be2010-07-08 16:09:06 +020036#include <linux/mutex.h>
Stefan Richtera7fb60d2007-08-20 21:41:22 +020037#include <linux/pci.h>
Stefan Richterfc383792009-08-28 13:25:15 +020038#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Stefan Richterc26f0232007-08-20 21:40:30 +020040#include <linux/spinlock.h>
Stefan Richtere8ca9702009-06-04 21:09:38 +020041#include <linux/string.h>
Stefan Richtere78483c2010-08-02 09:33:25 +020042#include <linux/time.h>
Andrew Mortoncf3e72f2006-12-27 14:36:37 -080043
Stefan Richtere8ca9702009-06-04 21:09:38 +020044#include <asm/byteorder.h>
Stefan Richterc26f0232007-08-20 21:40:30 +020045#include <asm/page.h>
Stefan Richteree71c2f2007-08-25 14:08:19 +020046#include <asm/system.h>
Kristian Høgsberged568912006-12-19 19:58:35 -050047
Stefan Richterea8d0062008-03-01 02:42:56 +010048#ifdef CONFIG_PPC_PMAC
49#include <asm/pmac_feature.h>
50#endif
51
Stefan Richter77c9a5d2009-06-05 16:26:18 +020052#include "core.h"
53#include "ohci.h"
Kristian Høgsberged568912006-12-19 19:58:35 -050054
Kristian Høgsberga77754a2007-05-07 20:33:35 -040055#define DESCRIPTOR_OUTPUT_MORE 0
56#define DESCRIPTOR_OUTPUT_LAST (1 << 12)
57#define DESCRIPTOR_INPUT_MORE (2 << 12)
58#define DESCRIPTOR_INPUT_LAST (3 << 12)
59#define DESCRIPTOR_STATUS (1 << 11)
60#define DESCRIPTOR_KEY_IMMEDIATE (2 << 8)
61#define DESCRIPTOR_PING (1 << 7)
62#define DESCRIPTOR_YY (1 << 6)
63#define DESCRIPTOR_NO_IRQ (0 << 4)
64#define DESCRIPTOR_IRQ_ERROR (1 << 4)
65#define DESCRIPTOR_IRQ_ALWAYS (3 << 4)
66#define DESCRIPTOR_BRANCH_ALWAYS (3 << 2)
67#define DESCRIPTOR_WAIT (3 << 0)
Kristian Høgsberged568912006-12-19 19:58:35 -050068
69struct descriptor {
70 __le16 req_count;
71 __le16 control;
72 __le32 data_address;
73 __le32 branch_address;
74 __le16 res_count;
75 __le16 transfer_status;
76} __attribute__((aligned(16)));
77
Kristian Høgsberga77754a2007-05-07 20:33:35 -040078#define CONTROL_SET(regs) (regs)
79#define CONTROL_CLEAR(regs) ((regs) + 4)
80#define COMMAND_PTR(regs) ((regs) + 12)
81#define CONTEXT_MATCH(regs) ((regs) + 16)
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050082
Kristian Høgsberg32b46092007-02-06 14:49:30 -050083struct ar_buffer {
84 struct descriptor descriptor;
85 struct ar_buffer *next;
86 __le32 data[0];
87};
88
Kristian Høgsberged568912006-12-19 19:58:35 -050089struct ar_context {
90 struct fw_ohci *ohci;
Kristian Høgsberg32b46092007-02-06 14:49:30 -050091 struct ar_buffer *current_buffer;
92 struct ar_buffer *last_buffer;
93 void *pointer;
Kristian Høgsberg72e318e2007-02-06 14:49:31 -050094 u32 regs;
Kristian Høgsberged568912006-12-19 19:58:35 -050095 struct tasklet_struct tasklet;
96};
97
Kristian Høgsberg30200732007-02-16 17:34:39 -050098struct context;
99
100typedef int (*descriptor_callback_t)(struct context *ctx,
101 struct descriptor *d,
102 struct descriptor *last);
David Moorefe5ca632008-01-06 17:21:41 -0500103
104/*
105 * A buffer that contains a block of DMA-able coherent memory used for
106 * storing a portion of a DMA descriptor program.
107 */
108struct descriptor_buffer {
109 struct list_head list;
110 dma_addr_t buffer_bus;
111 size_t buffer_size;
112 size_t used;
113 struct descriptor buffer[0];
114};
115
Kristian Høgsberg30200732007-02-16 17:34:39 -0500116struct context {
Stefan Richter373b2ed2007-03-04 14:45:18 +0100117 struct fw_ohci *ohci;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500118 u32 regs;
David Moorefe5ca632008-01-06 17:21:41 -0500119 int total_allocation;
Stefan Richter373b2ed2007-03-04 14:45:18 +0100120
David Moorefe5ca632008-01-06 17:21:41 -0500121 /*
122 * List of page-sized buffers for storing DMA descriptors.
123 * Head of list contains buffers in use and tail of list contains
124 * free buffers.
125 */
126 struct list_head buffer_list;
127
128 /*
129 * Pointer to a buffer inside buffer_list that contains the tail
130 * end of the current DMA program.
131 */
132 struct descriptor_buffer *buffer_tail;
133
134 /*
135 * The descriptor containing the branch address of the first
136 * descriptor that has not yet been filled by the device.
137 */
138 struct descriptor *last;
139
140 /*
141 * The last descriptor in the DMA program. It contains the branch
142 * address that must be updated upon appending a new descriptor.
143 */
144 struct descriptor *prev;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500145
146 descriptor_callback_t callback;
147
Stefan Richter373b2ed2007-03-04 14:45:18 +0100148 struct tasklet_struct tasklet;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500149};
Kristian Høgsberg30200732007-02-16 17:34:39 -0500150
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400151#define IT_HEADER_SY(v) ((v) << 0)
152#define IT_HEADER_TCODE(v) ((v) << 4)
153#define IT_HEADER_CHANNEL(v) ((v) << 8)
154#define IT_HEADER_TAG(v) ((v) << 14)
155#define IT_HEADER_SPEED(v) ((v) << 16)
156#define IT_HEADER_DATA_LENGTH(v) ((v) << 16)
Kristian Høgsberged568912006-12-19 19:58:35 -0500157
158struct iso_context {
159 struct fw_iso_context base;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500160 struct context context;
David Moore0642b652007-12-19 03:09:18 -0500161 int excess_bytes;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500162 void *header;
163 size_t header_length;
Kristian Høgsberged568912006-12-19 19:58:35 -0500164};
165
166#define CONFIG_ROM_SIZE 1024
167
168struct fw_ohci {
169 struct fw_card card;
170
171 __iomem char *registers;
Kristian Høgsberge636fe22007-01-26 00:38:04 -0500172 int node_id;
Kristian Høgsberged568912006-12-19 19:58:35 -0500173 int generation;
Stefan Richtere09770d2008-03-11 02:23:29 +0100174 int request_generation; /* for timestamping incoming requests */
Stefan Richter4a635592010-02-21 17:58:01 +0100175 unsigned quirks;
Clemens Ladischa1a11322010-06-10 08:35:06 +0200176 unsigned int pri_req_max;
Clemens Ladischa48777e2010-06-10 08:33:07 +0200177 u32 bus_time;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +0200178 bool is_root;
Stefan Richterc8a94de2010-06-12 20:34:50 +0200179 bool csr_state_setclear_abdicate;
Kristian Høgsberged568912006-12-19 19:58:35 -0500180
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400181 /*
182 * Spinlock for accessing fw_ohci data. Never call out of
183 * this driver with this lock held.
184 */
Kristian Høgsberged568912006-12-19 19:58:35 -0500185 spinlock_t lock;
Kristian Høgsberged568912006-12-19 19:58:35 -0500186
Stefan Richter02d37be2010-07-08 16:09:06 +0200187 struct mutex phy_reg_mutex;
188
Kristian Høgsberged568912006-12-19 19:58:35 -0500189 struct ar_context ar_request_ctx;
190 struct ar_context ar_response_ctx;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500191 struct context at_request_ctx;
192 struct context at_response_ctx;
Kristian Høgsberged568912006-12-19 19:58:35 -0500193
Stefan Richter872e3302010-07-29 18:19:22 +0200194 u32 it_context_mask; /* unoccupied IT contexts */
Kristian Høgsberged568912006-12-19 19:58:35 -0500195 struct iso_context *it_context_list;
Stefan Richter872e3302010-07-29 18:19:22 +0200196 u64 ir_context_channels; /* unoccupied channels */
197 u32 ir_context_mask; /* unoccupied IR contexts */
Kristian Høgsberged568912006-12-19 19:58:35 -0500198 struct iso_context *ir_context_list;
Stefan Richter872e3302010-07-29 18:19:22 +0200199 u64 mc_channels; /* channels in use by the multichannel IR context */
200 bool mc_allocated;
Stefan Richterecb1cf92010-02-21 17:57:32 +0100201
202 __be32 *config_rom;
203 dma_addr_t config_rom_bus;
204 __be32 *next_config_rom;
205 dma_addr_t next_config_rom_bus;
206 __be32 next_header;
207
208 __le32 *self_id_cpu;
209 dma_addr_t self_id_bus;
210 struct tasklet_struct bus_reset_tasklet;
211
212 u32 self_id_buffer[512];
Kristian Høgsberged568912006-12-19 19:58:35 -0500213};
214
Adrian Bunk95688e92007-01-22 19:17:37 +0100215static inline struct fw_ohci *fw_ohci(struct fw_card *card)
Kristian Høgsberged568912006-12-19 19:58:35 -0500216{
217 return container_of(card, struct fw_ohci, card);
218}
219
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500220#define IT_CONTEXT_CYCLE_MATCH_ENABLE 0x80000000
221#define IR_CONTEXT_BUFFER_FILL 0x80000000
222#define IR_CONTEXT_ISOCH_HEADER 0x40000000
223#define IR_CONTEXT_CYCLE_MATCH_ENABLE 0x20000000
224#define IR_CONTEXT_MULTI_CHANNEL_MODE 0x10000000
225#define IR_CONTEXT_DUAL_BUFFER_MODE 0x08000000
Kristian Høgsberged568912006-12-19 19:58:35 -0500226
227#define CONTEXT_RUN 0x8000
228#define CONTEXT_WAKE 0x1000
229#define CONTEXT_DEAD 0x0800
230#define CONTEXT_ACTIVE 0x0400
231
Stefan Richter8b7b6af2009-01-20 19:10:58 +0100232#define OHCI1394_MAX_AT_REQ_RETRIES 0xf
Kristian Høgsberged568912006-12-19 19:58:35 -0500233#define OHCI1394_MAX_AT_RESP_RETRIES 0x2
234#define OHCI1394_MAX_PHYS_RESP_RETRIES 0x8
235
Kristian Høgsberged568912006-12-19 19:58:35 -0500236#define OHCI1394_REGISTER_SIZE 0x800
237#define OHCI_LOOP_COUNT 500
238#define OHCI1394_PCI_HCI_Control 0x40
239#define SELF_ID_BUF_SIZE 0x800
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500240#define OHCI_TCODE_PHY_PACKET 0x0e
Kristian Høgsberge364cf42007-02-16 17:34:49 -0500241#define OHCI_VERSION_1_1 0x010010
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500242
Kristian Høgsberged568912006-12-19 19:58:35 -0500243static char ohci_driver_name[] = KBUILD_MODNAME;
244
Clemens Ladisch262444e2010-06-05 12:31:25 +0200245#define PCI_DEVICE_ID_JMICRON_JMB38X_FW 0x2380
Clemens Ladisch8301b912010-03-17 11:07:55 +0100246#define PCI_DEVICE_ID_TI_TSB12LV22 0x8009
247
Stefan Richter4a635592010-02-21 17:58:01 +0100248#define QUIRK_CYCLE_TIMER 1
249#define QUIRK_RESET_PACKET 2
250#define QUIRK_BE_HEADERS 4
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200251#define QUIRK_NO_1394A 8
Clemens Ladisch262444e2010-06-05 12:31:25 +0200252#define QUIRK_NO_MSI 16
Stefan Richter4a635592010-02-21 17:58:01 +0100253
254/* In case of multiple matches in ohci_quirks[], only the first one is used. */
255static const struct {
256 unsigned short vendor, device, flags;
257} ohci_quirks[] = {
Clemens Ladisch8301b912010-03-17 11:07:55 +0100258 {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV22, QUIRK_CYCLE_TIMER |
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200259 QUIRK_RESET_PACKET |
260 QUIRK_NO_1394A},
Stefan Richter4a635592010-02-21 17:58:01 +0100261 {PCI_VENDOR_ID_TI, PCI_ANY_ID, QUIRK_RESET_PACKET},
262 {PCI_VENDOR_ID_AL, PCI_ANY_ID, QUIRK_CYCLE_TIMER},
Clemens Ladisch262444e2010-06-05 12:31:25 +0200263 {PCI_VENDOR_ID_JMICRON, PCI_DEVICE_ID_JMICRON_JMB38X_FW, QUIRK_NO_MSI},
Stefan Richter4a635592010-02-21 17:58:01 +0100264 {PCI_VENDOR_ID_NEC, PCI_ANY_ID, QUIRK_CYCLE_TIMER},
265 {PCI_VENDOR_ID_VIA, PCI_ANY_ID, QUIRK_CYCLE_TIMER},
266 {PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_FW, QUIRK_BE_HEADERS},
267};
268
Stefan Richter3e9cc2f2010-02-21 17:58:29 +0100269/* This overrides anything that was found in ohci_quirks[]. */
270static int param_quirks;
271module_param_named(quirks, param_quirks, int, 0644);
272MODULE_PARM_DESC(quirks, "Chip quirks (default = 0"
273 ", nonatomic cycle timer = " __stringify(QUIRK_CYCLE_TIMER)
274 ", reset packet generation = " __stringify(QUIRK_RESET_PACKET)
275 ", AR/selfID endianess = " __stringify(QUIRK_BE_HEADERS)
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200276 ", no 1394a enhancements = " __stringify(QUIRK_NO_1394A)
Clemens Ladisch262444e2010-06-05 12:31:25 +0200277 ", disable MSI = " __stringify(QUIRK_NO_MSI)
Stefan Richter3e9cc2f2010-02-21 17:58:29 +0100278 ")");
279
Stefan Richtera007bb82008-04-07 22:33:35 +0200280#define OHCI_PARAM_DEBUG_AT_AR 1
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100281#define OHCI_PARAM_DEBUG_SELFIDS 2
Stefan Richtera007bb82008-04-07 22:33:35 +0200282#define OHCI_PARAM_DEBUG_IRQS 4
283#define OHCI_PARAM_DEBUG_BUSRESETS 8 /* only effective before chip init */
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100284
Stefan Richter5da3dac2010-04-02 14:05:02 +0200285#ifdef CONFIG_FIREWIRE_OHCI_DEBUG
286
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100287static int param_debug;
288module_param_named(debug, param_debug, int, 0644);
289MODULE_PARM_DESC(debug, "Verbose logging (default = 0"
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100290 ", AT/AR events = " __stringify(OHCI_PARAM_DEBUG_AT_AR)
Stefan Richtera007bb82008-04-07 22:33:35 +0200291 ", self-IDs = " __stringify(OHCI_PARAM_DEBUG_SELFIDS)
292 ", IRQs = " __stringify(OHCI_PARAM_DEBUG_IRQS)
293 ", busReset events = " __stringify(OHCI_PARAM_DEBUG_BUSRESETS)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100294 ", or a combination, or all = -1)");
295
296static void log_irqs(u32 evt)
297{
Stefan Richtera007bb82008-04-07 22:33:35 +0200298 if (likely(!(param_debug &
299 (OHCI_PARAM_DEBUG_IRQS | OHCI_PARAM_DEBUG_BUSRESETS))))
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100300 return;
301
Stefan Richtera007bb82008-04-07 22:33:35 +0200302 if (!(param_debug & OHCI_PARAM_DEBUG_IRQS) &&
303 !(evt & OHCI1394_busReset))
304 return;
305
Clemens Ladischa48777e2010-06-10 08:33:07 +0200306 fw_notify("IRQ %08x%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", evt,
Stefan Richter161b96e2008-06-14 14:23:43 +0200307 evt & OHCI1394_selfIDComplete ? " selfID" : "",
308 evt & OHCI1394_RQPkt ? " AR_req" : "",
309 evt & OHCI1394_RSPkt ? " AR_resp" : "",
310 evt & OHCI1394_reqTxComplete ? " AT_req" : "",
311 evt & OHCI1394_respTxComplete ? " AT_resp" : "",
312 evt & OHCI1394_isochRx ? " IR" : "",
313 evt & OHCI1394_isochTx ? " IT" : "",
314 evt & OHCI1394_postedWriteErr ? " postedWriteErr" : "",
315 evt & OHCI1394_cycleTooLong ? " cycleTooLong" : "",
Clemens Ladischa48777e2010-06-10 08:33:07 +0200316 evt & OHCI1394_cycle64Seconds ? " cycle64Seconds" : "",
Jay Fenlason5ed1f322009-11-17 12:29:17 -0500317 evt & OHCI1394_cycleInconsistent ? " cycleInconsistent" : "",
Stefan Richter161b96e2008-06-14 14:23:43 +0200318 evt & OHCI1394_regAccessFail ? " regAccessFail" : "",
319 evt & OHCI1394_busReset ? " busReset" : "",
320 evt & ~(OHCI1394_selfIDComplete | OHCI1394_RQPkt |
321 OHCI1394_RSPkt | OHCI1394_reqTxComplete |
322 OHCI1394_respTxComplete | OHCI1394_isochRx |
323 OHCI1394_isochTx | OHCI1394_postedWriteErr |
Clemens Ladischa48777e2010-06-10 08:33:07 +0200324 OHCI1394_cycleTooLong | OHCI1394_cycle64Seconds |
325 OHCI1394_cycleInconsistent |
Stefan Richter161b96e2008-06-14 14:23:43 +0200326 OHCI1394_regAccessFail | OHCI1394_busReset)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100327 ? " ?" : "");
328}
329
330static const char *speed[] = {
331 [0] = "S100", [1] = "S200", [2] = "S400", [3] = "beta",
332};
333static const char *power[] = {
334 [0] = "+0W", [1] = "+15W", [2] = "+30W", [3] = "+45W",
335 [4] = "-3W", [5] = " ?W", [6] = "-3..-6W", [7] = "-3..-10W",
336};
337static const char port[] = { '.', '-', 'p', 'c', };
338
339static char _p(u32 *s, int shift)
340{
341 return port[*s >> shift & 3];
342}
343
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200344static void log_selfids(int node_id, int generation, int self_id_count, u32 *s)
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100345{
346 if (likely(!(param_debug & OHCI_PARAM_DEBUG_SELFIDS)))
347 return;
348
Stefan Richter161b96e2008-06-14 14:23:43 +0200349 fw_notify("%d selfIDs, generation %d, local node ID %04x\n",
350 self_id_count, generation, node_id);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100351
352 for (; self_id_count--; ++s)
353 if ((*s & 1 << 23) == 0)
Stefan Richter161b96e2008-06-14 14:23:43 +0200354 fw_notify("selfID 0: %08x, phy %d [%c%c%c] "
355 "%s gc=%d %s %s%s%s\n",
356 *s, *s >> 24 & 63, _p(s, 6), _p(s, 4), _p(s, 2),
357 speed[*s >> 14 & 3], *s >> 16 & 63,
358 power[*s >> 8 & 7], *s >> 22 & 1 ? "L" : "",
359 *s >> 11 & 1 ? "c" : "", *s & 2 ? "i" : "");
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100360 else
Stefan Richter161b96e2008-06-14 14:23:43 +0200361 fw_notify("selfID n: %08x, phy %d [%c%c%c%c%c%c%c%c]\n",
362 *s, *s >> 24 & 63,
363 _p(s, 16), _p(s, 14), _p(s, 12), _p(s, 10),
364 _p(s, 8), _p(s, 6), _p(s, 4), _p(s, 2));
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100365}
366
367static const char *evts[] = {
368 [0x00] = "evt_no_status", [0x01] = "-reserved-",
369 [0x02] = "evt_long_packet", [0x03] = "evt_missing_ack",
370 [0x04] = "evt_underrun", [0x05] = "evt_overrun",
371 [0x06] = "evt_descriptor_read", [0x07] = "evt_data_read",
372 [0x08] = "evt_data_write", [0x09] = "evt_bus_reset",
373 [0x0a] = "evt_timeout", [0x0b] = "evt_tcode_err",
374 [0x0c] = "-reserved-", [0x0d] = "-reserved-",
375 [0x0e] = "evt_unknown", [0x0f] = "evt_flushed",
376 [0x10] = "-reserved-", [0x11] = "ack_complete",
377 [0x12] = "ack_pending ", [0x13] = "-reserved-",
378 [0x14] = "ack_busy_X", [0x15] = "ack_busy_A",
379 [0x16] = "ack_busy_B", [0x17] = "-reserved-",
380 [0x18] = "-reserved-", [0x19] = "-reserved-",
381 [0x1a] = "-reserved-", [0x1b] = "ack_tardy",
382 [0x1c] = "-reserved-", [0x1d] = "ack_data_error",
383 [0x1e] = "ack_type_error", [0x1f] = "-reserved-",
384 [0x20] = "pending/cancelled",
385};
386static const char *tcodes[] = {
387 [0x0] = "QW req", [0x1] = "BW req",
388 [0x2] = "W resp", [0x3] = "-reserved-",
389 [0x4] = "QR req", [0x5] = "BR req",
390 [0x6] = "QR resp", [0x7] = "BR resp",
391 [0x8] = "cycle start", [0x9] = "Lk req",
392 [0xa] = "async stream packet", [0xb] = "Lk resp",
393 [0xc] = "-reserved-", [0xd] = "-reserved-",
394 [0xe] = "link internal", [0xf] = "-reserved-",
395};
396static const char *phys[] = {
397 [0x0] = "phy config packet", [0x1] = "link-on packet",
398 [0x2] = "self-id packet", [0x3] = "-reserved-",
399};
400
401static void log_ar_at_event(char dir, int speed, u32 *header, int evt)
402{
403 int tcode = header[0] >> 4 & 0xf;
404 char specific[12];
405
406 if (likely(!(param_debug & OHCI_PARAM_DEBUG_AT_AR)))
407 return;
408
409 if (unlikely(evt >= ARRAY_SIZE(evts)))
410 evt = 0x1f;
411
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200412 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter161b96e2008-06-14 14:23:43 +0200413 fw_notify("A%c evt_bus_reset, generation %d\n",
414 dir, (header[2] >> 16) & 0xff);
Stefan Richter08ddb2f2008-04-11 00:51:15 +0200415 return;
416 }
417
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100418 if (header[0] == ~header[1]) {
Stefan Richter161b96e2008-06-14 14:23:43 +0200419 fw_notify("A%c %s, %s, %08x\n",
420 dir, evts[evt], phys[header[0] >> 30 & 0x3], header[0]);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100421 return;
422 }
423
424 switch (tcode) {
425 case 0x0: case 0x6: case 0x8:
426 snprintf(specific, sizeof(specific), " = %08x",
427 be32_to_cpu((__force __be32)header[3]));
428 break;
429 case 0x1: case 0x5: case 0x7: case 0x9: case 0xb:
430 snprintf(specific, sizeof(specific), " %x,%x",
431 header[3] >> 16, header[3] & 0xffff);
432 break;
433 default:
434 specific[0] = '\0';
435 }
436
437 switch (tcode) {
438 case 0xe: case 0xa:
Stefan Richter161b96e2008-06-14 14:23:43 +0200439 fw_notify("A%c %s, %s\n", dir, evts[evt], tcodes[tcode]);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100440 break;
441 case 0x0: case 0x1: case 0x4: case 0x5: case 0x9:
Stefan Richter161b96e2008-06-14 14:23:43 +0200442 fw_notify("A%c spd %x tl %02x, "
443 "%04x -> %04x, %s, "
444 "%s, %04x%08x%s\n",
445 dir, speed, header[0] >> 10 & 0x3f,
446 header[1] >> 16, header[0] >> 16, evts[evt],
447 tcodes[tcode], header[1] & 0xffff, header[2], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100448 break;
449 default:
Stefan Richter161b96e2008-06-14 14:23:43 +0200450 fw_notify("A%c spd %x tl %02x, "
451 "%04x -> %04x, %s, "
452 "%s%s\n",
453 dir, speed, header[0] >> 10 & 0x3f,
454 header[1] >> 16, header[0] >> 16, evts[evt],
455 tcodes[tcode], specific);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100456 }
457}
458
459#else
460
Stefan Richter5da3dac2010-04-02 14:05:02 +0200461#define param_debug 0
462static inline void log_irqs(u32 evt) {}
463static inline void log_selfids(int node_id, int generation, int self_id_count, u32 *s) {}
464static inline void log_ar_at_event(char dir, int speed, u32 *header, int evt) {}
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100465
466#endif /* CONFIG_FIREWIRE_OHCI_DEBUG */
467
Adrian Bunk95688e92007-01-22 19:17:37 +0100468static inline void reg_write(const struct fw_ohci *ohci, int offset, u32 data)
Kristian Høgsberged568912006-12-19 19:58:35 -0500469{
470 writel(data, ohci->registers + offset);
471}
472
Adrian Bunk95688e92007-01-22 19:17:37 +0100473static inline u32 reg_read(const struct fw_ohci *ohci, int offset)
Kristian Høgsberged568912006-12-19 19:58:35 -0500474{
475 return readl(ohci->registers + offset);
476}
477
Adrian Bunk95688e92007-01-22 19:17:37 +0100478static inline void flush_writes(const struct fw_ohci *ohci)
Kristian Høgsberged568912006-12-19 19:58:35 -0500479{
480 /* Do a dummy read to flush writes. */
481 reg_read(ohci, OHCI1394_Version);
482}
483
Stefan Richter35d999b2010-04-10 16:04:56 +0200484static int read_phy_reg(struct fw_ohci *ohci, int addr)
Kristian Høgsberged568912006-12-19 19:58:35 -0500485{
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200486 u32 val;
Stefan Richter35d999b2010-04-10 16:04:56 +0200487 int i;
Kristian Høgsberged568912006-12-19 19:58:35 -0500488
489 reg_write(ohci, OHCI1394_PhyControl, OHCI1394_PhyControl_Read(addr));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200490 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200491 val = reg_read(ohci, OHCI1394_PhyControl);
492 if (val & OHCI1394_PhyControl_ReadDone)
493 return OHCI1394_PhyControl_ReadData(val);
494
Clemens Ladisch153e3972010-06-10 08:22:07 +0200495 /*
496 * Try a few times without waiting. Sleeping is necessary
497 * only when the link/PHY interface is busy.
498 */
499 if (i >= 3)
500 msleep(1);
Kristian Høgsberged568912006-12-19 19:58:35 -0500501 }
Stefan Richter35d999b2010-04-10 16:04:56 +0200502 fw_error("failed to read phy reg\n");
Kristian Høgsberged568912006-12-19 19:58:35 -0500503
Stefan Richter35d999b2010-04-10 16:04:56 +0200504 return -EBUSY;
505}
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200506
Stefan Richter35d999b2010-04-10 16:04:56 +0200507static int write_phy_reg(const struct fw_ohci *ohci, int addr, u32 val)
508{
509 int i;
510
511 reg_write(ohci, OHCI1394_PhyControl,
512 OHCI1394_PhyControl_Write(addr, val));
Clemens Ladisch153e3972010-06-10 08:22:07 +0200513 for (i = 0; i < 3 + 100; i++) {
Stefan Richter35d999b2010-04-10 16:04:56 +0200514 val = reg_read(ohci, OHCI1394_PhyControl);
515 if (!(val & OHCI1394_PhyControl_WritePending))
516 return 0;
517
Clemens Ladisch153e3972010-06-10 08:22:07 +0200518 if (i >= 3)
519 msleep(1);
Stefan Richter35d999b2010-04-10 16:04:56 +0200520 }
521 fw_error("failed to write phy reg\n");
522
523 return -EBUSY;
Clemens Ladisch4a96b4f2010-04-04 15:19:52 +0200524}
525
Stefan Richter02d37be2010-07-08 16:09:06 +0200526static int update_phy_reg(struct fw_ohci *ohci, int addr,
527 int clear_bits, int set_bits)
Kristian Høgsberged568912006-12-19 19:58:35 -0500528{
Stefan Richter02d37be2010-07-08 16:09:06 +0200529 int ret = read_phy_reg(ohci, addr);
Stefan Richter35d999b2010-04-10 16:04:56 +0200530 if (ret < 0)
531 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500532
Clemens Ladische7014da2010-04-01 16:40:18 +0200533 /*
534 * The interrupt status bits are cleared by writing a one bit.
535 * Avoid clearing them unless explicitly requested in set_bits.
536 */
537 if (addr == 5)
538 clear_bits |= PHY_INT_STATUS_BITS;
Kristian Høgsberged568912006-12-19 19:58:35 -0500539
Stefan Richter35d999b2010-04-10 16:04:56 +0200540 return write_phy_reg(ohci, addr, (ret & ~clear_bits) | set_bits);
Kristian Høgsberged568912006-12-19 19:58:35 -0500541}
542
Stefan Richter35d999b2010-04-10 16:04:56 +0200543static int read_paged_phy_reg(struct fw_ohci *ohci, int page, int addr)
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200544{
Stefan Richter35d999b2010-04-10 16:04:56 +0200545 int ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200546
Stefan Richter02d37be2010-07-08 16:09:06 +0200547 ret = update_phy_reg(ohci, 7, PHY_PAGE_SELECT, page << 5);
Stefan Richter35d999b2010-04-10 16:04:56 +0200548 if (ret < 0)
549 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +0200550
Stefan Richter35d999b2010-04-10 16:04:56 +0200551 return read_phy_reg(ohci, addr);
Kristian Høgsberged568912006-12-19 19:58:35 -0500552}
553
Stefan Richter02d37be2010-07-08 16:09:06 +0200554static int ohci_read_phy_reg(struct fw_card *card, int addr)
555{
556 struct fw_ohci *ohci = fw_ohci(card);
557 int ret;
558
559 mutex_lock(&ohci->phy_reg_mutex);
560 ret = read_phy_reg(ohci, addr);
561 mutex_unlock(&ohci->phy_reg_mutex);
562
563 return ret;
564}
565
Kristian Høgsberged568912006-12-19 19:58:35 -0500566static int ohci_update_phy_reg(struct fw_card *card, int addr,
567 int clear_bits, int set_bits)
568{
569 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter02d37be2010-07-08 16:09:06 +0200570 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500571
Stefan Richter02d37be2010-07-08 16:09:06 +0200572 mutex_lock(&ohci->phy_reg_mutex);
573 ret = update_phy_reg(ohci, addr, clear_bits, set_bits);
574 mutex_unlock(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -0500575
Stefan Richter02d37be2010-07-08 16:09:06 +0200576 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -0500577}
578
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500579static int ar_context_add_page(struct ar_context *ctx)
Kristian Høgsberged568912006-12-19 19:58:35 -0500580{
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500581 struct device *dev = ctx->ohci->card.device;
582 struct ar_buffer *ab;
Stefan Richterf5101d582008-03-14 00:27:49 +0100583 dma_addr_t uninitialized_var(ab_bus);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500584 size_t offset;
585
Jarod Wilsonbde17092008-03-12 17:43:26 -0400586 ab = dma_alloc_coherent(dev, PAGE_SIZE, &ab_bus, GFP_ATOMIC);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500587 if (ab == NULL)
588 return -ENOMEM;
589
Jay Fenlasona55709b2008-10-22 15:59:42 -0400590 ab->next = NULL;
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400591 memset(&ab->descriptor, 0, sizeof(ab->descriptor));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400592 ab->descriptor.control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
593 DESCRIPTOR_STATUS |
594 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500595 offset = offsetof(struct ar_buffer, data);
596 ab->descriptor.req_count = cpu_to_le16(PAGE_SIZE - offset);
597 ab->descriptor.data_address = cpu_to_le32(ab_bus + offset);
598 ab->descriptor.res_count = cpu_to_le16(PAGE_SIZE - offset);
599 ab->descriptor.branch_address = 0;
600
Stefan Richter071595e2010-07-27 13:20:33 +0200601 wmb(); /* finish init of new descriptors before branch_address update */
Kristian Høgsbergec839e42007-05-22 18:55:48 -0400602 ctx->last_buffer->descriptor.branch_address = cpu_to_le32(ab_bus | 1);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500603 ctx->last_buffer->next = ab;
604 ctx->last_buffer = ab;
605
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400606 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Kristian Høgsberged568912006-12-19 19:58:35 -0500607 flush_writes(ctx->ohci);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500608
609 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -0500610}
611
Jay Fenlasona55709b2008-10-22 15:59:42 -0400612static void ar_context_release(struct ar_context *ctx)
613{
614 struct ar_buffer *ab, *ab_next;
615 size_t offset;
616 dma_addr_t ab_bus;
617
618 for (ab = ctx->current_buffer; ab; ab = ab_next) {
619 ab_next = ab->next;
620 offset = offsetof(struct ar_buffer, data);
621 ab_bus = le32_to_cpu(ab->descriptor.data_address) - offset;
622 dma_free_coherent(ctx->ohci->card.device, PAGE_SIZE,
623 ab, ab_bus);
624 }
625}
626
Stefan Richter11bf20a2008-03-01 02:47:15 +0100627#if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
628#define cond_le32_to_cpu(v) \
Stefan Richter4a635592010-02-21 17:58:01 +0100629 (ohci->quirks & QUIRK_BE_HEADERS ? (__force __u32)(v) : le32_to_cpu(v))
Stefan Richter11bf20a2008-03-01 02:47:15 +0100630#else
631#define cond_le32_to_cpu(v) le32_to_cpu(v)
632#endif
633
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500634static __le32 *handle_ar_packet(struct ar_context *ctx, __le32 *buffer)
Kristian Høgsberged568912006-12-19 19:58:35 -0500635{
Kristian Høgsberged568912006-12-19 19:58:35 -0500636 struct fw_ohci *ohci = ctx->ohci;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500637 struct fw_packet p;
638 u32 status, length, tcode;
Stefan Richter43286562008-03-11 21:22:26 +0100639 int evt;
Kristian Høgsberg0edeefd2007-01-26 00:38:49 -0500640
Stefan Richter11bf20a2008-03-01 02:47:15 +0100641 p.header[0] = cond_le32_to_cpu(buffer[0]);
642 p.header[1] = cond_le32_to_cpu(buffer[1]);
643 p.header[2] = cond_le32_to_cpu(buffer[2]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500644
645 tcode = (p.header[0] >> 4) & 0x0f;
646 switch (tcode) {
647 case TCODE_WRITE_QUADLET_REQUEST:
648 case TCODE_READ_QUADLET_RESPONSE:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500649 p.header[3] = (__force __u32) buffer[3];
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500650 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500651 p.payload_length = 0;
652 break;
653
654 case TCODE_READ_BLOCK_REQUEST :
Stefan Richter11bf20a2008-03-01 02:47:15 +0100655 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500656 p.header_length = 16;
657 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500658 break;
659
660 case TCODE_WRITE_BLOCK_REQUEST:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500661 case TCODE_READ_BLOCK_RESPONSE:
662 case TCODE_LOCK_REQUEST:
663 case TCODE_LOCK_RESPONSE:
Stefan Richter11bf20a2008-03-01 02:47:15 +0100664 p.header[3] = cond_le32_to_cpu(buffer[3]);
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500665 p.header_length = 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500666 p.payload_length = p.header[3] >> 16;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500667 break;
668
669 case TCODE_WRITE_RESPONSE:
670 case TCODE_READ_QUADLET_REQUEST:
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500671 case OHCI_TCODE_PHY_PACKET:
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500672 p.header_length = 12;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500673 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500674 break;
Stefan Richterccff9622008-05-31 19:36:06 +0200675
676 default:
677 /* FIXME: Stop context, discard everything, and restart? */
678 p.header_length = 0;
679 p.payload_length = 0;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500680 }
681
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500682 p.payload = (void *) buffer + p.header_length;
683
684 /* FIXME: What to do about evt_* errors? */
685 length = (p.header_length + p.payload_length + 3) / 4;
Stefan Richter11bf20a2008-03-01 02:47:15 +0100686 status = cond_le32_to_cpu(buffer[length]);
Stefan Richter43286562008-03-11 21:22:26 +0100687 evt = (status >> 16) & 0x1f;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500688
Stefan Richter43286562008-03-11 21:22:26 +0100689 p.ack = evt - 16;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500690 p.speed = (status >> 21) & 0x7;
691 p.timestamp = status & 0xffff;
692 p.generation = ohci->request_generation;
Kristian Høgsberged568912006-12-19 19:58:35 -0500693
Stefan Richter43286562008-03-11 21:22:26 +0100694 log_ar_at_event('R', p.speed, p.header, evt);
Stefan Richterad3c0fe2008-03-20 22:04:36 +0100695
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400696 /*
Stefan Richtera4dc0902010-08-28 14:21:26 +0200697 * Several controllers, notably from NEC and VIA, forget to
698 * write ack_complete status at PHY packet reception.
699 */
700 if (evt == OHCI1394_evt_no_status &&
701 (p.header[0] & 0xff) == (OHCI1394_phy_tcode << 4))
702 p.ack = ACK_COMPLETE;
703
704 /*
705 * The OHCI bus reset handler synthesizes a PHY packet with
Kristian Høgsberged568912006-12-19 19:58:35 -0500706 * the new generation number when a bus reset happens (see
707 * section 8.4.2.3). This helps us determine when a request
708 * was received and make sure we send the response in the same
709 * generation. We only need this for requests; for responses
710 * we use the unique tlabel for finding the matching
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400711 * request.
Stefan Richterd34316a2008-04-12 22:31:25 +0200712 *
713 * Alas some chips sometimes emit bus reset packets with a
714 * wrong generation. We set the correct generation for these
715 * at a slightly incorrect time (in bus_reset_tasklet).
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400716 */
Stefan Richterd34316a2008-04-12 22:31:25 +0200717 if (evt == OHCI1394_evt_bus_reset) {
Stefan Richter4a635592010-02-21 17:58:01 +0100718 if (!(ohci->quirks & QUIRK_RESET_PACKET))
Stefan Richterd34316a2008-04-12 22:31:25 +0200719 ohci->request_generation = (p.header[2] >> 16) & 0xff;
720 } else if (ctx == &ohci->ar_request_ctx) {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500721 fw_core_handle_request(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200722 } else {
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500723 fw_core_handle_response(&ohci->card, &p);
Stefan Richterd34316a2008-04-12 22:31:25 +0200724 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500725
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500726 return buffer + length + 1;
727}
Kristian Høgsberged568912006-12-19 19:58:35 -0500728
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500729static void ar_context_tasklet(unsigned long data)
730{
731 struct ar_context *ctx = (struct ar_context *)data;
732 struct fw_ohci *ohci = ctx->ohci;
733 struct ar_buffer *ab;
734 struct descriptor *d;
735 void *buffer, *end;
Kristian Høgsberged568912006-12-19 19:58:35 -0500736
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500737 ab = ctx->current_buffer;
738 d = &ab->descriptor;
Kristian Høgsberged568912006-12-19 19:58:35 -0500739
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500740 if (d->res_count == 0) {
741 size_t size, rest, offset;
Jarod Wilson6b842362008-03-25 16:47:16 -0400742 dma_addr_t start_bus;
743 void *start;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500744
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400745 /*
746 * This descriptor is finished and we may have a
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500747 * packet split across this and the next buffer. We
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400748 * reuse the page for reassembling the split packet.
749 */
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500750
751 offset = offsetof(struct ar_buffer, data);
Jarod Wilson6b842362008-03-25 16:47:16 -0400752 start = buffer = ab;
753 start_bus = le32_to_cpu(ab->descriptor.data_address) - offset;
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500754
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500755 ab = ab->next;
756 d = &ab->descriptor;
757 size = buffer + PAGE_SIZE - ctx->pointer;
758 rest = le16_to_cpu(d->req_count) - le16_to_cpu(d->res_count);
759 memmove(buffer, ctx->pointer, size);
760 memcpy(buffer + size, ab->data, rest);
761 ctx->current_buffer = ab;
762 ctx->pointer = (void *) ab->data + rest;
763 end = buffer + size + rest;
764
765 while (buffer < end)
766 buffer = handle_ar_packet(ctx, buffer);
767
Jarod Wilsonbde17092008-03-12 17:43:26 -0400768 dma_free_coherent(ohci->card.device, PAGE_SIZE,
Jarod Wilson6b842362008-03-25 16:47:16 -0400769 start, start_bus);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500770 ar_context_add_page(ctx);
771 } else {
772 buffer = ctx->pointer;
773 ctx->pointer = end =
774 (void *) ab + PAGE_SIZE - le16_to_cpu(d->res_count);
775
776 while (buffer < end)
777 buffer = handle_ar_packet(ctx, buffer);
778 }
Kristian Høgsberged568912006-12-19 19:58:35 -0500779}
780
Stefan Richter53dca512008-12-14 21:47:04 +0100781static int ar_context_init(struct ar_context *ctx,
782 struct fw_ohci *ohci, u32 regs)
Kristian Høgsberged568912006-12-19 19:58:35 -0500783{
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500784 struct ar_buffer ab;
Kristian Høgsberged568912006-12-19 19:58:35 -0500785
Kristian Høgsberg72e318e2007-02-06 14:49:31 -0500786 ctx->regs = regs;
787 ctx->ohci = ohci;
788 ctx->last_buffer = &ab;
Kristian Høgsberged568912006-12-19 19:58:35 -0500789 tasklet_init(&ctx->tasklet, ar_context_tasklet, (unsigned long)ctx);
790
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500791 ar_context_add_page(ctx);
792 ar_context_add_page(ctx);
793 ctx->current_buffer = ab.next;
794 ctx->pointer = ctx->current_buffer->data;
795
Kristian Høgsberg2aef4692007-05-30 19:06:35 -0400796 return 0;
797}
798
799static void ar_context_run(struct ar_context *ctx)
800{
801 struct ar_buffer *ab = ctx->current_buffer;
802 dma_addr_t ab_bus;
803 size_t offset;
804
805 offset = offsetof(struct ar_buffer, data);
Stefan Richter0a9972b2007-06-23 20:28:17 +0200806 ab_bus = le32_to_cpu(ab->descriptor.data_address) - offset;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -0400807
808 reg_write(ctx->ohci, COMMAND_PTR(ctx->regs), ab_bus | 1);
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400809 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN);
Kristian Høgsberg32b46092007-02-06 14:49:30 -0500810 flush_writes(ctx->ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -0500811}
Stefan Richter373b2ed2007-03-04 14:45:18 +0100812
Stefan Richter53dca512008-12-14 21:47:04 +0100813static struct descriptor *find_branch_descriptor(struct descriptor *d, int z)
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500814{
815 int b, key;
816
817 b = (le16_to_cpu(d->control) & DESCRIPTOR_BRANCH_ALWAYS) >> 2;
818 key = (le16_to_cpu(d->control) & DESCRIPTOR_KEY_IMMEDIATE) >> 8;
819
820 /* figure out which descriptor the branch address goes in */
821 if (z == 2 && (b == 3 || key == 2))
822 return d;
823 else
824 return d + z - 1;
825}
826
Kristian Høgsberg30200732007-02-16 17:34:39 -0500827static void context_tasklet(unsigned long data)
828{
829 struct context *ctx = (struct context *) data;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500830 struct descriptor *d, *last;
831 u32 address;
832 int z;
David Moorefe5ca632008-01-06 17:21:41 -0500833 struct descriptor_buffer *desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500834
David Moorefe5ca632008-01-06 17:21:41 -0500835 desc = list_entry(ctx->buffer_list.next,
836 struct descriptor_buffer, list);
837 last = ctx->last;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500838 while (last->branch_address != 0) {
David Moorefe5ca632008-01-06 17:21:41 -0500839 struct descriptor_buffer *old_desc = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500840 address = le32_to_cpu(last->branch_address);
841 z = address & 0xf;
David Moorefe5ca632008-01-06 17:21:41 -0500842 address &= ~0xf;
843
844 /* If the branch address points to a buffer outside of the
845 * current buffer, advance to the next buffer. */
846 if (address < desc->buffer_bus ||
847 address >= desc->buffer_bus + desc->used)
848 desc = list_entry(desc->list.next,
849 struct descriptor_buffer, list);
850 d = desc->buffer + (address - desc->buffer_bus) / sizeof(*d);
Jarod Wilsona186b4a2007-12-03 13:43:12 -0500851 last = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500852
853 if (!ctx->callback(ctx, d, last))
854 break;
855
David Moorefe5ca632008-01-06 17:21:41 -0500856 if (old_desc != desc) {
857 /* If we've advanced to the next buffer, move the
858 * previous buffer to the free list. */
859 unsigned long flags;
860 old_desc->used = 0;
861 spin_lock_irqsave(&ctx->ohci->lock, flags);
862 list_move_tail(&old_desc->list, &ctx->buffer_list);
863 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
864 }
865 ctx->last = last;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500866 }
867}
868
David Moorefe5ca632008-01-06 17:21:41 -0500869/*
870 * Allocate a new buffer and add it to the list of free buffers for this
871 * context. Must be called with ohci->lock held.
872 */
Stefan Richter53dca512008-12-14 21:47:04 +0100873static int context_add_buffer(struct context *ctx)
David Moorefe5ca632008-01-06 17:21:41 -0500874{
875 struct descriptor_buffer *desc;
Stefan Richterf5101d582008-03-14 00:27:49 +0100876 dma_addr_t uninitialized_var(bus_addr);
David Moorefe5ca632008-01-06 17:21:41 -0500877 int offset;
878
879 /*
880 * 16MB of descriptors should be far more than enough for any DMA
881 * program. This will catch run-away userspace or DoS attacks.
882 */
883 if (ctx->total_allocation >= 16*1024*1024)
884 return -ENOMEM;
885
886 desc = dma_alloc_coherent(ctx->ohci->card.device, PAGE_SIZE,
887 &bus_addr, GFP_ATOMIC);
888 if (!desc)
889 return -ENOMEM;
890
891 offset = (void *)&desc->buffer - (void *)desc;
892 desc->buffer_size = PAGE_SIZE - offset;
893 desc->buffer_bus = bus_addr + offset;
894 desc->used = 0;
895
896 list_add_tail(&desc->list, &ctx->buffer_list);
897 ctx->total_allocation += PAGE_SIZE;
898
899 return 0;
900}
901
Stefan Richter53dca512008-12-14 21:47:04 +0100902static int context_init(struct context *ctx, struct fw_ohci *ohci,
903 u32 regs, descriptor_callback_t callback)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500904{
905 ctx->ohci = ohci;
906 ctx->regs = regs;
David Moorefe5ca632008-01-06 17:21:41 -0500907 ctx->total_allocation = 0;
908
909 INIT_LIST_HEAD(&ctx->buffer_list);
910 if (context_add_buffer(ctx) < 0)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500911 return -ENOMEM;
912
David Moorefe5ca632008-01-06 17:21:41 -0500913 ctx->buffer_tail = list_entry(ctx->buffer_list.next,
914 struct descriptor_buffer, list);
915
Kristian Høgsberg30200732007-02-16 17:34:39 -0500916 tasklet_init(&ctx->tasklet, context_tasklet, (unsigned long)ctx);
917 ctx->callback = callback;
918
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400919 /*
920 * We put a dummy descriptor in the buffer that has a NULL
Kristian Høgsberg30200732007-02-16 17:34:39 -0500921 * branch address and looks like it's been sent. That way we
David Moorefe5ca632008-01-06 17:21:41 -0500922 * have a descriptor to append DMA programs to.
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400923 */
David Moorefe5ca632008-01-06 17:21:41 -0500924 memset(ctx->buffer_tail->buffer, 0, sizeof(*ctx->buffer_tail->buffer));
925 ctx->buffer_tail->buffer->control = cpu_to_le16(DESCRIPTOR_OUTPUT_LAST);
926 ctx->buffer_tail->buffer->transfer_status = cpu_to_le16(0x8011);
927 ctx->buffer_tail->used += sizeof(*ctx->buffer_tail->buffer);
928 ctx->last = ctx->buffer_tail->buffer;
929 ctx->prev = ctx->buffer_tail->buffer;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500930
931 return 0;
932}
933
Stefan Richter53dca512008-12-14 21:47:04 +0100934static void context_release(struct context *ctx)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500935{
936 struct fw_card *card = &ctx->ohci->card;
David Moorefe5ca632008-01-06 17:21:41 -0500937 struct descriptor_buffer *desc, *tmp;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500938
David Moorefe5ca632008-01-06 17:21:41 -0500939 list_for_each_entry_safe(desc, tmp, &ctx->buffer_list, list)
940 dma_free_coherent(card->device, PAGE_SIZE, desc,
941 desc->buffer_bus -
942 ((void *)&desc->buffer - (void *)desc));
Kristian Høgsberg30200732007-02-16 17:34:39 -0500943}
944
David Moorefe5ca632008-01-06 17:21:41 -0500945/* Must be called with ohci->lock held */
Stefan Richter53dca512008-12-14 21:47:04 +0100946static struct descriptor *context_get_descriptors(struct context *ctx,
947 int z, dma_addr_t *d_bus)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500948{
David Moorefe5ca632008-01-06 17:21:41 -0500949 struct descriptor *d = NULL;
950 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500951
David Moorefe5ca632008-01-06 17:21:41 -0500952 if (z * sizeof(*d) > desc->buffer_size)
953 return NULL;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500954
David Moorefe5ca632008-01-06 17:21:41 -0500955 if (z * sizeof(*d) > desc->buffer_size - desc->used) {
956 /* No room for the descriptor in this buffer, so advance to the
957 * next one. */
958
959 if (desc->list.next == &ctx->buffer_list) {
960 /* If there is no free buffer next in the list,
961 * allocate one. */
962 if (context_add_buffer(ctx) < 0)
963 return NULL;
964 }
965 desc = list_entry(desc->list.next,
966 struct descriptor_buffer, list);
967 ctx->buffer_tail = desc;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500968 }
969
David Moorefe5ca632008-01-06 17:21:41 -0500970 d = desc->buffer + desc->used / sizeof(*d);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400971 memset(d, 0, z * sizeof(*d));
David Moorefe5ca632008-01-06 17:21:41 -0500972 *d_bus = desc->buffer_bus + desc->used;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500973
974 return d;
975}
976
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500977static void context_run(struct context *ctx, u32 extra)
Kristian Høgsberg30200732007-02-16 17:34:39 -0500978{
979 struct fw_ohci *ohci = ctx->ohci;
980
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400981 reg_write(ohci, COMMAND_PTR(ctx->regs),
David Moorefe5ca632008-01-06 17:21:41 -0500982 le32_to_cpu(ctx->last->branch_address));
Kristian Høgsberga77754a2007-05-07 20:33:35 -0400983 reg_write(ohci, CONTROL_CLEAR(ctx->regs), ~0);
984 reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN | extra);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500985 flush_writes(ohci);
986}
987
988static void context_append(struct context *ctx,
989 struct descriptor *d, int z, int extra)
990{
991 dma_addr_t d_bus;
David Moorefe5ca632008-01-06 17:21:41 -0500992 struct descriptor_buffer *desc = ctx->buffer_tail;
Kristian Høgsberg30200732007-02-16 17:34:39 -0500993
David Moorefe5ca632008-01-06 17:21:41 -0500994 d_bus = desc->buffer_bus + (d - desc->buffer) * sizeof(*d);
Kristian Høgsberg30200732007-02-16 17:34:39 -0500995
David Moorefe5ca632008-01-06 17:21:41 -0500996 desc->used += (z + extra) * sizeof(*d);
Stefan Richter071595e2010-07-27 13:20:33 +0200997
998 wmb(); /* finish init of new descriptors before branch_address update */
David Moorefe5ca632008-01-06 17:21:41 -0500999 ctx->prev->branch_address = cpu_to_le32(d_bus | z);
1000 ctx->prev = find_branch_descriptor(d, z);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001001
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001002 reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001003 flush_writes(ctx->ohci);
1004}
1005
1006static void context_stop(struct context *ctx)
1007{
1008 u32 reg;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001009 int i;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001010
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001011 reg_write(ctx->ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001012 flush_writes(ctx->ohci);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001013
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001014 for (i = 0; i < 10; i++) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001015 reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs));
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001016 if ((reg & CONTEXT_ACTIVE) == 0)
Stefan Richterb0068542009-01-05 20:43:23 +01001017 return;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001018
Stefan Richterb980f5a2007-07-12 22:25:14 +02001019 mdelay(1);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001020 }
Stefan Richterb0068542009-01-05 20:43:23 +01001021 fw_error("Error: DMA context still active (0x%08x)\n", reg);
Kristian Høgsberg30200732007-02-16 17:34:39 -05001022}
Kristian Høgsberged568912006-12-19 19:58:35 -05001023
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001024struct driver_data {
Kristian Høgsberged568912006-12-19 19:58:35 -05001025 struct fw_packet *packet;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001026};
1027
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001028/*
1029 * This function apppends a packet to the DMA queue for transmission.
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001030 * Must always be called with the ochi->lock held to ensure proper
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001031 * generation handling and locking around packet queue manipulation.
1032 */
Stefan Richter53dca512008-12-14 21:47:04 +01001033static int at_context_queue_packet(struct context *ctx,
1034 struct fw_packet *packet)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001035{
Kristian Høgsberged568912006-12-19 19:58:35 -05001036 struct fw_ohci *ohci = ctx->ohci;
Stefan Richter4b6d51e2007-10-21 11:20:07 +02001037 dma_addr_t d_bus, uninitialized_var(payload_bus);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001038 struct driver_data *driver_data;
1039 struct descriptor *d, *last;
1040 __le32 *header;
Kristian Høgsberged568912006-12-19 19:58:35 -05001041 int z, tcode;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001042 u32 reg;
Kristian Høgsberged568912006-12-19 19:58:35 -05001043
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001044 d = context_get_descriptors(ctx, 4, &d_bus);
1045 if (d == NULL) {
1046 packet->ack = RCODE_SEND_ERROR;
1047 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001048 }
1049
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001050 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001051 d[0].res_count = cpu_to_le16(packet->timestamp);
1052
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001053 /*
1054 * The DMA format for asyncronous link packets is different
Kristian Høgsberged568912006-12-19 19:58:35 -05001055 * from the IEEE1394 layout, so shift the fields around
1056 * accordingly. If header_length is 8, it's a PHY packet, to
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001057 * which we need to prepend an extra quadlet.
1058 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001059
1060 header = (__le32 *) &d[1];
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001061 switch (packet->header_length) {
1062 case 16:
1063 case 12:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001064 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1065 (packet->speed << 16));
1066 header[1] = cpu_to_le32((packet->header[1] & 0xffff) |
1067 (packet->header[0] & 0xffff0000));
1068 header[2] = cpu_to_le32(packet->header[2]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001069
1070 tcode = (packet->header[0] >> 4) & 0x0f;
1071 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001072 header[3] = cpu_to_le32(packet->header[3]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001073 else
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001074 header[3] = (__force __le32) packet->header[3];
1075
1076 d[0].req_count = cpu_to_le16(packet->header_length);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001077 break;
1078
1079 case 8:
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001080 header[0] = cpu_to_le32((OHCI1394_phy_tcode << 4) |
1081 (packet->speed << 16));
1082 header[1] = cpu_to_le32(packet->header[0]);
1083 header[2] = cpu_to_le32(packet->header[1]);
1084 d[0].req_count = cpu_to_le16(12);
Stefan Richtercc550212010-07-18 13:00:50 +02001085
1086 if (is_ping_packet(packet->header))
1087 d[0].control |= cpu_to_le16(DESCRIPTOR_PING);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001088 break;
1089
1090 case 4:
1091 header[0] = cpu_to_le32((packet->header[0] & 0xffff) |
1092 (packet->speed << 16));
1093 header[1] = cpu_to_le32(packet->header[0] & 0xffff0000);
1094 d[0].req_count = cpu_to_le16(8);
1095 break;
1096
1097 default:
1098 /* BUG(); */
1099 packet->ack = RCODE_SEND_ERROR;
1100 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001101 }
1102
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001103 driver_data = (struct driver_data *) &d[3];
1104 driver_data->packet = packet;
Kristian Høgsberg20d11672007-03-26 19:18:19 -04001105 packet->driver_data = driver_data;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001106
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001107 if (packet->payload_length > 0) {
1108 payload_bus =
1109 dma_map_single(ohci->card.device, packet->payload,
1110 packet->payload_length, DMA_TO_DEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -07001111 if (dma_mapping_error(ohci->card.device, payload_bus)) {
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001112 packet->ack = RCODE_SEND_ERROR;
1113 return -1;
1114 }
Stefan Richter19593ff2009-10-14 20:40:10 +02001115 packet->payload_bus = payload_bus;
1116 packet->payload_mapped = true;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001117
1118 d[2].req_count = cpu_to_le16(packet->payload_length);
1119 d[2].data_address = cpu_to_le32(payload_bus);
1120 last = &d[2];
1121 z = 3;
1122 } else {
1123 last = &d[0];
1124 z = 2;
1125 }
1126
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001127 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
1128 DESCRIPTOR_IRQ_ALWAYS |
1129 DESCRIPTOR_BRANCH_ALWAYS);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001130
Jarod Wilson76f73ca2008-04-07 22:32:33 +02001131 /*
1132 * If the controller and packet generations don't match, we need to
1133 * bail out and try again. If IntEvent.busReset is set, the AT context
1134 * is halted, so appending to the context and trying to run it is
1135 * futile. Most controllers do the right thing and just flush the AT
1136 * queue (per section 7.2.3.2 of the OHCI 1.1 specification), but
1137 * some controllers (like a JMicron JMB381 PCI-e) misbehave and wind
1138 * up stalling out. So we just bail out in software and try again
1139 * later, and everyone is happy.
1140 * FIXME: Document how the locking works.
1141 */
1142 if (ohci->generation != packet->generation ||
1143 reg_read(ohci, OHCI1394_IntEventSet) & OHCI1394_busReset) {
Stefan Richter19593ff2009-10-14 20:40:10 +02001144 if (packet->payload_mapped)
Stefan Richterab88ca42007-08-29 19:40:28 +02001145 dma_unmap_single(ohci->card.device, payload_bus,
1146 packet->payload_length, DMA_TO_DEVICE);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001147 packet->ack = RCODE_GENERATION;
1148 return -1;
Kristian Høgsberged568912006-12-19 19:58:35 -05001149 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001150
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001151 context_append(ctx, d, z, 4 - z);
Kristian Høgsberged568912006-12-19 19:58:35 -05001152
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001153 /* If the context isn't already running, start it up. */
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001154 reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs));
Kristian Høgsberg053b3082007-04-10 18:11:17 -04001155 if ((reg & CONTEXT_RUN) == 0)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001156 context_run(ctx, 0);
Kristian Høgsberged568912006-12-19 19:58:35 -05001157
1158 return 0;
1159}
1160
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001161static int handle_at_packet(struct context *context,
1162 struct descriptor *d,
1163 struct descriptor *last)
1164{
1165 struct driver_data *driver_data;
1166 struct fw_packet *packet;
1167 struct fw_ohci *ohci = context->ohci;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001168 int evt;
1169
1170 if (last->transfer_status == 0)
1171 /* This descriptor isn't done yet, stop iteration. */
1172 return 0;
1173
1174 driver_data = (struct driver_data *) &d[3];
1175 packet = driver_data->packet;
1176 if (packet == NULL)
1177 /* This packet was cancelled, just continue. */
1178 return 1;
1179
Stefan Richter19593ff2009-10-14 20:40:10 +02001180 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01001181 dma_unmap_single(ohci->card.device, packet->payload_bus,
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001182 packet->payload_length, DMA_TO_DEVICE);
1183
1184 evt = le16_to_cpu(last->transfer_status) & 0x1f;
1185 packet->timestamp = le16_to_cpu(last->res_count);
1186
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001187 log_ar_at_event('T', packet->speed, packet->header, evt);
1188
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001189 switch (evt) {
1190 case OHCI1394_evt_timeout:
1191 /* Async response transmit timed out. */
1192 packet->ack = RCODE_CANCELLED;
1193 break;
1194
1195 case OHCI1394_evt_flushed:
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001196 /*
1197 * The packet was flushed should give same error as
1198 * when we try to use a stale generation count.
1199 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001200 packet->ack = RCODE_GENERATION;
1201 break;
1202
1203 case OHCI1394_evt_missing_ack:
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001204 /*
1205 * Using a valid (current) generation count, but the
1206 * node is not on the bus or not sending acks.
1207 */
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001208 packet->ack = RCODE_NO_ACK;
1209 break;
1210
1211 case ACK_COMPLETE + 0x10:
1212 case ACK_PENDING + 0x10:
1213 case ACK_BUSY_X + 0x10:
1214 case ACK_BUSY_A + 0x10:
1215 case ACK_BUSY_B + 0x10:
1216 case ACK_DATA_ERROR + 0x10:
1217 case ACK_TYPE_ERROR + 0x10:
1218 packet->ack = evt - 0x10;
1219 break;
1220
1221 default:
1222 packet->ack = RCODE_SEND_ERROR;
1223 break;
1224 }
1225
1226 packet->callback(packet, &ohci->card, packet->ack);
1227
1228 return 1;
1229}
1230
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001231#define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff)
1232#define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f)
1233#define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff)
1234#define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff)
1235#define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001236
Stefan Richter53dca512008-12-14 21:47:04 +01001237static void handle_local_rom(struct fw_ohci *ohci,
1238 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001239{
1240 struct fw_packet response;
1241 int tcode, length, i;
1242
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001243 tcode = HEADER_GET_TCODE(packet->header[0]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001244 if (TCODE_IS_BLOCK_PACKET(tcode))
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001245 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001246 else
1247 length = 4;
1248
1249 i = csr - CSR_CONFIG_ROM;
1250 if (i + length > CONFIG_ROM_SIZE) {
1251 fw_fill_response(&response, packet->header,
1252 RCODE_ADDRESS_ERROR, NULL, 0);
1253 } else if (!TCODE_IS_READ_REQUEST(tcode)) {
1254 fw_fill_response(&response, packet->header,
1255 RCODE_TYPE_ERROR, NULL, 0);
1256 } else {
1257 fw_fill_response(&response, packet->header, RCODE_COMPLETE,
1258 (void *) ohci->config_rom + i, length);
1259 }
1260
1261 fw_core_handle_response(&ohci->card, &response);
1262}
1263
Stefan Richter53dca512008-12-14 21:47:04 +01001264static void handle_local_lock(struct fw_ohci *ohci,
1265 struct fw_packet *packet, u32 csr)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001266{
1267 struct fw_packet response;
Clemens Ladische1393662010-04-12 10:35:44 +02001268 int tcode, length, ext_tcode, sel, try;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001269 __be32 *payload, lock_old;
1270 u32 lock_arg, lock_data;
1271
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001272 tcode = HEADER_GET_TCODE(packet->header[0]);
1273 length = HEADER_GET_DATA_LENGTH(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001274 payload = packet->payload;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001275 ext_tcode = HEADER_GET_EXTENDED_TCODE(packet->header[3]);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001276
1277 if (tcode == TCODE_LOCK_REQUEST &&
1278 ext_tcode == EXTCODE_COMPARE_SWAP && length == 8) {
1279 lock_arg = be32_to_cpu(payload[0]);
1280 lock_data = be32_to_cpu(payload[1]);
1281 } else if (tcode == TCODE_READ_QUADLET_REQUEST) {
1282 lock_arg = 0;
1283 lock_data = 0;
1284 } else {
1285 fw_fill_response(&response, packet->header,
1286 RCODE_TYPE_ERROR, NULL, 0);
1287 goto out;
1288 }
1289
1290 sel = (csr - CSR_BUS_MANAGER_ID) / 4;
1291 reg_write(ohci, OHCI1394_CSRData, lock_data);
1292 reg_write(ohci, OHCI1394_CSRCompareData, lock_arg);
1293 reg_write(ohci, OHCI1394_CSRControl, sel);
1294
Clemens Ladische1393662010-04-12 10:35:44 +02001295 for (try = 0; try < 20; try++)
1296 if (reg_read(ohci, OHCI1394_CSRControl) & 0x80000000) {
1297 lock_old = cpu_to_be32(reg_read(ohci,
1298 OHCI1394_CSRData));
1299 fw_fill_response(&response, packet->header,
1300 RCODE_COMPLETE,
1301 &lock_old, sizeof(lock_old));
1302 goto out;
1303 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001304
Clemens Ladische1393662010-04-12 10:35:44 +02001305 fw_error("swap not done (CSR lock timeout)\n");
1306 fw_fill_response(&response, packet->header, RCODE_BUSY, NULL, 0);
1307
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001308 out:
1309 fw_core_handle_response(&ohci->card, &response);
1310}
1311
Stefan Richter53dca512008-12-14 21:47:04 +01001312static void handle_local_request(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001313{
Clemens Ladisch26082032010-04-12 10:35:30 +02001314 u64 offset, csr;
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001315
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001316 if (ctx == &ctx->ohci->at_request_ctx) {
1317 packet->ack = ACK_PENDING;
1318 packet->callback(packet, &ctx->ohci->card, packet->ack);
1319 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001320
1321 offset =
1322 ((unsigned long long)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001323 HEADER_GET_OFFSET_HIGH(packet->header[1]) << 32) |
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001324 packet->header[2];
1325 csr = offset - CSR_REGISTER_BASE;
1326
1327 /* Handle config rom reads. */
1328 if (csr >= CSR_CONFIG_ROM && csr < CSR_CONFIG_ROM_END)
1329 handle_local_rom(ctx->ohci, packet, csr);
1330 else switch (csr) {
1331 case CSR_BUS_MANAGER_ID:
1332 case CSR_BANDWIDTH_AVAILABLE:
1333 case CSR_CHANNELS_AVAILABLE_HI:
1334 case CSR_CHANNELS_AVAILABLE_LO:
1335 handle_local_lock(ctx->ohci, packet, csr);
1336 break;
1337 default:
1338 if (ctx == &ctx->ohci->at_request_ctx)
1339 fw_core_handle_request(&ctx->ohci->card, packet);
1340 else
1341 fw_core_handle_response(&ctx->ohci->card, packet);
1342 break;
1343 }
Kristian Høgsberg473d28c2007-03-07 12:12:55 -05001344
1345 if (ctx == &ctx->ohci->at_response_ctx) {
1346 packet->ack = ACK_COMPLETE;
1347 packet->callback(packet, &ctx->ohci->card, packet->ack);
1348 }
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001349}
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001350
Stefan Richter53dca512008-12-14 21:47:04 +01001351static void at_context_transmit(struct context *ctx, struct fw_packet *packet)
Kristian Høgsberged568912006-12-19 19:58:35 -05001352{
Kristian Høgsberged568912006-12-19 19:58:35 -05001353 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001354 int ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05001355
1356 spin_lock_irqsave(&ctx->ohci->lock, flags);
1357
Kristian Høgsberga77754a2007-05-07 20:33:35 -04001358 if (HEADER_GET_DESTINATION(packet->header[0]) == ctx->ohci->node_id &&
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001359 ctx->ohci->generation == packet->generation) {
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -05001360 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1361 handle_local_request(ctx, packet);
1362 return;
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001363 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001364
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001365 ret = at_context_queue_packet(ctx, packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001366 spin_unlock_irqrestore(&ctx->ohci->lock, flags);
1367
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001368 if (ret < 0)
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001369 packet->callback(packet, &ctx->ohci->card, packet->ack);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05001370
Kristian Høgsberged568912006-12-19 19:58:35 -05001371}
1372
Clemens Ladischa48777e2010-06-10 08:33:07 +02001373static u32 cycle_timer_ticks(u32 cycle_timer)
1374{
1375 u32 ticks;
1376
1377 ticks = cycle_timer & 0xfff;
1378 ticks += 3072 * ((cycle_timer >> 12) & 0x1fff);
1379 ticks += (3072 * 8000) * (cycle_timer >> 25);
1380
1381 return ticks;
1382}
1383
1384/*
1385 * Some controllers exhibit one or more of the following bugs when updating the
1386 * iso cycle timer register:
1387 * - When the lowest six bits are wrapping around to zero, a read that happens
1388 * at the same time will return garbage in the lowest ten bits.
1389 * - When the cycleOffset field wraps around to zero, the cycleCount field is
1390 * not incremented for about 60 ns.
1391 * - Occasionally, the entire register reads zero.
1392 *
1393 * To catch these, we read the register three times and ensure that the
1394 * difference between each two consecutive reads is approximately the same, i.e.
1395 * less than twice the other. Furthermore, any negative difference indicates an
1396 * error. (A PCI read should take at least 20 ticks of the 24.576 MHz timer to
1397 * execute, so we have enough precision to compute the ratio of the differences.)
1398 */
1399static u32 get_cycle_time(struct fw_ohci *ohci)
1400{
1401 u32 c0, c1, c2;
1402 u32 t0, t1, t2;
1403 s32 diff01, diff12;
1404 int i;
1405
1406 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1407
1408 if (ohci->quirks & QUIRK_CYCLE_TIMER) {
1409 i = 0;
1410 c1 = c2;
1411 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1412 do {
1413 c0 = c1;
1414 c1 = c2;
1415 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer);
1416 t0 = cycle_timer_ticks(c0);
1417 t1 = cycle_timer_ticks(c1);
1418 t2 = cycle_timer_ticks(c2);
1419 diff01 = t1 - t0;
1420 diff12 = t2 - t1;
1421 } while ((diff01 <= 0 || diff12 <= 0 ||
1422 diff01 / diff12 >= 2 || diff12 / diff01 >= 2)
1423 && i++ < 20);
1424 }
1425
1426 return c2;
1427}
1428
1429/*
1430 * This function has to be called at least every 64 seconds. The bus_time
1431 * field stores not only the upper 25 bits of the BUS_TIME register but also
1432 * the most significant bit of the cycle timer in bit 6 so that we can detect
1433 * changes in this bit.
1434 */
1435static u32 update_bus_time(struct fw_ohci *ohci)
1436{
1437 u32 cycle_time_seconds = get_cycle_time(ohci) >> 25;
1438
1439 if ((ohci->bus_time & 0x40) != (cycle_time_seconds & 0x40))
1440 ohci->bus_time += 0x40;
1441
1442 return ohci->bus_time | cycle_time_seconds;
1443}
1444
Kristian Høgsberged568912006-12-19 19:58:35 -05001445static void bus_reset_tasklet(unsigned long data)
1446{
1447 struct fw_ohci *ohci = (struct fw_ohci *)data;
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001448 int self_id_count, i, j, reg;
Kristian Høgsberged568912006-12-19 19:58:35 -05001449 int generation, new_generation;
1450 unsigned long flags;
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001451 void *free_rom = NULL;
1452 dma_addr_t free_rom_bus = 0;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001453 bool is_new_root;
Kristian Høgsberged568912006-12-19 19:58:35 -05001454
1455 reg = reg_read(ohci, OHCI1394_NodeID);
1456 if (!(reg & OHCI1394_NodeID_idValid)) {
Stefan Richter02ff8f82007-08-30 00:11:40 +02001457 fw_notify("node ID not valid, new bus reset in progress\n");
Kristian Høgsberged568912006-12-19 19:58:35 -05001458 return;
1459 }
Stefan Richter02ff8f82007-08-30 00:11:40 +02001460 if ((reg & OHCI1394_NodeID_nodeNumber) == 63) {
1461 fw_notify("malconfigured bus\n");
1462 return;
1463 }
1464 ohci->node_id = reg & (OHCI1394_NodeID_busNumber |
1465 OHCI1394_NodeID_nodeNumber);
Kristian Høgsberged568912006-12-19 19:58:35 -05001466
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02001467 is_new_root = (reg & OHCI1394_NodeID_root) != 0;
1468 if (!(ohci->is_root && is_new_root))
1469 reg_write(ohci, OHCI1394_LinkControlSet,
1470 OHCI1394_LinkControl_cycleMaster);
1471 ohci->is_root = is_new_root;
1472
Stefan Richterc8a9a492008-03-19 21:40:32 +01001473 reg = reg_read(ohci, OHCI1394_SelfIDCount);
1474 if (reg & OHCI1394_SelfIDCount_selfIDError) {
1475 fw_notify("inconsistent self IDs\n");
1476 return;
1477 }
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001478 /*
1479 * The count in the SelfIDCount register is the number of
Kristian Høgsberged568912006-12-19 19:58:35 -05001480 * bytes in the self ID receive buffer. Since we also receive
1481 * the inverted quadlets and a header quadlet, we shift one
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001482 * bit extra to get the actual number of self IDs.
1483 */
Stefan Richter928ec5f2009-09-06 18:49:17 +02001484 self_id_count = (reg >> 3) & 0xff;
1485 if (self_id_count == 0 || self_id_count > 252) {
Stefan Richter016bf3d2008-03-19 22:05:02 +01001486 fw_notify("inconsistent self IDs\n");
1487 return;
1488 }
Stefan Richter11bf20a2008-03-01 02:47:15 +01001489 generation = (cond_le32_to_cpu(ohci->self_id_cpu[0]) >> 16) & 0xff;
Stefan Richteree71c2f2007-08-25 14:08:19 +02001490 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001491
1492 for (i = 1, j = 0; j < self_id_count; i += 2, j++) {
Stefan Richterc8a9a492008-03-19 21:40:32 +01001493 if (ohci->self_id_cpu[i] != ~ohci->self_id_cpu[i + 1]) {
1494 fw_notify("inconsistent self IDs\n");
1495 return;
1496 }
Stefan Richter11bf20a2008-03-01 02:47:15 +01001497 ohci->self_id_buffer[j] =
1498 cond_le32_to_cpu(ohci->self_id_cpu[i]);
Kristian Høgsberged568912006-12-19 19:58:35 -05001499 }
Stefan Richteree71c2f2007-08-25 14:08:19 +02001500 rmb();
Kristian Høgsberged568912006-12-19 19:58:35 -05001501
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001502 /*
1503 * Check the consistency of the self IDs we just read. The
Kristian Høgsberged568912006-12-19 19:58:35 -05001504 * problem we face is that a new bus reset can start while we
1505 * read out the self IDs from the DMA buffer. If this happens,
1506 * the DMA buffer will be overwritten with new self IDs and we
1507 * will read out inconsistent data. The OHCI specification
1508 * (section 11.2) recommends a technique similar to
1509 * linux/seqlock.h, where we remember the generation of the
1510 * self IDs in the buffer before reading them out and compare
1511 * it to the current generation after reading them out. If
1512 * the two generations match we know we have a consistent set
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001513 * of self IDs.
1514 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001515
1516 new_generation = (reg_read(ohci, OHCI1394_SelfIDCount) >> 16) & 0xff;
1517 if (new_generation != generation) {
1518 fw_notify("recursive bus reset detected, "
1519 "discarding self ids\n");
1520 return;
1521 }
1522
1523 /* FIXME: Document how the locking works. */
1524 spin_lock_irqsave(&ohci->lock, flags);
1525
1526 ohci->generation = generation;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05001527 context_stop(&ohci->at_request_ctx);
1528 context_stop(&ohci->at_response_ctx);
Kristian Høgsberged568912006-12-19 19:58:35 -05001529 reg_write(ohci, OHCI1394_IntEventClear, OHCI1394_busReset);
1530
Stefan Richter4a635592010-02-21 17:58:01 +01001531 if (ohci->quirks & QUIRK_RESET_PACKET)
Stefan Richterd34316a2008-04-12 22:31:25 +02001532 ohci->request_generation = generation;
1533
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001534 /*
1535 * This next bit is unrelated to the AT context stuff but we
Kristian Høgsberged568912006-12-19 19:58:35 -05001536 * have to do it under the spinlock also. If a new config rom
1537 * was set up before this reset, the old one is now no longer
1538 * in use and we can free it. Update the config rom pointers
1539 * to point to the current config rom and clear the
Thomas Weber88393162010-03-16 11:47:56 +01001540 * next_config_rom pointer so a new update can take place.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001541 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001542
1543 if (ohci->next_config_rom != NULL) {
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001544 if (ohci->next_config_rom != ohci->config_rom) {
1545 free_rom = ohci->config_rom;
1546 free_rom_bus = ohci->config_rom_bus;
1547 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001548 ohci->config_rom = ohci->next_config_rom;
1549 ohci->config_rom_bus = ohci->next_config_rom_bus;
1550 ohci->next_config_rom = NULL;
1551
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001552 /*
1553 * Restore config_rom image and manually update
Kristian Høgsberged568912006-12-19 19:58:35 -05001554 * config_rom registers. Writing the header quadlet
1555 * will indicate that the config rom is ready, so we
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001556 * do that last.
1557 */
Kristian Høgsberged568912006-12-19 19:58:35 -05001558 reg_write(ohci, OHCI1394_BusOptions,
1559 be32_to_cpu(ohci->config_rom[2]));
Stefan Richter8e859732009-10-08 00:41:59 +02001560 ohci->config_rom[0] = ohci->next_header;
1561 reg_write(ohci, OHCI1394_ConfigROMhdr,
1562 be32_to_cpu(ohci->next_header));
Kristian Høgsberged568912006-12-19 19:58:35 -05001563 }
1564
Stefan Richter080de8c2008-02-28 20:54:43 +01001565#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
1566 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, ~0);
1567 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, ~0);
1568#endif
1569
Kristian Høgsberged568912006-12-19 19:58:35 -05001570 spin_unlock_irqrestore(&ohci->lock, flags);
1571
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001572 if (free_rom)
1573 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1574 free_rom, free_rom_bus);
1575
Stefan Richter08ddb2f2008-04-11 00:51:15 +02001576 log_selfids(ohci->node_id, generation,
1577 self_id_count, ohci->self_id_buffer);
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001578
Kristian Høgsberge636fe22007-01-26 00:38:04 -05001579 fw_core_handle_bus_reset(&ohci->card, ohci->node_id, generation,
Stefan Richterc8a94de2010-06-12 20:34:50 +02001580 self_id_count, ohci->self_id_buffer,
1581 ohci->csr_state_setclear_abdicate);
1582 ohci->csr_state_setclear_abdicate = false;
Kristian Høgsberged568912006-12-19 19:58:35 -05001583}
1584
1585static irqreturn_t irq_handler(int irq, void *data)
1586{
1587 struct fw_ohci *ohci = data;
Stefan Richter168cf9a2010-02-14 18:49:18 +01001588 u32 event, iso_event;
Kristian Høgsberged568912006-12-19 19:58:35 -05001589 int i;
1590
1591 event = reg_read(ohci, OHCI1394_IntEventClear);
1592
Stefan Richtera5159582007-06-09 19:31:14 +02001593 if (!event || !~event)
Kristian Høgsberged568912006-12-19 19:58:35 -05001594 return IRQ_NONE;
1595
Stefan Richtera007bb82008-04-07 22:33:35 +02001596 /* busReset must not be cleared yet, see OHCI 1.1 clause 7.2.3.2 */
1597 reg_write(ohci, OHCI1394_IntEventClear, event & ~OHCI1394_busReset);
Stefan Richterad3c0fe2008-03-20 22:04:36 +01001598 log_irqs(event);
Kristian Høgsberged568912006-12-19 19:58:35 -05001599
1600 if (event & OHCI1394_selfIDComplete)
1601 tasklet_schedule(&ohci->bus_reset_tasklet);
1602
1603 if (event & OHCI1394_RQPkt)
1604 tasklet_schedule(&ohci->ar_request_ctx.tasklet);
1605
1606 if (event & OHCI1394_RSPkt)
1607 tasklet_schedule(&ohci->ar_response_ctx.tasklet);
1608
1609 if (event & OHCI1394_reqTxComplete)
1610 tasklet_schedule(&ohci->at_request_ctx.tasklet);
1611
1612 if (event & OHCI1394_respTxComplete)
1613 tasklet_schedule(&ohci->at_response_ctx.tasklet);
1614
Kristian Høgsbergc8894752007-02-16 17:34:36 -05001615 iso_event = reg_read(ohci, OHCI1394_IsoRecvIntEventClear);
Kristian Høgsberged568912006-12-19 19:58:35 -05001616 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, iso_event);
1617
1618 while (iso_event) {
1619 i = ffs(iso_event) - 1;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001620 tasklet_schedule(&ohci->ir_context_list[i].context.tasklet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001621 iso_event &= ~(1 << i);
1622 }
1623
Kristian Høgsbergc8894752007-02-16 17:34:36 -05001624 iso_event = reg_read(ohci, OHCI1394_IsoXmitIntEventClear);
Kristian Høgsberged568912006-12-19 19:58:35 -05001625 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, iso_event);
1626
1627 while (iso_event) {
1628 i = ffs(iso_event) - 1;
Kristian Høgsberg30200732007-02-16 17:34:39 -05001629 tasklet_schedule(&ohci->it_context_list[i].context.tasklet);
Kristian Høgsberged568912006-12-19 19:58:35 -05001630 iso_event &= ~(1 << i);
1631 }
1632
Jarod Wilson75f78322008-04-03 17:18:23 -04001633 if (unlikely(event & OHCI1394_regAccessFail))
1634 fw_error("Register access failure - "
1635 "please notify linux1394-devel@lists.sf.net\n");
1636
Stefan Richtere524f6162007-08-20 21:58:30 +02001637 if (unlikely(event & OHCI1394_postedWriteErr))
1638 fw_error("PCI posted write error\n");
1639
Stefan Richterbb9f2202007-12-22 22:14:52 +01001640 if (unlikely(event & OHCI1394_cycleTooLong)) {
1641 if (printk_ratelimit())
1642 fw_notify("isochronous cycle too long\n");
1643 reg_write(ohci, OHCI1394_LinkControlSet,
1644 OHCI1394_LinkControl_cycleMaster);
1645 }
1646
Jay Fenlason5ed1f322009-11-17 12:29:17 -05001647 if (unlikely(event & OHCI1394_cycleInconsistent)) {
1648 /*
1649 * We need to clear this event bit in order to make
1650 * cycleMatch isochronous I/O work. In theory we should
1651 * stop active cycleMatch iso contexts now and restart
1652 * them at least two cycles later. (FIXME?)
1653 */
1654 if (printk_ratelimit())
1655 fw_notify("isochronous cycle inconsistent\n");
1656 }
1657
Clemens Ladischa48777e2010-06-10 08:33:07 +02001658 if (event & OHCI1394_cycle64Seconds) {
1659 spin_lock(&ohci->lock);
1660 update_bus_time(ohci);
1661 spin_unlock(&ohci->lock);
1662 }
1663
Kristian Høgsberged568912006-12-19 19:58:35 -05001664 return IRQ_HANDLED;
1665}
1666
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001667static int software_reset(struct fw_ohci *ohci)
1668{
1669 int i;
1670
1671 reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset);
1672
1673 for (i = 0; i < OHCI_LOOP_COUNT; i++) {
1674 if ((reg_read(ohci, OHCI1394_HCControlSet) &
1675 OHCI1394_HCControl_softReset) == 0)
1676 return 0;
1677 msleep(1);
1678 }
1679
1680 return -EBUSY;
1681}
1682
Stefan Richter8e859732009-10-08 00:41:59 +02001683static void copy_config_rom(__be32 *dest, const __be32 *src, size_t length)
1684{
1685 size_t size = length * 4;
1686
1687 memcpy(dest, src, size);
1688 if (size < CONFIG_ROM_SIZE)
1689 memset(&dest[length], 0, CONFIG_ROM_SIZE - size);
1690}
1691
Clemens Ladisch925e7a62010-04-04 15:19:54 +02001692static int configure_1394a_enhancements(struct fw_ohci *ohci)
1693{
1694 bool enable_1394a;
Stefan Richter35d999b2010-04-10 16:04:56 +02001695 int ret, clear, set, offset;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02001696
1697 /* Check if the driver should configure link and PHY. */
1698 if (!(reg_read(ohci, OHCI1394_HCControlSet) &
1699 OHCI1394_HCControl_programPhyEnable))
1700 return 0;
1701
1702 /* Paranoia: check whether the PHY supports 1394a, too. */
1703 enable_1394a = false;
Stefan Richter35d999b2010-04-10 16:04:56 +02001704 ret = read_phy_reg(ohci, 2);
1705 if (ret < 0)
1706 return ret;
1707 if ((ret & PHY_EXTENDED_REGISTERS) == PHY_EXTENDED_REGISTERS) {
1708 ret = read_paged_phy_reg(ohci, 1, 8);
1709 if (ret < 0)
1710 return ret;
1711 if (ret >= 1)
Clemens Ladisch925e7a62010-04-04 15:19:54 +02001712 enable_1394a = true;
1713 }
1714
1715 if (ohci->quirks & QUIRK_NO_1394A)
1716 enable_1394a = false;
1717
1718 /* Configure PHY and link consistently. */
1719 if (enable_1394a) {
1720 clear = 0;
1721 set = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
1722 } else {
1723 clear = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI;
1724 set = 0;
1725 }
Stefan Richter02d37be2010-07-08 16:09:06 +02001726 ret = update_phy_reg(ohci, 5, clear, set);
Stefan Richter35d999b2010-04-10 16:04:56 +02001727 if (ret < 0)
1728 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02001729
1730 if (enable_1394a)
1731 offset = OHCI1394_HCControlSet;
1732 else
1733 offset = OHCI1394_HCControlClear;
1734 reg_write(ohci, offset, OHCI1394_HCControl_aPhyEnhanceEnable);
1735
1736 /* Clean up: configuration has been taken care of. */
1737 reg_write(ohci, OHCI1394_HCControlClear,
1738 OHCI1394_HCControl_programPhyEnable);
1739
1740 return 0;
1741}
1742
Stefan Richter8e859732009-10-08 00:41:59 +02001743static int ohci_enable(struct fw_card *card,
1744 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05001745{
1746 struct fw_ohci *ohci = fw_ohci(card);
1747 struct pci_dev *dev = to_pci_dev(card->device);
Clemens Ladische91b2782010-06-10 08:40:49 +02001748 u32 lps, seconds, version, irqs;
Stefan Richter35d999b2010-04-10 16:04:56 +02001749 int i, ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05001750
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001751 if (software_reset(ohci)) {
1752 fw_error("Failed to reset ohci card.\n");
1753 return -EBUSY;
1754 }
1755
1756 /*
1757 * Now enable LPS, which we need in order to start accessing
1758 * most of the registers. In fact, on some cards (ALI M5251),
1759 * accessing registers in the SClk domain without LPS enabled
1760 * will lock up the machine. Wait 50msec to make sure we have
Jarod Wilson02214722008-03-28 10:02:50 -04001761 * full link enabled. However, with some cards (well, at least
1762 * a JMicron PCIe card), we have to try again sometimes.
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001763 */
1764 reg_write(ohci, OHCI1394_HCControlSet,
1765 OHCI1394_HCControl_LPS |
1766 OHCI1394_HCControl_postedWriteEnable);
1767 flush_writes(ohci);
Jarod Wilson02214722008-03-28 10:02:50 -04001768
1769 for (lps = 0, i = 0; !lps && i < 3; i++) {
1770 msleep(50);
1771 lps = reg_read(ohci, OHCI1394_HCControlSet) &
1772 OHCI1394_HCControl_LPS;
1773 }
1774
1775 if (!lps) {
1776 fw_error("Failed to set Link Power Status\n");
1777 return -EIO;
1778 }
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001779
1780 reg_write(ohci, OHCI1394_HCControlClear,
1781 OHCI1394_HCControl_noByteSwapData);
1782
Stefan Richteraffc9c22008-06-05 20:50:53 +02001783 reg_write(ohci, OHCI1394_SelfIDBuffer, ohci->self_id_bus);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001784 reg_write(ohci, OHCI1394_LinkControlSet,
1785 OHCI1394_LinkControl_rcvSelfID |
Stefan Richterbf54e142010-07-16 22:25:51 +02001786 OHCI1394_LinkControl_rcvPhyPkt |
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001787 OHCI1394_LinkControl_cycleTimerEnable |
1788 OHCI1394_LinkControl_cycleMaster);
1789
1790 reg_write(ohci, OHCI1394_ATRetries,
1791 OHCI1394_MAX_AT_REQ_RETRIES |
1792 (OHCI1394_MAX_AT_RESP_RETRIES << 4) |
Clemens Ladisch27a23292010-06-10 08:34:13 +02001793 (OHCI1394_MAX_PHYS_RESP_RETRIES << 8) |
1794 (200 << 16));
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001795
Clemens Ladischa48777e2010-06-10 08:33:07 +02001796 seconds = lower_32_bits(get_seconds());
1797 reg_write(ohci, OHCI1394_IsochronousCycleTimer, seconds << 25);
1798 ohci->bus_time = seconds & ~0x3f;
1799
Clemens Ladische91b2782010-06-10 08:40:49 +02001800 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
1801 if (version >= OHCI_VERSION_1_1) {
1802 reg_write(ohci, OHCI1394_InitialChannelsAvailableHi,
1803 0xfffffffe);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02001804 card->broadcast_channel_auto_allocated = true;
Clemens Ladische91b2782010-06-10 08:40:49 +02001805 }
1806
Clemens Ladischa1a11322010-06-10 08:35:06 +02001807 /* Get implemented bits of the priority arbitration request counter. */
1808 reg_write(ohci, OHCI1394_FairnessControl, 0x3f);
1809 ohci->pri_req_max = reg_read(ohci, OHCI1394_FairnessControl) & 0x3f;
1810 reg_write(ohci, OHCI1394_FairnessControl, 0);
Stefan Richterdb3c9cc2010-06-12 20:30:21 +02001811 card->priority_budget_implemented = ohci->pri_req_max != 0;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001812
1813 ar_context_run(&ohci->ar_request_ctx);
1814 ar_context_run(&ohci->ar_response_ctx);
1815
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001816 reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000);
1817 reg_write(ohci, OHCI1394_IntEventClear, ~0);
1818 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001819
Stefan Richter35d999b2010-04-10 16:04:56 +02001820 ret = configure_1394a_enhancements(ohci);
1821 if (ret < 0)
1822 return ret;
Clemens Ladisch925e7a62010-04-04 15:19:54 +02001823
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001824 /* Activate link_on bit and contender bit in our self ID packets.*/
Stefan Richter35d999b2010-04-10 16:04:56 +02001825 ret = ohci_update_phy_reg(card, 4, 0, PHY_LINK_ACTIVE | PHY_CONTENDER);
1826 if (ret < 0)
1827 return ret;
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04001828
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001829 /*
1830 * When the link is not yet enabled, the atomic config rom
Kristian Høgsberged568912006-12-19 19:58:35 -05001831 * update mechanism described below in ohci_set_config_rom()
1832 * is not active. We have to update ConfigRomHeader and
1833 * BusOptions manually, and the write to ConfigROMmap takes
1834 * effect immediately. We tie this to the enabling of the
1835 * link, so we have a valid config rom before enabling - the
1836 * OHCI requires that ConfigROMhdr and BusOptions have valid
1837 * values before enabling.
1838 *
1839 * However, when the ConfigROMmap is written, some controllers
1840 * always read back quadlets 0 and 2 from the config rom to
1841 * the ConfigRomHeader and BusOptions registers on bus reset.
1842 * They shouldn't do that in this initial case where the link
1843 * isn't enabled. This means we have to use the same
1844 * workaround here, setting the bus header to 0 and then write
1845 * the right values in the bus reset tasklet.
1846 */
1847
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001848 if (config_rom) {
1849 ohci->next_config_rom =
1850 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1851 &ohci->next_config_rom_bus,
1852 GFP_KERNEL);
1853 if (ohci->next_config_rom == NULL)
1854 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05001855
Stefan Richter8e859732009-10-08 00:41:59 +02001856 copy_config_rom(ohci->next_config_rom, config_rom, length);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001857 } else {
1858 /*
1859 * In the suspend case, config_rom is NULL, which
1860 * means that we just reuse the old config rom.
1861 */
1862 ohci->next_config_rom = ohci->config_rom;
1863 ohci->next_config_rom_bus = ohci->config_rom_bus;
1864 }
Kristian Høgsberged568912006-12-19 19:58:35 -05001865
Stefan Richter8e859732009-10-08 00:41:59 +02001866 ohci->next_header = ohci->next_config_rom[0];
Kristian Høgsberged568912006-12-19 19:58:35 -05001867 ohci->next_config_rom[0] = 0;
1868 reg_write(ohci, OHCI1394_ConfigROMhdr, 0);
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04001869 reg_write(ohci, OHCI1394_BusOptions,
1870 be32_to_cpu(ohci->next_config_rom[2]));
Kristian Høgsberged568912006-12-19 19:58:35 -05001871 reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus);
1872
1873 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
1874
Clemens Ladisch262444e2010-06-05 12:31:25 +02001875 if (!(ohci->quirks & QUIRK_NO_MSI))
1876 pci_enable_msi(dev);
Kristian Høgsberged568912006-12-19 19:58:35 -05001877 if (request_irq(dev->irq, irq_handler,
Clemens Ladisch262444e2010-06-05 12:31:25 +02001878 pci_dev_msi_enabled(dev) ? 0 : IRQF_SHARED,
1879 ohci_driver_name, ohci)) {
1880 fw_error("Failed to allocate interrupt %d.\n", dev->irq);
1881 pci_disable_msi(dev);
Kristian Høgsberged568912006-12-19 19:58:35 -05001882 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1883 ohci->config_rom, ohci->config_rom_bus);
1884 return -EIO;
1885 }
1886
Stefan Richter148c7862010-06-05 11:46:49 +02001887 irqs = OHCI1394_reqTxComplete | OHCI1394_respTxComplete |
1888 OHCI1394_RQPkt | OHCI1394_RSPkt |
1889 OHCI1394_isochTx | OHCI1394_isochRx |
1890 OHCI1394_postedWriteErr |
1891 OHCI1394_selfIDComplete |
1892 OHCI1394_regAccessFail |
Clemens Ladischa48777e2010-06-10 08:33:07 +02001893 OHCI1394_cycle64Seconds |
Stefan Richter148c7862010-06-05 11:46:49 +02001894 OHCI1394_cycleInconsistent | OHCI1394_cycleTooLong |
1895 OHCI1394_masterIntEnable;
1896 if (param_debug & OHCI_PARAM_DEBUG_BUSRESETS)
1897 irqs |= OHCI1394_busReset;
1898 reg_write(ohci, OHCI1394_IntMaskSet, irqs);
1899
Kristian Høgsberged568912006-12-19 19:58:35 -05001900 reg_write(ohci, OHCI1394_HCControlSet,
1901 OHCI1394_HCControl_linkEnable |
1902 OHCI1394_HCControl_BIBimageValid);
1903 flush_writes(ohci);
1904
Stefan Richter02d37be2010-07-08 16:09:06 +02001905 /* We are ready to go, reset bus to finish initialization. */
1906 fw_schedule_bus_reset(&ohci->card, false, true);
Kristian Høgsberged568912006-12-19 19:58:35 -05001907
1908 return 0;
1909}
1910
Stefan Richter53dca512008-12-14 21:47:04 +01001911static int ohci_set_config_rom(struct fw_card *card,
Stefan Richter8e859732009-10-08 00:41:59 +02001912 const __be32 *config_rom, size_t length)
Kristian Høgsberged568912006-12-19 19:58:35 -05001913{
1914 struct fw_ohci *ohci;
1915 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001916 int ret = -EBUSY;
Kristian Høgsberged568912006-12-19 19:58:35 -05001917 __be32 *next_config_rom;
Stefan Richterf5101d582008-03-14 00:27:49 +01001918 dma_addr_t uninitialized_var(next_config_rom_bus);
Kristian Høgsberged568912006-12-19 19:58:35 -05001919
1920 ohci = fw_ohci(card);
1921
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001922 /*
1923 * When the OHCI controller is enabled, the config rom update
Kristian Høgsberged568912006-12-19 19:58:35 -05001924 * mechanism is a bit tricky, but easy enough to use. See
1925 * section 5.5.6 in the OHCI specification.
1926 *
1927 * The OHCI controller caches the new config rom address in a
1928 * shadow register (ConfigROMmapNext) and needs a bus reset
1929 * for the changes to take place. When the bus reset is
1930 * detected, the controller loads the new values for the
1931 * ConfigRomHeader and BusOptions registers from the specified
1932 * config rom and loads ConfigROMmap from the ConfigROMmapNext
1933 * shadow register. All automatically and atomically.
1934 *
1935 * Now, there's a twist to this story. The automatic load of
1936 * ConfigRomHeader and BusOptions doesn't honor the
1937 * noByteSwapData bit, so with a be32 config rom, the
1938 * controller will load be32 values in to these registers
1939 * during the atomic update, even on litte endian
1940 * architectures. The workaround we use is to put a 0 in the
1941 * header quadlet; 0 is endian agnostic and means that the
1942 * config rom isn't ready yet. In the bus reset tasklet we
1943 * then set up the real values for the two registers.
1944 *
1945 * We use ohci->lock to avoid racing with the code that sets
1946 * ohci->next_config_rom to NULL (see bus_reset_tasklet).
1947 */
1948
1949 next_config_rom =
1950 dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1951 &next_config_rom_bus, GFP_KERNEL);
1952 if (next_config_rom == NULL)
1953 return -ENOMEM;
1954
1955 spin_lock_irqsave(&ohci->lock, flags);
1956
1957 if (ohci->next_config_rom == NULL) {
1958 ohci->next_config_rom = next_config_rom;
1959 ohci->next_config_rom_bus = next_config_rom_bus;
1960
Stefan Richter8e859732009-10-08 00:41:59 +02001961 copy_config_rom(ohci->next_config_rom, config_rom, length);
Kristian Høgsberged568912006-12-19 19:58:35 -05001962
1963 ohci->next_header = config_rom[0];
1964 ohci->next_config_rom[0] = 0;
1965
1966 reg_write(ohci, OHCI1394_ConfigROMmap,
1967 ohci->next_config_rom_bus);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001968 ret = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05001969 }
1970
1971 spin_unlock_irqrestore(&ohci->lock, flags);
1972
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001973 /*
1974 * Now initiate a bus reset to have the changes take
Kristian Høgsberged568912006-12-19 19:58:35 -05001975 * effect. We clean up the old config rom memory and DMA
1976 * mappings in the bus reset tasklet, since the OHCI
1977 * controller could need to access it before the bus reset
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001978 * takes effect.
1979 */
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001980 if (ret == 0)
Stefan Richter02d37be2010-07-08 16:09:06 +02001981 fw_schedule_bus_reset(&ohci->card, true, true);
Stefan Richter4eaff7d2007-07-25 19:18:08 +02001982 else
1983 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
1984 next_config_rom, next_config_rom_bus);
Kristian Høgsberged568912006-12-19 19:58:35 -05001985
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001986 return ret;
Kristian Høgsberged568912006-12-19 19:58:35 -05001987}
1988
1989static void ohci_send_request(struct fw_card *card, struct fw_packet *packet)
1990{
1991 struct fw_ohci *ohci = fw_ohci(card);
1992
1993 at_context_transmit(&ohci->at_request_ctx, packet);
1994}
1995
1996static void ohci_send_response(struct fw_card *card, struct fw_packet *packet)
1997{
1998 struct fw_ohci *ohci = fw_ohci(card);
1999
2000 at_context_transmit(&ohci->at_response_ctx, packet);
2001}
2002
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002003static int ohci_cancel_packet(struct fw_card *card, struct fw_packet *packet)
2004{
2005 struct fw_ohci *ohci = fw_ohci(card);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002006 struct context *ctx = &ohci->at_request_ctx;
2007 struct driver_data *driver_data = packet->driver_data;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002008 int ret = -ENOENT;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002009
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002010 tasklet_disable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002011
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002012 if (packet->ack != 0)
2013 goto out;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002014
Stefan Richter19593ff2009-10-14 20:40:10 +02002015 if (packet->payload_mapped)
Stefan Richter1d1dc5e2008-12-10 00:20:38 +01002016 dma_unmap_single(ohci->card.device, packet->payload_bus,
2017 packet->payload_length, DMA_TO_DEVICE);
2018
Stefan Richterad3c0fe2008-03-20 22:04:36 +01002019 log_ar_at_event('T', packet->speed, packet->header, 0x20);
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002020 driver_data->packet = NULL;
2021 packet->ack = RCODE_CANCELLED;
2022 packet->callback(packet, &ohci->card, packet->ack);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002023 ret = 0;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002024 out:
2025 tasklet_enable(&ctx->tasklet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002026
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002027 return ret;
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002028}
2029
Stefan Richter53dca512008-12-14 21:47:04 +01002030static int ohci_enable_phys_dma(struct fw_card *card,
2031 int node_id, int generation)
Kristian Høgsberged568912006-12-19 19:58:35 -05002032{
Stefan Richter080de8c2008-02-28 20:54:43 +01002033#ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA
2034 return 0;
2035#else
Kristian Høgsberged568912006-12-19 19:58:35 -05002036 struct fw_ohci *ohci = fw_ohci(card);
2037 unsigned long flags;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002038 int n, ret = 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002039
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002040 /*
2041 * FIXME: Make sure this bitmask is cleared when we clear the busReset
2042 * interrupt bit. Clear physReqResourceAllBuses on bus reset.
2043 */
Kristian Høgsberged568912006-12-19 19:58:35 -05002044
2045 spin_lock_irqsave(&ohci->lock, flags);
2046
2047 if (ohci->generation != generation) {
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002048 ret = -ESTALE;
Kristian Høgsberged568912006-12-19 19:58:35 -05002049 goto out;
2050 }
2051
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002052 /*
2053 * Note, if the node ID contains a non-local bus ID, physical DMA is
2054 * enabled for _all_ nodes on remote buses.
2055 */
Stefan Richter907293d2007-01-23 21:11:43 +01002056
2057 n = (node_id & 0xffc0) == LOCAL_BUS ? node_id & 0x3f : 63;
2058 if (n < 32)
2059 reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 1 << n);
2060 else
2061 reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 1 << (n - 32));
2062
Kristian Høgsberged568912006-12-19 19:58:35 -05002063 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05002064 out:
Stefan Richter6cad95f2007-01-21 20:46:45 +01002065 spin_unlock_irqrestore(&ohci->lock, flags);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002066
2067 return ret;
Stefan Richter080de8c2008-02-28 20:54:43 +01002068#endif /* CONFIG_FIREWIRE_OHCI_REMOTE_DMA */
Kristian Høgsberged568912006-12-19 19:58:35 -05002069}
Stefan Richter373b2ed2007-03-04 14:45:18 +01002070
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002071static u32 ohci_read_csr(struct fw_card *card, int csr_offset)
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002072{
2073 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002074 unsigned long flags;
2075 u32 value;
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002076
Clemens Ladisch60d32972010-06-10 08:24:35 +02002077 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002078 case CSR_STATE_CLEAR:
2079 case CSR_STATE_SET:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002080 if (ohci->is_root &&
2081 (reg_read(ohci, OHCI1394_LinkControlSet) &
2082 OHCI1394_LinkControl_cycleMaster))
Stefan Richterc8a94de2010-06-12 20:34:50 +02002083 value = CSR_STATE_BIT_CMSTR;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002084 else
Stefan Richterc8a94de2010-06-12 20:34:50 +02002085 value = 0;
2086 if (ohci->csr_state_setclear_abdicate)
2087 value |= CSR_STATE_BIT_ABDICATE;
Stefan Richter4a9bde92010-02-20 22:24:43 +01002088
Stefan Richterc8a94de2010-06-12 20:34:50 +02002089 return value;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002090
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002091 case CSR_NODE_IDS:
2092 return reg_read(ohci, OHCI1394_NodeID) << 16;
2093
Clemens Ladisch60d32972010-06-10 08:24:35 +02002094 case CSR_CYCLE_TIME:
2095 return get_cycle_time(ohci);
2096
Clemens Ladischa48777e2010-06-10 08:33:07 +02002097 case CSR_BUS_TIME:
2098 /*
2099 * We might be called just after the cycle timer has wrapped
2100 * around but just before the cycle64Seconds handler, so we
2101 * better check here, too, if the bus time needs to be updated.
2102 */
2103 spin_lock_irqsave(&ohci->lock, flags);
2104 value = update_bus_time(ohci);
2105 spin_unlock_irqrestore(&ohci->lock, flags);
2106 return value;
2107
Clemens Ladisch27a23292010-06-10 08:34:13 +02002108 case CSR_BUSY_TIMEOUT:
2109 value = reg_read(ohci, OHCI1394_ATRetries);
2110 return (value >> 4) & 0x0ffff00f;
2111
Clemens Ladischa1a11322010-06-10 08:35:06 +02002112 case CSR_PRIORITY_BUDGET:
2113 return (reg_read(ohci, OHCI1394_FairnessControl) & 0x3f) |
2114 (ohci->pri_req_max << 8);
2115
Clemens Ladisch60d32972010-06-10 08:24:35 +02002116 default:
2117 WARN_ON(1);
2118 return 0;
Clemens Ladischb6775322010-01-20 09:58:02 +01002119 }
Clemens Ladisch60d32972010-06-10 08:24:35 +02002120}
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002121
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002122static void ohci_write_csr(struct fw_card *card, int csr_offset, u32 value)
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002123{
2124 struct fw_ohci *ohci = fw_ohci(card);
Clemens Ladischa48777e2010-06-10 08:33:07 +02002125 unsigned long flags;
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002126
2127 switch (csr_offset) {
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002128 case CSR_STATE_CLEAR:
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002129 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2130 reg_write(ohci, OHCI1394_LinkControlClear,
2131 OHCI1394_LinkControl_cycleMaster);
2132 flush_writes(ohci);
2133 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002134 if (value & CSR_STATE_BIT_ABDICATE)
2135 ohci->csr_state_setclear_abdicate = false;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002136 break;
2137
2138 case CSR_STATE_SET:
2139 if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) {
2140 reg_write(ohci, OHCI1394_LinkControlSet,
2141 OHCI1394_LinkControl_cycleMaster);
2142 flush_writes(ohci);
2143 }
Stefan Richterc8a94de2010-06-12 20:34:50 +02002144 if (value & CSR_STATE_BIT_ABDICATE)
2145 ohci->csr_state_setclear_abdicate = true;
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +02002146 break;
2147
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002148 case CSR_NODE_IDS:
2149 reg_write(ohci, OHCI1394_NodeID, value >> 16);
2150 flush_writes(ohci);
2151 break;
2152
Clemens Ladisch9ab50712010-06-10 08:26:48 +02002153 case CSR_CYCLE_TIME:
2154 reg_write(ohci, OHCI1394_IsochronousCycleTimer, value);
2155 reg_write(ohci, OHCI1394_IntEventSet,
2156 OHCI1394_cycleInconsistent);
2157 flush_writes(ohci);
2158 break;
2159
Clemens Ladischa48777e2010-06-10 08:33:07 +02002160 case CSR_BUS_TIME:
2161 spin_lock_irqsave(&ohci->lock, flags);
2162 ohci->bus_time = (ohci->bus_time & 0x7f) | (value & ~0x7f);
2163 spin_unlock_irqrestore(&ohci->lock, flags);
2164 break;
2165
Clemens Ladisch27a23292010-06-10 08:34:13 +02002166 case CSR_BUSY_TIMEOUT:
2167 value = (value & 0xf) | ((value & 0xf) << 4) |
2168 ((value & 0xf) << 8) | ((value & 0x0ffff000) << 4);
2169 reg_write(ohci, OHCI1394_ATRetries, value);
2170 flush_writes(ohci);
2171 break;
2172
Clemens Ladischa1a11322010-06-10 08:35:06 +02002173 case CSR_PRIORITY_BUDGET:
2174 reg_write(ohci, OHCI1394_FairnessControl, value & 0x3f);
2175 flush_writes(ohci);
2176 break;
2177
Clemens Ladisch506f1a32010-06-10 08:25:19 +02002178 default:
2179 WARN_ON(1);
2180 break;
2181 }
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -05002182}
2183
David Moore1aa292b2008-07-22 23:23:40 -07002184static void copy_iso_headers(struct iso_context *ctx, void *p)
2185{
2186 int i = ctx->header_length;
2187
2188 if (i + ctx->base.header_size > PAGE_SIZE)
2189 return;
2190
2191 /*
2192 * The iso header is byteswapped to little endian by
2193 * the controller, but the remaining header quadlets
2194 * are big endian. We want to present all the headers
2195 * as big endian, so we have to swap the first quadlet.
2196 */
2197 if (ctx->base.header_size > 0)
2198 *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4));
2199 if (ctx->base.header_size > 4)
2200 *(u32 *) (ctx->header + i + 4) = __swab32(*(u32 *) p);
2201 if (ctx->base.header_size > 8)
2202 memcpy(ctx->header + i + 8, p + 8, ctx->base.header_size - 8);
2203 ctx->header_length += ctx->base.header_size;
2204}
2205
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002206static int handle_ir_packet_per_buffer(struct context *context,
2207 struct descriptor *d,
2208 struct descriptor *last)
2209{
2210 struct iso_context *ctx =
2211 container_of(context, struct iso_context, context);
David Moorebcee8932007-12-19 15:26:38 -05002212 struct descriptor *pd;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002213 __le32 *ir_header;
David Moorebcee8932007-12-19 15:26:38 -05002214 void *p;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002215
Stefan Richter872e3302010-07-29 18:19:22 +02002216 for (pd = d; pd <= last; pd++)
David Moorebcee8932007-12-19 15:26:38 -05002217 if (pd->transfer_status)
2218 break;
David Moorebcee8932007-12-19 15:26:38 -05002219 if (pd > last)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002220 /* Descriptor(s) not done yet, stop iteration */
2221 return 0;
2222
David Moore1aa292b2008-07-22 23:23:40 -07002223 p = last + 1;
2224 copy_iso_headers(ctx, p);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002225
David Moorebcee8932007-12-19 15:26:38 -05002226 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
2227 ir_header = (__le32 *) p;
Stefan Richter872e3302010-07-29 18:19:22 +02002228 ctx->base.callback.sc(&ctx->base,
2229 le32_to_cpu(ir_header[0]) & 0xffff,
2230 ctx->header_length, ctx->header,
2231 ctx->base.callback_data);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002232 ctx->header_length = 0;
2233 }
2234
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002235 return 1;
2236}
2237
Stefan Richter872e3302010-07-29 18:19:22 +02002238/* d == last because each descriptor block is only a single descriptor. */
2239static int handle_ir_buffer_fill(struct context *context,
2240 struct descriptor *d,
2241 struct descriptor *last)
2242{
2243 struct iso_context *ctx =
2244 container_of(context, struct iso_context, context);
2245
2246 if (!last->transfer_status)
2247 /* Descriptor(s) not done yet, stop iteration */
2248 return 0;
2249
2250 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS)
2251 ctx->base.callback.mc(&ctx->base,
2252 le32_to_cpu(last->data_address) +
2253 le16_to_cpu(last->req_count) -
2254 le16_to_cpu(last->res_count),
2255 ctx->base.callback_data);
2256
2257 return 1;
2258}
2259
Kristian Høgsberg30200732007-02-16 17:34:39 -05002260static int handle_it_packet(struct context *context,
2261 struct descriptor *d,
2262 struct descriptor *last)
Kristian Høgsberged568912006-12-19 19:58:35 -05002263{
Kristian Høgsberg30200732007-02-16 17:34:39 -05002264 struct iso_context *ctx =
2265 container_of(context, struct iso_context, context);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002266 int i;
2267 struct descriptor *pd;
Stefan Richter373b2ed2007-03-04 14:45:18 +01002268
Jay Fenlason31769ce2009-11-21 00:05:56 +01002269 for (pd = d; pd <= last; pd++)
2270 if (pd->transfer_status)
2271 break;
2272 if (pd > last)
2273 /* Descriptor(s) not done yet, stop iteration */
Kristian Høgsberg30200732007-02-16 17:34:39 -05002274 return 0;
Kristian Høgsberged568912006-12-19 19:58:35 -05002275
Jay Fenlason31769ce2009-11-21 00:05:56 +01002276 i = ctx->header_length;
2277 if (i + 4 < PAGE_SIZE) {
2278 /* Present this value as big-endian to match the receive code */
2279 *(__be32 *)(ctx->header + i) = cpu_to_be32(
2280 ((u32)le16_to_cpu(pd->transfer_status) << 16) |
2281 le16_to_cpu(pd->res_count));
2282 ctx->header_length += 4;
2283 }
2284 if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) {
Stefan Richter872e3302010-07-29 18:19:22 +02002285 ctx->base.callback.sc(&ctx->base, le16_to_cpu(last->res_count),
2286 ctx->header_length, ctx->header,
2287 ctx->base.callback_data);
Jay Fenlason31769ce2009-11-21 00:05:56 +01002288 ctx->header_length = 0;
2289 }
Kristian Høgsberg30200732007-02-16 17:34:39 -05002290 return 1;
Kristian Høgsberged568912006-12-19 19:58:35 -05002291}
2292
Stefan Richter872e3302010-07-29 18:19:22 +02002293static void set_multichannel_mask(struct fw_ohci *ohci, u64 channels)
2294{
2295 u32 hi = channels >> 32, lo = channels;
2296
2297 reg_write(ohci, OHCI1394_IRMultiChanMaskHiClear, ~hi);
2298 reg_write(ohci, OHCI1394_IRMultiChanMaskLoClear, ~lo);
2299 reg_write(ohci, OHCI1394_IRMultiChanMaskHiSet, hi);
2300 reg_write(ohci, OHCI1394_IRMultiChanMaskLoSet, lo);
2301 mmiowb();
2302 ohci->mc_channels = channels;
2303}
2304
Stefan Richter53dca512008-12-14 21:47:04 +01002305static struct fw_iso_context *ohci_allocate_iso_context(struct fw_card *card,
Stefan Richter4817ed22008-12-21 16:39:46 +01002306 int type, int channel, size_t header_size)
Kristian Høgsberged568912006-12-19 19:58:35 -05002307{
2308 struct fw_ohci *ohci = fw_ohci(card);
Stefan Richter872e3302010-07-29 18:19:22 +02002309 struct iso_context *uninitialized_var(ctx);
2310 descriptor_callback_t uninitialized_var(callback);
2311 u64 *uninitialized_var(channels);
2312 u32 *uninitialized_var(mask), uninitialized_var(regs);
Kristian Høgsberged568912006-12-19 19:58:35 -05002313 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02002314 int index, ret = -EBUSY;
Kristian Høgsberged568912006-12-19 19:58:35 -05002315
2316 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002317
2318 switch (type) {
2319 case FW_ISO_CONTEXT_TRANSMIT:
2320 mask = &ohci->it_context_mask;
2321 callback = handle_it_packet;
2322 index = ffs(*mask) - 1;
2323 if (index >= 0) {
2324 *mask &= ~(1 << index);
2325 regs = OHCI1394_IsoXmitContextBase(index);
2326 ctx = &ohci->it_context_list[index];
2327 }
2328 break;
2329
2330 case FW_ISO_CONTEXT_RECEIVE:
2331 channels = &ohci->ir_context_channels;
2332 mask = &ohci->ir_context_mask;
2333 callback = handle_ir_packet_per_buffer;
2334 index = *channels & 1ULL << channel ? ffs(*mask) - 1 : -1;
2335 if (index >= 0) {
2336 *channels &= ~(1ULL << channel);
2337 *mask &= ~(1 << index);
2338 regs = OHCI1394_IsoRcvContextBase(index);
2339 ctx = &ohci->ir_context_list[index];
2340 }
2341 break;
2342
2343 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2344 mask = &ohci->ir_context_mask;
2345 callback = handle_ir_buffer_fill;
2346 index = !ohci->mc_allocated ? ffs(*mask) - 1 : -1;
2347 if (index >= 0) {
2348 ohci->mc_allocated = true;
2349 *mask &= ~(1 << index);
2350 regs = OHCI1394_IsoRcvContextBase(index);
2351 ctx = &ohci->ir_context_list[index];
2352 }
2353 break;
2354
2355 default:
2356 index = -1;
2357 ret = -ENOSYS;
Stefan Richter4817ed22008-12-21 16:39:46 +01002358 }
Stefan Richter872e3302010-07-29 18:19:22 +02002359
Kristian Høgsberged568912006-12-19 19:58:35 -05002360 spin_unlock_irqrestore(&ohci->lock, flags);
2361
2362 if (index < 0)
Stefan Richter872e3302010-07-29 18:19:22 +02002363 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002364
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04002365 memset(ctx, 0, sizeof(*ctx));
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002366 ctx->header_length = 0;
2367 ctx->header = (void *) __get_free_page(GFP_KERNEL);
Stefan Richter872e3302010-07-29 18:19:22 +02002368 if (ctx->header == NULL) {
2369 ret = -ENOMEM;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002370 goto out;
Stefan Richter872e3302010-07-29 18:19:22 +02002371 }
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002372 ret = context_init(&ctx->context, ohci, regs, callback);
2373 if (ret < 0)
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002374 goto out_with_header;
Kristian Høgsberged568912006-12-19 19:58:35 -05002375
Stefan Richter872e3302010-07-29 18:19:22 +02002376 if (type == FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL)
2377 set_multichannel_mask(ohci, 0);
2378
Kristian Høgsberged568912006-12-19 19:58:35 -05002379 return &ctx->base;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002380
2381 out_with_header:
2382 free_page((unsigned long)ctx->header);
2383 out:
2384 spin_lock_irqsave(&ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002385
2386 switch (type) {
2387 case FW_ISO_CONTEXT_RECEIVE:
2388 *channels |= 1ULL << channel;
2389 break;
2390
2391 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2392 ohci->mc_allocated = false;
2393 break;
2394 }
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002395 *mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02002396
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002397 spin_unlock_irqrestore(&ohci->lock, flags);
2398
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002399 return ERR_PTR(ret);
Kristian Høgsberged568912006-12-19 19:58:35 -05002400}
2401
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04002402static int ohci_start_iso(struct fw_iso_context *base,
2403 s32 cycle, u32 sync, u32 tags)
Kristian Høgsberged568912006-12-19 19:58:35 -05002404{
Stefan Richter373b2ed2007-03-04 14:45:18 +01002405 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberg30200732007-02-16 17:34:39 -05002406 struct fw_ohci *ohci = ctx->context.ohci;
Stefan Richter872e3302010-07-29 18:19:22 +02002407 u32 control = IR_CONTEXT_ISOCH_HEADER, match;
Kristian Høgsberged568912006-12-19 19:58:35 -05002408 int index;
2409
Stefan Richter872e3302010-07-29 18:19:22 +02002410 switch (ctx->base.type) {
2411 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002412 index = ctx - ohci->it_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002413 match = 0;
2414 if (cycle >= 0)
2415 match = IT_CONTEXT_CYCLE_MATCH_ENABLE |
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002416 (cycle & 0x7fff) << 16;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -05002417
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002418 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 1 << index);
2419 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, 1 << index);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002420 context_run(&ctx->context, match);
Stefan Richter872e3302010-07-29 18:19:22 +02002421 break;
2422
2423 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2424 control |= IR_CONTEXT_BUFFER_FILL|IR_CONTEXT_MULTI_CHANNEL_MODE;
2425 /* fall through */
2426 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002427 index = ctx - ohci->ir_context_list;
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002428 match = (tags << 28) | (sync << 8) | ctx->base.channel;
2429 if (cycle >= 0) {
2430 match |= (cycle & 0x07fff) << 12;
2431 control |= IR_CONTEXT_CYCLE_MATCH_ENABLE;
2432 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002433
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002434 reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 1 << index);
2435 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, 1 << index);
Kristian Høgsberga77754a2007-05-07 20:33:35 -04002436 reg_write(ohci, CONTEXT_MATCH(ctx->context.regs), match);
Kristian Høgsberg8a2f7d92007-03-28 14:26:10 -04002437 context_run(&ctx->context, control);
Stefan Richter872e3302010-07-29 18:19:22 +02002438 break;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002439 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002440
2441 return 0;
2442}
2443
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002444static int ohci_stop_iso(struct fw_iso_context *base)
2445{
2446 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01002447 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002448 int index;
2449
Stefan Richter872e3302010-07-29 18:19:22 +02002450 switch (ctx->base.type) {
2451 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002452 index = ctx - ohci->it_context_list;
2453 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02002454 break;
2455
2456 case FW_ISO_CONTEXT_RECEIVE:
2457 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002458 index = ctx - ohci->ir_context_list;
2459 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 1 << index);
Stefan Richter872e3302010-07-29 18:19:22 +02002460 break;
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002461 }
2462 flush_writes(ohci);
2463 context_stop(&ctx->context);
2464
2465 return 0;
2466}
2467
Kristian Høgsberged568912006-12-19 19:58:35 -05002468static void ohci_free_iso_context(struct fw_iso_context *base)
2469{
2470 struct fw_ohci *ohci = fw_ohci(base->card);
Stefan Richter373b2ed2007-03-04 14:45:18 +01002471 struct iso_context *ctx = container_of(base, struct iso_context, base);
Kristian Høgsberged568912006-12-19 19:58:35 -05002472 unsigned long flags;
2473 int index;
2474
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002475 ohci_stop_iso(base);
2476 context_release(&ctx->context);
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05002477 free_page((unsigned long)ctx->header);
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002478
Kristian Høgsberged568912006-12-19 19:58:35 -05002479 spin_lock_irqsave(&ohci->lock, flags);
2480
Stefan Richter872e3302010-07-29 18:19:22 +02002481 switch (base->type) {
2482 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberged568912006-12-19 19:58:35 -05002483 index = ctx - ohci->it_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05002484 ohci->it_context_mask |= 1 << index;
Stefan Richter872e3302010-07-29 18:19:22 +02002485 break;
2486
2487 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberged568912006-12-19 19:58:35 -05002488 index = ctx - ohci->ir_context_list;
Kristian Høgsberged568912006-12-19 19:58:35 -05002489 ohci->ir_context_mask |= 1 << index;
Stefan Richter4817ed22008-12-21 16:39:46 +01002490 ohci->ir_context_channels |= 1ULL << base->channel;
Stefan Richter872e3302010-07-29 18:19:22 +02002491 break;
2492
2493 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2494 index = ctx - ohci->ir_context_list;
2495 ohci->ir_context_mask |= 1 << index;
2496 ohci->ir_context_channels |= ohci->mc_channels;
2497 ohci->mc_channels = 0;
2498 ohci->mc_allocated = false;
2499 break;
Kristian Høgsberged568912006-12-19 19:58:35 -05002500 }
Kristian Høgsberged568912006-12-19 19:58:35 -05002501
2502 spin_unlock_irqrestore(&ohci->lock, flags);
2503}
2504
Stefan Richter872e3302010-07-29 18:19:22 +02002505static int ohci_set_iso_channels(struct fw_iso_context *base, u64 *channels)
Kristian Høgsberged568912006-12-19 19:58:35 -05002506{
Stefan Richter872e3302010-07-29 18:19:22 +02002507 struct fw_ohci *ohci = fw_ohci(base->card);
2508 unsigned long flags;
2509 int ret;
2510
2511 switch (base->type) {
2512 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2513
2514 spin_lock_irqsave(&ohci->lock, flags);
2515
2516 /* Don't allow multichannel to grab other contexts' channels. */
2517 if (~ohci->ir_context_channels & ~ohci->mc_channels & *channels) {
2518 *channels = ohci->ir_context_channels;
2519 ret = -EBUSY;
2520 } else {
2521 set_multichannel_mask(ohci, *channels);
2522 ret = 0;
2523 }
2524
2525 spin_unlock_irqrestore(&ohci->lock, flags);
2526
2527 break;
2528 default:
2529 ret = -EINVAL;
2530 }
2531
2532 return ret;
2533}
2534
2535static int queue_iso_transmit(struct iso_context *ctx,
2536 struct fw_iso_packet *packet,
2537 struct fw_iso_buffer *buffer,
2538 unsigned long payload)
2539{
Kristian Høgsberg30200732007-02-16 17:34:39 -05002540 struct descriptor *d, *last, *pd;
Kristian Høgsberged568912006-12-19 19:58:35 -05002541 struct fw_iso_packet *p;
2542 __le32 *header;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05002543 dma_addr_t d_bus, page_bus;
Kristian Høgsberged568912006-12-19 19:58:35 -05002544 u32 z, header_z, payload_z, irq;
2545 u32 payload_index, payload_end_index, next_page_index;
Kristian Høgsberg30200732007-02-16 17:34:39 -05002546 int page, end_page, i, length, offset;
Kristian Høgsberged568912006-12-19 19:58:35 -05002547
Kristian Høgsberged568912006-12-19 19:58:35 -05002548 p = packet;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05002549 payload_index = payload;
Kristian Høgsberged568912006-12-19 19:58:35 -05002550
2551 if (p->skip)
2552 z = 1;
2553 else
2554 z = 2;
2555 if (p->header_length > 0)
2556 z++;
2557
2558 /* Determine the first page the payload isn't contained in. */
2559 end_page = PAGE_ALIGN(payload_index + p->payload_length) >> PAGE_SHIFT;
2560 if (p->payload_length > 0)
2561 payload_z = end_page - (payload_index >> PAGE_SHIFT);
2562 else
2563 payload_z = 0;
2564
2565 z += payload_z;
2566
2567 /* Get header size in number of descriptors. */
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04002568 header_z = DIV_ROUND_UP(p->header_length, sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05002569
Kristian Høgsberg30200732007-02-16 17:34:39 -05002570 d = context_get_descriptors(&ctx->context, z + header_z, &d_bus);
2571 if (d == NULL)
2572 return -ENOMEM;
Kristian Høgsberged568912006-12-19 19:58:35 -05002573
2574 if (!p->skip) {
Kristian Høgsberga77754a2007-05-07 20:33:35 -04002575 d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE);
Kristian Høgsberged568912006-12-19 19:58:35 -05002576 d[0].req_count = cpu_to_le16(8);
Clemens Ladisch7f51a102010-02-08 08:30:03 +01002577 /*
2578 * Link the skip address to this descriptor itself. This causes
2579 * a context to skip a cycle whenever lost cycles or FIFO
2580 * overruns occur, without dropping the data. The application
2581 * should then decide whether this is an error condition or not.
2582 * FIXME: Make the context's cycle-lost behaviour configurable?
2583 */
2584 d[0].branch_address = cpu_to_le32(d_bus | z);
Kristian Høgsberged568912006-12-19 19:58:35 -05002585
2586 header = (__le32 *) &d[1];
Kristian Høgsberga77754a2007-05-07 20:33:35 -04002587 header[0] = cpu_to_le32(IT_HEADER_SY(p->sy) |
2588 IT_HEADER_TAG(p->tag) |
2589 IT_HEADER_TCODE(TCODE_STREAM_DATA) |
2590 IT_HEADER_CHANNEL(ctx->base.channel) |
2591 IT_HEADER_SPEED(ctx->base.speed));
Kristian Høgsberged568912006-12-19 19:58:35 -05002592 header[1] =
Kristian Høgsberga77754a2007-05-07 20:33:35 -04002593 cpu_to_le32(IT_HEADER_DATA_LENGTH(p->header_length +
Kristian Høgsberged568912006-12-19 19:58:35 -05002594 p->payload_length));
2595 }
2596
2597 if (p->header_length > 0) {
2598 d[2].req_count = cpu_to_le16(p->header_length);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04002599 d[2].data_address = cpu_to_le32(d_bus + z * sizeof(*d));
Kristian Høgsberged568912006-12-19 19:58:35 -05002600 memcpy(&d[z], p->header, p->header_length);
2601 }
2602
2603 pd = d + z - payload_z;
2604 payload_end_index = payload_index + p->payload_length;
2605 for (i = 0; i < payload_z; i++) {
2606 page = payload_index >> PAGE_SHIFT;
2607 offset = payload_index & ~PAGE_MASK;
2608 next_page_index = (page + 1) << PAGE_SHIFT;
2609 length =
2610 min(next_page_index, payload_end_index) - payload_index;
2611 pd[i].req_count = cpu_to_le16(length);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05002612
2613 page_bus = page_private(buffer->pages[page]);
2614 pd[i].data_address = cpu_to_le32(page_bus + offset);
Kristian Høgsberged568912006-12-19 19:58:35 -05002615
2616 payload_index += length;
2617 }
2618
Kristian Høgsberged568912006-12-19 19:58:35 -05002619 if (p->interrupt)
Kristian Høgsberga77754a2007-05-07 20:33:35 -04002620 irq = DESCRIPTOR_IRQ_ALWAYS;
Kristian Høgsberged568912006-12-19 19:58:35 -05002621 else
Kristian Høgsberga77754a2007-05-07 20:33:35 -04002622 irq = DESCRIPTOR_NO_IRQ;
Kristian Høgsberged568912006-12-19 19:58:35 -05002623
Kristian Høgsberg30200732007-02-16 17:34:39 -05002624 last = z == 2 ? d : d + z - 1;
Kristian Høgsberga77754a2007-05-07 20:33:35 -04002625 last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST |
2626 DESCRIPTOR_STATUS |
2627 DESCRIPTOR_BRANCH_ALWAYS |
Kristian Høgsbergcbb59da2007-02-16 17:34:35 -05002628 irq);
Kristian Høgsberged568912006-12-19 19:58:35 -05002629
Kristian Høgsberg30200732007-02-16 17:34:39 -05002630 context_append(&ctx->context, d, z, header_z);
Kristian Høgsberged568912006-12-19 19:58:35 -05002631
2632 return 0;
2633}
Stefan Richter373b2ed2007-03-04 14:45:18 +01002634
Stefan Richter872e3302010-07-29 18:19:22 +02002635static int queue_iso_packet_per_buffer(struct iso_context *ctx,
2636 struct fw_iso_packet *packet,
2637 struct fw_iso_buffer *buffer,
2638 unsigned long payload)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002639{
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05002640 struct descriptor *d, *pd;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002641 dma_addr_t d_bus, page_bus;
2642 u32 z, header_z, rest;
David Moorebcee8932007-12-19 15:26:38 -05002643 int i, j, length;
2644 int page, offset, packet_count, header_size, payload_per_buffer;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002645
2646 /*
David Moore1aa292b2008-07-22 23:23:40 -07002647 * The OHCI controller puts the isochronous header and trailer in the
2648 * buffer, so we need at least 8 bytes.
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002649 */
Stefan Richter872e3302010-07-29 18:19:22 +02002650 packet_count = packet->header_length / ctx->base.header_size;
David Moore1aa292b2008-07-22 23:23:40 -07002651 header_size = max(ctx->base.header_size, (size_t)8);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002652
2653 /* Get header size in number of descriptors. */
2654 header_z = DIV_ROUND_UP(header_size, sizeof(*d));
2655 page = payload >> PAGE_SHIFT;
2656 offset = payload & ~PAGE_MASK;
Stefan Richter872e3302010-07-29 18:19:22 +02002657 payload_per_buffer = packet->payload_length / packet_count;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002658
2659 for (i = 0; i < packet_count; i++) {
2660 /* d points to the header descriptor */
David Moorebcee8932007-12-19 15:26:38 -05002661 z = DIV_ROUND_UP(payload_per_buffer + offset, PAGE_SIZE) + 1;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002662 d = context_get_descriptors(&ctx->context,
David Moorebcee8932007-12-19 15:26:38 -05002663 z + header_z, &d_bus);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002664 if (d == NULL)
2665 return -ENOMEM;
2666
David Moorebcee8932007-12-19 15:26:38 -05002667 d->control = cpu_to_le16(DESCRIPTOR_STATUS |
2668 DESCRIPTOR_INPUT_MORE);
Stefan Richter872e3302010-07-29 18:19:22 +02002669 if (packet->skip && i == 0)
David Moorebcee8932007-12-19 15:26:38 -05002670 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002671 d->req_count = cpu_to_le16(header_size);
2672 d->res_count = d->req_count;
David Moorebcee8932007-12-19 15:26:38 -05002673 d->transfer_status = 0;
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002674 d->data_address = cpu_to_le32(d_bus + (z * sizeof(*d)));
2675
David Moorebcee8932007-12-19 15:26:38 -05002676 rest = payload_per_buffer;
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05002677 pd = d;
David Moorebcee8932007-12-19 15:26:38 -05002678 for (j = 1; j < z; j++) {
Jay Fenlason8c0c0cc2009-12-11 14:23:58 -05002679 pd++;
David Moorebcee8932007-12-19 15:26:38 -05002680 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
2681 DESCRIPTOR_INPUT_MORE);
2682
2683 if (offset + rest < PAGE_SIZE)
2684 length = rest;
2685 else
2686 length = PAGE_SIZE - offset;
2687 pd->req_count = cpu_to_le16(length);
2688 pd->res_count = pd->req_count;
2689 pd->transfer_status = 0;
2690
2691 page_bus = page_private(buffer->pages[page]);
2692 pd->data_address = cpu_to_le32(page_bus + offset);
2693
2694 offset = (offset + length) & ~PAGE_MASK;
2695 rest -= length;
2696 if (offset == 0)
2697 page++;
2698 }
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002699 pd->control = cpu_to_le16(DESCRIPTOR_STATUS |
2700 DESCRIPTOR_INPUT_LAST |
2701 DESCRIPTOR_BRANCH_ALWAYS);
Stefan Richter872e3302010-07-29 18:19:22 +02002702 if (packet->interrupt && i == packet_count - 1)
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002703 pd->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
2704
Jarod Wilsona186b4a2007-12-03 13:43:12 -05002705 context_append(&ctx->context, d, z, header_z);
2706 }
2707
2708 return 0;
2709}
2710
Stefan Richter872e3302010-07-29 18:19:22 +02002711static int queue_iso_buffer_fill(struct iso_context *ctx,
2712 struct fw_iso_packet *packet,
2713 struct fw_iso_buffer *buffer,
2714 unsigned long payload)
2715{
2716 struct descriptor *d;
2717 dma_addr_t d_bus, page_bus;
2718 int page, offset, rest, z, i, length;
2719
2720 page = payload >> PAGE_SHIFT;
2721 offset = payload & ~PAGE_MASK;
2722 rest = packet->payload_length;
2723
2724 /* We need one descriptor for each page in the buffer. */
2725 z = DIV_ROUND_UP(offset + rest, PAGE_SIZE);
2726
2727 if (WARN_ON(offset & 3 || rest & 3 || page + z > buffer->page_count))
2728 return -EFAULT;
2729
2730 for (i = 0; i < z; i++) {
2731 d = context_get_descriptors(&ctx->context, 1, &d_bus);
2732 if (d == NULL)
2733 return -ENOMEM;
2734
2735 d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE |
2736 DESCRIPTOR_BRANCH_ALWAYS);
2737 if (packet->skip && i == 0)
2738 d->control |= cpu_to_le16(DESCRIPTOR_WAIT);
2739 if (packet->interrupt && i == z - 1)
2740 d->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS);
2741
2742 if (offset + rest < PAGE_SIZE)
2743 length = rest;
2744 else
2745 length = PAGE_SIZE - offset;
2746 d->req_count = cpu_to_le16(length);
2747 d->res_count = d->req_count;
2748 d->transfer_status = 0;
2749
2750 page_bus = page_private(buffer->pages[page]);
2751 d->data_address = cpu_to_le32(page_bus + offset);
2752
2753 rest -= length;
2754 offset = 0;
2755 page++;
2756
2757 context_append(&ctx->context, d, 1, 0);
2758 }
2759
2760 return 0;
2761}
2762
Stefan Richter53dca512008-12-14 21:47:04 +01002763static int ohci_queue_iso(struct fw_iso_context *base,
2764 struct fw_iso_packet *packet,
2765 struct fw_iso_buffer *buffer,
2766 unsigned long payload)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002767{
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002768 struct iso_context *ctx = container_of(base, struct iso_context, base);
David Moorefe5ca632008-01-06 17:21:41 -05002769 unsigned long flags;
Stefan Richter872e3302010-07-29 18:19:22 +02002770 int ret = -ENOSYS;
Kristian Høgsberge364cf42007-02-16 17:34:49 -05002771
David Moorefe5ca632008-01-06 17:21:41 -05002772 spin_lock_irqsave(&ctx->context.ohci->lock, flags);
Stefan Richter872e3302010-07-29 18:19:22 +02002773 switch (base->type) {
2774 case FW_ISO_CONTEXT_TRANSMIT:
2775 ret = queue_iso_transmit(ctx, packet, buffer, payload);
2776 break;
2777 case FW_ISO_CONTEXT_RECEIVE:
2778 ret = queue_iso_packet_per_buffer(ctx, packet, buffer, payload);
2779 break;
2780 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
2781 ret = queue_iso_buffer_fill(ctx, packet, buffer, payload);
2782 break;
2783 }
David Moorefe5ca632008-01-06 17:21:41 -05002784 spin_unlock_irqrestore(&ctx->context.ohci->lock, flags);
2785
Stefan Richter2dbd7d72008-12-14 21:45:45 +01002786 return ret;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05002787}
2788
Stefan Richter21ebcd12007-01-14 15:29:07 +01002789static const struct fw_card_driver ohci_driver = {
Kristian Høgsberged568912006-12-19 19:58:35 -05002790 .enable = ohci_enable,
Stefan Richter02d37be2010-07-08 16:09:06 +02002791 .read_phy_reg = ohci_read_phy_reg,
Kristian Høgsberged568912006-12-19 19:58:35 -05002792 .update_phy_reg = ohci_update_phy_reg,
2793 .set_config_rom = ohci_set_config_rom,
2794 .send_request = ohci_send_request,
2795 .send_response = ohci_send_response,
Kristian Høgsberg730c32f2007-02-06 14:49:32 -05002796 .cancel_packet = ohci_cancel_packet,
Kristian Høgsberged568912006-12-19 19:58:35 -05002797 .enable_phys_dma = ohci_enable_phys_dma,
Stefan Richter0fcff4e2010-06-12 20:35:52 +02002798 .read_csr = ohci_read_csr,
2799 .write_csr = ohci_write_csr,
Kristian Høgsberged568912006-12-19 19:58:35 -05002800
2801 .allocate_iso_context = ohci_allocate_iso_context,
2802 .free_iso_context = ohci_free_iso_context,
Stefan Richter872e3302010-07-29 18:19:22 +02002803 .set_iso_channels = ohci_set_iso_channels,
Kristian Høgsberged568912006-12-19 19:58:35 -05002804 .queue_iso = ohci_queue_iso,
Kristian Høgsberg69cdb722007-02-16 17:34:41 -05002805 .start_iso = ohci_start_iso,
Kristian Høgsbergb8295662007-02-16 17:34:42 -05002806 .stop_iso = ohci_stop_iso,
Kristian Høgsberged568912006-12-19 19:58:35 -05002807};
2808
Stefan Richter2ed0f182008-03-01 12:35:29 +01002809#ifdef CONFIG_PPC_PMAC
Stefan Richter5da3dac2010-04-02 14:05:02 +02002810static void pmac_ohci_on(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01002811{
2812 if (machine_is(powermac)) {
2813 struct device_node *ofn = pci_device_to_OF_node(dev);
2814
2815 if (ofn) {
2816 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 1);
2817 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 1);
2818 }
2819 }
2820}
2821
Stefan Richter5da3dac2010-04-02 14:05:02 +02002822static void pmac_ohci_off(struct pci_dev *dev)
Stefan Richter2ed0f182008-03-01 12:35:29 +01002823{
2824 if (machine_is(powermac)) {
2825 struct device_node *ofn = pci_device_to_OF_node(dev);
2826
2827 if (ofn) {
2828 pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 0);
2829 pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 0);
2830 }
2831 }
2832}
2833#else
Stefan Richter5da3dac2010-04-02 14:05:02 +02002834static inline void pmac_ohci_on(struct pci_dev *dev) {}
2835static inline void pmac_ohci_off(struct pci_dev *dev) {}
Stefan Richter2ed0f182008-03-01 12:35:29 +01002836#endif /* CONFIG_PPC_PMAC */
2837
Stefan Richter53dca512008-12-14 21:47:04 +01002838static int __devinit pci_probe(struct pci_dev *dev,
2839 const struct pci_device_id *ent)
Kristian Høgsberged568912006-12-19 19:58:35 -05002840{
2841 struct fw_ohci *ohci;
Clemens Ladisch54672382010-04-01 16:43:59 +02002842 u32 bus_options, max_receive, link_speed, version, link_enh;
Kristian Høgsberged568912006-12-19 19:58:35 -05002843 u64 guid;
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01002844 int i, err, n_ir, n_it;
Kristian Høgsberged568912006-12-19 19:58:35 -05002845 size_t size;
2846
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04002847 ohci = kzalloc(sizeof(*ohci), GFP_KERNEL);
Kristian Høgsberged568912006-12-19 19:58:35 -05002848 if (ohci == NULL) {
Stefan Richter7007a072008-10-26 09:50:31 +01002849 err = -ENOMEM;
2850 goto fail;
Kristian Høgsberged568912006-12-19 19:58:35 -05002851 }
2852
2853 fw_card_initialize(&ohci->card, &ohci_driver, &dev->dev);
2854
Stefan Richter5da3dac2010-04-02 14:05:02 +02002855 pmac_ohci_on(dev);
Stefan Richter130d5492008-03-24 20:55:28 +01002856
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002857 err = pci_enable_device(dev);
2858 if (err) {
Stefan Richter7007a072008-10-26 09:50:31 +01002859 fw_error("Failed to enable OHCI hardware\n");
Stefan Richterbd7dee62008-02-24 18:59:55 +01002860 goto fail_free;
Kristian Høgsberged568912006-12-19 19:58:35 -05002861 }
2862
2863 pci_set_master(dev);
2864 pci_write_config_dword(dev, OHCI1394_PCI_HCI_Control, 0);
2865 pci_set_drvdata(dev, ohci);
2866
2867 spin_lock_init(&ohci->lock);
Stefan Richter02d37be2010-07-08 16:09:06 +02002868 mutex_init(&ohci->phy_reg_mutex);
Kristian Høgsberged568912006-12-19 19:58:35 -05002869
2870 tasklet_init(&ohci->bus_reset_tasklet,
2871 bus_reset_tasklet, (unsigned long)ohci);
2872
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002873 err = pci_request_region(dev, 0, ohci_driver_name);
2874 if (err) {
Kristian Høgsberged568912006-12-19 19:58:35 -05002875 fw_error("MMIO resource unavailable\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002876 goto fail_disable;
Kristian Høgsberged568912006-12-19 19:58:35 -05002877 }
2878
2879 ohci->registers = pci_iomap(dev, 0, OHCI1394_REGISTER_SIZE);
2880 if (ohci->registers == NULL) {
2881 fw_error("Failed to remap registers\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002882 err = -ENXIO;
2883 goto fail_iomem;
Kristian Høgsberged568912006-12-19 19:58:35 -05002884 }
2885
Stefan Richter4a635592010-02-21 17:58:01 +01002886 for (i = 0; i < ARRAY_SIZE(ohci_quirks); i++)
2887 if (ohci_quirks[i].vendor == dev->vendor &&
2888 (ohci_quirks[i].device == dev->device ||
2889 ohci_quirks[i].device == (unsigned short)PCI_ANY_ID)) {
2890 ohci->quirks = ohci_quirks[i].flags;
2891 break;
2892 }
Stefan Richter3e9cc2f2010-02-21 17:58:29 +01002893 if (param_quirks)
2894 ohci->quirks = param_quirks;
Clemens Ladischb6775322010-01-20 09:58:02 +01002895
Clemens Ladisch54672382010-04-01 16:43:59 +02002896 /* TI OHCI-Lynx and compatible: set recommended configuration bits. */
2897 if (dev->vendor == PCI_VENDOR_ID_TI) {
2898 pci_read_config_dword(dev, PCI_CFG_TI_LinkEnh, &link_enh);
2899
2900 /* adjust latency of ATx FIFO: use 1.7 KB threshold */
2901 link_enh &= ~TI_LinkEnh_atx_thresh_mask;
2902 link_enh |= TI_LinkEnh_atx_thresh_1_7K;
2903
2904 /* use priority arbitration for asynchronous responses */
2905 link_enh |= TI_LinkEnh_enab_unfair;
2906
2907 /* required for aPhyEnhanceEnable to work */
2908 link_enh |= TI_LinkEnh_enab_accel;
2909
2910 pci_write_config_dword(dev, PCI_CFG_TI_LinkEnh, link_enh);
2911 }
2912
Kristian Høgsberged568912006-12-19 19:58:35 -05002913 ar_context_init(&ohci->ar_request_ctx, ohci,
2914 OHCI1394_AsReqRcvContextControlSet);
2915
2916 ar_context_init(&ohci->ar_response_ctx, ohci,
2917 OHCI1394_AsRspRcvContextControlSet);
2918
David Moorefe5ca632008-01-06 17:21:41 -05002919 context_init(&ohci->at_request_ctx, ohci,
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002920 OHCI1394_AsReqTrContextControlSet, handle_at_packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05002921
David Moorefe5ca632008-01-06 17:21:41 -05002922 context_init(&ohci->at_response_ctx, ohci,
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -05002923 OHCI1394_AsRspTrContextControlSet, handle_at_packet);
Kristian Høgsberged568912006-12-19 19:58:35 -05002924
Kristian Høgsberged568912006-12-19 19:58:35 -05002925 reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, ~0);
Stefan Richter4817ed22008-12-21 16:39:46 +01002926 ohci->ir_context_channels = ~0ULL;
Stefan Richter4802f162010-02-21 17:58:52 +01002927 ohci->ir_context_mask = reg_read(ohci, OHCI1394_IsoRecvIntMaskSet);
2928 reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, ~0);
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01002929 n_ir = hweight32(ohci->ir_context_mask);
2930 size = sizeof(struct iso_context) * n_ir;
Kristian Høgsberged568912006-12-19 19:58:35 -05002931 ohci->ir_context_list = kzalloc(size, GFP_KERNEL);
2932
Stefan Richter4802f162010-02-21 17:58:52 +01002933 reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, ~0);
2934 ohci->it_context_mask = reg_read(ohci, OHCI1394_IsoXmitIntMaskSet);
2935 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, ~0);
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01002936 n_it = hweight32(ohci->it_context_mask);
2937 size = sizeof(struct iso_context) * n_it;
Stefan Richter4802f162010-02-21 17:58:52 +01002938 ohci->it_context_list = kzalloc(size, GFP_KERNEL);
2939
Kristian Høgsberged568912006-12-19 19:58:35 -05002940 if (ohci->it_context_list == NULL || ohci->ir_context_list == NULL) {
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002941 err = -ENOMEM;
Stefan Richter7007a072008-10-26 09:50:31 +01002942 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05002943 }
2944
2945 /* self-id dma buffer allocation */
2946 ohci->self_id_cpu = dma_alloc_coherent(ohci->card.device,
2947 SELF_ID_BUF_SIZE,
2948 &ohci->self_id_bus,
2949 GFP_KERNEL);
2950 if (ohci->self_id_cpu == NULL) {
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002951 err = -ENOMEM;
Stefan Richter7007a072008-10-26 09:50:31 +01002952 goto fail_contexts;
Kristian Høgsberged568912006-12-19 19:58:35 -05002953 }
2954
Kristian Høgsberged568912006-12-19 19:58:35 -05002955 bus_options = reg_read(ohci, OHCI1394_BusOptions);
2956 max_receive = (bus_options >> 12) & 0xf;
2957 link_speed = bus_options & 0x7;
2958 guid = ((u64) reg_read(ohci, OHCI1394_GUIDHi) << 32) |
2959 reg_read(ohci, OHCI1394_GUIDLo);
2960
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002961 err = fw_card_add(&ohci->card, max_receive, link_speed, guid);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01002962 if (err)
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002963 goto fail_self_id;
Kristian Høgsberged568912006-12-19 19:58:35 -05002964
Stefan Richter6fdb2ee2010-02-21 17:59:14 +01002965 version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff;
2966 fw_notify("Added fw-ohci device %s, OHCI v%x.%x, "
2967 "%d IR + %d IT contexts, quirks 0x%x\n",
2968 dev_name(&dev->dev), version >> 16, version & 0xff,
2969 n_ir, n_it, ohci->quirks);
Stefan Richtere1eff7a2009-02-03 17:55:19 +01002970
Kristian Høgsberged568912006-12-19 19:58:35 -05002971 return 0;
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002972
2973 fail_self_id:
2974 dma_free_coherent(ohci->card.device, SELF_ID_BUF_SIZE,
2975 ohci->self_id_cpu, ohci->self_id_bus);
Stefan Richter7007a072008-10-26 09:50:31 +01002976 fail_contexts:
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002977 kfree(ohci->ir_context_list);
Stefan Richter7007a072008-10-26 09:50:31 +01002978 kfree(ohci->it_context_list);
2979 context_release(&ohci->at_response_ctx);
2980 context_release(&ohci->at_request_ctx);
2981 ar_context_release(&ohci->ar_response_ctx);
2982 ar_context_release(&ohci->ar_request_ctx);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002983 pci_iounmap(dev, ohci->registers);
2984 fail_iomem:
2985 pci_release_region(dev, 0);
2986 fail_disable:
2987 pci_disable_device(dev);
Stefan Richterbd7dee62008-02-24 18:59:55 +01002988 fail_free:
2989 kfree(&ohci->card);
Stefan Richter5da3dac2010-04-02 14:05:02 +02002990 pmac_ohci_off(dev);
Stefan Richter7007a072008-10-26 09:50:31 +01002991 fail:
2992 if (err == -ENOMEM)
2993 fw_error("Out of memory\n");
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04002994
2995 return err;
Kristian Høgsberged568912006-12-19 19:58:35 -05002996}
2997
2998static void pci_remove(struct pci_dev *dev)
2999{
3000 struct fw_ohci *ohci;
3001
3002 ohci = pci_get_drvdata(dev);
Kristian Høgsberge254a4b2007-03-07 12:12:38 -05003003 reg_write(ohci, OHCI1394_IntMaskClear, ~0);
3004 flush_writes(ohci);
Kristian Høgsberged568912006-12-19 19:58:35 -05003005 fw_core_remove_card(&ohci->card);
3006
Kristian Høgsbergc781c062007-05-07 20:33:32 -04003007 /*
3008 * FIXME: Fail all pending packets here, now that the upper
3009 * layers can't queue any more.
3010 */
Kristian Høgsberged568912006-12-19 19:58:35 -05003011
3012 software_reset(ohci);
3013 free_irq(dev->irq, ohci);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003014
3015 if (ohci->next_config_rom && ohci->next_config_rom != ohci->config_rom)
3016 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3017 ohci->next_config_rom, ohci->next_config_rom_bus);
3018 if (ohci->config_rom)
3019 dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE,
3020 ohci->config_rom, ohci->config_rom_bus);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003021 dma_free_coherent(ohci->card.device, SELF_ID_BUF_SIZE,
3022 ohci->self_id_cpu, ohci->self_id_bus);
Jay Fenlasona55709b2008-10-22 15:59:42 -04003023 ar_context_release(&ohci->ar_request_ctx);
3024 ar_context_release(&ohci->ar_response_ctx);
3025 context_release(&ohci->at_request_ctx);
3026 context_release(&ohci->at_response_ctx);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003027 kfree(ohci->it_context_list);
3028 kfree(ohci->ir_context_list);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003029 pci_disable_msi(dev);
Kristian Høgsbergd79406d2007-05-09 19:23:15 -04003030 pci_iounmap(dev, ohci->registers);
3031 pci_release_region(dev, 0);
3032 pci_disable_device(dev);
Stefan Richterbd7dee62008-02-24 18:59:55 +01003033 kfree(&ohci->card);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003034 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003035
Kristian Høgsberged568912006-12-19 19:58:35 -05003036 fw_notify("Removed fw-ohci device.\n");
3037}
3038
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003039#ifdef CONFIG_PM
Stefan Richter2ed0f182008-03-01 12:35:29 +01003040static int pci_suspend(struct pci_dev *dev, pm_message_t state)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003041{
Stefan Richter2ed0f182008-03-01 12:35:29 +01003042 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003043 int err;
3044
3045 software_reset(ohci);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003046 free_irq(dev->irq, ohci);
Clemens Ladisch262444e2010-06-05 12:31:25 +02003047 pci_disable_msi(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003048 err = pci_save_state(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003049 if (err) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02003050 fw_error("pci_save_state failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003051 return err;
3052 }
Stefan Richter2ed0f182008-03-01 12:35:29 +01003053 err = pci_set_power_state(dev, pci_choose_state(dev, state));
Stefan Richter55111422007-09-06 09:50:30 +02003054 if (err)
3055 fw_error("pci_set_power_state failed with %d\n", err);
Stefan Richter5da3dac2010-04-02 14:05:02 +02003056 pmac_ohci_off(dev);
Stefan Richterea8d0062008-03-01 02:42:56 +01003057
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003058 return 0;
3059}
3060
Stefan Richter2ed0f182008-03-01 12:35:29 +01003061static int pci_resume(struct pci_dev *dev)
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003062{
Stefan Richter2ed0f182008-03-01 12:35:29 +01003063 struct fw_ohci *ohci = pci_get_drvdata(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003064 int err;
3065
Stefan Richter5da3dac2010-04-02 14:05:02 +02003066 pmac_ohci_on(dev);
Stefan Richter2ed0f182008-03-01 12:35:29 +01003067 pci_set_power_state(dev, PCI_D0);
3068 pci_restore_state(dev);
3069 err = pci_enable_device(dev);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003070 if (err) {
Stefan Richter8a8cea22007-06-09 19:26:22 +02003071 fw_error("pci_enable_device failed\n");
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003072 return err;
3073 }
3074
Kristian Høgsberg0bd243c2007-06-05 19:27:05 -04003075 return ohci_enable(&ohci->card, NULL, 0);
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003076}
3077#endif
3078
Németh Mártona67483d2010-01-10 13:14:26 +01003079static const struct pci_device_id pci_table[] = {
Kristian Høgsberged568912006-12-19 19:58:35 -05003080 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_FIREWIRE_OHCI, ~0) },
3081 { }
3082};
3083
3084MODULE_DEVICE_TABLE(pci, pci_table);
3085
3086static struct pci_driver fw_ohci_pci_driver = {
3087 .name = ohci_driver_name,
3088 .id_table = pci_table,
3089 .probe = pci_probe,
3090 .remove = pci_remove,
Kristian Høgsberg2aef4692007-05-30 19:06:35 -04003091#ifdef CONFIG_PM
3092 .resume = pci_resume,
3093 .suspend = pci_suspend,
3094#endif
Kristian Høgsberged568912006-12-19 19:58:35 -05003095};
3096
3097MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>");
3098MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers");
3099MODULE_LICENSE("GPL");
3100
Olaf Hering1e4c7b02007-05-05 23:17:13 +02003101/* Provide a module alias so root-on-sbp2 initrds don't break. */
3102#ifndef CONFIG_IEEE1394_OHCI1394_MODULE
3103MODULE_ALIAS("ohci1394");
3104#endif
3105
Kristian Høgsberged568912006-12-19 19:58:35 -05003106static int __init fw_ohci_init(void)
3107{
3108 return pci_register_driver(&fw_ohci_pci_driver);
3109}
3110
3111static void __exit fw_ohci_cleanup(void)
3112{
3113 pci_unregister_driver(&fw_ohci_pci_driver);
3114}
3115
3116module_init(fw_ohci_init);
3117module_exit(fw_ohci_cleanup);