blob: 7e73cbaa4121047ffe6eb7c5f137357e0739c58e [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
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500112 device = fw_device_from_devt(inode->i_rdev);
113 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);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500117 if (client == NULL)
118 return -ENOMEM;
119
120 client->device = fw_device_get(device);
121 INIT_LIST_HEAD(&client->event_list);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400122 INIT_LIST_HEAD(&client->resource_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500123 spin_lock_init(&client->lock);
124 init_waitqueue_head(&client->wait);
125
126 file->private_data = client;
127
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500128 spin_lock_irqsave(&device->card->lock, flags);
129 list_add_tail(&client->link, &device->client_list);
130 spin_unlock_irqrestore(&device->card->lock, flags);
131
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500132 return 0;
133}
134
135static void queue_event(struct client *client, struct event *event,
136 void *data0, size_t size0, void *data1, size_t size1)
137{
138 unsigned long flags;
139
140 event->v[0].data = data0;
141 event->v[0].size = size0;
142 event->v[1].data = data1;
143 event->v[1].size = size1;
144
145 spin_lock_irqsave(&client->lock, flags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500146 list_add_tail(&event->link, &client->event_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500147 spin_unlock_irqrestore(&client->lock, flags);
Jay Fenlason83431cb2007-10-08 17:00:29 -0400148
149 wake_up_interruptible(&client->wait);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500150}
151
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500152static int
153dequeue_event(struct client *client, char __user *buffer, size_t count)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500154{
155 unsigned long flags;
156 struct event *event;
157 size_t size, total;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500158 int i, retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500159
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500160 retval = wait_event_interruptible(client->wait,
161 !list_empty(&client->event_list) ||
162 fw_device_is_shutdown(client->device));
163 if (retval < 0)
164 return retval;
165
166 if (list_empty(&client->event_list) &&
167 fw_device_is_shutdown(client->device))
168 return -ENODEV;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500169
170 spin_lock_irqsave(&client->lock, flags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500171 event = container_of(client->event_list.next, struct event, link);
172 list_del(&event->link);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500173 spin_unlock_irqrestore(&client->lock, flags);
174
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500175 total = 0;
176 for (i = 0; i < ARRAY_SIZE(event->v) && total < count; i++) {
177 size = min(event->v[i].size, count - total);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500178 if (copy_to_user(buffer + total, event->v[i].data, size)) {
179 retval = -EFAULT;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500180 goto out;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500181 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500182 total += size;
183 }
184 retval = total;
185
186 out:
187 kfree(event);
188
189 return retval;
190}
191
192static ssize_t
193fw_device_op_read(struct file *file,
194 char __user *buffer, size_t count, loff_t *offset)
195{
196 struct client *client = file->private_data;
197
198 return dequeue_event(client, buffer, count);
199}
200
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500201static void
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500202fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400203 struct client *client)
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500204{
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400205 struct fw_card *card = client->device->card;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500206
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400207 event->closure = client->bus_reset_closure;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500208 event->type = FW_CDEV_EVENT_BUS_RESET;
Stefan Richtercf5a56a2008-01-24 01:53:51 +0100209 event->generation = client->device->generation;
Stefan Richterb5d2a5e2008-01-25 18:57:41 +0100210 smp_rmb(); /* node_id must not be older than generation */
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400211 event->node_id = client->device->node_id;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500212 event->local_node_id = card->local_node->node_id;
213 event->bm_node_id = 0; /* FIXME: We don't track the BM. */
214 event->irm_node_id = card->irm_node->node_id;
215 event->root_node_id = card->root_node->node_id;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500216}
217
218static void
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500219for_each_client(struct fw_device *device,
220 void (*callback)(struct client *client))
221{
222 struct fw_card *card = device->card;
223 struct client *c;
224 unsigned long flags;
225
226 spin_lock_irqsave(&card->lock, flags);
227
228 list_for_each_entry(c, &device->client_list, link)
229 callback(c);
230
231 spin_unlock_irqrestore(&card->lock, flags);
232}
233
234static void
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500235queue_bus_reset_event(struct client *client)
236{
237 struct bus_reset *bus_reset;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500238
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400239 bus_reset = kzalloc(sizeof(*bus_reset), GFP_ATOMIC);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500240 if (bus_reset == NULL) {
241 fw_notify("Out of memory when allocating bus reset event\n");
242 return;
243 }
244
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400245 fill_bus_reset_event(&bus_reset->reset, client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500246
247 queue_event(client, &bus_reset->event,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400248 &bus_reset->reset, sizeof(bus_reset->reset), NULL, 0);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500249}
250
251void fw_device_cdev_update(struct fw_device *device)
252{
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500253 for_each_client(device, queue_bus_reset_event);
254}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500255
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500256static void wake_up_client(struct client *client)
257{
258 wake_up_interruptible(&client->wait);
259}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500260
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500261void fw_device_cdev_remove(struct fw_device *device)
262{
263 for_each_client(device, wake_up_client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500264}
265
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400266static int ioctl_get_info(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500267{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400268 struct fw_cdev_get_info *get_info = buffer;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500269 struct fw_cdev_event_bus_reset bus_reset;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500270
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400271 client->version = get_info->version;
272 get_info->version = FW_CDEV_VERSION;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500273
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400274 if (get_info->rom != 0) {
275 void __user *uptr = u64_to_uptr(get_info->rom);
276 size_t want = get_info->rom_length;
Stefan Richterd84702a2007-03-20 19:42:15 +0100277 size_t have = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500278
Stefan Richterd84702a2007-03-20 19:42:15 +0100279 if (copy_to_user(uptr, client->device->config_rom,
280 min(want, have)))
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500281 return -EFAULT;
282 }
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400283 get_info->rom_length = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500284
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400285 client->bus_reset_closure = get_info->bus_reset_closure;
286 if (get_info->bus_reset != 0) {
287 void __user *uptr = u64_to_uptr(get_info->bus_reset);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500288
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400289 fill_bus_reset_event(&bus_reset, client);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400290 if (copy_to_user(uptr, &bus_reset, sizeof(bus_reset)))
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500291 return -EFAULT;
292 }
293
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400294 get_info->card = client->device->card->index;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500295
296 return 0;
297}
298
299static void
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400300add_client_resource(struct client *client, struct client_resource *resource)
301{
302 unsigned long flags;
303
304 spin_lock_irqsave(&client->lock, flags);
305 list_add_tail(&resource->link, &client->resource_list);
306 resource->handle = client->resource_handle++;
307 spin_unlock_irqrestore(&client->lock, flags);
308}
309
310static int
311release_client_resource(struct client *client, u32 handle,
312 struct client_resource **resource)
313{
314 struct client_resource *r;
315 unsigned long flags;
316
317 spin_lock_irqsave(&client->lock, flags);
318 list_for_each_entry(r, &client->resource_list, link) {
319 if (r->handle == handle) {
320 list_del(&r->link);
321 break;
322 }
323 }
324 spin_unlock_irqrestore(&client->lock, flags);
325
326 if (&r->link == &client->resource_list)
327 return -EINVAL;
328
329 if (resource)
330 *resource = r;
331 else
332 r->release(client, r);
333
334 return 0;
335}
336
337static void
338release_transaction(struct client *client, struct client_resource *resource)
339{
340 struct response *response =
341 container_of(resource, struct response, resource);
342
343 fw_cancel_transaction(client->device->card, &response->transaction);
344}
345
346static void
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500347complete_transaction(struct fw_card *card, int rcode,
348 void *payload, size_t length, void *data)
349{
350 struct response *response = data;
351 struct client *client = response->client;
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500352 unsigned long flags;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500353
354 if (length < response->response.length)
355 response->response.length = length;
356 if (rcode == RCODE_COMPLETE)
357 memcpy(response->response.data, payload,
358 response->response.length);
359
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500360 spin_lock_irqsave(&client->lock, flags);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400361 list_del(&response->resource.link);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500362 spin_unlock_irqrestore(&client->lock, flags);
363
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500364 response->response.type = FW_CDEV_EVENT_RESPONSE;
365 response->response.rcode = rcode;
366 queue_event(client, &response->event,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400367 &response->response, sizeof(response->response),
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500368 response->response.data, response->response.length);
369}
370
Jeff Garzik350958f2007-05-27 07:09:18 -0400371static int ioctl_send_request(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500372{
373 struct fw_device *device = client->device;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400374 struct fw_cdev_send_request *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500375 struct response *response;
376
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500377 /* What is the biggest size we'll accept, really? */
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400378 if (request->length > 4096)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500379 return -EINVAL;
380
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400381 response = kmalloc(sizeof(*response) + request->length, GFP_KERNEL);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500382 if (response == NULL)
383 return -ENOMEM;
384
385 response->client = client;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400386 response->response.length = request->length;
387 response->response.closure = request->closure;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500388
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400389 if (request->data &&
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500390 copy_from_user(response->response.data,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400391 u64_to_uptr(request->data), request->length)) {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500392 kfree(response);
393 return -EFAULT;
394 }
395
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400396 response->resource.release = release_transaction;
397 add_client_resource(client, &response->resource);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500398
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500399 fw_send_request(device->card, &response->transaction,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400400 request->tcode & 0x1f,
Stefan Richter907293d2007-01-23 21:11:43 +0100401 device->node->node_id,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400402 request->generation,
Stefan Richterf1397492007-06-10 21:31:36 +0200403 device->max_speed,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400404 request->offset,
405 response->response.data, request->length,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500406 complete_transaction, response);
407
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400408 if (request->data)
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400409 return sizeof(request) + request->length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500410 else
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400411 return sizeof(request);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500412}
413
414struct address_handler {
415 struct fw_address_handler handler;
416 __u64 closure;
417 struct client *client;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400418 struct client_resource resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500419};
420
421struct request {
422 struct fw_request *request;
423 void *data;
424 size_t length;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400425 struct client_resource resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500426};
427
428struct request_event {
429 struct event event;
430 struct fw_cdev_event_request request;
431};
432
433static void
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400434release_request(struct client *client, struct client_resource *resource)
435{
436 struct request *request =
437 container_of(resource, struct request, resource);
438
439 fw_send_response(client->device->card, request->request,
440 RCODE_CONFLICT_ERROR);
441 kfree(request);
442}
443
444static void
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500445handle_request(struct fw_card *card, struct fw_request *r,
446 int tcode, int destination, int source,
447 int generation, int speed,
448 unsigned long long offset,
449 void *payload, size_t length, void *callback_data)
450{
451 struct address_handler *handler = callback_data;
452 struct request *request;
453 struct request_event *e;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500454 struct client *client = handler->client;
455
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400456 request = kmalloc(sizeof(*request), GFP_ATOMIC);
457 e = kmalloc(sizeof(*e), GFP_ATOMIC);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500458 if (request == NULL || e == NULL) {
459 kfree(request);
460 kfree(e);
461 fw_send_response(card, r, RCODE_CONFLICT_ERROR);
462 return;
463 }
464
465 request->request = r;
466 request->data = payload;
467 request->length = length;
468
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400469 request->resource.release = release_request;
470 add_client_resource(client, &request->resource);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500471
472 e->request.type = FW_CDEV_EVENT_REQUEST;
473 e->request.tcode = tcode;
474 e->request.offset = offset;
475 e->request.length = length;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400476 e->request.handle = request->resource.handle;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500477 e->request.closure = handler->closure;
478
479 queue_event(client, &e->event,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400480 &e->request, sizeof(e->request), payload, length);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500481}
482
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400483static void
484release_address_handler(struct client *client,
485 struct client_resource *resource)
486{
487 struct address_handler *handler =
488 container_of(resource, struct address_handler, resource);
489
490 fw_core_remove_address_handler(&handler->handler);
491 kfree(handler);
492}
493
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400494static int ioctl_allocate(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500495{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400496 struct fw_cdev_allocate *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500497 struct address_handler *handler;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500498 struct fw_address_region region;
499
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400500 handler = kmalloc(sizeof(*handler), GFP_KERNEL);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500501 if (handler == NULL)
502 return -ENOMEM;
503
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400504 region.start = request->offset;
505 region.end = request->offset + request->length;
506 handler->handler.length = request->length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500507 handler->handler.address_callback = handle_request;
508 handler->handler.callback_data = handler;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400509 handler->closure = request->closure;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500510 handler->client = client;
511
512 if (fw_core_add_address_handler(&handler->handler, &region) < 0) {
513 kfree(handler);
514 return -EBUSY;
515 }
516
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400517 handler->resource.release = release_address_handler;
518 add_client_resource(client, &handler->resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400519 request->handle = handler->resource.handle;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500520
521 return 0;
522}
523
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400524static int ioctl_deallocate(struct client *client, void *buffer)
Kristian Høgsberg94723162007-03-14 17:34:55 -0400525{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400526 struct fw_cdev_deallocate *request = buffer;
Kristian Høgsberg94723162007-03-14 17:34:55 -0400527
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400528 return release_client_resource(client, request->handle, NULL);
Kristian Høgsberg94723162007-03-14 17:34:55 -0400529}
530
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400531static int ioctl_send_response(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500532{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400533 struct fw_cdev_send_response *request = buffer;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400534 struct client_resource *resource;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500535 struct request *r;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500536
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400537 if (release_client_resource(client, request->handle, &resource) < 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500538 return -EINVAL;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400539 r = container_of(resource, struct request, resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400540 if (request->length < r->length)
541 r->length = request->length;
542 if (copy_from_user(r->data, u64_to_uptr(request->data), r->length))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500543 return -EFAULT;
544
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400545 fw_send_response(client->device->card, r->request, request->rcode);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500546 kfree(r);
547
548 return 0;
549}
550
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400551static int ioctl_initiate_bus_reset(struct client *client, void *buffer)
Kristian Høgsberg53718422007-03-07 12:12:42 -0500552{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400553 struct fw_cdev_initiate_bus_reset *request = buffer;
Kristian Høgsberg53718422007-03-07 12:12:42 -0500554 int short_reset;
555
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400556 short_reset = (request->type == FW_CDEV_SHORT_RESET);
Kristian Høgsberg53718422007-03-07 12:12:42 -0500557
558 return fw_core_initiate_bus_reset(client->device->card, short_reset);
559}
560
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200561struct descriptor {
562 struct fw_descriptor d;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400563 struct client_resource resource;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200564 u32 data[0];
565};
566
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400567static void release_descriptor(struct client *client,
568 struct client_resource *resource)
569{
570 struct descriptor *descriptor =
571 container_of(resource, struct descriptor, resource);
572
573 fw_core_remove_descriptor(&descriptor->d);
574 kfree(descriptor);
575}
576
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400577static int ioctl_add_descriptor(struct client *client, void *buffer)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200578{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400579 struct fw_cdev_add_descriptor *request = buffer;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200580 struct descriptor *descriptor;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200581 int retval;
582
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400583 if (request->length > 256)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200584 return -EINVAL;
585
586 descriptor =
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400587 kmalloc(sizeof(*descriptor) + request->length * 4, GFP_KERNEL);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200588 if (descriptor == NULL)
589 return -ENOMEM;
590
591 if (copy_from_user(descriptor->data,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400592 u64_to_uptr(request->data), request->length * 4)) {
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200593 kfree(descriptor);
594 return -EFAULT;
595 }
596
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400597 descriptor->d.length = request->length;
598 descriptor->d.immediate = request->immediate;
599 descriptor->d.key = request->key;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200600 descriptor->d.data = descriptor->data;
601
602 retval = fw_core_add_descriptor(&descriptor->d);
603 if (retval < 0) {
604 kfree(descriptor);
605 return retval;
606 }
607
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400608 descriptor->resource.release = release_descriptor;
609 add_client_resource(client, &descriptor->resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400610 request->handle = descriptor->resource.handle;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200611
612 return 0;
613}
614
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400615static int ioctl_remove_descriptor(struct client *client, void *buffer)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200616{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400617 struct fw_cdev_remove_descriptor *request = buffer;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200618
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400619 return release_client_resource(client, request->handle, NULL);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200620}
621
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500622static void
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500623iso_callback(struct fw_iso_context *context, u32 cycle,
624 size_t header_length, void *header, void *data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500625{
626 struct client *client = data;
Stefan Richter930e4b72007-08-03 20:56:31 +0200627 struct iso_interrupt *irq;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500628
Stefan Richter930e4b72007-08-03 20:56:31 +0200629 irq = kzalloc(sizeof(*irq) + header_length, GFP_ATOMIC);
630 if (irq == NULL)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500631 return;
632
Stefan Richter930e4b72007-08-03 20:56:31 +0200633 irq->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT;
634 irq->interrupt.closure = client->iso_closure;
635 irq->interrupt.cycle = cycle;
636 irq->interrupt.header_length = header_length;
637 memcpy(irq->interrupt.header, header, header_length);
638 queue_event(client, &irq->event, &irq->interrupt,
639 sizeof(irq->interrupt) + header_length, NULL, 0);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500640}
641
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400642static int ioctl_create_iso_context(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500643{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400644 struct fw_cdev_create_iso_context *request = buffer;
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400645 struct fw_iso_context *context;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500646
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400647 if (request->channel > 63)
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500648 return -EINVAL;
649
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400650 switch (request->type) {
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400651 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400652 if (request->header_size < 4 || (request->header_size & 3))
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400653 return -EINVAL;
654
655 break;
656
657 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400658 if (request->speed > SCODE_3200)
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400659 return -EINVAL;
660
661 break;
662
663 default:
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500664 return -EINVAL;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400665 }
666
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400667 context = fw_iso_context_create(client->device->card,
668 request->type,
669 request->channel,
670 request->speed,
671 request->header_size,
672 iso_callback, client);
673 if (IS_ERR(context))
674 return PTR_ERR(context);
675
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400676 client->iso_closure = request->closure;
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400677 client->iso_context = context;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500678
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400679 /* We only support one context at this time. */
680 request->handle = 0;
681
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500682 return 0;
683}
684
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400685/* Macros for decoding the iso packet control header. */
686#define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
687#define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
688#define GET_SKIP(v) (((v) >> 17) & 0x01)
689#define GET_TAG(v) (((v) >> 18) & 0x02)
690#define GET_SY(v) (((v) >> 20) & 0x04)
691#define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
692
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400693static int ioctl_queue_iso(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500694{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400695 struct fw_cdev_queue_iso *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500696 struct fw_cdev_iso_packet __user *p, *end, *next;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500697 struct fw_iso_context *ctx = client->iso_context;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200698 unsigned long payload, buffer_end, header_length;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400699 u32 control;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500700 int count;
701 struct {
702 struct fw_iso_packet packet;
703 u8 header[256];
704 } u;
705
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400706 if (ctx == NULL || request->handle != 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500707 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500708
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400709 /*
710 * If the user passes a non-NULL data pointer, has mmap()'ed
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500711 * the iso buffer, and the pointer points inside the buffer,
712 * we setup the payload pointers accordingly. Otherwise we
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500713 * set them both to 0, which will still let packets with
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500714 * payload_length == 0 through. In other words, if no packets
715 * use the indirect payload, the iso buffer need not be mapped
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400716 * and the request->data pointer is ignored.
717 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500718
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400719 payload = (unsigned long)request->data - client->vm_start;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200720 buffer_end = client->buffer.page_count << PAGE_SHIFT;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400721 if (request->data == 0 || client->buffer.pages == NULL ||
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200722 payload >= buffer_end) {
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500723 payload = 0;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200724 buffer_end = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500725 }
726
Al Viro1ccc9142007-10-14 19:34:40 +0100727 p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(request->packets);
728
729 if (!access_ok(VERIFY_READ, p, request->size))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500730 return -EFAULT;
731
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400732 end = (void __user *)p + request->size;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500733 count = 0;
734 while (p < end) {
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400735 if (get_user(control, &p->control))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500736 return -EFAULT;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400737 u.packet.payload_length = GET_PAYLOAD_LENGTH(control);
738 u.packet.interrupt = GET_INTERRUPT(control);
739 u.packet.skip = GET_SKIP(control);
740 u.packet.tag = GET_TAG(control);
741 u.packet.sy = GET_SY(control);
742 u.packet.header_length = GET_HEADER_LENGTH(control);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500743
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500744 if (ctx->type == FW_ISO_CONTEXT_TRANSMIT) {
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500745 header_length = u.packet.header_length;
746 } else {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400747 /*
748 * We require that header_length is a multiple of
749 * the fixed header size, ctx->header_size.
750 */
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500751 if (ctx->header_size == 0) {
752 if (u.packet.header_length > 0)
753 return -EINVAL;
754 } else if (u.packet.header_length % ctx->header_size != 0) {
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500755 return -EINVAL;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500756 }
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500757 header_length = 0;
758 }
759
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500760 next = (struct fw_cdev_iso_packet __user *)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500761 &p->header[header_length / 4];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500762 if (next > end)
763 return -EINVAL;
764 if (__copy_from_user
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500765 (u.packet.header, p->header, header_length))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500766 return -EFAULT;
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -0500767 if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500768 u.packet.header_length + u.packet.payload_length > 0)
769 return -EINVAL;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200770 if (payload + u.packet.payload_length > buffer_end)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500771 return -EINVAL;
772
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500773 if (fw_iso_context_queue(ctx, &u.packet,
774 &client->buffer, payload))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500775 break;
776
777 p = next;
778 payload += u.packet.payload_length;
779 count++;
780 }
781
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400782 request->size -= uptr_to_u64(p) - request->packets;
783 request->packets = uptr_to_u64(p);
784 request->data = client->vm_start + payload;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500785
786 return count;
787}
788
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400789static int ioctl_start_iso(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500790{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400791 struct fw_cdev_start_iso *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500792
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400793 if (request->handle != 0)
794 return -EINVAL;
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400795 if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE) {
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400796 if (request->tags == 0 || request->tags > 15)
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400797 return -EINVAL;
798
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400799 if (request->sync > 15)
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400800 return -EINVAL;
801 }
802
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400803 return fw_iso_context_start(client->iso_context, request->cycle,
804 request->sync, request->tags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500805}
806
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400807static int ioctl_stop_iso(struct client *client, void *buffer)
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500808{
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400809 struct fw_cdev_stop_iso *request = buffer;
810
811 if (request->handle != 0)
812 return -EINVAL;
813
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500814 return fw_iso_context_stop(client->iso_context);
815}
816
Stefan Richtera64408b2007-09-29 10:41:58 +0200817static int ioctl_get_cycle_timer(struct client *client, void *buffer)
818{
819 struct fw_cdev_get_cycle_timer *request = buffer;
820 struct fw_card *card = client->device->card;
821 unsigned long long bus_time;
822 struct timeval tv;
823 unsigned long flags;
824
825 preempt_disable();
826 local_irq_save(flags);
827
828 bus_time = card->driver->get_bus_time(card);
829 do_gettimeofday(&tv);
830
831 local_irq_restore(flags);
832 preempt_enable();
833
834 request->local_time = tv.tv_sec * 1000000ULL + tv.tv_usec;
835 request->cycle_timer = bus_time & 0xffffffff;
836 return 0;
837}
838
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400839static int (* const ioctl_handlers[])(struct client *client, void *buffer) = {
840 ioctl_get_info,
841 ioctl_send_request,
842 ioctl_allocate,
843 ioctl_deallocate,
844 ioctl_send_response,
845 ioctl_initiate_bus_reset,
846 ioctl_add_descriptor,
847 ioctl_remove_descriptor,
848 ioctl_create_iso_context,
849 ioctl_queue_iso,
850 ioctl_start_iso,
851 ioctl_stop_iso,
Stefan Richtera64408b2007-09-29 10:41:58 +0200852 ioctl_get_cycle_timer,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400853};
854
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500855static int
856dispatch_ioctl(struct client *client, unsigned int cmd, void __user *arg)
857{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400858 char buffer[256];
859 int retval;
860
861 if (_IOC_TYPE(cmd) != '#' ||
862 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500863 return -EINVAL;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400864
865 if (_IOC_DIR(cmd) & _IOC_WRITE) {
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400866 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400867 copy_from_user(buffer, arg, _IOC_SIZE(cmd)))
868 return -EFAULT;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500869 }
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400870
871 retval = ioctl_handlers[_IOC_NR(cmd)](client, buffer);
872 if (retval < 0)
873 return retval;
874
875 if (_IOC_DIR(cmd) & _IOC_READ) {
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400876 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400877 copy_to_user(arg, buffer, _IOC_SIZE(cmd)))
878 return -EFAULT;
879 }
880
881 return 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500882}
883
884static long
885fw_device_op_ioctl(struct file *file,
886 unsigned int cmd, unsigned long arg)
887{
888 struct client *client = file->private_data;
889
890 return dispatch_ioctl(client, cmd, (void __user *) arg);
891}
892
893#ifdef CONFIG_COMPAT
894static long
895fw_device_op_compat_ioctl(struct file *file,
896 unsigned int cmd, unsigned long arg)
897{
898 struct client *client = file->private_data;
899
900 return dispatch_ioctl(client, cmd, compat_ptr(arg));
901}
902#endif
903
904static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
905{
906 struct client *client = file->private_data;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500907 enum dma_data_direction direction;
908 unsigned long size;
909 int page_count, retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500910
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500911 /* FIXME: We could support multiple buffers, but we don't. */
912 if (client->buffer.pages != NULL)
913 return -EBUSY;
914
915 if (!(vma->vm_flags & VM_SHARED))
916 return -EINVAL;
917
918 if (vma->vm_start & ~PAGE_MASK)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500919 return -EINVAL;
920
921 client->vm_start = vma->vm_start;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500922 size = vma->vm_end - vma->vm_start;
923 page_count = size >> PAGE_SHIFT;
924 if (size & ~PAGE_MASK)
925 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500926
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500927 if (vma->vm_flags & VM_WRITE)
928 direction = DMA_TO_DEVICE;
929 else
930 direction = DMA_FROM_DEVICE;
931
932 retval = fw_iso_buffer_init(&client->buffer, client->device->card,
933 page_count, direction);
934 if (retval < 0)
935 return retval;
936
937 retval = fw_iso_buffer_map(&client->buffer, vma);
938 if (retval < 0)
939 fw_iso_buffer_destroy(&client->buffer, client->device->card);
940
941 return retval;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500942}
943
944static int fw_device_op_release(struct inode *inode, struct file *file)
945{
946 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500947 struct event *e, *next_e;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400948 struct client_resource *r, *next_r;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500949 unsigned long flags;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500950
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500951 if (client->buffer.pages)
952 fw_iso_buffer_destroy(&client->buffer, client->device->card);
953
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500954 if (client->iso_context)
955 fw_iso_context_destroy(client->iso_context);
956
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400957 list_for_each_entry_safe(r, next_r, &client->resource_list, link)
958 r->release(client, r);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200959
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400960 /*
961 * FIXME: We should wait for the async tasklets to stop
962 * running before freeing the memory.
963 */
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500964
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500965 list_for_each_entry_safe(e, next_e, &client->event_list, link)
966 kfree(e);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500967
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500968 spin_lock_irqsave(&client->device->card->lock, flags);
969 list_del(&client->link);
970 spin_unlock_irqrestore(&client->device->card->lock, flags);
971
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500972 fw_device_put(client->device);
973 kfree(client);
974
975 return 0;
976}
977
978static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
979{
980 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500981 unsigned int mask = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500982
983 poll_wait(file, &client->wait, pt);
984
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500985 if (fw_device_is_shutdown(client->device))
986 mask |= POLLHUP | POLLERR;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500987 if (!list_empty(&client->event_list))
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500988 mask |= POLLIN | POLLRDNORM;
989
990 return mask;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500991}
992
Stefan Richter21ebcd12007-01-14 15:29:07 +0100993const struct file_operations fw_device_ops = {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500994 .owner = THIS_MODULE,
995 .open = fw_device_op_open,
996 .read = fw_device_op_read,
997 .unlocked_ioctl = fw_device_op_ioctl,
998 .poll = fw_device_op_poll,
999 .release = fw_device_op_release,
1000 .mmap = fw_device_op_mmap,
1001
1002#ifdef CONFIG_COMPAT
Stefan Richter5af4e5e2007-01-21 20:45:32 +01001003 .compat_ioctl = fw_device_op_compat_ioctl,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001004#endif
1005};