blob: 44ccee26c368b59c030b1b07a4b92c157fac4069 [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>
27#include <linux/poll.h>
Stefan Richtera64408b2007-09-29 10:41:58 +020028#include <linux/preempt.h>
29#include <linux/time.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050030#include <linux/delay.h>
31#include <linux/mm.h>
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -050032#include <linux/idr.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050033#include <linux/compat.h>
Kristian Høgsberg9640d3d2007-04-30 15:03:15 -040034#include <linux/firewire-cdev.h>
Stefan Richtera64408b2007-09-29 10:41:58 +020035#include <asm/system.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050036#include <asm/uaccess.h>
37#include "fw-transaction.h"
38#include "fw-topology.h"
39#include "fw-device.h"
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050040
Kristian Høgsberg3964a442007-03-27 01:43:41 -040041struct client;
42struct client_resource {
43 struct list_head link;
44 void (*release)(struct client *client, struct client_resource *r);
45 u32 handle;
46};
47
Kristian Høgsbergc781c062007-05-07 20:33:32 -040048/*
49 * dequeue_event() just kfree()'s the event, so the event has to be
50 * the first field in the struct.
51 */
52
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050053struct event {
54 struct { void *data; size_t size; } v[2];
55 struct list_head link;
56};
57
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -050058struct bus_reset {
59 struct event event;
60 struct fw_cdev_event_bus_reset reset;
61};
62
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050063struct response {
64 struct event event;
65 struct fw_transaction transaction;
66 struct client *client;
Kristian Høgsberg3964a442007-03-27 01:43:41 -040067 struct client_resource resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050068 struct fw_cdev_event_response response;
69};
70
71struct iso_interrupt {
72 struct event event;
73 struct fw_cdev_event_iso_interrupt interrupt;
74};
75
76struct client {
Kristian Høgsberg344bbc42007-03-07 12:12:43 -050077 u32 version;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050078 struct fw_device *device;
79 spinlock_t lock;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +020080 u32 resource_handle;
Kristian Høgsberg3964a442007-03-27 01:43:41 -040081 struct list_head resource_list;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050082 struct list_head event_list;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050083 wait_queue_head_t wait;
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -040084 u64 bus_reset_closure;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050085
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050086 struct fw_iso_context *iso_context;
Kristian Høgsbergabaa5742007-04-30 15:03:14 -040087 u64 iso_closure;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050088 struct fw_iso_buffer buffer;
89 unsigned long vm_start;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -050090
91 struct list_head link;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050092};
93
94static inline void __user *
95u64_to_uptr(__u64 value)
96{
97 return (void __user *)(unsigned long)value;
98}
99
100static inline __u64
101uptr_to_u64(void __user *ptr)
102{
103 return (__u64)(unsigned long)ptr;
104}
105
106static int fw_device_op_open(struct inode *inode, struct file *file)
107{
108 struct fw_device *device;
109 struct client *client;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500110 unsigned long flags;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500111
Stefan Richter96b19062008-02-02 15:01:09 +0100112 device = fw_device_get_by_devt(inode->i_rdev);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500113 if (device == NULL)
114 return -ENODEV;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500115
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400116 client = kzalloc(sizeof(*client), GFP_KERNEL);
Stefan Richter96b19062008-02-02 15:01:09 +0100117 if (client == NULL) {
118 fw_device_put(device);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500119 return -ENOMEM;
Stefan Richter96b19062008-02-02 15:01:09 +0100120 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500121
Stefan Richter96b19062008-02-02 15:01:09 +0100122 client->device = device;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500123 INIT_LIST_HEAD(&client->event_list);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400124 INIT_LIST_HEAD(&client->resource_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500125 spin_lock_init(&client->lock);
126 init_waitqueue_head(&client->wait);
127
128 file->private_data = client;
129
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500130 spin_lock_irqsave(&device->card->lock, flags);
131 list_add_tail(&client->link, &device->client_list);
132 spin_unlock_irqrestore(&device->card->lock, flags);
133
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500134 return 0;
135}
136
137static void queue_event(struct client *client, struct event *event,
138 void *data0, size_t size0, void *data1, size_t size1)
139{
140 unsigned long flags;
141
142 event->v[0].data = data0;
143 event->v[0].size = size0;
144 event->v[1].data = data1;
145 event->v[1].size = size1;
146
147 spin_lock_irqsave(&client->lock, flags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500148 list_add_tail(&event->link, &client->event_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500149 spin_unlock_irqrestore(&client->lock, flags);
Jay Fenlason83431cb2007-10-08 17:00:29 -0400150
151 wake_up_interruptible(&client->wait);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500152}
153
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500154static int
155dequeue_event(struct client *client, char __user *buffer, size_t count)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500156{
157 unsigned long flags;
158 struct event *event;
159 size_t size, total;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500160 int i, retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500161
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500162 retval = wait_event_interruptible(client->wait,
163 !list_empty(&client->event_list) ||
164 fw_device_is_shutdown(client->device));
165 if (retval < 0)
166 return retval;
167
168 if (list_empty(&client->event_list) &&
169 fw_device_is_shutdown(client->device))
170 return -ENODEV;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500171
172 spin_lock_irqsave(&client->lock, flags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500173 event = container_of(client->event_list.next, struct event, link);
174 list_del(&event->link);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500175 spin_unlock_irqrestore(&client->lock, flags);
176
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500177 total = 0;
178 for (i = 0; i < ARRAY_SIZE(event->v) && total < count; i++) {
179 size = min(event->v[i].size, count - total);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500180 if (copy_to_user(buffer + total, event->v[i].data, size)) {
181 retval = -EFAULT;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500182 goto out;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500183 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500184 total += size;
185 }
186 retval = total;
187
188 out:
189 kfree(event);
190
191 return retval;
192}
193
194static ssize_t
195fw_device_op_read(struct file *file,
196 char __user *buffer, size_t count, loff_t *offset)
197{
198 struct client *client = file->private_data;
199
200 return dequeue_event(client, buffer, count);
201}
202
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500203static void
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500204fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400205 struct client *client)
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500206{
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400207 struct fw_card *card = client->device->card;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500208
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400209 event->closure = client->bus_reset_closure;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500210 event->type = FW_CDEV_EVENT_BUS_RESET;
Stefan Richtercf5a56a2008-01-24 01:53:51 +0100211 event->generation = client->device->generation;
Stefan Richterb5d2a5e2008-01-25 18:57:41 +0100212 smp_rmb(); /* node_id must not be older than generation */
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400213 event->node_id = client->device->node_id;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500214 event->local_node_id = card->local_node->node_id;
215 event->bm_node_id = 0; /* FIXME: We don't track the BM. */
216 event->irm_node_id = card->irm_node->node_id;
217 event->root_node_id = card->root_node->node_id;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500218}
219
220static void
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500221for_each_client(struct fw_device *device,
222 void (*callback)(struct client *client))
223{
224 struct fw_card *card = device->card;
225 struct client *c;
226 unsigned long flags;
227
228 spin_lock_irqsave(&card->lock, flags);
229
230 list_for_each_entry(c, &device->client_list, link)
231 callback(c);
232
233 spin_unlock_irqrestore(&card->lock, flags);
234}
235
236static void
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500237queue_bus_reset_event(struct client *client)
238{
239 struct bus_reset *bus_reset;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500240
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400241 bus_reset = kzalloc(sizeof(*bus_reset), GFP_ATOMIC);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500242 if (bus_reset == NULL) {
243 fw_notify("Out of memory when allocating bus reset event\n");
244 return;
245 }
246
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400247 fill_bus_reset_event(&bus_reset->reset, client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500248
249 queue_event(client, &bus_reset->event,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400250 &bus_reset->reset, sizeof(bus_reset->reset), NULL, 0);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500251}
252
253void fw_device_cdev_update(struct fw_device *device)
254{
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500255 for_each_client(device, queue_bus_reset_event);
256}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500257
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500258static void wake_up_client(struct client *client)
259{
260 wake_up_interruptible(&client->wait);
261}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500262
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500263void fw_device_cdev_remove(struct fw_device *device)
264{
265 for_each_client(device, wake_up_client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500266}
267
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400268static int ioctl_get_info(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500269{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400270 struct fw_cdev_get_info *get_info = buffer;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500271 struct fw_cdev_event_bus_reset bus_reset;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500272
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400273 client->version = get_info->version;
274 get_info->version = FW_CDEV_VERSION;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500275
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400276 if (get_info->rom != 0) {
277 void __user *uptr = u64_to_uptr(get_info->rom);
278 size_t want = get_info->rom_length;
Stefan Richterd84702a2007-03-20 19:42:15 +0100279 size_t have = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500280
Stefan Richterd84702a2007-03-20 19:42:15 +0100281 if (copy_to_user(uptr, client->device->config_rom,
282 min(want, have)))
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500283 return -EFAULT;
284 }
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400285 get_info->rom_length = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500286
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400287 client->bus_reset_closure = get_info->bus_reset_closure;
288 if (get_info->bus_reset != 0) {
289 void __user *uptr = u64_to_uptr(get_info->bus_reset);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500290
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400291 fill_bus_reset_event(&bus_reset, client);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400292 if (copy_to_user(uptr, &bus_reset, sizeof(bus_reset)))
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500293 return -EFAULT;
294 }
295
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400296 get_info->card = client->device->card->index;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500297
298 return 0;
299}
300
301static void
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400302add_client_resource(struct client *client, struct client_resource *resource)
303{
304 unsigned long flags;
305
306 spin_lock_irqsave(&client->lock, flags);
307 list_add_tail(&resource->link, &client->resource_list);
308 resource->handle = client->resource_handle++;
309 spin_unlock_irqrestore(&client->lock, flags);
310}
311
312static int
313release_client_resource(struct client *client, u32 handle,
314 struct client_resource **resource)
315{
316 struct client_resource *r;
317 unsigned long flags;
318
319 spin_lock_irqsave(&client->lock, flags);
320 list_for_each_entry(r, &client->resource_list, link) {
321 if (r->handle == handle) {
322 list_del(&r->link);
323 break;
324 }
325 }
326 spin_unlock_irqrestore(&client->lock, flags);
327
328 if (&r->link == &client->resource_list)
329 return -EINVAL;
330
331 if (resource)
332 *resource = r;
333 else
334 r->release(client, r);
335
336 return 0;
337}
338
339static void
340release_transaction(struct client *client, struct client_resource *resource)
341{
342 struct response *response =
343 container_of(resource, struct response, resource);
344
345 fw_cancel_transaction(client->device->card, &response->transaction);
346}
347
348static void
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500349complete_transaction(struct fw_card *card, int rcode,
350 void *payload, size_t length, void *data)
351{
352 struct response *response = data;
353 struct client *client = response->client;
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500354 unsigned long flags;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500355
356 if (length < response->response.length)
357 response->response.length = length;
358 if (rcode == RCODE_COMPLETE)
359 memcpy(response->response.data, payload,
360 response->response.length);
361
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500362 spin_lock_irqsave(&client->lock, flags);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400363 list_del(&response->resource.link);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500364 spin_unlock_irqrestore(&client->lock, flags);
365
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500366 response->response.type = FW_CDEV_EVENT_RESPONSE;
367 response->response.rcode = rcode;
368 queue_event(client, &response->event,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400369 &response->response, sizeof(response->response),
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500370 response->response.data, response->response.length);
371}
372
Jeff Garzik350958f2007-05-27 07:09:18 -0400373static int ioctl_send_request(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500374{
375 struct fw_device *device = client->device;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400376 struct fw_cdev_send_request *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500377 struct response *response;
378
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500379 /* What is the biggest size we'll accept, really? */
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400380 if (request->length > 4096)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500381 return -EINVAL;
382
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400383 response = kmalloc(sizeof(*response) + request->length, GFP_KERNEL);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500384 if (response == NULL)
385 return -ENOMEM;
386
387 response->client = client;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400388 response->response.length = request->length;
389 response->response.closure = request->closure;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500390
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400391 if (request->data &&
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500392 copy_from_user(response->response.data,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400393 u64_to_uptr(request->data), request->length)) {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500394 kfree(response);
395 return -EFAULT;
396 }
397
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400398 response->resource.release = release_transaction;
399 add_client_resource(client, &response->resource);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500400
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500401 fw_send_request(device->card, &response->transaction,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400402 request->tcode & 0x1f,
Stefan Richter907293d2007-01-23 21:11:43 +0100403 device->node->node_id,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400404 request->generation,
Stefan Richterf1397492007-06-10 21:31:36 +0200405 device->max_speed,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400406 request->offset,
407 response->response.data, request->length,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500408 complete_transaction, response);
409
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400410 if (request->data)
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400411 return sizeof(request) + request->length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500412 else
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400413 return sizeof(request);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500414}
415
416struct address_handler {
417 struct fw_address_handler handler;
418 __u64 closure;
419 struct client *client;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400420 struct client_resource resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500421};
422
423struct request {
424 struct fw_request *request;
425 void *data;
426 size_t length;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400427 struct client_resource resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500428};
429
430struct request_event {
431 struct event event;
432 struct fw_cdev_event_request request;
433};
434
435static void
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400436release_request(struct client *client, struct client_resource *resource)
437{
438 struct request *request =
439 container_of(resource, struct request, resource);
440
441 fw_send_response(client->device->card, request->request,
442 RCODE_CONFLICT_ERROR);
443 kfree(request);
444}
445
446static void
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500447handle_request(struct fw_card *card, struct fw_request *r,
448 int tcode, int destination, int source,
449 int generation, int speed,
450 unsigned long long offset,
451 void *payload, size_t length, void *callback_data)
452{
453 struct address_handler *handler = callback_data;
454 struct request *request;
455 struct request_event *e;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500456 struct client *client = handler->client;
457
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400458 request = kmalloc(sizeof(*request), GFP_ATOMIC);
459 e = kmalloc(sizeof(*e), GFP_ATOMIC);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500460 if (request == NULL || e == NULL) {
461 kfree(request);
462 kfree(e);
463 fw_send_response(card, r, RCODE_CONFLICT_ERROR);
464 return;
465 }
466
467 request->request = r;
468 request->data = payload;
469 request->length = length;
470
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400471 request->resource.release = release_request;
472 add_client_resource(client, &request->resource);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500473
474 e->request.type = FW_CDEV_EVENT_REQUEST;
475 e->request.tcode = tcode;
476 e->request.offset = offset;
477 e->request.length = length;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400478 e->request.handle = request->resource.handle;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500479 e->request.closure = handler->closure;
480
481 queue_event(client, &e->event,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400482 &e->request, sizeof(e->request), payload, length);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500483}
484
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400485static void
486release_address_handler(struct client *client,
487 struct client_resource *resource)
488{
489 struct address_handler *handler =
490 container_of(resource, struct address_handler, resource);
491
492 fw_core_remove_address_handler(&handler->handler);
493 kfree(handler);
494}
495
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400496static int ioctl_allocate(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500497{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400498 struct fw_cdev_allocate *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500499 struct address_handler *handler;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500500 struct fw_address_region region;
501
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400502 handler = kmalloc(sizeof(*handler), GFP_KERNEL);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500503 if (handler == NULL)
504 return -ENOMEM;
505
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400506 region.start = request->offset;
507 region.end = request->offset + request->length;
508 handler->handler.length = request->length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500509 handler->handler.address_callback = handle_request;
510 handler->handler.callback_data = handler;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400511 handler->closure = request->closure;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500512 handler->client = client;
513
514 if (fw_core_add_address_handler(&handler->handler, &region) < 0) {
515 kfree(handler);
516 return -EBUSY;
517 }
518
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400519 handler->resource.release = release_address_handler;
520 add_client_resource(client, &handler->resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400521 request->handle = handler->resource.handle;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500522
523 return 0;
524}
525
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400526static int ioctl_deallocate(struct client *client, void *buffer)
Kristian Høgsberg94723162007-03-14 17:34:55 -0400527{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400528 struct fw_cdev_deallocate *request = buffer;
Kristian Høgsberg94723162007-03-14 17:34:55 -0400529
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400530 return release_client_resource(client, request->handle, NULL);
Kristian Høgsberg94723162007-03-14 17:34:55 -0400531}
532
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400533static int ioctl_send_response(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500534{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400535 struct fw_cdev_send_response *request = buffer;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400536 struct client_resource *resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500537 struct request *r;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500538
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400539 if (release_client_resource(client, request->handle, &resource) < 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500540 return -EINVAL;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400541 r = container_of(resource, struct request, resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400542 if (request->length < r->length)
543 r->length = request->length;
544 if (copy_from_user(r->data, u64_to_uptr(request->data), r->length))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500545 return -EFAULT;
546
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400547 fw_send_response(client->device->card, r->request, request->rcode);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500548 kfree(r);
549
550 return 0;
551}
552
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400553static int ioctl_initiate_bus_reset(struct client *client, void *buffer)
Kristian Høgsberg53718422007-03-07 12:12:42 -0500554{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400555 struct fw_cdev_initiate_bus_reset *request = buffer;
Kristian Høgsberg53718422007-03-07 12:12:42 -0500556 int short_reset;
557
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400558 short_reset = (request->type == FW_CDEV_SHORT_RESET);
Kristian Høgsberg53718422007-03-07 12:12:42 -0500559
560 return fw_core_initiate_bus_reset(client->device->card, short_reset);
561}
562
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200563struct descriptor {
564 struct fw_descriptor d;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400565 struct client_resource resource;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200566 u32 data[0];
567};
568
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400569static void release_descriptor(struct client *client,
570 struct client_resource *resource)
571{
572 struct descriptor *descriptor =
573 container_of(resource, struct descriptor, resource);
574
575 fw_core_remove_descriptor(&descriptor->d);
576 kfree(descriptor);
577}
578
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400579static int ioctl_add_descriptor(struct client *client, void *buffer)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200580{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400581 struct fw_cdev_add_descriptor *request = buffer;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200582 struct descriptor *descriptor;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200583 int retval;
584
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400585 if (request->length > 256)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200586 return -EINVAL;
587
588 descriptor =
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400589 kmalloc(sizeof(*descriptor) + request->length * 4, GFP_KERNEL);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200590 if (descriptor == NULL)
591 return -ENOMEM;
592
593 if (copy_from_user(descriptor->data,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400594 u64_to_uptr(request->data), request->length * 4)) {
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200595 kfree(descriptor);
596 return -EFAULT;
597 }
598
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400599 descriptor->d.length = request->length;
600 descriptor->d.immediate = request->immediate;
601 descriptor->d.key = request->key;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200602 descriptor->d.data = descriptor->data;
603
604 retval = fw_core_add_descriptor(&descriptor->d);
605 if (retval < 0) {
606 kfree(descriptor);
607 return retval;
608 }
609
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400610 descriptor->resource.release = release_descriptor;
611 add_client_resource(client, &descriptor->resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400612 request->handle = descriptor->resource.handle;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200613
614 return 0;
615}
616
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400617static int ioctl_remove_descriptor(struct client *client, void *buffer)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200618{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400619 struct fw_cdev_remove_descriptor *request = buffer;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200620
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400621 return release_client_resource(client, request->handle, NULL);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200622}
623
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500624static void
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500625iso_callback(struct fw_iso_context *context, u32 cycle,
626 size_t header_length, void *header, void *data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500627{
628 struct client *client = data;
Stefan Richter930e4b72007-08-03 20:56:31 +0200629 struct iso_interrupt *irq;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500630
Stefan Richter930e4b72007-08-03 20:56:31 +0200631 irq = kzalloc(sizeof(*irq) + header_length, GFP_ATOMIC);
632 if (irq == NULL)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500633 return;
634
Stefan Richter930e4b72007-08-03 20:56:31 +0200635 irq->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT;
636 irq->interrupt.closure = client->iso_closure;
637 irq->interrupt.cycle = cycle;
638 irq->interrupt.header_length = header_length;
639 memcpy(irq->interrupt.header, header, header_length);
640 queue_event(client, &irq->event, &irq->interrupt,
641 sizeof(irq->interrupt) + header_length, NULL, 0);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500642}
643
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400644static int ioctl_create_iso_context(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500645{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400646 struct fw_cdev_create_iso_context *request = buffer;
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400647 struct fw_iso_context *context;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500648
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400649 if (request->channel > 63)
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500650 return -EINVAL;
651
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400652 switch (request->type) {
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400653 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400654 if (request->header_size < 4 || (request->header_size & 3))
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400655 return -EINVAL;
656
657 break;
658
659 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400660 if (request->speed > SCODE_3200)
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400661 return -EINVAL;
662
663 break;
664
665 default:
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500666 return -EINVAL;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400667 }
668
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400669 context = fw_iso_context_create(client->device->card,
670 request->type,
671 request->channel,
672 request->speed,
673 request->header_size,
674 iso_callback, client);
675 if (IS_ERR(context))
676 return PTR_ERR(context);
677
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400678 client->iso_closure = request->closure;
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400679 client->iso_context = context;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500680
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400681 /* We only support one context at this time. */
682 request->handle = 0;
683
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500684 return 0;
685}
686
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400687/* Macros for decoding the iso packet control header. */
688#define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
689#define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
690#define GET_SKIP(v) (((v) >> 17) & 0x01)
691#define GET_TAG(v) (((v) >> 18) & 0x02)
692#define GET_SY(v) (((v) >> 20) & 0x04)
693#define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
694
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400695static int ioctl_queue_iso(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500696{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400697 struct fw_cdev_queue_iso *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500698 struct fw_cdev_iso_packet __user *p, *end, *next;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500699 struct fw_iso_context *ctx = client->iso_context;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200700 unsigned long payload, buffer_end, header_length;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400701 u32 control;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500702 int count;
703 struct {
704 struct fw_iso_packet packet;
705 u8 header[256];
706 } u;
707
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400708 if (ctx == NULL || request->handle != 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500709 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500710
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400711 /*
712 * If the user passes a non-NULL data pointer, has mmap()'ed
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500713 * the iso buffer, and the pointer points inside the buffer,
714 * we setup the payload pointers accordingly. Otherwise we
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500715 * set them both to 0, which will still let packets with
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500716 * payload_length == 0 through. In other words, if no packets
717 * use the indirect payload, the iso buffer need not be mapped
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400718 * and the request->data pointer is ignored.
719 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500720
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400721 payload = (unsigned long)request->data - client->vm_start;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200722 buffer_end = client->buffer.page_count << PAGE_SHIFT;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400723 if (request->data == 0 || client->buffer.pages == NULL ||
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200724 payload >= buffer_end) {
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500725 payload = 0;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200726 buffer_end = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500727 }
728
Al Viro1ccc9142007-10-14 19:34:40 +0100729 p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(request->packets);
730
731 if (!access_ok(VERIFY_READ, p, request->size))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500732 return -EFAULT;
733
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400734 end = (void __user *)p + request->size;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500735 count = 0;
736 while (p < end) {
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400737 if (get_user(control, &p->control))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500738 return -EFAULT;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400739 u.packet.payload_length = GET_PAYLOAD_LENGTH(control);
740 u.packet.interrupt = GET_INTERRUPT(control);
741 u.packet.skip = GET_SKIP(control);
742 u.packet.tag = GET_TAG(control);
743 u.packet.sy = GET_SY(control);
744 u.packet.header_length = GET_HEADER_LENGTH(control);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500745
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500746 if (ctx->type == FW_ISO_CONTEXT_TRANSMIT) {
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500747 header_length = u.packet.header_length;
748 } else {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400749 /*
750 * We require that header_length is a multiple of
751 * the fixed header size, ctx->header_size.
752 */
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500753 if (ctx->header_size == 0) {
754 if (u.packet.header_length > 0)
755 return -EINVAL;
756 } else if (u.packet.header_length % ctx->header_size != 0) {
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500757 return -EINVAL;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500758 }
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500759 header_length = 0;
760 }
761
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500762 next = (struct fw_cdev_iso_packet __user *)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500763 &p->header[header_length / 4];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500764 if (next > end)
765 return -EINVAL;
766 if (__copy_from_user
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500767 (u.packet.header, p->header, header_length))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500768 return -EFAULT;
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -0500769 if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500770 u.packet.header_length + u.packet.payload_length > 0)
771 return -EINVAL;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200772 if (payload + u.packet.payload_length > buffer_end)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500773 return -EINVAL;
774
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500775 if (fw_iso_context_queue(ctx, &u.packet,
776 &client->buffer, payload))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500777 break;
778
779 p = next;
780 payload += u.packet.payload_length;
781 count++;
782 }
783
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400784 request->size -= uptr_to_u64(p) - request->packets;
785 request->packets = uptr_to_u64(p);
786 request->data = client->vm_start + payload;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500787
788 return count;
789}
790
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400791static int ioctl_start_iso(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500792{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400793 struct fw_cdev_start_iso *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500794
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400795 if (request->handle != 0)
796 return -EINVAL;
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400797 if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE) {
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400798 if (request->tags == 0 || request->tags > 15)
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400799 return -EINVAL;
800
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400801 if (request->sync > 15)
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400802 return -EINVAL;
803 }
804
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400805 return fw_iso_context_start(client->iso_context, request->cycle,
806 request->sync, request->tags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500807}
808
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400809static int ioctl_stop_iso(struct client *client, void *buffer)
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500810{
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400811 struct fw_cdev_stop_iso *request = buffer;
812
813 if (request->handle != 0)
814 return -EINVAL;
815
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500816 return fw_iso_context_stop(client->iso_context);
817}
818
Stefan Richtera64408b2007-09-29 10:41:58 +0200819static int ioctl_get_cycle_timer(struct client *client, void *buffer)
820{
821 struct fw_cdev_get_cycle_timer *request = buffer;
822 struct fw_card *card = client->device->card;
823 unsigned long long bus_time;
824 struct timeval tv;
825 unsigned long flags;
826
827 preempt_disable();
828 local_irq_save(flags);
829
830 bus_time = card->driver->get_bus_time(card);
831 do_gettimeofday(&tv);
832
833 local_irq_restore(flags);
834 preempt_enable();
835
836 request->local_time = tv.tv_sec * 1000000ULL + tv.tv_usec;
837 request->cycle_timer = bus_time & 0xffffffff;
838 return 0;
839}
840
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400841static int (* const ioctl_handlers[])(struct client *client, void *buffer) = {
842 ioctl_get_info,
843 ioctl_send_request,
844 ioctl_allocate,
845 ioctl_deallocate,
846 ioctl_send_response,
847 ioctl_initiate_bus_reset,
848 ioctl_add_descriptor,
849 ioctl_remove_descriptor,
850 ioctl_create_iso_context,
851 ioctl_queue_iso,
852 ioctl_start_iso,
853 ioctl_stop_iso,
Stefan Richtera64408b2007-09-29 10:41:58 +0200854 ioctl_get_cycle_timer,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400855};
856
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500857static int
858dispatch_ioctl(struct client *client, unsigned int cmd, void __user *arg)
859{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400860 char buffer[256];
861 int retval;
862
863 if (_IOC_TYPE(cmd) != '#' ||
864 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500865 return -EINVAL;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400866
867 if (_IOC_DIR(cmd) & _IOC_WRITE) {
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400868 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400869 copy_from_user(buffer, arg, _IOC_SIZE(cmd)))
870 return -EFAULT;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500871 }
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400872
873 retval = ioctl_handlers[_IOC_NR(cmd)](client, buffer);
874 if (retval < 0)
875 return retval;
876
877 if (_IOC_DIR(cmd) & _IOC_READ) {
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400878 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400879 copy_to_user(arg, buffer, _IOC_SIZE(cmd)))
880 return -EFAULT;
881 }
882
883 return 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500884}
885
886static long
887fw_device_op_ioctl(struct file *file,
888 unsigned int cmd, unsigned long arg)
889{
890 struct client *client = file->private_data;
891
892 return dispatch_ioctl(client, cmd, (void __user *) arg);
893}
894
895#ifdef CONFIG_COMPAT
896static long
897fw_device_op_compat_ioctl(struct file *file,
898 unsigned int cmd, unsigned long arg)
899{
900 struct client *client = file->private_data;
901
902 return dispatch_ioctl(client, cmd, compat_ptr(arg));
903}
904#endif
905
906static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
907{
908 struct client *client = file->private_data;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500909 enum dma_data_direction direction;
910 unsigned long size;
911 int page_count, retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500912
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500913 /* FIXME: We could support multiple buffers, but we don't. */
914 if (client->buffer.pages != NULL)
915 return -EBUSY;
916
917 if (!(vma->vm_flags & VM_SHARED))
918 return -EINVAL;
919
920 if (vma->vm_start & ~PAGE_MASK)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500921 return -EINVAL;
922
923 client->vm_start = vma->vm_start;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500924 size = vma->vm_end - vma->vm_start;
925 page_count = size >> PAGE_SHIFT;
926 if (size & ~PAGE_MASK)
927 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500928
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500929 if (vma->vm_flags & VM_WRITE)
930 direction = DMA_TO_DEVICE;
931 else
932 direction = DMA_FROM_DEVICE;
933
934 retval = fw_iso_buffer_init(&client->buffer, client->device->card,
935 page_count, direction);
936 if (retval < 0)
937 return retval;
938
939 retval = fw_iso_buffer_map(&client->buffer, vma);
940 if (retval < 0)
941 fw_iso_buffer_destroy(&client->buffer, client->device->card);
942
943 return retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500944}
945
946static int fw_device_op_release(struct inode *inode, struct file *file)
947{
948 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500949 struct event *e, *next_e;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400950 struct client_resource *r, *next_r;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500951 unsigned long flags;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500952
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500953 if (client->buffer.pages)
954 fw_iso_buffer_destroy(&client->buffer, client->device->card);
955
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500956 if (client->iso_context)
957 fw_iso_context_destroy(client->iso_context);
958
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400959 list_for_each_entry_safe(r, next_r, &client->resource_list, link)
960 r->release(client, r);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200961
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400962 /*
963 * FIXME: We should wait for the async tasklets to stop
964 * running before freeing the memory.
965 */
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500966
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500967 list_for_each_entry_safe(e, next_e, &client->event_list, link)
968 kfree(e);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500969
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500970 spin_lock_irqsave(&client->device->card->lock, flags);
971 list_del(&client->link);
972 spin_unlock_irqrestore(&client->device->card->lock, flags);
973
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500974 fw_device_put(client->device);
975 kfree(client);
976
977 return 0;
978}
979
980static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
981{
982 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500983 unsigned int mask = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500984
985 poll_wait(file, &client->wait, pt);
986
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500987 if (fw_device_is_shutdown(client->device))
988 mask |= POLLHUP | POLLERR;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500989 if (!list_empty(&client->event_list))
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500990 mask |= POLLIN | POLLRDNORM;
991
992 return mask;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500993}
994
Stefan Richter21ebcd12007-01-14 15:29:07 +0100995const struct file_operations fw_device_ops = {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500996 .owner = THIS_MODULE,
997 .open = fw_device_op_open,
998 .read = fw_device_op_read,
999 .unlocked_ioctl = fw_device_op_ioctl,
1000 .poll = fw_device_op_poll,
1001 .release = fw_device_op_release,
1002 .mmap = fw_device_op_mmap,
1003
1004#ifdef CONFIG_COMPAT
Stefan Richter5af4e5e2007-01-21 20:45:32 +01001005 .compat_ioctl = fw_device_op_compat_ioctl,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001006#endif
1007};