fw-device-cdev.c 22.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*						-*- c-basic-offset: 8 -*-
 *
 * fw-device-cdev.c - Char device for device raw access
 *
 * Copyright (C) 2005-2006  Kristian Hoegsberg <krh@bitplanet.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/wait.h>
#include <linux/errno.h>
#include <linux/device.h>
#include <linux/vmalloc.h>
#include <linux/poll.h>
#include <linux/delay.h>
#include <linux/mm.h>
31
#include <linux/idr.h>
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
#include <linux/compat.h>
#include <asm/uaccess.h>
#include "fw-transaction.h"
#include "fw-topology.h"
#include "fw-device.h"
#include "fw-device-cdev.h"

/*
 * todo
 *
 * - bus resets sends a new packet with new generation and node id
 *
 */

/* dequeue_event() just kfree()'s the event, so the event has to be
 * the first field in the struct. */

struct event {
	struct { void *data; size_t size; } v[2];
	struct list_head link;
};

54 55 56 57 58
struct bus_reset {
	struct event event;
	struct fw_cdev_event_bus_reset reset;
};

59 60 61 62
struct response {
	struct event event;
	struct fw_transaction transaction;
	struct client *client;
63
	struct list_head link;
64 65 66 67 68 69 70 71 72
	struct fw_cdev_event_response response;
};

struct iso_interrupt {
	struct event event;
	struct fw_cdev_event_iso_interrupt interrupt;
};

struct client {
73
	u32 version;
74 75 76 77
	struct fw_device *device;
	spinlock_t lock;
	struct list_head handler_list;
	struct list_head request_list;
78
	struct list_head transaction_list;
79 80 81
	u32 request_serial;
	struct list_head event_list;
	wait_queue_head_t wait;
82
	u64 bus_reset_closure;
83

84
	struct fw_iso_context *iso_context;
85 86
	struct fw_iso_buffer buffer;
	unsigned long vm_start;
87 88

	struct list_head link;
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
};

static inline void __user *
u64_to_uptr(__u64 value)
{
	return (void __user *)(unsigned long)value;
}

static inline __u64
uptr_to_u64(void __user *ptr)
{
	return (__u64)(unsigned long)ptr;
}

static int fw_device_op_open(struct inode *inode, struct file *file)
{
	struct fw_device *device;
	struct client *client;
107
	unsigned long flags;
108

109 110 111
	device = fw_device_from_devt(inode->i_rdev);
	if (device == NULL)
		return -ENODEV;
112 113 114 115 116 117 118 119 120

	client = kzalloc(sizeof *client, GFP_KERNEL);
	if (client == NULL)
		return -ENOMEM;

	client->device = fw_device_get(device);
	INIT_LIST_HEAD(&client->event_list);
	INIT_LIST_HEAD(&client->handler_list);
	INIT_LIST_HEAD(&client->request_list);
121
	INIT_LIST_HEAD(&client->transaction_list);
122 123 124 125 126
	spin_lock_init(&client->lock);
	init_waitqueue_head(&client->wait);

	file->private_data = client;

127 128 129 130
	spin_lock_irqsave(&device->card->lock, flags);
	list_add_tail(&client->link, &device->client_list);
	spin_unlock_irqrestore(&device->card->lock, flags);

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
	return 0;
}

static void queue_event(struct client *client, struct event *event,
			void *data0, size_t size0, void *data1, size_t size1)
{
	unsigned long flags;

	event->v[0].data = data0;
	event->v[0].size = size0;
	event->v[1].data = data1;
	event->v[1].size = size1;

	spin_lock_irqsave(&client->lock, flags);

	list_add_tail(&event->link, &client->event_list);
	wake_up_interruptible(&client->wait);

	spin_unlock_irqrestore(&client->lock, flags);
}

152 153
static int
dequeue_event(struct client *client, char __user *buffer, size_t count)
154 155 156 157
{
	unsigned long flags;
	struct event *event;
	size_t size, total;
158
	int i, retval;
159

160 161 162 163 164
	retval = wait_event_interruptible(client->wait,
					  !list_empty(&client->event_list) ||
					  fw_device_is_shutdown(client->device));
	if (retval < 0)
		return retval;
165

166 167 168
	if (list_empty(&client->event_list) &&
		       fw_device_is_shutdown(client->device))
		return -ENODEV;
169

170
	spin_lock_irqsave(&client->lock, flags);
171 172 173 174 175 176 177
	event = container_of(client->event_list.next, struct event, link);
	list_del(&event->link);
	spin_unlock_irqrestore(&client->lock, flags);

	total = 0;
	for (i = 0; i < ARRAY_SIZE(event->v) && total < count; i++) {
		size = min(event->v[i].size, count - total);
178 179
		if (copy_to_user(buffer + total, event->v[i].data, size)) {
			retval = -EFAULT;
180
			goto out;
181
		}
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
		total += size;
	}
	retval = total;

 out:
	kfree(event);

	return retval;
}

static ssize_t
fw_device_op_read(struct file *file,
		  char __user *buffer, size_t count, loff_t *offset)
{
	struct client *client = file->private_data;

	return dequeue_event(client, buffer, count);
}

201 202
static void
fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
203
		     struct client *client)
204
{
205
	struct fw_card *card = client->device->card;
206

207
	event->closure	     = client->bus_reset_closure;
208
	event->type          = FW_CDEV_EVENT_BUS_RESET;
209
	event->node_id       = client->device->node_id;
210 211 212 213 214 215 216
	event->local_node_id = card->local_node->node_id;
	event->bm_node_id    = 0; /* FIXME: We don't track the BM. */
	event->irm_node_id   = card->irm_node->node_id;
	event->root_node_id  = card->root_node->node_id;
	event->generation    = card->generation;
}

217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
static void
for_each_client(struct fw_device *device,
		void (*callback)(struct client *client))
{
	struct fw_card *card = device->card;
	struct client *c;
	unsigned long flags;

	spin_lock_irqsave(&card->lock, flags);

	list_for_each_entry(c, &device->client_list, link)
		callback(c);

	spin_unlock_irqrestore(&card->lock, flags);
}

233 234 235 236 237 238 239 240 241 242 243
static void
queue_bus_reset_event(struct client *client)
{
	struct bus_reset *bus_reset;

	bus_reset = kzalloc(sizeof *bus_reset, GFP_ATOMIC);
	if (bus_reset == NULL) {
		fw_notify("Out of memory when allocating bus reset event\n");
		return;
	}

244
	fill_bus_reset_event(&bus_reset->reset, client);
245 246 247 248 249 250 251

	queue_event(client, &bus_reset->event,
		    &bus_reset->reset, sizeof bus_reset->reset, NULL, 0);
}

void fw_device_cdev_update(struct fw_device *device)
{
252 253
	for_each_client(device, queue_bus_reset_event);
}
254

255 256 257 258
static void wake_up_client(struct client *client)
{
	wake_up_interruptible(&client->wait);
}
259

260 261 262
void fw_device_cdev_remove(struct fw_device *device)
{
	for_each_client(device, wake_up_client);
263 264
}

265
static int ioctl_get_info(struct client *client, void __user *arg)
266
{
267 268 269 270 271 272 273 274 275 276 277
	struct fw_cdev_get_info get_info;
	struct fw_cdev_event_bus_reset bus_reset;

	if (copy_from_user(&get_info, arg, sizeof get_info))
		return -EFAULT;

	client->version = get_info.version;
	get_info.version = FW_CDEV_VERSION;

	if (get_info.rom != 0) {
		void __user *uptr = u64_to_uptr(get_info.rom);
278 279
		size_t want = get_info.rom_length;
		size_t have = client->device->config_rom_length * 4;
280

281 282
		if (copy_to_user(uptr, client->device->config_rom,
				 min(want, have)))
283 284 285 286
			return -EFAULT;
	}
	get_info.rom_length = client->device->config_rom_length * 4;

287
	client->bus_reset_closure = get_info.bus_reset_closure;
288 289 290
	if (get_info.bus_reset != 0) {
		void __user *uptr = u64_to_uptr(get_info.bus_reset);

291
		fill_bus_reset_event(&bus_reset, client);
292 293 294
		if (copy_to_user(uptr, &bus_reset, sizeof bus_reset))
			return -EFAULT;
	}
295

296 297
	get_info.card = client->device->card->index;

298
	if (copy_to_user(arg, &get_info, sizeof get_info))
299 300 301 302 303 304 305 306 307 308 309
		return -EFAULT;

	return 0;
}

static void
complete_transaction(struct fw_card *card, int rcode,
		     void *payload, size_t length, void *data)
{
	struct response *response = data;
	struct client *client = response->client;
310
	unsigned long flags;
311 312 313 314 315 316 317

	if (length < response->response.length)
		response->response.length = length;
	if (rcode == RCODE_COMPLETE)
		memcpy(response->response.data, payload,
		       response->response.length);

318 319 320 321
	spin_lock_irqsave(&client->lock, flags);
	list_del(&response->link);
	spin_unlock_irqrestore(&client->lock, flags);

322 323 324 325 326 327 328 329 330 331 332 333
	response->response.type   = FW_CDEV_EVENT_RESPONSE;
	response->response.rcode  = rcode;
	queue_event(client, &response->event,
		    &response->response, sizeof response->response,
		    response->response.data, response->response.length);
}

static ssize_t ioctl_send_request(struct client *client, void __user *arg)
{
	struct fw_device *device = client->device;
	struct fw_cdev_send_request request;
	struct response *response;
334
	unsigned long flags;
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357

	if (copy_from_user(&request, arg, sizeof request))
		return -EFAULT;

	/* What is the biggest size we'll accept, really? */
	if (request.length > 4096)
		return -EINVAL;

	response = kmalloc(sizeof *response + request.length, GFP_KERNEL);
	if (response == NULL)
		return -ENOMEM;

	response->client = client;
	response->response.length = request.length;
	response->response.closure = request.closure;

	if (request.data &&
	    copy_from_user(response->response.data,
			   u64_to_uptr(request.data), request.length)) {
		kfree(response);
		return -EFAULT;
	}

358 359 360 361
	spin_lock_irqsave(&client->lock, flags);
	list_add_tail(&response->link, &client->transaction_list);
	spin_unlock_irqrestore(&client->lock, flags);

362
	fw_send_request(device->card, &response->transaction,
363
			request.tcode & 0x1f,
364
			device->node->node_id,
365
			request.generation,
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
			device->node->max_speed,
			request.offset,
			response->response.data, request.length,
			complete_transaction, response);

	if (request.data)
		return sizeof request + request.length;
	else
		return sizeof request;
}

struct address_handler {
	struct fw_address_handler handler;
	__u64 closure;
	struct client *client;
	struct list_head link;
};

struct request {
	struct fw_request *request;
	void *data;
	size_t length;
	u32 serial;
	struct list_head link;
};

struct request_event {
	struct event event;
	struct fw_cdev_event_request request;
};

static void
handle_request(struct fw_card *card, struct fw_request *r,
	       int tcode, int destination, int source,
	       int generation, int speed,
	       unsigned long long offset,
	       void *payload, size_t length, void *callback_data)
{
	struct address_handler *handler = callback_data;
	struct request *request;
	struct request_event *e;
	unsigned long flags;
	struct client *client = handler->client;

	request = kmalloc(sizeof *request, GFP_ATOMIC);
	e = kmalloc(sizeof *e, GFP_ATOMIC);
	if (request == NULL || e == NULL) {
		kfree(request);
		kfree(e);
		fw_send_response(card, r, RCODE_CONFLICT_ERROR);
		return;
	}

	request->request = r;
	request->data    = payload;
	request->length  = length;

	spin_lock_irqsave(&client->lock, flags);
	request->serial = client->request_serial++;
	list_add_tail(&request->link, &client->request_list);
	spin_unlock_irqrestore(&client->lock, flags);

	e->request.type    = FW_CDEV_EVENT_REQUEST;
	e->request.tcode   = tcode;
	e->request.offset  = offset;
	e->request.length  = length;
	e->request.serial  = request->serial;
	e->request.closure = handler->closure;

	queue_event(client, &e->event,
		    &e->request, sizeof e->request, payload, length);
}

static int ioctl_allocate(struct client *client, void __user *arg)
{
	struct fw_cdev_allocate request;
	struct address_handler *handler;
	unsigned long flags;
	struct fw_address_region region;

	if (copy_from_user(&request, arg, sizeof request))
		return -EFAULT;

	handler = kmalloc(sizeof *handler, GFP_KERNEL);
	if (handler == NULL)
		return -ENOMEM;

	region.start = request.offset;
	region.end = request.offset + request.length;
	handler->handler.length = request.length;
	handler->handler.address_callback = handle_request;
	handler->handler.callback_data = handler;
	handler->closure = request.closure;
	handler->client = client;

	if (fw_core_add_address_handler(&handler->handler, &region) < 0) {
		kfree(handler);
		return -EBUSY;
	}

	spin_lock_irqsave(&client->lock, flags);
	list_add_tail(&handler->link, &client->handler_list);
	spin_unlock_irqrestore(&client->lock, flags);

	return 0;
}

473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
static int ioctl_deallocate(struct client *client, void __user *arg)
{
	struct fw_cdev_deallocate request;
	struct address_handler *handler;
	unsigned long flags;

	if (copy_from_user(&request, arg, sizeof request))
		return -EFAULT;

	spin_lock_irqsave(&client->lock, flags);
	list_for_each_entry(handler, &client->handler_list, link) {
		if (handler->handler.offset == request.offset) {
			list_del(&handler->link);
			break;
		}
	}
	spin_unlock_irqrestore(&client->lock, flags);

	if (&handler->link == &client->handler_list)
		return -EINVAL;

	fw_core_remove_address_handler(&handler->handler);

	return 0;
}

499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
static int ioctl_send_response(struct client *client, void __user *arg)
{
	struct fw_cdev_send_response request;
	struct request *r;
	unsigned long flags;

	if (copy_from_user(&request, arg, sizeof request))
		return -EFAULT;

	spin_lock_irqsave(&client->lock, flags);
	list_for_each_entry(r, &client->request_list, link) {
		if (r->serial == request.serial) {
			list_del(&r->link);
			break;
		}
	}
	spin_unlock_irqrestore(&client->lock, flags);

	if (&r->link == &client->request_list)
		return -EINVAL;

	if (request.length < r->length)
		r->length = request.length;
	if (copy_from_user(r->data, u64_to_uptr(request.data), r->length))
		return -EFAULT;

	fw_send_response(client->device->card, r->request, request.rcode);

	kfree(r);

	return 0;
}

532 533 534 535 536 537 538 539 540 541 542 543 544
static int ioctl_initiate_bus_reset(struct client *client, void __user *arg)
{
	struct fw_cdev_initiate_bus_reset request;
	int short_reset;

	if (copy_from_user(&request, arg, sizeof request))
		return -EFAULT;

	short_reset = (request.type == FW_CDEV_SHORT_RESET);

	return fw_core_initiate_bus_reset(client->device->card, short_reset);
}

545
static void
546 547
iso_callback(struct fw_iso_context *context, u32 cycle,
	     size_t header_length, void *header, void *data)
548 549 550 551
{
	struct client *client = data;
	struct iso_interrupt *interrupt;

552
	interrupt = kzalloc(sizeof *interrupt + header_length, GFP_ATOMIC);
553 554 555 556 557 558
	if (interrupt == NULL)
		return;

	interrupt->interrupt.type      = FW_CDEV_EVENT_ISO_INTERRUPT;
	interrupt->interrupt.closure   = 0;
	interrupt->interrupt.cycle     = cycle;
559 560
	interrupt->interrupt.header_length = header_length;
	memcpy(interrupt->interrupt.header, header, header_length);
561
	queue_event(client, &interrupt->event,
562 563
		    &interrupt->interrupt,
		    sizeof interrupt->interrupt + header_length, NULL, 0);
564 565 566 567 568 569 570 571 572
}

static int ioctl_create_iso_context(struct client *client, void __user *arg)
{
	struct fw_cdev_create_iso_context request;

	if (copy_from_user(&request, arg, sizeof request))
		return -EFAULT;

573 574 575
	if (request.channel > 63)
		return -EINVAL;

576 577 578 579
	switch (request.type) {
	case FW_ISO_CONTEXT_RECEIVE:
		if (request.header_size < 4 || (request.header_size & 3))
			return -EINVAL;
580

581 582 583 584 585 586 587 588 589
		break;

	case FW_ISO_CONTEXT_TRANSMIT:
		if (request.speed > SCODE_3200)
			return -EINVAL;

		break;

	default:
590
		return -EINVAL;
591 592
	}

593
	client->iso_context = fw_iso_context_create(client->device->card,
594
						    request.type,
595 596
						    request.channel,
						    request.speed,
597
						    request.header_size,
598 599 600 601 602 603 604 605 606 607 608
						    iso_callback, client);
	if (IS_ERR(client->iso_context))
		return PTR_ERR(client->iso_context);

	return 0;
}

static int ioctl_queue_iso(struct client *client, void __user *arg)
{
	struct fw_cdev_queue_iso request;
	struct fw_cdev_iso_packet __user *p, *end, *next;
609
	struct fw_iso_context *ctx = client->iso_context;
610
	unsigned long payload, payload_end, header_length;
611 612 613 614 615 616
	int count;
	struct {
		struct fw_iso_packet packet;
		u8 header[256];
	} u;

617
	if (ctx == NULL)
618 619 620 621 622 623 624
		return -EINVAL;
	if (copy_from_user(&request, arg, sizeof request))
		return -EFAULT;

	/* If the user passes a non-NULL data pointer, has mmap()'ed
	 * the iso buffer, and the pointer points inside the buffer,
	 * we setup the payload pointers accordingly.  Otherwise we
625
	 * set them both to 0, which will still let packets with
626 627 628 629
	 * payload_length == 0 through.  In other words, if no packets
	 * use the indirect payload, the iso buffer need not be mapped
	 * and the request.data pointer is ignored.*/

630 631 632 633 634 635
	payload = (unsigned long)request.data - client->vm_start;
	payload_end = payload + (client->buffer.page_count << PAGE_SHIFT);
	if (request.data == 0 || client->buffer.pages == NULL ||
	    payload >= payload_end) {
		payload = 0;
		payload_end = 0;
636 637 638 639 640 641 642 643 644 645 646
	}

	if (!access_ok(VERIFY_READ, request.packets, request.size))
		return -EFAULT;

	p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(request.packets);
	end = (void __user *)p + request.size;
	count = 0;
	while (p < end) {
		if (__copy_from_user(&u.packet, p, sizeof *p))
			return -EFAULT;
647

648
		if (ctx->type == FW_ISO_CONTEXT_TRANSMIT) {
649 650 651 652
			header_length = u.packet.header_length;
		} else {
			/* We require that header_length is a multiple of
			 * the fixed header size, ctx->header_size */
653 654 655 656
			if (ctx->header_size == 0) {
				if (u.packet.header_length > 0)
					return -EINVAL;
			} else if (u.packet.header_length % ctx->header_size != 0) {
657
				return -EINVAL;
658
			}
659 660 661
			header_length = 0;
		}

662
		next = (struct fw_cdev_iso_packet __user *)
663
			&p->header[header_length / 4];
664 665 666
		if (next > end)
			return -EINVAL;
		if (__copy_from_user
667
		    (u.packet.header, p->header, header_length))
668
			return -EFAULT;
669
		if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
670 671 672 673 674
		    u.packet.header_length + u.packet.payload_length > 0)
			return -EINVAL;
		if (payload + u.packet.payload_length > payload_end)
			return -EINVAL;

675 676
		if (fw_iso_context_queue(ctx, &u.packet,
					 &client->buffer, payload))
677 678 679 680 681 682 683 684 685
			break;

		p = next;
		payload += u.packet.payload_length;
		count++;
	}

	request.size    -= uptr_to_u64(p) - request.packets;
	request.packets  = uptr_to_u64(p);
686
	request.data     = client->vm_start + payload;
687 688 689 690 691 692 693

	if (copy_to_user(arg, &request, sizeof request))
		return -EFAULT;

	return count;
}

694
static int ioctl_start_iso(struct client *client, void __user *arg)
695
{
696
	struct fw_cdev_start_iso request;
697 698 699 700

	if (copy_from_user(&request, arg, sizeof request))
		return -EFAULT;

701 702 703 704 705 706 707 708 709 710
	if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE) {
		if (request.tags == 0 || request.tags > 15)
			return -EINVAL;

		if (request.sync > 15)
			return -EINVAL;
	}

	return fw_iso_context_start(client->iso_context,
				    request.cycle, request.sync, request.tags);
711 712
}

713 714 715 716 717
static int ioctl_stop_iso(struct client *client, void __user *arg)
{
	return fw_iso_context_stop(client->iso_context);
}

718 719 720 721
static int
dispatch_ioctl(struct client *client, unsigned int cmd, void __user *arg)
{
	switch (cmd) {
722 723
	case FW_CDEV_IOC_GET_INFO:
		return ioctl_get_info(client, arg);
724 725 726 727
	case FW_CDEV_IOC_SEND_REQUEST:
		return ioctl_send_request(client, arg);
	case FW_CDEV_IOC_ALLOCATE:
		return ioctl_allocate(client, arg);
728 729
	case FW_CDEV_IOC_DEALLOCATE:
		return ioctl_deallocate(client, arg);
730 731
	case FW_CDEV_IOC_SEND_RESPONSE:
		return ioctl_send_response(client, arg);
732 733
	case FW_CDEV_IOC_INITIATE_BUS_RESET:
		return ioctl_initiate_bus_reset(client, arg);
734 735 736 737
	case FW_CDEV_IOC_CREATE_ISO_CONTEXT:
		return ioctl_create_iso_context(client, arg);
	case FW_CDEV_IOC_QUEUE_ISO:
		return ioctl_queue_iso(client, arg);
738 739
	case FW_CDEV_IOC_START_ISO:
		return ioctl_start_iso(client, arg);
740 741
	case FW_CDEV_IOC_STOP_ISO:
		return ioctl_stop_iso(client, arg);
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
	default:
		return -EINVAL;
	}
}

static long
fw_device_op_ioctl(struct file *file,
		   unsigned int cmd, unsigned long arg)
{
	struct client *client = file->private_data;

	return dispatch_ioctl(client, cmd, (void __user *) arg);
}

#ifdef CONFIG_COMPAT
static long
fw_device_op_compat_ioctl(struct file *file,
			  unsigned int cmd, unsigned long arg)
{
	struct client *client = file->private_data;

	return dispatch_ioctl(client, cmd, compat_ptr(arg));
}
#endif

static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
{
	struct client *client = file->private_data;
770 771 772 773 774 775 776 777 778 779
	enum dma_data_direction direction;
	unsigned long size;
	int page_count, retval;

	/* FIXME: We could support multiple buffers, but we don't. */
	if (client->buffer.pages != NULL)
		return -EBUSY;

	if (!(vma->vm_flags & VM_SHARED))
		return -EINVAL;
780

781
	if (vma->vm_start & ~PAGE_MASK)
782 783 784
		return -EINVAL;

	client->vm_start = vma->vm_start;
785 786 787 788 789 790 791 792 793 794 795 796 797 798
	size = vma->vm_end - vma->vm_start;
	page_count = size >> PAGE_SHIFT;
	if (size & ~PAGE_MASK)
		return -EINVAL;

	if (vma->vm_flags & VM_WRITE)
		direction = DMA_TO_DEVICE;
	else
		direction = DMA_FROM_DEVICE;

	retval = fw_iso_buffer_init(&client->buffer, client->device->card,
				    page_count, direction);
	if (retval < 0)
		return retval;
799

800 801 802 803 804
	retval = fw_iso_buffer_map(&client->buffer, vma);
	if (retval < 0)
		fw_iso_buffer_destroy(&client->buffer, client->device->card);

	return retval;
805 806 807 808 809
}

static int fw_device_op_release(struct inode *inode, struct file *file)
{
	struct client *client = file->private_data;
810
	struct address_handler *h, *next_h;
811
	struct request *r, *next_r;
812
	struct event *e, *next_e;
813
	struct response *t, *next_t;
814
	unsigned long flags;
815

816 817 818
	if (client->buffer.pages)
		fw_iso_buffer_destroy(&client->buffer, client->device->card);

819 820 821
	if (client->iso_context)
		fw_iso_context_destroy(client->iso_context);

822
	list_for_each_entry_safe(h, next_h, &client->handler_list, link) {
823 824 825 826 827 828 829 830 831 832
		fw_core_remove_address_handler(&h->handler);
		kfree(h);
	}

	list_for_each_entry_safe(r, next_r, &client->request_list, link) {
		fw_send_response(client->device->card, r->request,
				 RCODE_CONFLICT_ERROR);
		kfree(r);
	}

833
	list_for_each_entry_safe(t, next_t, &client->transaction_list, link) {
834
		fw_cancel_transaction(client->device->card, &t->transaction);
835 836
		kfree(t);
	}
837 838 839 840

	/* FIXME: We should wait for the async tasklets to stop
	 * running before freeing the memory. */

841 842
	list_for_each_entry_safe(e, next_e, &client->event_list, link)
		kfree(e);
843

844 845 846 847
	spin_lock_irqsave(&client->device->card->lock, flags);
	list_del(&client->link);
	spin_unlock_irqrestore(&client->device->card->lock, flags);

848 849 850 851 852 853 854 855 856
	fw_device_put(client->device);
	kfree(client);

	return 0;
}

static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
{
	struct client *client = file->private_data;
857
	unsigned int mask = 0;
858 859 860

	poll_wait(file, &client->wait, pt);

861 862
	if (fw_device_is_shutdown(client->device))
		mask |= POLLHUP | POLLERR;
863
	if (!list_empty(&client->event_list))
864 865 866
		mask |= POLLIN | POLLRDNORM;

	return mask;
867 868
}

869
const struct file_operations fw_device_ops = {
870 871 872 873 874 875 876 877 878
	.owner		= THIS_MODULE,
	.open		= fw_device_op_open,
	.read		= fw_device_op_read,
	.unlocked_ioctl	= fw_device_op_ioctl,
	.poll		= fw_device_op_poll,
	.release	= fw_device_op_release,
	.mmap		= fw_device_op_mmap,

#ifdef CONFIG_COMPAT
879
	.compat_ioctl	= fw_device_op_compat_ioctl,
880 881
#endif
};