firewire: cdev: remove unneeded idr_find() from complete_transaction()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / firewire / core-cdev.c
blob4434f7ca11d535ba68fbcd35048fc7708f91a82b
1 /*
2 * Char device for device raw access
4 * Copyright (C) 2005-2007 Kristian Hoegsberg <krh@bitplanet.net>
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.
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.
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.
21 #include <linux/bug.h>
22 #include <linux/compat.h>
23 #include <linux/delay.h>
24 #include <linux/device.h>
25 #include <linux/errno.h>
26 #include <linux/firewire.h>
27 #include <linux/firewire-cdev.h>
28 #include <linux/idr.h>
29 #include <linux/irqflags.h>
30 #include <linux/jiffies.h>
31 #include <linux/kernel.h>
32 #include <linux/kref.h>
33 #include <linux/mm.h>
34 #include <linux/module.h>
35 #include <linux/mutex.h>
36 #include <linux/poll.h>
37 #include <linux/sched.h> /* required for linux/wait.h */
38 #include <linux/slab.h>
39 #include <linux/spinlock.h>
40 #include <linux/string.h>
41 #include <linux/time.h>
42 #include <linux/uaccess.h>
43 #include <linux/vmalloc.h>
44 #include <linux/wait.h>
45 #include <linux/workqueue.h>
47 #include <asm/system.h>
49 #include "core.h"
52 * ABI version history is documented in linux/firewire-cdev.h.
54 #define FW_CDEV_KERNEL_VERSION 4
55 #define FW_CDEV_VERSION_EVENT_REQUEST2 4
56 #define FW_CDEV_VERSION_ALLOCATE_REGION_END 4
58 struct client {
59 u32 version;
60 struct fw_device *device;
62 spinlock_t lock;
63 bool in_shutdown;
64 struct idr resource_idr;
65 struct list_head event_list;
66 wait_queue_head_t wait;
67 u64 bus_reset_closure;
69 struct fw_iso_context *iso_context;
70 u64 iso_closure;
71 struct fw_iso_buffer buffer;
72 unsigned long vm_start;
74 struct list_head phy_receiver_link;
75 u64 phy_receiver_closure;
77 struct list_head link;
78 struct kref kref;
81 static inline void client_get(struct client *client)
83 kref_get(&client->kref);
86 static void client_release(struct kref *kref)
88 struct client *client = container_of(kref, struct client, kref);
90 fw_device_put(client->device);
91 kfree(client);
94 static void client_put(struct client *client)
96 kref_put(&client->kref, client_release);
99 struct client_resource;
100 typedef void (*client_resource_release_fn_t)(struct client *,
101 struct client_resource *);
102 struct client_resource {
103 client_resource_release_fn_t release;
104 int handle;
107 struct address_handler_resource {
108 struct client_resource resource;
109 struct fw_address_handler handler;
110 __u64 closure;
111 struct client *client;
114 struct outbound_transaction_resource {
115 struct client_resource resource;
116 struct fw_transaction transaction;
119 struct inbound_transaction_resource {
120 struct client_resource resource;
121 struct fw_card *card;
122 struct fw_request *request;
123 void *data;
124 size_t length;
127 struct descriptor_resource {
128 struct client_resource resource;
129 struct fw_descriptor descriptor;
130 u32 data[0];
133 struct iso_resource {
134 struct client_resource resource;
135 struct client *client;
136 /* Schedule work and access todo only with client->lock held. */
137 struct delayed_work work;
138 enum {ISO_RES_ALLOC, ISO_RES_REALLOC, ISO_RES_DEALLOC,
139 ISO_RES_ALLOC_ONCE, ISO_RES_DEALLOC_ONCE,} todo;
140 int generation;
141 u64 channels;
142 s32 bandwidth;
143 __be32 transaction_data[2];
144 struct iso_resource_event *e_alloc, *e_dealloc;
147 static void release_iso_resource(struct client *, struct client_resource *);
149 static void schedule_iso_resource(struct iso_resource *r, unsigned long delay)
151 client_get(r->client);
152 if (!schedule_delayed_work(&r->work, delay))
153 client_put(r->client);
156 static void schedule_if_iso_resource(struct client_resource *resource)
158 if (resource->release == release_iso_resource)
159 schedule_iso_resource(container_of(resource,
160 struct iso_resource, resource), 0);
164 * dequeue_event() just kfree()'s the event, so the event has to be
165 * the first field in a struct XYZ_event.
167 struct event {
168 struct { void *data; size_t size; } v[2];
169 struct list_head link;
172 struct bus_reset_event {
173 struct event event;
174 struct fw_cdev_event_bus_reset reset;
177 struct outbound_transaction_event {
178 struct event event;
179 struct client *client;
180 struct outbound_transaction_resource r;
181 struct fw_cdev_event_response response;
184 struct inbound_transaction_event {
185 struct event event;
186 union {
187 struct fw_cdev_event_request request;
188 struct fw_cdev_event_request2 request2;
189 } req;
192 struct iso_interrupt_event {
193 struct event event;
194 struct fw_cdev_event_iso_interrupt interrupt;
197 struct iso_interrupt_mc_event {
198 struct event event;
199 struct fw_cdev_event_iso_interrupt_mc interrupt;
202 struct iso_resource_event {
203 struct event event;
204 struct fw_cdev_event_iso_resource iso_resource;
207 struct outbound_phy_packet_event {
208 struct event event;
209 struct client *client;
210 struct fw_packet p;
211 struct fw_cdev_event_phy_packet phy_packet;
214 struct inbound_phy_packet_event {
215 struct event event;
216 struct fw_cdev_event_phy_packet phy_packet;
219 static inline void __user *u64_to_uptr(__u64 value)
221 return (void __user *)(unsigned long)value;
224 static inline __u64 uptr_to_u64(void __user *ptr)
226 return (__u64)(unsigned long)ptr;
229 static int fw_device_op_open(struct inode *inode, struct file *file)
231 struct fw_device *device;
232 struct client *client;
234 device = fw_device_get_by_devt(inode->i_rdev);
235 if (device == NULL)
236 return -ENODEV;
238 if (fw_device_is_shutdown(device)) {
239 fw_device_put(device);
240 return -ENODEV;
243 client = kzalloc(sizeof(*client), GFP_KERNEL);
244 if (client == NULL) {
245 fw_device_put(device);
246 return -ENOMEM;
249 client->device = device;
250 spin_lock_init(&client->lock);
251 idr_init(&client->resource_idr);
252 INIT_LIST_HEAD(&client->event_list);
253 init_waitqueue_head(&client->wait);
254 INIT_LIST_HEAD(&client->phy_receiver_link);
255 kref_init(&client->kref);
257 file->private_data = client;
259 mutex_lock(&device->client_list_mutex);
260 list_add_tail(&client->link, &device->client_list);
261 mutex_unlock(&device->client_list_mutex);
263 return nonseekable_open(inode, file);
266 static void queue_event(struct client *client, struct event *event,
267 void *data0, size_t size0, void *data1, size_t size1)
269 unsigned long flags;
271 event->v[0].data = data0;
272 event->v[0].size = size0;
273 event->v[1].data = data1;
274 event->v[1].size = size1;
276 spin_lock_irqsave(&client->lock, flags);
277 if (client->in_shutdown)
278 kfree(event);
279 else
280 list_add_tail(&event->link, &client->event_list);
281 spin_unlock_irqrestore(&client->lock, flags);
283 wake_up_interruptible(&client->wait);
286 static int dequeue_event(struct client *client,
287 char __user *buffer, size_t count)
289 struct event *event;
290 size_t size, total;
291 int i, ret;
293 ret = wait_event_interruptible(client->wait,
294 !list_empty(&client->event_list) ||
295 fw_device_is_shutdown(client->device));
296 if (ret < 0)
297 return ret;
299 if (list_empty(&client->event_list) &&
300 fw_device_is_shutdown(client->device))
301 return -ENODEV;
303 spin_lock_irq(&client->lock);
304 event = list_first_entry(&client->event_list, struct event, link);
305 list_del(&event->link);
306 spin_unlock_irq(&client->lock);
308 total = 0;
309 for (i = 0; i < ARRAY_SIZE(event->v) && total < count; i++) {
310 size = min(event->v[i].size, count - total);
311 if (copy_to_user(buffer + total, event->v[i].data, size)) {
312 ret = -EFAULT;
313 goto out;
315 total += size;
317 ret = total;
319 out:
320 kfree(event);
322 return ret;
325 static ssize_t fw_device_op_read(struct file *file, char __user *buffer,
326 size_t count, loff_t *offset)
328 struct client *client = file->private_data;
330 return dequeue_event(client, buffer, count);
333 static void fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
334 struct client *client)
336 struct fw_card *card = client->device->card;
338 spin_lock_irq(&card->lock);
340 event->closure = client->bus_reset_closure;
341 event->type = FW_CDEV_EVENT_BUS_RESET;
342 event->generation = client->device->generation;
343 event->node_id = client->device->node_id;
344 event->local_node_id = card->local_node->node_id;
345 event->bm_node_id = card->bm_node_id;
346 event->irm_node_id = card->irm_node->node_id;
347 event->root_node_id = card->root_node->node_id;
349 spin_unlock_irq(&card->lock);
352 static void for_each_client(struct fw_device *device,
353 void (*callback)(struct client *client))
355 struct client *c;
357 mutex_lock(&device->client_list_mutex);
358 list_for_each_entry(c, &device->client_list, link)
359 callback(c);
360 mutex_unlock(&device->client_list_mutex);
363 static int schedule_reallocations(int id, void *p, void *data)
365 schedule_if_iso_resource(p);
367 return 0;
370 static void queue_bus_reset_event(struct client *client)
372 struct bus_reset_event *e;
374 e = kzalloc(sizeof(*e), GFP_KERNEL);
375 if (e == NULL) {
376 fw_notify("Out of memory when allocating event\n");
377 return;
380 fill_bus_reset_event(&e->reset, client);
382 queue_event(client, &e->event,
383 &e->reset, sizeof(e->reset), NULL, 0);
385 spin_lock_irq(&client->lock);
386 idr_for_each(&client->resource_idr, schedule_reallocations, client);
387 spin_unlock_irq(&client->lock);
390 void fw_device_cdev_update(struct fw_device *device)
392 for_each_client(device, queue_bus_reset_event);
395 static void wake_up_client(struct client *client)
397 wake_up_interruptible(&client->wait);
400 void fw_device_cdev_remove(struct fw_device *device)
402 for_each_client(device, wake_up_client);
405 union ioctl_arg {
406 struct fw_cdev_get_info get_info;
407 struct fw_cdev_send_request send_request;
408 struct fw_cdev_allocate allocate;
409 struct fw_cdev_deallocate deallocate;
410 struct fw_cdev_send_response send_response;
411 struct fw_cdev_initiate_bus_reset initiate_bus_reset;
412 struct fw_cdev_add_descriptor add_descriptor;
413 struct fw_cdev_remove_descriptor remove_descriptor;
414 struct fw_cdev_create_iso_context create_iso_context;
415 struct fw_cdev_queue_iso queue_iso;
416 struct fw_cdev_start_iso start_iso;
417 struct fw_cdev_stop_iso stop_iso;
418 struct fw_cdev_get_cycle_timer get_cycle_timer;
419 struct fw_cdev_allocate_iso_resource allocate_iso_resource;
420 struct fw_cdev_send_stream_packet send_stream_packet;
421 struct fw_cdev_get_cycle_timer2 get_cycle_timer2;
422 struct fw_cdev_send_phy_packet send_phy_packet;
423 struct fw_cdev_receive_phy_packets receive_phy_packets;
424 struct fw_cdev_set_iso_channels set_iso_channels;
427 static int ioctl_get_info(struct client *client, union ioctl_arg *arg)
429 struct fw_cdev_get_info *a = &arg->get_info;
430 struct fw_cdev_event_bus_reset bus_reset;
431 unsigned long ret = 0;
433 client->version = a->version;
434 a->version = FW_CDEV_KERNEL_VERSION;
435 a->card = client->device->card->index;
437 down_read(&fw_device_rwsem);
439 if (a->rom != 0) {
440 size_t want = a->rom_length;
441 size_t have = client->device->config_rom_length * 4;
443 ret = copy_to_user(u64_to_uptr(a->rom),
444 client->device->config_rom, min(want, have));
446 a->rom_length = client->device->config_rom_length * 4;
448 up_read(&fw_device_rwsem);
450 if (ret != 0)
451 return -EFAULT;
453 client->bus_reset_closure = a->bus_reset_closure;
454 if (a->bus_reset != 0) {
455 fill_bus_reset_event(&bus_reset, client);
456 if (copy_to_user(u64_to_uptr(a->bus_reset),
457 &bus_reset, sizeof(bus_reset)))
458 return -EFAULT;
461 return 0;
464 static int add_client_resource(struct client *client,
465 struct client_resource *resource, gfp_t gfp_mask)
467 unsigned long flags;
468 int ret;
470 retry:
471 if (idr_pre_get(&client->resource_idr, gfp_mask) == 0)
472 return -ENOMEM;
474 spin_lock_irqsave(&client->lock, flags);
475 if (client->in_shutdown)
476 ret = -ECANCELED;
477 else
478 ret = idr_get_new(&client->resource_idr, resource,
479 &resource->handle);
480 if (ret >= 0) {
481 client_get(client);
482 schedule_if_iso_resource(resource);
484 spin_unlock_irqrestore(&client->lock, flags);
486 if (ret == -EAGAIN)
487 goto retry;
489 return ret < 0 ? ret : 0;
492 static int release_client_resource(struct client *client, u32 handle,
493 client_resource_release_fn_t release,
494 struct client_resource **return_resource)
496 struct client_resource *resource;
498 spin_lock_irq(&client->lock);
499 if (client->in_shutdown)
500 resource = NULL;
501 else
502 resource = idr_find(&client->resource_idr, handle);
503 if (resource && resource->release == release)
504 idr_remove(&client->resource_idr, handle);
505 spin_unlock_irq(&client->lock);
507 if (!(resource && resource->release == release))
508 return -EINVAL;
510 if (return_resource)
511 *return_resource = resource;
512 else
513 resource->release(client, resource);
515 client_put(client);
517 return 0;
520 static void release_transaction(struct client *client,
521 struct client_resource *resource)
523 struct outbound_transaction_resource *r = container_of(resource,
524 struct outbound_transaction_resource, resource);
526 fw_cancel_transaction(client->device->card, &r->transaction);
529 static void complete_transaction(struct fw_card *card, int rcode,
530 void *payload, size_t length, void *data)
532 struct outbound_transaction_event *e = data;
533 struct fw_cdev_event_response *rsp = &e->response;
534 struct client *client = e->client;
535 unsigned long flags;
537 if (length < rsp->length)
538 rsp->length = length;
539 if (rcode == RCODE_COMPLETE)
540 memcpy(rsp->data, payload, rsp->length);
542 spin_lock_irqsave(&client->lock, flags);
544 * 1. If called while in shutdown, the idr tree must be left untouched.
545 * The idr handle will be removed and the client reference will be
546 * dropped later.
548 if (!client->in_shutdown) {
549 idr_remove(&client->resource_idr, e->r.resource.handle);
550 /* Drop the idr's reference */
551 client_put(client);
553 spin_unlock_irqrestore(&client->lock, flags);
555 rsp->type = FW_CDEV_EVENT_RESPONSE;
556 rsp->rcode = rcode;
559 * In the case that sizeof(*rsp) doesn't align with the position of the
560 * data, and the read is short, preserve an extra copy of the data
561 * to stay compatible with a pre-2.6.27 bug. Since the bug is harmless
562 * for short reads and some apps depended on it, this is both safe
563 * and prudent for compatibility.
565 if (rsp->length <= sizeof(*rsp) - offsetof(typeof(*rsp), data))
566 queue_event(client, &e->event, rsp, sizeof(*rsp),
567 rsp->data, rsp->length);
568 else
569 queue_event(client, &e->event, rsp, sizeof(*rsp) + rsp->length,
570 NULL, 0);
572 /* Drop the transaction callback's reference */
573 client_put(client);
576 static int init_request(struct client *client,
577 struct fw_cdev_send_request *request,
578 int destination_id, int speed)
580 struct outbound_transaction_event *e;
581 int ret;
583 if (request->tcode != TCODE_STREAM_DATA &&
584 (request->length > 4096 || request->length > 512 << speed))
585 return -EIO;
587 if (request->tcode == TCODE_WRITE_QUADLET_REQUEST &&
588 request->length < 4)
589 return -EINVAL;
591 e = kmalloc(sizeof(*e) + request->length, GFP_KERNEL);
592 if (e == NULL)
593 return -ENOMEM;
595 e->client = client;
596 e->response.length = request->length;
597 e->response.closure = request->closure;
599 if (request->data &&
600 copy_from_user(e->response.data,
601 u64_to_uptr(request->data), request->length)) {
602 ret = -EFAULT;
603 goto failed;
606 e->r.resource.release = release_transaction;
607 ret = add_client_resource(client, &e->r.resource, GFP_KERNEL);
608 if (ret < 0)
609 goto failed;
611 /* Get a reference for the transaction callback */
612 client_get(client);
614 fw_send_request(client->device->card, &e->r.transaction,
615 request->tcode, destination_id, request->generation,
616 speed, request->offset, e->response.data,
617 request->length, complete_transaction, e);
618 return 0;
620 failed:
621 kfree(e);
623 return ret;
626 static int ioctl_send_request(struct client *client, union ioctl_arg *arg)
628 switch (arg->send_request.tcode) {
629 case TCODE_WRITE_QUADLET_REQUEST:
630 case TCODE_WRITE_BLOCK_REQUEST:
631 case TCODE_READ_QUADLET_REQUEST:
632 case TCODE_READ_BLOCK_REQUEST:
633 case TCODE_LOCK_MASK_SWAP:
634 case TCODE_LOCK_COMPARE_SWAP:
635 case TCODE_LOCK_FETCH_ADD:
636 case TCODE_LOCK_LITTLE_ADD:
637 case TCODE_LOCK_BOUNDED_ADD:
638 case TCODE_LOCK_WRAP_ADD:
639 case TCODE_LOCK_VENDOR_DEPENDENT:
640 break;
641 default:
642 return -EINVAL;
645 return init_request(client, &arg->send_request, client->device->node_id,
646 client->device->max_speed);
649 static inline bool is_fcp_request(struct fw_request *request)
651 return request == NULL;
654 static void release_request(struct client *client,
655 struct client_resource *resource)
657 struct inbound_transaction_resource *r = container_of(resource,
658 struct inbound_transaction_resource, resource);
660 if (is_fcp_request(r->request))
661 kfree(r->data);
662 else
663 fw_send_response(r->card, r->request, RCODE_CONFLICT_ERROR);
665 fw_card_put(r->card);
666 kfree(r);
669 static void handle_request(struct fw_card *card, struct fw_request *request,
670 int tcode, int destination, int source,
671 int generation, unsigned long long offset,
672 void *payload, size_t length, void *callback_data)
674 struct address_handler_resource *handler = callback_data;
675 struct inbound_transaction_resource *r;
676 struct inbound_transaction_event *e;
677 size_t event_size0;
678 void *fcp_frame = NULL;
679 int ret;
681 /* card may be different from handler->client->device->card */
682 fw_card_get(card);
684 r = kmalloc(sizeof(*r), GFP_ATOMIC);
685 e = kmalloc(sizeof(*e), GFP_ATOMIC);
686 if (r == NULL || e == NULL) {
687 fw_notify("Out of memory when allocating event\n");
688 goto failed;
690 r->card = card;
691 r->request = request;
692 r->data = payload;
693 r->length = length;
695 if (is_fcp_request(request)) {
697 * FIXME: Let core-transaction.c manage a
698 * single reference-counted copy?
700 fcp_frame = kmemdup(payload, length, GFP_ATOMIC);
701 if (fcp_frame == NULL)
702 goto failed;
704 r->data = fcp_frame;
707 r->resource.release = release_request;
708 ret = add_client_resource(handler->client, &r->resource, GFP_ATOMIC);
709 if (ret < 0)
710 goto failed;
712 if (handler->client->version < FW_CDEV_VERSION_EVENT_REQUEST2) {
713 struct fw_cdev_event_request *req = &e->req.request;
715 if (tcode & 0x10)
716 tcode = TCODE_LOCK_REQUEST;
718 req->type = FW_CDEV_EVENT_REQUEST;
719 req->tcode = tcode;
720 req->offset = offset;
721 req->length = length;
722 req->handle = r->resource.handle;
723 req->closure = handler->closure;
724 event_size0 = sizeof(*req);
725 } else {
726 struct fw_cdev_event_request2 *req = &e->req.request2;
728 req->type = FW_CDEV_EVENT_REQUEST2;
729 req->tcode = tcode;
730 req->offset = offset;
731 req->source_node_id = source;
732 req->destination_node_id = destination;
733 req->card = card->index;
734 req->generation = generation;
735 req->length = length;
736 req->handle = r->resource.handle;
737 req->closure = handler->closure;
738 event_size0 = sizeof(*req);
741 queue_event(handler->client, &e->event,
742 &e->req, event_size0, r->data, length);
743 return;
745 failed:
746 kfree(r);
747 kfree(e);
748 kfree(fcp_frame);
750 if (!is_fcp_request(request))
751 fw_send_response(card, request, RCODE_CONFLICT_ERROR);
753 fw_card_put(card);
756 static void release_address_handler(struct client *client,
757 struct client_resource *resource)
759 struct address_handler_resource *r =
760 container_of(resource, struct address_handler_resource, resource);
762 fw_core_remove_address_handler(&r->handler);
763 kfree(r);
766 static int ioctl_allocate(struct client *client, union ioctl_arg *arg)
768 struct fw_cdev_allocate *a = &arg->allocate;
769 struct address_handler_resource *r;
770 struct fw_address_region region;
771 int ret;
773 r = kmalloc(sizeof(*r), GFP_KERNEL);
774 if (r == NULL)
775 return -ENOMEM;
777 region.start = a->offset;
778 if (client->version < FW_CDEV_VERSION_ALLOCATE_REGION_END)
779 region.end = a->offset + a->length;
780 else
781 region.end = a->region_end;
783 r->handler.length = a->length;
784 r->handler.address_callback = handle_request;
785 r->handler.callback_data = r;
786 r->closure = a->closure;
787 r->client = client;
789 ret = fw_core_add_address_handler(&r->handler, &region);
790 if (ret < 0) {
791 kfree(r);
792 return ret;
794 a->offset = r->handler.offset;
796 r->resource.release = release_address_handler;
797 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
798 if (ret < 0) {
799 release_address_handler(client, &r->resource);
800 return ret;
802 a->handle = r->resource.handle;
804 return 0;
807 static int ioctl_deallocate(struct client *client, union ioctl_arg *arg)
809 return release_client_resource(client, arg->deallocate.handle,
810 release_address_handler, NULL);
813 static int ioctl_send_response(struct client *client, union ioctl_arg *arg)
815 struct fw_cdev_send_response *a = &arg->send_response;
816 struct client_resource *resource;
817 struct inbound_transaction_resource *r;
818 int ret = 0;
820 if (release_client_resource(client, a->handle,
821 release_request, &resource) < 0)
822 return -EINVAL;
824 r = container_of(resource, struct inbound_transaction_resource,
825 resource);
826 if (is_fcp_request(r->request))
827 goto out;
829 if (a->length != fw_get_response_length(r->request)) {
830 ret = -EINVAL;
831 kfree(r->request);
832 goto out;
834 if (copy_from_user(r->data, u64_to_uptr(a->data), a->length)) {
835 ret = -EFAULT;
836 kfree(r->request);
837 goto out;
839 fw_send_response(r->card, r->request, a->rcode);
840 out:
841 fw_card_put(r->card);
842 kfree(r);
844 return ret;
847 static int ioctl_initiate_bus_reset(struct client *client, union ioctl_arg *arg)
849 fw_schedule_bus_reset(client->device->card, true,
850 arg->initiate_bus_reset.type == FW_CDEV_SHORT_RESET);
851 return 0;
854 static void release_descriptor(struct client *client,
855 struct client_resource *resource)
857 struct descriptor_resource *r =
858 container_of(resource, struct descriptor_resource, resource);
860 fw_core_remove_descriptor(&r->descriptor);
861 kfree(r);
864 static int ioctl_add_descriptor(struct client *client, union ioctl_arg *arg)
866 struct fw_cdev_add_descriptor *a = &arg->add_descriptor;
867 struct descriptor_resource *r;
868 int ret;
870 /* Access policy: Allow this ioctl only on local nodes' device files. */
871 if (!client->device->is_local)
872 return -ENOSYS;
874 if (a->length > 256)
875 return -EINVAL;
877 r = kmalloc(sizeof(*r) + a->length * 4, GFP_KERNEL);
878 if (r == NULL)
879 return -ENOMEM;
881 if (copy_from_user(r->data, u64_to_uptr(a->data), a->length * 4)) {
882 ret = -EFAULT;
883 goto failed;
886 r->descriptor.length = a->length;
887 r->descriptor.immediate = a->immediate;
888 r->descriptor.key = a->key;
889 r->descriptor.data = r->data;
891 ret = fw_core_add_descriptor(&r->descriptor);
892 if (ret < 0)
893 goto failed;
895 r->resource.release = release_descriptor;
896 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
897 if (ret < 0) {
898 fw_core_remove_descriptor(&r->descriptor);
899 goto failed;
901 a->handle = r->resource.handle;
903 return 0;
904 failed:
905 kfree(r);
907 return ret;
910 static int ioctl_remove_descriptor(struct client *client, union ioctl_arg *arg)
912 return release_client_resource(client, arg->remove_descriptor.handle,
913 release_descriptor, NULL);
916 static void iso_callback(struct fw_iso_context *context, u32 cycle,
917 size_t header_length, void *header, void *data)
919 struct client *client = data;
920 struct iso_interrupt_event *e;
922 e = kmalloc(sizeof(*e) + header_length, GFP_ATOMIC);
923 if (e == NULL) {
924 fw_notify("Out of memory when allocating event\n");
925 return;
927 e->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT;
928 e->interrupt.closure = client->iso_closure;
929 e->interrupt.cycle = cycle;
930 e->interrupt.header_length = header_length;
931 memcpy(e->interrupt.header, header, header_length);
932 queue_event(client, &e->event, &e->interrupt,
933 sizeof(e->interrupt) + header_length, NULL, 0);
936 static void iso_mc_callback(struct fw_iso_context *context,
937 dma_addr_t completed, void *data)
939 struct client *client = data;
940 struct iso_interrupt_mc_event *e;
942 e = kmalloc(sizeof(*e), GFP_ATOMIC);
943 if (e == NULL) {
944 fw_notify("Out of memory when allocating event\n");
945 return;
947 e->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT_MULTICHANNEL;
948 e->interrupt.closure = client->iso_closure;
949 e->interrupt.completed = fw_iso_buffer_lookup(&client->buffer,
950 completed);
951 queue_event(client, &e->event, &e->interrupt,
952 sizeof(e->interrupt), NULL, 0);
955 static int ioctl_create_iso_context(struct client *client, union ioctl_arg *arg)
957 struct fw_cdev_create_iso_context *a = &arg->create_iso_context;
958 struct fw_iso_context *context;
959 fw_iso_callback_t cb;
961 BUILD_BUG_ON(FW_CDEV_ISO_CONTEXT_TRANSMIT != FW_ISO_CONTEXT_TRANSMIT ||
962 FW_CDEV_ISO_CONTEXT_RECEIVE != FW_ISO_CONTEXT_RECEIVE ||
963 FW_CDEV_ISO_CONTEXT_RECEIVE_MULTICHANNEL !=
964 FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL);
966 switch (a->type) {
967 case FW_ISO_CONTEXT_TRANSMIT:
968 if (a->speed > SCODE_3200 || a->channel > 63)
969 return -EINVAL;
971 cb = iso_callback;
972 break;
974 case FW_ISO_CONTEXT_RECEIVE:
975 if (a->header_size < 4 || (a->header_size & 3) ||
976 a->channel > 63)
977 return -EINVAL;
979 cb = iso_callback;
980 break;
982 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
983 cb = (fw_iso_callback_t)iso_mc_callback;
984 break;
986 default:
987 return -EINVAL;
990 context = fw_iso_context_create(client->device->card, a->type,
991 a->channel, a->speed, a->header_size, cb, client);
992 if (IS_ERR(context))
993 return PTR_ERR(context);
995 /* We only support one context at this time. */
996 spin_lock_irq(&client->lock);
997 if (client->iso_context != NULL) {
998 spin_unlock_irq(&client->lock);
999 fw_iso_context_destroy(context);
1000 return -EBUSY;
1002 client->iso_closure = a->closure;
1003 client->iso_context = context;
1004 spin_unlock_irq(&client->lock);
1006 a->handle = 0;
1008 return 0;
1011 static int ioctl_set_iso_channels(struct client *client, union ioctl_arg *arg)
1013 struct fw_cdev_set_iso_channels *a = &arg->set_iso_channels;
1014 struct fw_iso_context *ctx = client->iso_context;
1016 if (ctx == NULL || a->handle != 0)
1017 return -EINVAL;
1019 return fw_iso_context_set_channels(ctx, &a->channels);
1022 /* Macros for decoding the iso packet control header. */
1023 #define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
1024 #define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
1025 #define GET_SKIP(v) (((v) >> 17) & 0x01)
1026 #define GET_TAG(v) (((v) >> 18) & 0x03)
1027 #define GET_SY(v) (((v) >> 20) & 0x0f)
1028 #define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
1030 static int ioctl_queue_iso(struct client *client, union ioctl_arg *arg)
1032 struct fw_cdev_queue_iso *a = &arg->queue_iso;
1033 struct fw_cdev_iso_packet __user *p, *end, *next;
1034 struct fw_iso_context *ctx = client->iso_context;
1035 unsigned long payload, buffer_end, transmit_header_bytes = 0;
1036 u32 control;
1037 int count;
1038 struct {
1039 struct fw_iso_packet packet;
1040 u8 header[256];
1041 } u;
1043 if (ctx == NULL || a->handle != 0)
1044 return -EINVAL;
1047 * If the user passes a non-NULL data pointer, has mmap()'ed
1048 * the iso buffer, and the pointer points inside the buffer,
1049 * we setup the payload pointers accordingly. Otherwise we
1050 * set them both to 0, which will still let packets with
1051 * payload_length == 0 through. In other words, if no packets
1052 * use the indirect payload, the iso buffer need not be mapped
1053 * and the a->data pointer is ignored.
1055 payload = (unsigned long)a->data - client->vm_start;
1056 buffer_end = client->buffer.page_count << PAGE_SHIFT;
1057 if (a->data == 0 || client->buffer.pages == NULL ||
1058 payload >= buffer_end) {
1059 payload = 0;
1060 buffer_end = 0;
1063 if (ctx->type == FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL && payload & 3)
1064 return -EINVAL;
1066 p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(a->packets);
1067 if (!access_ok(VERIFY_READ, p, a->size))
1068 return -EFAULT;
1070 end = (void __user *)p + a->size;
1071 count = 0;
1072 while (p < end) {
1073 if (get_user(control, &p->control))
1074 return -EFAULT;
1075 u.packet.payload_length = GET_PAYLOAD_LENGTH(control);
1076 u.packet.interrupt = GET_INTERRUPT(control);
1077 u.packet.skip = GET_SKIP(control);
1078 u.packet.tag = GET_TAG(control);
1079 u.packet.sy = GET_SY(control);
1080 u.packet.header_length = GET_HEADER_LENGTH(control);
1082 switch (ctx->type) {
1083 case FW_ISO_CONTEXT_TRANSMIT:
1084 if (u.packet.header_length & 3)
1085 return -EINVAL;
1086 transmit_header_bytes = u.packet.header_length;
1087 break;
1089 case FW_ISO_CONTEXT_RECEIVE:
1090 if (u.packet.header_length == 0 ||
1091 u.packet.header_length % ctx->header_size != 0)
1092 return -EINVAL;
1093 break;
1095 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
1096 if (u.packet.payload_length == 0 ||
1097 u.packet.payload_length & 3)
1098 return -EINVAL;
1099 break;
1102 next = (struct fw_cdev_iso_packet __user *)
1103 &p->header[transmit_header_bytes / 4];
1104 if (next > end)
1105 return -EINVAL;
1106 if (__copy_from_user
1107 (u.packet.header, p->header, transmit_header_bytes))
1108 return -EFAULT;
1109 if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
1110 u.packet.header_length + u.packet.payload_length > 0)
1111 return -EINVAL;
1112 if (payload + u.packet.payload_length > buffer_end)
1113 return -EINVAL;
1115 if (fw_iso_context_queue(ctx, &u.packet,
1116 &client->buffer, payload))
1117 break;
1119 p = next;
1120 payload += u.packet.payload_length;
1121 count++;
1124 a->size -= uptr_to_u64(p) - a->packets;
1125 a->packets = uptr_to_u64(p);
1126 a->data = client->vm_start + payload;
1128 return count;
1131 static int ioctl_start_iso(struct client *client, union ioctl_arg *arg)
1133 struct fw_cdev_start_iso *a = &arg->start_iso;
1135 BUILD_BUG_ON(
1136 FW_CDEV_ISO_CONTEXT_MATCH_TAG0 != FW_ISO_CONTEXT_MATCH_TAG0 ||
1137 FW_CDEV_ISO_CONTEXT_MATCH_TAG1 != FW_ISO_CONTEXT_MATCH_TAG1 ||
1138 FW_CDEV_ISO_CONTEXT_MATCH_TAG2 != FW_ISO_CONTEXT_MATCH_TAG2 ||
1139 FW_CDEV_ISO_CONTEXT_MATCH_TAG3 != FW_ISO_CONTEXT_MATCH_TAG3 ||
1140 FW_CDEV_ISO_CONTEXT_MATCH_ALL_TAGS != FW_ISO_CONTEXT_MATCH_ALL_TAGS);
1142 if (client->iso_context == NULL || a->handle != 0)
1143 return -EINVAL;
1145 if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE &&
1146 (a->tags == 0 || a->tags > 15 || a->sync > 15))
1147 return -EINVAL;
1149 return fw_iso_context_start(client->iso_context,
1150 a->cycle, a->sync, a->tags);
1153 static int ioctl_stop_iso(struct client *client, union ioctl_arg *arg)
1155 struct fw_cdev_stop_iso *a = &arg->stop_iso;
1157 if (client->iso_context == NULL || a->handle != 0)
1158 return -EINVAL;
1160 return fw_iso_context_stop(client->iso_context);
1163 static int ioctl_get_cycle_timer2(struct client *client, union ioctl_arg *arg)
1165 struct fw_cdev_get_cycle_timer2 *a = &arg->get_cycle_timer2;
1166 struct fw_card *card = client->device->card;
1167 struct timespec ts = {0, 0};
1168 u32 cycle_time;
1169 int ret = 0;
1171 local_irq_disable();
1173 cycle_time = card->driver->read_csr(card, CSR_CYCLE_TIME);
1175 switch (a->clk_id) {
1176 case CLOCK_REALTIME: getnstimeofday(&ts); break;
1177 case CLOCK_MONOTONIC: do_posix_clock_monotonic_gettime(&ts); break;
1178 case CLOCK_MONOTONIC_RAW: getrawmonotonic(&ts); break;
1179 default:
1180 ret = -EINVAL;
1183 local_irq_enable();
1185 a->tv_sec = ts.tv_sec;
1186 a->tv_nsec = ts.tv_nsec;
1187 a->cycle_timer = cycle_time;
1189 return ret;
1192 static int ioctl_get_cycle_timer(struct client *client, union ioctl_arg *arg)
1194 struct fw_cdev_get_cycle_timer *a = &arg->get_cycle_timer;
1195 struct fw_cdev_get_cycle_timer2 ct2;
1197 ct2.clk_id = CLOCK_REALTIME;
1198 ioctl_get_cycle_timer2(client, (union ioctl_arg *)&ct2);
1200 a->local_time = ct2.tv_sec * USEC_PER_SEC + ct2.tv_nsec / NSEC_PER_USEC;
1201 a->cycle_timer = ct2.cycle_timer;
1203 return 0;
1206 static void iso_resource_work(struct work_struct *work)
1208 struct iso_resource_event *e;
1209 struct iso_resource *r =
1210 container_of(work, struct iso_resource, work.work);
1211 struct client *client = r->client;
1212 int generation, channel, bandwidth, todo;
1213 bool skip, free, success;
1215 spin_lock_irq(&client->lock);
1216 generation = client->device->generation;
1217 todo = r->todo;
1218 /* Allow 1000ms grace period for other reallocations. */
1219 if (todo == ISO_RES_ALLOC &&
1220 time_is_after_jiffies(client->device->card->reset_jiffies + HZ)) {
1221 schedule_iso_resource(r, DIV_ROUND_UP(HZ, 3));
1222 skip = true;
1223 } else {
1224 /* We could be called twice within the same generation. */
1225 skip = todo == ISO_RES_REALLOC &&
1226 r->generation == generation;
1228 free = todo == ISO_RES_DEALLOC ||
1229 todo == ISO_RES_ALLOC_ONCE ||
1230 todo == ISO_RES_DEALLOC_ONCE;
1231 r->generation = generation;
1232 spin_unlock_irq(&client->lock);
1234 if (skip)
1235 goto out;
1237 bandwidth = r->bandwidth;
1239 fw_iso_resource_manage(client->device->card, generation,
1240 r->channels, &channel, &bandwidth,
1241 todo == ISO_RES_ALLOC ||
1242 todo == ISO_RES_REALLOC ||
1243 todo == ISO_RES_ALLOC_ONCE,
1244 r->transaction_data);
1246 * Is this generation outdated already? As long as this resource sticks
1247 * in the idr, it will be scheduled again for a newer generation or at
1248 * shutdown.
1250 if (channel == -EAGAIN &&
1251 (todo == ISO_RES_ALLOC || todo == ISO_RES_REALLOC))
1252 goto out;
1254 success = channel >= 0 || bandwidth > 0;
1256 spin_lock_irq(&client->lock);
1258 * Transit from allocation to reallocation, except if the client
1259 * requested deallocation in the meantime.
1261 if (r->todo == ISO_RES_ALLOC)
1262 r->todo = ISO_RES_REALLOC;
1264 * Allocation or reallocation failure? Pull this resource out of the
1265 * idr and prepare for deletion, unless the client is shutting down.
1267 if (r->todo == ISO_RES_REALLOC && !success &&
1268 !client->in_shutdown &&
1269 idr_find(&client->resource_idr, r->resource.handle)) {
1270 idr_remove(&client->resource_idr, r->resource.handle);
1271 client_put(client);
1272 free = true;
1274 spin_unlock_irq(&client->lock);
1276 if (todo == ISO_RES_ALLOC && channel >= 0)
1277 r->channels = 1ULL << channel;
1279 if (todo == ISO_RES_REALLOC && success)
1280 goto out;
1282 if (todo == ISO_RES_ALLOC || todo == ISO_RES_ALLOC_ONCE) {
1283 e = r->e_alloc;
1284 r->e_alloc = NULL;
1285 } else {
1286 e = r->e_dealloc;
1287 r->e_dealloc = NULL;
1289 e->iso_resource.handle = r->resource.handle;
1290 e->iso_resource.channel = channel;
1291 e->iso_resource.bandwidth = bandwidth;
1293 queue_event(client, &e->event,
1294 &e->iso_resource, sizeof(e->iso_resource), NULL, 0);
1296 if (free) {
1297 cancel_delayed_work(&r->work);
1298 kfree(r->e_alloc);
1299 kfree(r->e_dealloc);
1300 kfree(r);
1302 out:
1303 client_put(client);
1306 static void release_iso_resource(struct client *client,
1307 struct client_resource *resource)
1309 struct iso_resource *r =
1310 container_of(resource, struct iso_resource, resource);
1312 spin_lock_irq(&client->lock);
1313 r->todo = ISO_RES_DEALLOC;
1314 schedule_iso_resource(r, 0);
1315 spin_unlock_irq(&client->lock);
1318 static int init_iso_resource(struct client *client,
1319 struct fw_cdev_allocate_iso_resource *request, int todo)
1321 struct iso_resource_event *e1, *e2;
1322 struct iso_resource *r;
1323 int ret;
1325 if ((request->channels == 0 && request->bandwidth == 0) ||
1326 request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL ||
1327 request->bandwidth < 0)
1328 return -EINVAL;
1330 r = kmalloc(sizeof(*r), GFP_KERNEL);
1331 e1 = kmalloc(sizeof(*e1), GFP_KERNEL);
1332 e2 = kmalloc(sizeof(*e2), GFP_KERNEL);
1333 if (r == NULL || e1 == NULL || e2 == NULL) {
1334 ret = -ENOMEM;
1335 goto fail;
1338 INIT_DELAYED_WORK(&r->work, iso_resource_work);
1339 r->client = client;
1340 r->todo = todo;
1341 r->generation = -1;
1342 r->channels = request->channels;
1343 r->bandwidth = request->bandwidth;
1344 r->e_alloc = e1;
1345 r->e_dealloc = e2;
1347 e1->iso_resource.closure = request->closure;
1348 e1->iso_resource.type = FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED;
1349 e2->iso_resource.closure = request->closure;
1350 e2->iso_resource.type = FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED;
1352 if (todo == ISO_RES_ALLOC) {
1353 r->resource.release = release_iso_resource;
1354 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
1355 if (ret < 0)
1356 goto fail;
1357 } else {
1358 r->resource.release = NULL;
1359 r->resource.handle = -1;
1360 schedule_iso_resource(r, 0);
1362 request->handle = r->resource.handle;
1364 return 0;
1365 fail:
1366 kfree(r);
1367 kfree(e1);
1368 kfree(e2);
1370 return ret;
1373 static int ioctl_allocate_iso_resource(struct client *client,
1374 union ioctl_arg *arg)
1376 return init_iso_resource(client,
1377 &arg->allocate_iso_resource, ISO_RES_ALLOC);
1380 static int ioctl_deallocate_iso_resource(struct client *client,
1381 union ioctl_arg *arg)
1383 return release_client_resource(client,
1384 arg->deallocate.handle, release_iso_resource, NULL);
1387 static int ioctl_allocate_iso_resource_once(struct client *client,
1388 union ioctl_arg *arg)
1390 return init_iso_resource(client,
1391 &arg->allocate_iso_resource, ISO_RES_ALLOC_ONCE);
1394 static int ioctl_deallocate_iso_resource_once(struct client *client,
1395 union ioctl_arg *arg)
1397 return init_iso_resource(client,
1398 &arg->allocate_iso_resource, ISO_RES_DEALLOC_ONCE);
1402 * Returns a speed code: Maximum speed to or from this device,
1403 * limited by the device's link speed, the local node's link speed,
1404 * and all PHY port speeds between the two links.
1406 static int ioctl_get_speed(struct client *client, union ioctl_arg *arg)
1408 return client->device->max_speed;
1411 static int ioctl_send_broadcast_request(struct client *client,
1412 union ioctl_arg *arg)
1414 struct fw_cdev_send_request *a = &arg->send_request;
1416 switch (a->tcode) {
1417 case TCODE_WRITE_QUADLET_REQUEST:
1418 case TCODE_WRITE_BLOCK_REQUEST:
1419 break;
1420 default:
1421 return -EINVAL;
1424 /* Security policy: Only allow accesses to Units Space. */
1425 if (a->offset < CSR_REGISTER_BASE + CSR_CONFIG_ROM_END)
1426 return -EACCES;
1428 return init_request(client, a, LOCAL_BUS | 0x3f, SCODE_100);
1431 static int ioctl_send_stream_packet(struct client *client, union ioctl_arg *arg)
1433 struct fw_cdev_send_stream_packet *a = &arg->send_stream_packet;
1434 struct fw_cdev_send_request request;
1435 int dest;
1437 if (a->speed > client->device->card->link_speed ||
1438 a->length > 1024 << a->speed)
1439 return -EIO;
1441 if (a->tag > 3 || a->channel > 63 || a->sy > 15)
1442 return -EINVAL;
1444 dest = fw_stream_packet_destination_id(a->tag, a->channel, a->sy);
1445 request.tcode = TCODE_STREAM_DATA;
1446 request.length = a->length;
1447 request.closure = a->closure;
1448 request.data = a->data;
1449 request.generation = a->generation;
1451 return init_request(client, &request, dest, a->speed);
1454 static void outbound_phy_packet_callback(struct fw_packet *packet,
1455 struct fw_card *card, int status)
1457 struct outbound_phy_packet_event *e =
1458 container_of(packet, struct outbound_phy_packet_event, p);
1460 switch (status) {
1461 /* expected: */
1462 case ACK_COMPLETE: e->phy_packet.rcode = RCODE_COMPLETE; break;
1463 /* should never happen with PHY packets: */
1464 case ACK_PENDING: e->phy_packet.rcode = RCODE_COMPLETE; break;
1465 case ACK_BUSY_X:
1466 case ACK_BUSY_A:
1467 case ACK_BUSY_B: e->phy_packet.rcode = RCODE_BUSY; break;
1468 case ACK_DATA_ERROR: e->phy_packet.rcode = RCODE_DATA_ERROR; break;
1469 case ACK_TYPE_ERROR: e->phy_packet.rcode = RCODE_TYPE_ERROR; break;
1470 /* stale generation; cancelled; on certain controllers: no ack */
1471 default: e->phy_packet.rcode = status; break;
1473 e->phy_packet.data[0] = packet->timestamp;
1475 queue_event(e->client, &e->event, &e->phy_packet,
1476 sizeof(e->phy_packet) + e->phy_packet.length, NULL, 0);
1477 client_put(e->client);
1480 static int ioctl_send_phy_packet(struct client *client, union ioctl_arg *arg)
1482 struct fw_cdev_send_phy_packet *a = &arg->send_phy_packet;
1483 struct fw_card *card = client->device->card;
1484 struct outbound_phy_packet_event *e;
1486 /* Access policy: Allow this ioctl only on local nodes' device files. */
1487 if (!client->device->is_local)
1488 return -ENOSYS;
1490 e = kzalloc(sizeof(*e) + 4, GFP_KERNEL);
1491 if (e == NULL)
1492 return -ENOMEM;
1494 client_get(client);
1495 e->client = client;
1496 e->p.speed = SCODE_100;
1497 e->p.generation = a->generation;
1498 e->p.header[0] = TCODE_LINK_INTERNAL << 4;
1499 e->p.header[1] = a->data[0];
1500 e->p.header[2] = a->data[1];
1501 e->p.header_length = 12;
1502 e->p.callback = outbound_phy_packet_callback;
1503 e->phy_packet.closure = a->closure;
1504 e->phy_packet.type = FW_CDEV_EVENT_PHY_PACKET_SENT;
1505 if (is_ping_packet(a->data))
1506 e->phy_packet.length = 4;
1508 card->driver->send_request(card, &e->p);
1510 return 0;
1513 static int ioctl_receive_phy_packets(struct client *client, union ioctl_arg *arg)
1515 struct fw_cdev_receive_phy_packets *a = &arg->receive_phy_packets;
1516 struct fw_card *card = client->device->card;
1518 /* Access policy: Allow this ioctl only on local nodes' device files. */
1519 if (!client->device->is_local)
1520 return -ENOSYS;
1522 spin_lock_irq(&card->lock);
1524 list_move_tail(&client->phy_receiver_link, &card->phy_receiver_list);
1525 client->phy_receiver_closure = a->closure;
1527 spin_unlock_irq(&card->lock);
1529 return 0;
1532 void fw_cdev_handle_phy_packet(struct fw_card *card, struct fw_packet *p)
1534 struct client *client;
1535 struct inbound_phy_packet_event *e;
1536 unsigned long flags;
1538 spin_lock_irqsave(&card->lock, flags);
1540 list_for_each_entry(client, &card->phy_receiver_list, phy_receiver_link) {
1541 e = kmalloc(sizeof(*e) + 8, GFP_ATOMIC);
1542 if (e == NULL) {
1543 fw_notify("Out of memory when allocating event\n");
1544 break;
1546 e->phy_packet.closure = client->phy_receiver_closure;
1547 e->phy_packet.type = FW_CDEV_EVENT_PHY_PACKET_RECEIVED;
1548 e->phy_packet.rcode = RCODE_COMPLETE;
1549 e->phy_packet.length = 8;
1550 e->phy_packet.data[0] = p->header[1];
1551 e->phy_packet.data[1] = p->header[2];
1552 queue_event(client, &e->event,
1553 &e->phy_packet, sizeof(e->phy_packet) + 8, NULL, 0);
1556 spin_unlock_irqrestore(&card->lock, flags);
1559 static int (* const ioctl_handlers[])(struct client *, union ioctl_arg *) = {
1560 [0x00] = ioctl_get_info,
1561 [0x01] = ioctl_send_request,
1562 [0x02] = ioctl_allocate,
1563 [0x03] = ioctl_deallocate,
1564 [0x04] = ioctl_send_response,
1565 [0x05] = ioctl_initiate_bus_reset,
1566 [0x06] = ioctl_add_descriptor,
1567 [0x07] = ioctl_remove_descriptor,
1568 [0x08] = ioctl_create_iso_context,
1569 [0x09] = ioctl_queue_iso,
1570 [0x0a] = ioctl_start_iso,
1571 [0x0b] = ioctl_stop_iso,
1572 [0x0c] = ioctl_get_cycle_timer,
1573 [0x0d] = ioctl_allocate_iso_resource,
1574 [0x0e] = ioctl_deallocate_iso_resource,
1575 [0x0f] = ioctl_allocate_iso_resource_once,
1576 [0x10] = ioctl_deallocate_iso_resource_once,
1577 [0x11] = ioctl_get_speed,
1578 [0x12] = ioctl_send_broadcast_request,
1579 [0x13] = ioctl_send_stream_packet,
1580 [0x14] = ioctl_get_cycle_timer2,
1581 [0x15] = ioctl_send_phy_packet,
1582 [0x16] = ioctl_receive_phy_packets,
1583 [0x17] = ioctl_set_iso_channels,
1586 static int dispatch_ioctl(struct client *client,
1587 unsigned int cmd, void __user *arg)
1589 union ioctl_arg buffer;
1590 int ret;
1592 if (fw_device_is_shutdown(client->device))
1593 return -ENODEV;
1595 if (_IOC_TYPE(cmd) != '#' ||
1596 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers) ||
1597 _IOC_SIZE(cmd) > sizeof(buffer))
1598 return -EINVAL;
1600 if (_IOC_DIR(cmd) == _IOC_READ)
1601 memset(&buffer, 0, _IOC_SIZE(cmd));
1603 if (_IOC_DIR(cmd) & _IOC_WRITE)
1604 if (copy_from_user(&buffer, arg, _IOC_SIZE(cmd)))
1605 return -EFAULT;
1607 ret = ioctl_handlers[_IOC_NR(cmd)](client, &buffer);
1608 if (ret < 0)
1609 return ret;
1611 if (_IOC_DIR(cmd) & _IOC_READ)
1612 if (copy_to_user(arg, &buffer, _IOC_SIZE(cmd)))
1613 return -EFAULT;
1615 return ret;
1618 static long fw_device_op_ioctl(struct file *file,
1619 unsigned int cmd, unsigned long arg)
1621 return dispatch_ioctl(file->private_data, cmd, (void __user *)arg);
1624 #ifdef CONFIG_COMPAT
1625 static long fw_device_op_compat_ioctl(struct file *file,
1626 unsigned int cmd, unsigned long arg)
1628 return dispatch_ioctl(file->private_data, cmd, compat_ptr(arg));
1630 #endif
1632 static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
1634 struct client *client = file->private_data;
1635 enum dma_data_direction direction;
1636 unsigned long size;
1637 int page_count, ret;
1639 if (fw_device_is_shutdown(client->device))
1640 return -ENODEV;
1642 /* FIXME: We could support multiple buffers, but we don't. */
1643 if (client->buffer.pages != NULL)
1644 return -EBUSY;
1646 if (!(vma->vm_flags & VM_SHARED))
1647 return -EINVAL;
1649 if (vma->vm_start & ~PAGE_MASK)
1650 return -EINVAL;
1652 client->vm_start = vma->vm_start;
1653 size = vma->vm_end - vma->vm_start;
1654 page_count = size >> PAGE_SHIFT;
1655 if (size & ~PAGE_MASK)
1656 return -EINVAL;
1658 if (vma->vm_flags & VM_WRITE)
1659 direction = DMA_TO_DEVICE;
1660 else
1661 direction = DMA_FROM_DEVICE;
1663 ret = fw_iso_buffer_init(&client->buffer, client->device->card,
1664 page_count, direction);
1665 if (ret < 0)
1666 return ret;
1668 ret = fw_iso_buffer_map(&client->buffer, vma);
1669 if (ret < 0)
1670 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1672 return ret;
1675 static int shutdown_resource(int id, void *p, void *data)
1677 struct client_resource *resource = p;
1678 struct client *client = data;
1680 resource->release(client, resource);
1681 client_put(client);
1683 return 0;
1686 static int fw_device_op_release(struct inode *inode, struct file *file)
1688 struct client *client = file->private_data;
1689 struct event *event, *next_event;
1691 spin_lock_irq(&client->device->card->lock);
1692 list_del(&client->phy_receiver_link);
1693 spin_unlock_irq(&client->device->card->lock);
1695 mutex_lock(&client->device->client_list_mutex);
1696 list_del(&client->link);
1697 mutex_unlock(&client->device->client_list_mutex);
1699 if (client->iso_context)
1700 fw_iso_context_destroy(client->iso_context);
1702 if (client->buffer.pages)
1703 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1705 /* Freeze client->resource_idr and client->event_list */
1706 spin_lock_irq(&client->lock);
1707 client->in_shutdown = true;
1708 spin_unlock_irq(&client->lock);
1710 idr_for_each(&client->resource_idr, shutdown_resource, client);
1711 idr_remove_all(&client->resource_idr);
1712 idr_destroy(&client->resource_idr);
1714 list_for_each_entry_safe(event, next_event, &client->event_list, link)
1715 kfree(event);
1717 client_put(client);
1719 return 0;
1722 static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
1724 struct client *client = file->private_data;
1725 unsigned int mask = 0;
1727 poll_wait(file, &client->wait, pt);
1729 if (fw_device_is_shutdown(client->device))
1730 mask |= POLLHUP | POLLERR;
1731 if (!list_empty(&client->event_list))
1732 mask |= POLLIN | POLLRDNORM;
1734 return mask;
1737 const struct file_operations fw_device_ops = {
1738 .owner = THIS_MODULE,
1739 .llseek = no_llseek,
1740 .open = fw_device_op_open,
1741 .read = fw_device_op_read,
1742 .unlocked_ioctl = fw_device_op_ioctl,
1743 .mmap = fw_device_op_mmap,
1744 .release = fw_device_op_release,
1745 .poll = fw_device_op_poll,
1746 #ifdef CONFIG_COMPAT
1747 .compat_ioctl = fw_device_op_compat_ioctl,
1748 #endif