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/module.h>
22 #include <linux/kernel.h>
23 #include <linux/wait.h>
24 #include <linux/errno.h>
25 #include <linux/device.h>
26 #include <linux/vmalloc.h>
27 #include <linux/poll.h>
28 #include <linux/delay.h>
30 #include <linux/idr.h>
31 #include <linux/compat.h>
32 #include <linux/firewire-cdev.h>
33 #include <asm/uaccess.h>
34 #include "fw-transaction.h"
35 #include "fw-topology.h"
36 #include "fw-device.h"
39 struct client_resource
{
40 struct list_head link
;
41 void (*release
)(struct client
*client
, struct client_resource
*r
);
46 * dequeue_event() just kfree()'s the event, so the event has to be
47 * the first field in the struct.
51 struct { void *data
; size_t size
; } v
[2];
52 struct list_head link
;
57 struct fw_cdev_event_bus_reset reset
;
62 struct fw_transaction transaction
;
63 struct client
*client
;
64 struct client_resource resource
;
65 struct fw_cdev_event_response response
;
68 struct iso_interrupt
{
70 struct fw_cdev_event_iso_interrupt interrupt
;
75 struct fw_device
*device
;
78 struct list_head resource_list
;
79 struct list_head event_list
;
80 wait_queue_head_t wait
;
81 u64 bus_reset_closure
;
83 struct fw_iso_context
*iso_context
;
85 struct fw_iso_buffer buffer
;
86 unsigned long vm_start
;
88 struct list_head link
;
91 static inline void __user
*
92 u64_to_uptr(__u64 value
)
94 return (void __user
*)(unsigned long)value
;
98 uptr_to_u64(void __user
*ptr
)
100 return (__u64
)(unsigned long)ptr
;
103 static int fw_device_op_open(struct inode
*inode
, struct file
*file
)
105 struct fw_device
*device
;
106 struct client
*client
;
109 device
= fw_device_from_devt(inode
->i_rdev
);
113 client
= kzalloc(sizeof(*client
), GFP_KERNEL
);
117 client
->device
= fw_device_get(device
);
118 INIT_LIST_HEAD(&client
->event_list
);
119 INIT_LIST_HEAD(&client
->resource_list
);
120 spin_lock_init(&client
->lock
);
121 init_waitqueue_head(&client
->wait
);
123 file
->private_data
= client
;
125 spin_lock_irqsave(&device
->card
->lock
, flags
);
126 list_add_tail(&client
->link
, &device
->client_list
);
127 spin_unlock_irqrestore(&device
->card
->lock
, flags
);
132 static void queue_event(struct client
*client
, struct event
*event
,
133 void *data0
, size_t size0
, void *data1
, size_t size1
)
137 event
->v
[0].data
= data0
;
138 event
->v
[0].size
= size0
;
139 event
->v
[1].data
= data1
;
140 event
->v
[1].size
= size1
;
142 spin_lock_irqsave(&client
->lock
, flags
);
144 list_add_tail(&event
->link
, &client
->event_list
);
145 wake_up_interruptible(&client
->wait
);
147 spin_unlock_irqrestore(&client
->lock
, flags
);
151 dequeue_event(struct client
*client
, char __user
*buffer
, size_t count
)
158 retval
= wait_event_interruptible(client
->wait
,
159 !list_empty(&client
->event_list
) ||
160 fw_device_is_shutdown(client
->device
));
164 if (list_empty(&client
->event_list
) &&
165 fw_device_is_shutdown(client
->device
))
168 spin_lock_irqsave(&client
->lock
, flags
);
169 event
= container_of(client
->event_list
.next
, struct event
, link
);
170 list_del(&event
->link
);
171 spin_unlock_irqrestore(&client
->lock
, flags
);
174 for (i
= 0; i
< ARRAY_SIZE(event
->v
) && total
< count
; i
++) {
175 size
= min(event
->v
[i
].size
, count
- total
);
176 if (copy_to_user(buffer
+ total
, event
->v
[i
].data
, size
)) {
191 fw_device_op_read(struct file
*file
,
192 char __user
*buffer
, size_t count
, loff_t
*offset
)
194 struct client
*client
= file
->private_data
;
196 return dequeue_event(client
, buffer
, count
);
200 fill_bus_reset_event(struct fw_cdev_event_bus_reset
*event
,
201 struct client
*client
)
203 struct fw_card
*card
= client
->device
->card
;
205 event
->closure
= client
->bus_reset_closure
;
206 event
->type
= FW_CDEV_EVENT_BUS_RESET
;
207 event
->node_id
= client
->device
->node_id
;
208 event
->local_node_id
= card
->local_node
->node_id
;
209 event
->bm_node_id
= 0; /* FIXME: We don't track the BM. */
210 event
->irm_node_id
= card
->irm_node
->node_id
;
211 event
->root_node_id
= card
->root_node
->node_id
;
212 event
->generation
= card
->generation
;
216 for_each_client(struct fw_device
*device
,
217 void (*callback
)(struct client
*client
))
219 struct fw_card
*card
= device
->card
;
223 spin_lock_irqsave(&card
->lock
, flags
);
225 list_for_each_entry(c
, &device
->client_list
, link
)
228 spin_unlock_irqrestore(&card
->lock
, flags
);
232 queue_bus_reset_event(struct client
*client
)
234 struct bus_reset
*bus_reset
;
236 bus_reset
= kzalloc(sizeof(*bus_reset
), GFP_ATOMIC
);
237 if (bus_reset
== NULL
) {
238 fw_notify("Out of memory when allocating bus reset event\n");
242 fill_bus_reset_event(&bus_reset
->reset
, client
);
244 queue_event(client
, &bus_reset
->event
,
245 &bus_reset
->reset
, sizeof(bus_reset
->reset
), NULL
, 0);
248 void fw_device_cdev_update(struct fw_device
*device
)
250 for_each_client(device
, queue_bus_reset_event
);
253 static void wake_up_client(struct client
*client
)
255 wake_up_interruptible(&client
->wait
);
258 void fw_device_cdev_remove(struct fw_device
*device
)
260 for_each_client(device
, wake_up_client
);
263 static int ioctl_get_info(struct client
*client
, void *buffer
)
265 struct fw_cdev_get_info
*get_info
= buffer
;
266 struct fw_cdev_event_bus_reset bus_reset
;
268 client
->version
= get_info
->version
;
269 get_info
->version
= FW_CDEV_VERSION
;
271 if (get_info
->rom
!= 0) {
272 void __user
*uptr
= u64_to_uptr(get_info
->rom
);
273 size_t want
= get_info
->rom_length
;
274 size_t have
= client
->device
->config_rom_length
* 4;
276 if (copy_to_user(uptr
, client
->device
->config_rom
,
280 get_info
->rom_length
= client
->device
->config_rom_length
* 4;
282 client
->bus_reset_closure
= get_info
->bus_reset_closure
;
283 if (get_info
->bus_reset
!= 0) {
284 void __user
*uptr
= u64_to_uptr(get_info
->bus_reset
);
286 fill_bus_reset_event(&bus_reset
, client
);
287 if (copy_to_user(uptr
, &bus_reset
, sizeof(bus_reset
)))
291 get_info
->card
= client
->device
->card
->index
;
297 add_client_resource(struct client
*client
, struct client_resource
*resource
)
301 spin_lock_irqsave(&client
->lock
, flags
);
302 list_add_tail(&resource
->link
, &client
->resource_list
);
303 resource
->handle
= client
->resource_handle
++;
304 spin_unlock_irqrestore(&client
->lock
, flags
);
308 release_client_resource(struct client
*client
, u32 handle
,
309 struct client_resource
**resource
)
311 struct client_resource
*r
;
314 spin_lock_irqsave(&client
->lock
, flags
);
315 list_for_each_entry(r
, &client
->resource_list
, link
) {
316 if (r
->handle
== handle
) {
321 spin_unlock_irqrestore(&client
->lock
, flags
);
323 if (&r
->link
== &client
->resource_list
)
329 r
->release(client
, r
);
335 release_transaction(struct client
*client
, struct client_resource
*resource
)
337 struct response
*response
=
338 container_of(resource
, struct response
, resource
);
340 fw_cancel_transaction(client
->device
->card
, &response
->transaction
);
344 complete_transaction(struct fw_card
*card
, int rcode
,
345 void *payload
, size_t length
, void *data
)
347 struct response
*response
= data
;
348 struct client
*client
= response
->client
;
351 if (length
< response
->response
.length
)
352 response
->response
.length
= length
;
353 if (rcode
== RCODE_COMPLETE
)
354 memcpy(response
->response
.data
, payload
,
355 response
->response
.length
);
357 spin_lock_irqsave(&client
->lock
, flags
);
358 list_del(&response
->resource
.link
);
359 spin_unlock_irqrestore(&client
->lock
, flags
);
361 response
->response
.type
= FW_CDEV_EVENT_RESPONSE
;
362 response
->response
.rcode
= rcode
;
363 queue_event(client
, &response
->event
,
364 &response
->response
, sizeof(response
->response
),
365 response
->response
.data
, response
->response
.length
);
368 static int ioctl_send_request(struct client
*client
, void *buffer
)
370 struct fw_device
*device
= client
->device
;
371 struct fw_cdev_send_request
*request
= buffer
;
372 struct response
*response
;
374 /* What is the biggest size we'll accept, really? */
375 if (request
->length
> 4096)
378 response
= kmalloc(sizeof(*response
) + request
->length
, GFP_KERNEL
);
379 if (response
== NULL
)
382 response
->client
= client
;
383 response
->response
.length
= request
->length
;
384 response
->response
.closure
= request
->closure
;
387 copy_from_user(response
->response
.data
,
388 u64_to_uptr(request
->data
), request
->length
)) {
393 response
->resource
.release
= release_transaction
;
394 add_client_resource(client
, &response
->resource
);
396 fw_send_request(device
->card
, &response
->transaction
,
397 request
->tcode
& 0x1f,
398 device
->node
->node_id
,
402 response
->response
.data
, request
->length
,
403 complete_transaction
, response
);
406 return sizeof(request
) + request
->length
;
408 return sizeof(request
);
411 struct address_handler
{
412 struct fw_address_handler handler
;
414 struct client
*client
;
415 struct client_resource resource
;
419 struct fw_request
*request
;
422 struct client_resource resource
;
425 struct request_event
{
427 struct fw_cdev_event_request request
;
431 release_request(struct client
*client
, struct client_resource
*resource
)
433 struct request
*request
=
434 container_of(resource
, struct request
, resource
);
436 fw_send_response(client
->device
->card
, request
->request
,
437 RCODE_CONFLICT_ERROR
);
442 handle_request(struct fw_card
*card
, struct fw_request
*r
,
443 int tcode
, int destination
, int source
,
444 int generation
, int speed
,
445 unsigned long long offset
,
446 void *payload
, size_t length
, void *callback_data
)
448 struct address_handler
*handler
= callback_data
;
449 struct request
*request
;
450 struct request_event
*e
;
451 struct client
*client
= handler
->client
;
453 request
= kmalloc(sizeof(*request
), GFP_ATOMIC
);
454 e
= kmalloc(sizeof(*e
), GFP_ATOMIC
);
455 if (request
== NULL
|| e
== NULL
) {
458 fw_send_response(card
, r
, RCODE_CONFLICT_ERROR
);
462 request
->request
= r
;
463 request
->data
= payload
;
464 request
->length
= length
;
466 request
->resource
.release
= release_request
;
467 add_client_resource(client
, &request
->resource
);
469 e
->request
.type
= FW_CDEV_EVENT_REQUEST
;
470 e
->request
.tcode
= tcode
;
471 e
->request
.offset
= offset
;
472 e
->request
.length
= length
;
473 e
->request
.handle
= request
->resource
.handle
;
474 e
->request
.closure
= handler
->closure
;
476 queue_event(client
, &e
->event
,
477 &e
->request
, sizeof(e
->request
), payload
, length
);
481 release_address_handler(struct client
*client
,
482 struct client_resource
*resource
)
484 struct address_handler
*handler
=
485 container_of(resource
, struct address_handler
, resource
);
487 fw_core_remove_address_handler(&handler
->handler
);
491 static int ioctl_allocate(struct client
*client
, void *buffer
)
493 struct fw_cdev_allocate
*request
= buffer
;
494 struct address_handler
*handler
;
495 struct fw_address_region region
;
497 handler
= kmalloc(sizeof(*handler
), GFP_KERNEL
);
501 region
.start
= request
->offset
;
502 region
.end
= request
->offset
+ request
->length
;
503 handler
->handler
.length
= request
->length
;
504 handler
->handler
.address_callback
= handle_request
;
505 handler
->handler
.callback_data
= handler
;
506 handler
->closure
= request
->closure
;
507 handler
->client
= client
;
509 if (fw_core_add_address_handler(&handler
->handler
, ®ion
) < 0) {
514 handler
->resource
.release
= release_address_handler
;
515 add_client_resource(client
, &handler
->resource
);
516 request
->handle
= handler
->resource
.handle
;
521 static int ioctl_deallocate(struct client
*client
, void *buffer
)
523 struct fw_cdev_deallocate
*request
= buffer
;
525 return release_client_resource(client
, request
->handle
, NULL
);
528 static int ioctl_send_response(struct client
*client
, void *buffer
)
530 struct fw_cdev_send_response
*request
= buffer
;
531 struct client_resource
*resource
;
534 if (release_client_resource(client
, request
->handle
, &resource
) < 0)
536 r
= container_of(resource
, struct request
, resource
);
537 if (request
->length
< r
->length
)
538 r
->length
= request
->length
;
539 if (copy_from_user(r
->data
, u64_to_uptr(request
->data
), r
->length
))
542 fw_send_response(client
->device
->card
, r
->request
, request
->rcode
);
548 static int ioctl_initiate_bus_reset(struct client
*client
, void *buffer
)
550 struct fw_cdev_initiate_bus_reset
*request
= buffer
;
553 short_reset
= (request
->type
== FW_CDEV_SHORT_RESET
);
555 return fw_core_initiate_bus_reset(client
->device
->card
, short_reset
);
559 struct fw_descriptor d
;
560 struct client_resource resource
;
564 static void release_descriptor(struct client
*client
,
565 struct client_resource
*resource
)
567 struct descriptor
*descriptor
=
568 container_of(resource
, struct descriptor
, resource
);
570 fw_core_remove_descriptor(&descriptor
->d
);
574 static int ioctl_add_descriptor(struct client
*client
, void *buffer
)
576 struct fw_cdev_add_descriptor
*request
= buffer
;
577 struct descriptor
*descriptor
;
580 if (request
->length
> 256)
584 kmalloc(sizeof(*descriptor
) + request
->length
* 4, GFP_KERNEL
);
585 if (descriptor
== NULL
)
588 if (copy_from_user(descriptor
->data
,
589 u64_to_uptr(request
->data
), request
->length
* 4)) {
594 descriptor
->d
.length
= request
->length
;
595 descriptor
->d
.immediate
= request
->immediate
;
596 descriptor
->d
.key
= request
->key
;
597 descriptor
->d
.data
= descriptor
->data
;
599 retval
= fw_core_add_descriptor(&descriptor
->d
);
605 descriptor
->resource
.release
= release_descriptor
;
606 add_client_resource(client
, &descriptor
->resource
);
607 request
->handle
= descriptor
->resource
.handle
;
612 static int ioctl_remove_descriptor(struct client
*client
, void *buffer
)
614 struct fw_cdev_remove_descriptor
*request
= buffer
;
616 return release_client_resource(client
, request
->handle
, NULL
);
620 iso_callback(struct fw_iso_context
*context
, u32 cycle
,
621 size_t header_length
, void *header
, void *data
)
623 struct client
*client
= data
;
624 struct iso_interrupt
*interrupt
;
626 interrupt
= kzalloc(sizeof(*interrupt
) + header_length
, GFP_ATOMIC
);
627 if (interrupt
== NULL
)
630 interrupt
->interrupt
.type
= FW_CDEV_EVENT_ISO_INTERRUPT
;
631 interrupt
->interrupt
.closure
= client
->iso_closure
;
632 interrupt
->interrupt
.cycle
= cycle
;
633 interrupt
->interrupt
.header_length
= header_length
;
634 memcpy(interrupt
->interrupt
.header
, header
, header_length
);
635 queue_event(client
, &interrupt
->event
,
636 &interrupt
->interrupt
,
637 sizeof(interrupt
->interrupt
) + header_length
, NULL
, 0);
640 static int ioctl_create_iso_context(struct client
*client
, void *buffer
)
642 struct fw_cdev_create_iso_context
*request
= buffer
;
643 struct fw_iso_context
*context
;
645 if (request
->channel
> 63)
648 switch (request
->type
) {
649 case FW_ISO_CONTEXT_RECEIVE
:
650 if (request
->header_size
< 4 || (request
->header_size
& 3))
655 case FW_ISO_CONTEXT_TRANSMIT
:
656 if (request
->speed
> SCODE_3200
)
665 context
= fw_iso_context_create(client
->device
->card
,
669 request
->header_size
,
670 iso_callback
, client
);
672 return PTR_ERR(context
);
674 client
->iso_closure
= request
->closure
;
675 client
->iso_context
= context
;
677 /* We only support one context at this time. */
683 /* Macros for decoding the iso packet control header. */
684 #define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
685 #define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
686 #define GET_SKIP(v) (((v) >> 17) & 0x01)
687 #define GET_TAG(v) (((v) >> 18) & 0x02)
688 #define GET_SY(v) (((v) >> 20) & 0x04)
689 #define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
691 static int ioctl_queue_iso(struct client
*client
, void *buffer
)
693 struct fw_cdev_queue_iso
*request
= buffer
;
694 struct fw_cdev_iso_packet __user
*p
, *end
, *next
;
695 struct fw_iso_context
*ctx
= client
->iso_context
;
696 unsigned long payload
, buffer_end
, header_length
;
700 struct fw_iso_packet packet
;
704 if (ctx
== NULL
|| request
->handle
!= 0)
708 * If the user passes a non-NULL data pointer, has mmap()'ed
709 * the iso buffer, and the pointer points inside the buffer,
710 * we setup the payload pointers accordingly. Otherwise we
711 * set them both to 0, which will still let packets with
712 * payload_length == 0 through. In other words, if no packets
713 * use the indirect payload, the iso buffer need not be mapped
714 * and the request->data pointer is ignored.
717 payload
= (unsigned long)request
->data
- client
->vm_start
;
718 buffer_end
= client
->buffer
.page_count
<< PAGE_SHIFT
;
719 if (request
->data
== 0 || client
->buffer
.pages
== NULL
||
720 payload
>= buffer_end
) {
725 if (!access_ok(VERIFY_READ
, request
->packets
, request
->size
))
728 p
= (struct fw_cdev_iso_packet __user
*)u64_to_uptr(request
->packets
);
729 end
= (void __user
*)p
+ request
->size
;
732 if (get_user(control
, &p
->control
))
734 u
.packet
.payload_length
= GET_PAYLOAD_LENGTH(control
);
735 u
.packet
.interrupt
= GET_INTERRUPT(control
);
736 u
.packet
.skip
= GET_SKIP(control
);
737 u
.packet
.tag
= GET_TAG(control
);
738 u
.packet
.sy
= GET_SY(control
);
739 u
.packet
.header_length
= GET_HEADER_LENGTH(control
);
741 if (ctx
->type
== FW_ISO_CONTEXT_TRANSMIT
) {
742 header_length
= u
.packet
.header_length
;
745 * We require that header_length is a multiple of
746 * the fixed header size, ctx->header_size.
748 if (ctx
->header_size
== 0) {
749 if (u
.packet
.header_length
> 0)
751 } else if (u
.packet
.header_length
% ctx
->header_size
!= 0) {
757 next
= (struct fw_cdev_iso_packet __user
*)
758 &p
->header
[header_length
/ 4];
762 (u
.packet
.header
, p
->header
, header_length
))
764 if (u
.packet
.skip
&& ctx
->type
== FW_ISO_CONTEXT_TRANSMIT
&&
765 u
.packet
.header_length
+ u
.packet
.payload_length
> 0)
767 if (payload
+ u
.packet
.payload_length
> buffer_end
)
770 if (fw_iso_context_queue(ctx
, &u
.packet
,
771 &client
->buffer
, payload
))
775 payload
+= u
.packet
.payload_length
;
779 request
->size
-= uptr_to_u64(p
) - request
->packets
;
780 request
->packets
= uptr_to_u64(p
);
781 request
->data
= client
->vm_start
+ payload
;
786 static int ioctl_start_iso(struct client
*client
, void *buffer
)
788 struct fw_cdev_start_iso
*request
= buffer
;
790 if (request
->handle
!= 0)
792 if (client
->iso_context
->type
== FW_ISO_CONTEXT_RECEIVE
) {
793 if (request
->tags
== 0 || request
->tags
> 15)
796 if (request
->sync
> 15)
800 return fw_iso_context_start(client
->iso_context
, request
->cycle
,
801 request
->sync
, request
->tags
);
804 static int ioctl_stop_iso(struct client
*client
, void *buffer
)
806 struct fw_cdev_stop_iso
*request
= buffer
;
808 if (request
->handle
!= 0)
811 return fw_iso_context_stop(client
->iso_context
);
814 static int (* const ioctl_handlers
[])(struct client
*client
, void *buffer
) = {
820 ioctl_initiate_bus_reset
,
821 ioctl_add_descriptor
,
822 ioctl_remove_descriptor
,
823 ioctl_create_iso_context
,
830 dispatch_ioctl(struct client
*client
, unsigned int cmd
, void __user
*arg
)
835 if (_IOC_TYPE(cmd
) != '#' ||
836 _IOC_NR(cmd
) >= ARRAY_SIZE(ioctl_handlers
))
839 if (_IOC_DIR(cmd
) & _IOC_WRITE
) {
840 if (_IOC_SIZE(cmd
) > sizeof(buffer
) ||
841 copy_from_user(buffer
, arg
, _IOC_SIZE(cmd
)))
845 retval
= ioctl_handlers
[_IOC_NR(cmd
)](client
, buffer
);
849 if (_IOC_DIR(cmd
) & _IOC_READ
) {
850 if (_IOC_SIZE(cmd
) > sizeof(buffer
) ||
851 copy_to_user(arg
, buffer
, _IOC_SIZE(cmd
)))
859 fw_device_op_ioctl(struct file
*file
,
860 unsigned int cmd
, unsigned long arg
)
862 struct client
*client
= file
->private_data
;
864 return dispatch_ioctl(client
, cmd
, (void __user
*) arg
);
869 fw_device_op_compat_ioctl(struct file
*file
,
870 unsigned int cmd
, unsigned long arg
)
872 struct client
*client
= file
->private_data
;
874 return dispatch_ioctl(client
, cmd
, compat_ptr(arg
));
878 static int fw_device_op_mmap(struct file
*file
, struct vm_area_struct
*vma
)
880 struct client
*client
= file
->private_data
;
881 enum dma_data_direction direction
;
883 int page_count
, retval
;
885 /* FIXME: We could support multiple buffers, but we don't. */
886 if (client
->buffer
.pages
!= NULL
)
889 if (!(vma
->vm_flags
& VM_SHARED
))
892 if (vma
->vm_start
& ~PAGE_MASK
)
895 client
->vm_start
= vma
->vm_start
;
896 size
= vma
->vm_end
- vma
->vm_start
;
897 page_count
= size
>> PAGE_SHIFT
;
898 if (size
& ~PAGE_MASK
)
901 if (vma
->vm_flags
& VM_WRITE
)
902 direction
= DMA_TO_DEVICE
;
904 direction
= DMA_FROM_DEVICE
;
906 retval
= fw_iso_buffer_init(&client
->buffer
, client
->device
->card
,
907 page_count
, direction
);
911 retval
= fw_iso_buffer_map(&client
->buffer
, vma
);
913 fw_iso_buffer_destroy(&client
->buffer
, client
->device
->card
);
918 static int fw_device_op_release(struct inode
*inode
, struct file
*file
)
920 struct client
*client
= file
->private_data
;
921 struct event
*e
, *next_e
;
922 struct client_resource
*r
, *next_r
;
925 if (client
->buffer
.pages
)
926 fw_iso_buffer_destroy(&client
->buffer
, client
->device
->card
);
928 if (client
->iso_context
)
929 fw_iso_context_destroy(client
->iso_context
);
931 list_for_each_entry_safe(r
, next_r
, &client
->resource_list
, link
)
932 r
->release(client
, r
);
935 * FIXME: We should wait for the async tasklets to stop
936 * running before freeing the memory.
939 list_for_each_entry_safe(e
, next_e
, &client
->event_list
, link
)
942 spin_lock_irqsave(&client
->device
->card
->lock
, flags
);
943 list_del(&client
->link
);
944 spin_unlock_irqrestore(&client
->device
->card
->lock
, flags
);
946 fw_device_put(client
->device
);
952 static unsigned int fw_device_op_poll(struct file
*file
, poll_table
* pt
)
954 struct client
*client
= file
->private_data
;
955 unsigned int mask
= 0;
957 poll_wait(file
, &client
->wait
, pt
);
959 if (fw_device_is_shutdown(client
->device
))
960 mask
|= POLLHUP
| POLLERR
;
961 if (!list_empty(&client
->event_list
))
962 mask
|= POLLIN
| POLLRDNORM
;
967 const struct file_operations fw_device_ops
= {
968 .owner
= THIS_MODULE
,
969 .open
= fw_device_op_open
,
970 .read
= fw_device_op_read
,
971 .unlocked_ioctl
= fw_device_op_ioctl
,
972 .poll
= fw_device_op_poll
,
973 .release
= fw_device_op_release
,
974 .mmap
= fw_device_op_mmap
,
977 .compat_ioctl
= fw_device_op_compat_ioctl
,