blob: 4dd66c1a36da63e00197ff745cc9c266d5e0c161 [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
2 * Char device for device raw access
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05003 *
Kristian Høgsbergc781c062007-05-07 20:33:32 -04004 * Copyright (C) 2005-2007 Kristian Hoegsberg <krh@bitplanet.net>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
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>
Stefan Richterd67cfb92008-10-05 10:37:11 +020027#include <linux/mutex.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050028#include <linux/poll.h>
Stefan Richtera64408b2007-09-29 10:41:58 +020029#include <linux/preempt.h>
30#include <linux/time.h>
Jay Fenlasoncf417e542008-10-03 11:19:09 -040031#include <linux/spinlock.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050032#include <linux/delay.h>
33#include <linux/mm.h>
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -050034#include <linux/idr.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050035#include <linux/compat.h>
Kristian Høgsberg9640d3d2007-04-30 15:03:15 -040036#include <linux/firewire-cdev.h>
Stefan Richtera64408b2007-09-29 10:41:58 +020037#include <asm/system.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050038#include <asm/uaccess.h>
39#include "fw-transaction.h"
40#include "fw-topology.h"
41#include "fw-device.h"
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050042
Kristian Høgsberg3964a442007-03-27 01:43:41 -040043struct client;
44struct client_resource {
45 struct list_head link;
46 void (*release)(struct client *client, struct client_resource *r);
47 u32 handle;
48};
49
Kristian Høgsbergc781c062007-05-07 20:33:32 -040050/*
51 * dequeue_event() just kfree()'s the event, so the event has to be
52 * the first field in the struct.
53 */
54
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050055struct event {
56 struct { void *data; size_t size; } v[2];
57 struct list_head link;
58};
59
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -050060struct bus_reset {
61 struct event event;
62 struct fw_cdev_event_bus_reset reset;
63};
64
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050065struct response {
66 struct event event;
67 struct fw_transaction transaction;
68 struct client *client;
Kristian Høgsberg3964a442007-03-27 01:43:41 -040069 struct client_resource resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050070 struct fw_cdev_event_response response;
71};
72
73struct iso_interrupt {
74 struct event event;
75 struct fw_cdev_event_iso_interrupt interrupt;
76};
77
78struct client {
Kristian Høgsberg344bbc42007-03-07 12:12:43 -050079 u32 version;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050080 struct fw_device *device;
81 spinlock_t lock;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +020082 u32 resource_handle;
Kristian Høgsberg3964a442007-03-27 01:43:41 -040083 struct list_head resource_list;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050084 struct list_head event_list;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050085 wait_queue_head_t wait;
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -040086 u64 bus_reset_closure;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050087
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050088 struct fw_iso_context *iso_context;
Kristian Høgsbergabaa5742007-04-30 15:03:14 -040089 u64 iso_closure;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050090 struct fw_iso_buffer buffer;
91 unsigned long vm_start;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -050092
93 struct list_head link;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050094};
95
96static inline void __user *
97u64_to_uptr(__u64 value)
98{
99 return (void __user *)(unsigned long)value;
100}
101
102static inline __u64
103uptr_to_u64(void __user *ptr)
104{
105 return (__u64)(unsigned long)ptr;
106}
107
108static int fw_device_op_open(struct inode *inode, struct file *file)
109{
110 struct fw_device *device;
111 struct client *client;
112
Stefan Richter96b19062008-02-02 15:01:09 +0100113 device = fw_device_get_by_devt(inode->i_rdev);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500114 if (device == NULL)
115 return -ENODEV;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500116
Jay Fenlason551f4cb2008-05-16 11:15:23 -0400117 if (fw_device_is_shutdown(device)) {
118 fw_device_put(device);
119 return -ENODEV;
120 }
121
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400122 client = kzalloc(sizeof(*client), GFP_KERNEL);
Stefan Richter96b19062008-02-02 15:01:09 +0100123 if (client == NULL) {
124 fw_device_put(device);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500125 return -ENOMEM;
Stefan Richter96b19062008-02-02 15:01:09 +0100126 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500127
Stefan Richter96b19062008-02-02 15:01:09 +0100128 client->device = device;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500129 INIT_LIST_HEAD(&client->event_list);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400130 INIT_LIST_HEAD(&client->resource_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500131 spin_lock_init(&client->lock);
132 init_waitqueue_head(&client->wait);
133
134 file->private_data = client;
135
Stefan Richterd67cfb92008-10-05 10:37:11 +0200136 mutex_lock(&device->client_list_mutex);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500137 list_add_tail(&client->link, &device->client_list);
Stefan Richterd67cfb92008-10-05 10:37:11 +0200138 mutex_unlock(&device->client_list_mutex);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500139
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500140 return 0;
141}
142
143static void queue_event(struct client *client, struct event *event,
144 void *data0, size_t size0, void *data1, size_t size1)
145{
146 unsigned long flags;
147
148 event->v[0].data = data0;
149 event->v[0].size = size0;
150 event->v[1].data = data1;
151 event->v[1].size = size1;
152
153 spin_lock_irqsave(&client->lock, flags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500154 list_add_tail(&event->link, &client->event_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500155 spin_unlock_irqrestore(&client->lock, flags);
Jay Fenlason83431cb2007-10-08 17:00:29 -0400156
157 wake_up_interruptible(&client->wait);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500158}
159
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500160static int
161dequeue_event(struct client *client, char __user *buffer, size_t count)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500162{
163 unsigned long flags;
164 struct event *event;
165 size_t size, total;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500166 int i, retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500167
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500168 retval = wait_event_interruptible(client->wait,
169 !list_empty(&client->event_list) ||
170 fw_device_is_shutdown(client->device));
171 if (retval < 0)
172 return retval;
173
174 if (list_empty(&client->event_list) &&
175 fw_device_is_shutdown(client->device))
176 return -ENODEV;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500177
178 spin_lock_irqsave(&client->lock, flags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500179 event = container_of(client->event_list.next, struct event, link);
180 list_del(&event->link);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500181 spin_unlock_irqrestore(&client->lock, flags);
182
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500183 total = 0;
184 for (i = 0; i < ARRAY_SIZE(event->v) && total < count; i++) {
185 size = min(event->v[i].size, count - total);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500186 if (copy_to_user(buffer + total, event->v[i].data, size)) {
187 retval = -EFAULT;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500188 goto out;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500189 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500190 total += size;
191 }
192 retval = total;
193
194 out:
195 kfree(event);
196
197 return retval;
198}
199
200static ssize_t
201fw_device_op_read(struct file *file,
202 char __user *buffer, size_t count, loff_t *offset)
203{
204 struct client *client = file->private_data;
205
206 return dequeue_event(client, buffer, count);
207}
208
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500209static void
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500210fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400211 struct client *client)
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500212{
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400213 struct fw_card *card = client->device->card;
Jay Fenlasoncf417e542008-10-03 11:19:09 -0400214 unsigned long flags;
215
216 spin_lock_irqsave(&card->lock, flags);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500217
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400218 event->closure = client->bus_reset_closure;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500219 event->type = FW_CDEV_EVENT_BUS_RESET;
Stefan Richtercf5a56a2008-01-24 01:53:51 +0100220 event->generation = client->device->generation;
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400221 event->node_id = client->device->node_id;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500222 event->local_node_id = card->local_node->node_id;
223 event->bm_node_id = 0; /* FIXME: We don't track the BM. */
224 event->irm_node_id = card->irm_node->node_id;
225 event->root_node_id = card->root_node->node_id;
Jay Fenlasoncf417e542008-10-03 11:19:09 -0400226
227 spin_unlock_irqrestore(&card->lock, flags);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500228}
229
230static void
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500231for_each_client(struct fw_device *device,
232 void (*callback)(struct client *client))
233{
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500234 struct client *c;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500235
Stefan Richterd67cfb92008-10-05 10:37:11 +0200236 mutex_lock(&device->client_list_mutex);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500237 list_for_each_entry(c, &device->client_list, link)
238 callback(c);
Stefan Richterd67cfb92008-10-05 10:37:11 +0200239 mutex_unlock(&device->client_list_mutex);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500240}
241
242static void
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500243queue_bus_reset_event(struct client *client)
244{
245 struct bus_reset *bus_reset;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500246
Stefan Richterd67cfb92008-10-05 10:37:11 +0200247 bus_reset = kzalloc(sizeof(*bus_reset), GFP_KERNEL);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500248 if (bus_reset == NULL) {
249 fw_notify("Out of memory when allocating bus reset event\n");
250 return;
251 }
252
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400253 fill_bus_reset_event(&bus_reset->reset, client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500254
255 queue_event(client, &bus_reset->event,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400256 &bus_reset->reset, sizeof(bus_reset->reset), NULL, 0);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500257}
258
259void fw_device_cdev_update(struct fw_device *device)
260{
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500261 for_each_client(device, queue_bus_reset_event);
262}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500263
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500264static void wake_up_client(struct client *client)
265{
266 wake_up_interruptible(&client->wait);
267}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500268
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500269void fw_device_cdev_remove(struct fw_device *device)
270{
271 for_each_client(device, wake_up_client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500272}
273
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400274static int ioctl_get_info(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500275{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400276 struct fw_cdev_get_info *get_info = buffer;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500277 struct fw_cdev_event_bus_reset bus_reset;
Stefan Richterc9755e12008-03-24 20:54:28 +0100278 unsigned long ret = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500279
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400280 client->version = get_info->version;
281 get_info->version = FW_CDEV_VERSION;
Jay Fenlasoncf417e542008-10-03 11:19:09 -0400282 get_info->card = client->device->card->index;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500283
Stefan Richterc9755e12008-03-24 20:54:28 +0100284 down_read(&fw_device_rwsem);
285
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400286 if (get_info->rom != 0) {
287 void __user *uptr = u64_to_uptr(get_info->rom);
288 size_t want = get_info->rom_length;
Stefan Richterd84702a2007-03-20 19:42:15 +0100289 size_t have = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500290
Stefan Richterc9755e12008-03-24 20:54:28 +0100291 ret = copy_to_user(uptr, client->device->config_rom,
292 min(want, have));
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500293 }
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400294 get_info->rom_length = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500295
Stefan Richterc9755e12008-03-24 20:54:28 +0100296 up_read(&fw_device_rwsem);
297
298 if (ret != 0)
299 return -EFAULT;
300
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400301 client->bus_reset_closure = get_info->bus_reset_closure;
302 if (get_info->bus_reset != 0) {
303 void __user *uptr = u64_to_uptr(get_info->bus_reset);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500304
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400305 fill_bus_reset_event(&bus_reset, client);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400306 if (copy_to_user(uptr, &bus_reset, sizeof(bus_reset)))
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500307 return -EFAULT;
308 }
309
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500310 return 0;
311}
312
313static void
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400314add_client_resource(struct client *client, struct client_resource *resource)
315{
316 unsigned long flags;
317
318 spin_lock_irqsave(&client->lock, flags);
319 list_add_tail(&resource->link, &client->resource_list);
320 resource->handle = client->resource_handle++;
321 spin_unlock_irqrestore(&client->lock, flags);
322}
323
324static int
325release_client_resource(struct client *client, u32 handle,
326 struct client_resource **resource)
327{
328 struct client_resource *r;
329 unsigned long flags;
330
331 spin_lock_irqsave(&client->lock, flags);
332 list_for_each_entry(r, &client->resource_list, link) {
333 if (r->handle == handle) {
334 list_del(&r->link);
335 break;
336 }
337 }
338 spin_unlock_irqrestore(&client->lock, flags);
339
340 if (&r->link == &client->resource_list)
341 return -EINVAL;
342
343 if (resource)
344 *resource = r;
345 else
346 r->release(client, r);
347
348 return 0;
349}
350
351static void
352release_transaction(struct client *client, struct client_resource *resource)
353{
354 struct response *response =
355 container_of(resource, struct response, resource);
356
357 fw_cancel_transaction(client->device->card, &response->transaction);
358}
359
360static void
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500361complete_transaction(struct fw_card *card, int rcode,
362 void *payload, size_t length, void *data)
363{
364 struct response *response = data;
365 struct client *client = response->client;
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500366 unsigned long flags;
David Moore8401d922008-07-29 23:46:25 -0700367 struct fw_cdev_event_response *r = &response->response;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500368
David Moore8401d922008-07-29 23:46:25 -0700369 if (length < r->length)
370 r->length = length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500371 if (rcode == RCODE_COMPLETE)
David Moore8401d922008-07-29 23:46:25 -0700372 memcpy(r->data, payload, r->length);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500373
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500374 spin_lock_irqsave(&client->lock, flags);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400375 list_del(&response->resource.link);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500376 spin_unlock_irqrestore(&client->lock, flags);
377
David Moore8401d922008-07-29 23:46:25 -0700378 r->type = FW_CDEV_EVENT_RESPONSE;
379 r->rcode = rcode;
380
381 /*
382 * In the case that sizeof(*r) doesn't align with the position of the
383 * data, and the read is short, preserve an extra copy of the data
384 * to stay compatible with a pre-2.6.27 bug. Since the bug is harmless
385 * for short reads and some apps depended on it, this is both safe
386 * and prudent for compatibility.
387 */
388 if (r->length <= sizeof(*r) - offsetof(typeof(*r), data))
389 queue_event(client, &response->event, r, sizeof(*r),
390 r->data, r->length);
391 else
392 queue_event(client, &response->event, r, sizeof(*r) + r->length,
393 NULL, 0);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500394}
395
Jeff Garzik350958f2007-05-27 07:09:18 -0400396static int ioctl_send_request(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500397{
398 struct fw_device *device = client->device;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400399 struct fw_cdev_send_request *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500400 struct response *response;
Stefan Richter1f3125a2008-12-05 22:44:42 +0100401 int ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500402
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500403 /* What is the biggest size we'll accept, really? */
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400404 if (request->length > 4096)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500405 return -EINVAL;
406
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400407 response = kmalloc(sizeof(*response) + request->length, GFP_KERNEL);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500408 if (response == NULL)
409 return -ENOMEM;
410
411 response->client = client;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400412 response->response.length = request->length;
413 response->response.closure = request->closure;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500414
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400415 if (request->data &&
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500416 copy_from_user(response->response.data,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400417 u64_to_uptr(request->data), request->length)) {
Stefan Richter1f3125a2008-12-05 22:44:42 +0100418 ret = -EFAULT;
419 goto err;
420 }
421
422 switch (request->tcode) {
423 case TCODE_WRITE_QUADLET_REQUEST:
424 case TCODE_WRITE_BLOCK_REQUEST:
425 case TCODE_READ_QUADLET_REQUEST:
426 case TCODE_READ_BLOCK_REQUEST:
427 case TCODE_LOCK_MASK_SWAP:
428 case TCODE_LOCK_COMPARE_SWAP:
429 case TCODE_LOCK_FETCH_ADD:
430 case TCODE_LOCK_LITTLE_ADD:
431 case TCODE_LOCK_BOUNDED_ADD:
432 case TCODE_LOCK_WRAP_ADD:
433 case TCODE_LOCK_VENDOR_DEPENDENT:
434 break;
435 default:
436 ret = -EINVAL;
437 goto err;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500438 }
439
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400440 response->resource.release = release_transaction;
441 add_client_resource(client, &response->resource);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500442
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500443 fw_send_request(device->card, &response->transaction,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400444 request->tcode & 0x1f,
Stefan Richter907293d2007-01-23 21:11:43 +0100445 device->node->node_id,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400446 request->generation,
Stefan Richterf1397492007-06-10 21:31:36 +0200447 device->max_speed,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400448 request->offset,
449 response->response.data, request->length,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500450 complete_transaction, response);
451
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400452 if (request->data)
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400453 return sizeof(request) + request->length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500454 else
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400455 return sizeof(request);
Stefan Richter1f3125a2008-12-05 22:44:42 +0100456 err:
457 kfree(response);
458
459 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500460}
461
462struct address_handler {
463 struct fw_address_handler handler;
464 __u64 closure;
465 struct client *client;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400466 struct client_resource resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500467};
468
469struct request {
470 struct fw_request *request;
471 void *data;
472 size_t length;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400473 struct client_resource resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500474};
475
476struct request_event {
477 struct event event;
478 struct fw_cdev_event_request request;
479};
480
481static void
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400482release_request(struct client *client, struct client_resource *resource)
483{
484 struct request *request =
485 container_of(resource, struct request, resource);
486
487 fw_send_response(client->device->card, request->request,
488 RCODE_CONFLICT_ERROR);
489 kfree(request);
490}
491
492static void
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500493handle_request(struct fw_card *card, struct fw_request *r,
494 int tcode, int destination, int source,
495 int generation, int speed,
496 unsigned long long offset,
497 void *payload, size_t length, void *callback_data)
498{
499 struct address_handler *handler = callback_data;
500 struct request *request;
501 struct request_event *e;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500502 struct client *client = handler->client;
503
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400504 request = kmalloc(sizeof(*request), GFP_ATOMIC);
505 e = kmalloc(sizeof(*e), GFP_ATOMIC);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500506 if (request == NULL || e == NULL) {
507 kfree(request);
508 kfree(e);
509 fw_send_response(card, r, RCODE_CONFLICT_ERROR);
510 return;
511 }
512
513 request->request = r;
514 request->data = payload;
515 request->length = length;
516
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400517 request->resource.release = release_request;
518 add_client_resource(client, &request->resource);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500519
520 e->request.type = FW_CDEV_EVENT_REQUEST;
521 e->request.tcode = tcode;
522 e->request.offset = offset;
523 e->request.length = length;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400524 e->request.handle = request->resource.handle;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500525 e->request.closure = handler->closure;
526
527 queue_event(client, &e->event,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400528 &e->request, sizeof(e->request), payload, length);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500529}
530
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400531static void
532release_address_handler(struct client *client,
533 struct client_resource *resource)
534{
535 struct address_handler *handler =
536 container_of(resource, struct address_handler, resource);
537
538 fw_core_remove_address_handler(&handler->handler);
539 kfree(handler);
540}
541
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400542static int ioctl_allocate(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500543{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400544 struct fw_cdev_allocate *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500545 struct address_handler *handler;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500546 struct fw_address_region region;
547
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400548 handler = kmalloc(sizeof(*handler), GFP_KERNEL);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500549 if (handler == NULL)
550 return -ENOMEM;
551
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400552 region.start = request->offset;
553 region.end = request->offset + request->length;
554 handler->handler.length = request->length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500555 handler->handler.address_callback = handle_request;
556 handler->handler.callback_data = handler;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400557 handler->closure = request->closure;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500558 handler->client = client;
559
560 if (fw_core_add_address_handler(&handler->handler, &region) < 0) {
561 kfree(handler);
562 return -EBUSY;
563 }
564
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400565 handler->resource.release = release_address_handler;
566 add_client_resource(client, &handler->resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400567 request->handle = handler->resource.handle;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500568
569 return 0;
570}
571
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400572static int ioctl_deallocate(struct client *client, void *buffer)
Kristian Høgsberg9472316b2007-03-14 17:34:55 -0400573{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400574 struct fw_cdev_deallocate *request = buffer;
Kristian Høgsberg9472316b2007-03-14 17:34:55 -0400575
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400576 return release_client_resource(client, request->handle, NULL);
Kristian Høgsberg9472316b2007-03-14 17:34:55 -0400577}
578
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400579static int ioctl_send_response(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500580{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400581 struct fw_cdev_send_response *request = buffer;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400582 struct client_resource *resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500583 struct request *r;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500584
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400585 if (release_client_resource(client, request->handle, &resource) < 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500586 return -EINVAL;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400587 r = container_of(resource, struct request, resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400588 if (request->length < r->length)
589 r->length = request->length;
590 if (copy_from_user(r->data, u64_to_uptr(request->data), r->length))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500591 return -EFAULT;
592
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400593 fw_send_response(client->device->card, r->request, request->rcode);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500594 kfree(r);
595
596 return 0;
597}
598
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400599static int ioctl_initiate_bus_reset(struct client *client, void *buffer)
Kristian Høgsberg53718422007-03-07 12:12:42 -0500600{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400601 struct fw_cdev_initiate_bus_reset *request = buffer;
Kristian Høgsberg53718422007-03-07 12:12:42 -0500602 int short_reset;
603
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400604 short_reset = (request->type == FW_CDEV_SHORT_RESET);
Kristian Høgsberg53718422007-03-07 12:12:42 -0500605
606 return fw_core_initiate_bus_reset(client->device->card, short_reset);
607}
608
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200609struct descriptor {
610 struct fw_descriptor d;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400611 struct client_resource resource;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200612 u32 data[0];
613};
614
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400615static void release_descriptor(struct client *client,
616 struct client_resource *resource)
617{
618 struct descriptor *descriptor =
619 container_of(resource, struct descriptor, resource);
620
621 fw_core_remove_descriptor(&descriptor->d);
622 kfree(descriptor);
623}
624
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400625static int ioctl_add_descriptor(struct client *client, void *buffer)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200626{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400627 struct fw_cdev_add_descriptor *request = buffer;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200628 struct descriptor *descriptor;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200629 int retval;
630
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400631 if (request->length > 256)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200632 return -EINVAL;
633
634 descriptor =
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400635 kmalloc(sizeof(*descriptor) + request->length * 4, GFP_KERNEL);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200636 if (descriptor == NULL)
637 return -ENOMEM;
638
639 if (copy_from_user(descriptor->data,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400640 u64_to_uptr(request->data), request->length * 4)) {
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200641 kfree(descriptor);
642 return -EFAULT;
643 }
644
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400645 descriptor->d.length = request->length;
646 descriptor->d.immediate = request->immediate;
647 descriptor->d.key = request->key;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200648 descriptor->d.data = descriptor->data;
649
650 retval = fw_core_add_descriptor(&descriptor->d);
651 if (retval < 0) {
652 kfree(descriptor);
653 return retval;
654 }
655
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400656 descriptor->resource.release = release_descriptor;
657 add_client_resource(client, &descriptor->resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400658 request->handle = descriptor->resource.handle;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200659
660 return 0;
661}
662
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400663static int ioctl_remove_descriptor(struct client *client, void *buffer)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200664{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400665 struct fw_cdev_remove_descriptor *request = buffer;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200666
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400667 return release_client_resource(client, request->handle, NULL);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200668}
669
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500670static void
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500671iso_callback(struct fw_iso_context *context, u32 cycle,
672 size_t header_length, void *header, void *data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500673{
674 struct client *client = data;
Stefan Richter930e4b72007-08-03 20:56:31 +0200675 struct iso_interrupt *irq;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500676
Stefan Richter930e4b72007-08-03 20:56:31 +0200677 irq = kzalloc(sizeof(*irq) + header_length, GFP_ATOMIC);
678 if (irq == NULL)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500679 return;
680
Stefan Richter930e4b72007-08-03 20:56:31 +0200681 irq->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT;
682 irq->interrupt.closure = client->iso_closure;
683 irq->interrupt.cycle = cycle;
684 irq->interrupt.header_length = header_length;
685 memcpy(irq->interrupt.header, header, header_length);
686 queue_event(client, &irq->event, &irq->interrupt,
687 sizeof(irq->interrupt) + header_length, NULL, 0);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500688}
689
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400690static int ioctl_create_iso_context(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500691{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400692 struct fw_cdev_create_iso_context *request = buffer;
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400693 struct fw_iso_context *context;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500694
Stefan Richterfae60312008-02-20 21:10:06 +0100695 /* We only support one context at this time. */
696 if (client->iso_context != NULL)
697 return -EBUSY;
698
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400699 if (request->channel > 63)
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500700 return -EINVAL;
701
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400702 switch (request->type) {
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400703 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400704 if (request->header_size < 4 || (request->header_size & 3))
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400705 return -EINVAL;
706
707 break;
708
709 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400710 if (request->speed > SCODE_3200)
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400711 return -EINVAL;
712
713 break;
714
715 default:
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500716 return -EINVAL;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400717 }
718
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400719 context = fw_iso_context_create(client->device->card,
720 request->type,
721 request->channel,
722 request->speed,
723 request->header_size,
724 iso_callback, client);
725 if (IS_ERR(context))
726 return PTR_ERR(context);
727
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400728 client->iso_closure = request->closure;
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400729 client->iso_context = context;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500730
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400731 /* We only support one context at this time. */
732 request->handle = 0;
733
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500734 return 0;
735}
736
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400737/* Macros for decoding the iso packet control header. */
738#define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
739#define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
740#define GET_SKIP(v) (((v) >> 17) & 0x01)
Stefan Richter7a100342008-09-12 18:09:55 +0200741#define GET_TAG(v) (((v) >> 18) & 0x03)
742#define GET_SY(v) (((v) >> 20) & 0x0f)
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400743#define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
744
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400745static int ioctl_queue_iso(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500746{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400747 struct fw_cdev_queue_iso *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500748 struct fw_cdev_iso_packet __user *p, *end, *next;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500749 struct fw_iso_context *ctx = client->iso_context;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200750 unsigned long payload, buffer_end, header_length;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400751 u32 control;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500752 int count;
753 struct {
754 struct fw_iso_packet packet;
755 u8 header[256];
756 } u;
757
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400758 if (ctx == NULL || request->handle != 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500759 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500760
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400761 /*
762 * If the user passes a non-NULL data pointer, has mmap()'ed
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500763 * the iso buffer, and the pointer points inside the buffer,
764 * we setup the payload pointers accordingly. Otherwise we
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500765 * set them both to 0, which will still let packets with
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500766 * payload_length == 0 through. In other words, if no packets
767 * use the indirect payload, the iso buffer need not be mapped
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400768 * and the request->data pointer is ignored.
769 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500770
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400771 payload = (unsigned long)request->data - client->vm_start;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200772 buffer_end = client->buffer.page_count << PAGE_SHIFT;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400773 if (request->data == 0 || client->buffer.pages == NULL ||
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200774 payload >= buffer_end) {
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500775 payload = 0;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200776 buffer_end = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500777 }
778
Al Viro1ccc9142007-10-14 19:34:40 +0100779 p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(request->packets);
780
781 if (!access_ok(VERIFY_READ, p, request->size))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500782 return -EFAULT;
783
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400784 end = (void __user *)p + request->size;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500785 count = 0;
786 while (p < end) {
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400787 if (get_user(control, &p->control))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500788 return -EFAULT;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400789 u.packet.payload_length = GET_PAYLOAD_LENGTH(control);
790 u.packet.interrupt = GET_INTERRUPT(control);
791 u.packet.skip = GET_SKIP(control);
792 u.packet.tag = GET_TAG(control);
793 u.packet.sy = GET_SY(control);
794 u.packet.header_length = GET_HEADER_LENGTH(control);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500795
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500796 if (ctx->type == FW_ISO_CONTEXT_TRANSMIT) {
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500797 header_length = u.packet.header_length;
798 } else {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400799 /*
800 * We require that header_length is a multiple of
801 * the fixed header size, ctx->header_size.
802 */
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500803 if (ctx->header_size == 0) {
804 if (u.packet.header_length > 0)
805 return -EINVAL;
806 } else if (u.packet.header_length % ctx->header_size != 0) {
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500807 return -EINVAL;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500808 }
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500809 header_length = 0;
810 }
811
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500812 next = (struct fw_cdev_iso_packet __user *)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500813 &p->header[header_length / 4];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500814 if (next > end)
815 return -EINVAL;
816 if (__copy_from_user
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500817 (u.packet.header, p->header, header_length))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500818 return -EFAULT;
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -0500819 if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500820 u.packet.header_length + u.packet.payload_length > 0)
821 return -EINVAL;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200822 if (payload + u.packet.payload_length > buffer_end)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500823 return -EINVAL;
824
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500825 if (fw_iso_context_queue(ctx, &u.packet,
826 &client->buffer, payload))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500827 break;
828
829 p = next;
830 payload += u.packet.payload_length;
831 count++;
832 }
833
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400834 request->size -= uptr_to_u64(p) - request->packets;
835 request->packets = uptr_to_u64(p);
836 request->data = client->vm_start + payload;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500837
838 return count;
839}
840
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400841static int ioctl_start_iso(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500842{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400843 struct fw_cdev_start_iso *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500844
Stefan Richterfae60312008-02-20 21:10:06 +0100845 if (client->iso_context == NULL || request->handle != 0)
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400846 return -EINVAL;
Stefan Richterfae60312008-02-20 21:10:06 +0100847
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400848 if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE) {
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400849 if (request->tags == 0 || request->tags > 15)
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400850 return -EINVAL;
851
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400852 if (request->sync > 15)
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400853 return -EINVAL;
854 }
855
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400856 return fw_iso_context_start(client->iso_context, request->cycle,
857 request->sync, request->tags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500858}
859
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400860static int ioctl_stop_iso(struct client *client, void *buffer)
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500861{
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400862 struct fw_cdev_stop_iso *request = buffer;
863
Stefan Richterfae60312008-02-20 21:10:06 +0100864 if (client->iso_context == NULL || request->handle != 0)
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400865 return -EINVAL;
866
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500867 return fw_iso_context_stop(client->iso_context);
868}
869
Stefan Richtera64408b2007-09-29 10:41:58 +0200870static int ioctl_get_cycle_timer(struct client *client, void *buffer)
871{
872 struct fw_cdev_get_cycle_timer *request = buffer;
873 struct fw_card *card = client->device->card;
874 unsigned long long bus_time;
875 struct timeval tv;
876 unsigned long flags;
877
878 preempt_disable();
879 local_irq_save(flags);
880
881 bus_time = card->driver->get_bus_time(card);
882 do_gettimeofday(&tv);
883
884 local_irq_restore(flags);
885 preempt_enable();
886
887 request->local_time = tv.tv_sec * 1000000ULL + tv.tv_usec;
888 request->cycle_timer = bus_time & 0xffffffff;
889 return 0;
890}
891
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400892static int (* const ioctl_handlers[])(struct client *client, void *buffer) = {
893 ioctl_get_info,
894 ioctl_send_request,
895 ioctl_allocate,
896 ioctl_deallocate,
897 ioctl_send_response,
898 ioctl_initiate_bus_reset,
899 ioctl_add_descriptor,
900 ioctl_remove_descriptor,
901 ioctl_create_iso_context,
902 ioctl_queue_iso,
903 ioctl_start_iso,
904 ioctl_stop_iso,
Stefan Richtera64408b2007-09-29 10:41:58 +0200905 ioctl_get_cycle_timer,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400906};
907
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500908static int
909dispatch_ioctl(struct client *client, unsigned int cmd, void __user *arg)
910{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400911 char buffer[256];
912 int retval;
913
914 if (_IOC_TYPE(cmd) != '#' ||
915 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500916 return -EINVAL;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400917
918 if (_IOC_DIR(cmd) & _IOC_WRITE) {
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400919 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400920 copy_from_user(buffer, arg, _IOC_SIZE(cmd)))
921 return -EFAULT;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500922 }
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400923
924 retval = ioctl_handlers[_IOC_NR(cmd)](client, buffer);
925 if (retval < 0)
926 return retval;
927
928 if (_IOC_DIR(cmd) & _IOC_READ) {
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400929 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400930 copy_to_user(arg, buffer, _IOC_SIZE(cmd)))
931 return -EFAULT;
932 }
933
Stefan Richter99692f72008-09-12 18:20:16 +0200934 return retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500935}
936
937static long
938fw_device_op_ioctl(struct file *file,
939 unsigned int cmd, unsigned long arg)
940{
941 struct client *client = file->private_data;
942
Jay Fenlason551f4cb2008-05-16 11:15:23 -0400943 if (fw_device_is_shutdown(client->device))
944 return -ENODEV;
945
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500946 return dispatch_ioctl(client, cmd, (void __user *) arg);
947}
948
949#ifdef CONFIG_COMPAT
950static long
951fw_device_op_compat_ioctl(struct file *file,
952 unsigned int cmd, unsigned long arg)
953{
954 struct client *client = file->private_data;
955
Jay Fenlason551f4cb2008-05-16 11:15:23 -0400956 if (fw_device_is_shutdown(client->device))
957 return -ENODEV;
958
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500959 return dispatch_ioctl(client, cmd, compat_ptr(arg));
960}
961#endif
962
963static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
964{
965 struct client *client = file->private_data;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500966 enum dma_data_direction direction;
967 unsigned long size;
968 int page_count, retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500969
Jay Fenlason551f4cb2008-05-16 11:15:23 -0400970 if (fw_device_is_shutdown(client->device))
971 return -ENODEV;
972
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500973 /* FIXME: We could support multiple buffers, but we don't. */
974 if (client->buffer.pages != NULL)
975 return -EBUSY;
976
977 if (!(vma->vm_flags & VM_SHARED))
978 return -EINVAL;
979
980 if (vma->vm_start & ~PAGE_MASK)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500981 return -EINVAL;
982
983 client->vm_start = vma->vm_start;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500984 size = vma->vm_end - vma->vm_start;
985 page_count = size >> PAGE_SHIFT;
986 if (size & ~PAGE_MASK)
987 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500988
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500989 if (vma->vm_flags & VM_WRITE)
990 direction = DMA_TO_DEVICE;
991 else
992 direction = DMA_FROM_DEVICE;
993
994 retval = fw_iso_buffer_init(&client->buffer, client->device->card,
995 page_count, direction);
996 if (retval < 0)
997 return retval;
998
999 retval = fw_iso_buffer_map(&client->buffer, vma);
1000 if (retval < 0)
1001 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1002
1003 return retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001004}
1005
1006static int fw_device_op_release(struct inode *inode, struct file *file)
1007{
1008 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001009 struct event *e, *next_e;
Kristian Høgsberg3964a442007-03-27 01:43:41 -04001010 struct client_resource *r, *next_r;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001011
Stefan Richter97811e32008-12-14 19:19:23 +01001012 mutex_lock(&client->device->client_list_mutex);
1013 list_del(&client->link);
1014 mutex_unlock(&client->device->client_list_mutex);
1015
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001016 if (client->buffer.pages)
1017 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1018
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001019 if (client->iso_context)
1020 fw_iso_context_destroy(client->iso_context);
1021
Kristian Høgsberg3964a442007-03-27 01:43:41 -04001022 list_for_each_entry_safe(r, next_r, &client->resource_list, link)
1023 r->release(client, r);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +02001024
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001025 /*
1026 * FIXME: We should wait for the async tasklets to stop
1027 * running before freeing the memory.
1028 */
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -05001029
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001030 list_for_each_entry_safe(e, next_e, &client->event_list, link)
1031 kfree(e);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001032
1033 fw_device_put(client->device);
1034 kfree(client);
1035
1036 return 0;
1037}
1038
1039static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
1040{
1041 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001042 unsigned int mask = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001043
1044 poll_wait(file, &client->wait, pt);
1045
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001046 if (fw_device_is_shutdown(client->device))
1047 mask |= POLLHUP | POLLERR;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001048 if (!list_empty(&client->event_list))
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001049 mask |= POLLIN | POLLRDNORM;
1050
1051 return mask;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001052}
1053
Stefan Richter21ebcd12007-01-14 15:29:07 +01001054const struct file_operations fw_device_ops = {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001055 .owner = THIS_MODULE,
1056 .open = fw_device_op_open,
1057 .read = fw_device_op_read,
1058 .unlocked_ioctl = fw_device_op_ioctl,
1059 .poll = fw_device_op_poll,
1060 .release = fw_device_op_release,
1061 .mmap = fw_device_op_mmap,
1062
1063#ifdef CONFIG_COMPAT
Stefan Richter5af4e5e2007-01-21 20:45:32 +01001064 .compat_ioctl = fw_device_op_compat_ioctl,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001065#endif
1066};