blob: 28076c892d7e8320d38b9f61c5f78163148b6a01 [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01002 * Isochronous I/O functionality:
3 * - Isochronous DMA context management
4 * - Isochronous bus resource management (channels, bandwidth), client side
Kristian Høgsberg3038e352006-12-19 19:58:27 -05005 *
Kristian Høgsberg3038e352006-12-19 19:58:27 -05006 * Copyright (C) 2006 Kristian Hoegsberg <krh@bitplanet.net>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
22
Kristian Høgsberg3038e352006-12-19 19:58:27 -050023#include <linux/dma-mapping.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010024#include <linux/errno.h>
Stefan Richter77c9a5d2009-06-05 16:26:18 +020025#include <linux/firewire.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010026#include <linux/firewire-constants.h>
27#include <linux/kernel.h>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050028#include <linux/mm.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010029#include <linux/spinlock.h>
30#include <linux/vmalloc.h>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050031
Stefan Richtere8ca9702009-06-04 21:09:38 +020032#include <asm/byteorder.h>
33
Stefan Richter77c9a5d2009-06-05 16:26:18 +020034#include "core.h"
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010035
36/*
37 * Isochronous DMA context management
38 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -050039
Stefan Richter53dca512008-12-14 21:47:04 +010040int fw_iso_buffer_init(struct fw_iso_buffer *buffer, struct fw_card *card,
41 int page_count, enum dma_data_direction direction)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050042{
Stefan Richter2dbd7d72008-12-14 21:45:45 +010043 int i, j;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050044 dma_addr_t address;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050045
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050046 buffer->page_count = page_count;
47 buffer->direction = direction;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050048
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050049 buffer->pages = kmalloc(page_count * sizeof(buffer->pages[0]),
50 GFP_KERNEL);
51 if (buffer->pages == NULL)
52 goto out;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050053
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050054 for (i = 0; i < buffer->page_count; i++) {
Kristian Høgsberg68be3fa2007-02-16 17:34:48 -050055 buffer->pages[i] = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050056 if (buffer->pages[i] == NULL)
57 goto out_pages;
Stefan Richter373b2ed2007-03-04 14:45:18 +010058
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050059 address = dma_map_page(card->device, buffer->pages[i],
60 0, PAGE_SIZE, direction);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070061 if (dma_mapping_error(card->device, address)) {
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050062 __free_page(buffer->pages[i]);
63 goto out_pages;
64 }
65 set_page_private(buffer->pages[i], address);
Kristian Høgsberg3038e352006-12-19 19:58:27 -050066 }
67
68 return 0;
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -050069
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050070 out_pages:
71 for (j = 0; j < i; j++) {
72 address = page_private(buffer->pages[j]);
73 dma_unmap_page(card->device, address,
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -050074 PAGE_SIZE, DMA_TO_DEVICE);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050075 __free_page(buffer->pages[j]);
76 }
77 kfree(buffer->pages);
78 out:
79 buffer->pages = NULL;
Stefan Richtere1eff7a2009-02-03 17:55:19 +010080
Stefan Richter2dbd7d72008-12-14 21:45:45 +010081 return -ENOMEM;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050082}
83
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050084int fw_iso_buffer_map(struct fw_iso_buffer *buffer, struct vm_area_struct *vma)
85{
86 unsigned long uaddr;
Stefan Richtere1eff7a2009-02-03 17:55:19 +010087 int i, err;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050088
89 uaddr = vma->vm_start;
90 for (i = 0; i < buffer->page_count; i++) {
Stefan Richtere1eff7a2009-02-03 17:55:19 +010091 err = vm_insert_page(vma, uaddr, buffer->pages[i]);
92 if (err)
93 return err;
94
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050095 uaddr += PAGE_SIZE;
96 }
97
98 return 0;
99}
100
101void fw_iso_buffer_destroy(struct fw_iso_buffer *buffer,
102 struct fw_card *card)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500103{
104 int i;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500105 dma_addr_t address;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500106
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500107 for (i = 0; i < buffer->page_count; i++) {
108 address = page_private(buffer->pages[i]);
109 dma_unmap_page(card->device, address,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500110 PAGE_SIZE, DMA_TO_DEVICE);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500111 __free_page(buffer->pages[i]);
112 }
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500113
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500114 kfree(buffer->pages);
115 buffer->pages = NULL;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500116}
117
Stefan Richter53dca512008-12-14 21:47:04 +0100118struct fw_iso_context *fw_iso_context_create(struct fw_card *card,
119 int type, int channel, int speed, size_t header_size,
120 fw_iso_callback_t callback, void *callback_data)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500121{
122 struct fw_iso_context *ctx;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500123
Stefan Richter4817ed22008-12-21 16:39:46 +0100124 ctx = card->driver->allocate_iso_context(card,
125 type, channel, header_size);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500126 if (IS_ERR(ctx))
127 return ctx;
128
129 ctx->card = card;
130 ctx->type = type;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500131 ctx->channel = channel;
132 ctx->speed = speed;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500133 ctx->header_size = header_size;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500134 ctx->callback = callback;
135 ctx->callback_data = callback_data;
136
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500137 return ctx;
138}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500139
140void fw_iso_context_destroy(struct fw_iso_context *ctx)
141{
142 struct fw_card *card = ctx->card;
143
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500144 card->driver->free_iso_context(ctx);
145}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500146
Stefan Richter53dca512008-12-14 21:47:04 +0100147int fw_iso_context_start(struct fw_iso_context *ctx,
148 int cycle, int sync, int tags)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500149{
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400150 return ctx->card->driver->start_iso(ctx, cycle, sync, tags);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500151}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500152
Stefan Richter53dca512008-12-14 21:47:04 +0100153int fw_iso_context_queue(struct fw_iso_context *ctx,
154 struct fw_iso_packet *packet,
155 struct fw_iso_buffer *buffer,
156 unsigned long payload)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500157{
158 struct fw_card *card = ctx->card;
159
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500160 return card->driver->queue_iso(ctx, packet, buffer, payload);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500161}
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500162
Stefan Richter53dca512008-12-14 21:47:04 +0100163int fw_iso_context_stop(struct fw_iso_context *ctx)
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500164{
165 return ctx->card->driver->stop_iso(ctx);
166}
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100167
168/*
169 * Isochronous bus resource management (channels, bandwidth), client side
170 */
171
172static int manage_bandwidth(struct fw_card *card, int irm_id, int generation,
173 int bandwidth, bool allocate)
174{
175 __be32 data[2];
176 int try, new, old = allocate ? BANDWIDTH_AVAILABLE_INITIAL : 0;
177
178 /*
179 * On a 1394a IRM with low contention, try < 1 is enough.
180 * On a 1394-1995 IRM, we need at least try < 2.
181 * Let's just do try < 5.
182 */
183 for (try = 0; try < 5; try++) {
184 new = allocate ? old - bandwidth : old + bandwidth;
185 if (new < 0 || new > BANDWIDTH_AVAILABLE_INITIAL)
186 break;
187
188 data[0] = cpu_to_be32(old);
189 data[1] = cpu_to_be32(new);
190 switch (fw_run_transaction(card, TCODE_LOCK_COMPARE_SWAP,
191 irm_id, generation, SCODE_100,
192 CSR_REGISTER_BASE + CSR_BANDWIDTH_AVAILABLE,
193 data, sizeof(data))) {
194 case RCODE_GENERATION:
195 /* A generation change frees all bandwidth. */
196 return allocate ? -EAGAIN : bandwidth;
197
198 case RCODE_COMPLETE:
199 if (be32_to_cpup(data) == old)
200 return bandwidth;
201
202 old = be32_to_cpup(data);
203 /* Fall through. */
204 }
205 }
206
207 return -EIO;
208}
209
210static int manage_channel(struct fw_card *card, int irm_id, int generation,
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100211 u32 channels_mask, u64 offset, bool allocate)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100212{
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100213 __be32 data[2], c, all, old;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100214 int i, retry = 5;
215
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100216 old = all = allocate ? cpu_to_be32(~0) : 0;
217
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100218 for (i = 0; i < 32; i++) {
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100219 if (!(channels_mask & 1 << i))
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100220 continue;
221
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100222 c = cpu_to_be32(1 << (31 - i));
223 if ((old & c) != (all & c))
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100224 continue;
225
226 data[0] = old;
227 data[1] = old ^ c;
228 switch (fw_run_transaction(card, TCODE_LOCK_COMPARE_SWAP,
229 irm_id, generation, SCODE_100,
230 offset, data, sizeof(data))) {
231 case RCODE_GENERATION:
232 /* A generation change frees all channels. */
233 return allocate ? -EAGAIN : i;
234
235 case RCODE_COMPLETE:
236 if (data[0] == old)
237 return i;
238
239 old = data[0];
240
241 /* Is the IRM 1394a-2000 compliant? */
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100242 if ((data[0] & c) == (data[1] & c))
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100243 continue;
244
245 /* 1394-1995 IRM, fall through to retry. */
246 default:
247 if (retry--)
248 i--;
249 }
250 }
251
252 return -EIO;
253}
254
255static void deallocate_channel(struct fw_card *card, int irm_id,
256 int generation, int channel)
257{
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100258 u32 mask;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100259 u64 offset;
260
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100261 mask = channel < 32 ? 1 << channel : 1 << (channel - 32);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100262 offset = channel < 32 ? CSR_REGISTER_BASE + CSR_CHANNELS_AVAILABLE_HI :
263 CSR_REGISTER_BASE + CSR_CHANNELS_AVAILABLE_LO;
264
265 manage_channel(card, irm_id, generation, mask, offset, false);
266}
267
268/**
269 * fw_iso_resource_manage - Allocate or deallocate a channel and/or bandwidth
270 *
271 * In parameters: card, generation, channels_mask, bandwidth, allocate
272 * Out parameters: channel, bandwidth
273 * This function blocks (sleeps) during communication with the IRM.
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100274 *
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100275 * Allocates or deallocates at most one channel out of channels_mask.
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100276 * channels_mask is a bitfield with MSB for channel 63 and LSB for channel 0.
277 * (Note, the IRM's CHANNELS_AVAILABLE is a big-endian bitfield with MSB for
278 * channel 0 and LSB for channel 63.)
279 * Allocates or deallocates as many bandwidth allocation units as specified.
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100280 *
281 * Returns channel < 0 if no channel was allocated or deallocated.
282 * Returns bandwidth = 0 if no bandwidth was allocated or deallocated.
283 *
284 * If generation is stale, deallocations succeed but allocations fail with
285 * channel = -EAGAIN.
286 *
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100287 * If channel allocation fails, no bandwidth will be allocated either.
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100288 * If bandwidth allocation fails, no channel will be allocated either.
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100289 * But deallocations of channel and bandwidth are tried independently
290 * of each other's success.
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100291 */
292void fw_iso_resource_manage(struct fw_card *card, int generation,
293 u64 channels_mask, int *channel, int *bandwidth,
294 bool allocate)
295{
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100296 u32 channels_hi = channels_mask; /* channels 31...0 */
297 u32 channels_lo = channels_mask >> 32; /* channels 63...32 */
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100298 int irm_id, ret, c = -EINVAL;
299
300 spin_lock_irq(&card->lock);
301 irm_id = card->irm_node->node_id;
302 spin_unlock_irq(&card->lock);
303
304 if (channels_hi)
305 c = manage_channel(card, irm_id, generation, channels_hi,
306 CSR_REGISTER_BASE + CSR_CHANNELS_AVAILABLE_HI, allocate);
307 if (channels_lo && c < 0) {
308 c = manage_channel(card, irm_id, generation, channels_lo,
309 CSR_REGISTER_BASE + CSR_CHANNELS_AVAILABLE_LO, allocate);
310 if (c >= 0)
311 c += 32;
312 }
313 *channel = c;
314
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100315 if (allocate && channels_mask != 0 && c < 0)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100316 *bandwidth = 0;
317
318 if (*bandwidth == 0)
319 return;
320
321 ret = manage_bandwidth(card, irm_id, generation, *bandwidth, allocate);
322 if (ret < 0)
323 *bandwidth = 0;
324
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100325 if (allocate && ret < 0 && c >= 0) {
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100326 deallocate_channel(card, irm_id, generation, c);
327 *channel = ret;
328 }
329}