blob: df8a56a979b996c0c1a48e19c7ef84739b7e2611 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Kristian Høgsbergc781c062007-05-07 20:33:32 -04002/*
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01003 * Isochronous I/O functionality:
4 * - Isochronous DMA context management
5 * - Isochronous bus resource management (channels, bandwidth), client side
Kristian Høgsberg3038e352006-12-19 19:58:27 -05006 *
Kristian Høgsberg3038e352006-12-19 19:58:27 -05007 * Copyright (C) 2006 Kristian Hoegsberg <krh@bitplanet.net>
Kristian Høgsberg3038e352006-12-19 19:58:27 -05008 */
9
Kristian Høgsberg3038e352006-12-19 19:58:27 -050010#include <linux/dma-mapping.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010011#include <linux/errno.h>
Stefan Richter77c9a5d2009-06-05 16:26:18 +020012#include <linux/firewire.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010013#include <linux/firewire-constants.h>
14#include <linux/kernel.h>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050015#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010017#include <linux/spinlock.h>
18#include <linux/vmalloc.h>
Paul Gortmaker823467e2011-07-10 12:16:32 -040019#include <linux/export.h>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050020
Stefan Richtere8ca9702009-06-04 21:09:38 +020021#include <asm/byteorder.h>
22
Stefan Richter77c9a5d2009-06-05 16:26:18 +020023#include "core.h"
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010024
25/*
26 * Isochronous DMA context management
27 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -050028
Stefan Richter0b6c4852012-04-09 20:51:18 +020029int fw_iso_buffer_alloc(struct fw_iso_buffer *buffer, int page_count)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050030{
Stefan Richter0b6c4852012-04-09 20:51:18 +020031 int i;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050032
Stefan Richter0b6c4852012-04-09 20:51:18 +020033 buffer->page_count = 0;
34 buffer->page_count_mapped = 0;
Kees Cook6da2ec52018-06-12 13:55:00 -070035 buffer->pages = kmalloc_array(page_count, sizeof(buffer->pages[0]),
36 GFP_KERNEL);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050037 if (buffer->pages == NULL)
Stefan Richter0b6c4852012-04-09 20:51:18 +020038 return -ENOMEM;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050039
Stefan Richter0b6c4852012-04-09 20:51:18 +020040 for (i = 0; i < page_count; i++) {
Kristian Høgsberg68be3fa2007-02-16 17:34:48 -050041 buffer->pages[i] = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050042 if (buffer->pages[i] == NULL)
Stefan Richter0b6c4852012-04-09 20:51:18 +020043 break;
44 }
45 buffer->page_count = i;
46 if (i < page_count) {
47 fw_iso_buffer_destroy(buffer, NULL);
48 return -ENOMEM;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050049 }
50
51 return 0;
Stefan Richter0b6c4852012-04-09 20:51:18 +020052}
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -050053
Stefan Richter0b6c4852012-04-09 20:51:18 +020054int fw_iso_buffer_map_dma(struct fw_iso_buffer *buffer, struct fw_card *card,
55 enum dma_data_direction direction)
56{
57 dma_addr_t address;
58 int i;
59
60 buffer->direction = direction;
61
62 for (i = 0; i < buffer->page_count; i++) {
63 address = dma_map_page(card->device, buffer->pages[i],
64 0, PAGE_SIZE, direction);
65 if (dma_mapping_error(card->device, address))
66 break;
67
68 set_page_private(buffer->pages[i], address);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050069 }
Stefan Richter0b6c4852012-04-09 20:51:18 +020070 buffer->page_count_mapped = i;
71 if (i < buffer->page_count)
72 return -ENOMEM;
Stefan Richtere1eff7a2009-02-03 17:55:19 +010073
Stefan Richter0b6c4852012-04-09 20:51:18 +020074 return 0;
75}
76
77int fw_iso_buffer_init(struct fw_iso_buffer *buffer, struct fw_card *card,
78 int page_count, enum dma_data_direction direction)
79{
80 int ret;
81
82 ret = fw_iso_buffer_alloc(buffer, page_count);
83 if (ret < 0)
84 return ret;
85
86 ret = fw_iso_buffer_map_dma(buffer, card, direction);
87 if (ret < 0)
88 fw_iso_buffer_destroy(buffer, card);
89
90 return ret;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050091}
Jay Fenlasonc76acec2009-05-18 13:08:06 -040092EXPORT_SYMBOL(fw_iso_buffer_init);
Kristian Høgsberg3038e352006-12-19 19:58:27 -050093
Stefan Richter0b6c4852012-04-09 20:51:18 +020094int fw_iso_buffer_map_vma(struct fw_iso_buffer *buffer,
95 struct vm_area_struct *vma)
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050096{
Souptick Joarder22660db2019-05-13 17:22:03 -070097 return vm_map_pages_zero(vma, buffer->pages,
98 buffer->page_count);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050099}
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
Stefan Richter0b6c4852012-04-09 20:51:18 +0200107 for (i = 0; i < buffer->page_count_mapped; i++) {
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500108 address = page_private(buffer->pages[i]);
109 dma_unmap_page(card->device, address,
Stefan Richter29ad14c2009-06-15 00:38:50 +0200110 PAGE_SIZE, buffer->direction);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500111 }
Stefan Richter0b6c4852012-04-09 20:51:18 +0200112 for (i = 0; i < buffer->page_count; i++)
113 __free_page(buffer->pages[i]);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500114
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500115 kfree(buffer->pages);
116 buffer->pages = NULL;
Stefan Richter0b6c4852012-04-09 20:51:18 +0200117 buffer->page_count = 0;
118 buffer->page_count_mapped = 0;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500119}
Jay Fenlasonc76acec2009-05-18 13:08:06 -0400120EXPORT_SYMBOL(fw_iso_buffer_destroy);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500121
Stefan Richter872e3302010-07-29 18:19:22 +0200122/* Convert DMA address to offset into virtually contiguous buffer. */
123size_t fw_iso_buffer_lookup(struct fw_iso_buffer *buffer, dma_addr_t completed)
124{
Clemens Ladisch9d23f9e2012-06-13 22:28:24 +0200125 size_t i;
Stefan Richter872e3302010-07-29 18:19:22 +0200126 dma_addr_t address;
127 ssize_t offset;
128
129 for (i = 0; i < buffer->page_count; i++) {
130 address = page_private(buffer->pages[i]);
131 offset = (ssize_t)completed - (ssize_t)address;
132 if (offset > 0 && offset <= PAGE_SIZE)
133 return (i << PAGE_SHIFT) + offset;
134 }
135
136 return 0;
137}
138
Stefan Richter53dca512008-12-14 21:47:04 +0100139struct fw_iso_context *fw_iso_context_create(struct fw_card *card,
140 int type, int channel, int speed, size_t header_size,
141 fw_iso_callback_t callback, void *callback_data)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500142{
143 struct fw_iso_context *ctx;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500144
Stefan Richter4817ed22008-12-21 16:39:46 +0100145 ctx = card->driver->allocate_iso_context(card,
146 type, channel, header_size);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500147 if (IS_ERR(ctx))
148 return ctx;
149
150 ctx->card = card;
151 ctx->type = type;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500152 ctx->channel = channel;
153 ctx->speed = speed;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500154 ctx->header_size = header_size;
Stefan Richter872e3302010-07-29 18:19:22 +0200155 ctx->callback.sc = callback;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500156 ctx->callback_data = callback_data;
157
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500158 return ctx;
159}
Jay Fenlasonc76acec2009-05-18 13:08:06 -0400160EXPORT_SYMBOL(fw_iso_context_create);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500161
162void fw_iso_context_destroy(struct fw_iso_context *ctx)
163{
Stefan Richter872e3302010-07-29 18:19:22 +0200164 ctx->card->driver->free_iso_context(ctx);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500165}
Jay Fenlasonc76acec2009-05-18 13:08:06 -0400166EXPORT_SYMBOL(fw_iso_context_destroy);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500167
Stefan Richter53dca512008-12-14 21:47:04 +0100168int fw_iso_context_start(struct fw_iso_context *ctx,
169 int cycle, int sync, int tags)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500170{
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400171 return ctx->card->driver->start_iso(ctx, cycle, sync, tags);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500172}
Jay Fenlasonc76acec2009-05-18 13:08:06 -0400173EXPORT_SYMBOL(fw_iso_context_start);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500174
Stefan Richter872e3302010-07-29 18:19:22 +0200175int fw_iso_context_set_channels(struct fw_iso_context *ctx, u64 *channels)
176{
177 return ctx->card->driver->set_iso_channels(ctx, channels);
178}
179
Stefan Richter53dca512008-12-14 21:47:04 +0100180int fw_iso_context_queue(struct fw_iso_context *ctx,
181 struct fw_iso_packet *packet,
182 struct fw_iso_buffer *buffer,
183 unsigned long payload)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500184{
Stefan Richter872e3302010-07-29 18:19:22 +0200185 return ctx->card->driver->queue_iso(ctx, packet, buffer, payload);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500186}
Jay Fenlasonc76acec2009-05-18 13:08:06 -0400187EXPORT_SYMBOL(fw_iso_context_queue);
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500188
Clemens Ladisch13882a82011-05-02 09:33:56 +0200189void fw_iso_context_queue_flush(struct fw_iso_context *ctx)
190{
191 ctx->card->driver->flush_queue_iso(ctx);
192}
193EXPORT_SYMBOL(fw_iso_context_queue_flush);
194
Clemens Ladischd1bbd202012-03-18 19:06:39 +0100195int fw_iso_context_flush_completions(struct fw_iso_context *ctx)
196{
197 return ctx->card->driver->flush_iso_completions(ctx);
198}
199EXPORT_SYMBOL(fw_iso_context_flush_completions);
200
Stefan Richter53dca512008-12-14 21:47:04 +0100201int fw_iso_context_stop(struct fw_iso_context *ctx)
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500202{
203 return ctx->card->driver->stop_iso(ctx);
204}
Jay Fenlasonc76acec2009-05-18 13:08:06 -0400205EXPORT_SYMBOL(fw_iso_context_stop);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100206
207/*
208 * Isochronous bus resource management (channels, bandwidth), client side
209 */
210
211static int manage_bandwidth(struct fw_card *card, int irm_id, int generation,
Stefan Richterf30e6d32011-04-22 15:13:54 +0200212 int bandwidth, bool allocate)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100213{
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100214 int try, new, old = allocate ? BANDWIDTH_AVAILABLE_INITIAL : 0;
Stefan Richterf30e6d32011-04-22 15:13:54 +0200215 __be32 data[2];
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100216
217 /*
218 * On a 1394a IRM with low contention, try < 1 is enough.
219 * On a 1394-1995 IRM, we need at least try < 2.
220 * Let's just do try < 5.
221 */
222 for (try = 0; try < 5; try++) {
223 new = allocate ? old - bandwidth : old + bandwidth;
224 if (new < 0 || new > BANDWIDTH_AVAILABLE_INITIAL)
Clemens Ladischd6372b62010-04-12 10:35:18 +0200225 return -EBUSY;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100226
227 data[0] = cpu_to_be32(old);
228 data[1] = cpu_to_be32(new);
229 switch (fw_run_transaction(card, TCODE_LOCK_COMPARE_SWAP,
230 irm_id, generation, SCODE_100,
231 CSR_REGISTER_BASE + CSR_BANDWIDTH_AVAILABLE,
Stefan Richter1821bc12009-09-05 13:23:49 +0200232 data, 8)) {
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100233 case RCODE_GENERATION:
234 /* A generation change frees all bandwidth. */
235 return allocate ? -EAGAIN : bandwidth;
236
237 case RCODE_COMPLETE:
238 if (be32_to_cpup(data) == old)
239 return bandwidth;
240
241 old = be32_to_cpup(data);
242 /* Fall through. */
243 }
244 }
245
246 return -EIO;
247}
248
249static int manage_channel(struct fw_card *card, int irm_id, int generation,
Stefan Richterf30e6d32011-04-22 15:13:54 +0200250 u32 channels_mask, u64 offset, bool allocate)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100251{
Clemens Ladisch5aaffc62011-01-31 11:58:58 +0100252 __be32 bit, all, old;
Stefan Richterf30e6d32011-04-22 15:13:54 +0200253 __be32 data[2];
Clemens Ladisch5aaffc62011-01-31 11:58:58 +0100254 int channel, ret = -EIO, retry = 5;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100255
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100256 old = all = allocate ? cpu_to_be32(~0) : 0;
257
Clemens Ladisch5aaffc62011-01-31 11:58:58 +0100258 for (channel = 0; channel < 32; channel++) {
259 if (!(channels_mask & 1 << channel))
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100260 continue;
261
Clemens Ladischd6372b62010-04-12 10:35:18 +0200262 ret = -EBUSY;
263
Clemens Ladisch5aaffc62011-01-31 11:58:58 +0100264 bit = cpu_to_be32(1 << (31 - channel));
265 if ((old & bit) != (all & bit))
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100266 continue;
267
268 data[0] = old;
Clemens Ladisch5aaffc62011-01-31 11:58:58 +0100269 data[1] = old ^ bit;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100270 switch (fw_run_transaction(card, TCODE_LOCK_COMPARE_SWAP,
271 irm_id, generation, SCODE_100,
Stefan Richter1821bc12009-09-05 13:23:49 +0200272 offset, data, 8)) {
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100273 case RCODE_GENERATION:
274 /* A generation change frees all channels. */
Clemens Ladisch5aaffc62011-01-31 11:58:58 +0100275 return allocate ? -EAGAIN : channel;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100276
277 case RCODE_COMPLETE:
278 if (data[0] == old)
Clemens Ladisch5aaffc62011-01-31 11:58:58 +0100279 return channel;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100280
281 old = data[0];
282
283 /* Is the IRM 1394a-2000 compliant? */
Clemens Ladisch5aaffc62011-01-31 11:58:58 +0100284 if ((data[0] & bit) == (data[1] & bit))
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100285 continue;
286
Gustavo A. R. Silvaeba61202019-02-11 11:48:21 -0600287 /* fall through - It's a 1394-1995 IRM, retry. */
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100288 default:
Clemens Ladisch3a1f0a02010-04-12 10:35:05 +0200289 if (retry) {
290 retry--;
Clemens Ladisch5aaffc62011-01-31 11:58:58 +0100291 channel--;
Clemens Ladischd6372b62010-04-12 10:35:18 +0200292 } else {
293 ret = -EIO;
Clemens Ladisch3a1f0a02010-04-12 10:35:05 +0200294 }
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100295 }
296 }
297
Clemens Ladischd6372b62010-04-12 10:35:18 +0200298 return ret;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100299}
300
301static void deallocate_channel(struct fw_card *card, int irm_id,
Stefan Richterf30e6d32011-04-22 15:13:54 +0200302 int generation, int channel)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100303{
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100304 u32 mask;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100305 u64 offset;
306
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100307 mask = channel < 32 ? 1 << channel : 1 << (channel - 32);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100308 offset = channel < 32 ? CSR_REGISTER_BASE + CSR_CHANNELS_AVAILABLE_HI :
309 CSR_REGISTER_BASE + CSR_CHANNELS_AVAILABLE_LO;
310
Stefan Richterf30e6d32011-04-22 15:13:54 +0200311 manage_channel(card, irm_id, generation, mask, offset, false);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100312}
313
314/**
Stefan Richter656b7af2010-07-07 13:26:18 +0200315 * fw_iso_resource_manage() - Allocate or deallocate a channel and/or bandwidth
Randy Dunlap48f02b82018-09-04 17:02:22 -0700316 * @card: card interface for this action
317 * @generation: bus generation
318 * @channels_mask: bitmask for channel allocation
319 * @channel: pointer for returning channel allocation result
320 * @bandwidth: pointer for returning bandwidth allocation result
321 * @allocate: whether to allocate (true) or deallocate (false)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100322 *
323 * In parameters: card, generation, channels_mask, bandwidth, allocate
324 * Out parameters: channel, bandwidth
Randy Dunlap48f02b82018-09-04 17:02:22 -0700325 *
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100326 * This function blocks (sleeps) during communication with the IRM.
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100327 *
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100328 * Allocates or deallocates at most one channel out of channels_mask.
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100329 * channels_mask is a bitfield with MSB for channel 63 and LSB for channel 0.
330 * (Note, the IRM's CHANNELS_AVAILABLE is a big-endian bitfield with MSB for
331 * channel 0 and LSB for channel 63.)
332 * Allocates or deallocates as many bandwidth allocation units as specified.
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100333 *
334 * Returns channel < 0 if no channel was allocated or deallocated.
335 * Returns bandwidth = 0 if no bandwidth was allocated or deallocated.
336 *
337 * If generation is stale, deallocations succeed but allocations fail with
338 * channel = -EAGAIN.
339 *
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100340 * If channel allocation fails, no bandwidth will be allocated either.
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100341 * If bandwidth allocation fails, no channel will be allocated either.
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100342 * But deallocations of channel and bandwidth are tried independently
343 * of each other's success.
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100344 */
345void fw_iso_resource_manage(struct fw_card *card, int generation,
346 u64 channels_mask, int *channel, int *bandwidth,
Stefan Richterf30e6d32011-04-22 15:13:54 +0200347 bool allocate)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100348{
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100349 u32 channels_hi = channels_mask; /* channels 31...0 */
350 u32 channels_lo = channels_mask >> 32; /* channels 63...32 */
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100351 int irm_id, ret, c = -EINVAL;
352
353 spin_lock_irq(&card->lock);
354 irm_id = card->irm_node->node_id;
355 spin_unlock_irq(&card->lock);
356
357 if (channels_hi)
358 c = manage_channel(card, irm_id, generation, channels_hi,
Stefan Richter6fdc0372009-06-20 13:23:59 +0200359 CSR_REGISTER_BASE + CSR_CHANNELS_AVAILABLE_HI,
Stefan Richterf30e6d32011-04-22 15:13:54 +0200360 allocate);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100361 if (channels_lo && c < 0) {
362 c = manage_channel(card, irm_id, generation, channels_lo,
Stefan Richter6fdc0372009-06-20 13:23:59 +0200363 CSR_REGISTER_BASE + CSR_CHANNELS_AVAILABLE_LO,
Stefan Richterf30e6d32011-04-22 15:13:54 +0200364 allocate);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100365 if (c >= 0)
366 c += 32;
367 }
368 *channel = c;
369
Stefan Richter5d9cb7d272009-01-08 23:07:40 +0100370 if (allocate && channels_mask != 0 && c < 0)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100371 *bandwidth = 0;
372
373 if (*bandwidth == 0)
374 return;
375
Stefan Richterf30e6d32011-04-22 15:13:54 +0200376 ret = manage_bandwidth(card, irm_id, generation, *bandwidth, allocate);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100377 if (ret < 0)
378 *bandwidth = 0;
379
Clemens Ladischcf36df62010-03-15 13:20:32 +0100380 if (allocate && ret < 0) {
381 if (c >= 0)
Stefan Richterf30e6d32011-04-22 15:13:54 +0200382 deallocate_channel(card, irm_id, generation, c);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100383 *channel = ret;
384 }
385}
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100386EXPORT_SYMBOL(fw_iso_resource_manage);