firewire: cdev: add ioctls for isochronous resource management
[deliverable/linux.git] / drivers / firewire / fw-cdev.c
CommitLineData
c781c06d
KH
1/*
2 * Char device for device raw access
19a15b93 3 *
c781c06d 4 * Copyright (C) 2005-2007 Kristian Hoegsberg <krh@bitplanet.net>
19a15b93
KH
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
be5bbd67
SR
21#include <linux/compat.h>
22#include <linux/delay.h>
23#include <linux/device.h>
24#include <linux/errno.h>
25#include <linux/firewire-cdev.h>
26#include <linux/idr.h>
b1bda4cd 27#include <linux/jiffies.h>
19a15b93 28#include <linux/kernel.h>
fb443036 29#include <linux/kref.h>
be5bbd67
SR
30#include <linux/mm.h>
31#include <linux/module.h>
d67cfb96 32#include <linux/mutex.h>
19a15b93 33#include <linux/poll.h>
a64408b9 34#include <linux/preempt.h>
cf417e54 35#include <linux/spinlock.h>
be5bbd67
SR
36#include <linux/time.h>
37#include <linux/vmalloc.h>
38#include <linux/wait.h>
b1bda4cd 39#include <linux/workqueue.h>
be5bbd67 40
a64408b9 41#include <asm/system.h>
19a15b93 42#include <asm/uaccess.h>
be5bbd67 43
19a15b93 44#include "fw-device.h"
be5bbd67
SR
45#include "fw-topology.h"
46#include "fw-transaction.h"
19a15b93 47
19a15b93 48struct client {
344bbc4d 49 u32 version;
19a15b93 50 struct fw_device *device;
45ee3199 51
19a15b93 52 spinlock_t lock;
45ee3199
JF
53 bool in_shutdown;
54 struct idr resource_idr;
19a15b93 55 struct list_head event_list;
19a15b93 56 wait_queue_head_t wait;
da8ecffa 57 u64 bus_reset_closure;
9aad8125 58
19a15b93 59 struct fw_iso_context *iso_context;
abaa5743 60 u64 iso_closure;
9aad8125
KH
61 struct fw_iso_buffer buffer;
62 unsigned long vm_start;
97bd9efa
KH
63
64 struct list_head link;
fb443036 65 struct kref kref;
19a15b93
KH
66};
67
fb443036
SR
68static inline void client_get(struct client *client)
69{
70 kref_get(&client->kref);
71}
72
73static void client_release(struct kref *kref)
74{
75 struct client *client = container_of(kref, struct client, kref);
76
77 fw_device_put(client->device);
78 kfree(client);
79}
80
81static void client_put(struct client *client)
82{
83 kref_put(&client->kref, client_release);
84}
85
97c18b7f
SR
86struct client_resource;
87typedef void (*client_resource_release_fn_t)(struct client *,
88 struct client_resource *);
89struct client_resource {
90 client_resource_release_fn_t release;
91 int handle;
92};
93
94struct address_handler_resource {
95 struct client_resource resource;
96 struct fw_address_handler handler;
97 __u64 closure;
98 struct client *client;
99};
100
101struct outbound_transaction_resource {
102 struct client_resource resource;
103 struct fw_transaction transaction;
104};
105
106struct inbound_transaction_resource {
107 struct client_resource resource;
108 struct fw_request *request;
109 void *data;
110 size_t length;
111};
112
113struct descriptor_resource {
114 struct client_resource resource;
115 struct fw_descriptor descriptor;
116 u32 data[0];
117};
118
b1bda4cd
JFSR
119struct iso_resource {
120 struct client_resource resource;
121 struct client *client;
122 /* Schedule work and access todo only with client->lock held. */
123 struct delayed_work work;
124 enum {ISO_RES_ALLOC, ISO_RES_REALLOC, ISO_RES_DEALLOC,} todo;
125 int generation;
126 u64 channels;
127 s32 bandwidth;
128 struct iso_resource_event *e_alloc, *e_dealloc;
129};
130
131static void schedule_iso_resource(struct iso_resource *);
132static void release_iso_resource(struct client *, struct client_resource *);
133
97c18b7f
SR
134/*
135 * dequeue_event() just kfree()'s the event, so the event has to be
136 * the first field in a struct XYZ_event.
137 */
138struct event {
139 struct { void *data; size_t size; } v[2];
140 struct list_head link;
141};
142
143struct bus_reset_event {
144 struct event event;
145 struct fw_cdev_event_bus_reset reset;
146};
147
148struct outbound_transaction_event {
149 struct event event;
150 struct client *client;
151 struct outbound_transaction_resource r;
152 struct fw_cdev_event_response response;
153};
154
155struct inbound_transaction_event {
156 struct event event;
157 struct fw_cdev_event_request request;
158};
159
160struct iso_interrupt_event {
161 struct event event;
162 struct fw_cdev_event_iso_interrupt interrupt;
163};
164
b1bda4cd
JFSR
165struct iso_resource_event {
166 struct event event;
167 struct fw_cdev_event_iso_resource resource;
168};
169
53dca511 170static inline void __user *u64_to_uptr(__u64 value)
19a15b93
KH
171{
172 return (void __user *)(unsigned long)value;
173}
174
53dca511 175static inline __u64 uptr_to_u64(void __user *ptr)
19a15b93
KH
176{
177 return (__u64)(unsigned long)ptr;
178}
179
180static int fw_device_op_open(struct inode *inode, struct file *file)
181{
182 struct fw_device *device;
183 struct client *client;
184
96b19062 185 device = fw_device_get_by_devt(inode->i_rdev);
a3aca3da
KH
186 if (device == NULL)
187 return -ENODEV;
19a15b93 188
551f4cb9
JF
189 if (fw_device_is_shutdown(device)) {
190 fw_device_put(device);
191 return -ENODEV;
192 }
193
2d826cc5 194 client = kzalloc(sizeof(*client), GFP_KERNEL);
96b19062
SR
195 if (client == NULL) {
196 fw_device_put(device);
19a15b93 197 return -ENOMEM;
96b19062 198 }
19a15b93 199
96b19062 200 client->device = device;
19a15b93 201 spin_lock_init(&client->lock);
45ee3199
JF
202 idr_init(&client->resource_idr);
203 INIT_LIST_HEAD(&client->event_list);
19a15b93 204 init_waitqueue_head(&client->wait);
fb443036 205 kref_init(&client->kref);
19a15b93
KH
206
207 file->private_data = client;
208
d67cfb96 209 mutex_lock(&device->client_list_mutex);
97bd9efa 210 list_add_tail(&client->link, &device->client_list);
d67cfb96 211 mutex_unlock(&device->client_list_mutex);
97bd9efa 212
19a15b93
KH
213 return 0;
214}
215
216static void queue_event(struct client *client, struct event *event,
217 void *data0, size_t size0, void *data1, size_t size1)
218{
219 unsigned long flags;
220
221 event->v[0].data = data0;
222 event->v[0].size = size0;
223 event->v[1].data = data1;
224 event->v[1].size = size1;
225
226 spin_lock_irqsave(&client->lock, flags);
45ee3199
JF
227 if (client->in_shutdown)
228 kfree(event);
229 else
230 list_add_tail(&event->link, &client->event_list);
19a15b93 231 spin_unlock_irqrestore(&client->lock, flags);
83431cba
JF
232
233 wake_up_interruptible(&client->wait);
19a15b93
KH
234}
235
53dca511
SR
236static int dequeue_event(struct client *client,
237 char __user *buffer, size_t count)
19a15b93
KH
238{
239 unsigned long flags;
240 struct event *event;
241 size_t size, total;
2dbd7d7e 242 int i, ret;
19a15b93 243
2dbd7d7e
SR
244 ret = wait_event_interruptible(client->wait,
245 !list_empty(&client->event_list) ||
246 fw_device_is_shutdown(client->device));
247 if (ret < 0)
248 return ret;
19a15b93 249
2603bf21
KH
250 if (list_empty(&client->event_list) &&
251 fw_device_is_shutdown(client->device))
252 return -ENODEV;
19a15b93 253
2603bf21 254 spin_lock_irqsave(&client->lock, flags);
a459b8ab 255 event = list_first_entry(&client->event_list, struct event, link);
19a15b93 256 list_del(&event->link);
19a15b93
KH
257 spin_unlock_irqrestore(&client->lock, flags);
258
19a15b93
KH
259 total = 0;
260 for (i = 0; i < ARRAY_SIZE(event->v) && total < count; i++) {
261 size = min(event->v[i].size, count - total);
2603bf21 262 if (copy_to_user(buffer + total, event->v[i].data, size)) {
2dbd7d7e 263 ret = -EFAULT;
19a15b93 264 goto out;
2603bf21 265 }
19a15b93
KH
266 total += size;
267 }
2dbd7d7e 268 ret = total;
19a15b93
KH
269
270 out:
271 kfree(event);
272
2dbd7d7e 273 return ret;
19a15b93
KH
274}
275
53dca511
SR
276static ssize_t fw_device_op_read(struct file *file, char __user *buffer,
277 size_t count, loff_t *offset)
19a15b93
KH
278{
279 struct client *client = file->private_data;
280
281 return dequeue_event(client, buffer, count);
282}
283
53dca511
SR
284static void fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
285 struct client *client)
344bbc4d 286{
da8ecffa 287 struct fw_card *card = client->device->card;
cf417e54
JF
288 unsigned long flags;
289
290 spin_lock_irqsave(&card->lock, flags);
344bbc4d 291
da8ecffa 292 event->closure = client->bus_reset_closure;
344bbc4d 293 event->type = FW_CDEV_EVENT_BUS_RESET;
cf5a56ac 294 event->generation = client->device->generation;
da8ecffa 295 event->node_id = client->device->node_id;
344bbc4d
KH
296 event->local_node_id = card->local_node->node_id;
297 event->bm_node_id = 0; /* FIXME: We don't track the BM. */
298 event->irm_node_id = card->irm_node->node_id;
299 event->root_node_id = card->root_node->node_id;
cf417e54
JF
300
301 spin_unlock_irqrestore(&card->lock, flags);
344bbc4d
KH
302}
303
53dca511
SR
304static void for_each_client(struct fw_device *device,
305 void (*callback)(struct client *client))
2603bf21 306{
2603bf21 307 struct client *c;
2603bf21 308
d67cfb96 309 mutex_lock(&device->client_list_mutex);
2603bf21
KH
310 list_for_each_entry(c, &device->client_list, link)
311 callback(c);
d67cfb96 312 mutex_unlock(&device->client_list_mutex);
2603bf21
KH
313}
314
b1bda4cd
JFSR
315static int schedule_reallocations(int id, void *p, void *data)
316{
317 struct client_resource *r = p;
318
319 if (r->release == release_iso_resource)
320 schedule_iso_resource(container_of(r,
321 struct iso_resource, resource));
322 return 0;
323}
324
53dca511 325static void queue_bus_reset_event(struct client *client)
97bd9efa 326{
97c18b7f 327 struct bus_reset_event *e;
97bd9efa 328
97c18b7f
SR
329 e = kzalloc(sizeof(*e), GFP_KERNEL);
330 if (e == NULL) {
97bd9efa
KH
331 fw_notify("Out of memory when allocating bus reset event\n");
332 return;
333 }
334
97c18b7f 335 fill_bus_reset_event(&e->reset, client);
97bd9efa 336
97c18b7f
SR
337 queue_event(client, &e->event,
338 &e->reset, sizeof(e->reset), NULL, 0);
b1bda4cd
JFSR
339
340 spin_lock_irq(&client->lock);
341 idr_for_each(&client->resource_idr, schedule_reallocations, client);
342 spin_unlock_irq(&client->lock);
97bd9efa
KH
343}
344
345void fw_device_cdev_update(struct fw_device *device)
346{
2603bf21
KH
347 for_each_client(device, queue_bus_reset_event);
348}
97bd9efa 349
2603bf21
KH
350static void wake_up_client(struct client *client)
351{
352 wake_up_interruptible(&client->wait);
353}
97bd9efa 354
2603bf21
KH
355void fw_device_cdev_remove(struct fw_device *device)
356{
357 for_each_client(device, wake_up_client);
97bd9efa
KH
358}
359
4f259223 360static int ioctl_get_info(struct client *client, void *buffer)
19a15b93 361{
4f259223 362 struct fw_cdev_get_info *get_info = buffer;
344bbc4d 363 struct fw_cdev_event_bus_reset bus_reset;
c9755e14 364 unsigned long ret = 0;
344bbc4d 365
4f259223
KH
366 client->version = get_info->version;
367 get_info->version = FW_CDEV_VERSION;
cf417e54 368 get_info->card = client->device->card->index;
344bbc4d 369
c9755e14
SR
370 down_read(&fw_device_rwsem);
371
4f259223
KH
372 if (get_info->rom != 0) {
373 void __user *uptr = u64_to_uptr(get_info->rom);
374 size_t want = get_info->rom_length;
d84702a5 375 size_t have = client->device->config_rom_length * 4;
344bbc4d 376
c9755e14
SR
377 ret = copy_to_user(uptr, client->device->config_rom,
378 min(want, have));
344bbc4d 379 }
4f259223 380 get_info->rom_length = client->device->config_rom_length * 4;
344bbc4d 381
c9755e14
SR
382 up_read(&fw_device_rwsem);
383
384 if (ret != 0)
385 return -EFAULT;
386
4f259223
KH
387 client->bus_reset_closure = get_info->bus_reset_closure;
388 if (get_info->bus_reset != 0) {
389 void __user *uptr = u64_to_uptr(get_info->bus_reset);
344bbc4d 390
da8ecffa 391 fill_bus_reset_event(&bus_reset, client);
2d826cc5 392 if (copy_to_user(uptr, &bus_reset, sizeof(bus_reset)))
344bbc4d
KH
393 return -EFAULT;
394 }
19a15b93 395
19a15b93
KH
396 return 0;
397}
398
53dca511
SR
399static int add_client_resource(struct client *client,
400 struct client_resource *resource, gfp_t gfp_mask)
3964a449
KH
401{
402 unsigned long flags;
45ee3199
JF
403 int ret;
404
405 retry:
406 if (idr_pre_get(&client->resource_idr, gfp_mask) == 0)
407 return -ENOMEM;
3964a449
KH
408
409 spin_lock_irqsave(&client->lock, flags);
45ee3199
JF
410 if (client->in_shutdown)
411 ret = -ECANCELED;
412 else
413 ret = idr_get_new(&client->resource_idr, resource,
414 &resource->handle);
b1bda4cd 415 if (ret >= 0) {
fb443036 416 client_get(client);
b1bda4cd
JFSR
417 if (resource->release == release_iso_resource)
418 schedule_iso_resource(container_of(resource,
419 struct iso_resource, resource));
420 }
3964a449 421 spin_unlock_irqrestore(&client->lock, flags);
45ee3199
JF
422
423 if (ret == -EAGAIN)
424 goto retry;
425
426 return ret < 0 ? ret : 0;
3964a449
KH
427}
428
53dca511
SR
429static int release_client_resource(struct client *client, u32 handle,
430 client_resource_release_fn_t release,
431 struct client_resource **resource)
3964a449
KH
432{
433 struct client_resource *r;
434 unsigned long flags;
435
436 spin_lock_irqsave(&client->lock, flags);
45ee3199
JF
437 if (client->in_shutdown)
438 r = NULL;
439 else
440 r = idr_find(&client->resource_idr, handle);
441 if (r && r->release == release)
442 idr_remove(&client->resource_idr, handle);
3964a449
KH
443 spin_unlock_irqrestore(&client->lock, flags);
444
45ee3199 445 if (!(r && r->release == release))
3964a449
KH
446 return -EINVAL;
447
448 if (resource)
449 *resource = r;
450 else
451 r->release(client, r);
452
fb443036
SR
453 client_put(client);
454
3964a449
KH
455 return 0;
456}
457
53dca511
SR
458static void release_transaction(struct client *client,
459 struct client_resource *resource)
3964a449 460{
97c18b7f
SR
461 struct outbound_transaction_resource *r = container_of(resource,
462 struct outbound_transaction_resource, resource);
3964a449 463
97c18b7f 464 fw_cancel_transaction(client->device->card, &r->transaction);
3964a449
KH
465}
466
53dca511
SR
467static void complete_transaction(struct fw_card *card, int rcode,
468 void *payload, size_t length, void *data)
19a15b93 469{
97c18b7f
SR
470 struct outbound_transaction_event *e = data;
471 struct fw_cdev_event_response *rsp = &e->response;
472 struct client *client = e->client;
28cf6a04 473 unsigned long flags;
19a15b93 474
97c18b7f
SR
475 if (length < rsp->length)
476 rsp->length = length;
19a15b93 477 if (rcode == RCODE_COMPLETE)
97c18b7f 478 memcpy(rsp->data, payload, rsp->length);
19a15b93 479
28cf6a04 480 spin_lock_irqsave(&client->lock, flags);
45ee3199 481 /*
fb443036
SR
482 * 1. If called while in shutdown, the idr tree must be left untouched.
483 * The idr handle will be removed and the client reference will be
484 * dropped later.
485 * 2. If the call chain was release_client_resource ->
486 * release_transaction -> complete_transaction (instead of a normal
487 * conclusion of the transaction), i.e. if this resource was already
488 * unregistered from the idr, the client reference will be dropped
489 * by release_client_resource and we must not drop it here.
45ee3199 490 */
fb443036 491 if (!client->in_shutdown &&
97c18b7f
SR
492 idr_find(&client->resource_idr, e->r.resource.handle)) {
493 idr_remove(&client->resource_idr, e->r.resource.handle);
fb443036
SR
494 /* Drop the idr's reference */
495 client_put(client);
496 }
28cf6a04
KH
497 spin_unlock_irqrestore(&client->lock, flags);
498
97c18b7f
SR
499 rsp->type = FW_CDEV_EVENT_RESPONSE;
500 rsp->rcode = rcode;
8401d92b
DM
501
502 /*
97c18b7f 503 * In the case that sizeof(*rsp) doesn't align with the position of the
8401d92b
DM
504 * data, and the read is short, preserve an extra copy of the data
505 * to stay compatible with a pre-2.6.27 bug. Since the bug is harmless
506 * for short reads and some apps depended on it, this is both safe
507 * and prudent for compatibility.
508 */
97c18b7f
SR
509 if (rsp->length <= sizeof(*rsp) - offsetof(typeof(*rsp), data))
510 queue_event(client, &e->event, rsp, sizeof(*rsp),
511 rsp->data, rsp->length);
8401d92b 512 else
97c18b7f 513 queue_event(client, &e->event, rsp, sizeof(*rsp) + rsp->length,
8401d92b 514 NULL, 0);
fb443036
SR
515
516 /* Drop the transaction callback's reference */
517 client_put(client);
19a15b93
KH
518}
519
350958f9 520static int ioctl_send_request(struct client *client, void *buffer)
19a15b93
KH
521{
522 struct fw_device *device = client->device;
4f259223 523 struct fw_cdev_send_request *request = buffer;
97c18b7f 524 struct outbound_transaction_event *e;
1f3125af 525 int ret;
19a15b93 526
19a15b93 527 /* What is the biggest size we'll accept, really? */
4f259223 528 if (request->length > 4096)
19a15b93
KH
529 return -EINVAL;
530
97c18b7f
SR
531 e = kmalloc(sizeof(*e) + request->length, GFP_KERNEL);
532 if (e == NULL)
19a15b93
KH
533 return -ENOMEM;
534
97c18b7f
SR
535 e->client = client;
536 e->response.length = request->length;
537 e->response.closure = request->closure;
19a15b93 538
4f259223 539 if (request->data &&
97c18b7f 540 copy_from_user(e->response.data,
4f259223 541 u64_to_uptr(request->data), request->length)) {
1f3125af 542 ret = -EFAULT;
45ee3199 543 goto failed;
1f3125af
SR
544 }
545
546 switch (request->tcode) {
547 case TCODE_WRITE_QUADLET_REQUEST:
548 case TCODE_WRITE_BLOCK_REQUEST:
549 case TCODE_READ_QUADLET_REQUEST:
550 case TCODE_READ_BLOCK_REQUEST:
551 case TCODE_LOCK_MASK_SWAP:
552 case TCODE_LOCK_COMPARE_SWAP:
553 case TCODE_LOCK_FETCH_ADD:
554 case TCODE_LOCK_LITTLE_ADD:
555 case TCODE_LOCK_BOUNDED_ADD:
556 case TCODE_LOCK_WRAP_ADD:
557 case TCODE_LOCK_VENDOR_DEPENDENT:
558 break;
559 default:
560 ret = -EINVAL;
45ee3199 561 goto failed;
19a15b93
KH
562 }
563
97c18b7f
SR
564 e->r.resource.release = release_transaction;
565 ret = add_client_resource(client, &e->r.resource, GFP_KERNEL);
45ee3199
JF
566 if (ret < 0)
567 goto failed;
28cf6a04 568
fb443036
SR
569 /* Get a reference for the transaction callback */
570 client_get(client);
571
97c18b7f 572 fw_send_request(device->card, &e->r.transaction,
4f259223 573 request->tcode & 0x1f,
907293d7 574 device->node->node_id,
4f259223 575 request->generation,
f1397490 576 device->max_speed,
4f259223 577 request->offset,
97c18b7f
SR
578 e->response.data, request->length,
579 complete_transaction, e);
19a15b93 580
4f259223 581 if (request->data)
2d826cc5 582 return sizeof(request) + request->length;
19a15b93 583 else
2d826cc5 584 return sizeof(request);
45ee3199 585 failed:
97c18b7f 586 kfree(e);
1f3125af
SR
587
588 return ret;
19a15b93
KH
589}
590
53dca511
SR
591static void release_request(struct client *client,
592 struct client_resource *resource)
3964a449 593{
97c18b7f
SR
594 struct inbound_transaction_resource *r = container_of(resource,
595 struct inbound_transaction_resource, resource);
3964a449 596
97c18b7f 597 fw_send_response(client->device->card, r->request,
3964a449 598 RCODE_CONFLICT_ERROR);
97c18b7f 599 kfree(r);
3964a449
KH
600}
601
97c18b7f 602static void handle_request(struct fw_card *card, struct fw_request *request,
53dca511
SR
603 int tcode, int destination, int source,
604 int generation, int speed,
605 unsigned long long offset,
606 void *payload, size_t length, void *callback_data)
19a15b93 607{
97c18b7f
SR
608 struct address_handler_resource *handler = callback_data;
609 struct inbound_transaction_resource *r;
610 struct inbound_transaction_event *e;
45ee3199 611 int ret;
19a15b93 612
97c18b7f 613 r = kmalloc(sizeof(*r), GFP_ATOMIC);
2d826cc5 614 e = kmalloc(sizeof(*e), GFP_ATOMIC);
97c18b7f 615 if (r == NULL || e == NULL)
45ee3199 616 goto failed;
19a15b93 617
97c18b7f
SR
618 r->request = request;
619 r->data = payload;
620 r->length = length;
19a15b93 621
97c18b7f
SR
622 r->resource.release = release_request;
623 ret = add_client_resource(handler->client, &r->resource, GFP_ATOMIC);
45ee3199
JF
624 if (ret < 0)
625 goto failed;
19a15b93
KH
626
627 e->request.type = FW_CDEV_EVENT_REQUEST;
628 e->request.tcode = tcode;
629 e->request.offset = offset;
630 e->request.length = length;
97c18b7f 631 e->request.handle = r->resource.handle;
19a15b93
KH
632 e->request.closure = handler->closure;
633
97c18b7f 634 queue_event(handler->client, &e->event,
2d826cc5 635 &e->request, sizeof(e->request), payload, length);
45ee3199
JF
636 return;
637
638 failed:
97c18b7f 639 kfree(r);
45ee3199 640 kfree(e);
97c18b7f 641 fw_send_response(card, request, RCODE_CONFLICT_ERROR);
19a15b93
KH
642}
643
53dca511
SR
644static void release_address_handler(struct client *client,
645 struct client_resource *resource)
3964a449 646{
97c18b7f
SR
647 struct address_handler_resource *r =
648 container_of(resource, struct address_handler_resource, resource);
3964a449 649
97c18b7f
SR
650 fw_core_remove_address_handler(&r->handler);
651 kfree(r);
3964a449
KH
652}
653
4f259223 654static int ioctl_allocate(struct client *client, void *buffer)
19a15b93 655{
4f259223 656 struct fw_cdev_allocate *request = buffer;
97c18b7f 657 struct address_handler_resource *r;
19a15b93 658 struct fw_address_region region;
45ee3199 659 int ret;
19a15b93 660
97c18b7f
SR
661 r = kmalloc(sizeof(*r), GFP_KERNEL);
662 if (r == NULL)
19a15b93
KH
663 return -ENOMEM;
664
4f259223
KH
665 region.start = request->offset;
666 region.end = request->offset + request->length;
97c18b7f
SR
667 r->handler.length = request->length;
668 r->handler.address_callback = handle_request;
669 r->handler.callback_data = r;
670 r->closure = request->closure;
671 r->client = client;
19a15b93 672
97c18b7f 673 ret = fw_core_add_address_handler(&r->handler, &region);
3e0b5f0d 674 if (ret < 0) {
97c18b7f 675 kfree(r);
3e0b5f0d 676 return ret;
19a15b93
KH
677 }
678
97c18b7f
SR
679 r->resource.release = release_address_handler;
680 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
45ee3199 681 if (ret < 0) {
97c18b7f 682 release_address_handler(client, &r->resource);
45ee3199
JF
683 return ret;
684 }
97c18b7f 685 request->handle = r->resource.handle;
19a15b93
KH
686
687 return 0;
688}
689
4f259223 690static int ioctl_deallocate(struct client *client, void *buffer)
9472316b 691{
4f259223 692 struct fw_cdev_deallocate *request = buffer;
9472316b 693
45ee3199
JF
694 return release_client_resource(client, request->handle,
695 release_address_handler, NULL);
9472316b
KH
696}
697
4f259223 698static int ioctl_send_response(struct client *client, void *buffer)
19a15b93 699{
4f259223 700 struct fw_cdev_send_response *request = buffer;
3964a449 701 struct client_resource *resource;
97c18b7f 702 struct inbound_transaction_resource *r;
19a15b93 703
45ee3199
JF
704 if (release_client_resource(client, request->handle,
705 release_request, &resource) < 0)
19a15b93 706 return -EINVAL;
45ee3199 707
97c18b7f
SR
708 r = container_of(resource, struct inbound_transaction_resource,
709 resource);
4f259223
KH
710 if (request->length < r->length)
711 r->length = request->length;
712 if (copy_from_user(r->data, u64_to_uptr(request->data), r->length))
19a15b93
KH
713 return -EFAULT;
714
4f259223 715 fw_send_response(client->device->card, r->request, request->rcode);
19a15b93
KH
716 kfree(r);
717
718 return 0;
719}
720
4f259223 721static int ioctl_initiate_bus_reset(struct client *client, void *buffer)
5371842b 722{
4f259223 723 struct fw_cdev_initiate_bus_reset *request = buffer;
5371842b
KH
724 int short_reset;
725
4f259223 726 short_reset = (request->type == FW_CDEV_SHORT_RESET);
5371842b
KH
727
728 return fw_core_initiate_bus_reset(client->device->card, short_reset);
729}
730
3964a449
KH
731static void release_descriptor(struct client *client,
732 struct client_resource *resource)
733{
97c18b7f
SR
734 struct descriptor_resource *r =
735 container_of(resource, struct descriptor_resource, resource);
3964a449 736
97c18b7f
SR
737 fw_core_remove_descriptor(&r->descriptor);
738 kfree(r);
3964a449
KH
739}
740
4f259223 741static int ioctl_add_descriptor(struct client *client, void *buffer)
66dea3e5 742{
4f259223 743 struct fw_cdev_add_descriptor *request = buffer;
97c18b7f 744 struct descriptor_resource *r;
45ee3199 745 int ret;
66dea3e5 746
4f259223 747 if (request->length > 256)
66dea3e5
KH
748 return -EINVAL;
749
97c18b7f
SR
750 r = kmalloc(sizeof(*r) + request->length * 4, GFP_KERNEL);
751 if (r == NULL)
66dea3e5
KH
752 return -ENOMEM;
753
97c18b7f 754 if (copy_from_user(r->data,
4f259223 755 u64_to_uptr(request->data), request->length * 4)) {
45ee3199
JF
756 ret = -EFAULT;
757 goto failed;
66dea3e5
KH
758 }
759
97c18b7f
SR
760 r->descriptor.length = request->length;
761 r->descriptor.immediate = request->immediate;
762 r->descriptor.key = request->key;
763 r->descriptor.data = r->data;
66dea3e5 764
97c18b7f 765 ret = fw_core_add_descriptor(&r->descriptor);
45ee3199
JF
766 if (ret < 0)
767 goto failed;
66dea3e5 768
97c18b7f
SR
769 r->resource.release = release_descriptor;
770 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
45ee3199 771 if (ret < 0) {
97c18b7f 772 fw_core_remove_descriptor(&r->descriptor);
45ee3199
JF
773 goto failed;
774 }
97c18b7f 775 request->handle = r->resource.handle;
66dea3e5
KH
776
777 return 0;
45ee3199 778 failed:
97c18b7f 779 kfree(r);
45ee3199
JF
780
781 return ret;
66dea3e5
KH
782}
783
4f259223 784static int ioctl_remove_descriptor(struct client *client, void *buffer)
66dea3e5 785{
4f259223 786 struct fw_cdev_remove_descriptor *request = buffer;
66dea3e5 787
45ee3199
JF
788 return release_client_resource(client, request->handle,
789 release_descriptor, NULL);
66dea3e5
KH
790}
791
53dca511
SR
792static void iso_callback(struct fw_iso_context *context, u32 cycle,
793 size_t header_length, void *header, void *data)
19a15b93
KH
794{
795 struct client *client = data;
97c18b7f 796 struct iso_interrupt_event *e;
19a15b93 797
97c18b7f
SR
798 e = kzalloc(sizeof(*e) + header_length, GFP_ATOMIC);
799 if (e == NULL)
19a15b93
KH
800 return;
801
97c18b7f
SR
802 e->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT;
803 e->interrupt.closure = client->iso_closure;
804 e->interrupt.cycle = cycle;
805 e->interrupt.header_length = header_length;
806 memcpy(e->interrupt.header, header, header_length);
807 queue_event(client, &e->event, &e->interrupt,
808 sizeof(e->interrupt) + header_length, NULL, 0);
19a15b93
KH
809}
810
4f259223 811static int ioctl_create_iso_context(struct client *client, void *buffer)
19a15b93 812{
4f259223 813 struct fw_cdev_create_iso_context *request = buffer;
24315c5e 814 struct fw_iso_context *context;
19a15b93 815
fae60312
SR
816 /* We only support one context at this time. */
817 if (client->iso_context != NULL)
818 return -EBUSY;
819
4f259223 820 if (request->channel > 63)
21efb3cf
KH
821 return -EINVAL;
822
4f259223 823 switch (request->type) {
c70dc788 824 case FW_ISO_CONTEXT_RECEIVE:
4f259223 825 if (request->header_size < 4 || (request->header_size & 3))
c70dc788 826 return -EINVAL;
98b6cbe8 827
c70dc788
KH
828 break;
829
830 case FW_ISO_CONTEXT_TRANSMIT:
4f259223 831 if (request->speed > SCODE_3200)
c70dc788
KH
832 return -EINVAL;
833
834 break;
835
836 default:
21efb3cf 837 return -EINVAL;
c70dc788
KH
838 }
839
24315c5e
KH
840 context = fw_iso_context_create(client->device->card,
841 request->type,
842 request->channel,
843 request->speed,
844 request->header_size,
845 iso_callback, client);
846 if (IS_ERR(context))
847 return PTR_ERR(context);
848
abaa5743 849 client->iso_closure = request->closure;
24315c5e 850 client->iso_context = context;
19a15b93 851
abaa5743
KH
852 /* We only support one context at this time. */
853 request->handle = 0;
854
19a15b93
KH
855 return 0;
856}
857
1ca31ae7
KH
858/* Macros for decoding the iso packet control header. */
859#define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
860#define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
861#define GET_SKIP(v) (((v) >> 17) & 0x01)
7a100344
SR
862#define GET_TAG(v) (((v) >> 18) & 0x03)
863#define GET_SY(v) (((v) >> 20) & 0x0f)
1ca31ae7
KH
864#define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
865
4f259223 866static int ioctl_queue_iso(struct client *client, void *buffer)
19a15b93 867{
4f259223 868 struct fw_cdev_queue_iso *request = buffer;
19a15b93 869 struct fw_cdev_iso_packet __user *p, *end, *next;
9b32d5f3 870 struct fw_iso_context *ctx = client->iso_context;
ef370ee7 871 unsigned long payload, buffer_end, header_length;
1ca31ae7 872 u32 control;
19a15b93
KH
873 int count;
874 struct {
875 struct fw_iso_packet packet;
876 u8 header[256];
877 } u;
878
abaa5743 879 if (ctx == NULL || request->handle != 0)
19a15b93 880 return -EINVAL;
19a15b93 881
c781c06d
KH
882 /*
883 * If the user passes a non-NULL data pointer, has mmap()'ed
19a15b93
KH
884 * the iso buffer, and the pointer points inside the buffer,
885 * we setup the payload pointers accordingly. Otherwise we
9aad8125 886 * set them both to 0, which will still let packets with
19a15b93
KH
887 * payload_length == 0 through. In other words, if no packets
888 * use the indirect payload, the iso buffer need not be mapped
c781c06d
KH
889 * and the request->data pointer is ignored.
890 */
19a15b93 891
4f259223 892 payload = (unsigned long)request->data - client->vm_start;
ef370ee7 893 buffer_end = client->buffer.page_count << PAGE_SHIFT;
4f259223 894 if (request->data == 0 || client->buffer.pages == NULL ||
ef370ee7 895 payload >= buffer_end) {
9aad8125 896 payload = 0;
ef370ee7 897 buffer_end = 0;
19a15b93
KH
898 }
899
1ccc9147
AV
900 p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(request->packets);
901
902 if (!access_ok(VERIFY_READ, p, request->size))
19a15b93
KH
903 return -EFAULT;
904
4f259223 905 end = (void __user *)p + request->size;
19a15b93
KH
906 count = 0;
907 while (p < end) {
1ca31ae7 908 if (get_user(control, &p->control))
19a15b93 909 return -EFAULT;
1ca31ae7
KH
910 u.packet.payload_length = GET_PAYLOAD_LENGTH(control);
911 u.packet.interrupt = GET_INTERRUPT(control);
912 u.packet.skip = GET_SKIP(control);
913 u.packet.tag = GET_TAG(control);
914 u.packet.sy = GET_SY(control);
915 u.packet.header_length = GET_HEADER_LENGTH(control);
295e3feb 916
9b32d5f3 917 if (ctx->type == FW_ISO_CONTEXT_TRANSMIT) {
295e3feb
KH
918 header_length = u.packet.header_length;
919 } else {
c781c06d
KH
920 /*
921 * We require that header_length is a multiple of
922 * the fixed header size, ctx->header_size.
923 */
9b32d5f3
KH
924 if (ctx->header_size == 0) {
925 if (u.packet.header_length > 0)
926 return -EINVAL;
927 } else if (u.packet.header_length % ctx->header_size != 0) {
295e3feb 928 return -EINVAL;
9b32d5f3 929 }
295e3feb
KH
930 header_length = 0;
931 }
932
19a15b93 933 next = (struct fw_cdev_iso_packet __user *)
295e3feb 934 &p->header[header_length / 4];
19a15b93
KH
935 if (next > end)
936 return -EINVAL;
937 if (__copy_from_user
295e3feb 938 (u.packet.header, p->header, header_length))
19a15b93 939 return -EFAULT;
98b6cbe8 940 if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
19a15b93
KH
941 u.packet.header_length + u.packet.payload_length > 0)
942 return -EINVAL;
ef370ee7 943 if (payload + u.packet.payload_length > buffer_end)
19a15b93
KH
944 return -EINVAL;
945
9b32d5f3
KH
946 if (fw_iso_context_queue(ctx, &u.packet,
947 &client->buffer, payload))
19a15b93
KH
948 break;
949
950 p = next;
951 payload += u.packet.payload_length;
952 count++;
953 }
954
4f259223
KH
955 request->size -= uptr_to_u64(p) - request->packets;
956 request->packets = uptr_to_u64(p);
957 request->data = client->vm_start + payload;
19a15b93
KH
958
959 return count;
960}
961
4f259223 962static int ioctl_start_iso(struct client *client, void *buffer)
19a15b93 963{
4f259223 964 struct fw_cdev_start_iso *request = buffer;
19a15b93 965
fae60312 966 if (client->iso_context == NULL || request->handle != 0)
abaa5743 967 return -EINVAL;
fae60312 968
eb0306ea 969 if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE) {
4f259223 970 if (request->tags == 0 || request->tags > 15)
eb0306ea
KH
971 return -EINVAL;
972
4f259223 973 if (request->sync > 15)
eb0306ea
KH
974 return -EINVAL;
975 }
976
4f259223
KH
977 return fw_iso_context_start(client->iso_context, request->cycle,
978 request->sync, request->tags);
19a15b93
KH
979}
980
4f259223 981static int ioctl_stop_iso(struct client *client, void *buffer)
b8295668 982{
abaa5743
KH
983 struct fw_cdev_stop_iso *request = buffer;
984
fae60312 985 if (client->iso_context == NULL || request->handle != 0)
abaa5743
KH
986 return -EINVAL;
987
b8295668
KH
988 return fw_iso_context_stop(client->iso_context);
989}
990
a64408b9
SR
991static int ioctl_get_cycle_timer(struct client *client, void *buffer)
992{
993 struct fw_cdev_get_cycle_timer *request = buffer;
994 struct fw_card *card = client->device->card;
995 unsigned long long bus_time;
996 struct timeval tv;
997 unsigned long flags;
998
999 preempt_disable();
1000 local_irq_save(flags);
1001
1002 bus_time = card->driver->get_bus_time(card);
1003 do_gettimeofday(&tv);
1004
1005 local_irq_restore(flags);
1006 preempt_enable();
1007
1008 request->local_time = tv.tv_sec * 1000000ULL + tv.tv_usec;
1009 request->cycle_timer = bus_time & 0xffffffff;
1010 return 0;
1011}
1012
b1bda4cd
JFSR
1013static void iso_resource_work(struct work_struct *work)
1014{
1015 struct iso_resource_event *e;
1016 struct iso_resource *r =
1017 container_of(work, struct iso_resource, work.work);
1018 struct client *client = r->client;
1019 int generation, channel, bandwidth, todo;
1020 bool skip, free, success;
1021
1022 spin_lock_irq(&client->lock);
1023 generation = client->device->generation;
1024 todo = r->todo;
1025 /* Allow 1000ms grace period for other reallocations. */
1026 if (todo == ISO_RES_ALLOC &&
1027 time_is_after_jiffies(client->device->card->reset_jiffies + HZ)) {
1028 if (schedule_delayed_work(&r->work, DIV_ROUND_UP(HZ, 3)))
1029 client_get(client);
1030 skip = true;
1031 } else {
1032 /* We could be called twice within the same generation. */
1033 skip = todo == ISO_RES_REALLOC &&
1034 r->generation == generation;
1035 }
1036 free = todo == ISO_RES_DEALLOC;
1037 r->generation = generation;
1038 spin_unlock_irq(&client->lock);
1039
1040 if (skip)
1041 goto out;
1042
1043 bandwidth = r->bandwidth;
1044
1045 fw_iso_resource_manage(client->device->card, generation,
1046 r->channels, &channel, &bandwidth,
1047 todo == ISO_RES_ALLOC || todo == ISO_RES_REALLOC);
1048 /*
1049 * Is this generation outdated already? As long as this resource sticks
1050 * in the idr, it will be scheduled again for a newer generation or at
1051 * shutdown.
1052 */
1053 if (channel == -EAGAIN &&
1054 (todo == ISO_RES_ALLOC || todo == ISO_RES_REALLOC))
1055 goto out;
1056
1057 success = channel >= 0 || bandwidth > 0;
1058
1059 spin_lock_irq(&client->lock);
1060 /*
1061 * Transit from allocation to reallocation, except if the client
1062 * requested deallocation in the meantime.
1063 */
1064 if (r->todo == ISO_RES_ALLOC)
1065 r->todo = ISO_RES_REALLOC;
1066 /*
1067 * Allocation or reallocation failure? Pull this resource out of the
1068 * idr and prepare for deletion, unless the client is shutting down.
1069 */
1070 if (r->todo == ISO_RES_REALLOC && !success &&
1071 !client->in_shutdown &&
1072 idr_find(&client->resource_idr, r->resource.handle)) {
1073 idr_remove(&client->resource_idr, r->resource.handle);
1074 client_put(client);
1075 free = true;
1076 }
1077 spin_unlock_irq(&client->lock);
1078
1079 if (todo == ISO_RES_ALLOC && channel >= 0)
1080 r->channels = 1ULL << (63 - channel);
1081
1082 if (todo == ISO_RES_REALLOC && success)
1083 goto out;
1084
1085 if (todo == ISO_RES_ALLOC) {
1086 e = r->e_alloc;
1087 r->e_alloc = NULL;
1088 } else {
1089 e = r->e_dealloc;
1090 r->e_dealloc = NULL;
1091 }
1092 e->resource.handle = r->resource.handle;
1093 e->resource.channel = channel;
1094 e->resource.bandwidth = bandwidth;
1095
1096 queue_event(client, &e->event,
1097 &e->resource, sizeof(e->resource), NULL, 0);
1098
1099 if (free) {
1100 cancel_delayed_work(&r->work);
1101 kfree(r->e_alloc);
1102 kfree(r->e_dealloc);
1103 kfree(r);
1104 }
1105 out:
1106 client_put(client);
1107}
1108
1109static void schedule_iso_resource(struct iso_resource *r)
1110{
1111 if (schedule_delayed_work(&r->work, 0))
1112 client_get(r->client);
1113}
1114
1115static void release_iso_resource(struct client *client,
1116 struct client_resource *resource)
1117{
1118 struct iso_resource *r =
1119 container_of(resource, struct iso_resource, resource);
1120
1121 spin_lock_irq(&client->lock);
1122 r->todo = ISO_RES_DEALLOC;
1123 schedule_iso_resource(r);
1124 spin_unlock_irq(&client->lock);
1125}
1126
1127static int ioctl_allocate_iso_resource(struct client *client, void *buffer)
1128{
1129 struct fw_cdev_allocate_iso_resource *request = buffer;
1130 struct iso_resource_event *e1, *e2;
1131 struct iso_resource *r;
1132 int ret;
1133
1134 if ((request->channels == 0 && request->bandwidth == 0) ||
1135 request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL ||
1136 request->bandwidth < 0)
1137 return -EINVAL;
1138
1139 r = kmalloc(sizeof(*r), GFP_KERNEL);
1140 e1 = kmalloc(sizeof(*e1), GFP_KERNEL);
1141 e2 = kmalloc(sizeof(*e2), GFP_KERNEL);
1142 if (r == NULL || e1 == NULL || e2 == NULL) {
1143 ret = -ENOMEM;
1144 goto fail;
1145 }
1146
1147 INIT_DELAYED_WORK(&r->work, iso_resource_work);
1148 r->client = client;
1149 r->todo = ISO_RES_ALLOC;
1150 r->generation = -1;
1151 r->channels = request->channels;
1152 r->bandwidth = request->bandwidth;
1153 r->e_alloc = e1;
1154 r->e_dealloc = e2;
1155
1156 e1->resource.closure = request->closure;
1157 e1->resource.type = FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED;
1158 e2->resource.closure = request->closure;
1159 e2->resource.type = FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED;
1160
1161 r->resource.release = release_iso_resource;
1162 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
1163 if (ret < 0)
1164 goto fail;
1165 request->handle = r->resource.handle;
1166
1167 return 0;
1168 fail:
1169 kfree(r);
1170 kfree(e1);
1171 kfree(e2);
1172
1173 return ret;
1174}
1175
1176static int ioctl_deallocate_iso_resource(struct client *client, void *buffer)
1177{
1178 struct fw_cdev_deallocate *request = buffer;
1179
1180 return release_client_resource(client, request->handle,
1181 release_iso_resource, NULL);
1182}
1183
4f259223
KH
1184static int (* const ioctl_handlers[])(struct client *client, void *buffer) = {
1185 ioctl_get_info,
1186 ioctl_send_request,
1187 ioctl_allocate,
1188 ioctl_deallocate,
1189 ioctl_send_response,
1190 ioctl_initiate_bus_reset,
1191 ioctl_add_descriptor,
1192 ioctl_remove_descriptor,
1193 ioctl_create_iso_context,
1194 ioctl_queue_iso,
1195 ioctl_start_iso,
1196 ioctl_stop_iso,
a64408b9 1197 ioctl_get_cycle_timer,
b1bda4cd
JFSR
1198 ioctl_allocate_iso_resource,
1199 ioctl_deallocate_iso_resource,
4f259223
KH
1200};
1201
53dca511
SR
1202static int dispatch_ioctl(struct client *client,
1203 unsigned int cmd, void __user *arg)
19a15b93 1204{
4f259223 1205 char buffer[256];
2dbd7d7e 1206 int ret;
4f259223
KH
1207
1208 if (_IOC_TYPE(cmd) != '#' ||
1209 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers))
19a15b93 1210 return -EINVAL;
4f259223
KH
1211
1212 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2d826cc5 1213 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
4f259223
KH
1214 copy_from_user(buffer, arg, _IOC_SIZE(cmd)))
1215 return -EFAULT;
1216 }
1217
2dbd7d7e
SR
1218 ret = ioctl_handlers[_IOC_NR(cmd)](client, buffer);
1219 if (ret < 0)
1220 return ret;
4f259223
KH
1221
1222 if (_IOC_DIR(cmd) & _IOC_READ) {
2d826cc5 1223 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
4f259223
KH
1224 copy_to_user(arg, buffer, _IOC_SIZE(cmd)))
1225 return -EFAULT;
19a15b93 1226 }
4f259223 1227
2dbd7d7e 1228 return ret;
19a15b93
KH
1229}
1230
53dca511
SR
1231static long fw_device_op_ioctl(struct file *file,
1232 unsigned int cmd, unsigned long arg)
19a15b93
KH
1233{
1234 struct client *client = file->private_data;
1235
551f4cb9
JF
1236 if (fw_device_is_shutdown(client->device))
1237 return -ENODEV;
1238
19a15b93
KH
1239 return dispatch_ioctl(client, cmd, (void __user *) arg);
1240}
1241
1242#ifdef CONFIG_COMPAT
53dca511
SR
1243static long fw_device_op_compat_ioctl(struct file *file,
1244 unsigned int cmd, unsigned long arg)
19a15b93
KH
1245{
1246 struct client *client = file->private_data;
1247
551f4cb9
JF
1248 if (fw_device_is_shutdown(client->device))
1249 return -ENODEV;
1250
19a15b93
KH
1251 return dispatch_ioctl(client, cmd, compat_ptr(arg));
1252}
1253#endif
1254
1255static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
1256{
1257 struct client *client = file->private_data;
9aad8125
KH
1258 enum dma_data_direction direction;
1259 unsigned long size;
2dbd7d7e 1260 int page_count, ret;
9aad8125 1261
551f4cb9
JF
1262 if (fw_device_is_shutdown(client->device))
1263 return -ENODEV;
1264
9aad8125
KH
1265 /* FIXME: We could support multiple buffers, but we don't. */
1266 if (client->buffer.pages != NULL)
1267 return -EBUSY;
1268
1269 if (!(vma->vm_flags & VM_SHARED))
1270 return -EINVAL;
19a15b93 1271
9aad8125 1272 if (vma->vm_start & ~PAGE_MASK)
19a15b93
KH
1273 return -EINVAL;
1274
1275 client->vm_start = vma->vm_start;
9aad8125
KH
1276 size = vma->vm_end - vma->vm_start;
1277 page_count = size >> PAGE_SHIFT;
1278 if (size & ~PAGE_MASK)
1279 return -EINVAL;
1280
1281 if (vma->vm_flags & VM_WRITE)
1282 direction = DMA_TO_DEVICE;
1283 else
1284 direction = DMA_FROM_DEVICE;
1285
2dbd7d7e
SR
1286 ret = fw_iso_buffer_init(&client->buffer, client->device->card,
1287 page_count, direction);
1288 if (ret < 0)
1289 return ret;
19a15b93 1290
2dbd7d7e
SR
1291 ret = fw_iso_buffer_map(&client->buffer, vma);
1292 if (ret < 0)
9aad8125
KH
1293 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1294
2dbd7d7e 1295 return ret;
19a15b93
KH
1296}
1297
45ee3199
JF
1298static int shutdown_resource(int id, void *p, void *data)
1299{
1300 struct client_resource *r = p;
1301 struct client *client = data;
1302
1303 r->release(client, r);
fb443036 1304 client_put(client);
45ee3199
JF
1305
1306 return 0;
1307}
1308
19a15b93
KH
1309static int fw_device_op_release(struct inode *inode, struct file *file)
1310{
1311 struct client *client = file->private_data;
2603bf21 1312 struct event *e, *next_e;
45ee3199 1313 unsigned long flags;
19a15b93 1314
97811e34
SR
1315 mutex_lock(&client->device->client_list_mutex);
1316 list_del(&client->link);
1317 mutex_unlock(&client->device->client_list_mutex);
1318
9aad8125
KH
1319 if (client->buffer.pages)
1320 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1321
19a15b93
KH
1322 if (client->iso_context)
1323 fw_iso_context_destroy(client->iso_context);
1324
45ee3199
JF
1325 /* Freeze client->resource_idr and client->event_list */
1326 spin_lock_irqsave(&client->lock, flags);
1327 client->in_shutdown = true;
1328 spin_unlock_irqrestore(&client->lock, flags);
66dea3e5 1329
45ee3199
JF
1330 idr_for_each(&client->resource_idr, shutdown_resource, client);
1331 idr_remove_all(&client->resource_idr);
1332 idr_destroy(&client->resource_idr);
28cf6a04 1333
2603bf21
KH
1334 list_for_each_entry_safe(e, next_e, &client->event_list, link)
1335 kfree(e);
19a15b93 1336
fb443036 1337 client_put(client);
19a15b93
KH
1338
1339 return 0;
1340}
1341
1342static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
1343{
1344 struct client *client = file->private_data;
2603bf21 1345 unsigned int mask = 0;
19a15b93
KH
1346
1347 poll_wait(file, &client->wait, pt);
1348
2603bf21
KH
1349 if (fw_device_is_shutdown(client->device))
1350 mask |= POLLHUP | POLLERR;
19a15b93 1351 if (!list_empty(&client->event_list))
2603bf21
KH
1352 mask |= POLLIN | POLLRDNORM;
1353
1354 return mask;
19a15b93
KH
1355}
1356
21ebcd12 1357const struct file_operations fw_device_ops = {
19a15b93
KH
1358 .owner = THIS_MODULE,
1359 .open = fw_device_op_open,
1360 .read = fw_device_op_read,
1361 .unlocked_ioctl = fw_device_op_ioctl,
1362 .poll = fw_device_op_poll,
1363 .release = fw_device_op_release,
1364 .mmap = fw_device_op_mmap,
1365
1366#ifdef CONFIG_COMPAT
5af4e5ea 1367 .compat_ioctl = fw_device_op_compat_ioctl,
19a15b93
KH
1368#endif
1369};
This page took 0.393612 seconds and 5 git commands to generate.