blob: d1d30c615b0f191c7fb33a313e64bfd37b2835d5 [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
Stefan Richterbe5bbd62009-01-04 16:23:29 +010021#include <linux/compat.h>
22#include <linux/delay.h>
23#include <linux/device.h>
24#include <linux/errno.h>
Stefan Richter77c9a5d2009-06-05 16:26:18 +020025#include <linux/firewire.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010026#include <linux/firewire-cdev.h>
27#include <linux/idr.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010028#include <linux/jiffies.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050029#include <linux/kernel.h>
Stefan Richterfb443032009-01-04 16:23:29 +010030#include <linux/kref.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010031#include <linux/mm.h>
32#include <linux/module.h>
Stefan Richterd67cfb92008-10-05 10:37:11 +020033#include <linux/mutex.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050034#include <linux/poll.h>
Stefan Richtera64408b2007-09-29 10:41:58 +020035#include <linux/preempt.h>
Jay Fenlasoncf417e542008-10-03 11:19:09 -040036#include <linux/spinlock.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010037#include <linux/time.h>
Stefan Richtere034d242009-06-06 18:36:24 +020038#include <linux/uaccess.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010039#include <linux/vmalloc.h>
40#include <linux/wait.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010041#include <linux/workqueue.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010042
Stefan Richtera64408b2007-09-29 10:41:58 +020043#include <asm/system.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010044
Stefan Richter77c9a5d2009-06-05 16:26:18 +020045#include "core.h"
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050046
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050047struct client {
Kristian Høgsberg344bbc42007-03-07 12:12:43 -050048 u32 version;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050049 struct fw_device *device;
Jay Fenlason45ee3192008-12-21 16:47:17 +010050
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050051 spinlock_t lock;
Jay Fenlason45ee3192008-12-21 16:47:17 +010052 bool in_shutdown;
53 struct idr resource_idr;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050054 struct list_head event_list;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050055 wait_queue_head_t wait;
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -040056 u64 bus_reset_closure;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050057
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050058 struct fw_iso_context *iso_context;
Kristian Høgsbergabaa5742007-04-30 15:03:14 -040059 u64 iso_closure;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050060 struct fw_iso_buffer buffer;
61 unsigned long vm_start;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -050062
63 struct list_head link;
Stefan Richterfb443032009-01-04 16:23:29 +010064 struct kref kref;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050065};
66
Stefan Richterfb443032009-01-04 16:23:29 +010067static inline void client_get(struct client *client)
68{
69 kref_get(&client->kref);
70}
71
72static void client_release(struct kref *kref)
73{
74 struct client *client = container_of(kref, struct client, kref);
75
76 fw_device_put(client->device);
77 kfree(client);
78}
79
80static void client_put(struct client *client)
81{
82 kref_put(&client->kref, client_release);
83}
84
Stefan Richter97c18b72009-01-04 16:23:29 +010085struct client_resource;
86typedef void (*client_resource_release_fn_t)(struct client *,
87 struct client_resource *);
88struct client_resource {
89 client_resource_release_fn_t release;
90 int handle;
91};
92
93struct address_handler_resource {
94 struct client_resource resource;
95 struct fw_address_handler handler;
96 __u64 closure;
97 struct client *client;
98};
99
100struct outbound_transaction_resource {
101 struct client_resource resource;
102 struct fw_transaction transaction;
103};
104
105struct inbound_transaction_resource {
106 struct client_resource resource;
107 struct fw_request *request;
108 void *data;
109 size_t length;
110};
111
112struct descriptor_resource {
113 struct client_resource resource;
114 struct fw_descriptor descriptor;
115 u32 data[0];
116};
117
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100118struct iso_resource {
119 struct client_resource resource;
120 struct client *client;
121 /* Schedule work and access todo only with client->lock held. */
122 struct delayed_work work;
Stefan Richter1ec3c022009-01-04 16:23:29 +0100123 enum {ISO_RES_ALLOC, ISO_RES_REALLOC, ISO_RES_DEALLOC,
124 ISO_RES_ALLOC_ONCE, ISO_RES_DEALLOC_ONCE,} todo;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100125 int generation;
126 u64 channels;
127 s32 bandwidth;
128 struct iso_resource_event *e_alloc, *e_dealloc;
129};
130
Stefan Richter81610b82009-01-11 13:44:46 +0100131static void schedule_iso_resource(struct iso_resource *);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100132static void release_iso_resource(struct client *, struct client_resource *);
133
Stefan Richter97c18b72009-01-04 16:23:29 +0100134/*
135 * dequeue_event() just kfree()'s the event, so the event has to be
136 * the first field in a struct XYZ_event.
137 */
138struct event {
139 struct { void *data; size_t size; } v[2];
140 struct list_head link;
141};
142
143struct bus_reset_event {
144 struct event event;
145 struct fw_cdev_event_bus_reset reset;
146};
147
148struct outbound_transaction_event {
149 struct event event;
150 struct client *client;
151 struct outbound_transaction_resource r;
152 struct fw_cdev_event_response response;
153};
154
155struct inbound_transaction_event {
156 struct event event;
157 struct fw_cdev_event_request request;
158};
159
160struct iso_interrupt_event {
161 struct event event;
162 struct fw_cdev_event_iso_interrupt interrupt;
163};
164
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100165struct iso_resource_event {
166 struct event event;
167 struct fw_cdev_event_iso_resource resource;
168};
169
Stefan Richter53dca512008-12-14 21:47:04 +0100170static inline void __user *u64_to_uptr(__u64 value)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500171{
172 return (void __user *)(unsigned long)value;
173}
174
Stefan Richter53dca512008-12-14 21:47:04 +0100175static inline __u64 uptr_to_u64(void __user *ptr)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500176{
177 return (__u64)(unsigned long)ptr;
178}
179
180static int fw_device_op_open(struct inode *inode, struct file *file)
181{
182 struct fw_device *device;
183 struct client *client;
184
Stefan Richter96b19062008-02-02 15:01:09 +0100185 device = fw_device_get_by_devt(inode->i_rdev);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500186 if (device == NULL)
187 return -ENODEV;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500188
Jay Fenlason551f4cb2008-05-16 11:15:23 -0400189 if (fw_device_is_shutdown(device)) {
190 fw_device_put(device);
191 return -ENODEV;
192 }
193
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400194 client = kzalloc(sizeof(*client), GFP_KERNEL);
Stefan Richter96b19062008-02-02 15:01:09 +0100195 if (client == NULL) {
196 fw_device_put(device);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500197 return -ENOMEM;
Stefan Richter96b19062008-02-02 15:01:09 +0100198 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500199
Stefan Richter96b19062008-02-02 15:01:09 +0100200 client->device = device;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500201 spin_lock_init(&client->lock);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100202 idr_init(&client->resource_idr);
203 INIT_LIST_HEAD(&client->event_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500204 init_waitqueue_head(&client->wait);
Stefan Richterfb443032009-01-04 16:23:29 +0100205 kref_init(&client->kref);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500206
207 file->private_data = client;
208
Stefan Richterd67cfb92008-10-05 10:37:11 +0200209 mutex_lock(&device->client_list_mutex);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500210 list_add_tail(&client->link, &device->client_list);
Stefan Richterd67cfb92008-10-05 10:37:11 +0200211 mutex_unlock(&device->client_list_mutex);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500212
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500213 return 0;
214}
215
216static void queue_event(struct client *client, struct event *event,
217 void *data0, size_t size0, void *data1, size_t size1)
218{
219 unsigned long flags;
220
221 event->v[0].data = data0;
222 event->v[0].size = size0;
223 event->v[1].data = data1;
224 event->v[1].size = size1;
225
226 spin_lock_irqsave(&client->lock, flags);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100227 if (client->in_shutdown)
228 kfree(event);
229 else
230 list_add_tail(&event->link, &client->event_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500231 spin_unlock_irqrestore(&client->lock, flags);
Jay Fenlason83431cb2007-10-08 17:00:29 -0400232
233 wake_up_interruptible(&client->wait);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500234}
235
Stefan Richter53dca512008-12-14 21:47:04 +0100236static int dequeue_event(struct client *client,
237 char __user *buffer, size_t count)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500238{
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500239 struct event *event;
240 size_t size, total;
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100241 int i, ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500242
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100243 ret = wait_event_interruptible(client->wait,
244 !list_empty(&client->event_list) ||
245 fw_device_is_shutdown(client->device));
246 if (ret < 0)
247 return ret;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500248
249 if (list_empty(&client->event_list) &&
250 fw_device_is_shutdown(client->device))
251 return -ENODEV;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500252
Stefan Richter3ba94982009-01-04 16:23:29 +0100253 spin_lock_irq(&client->lock);
Stefan Richtera459b8a2008-12-21 16:49:57 +0100254 event = list_first_entry(&client->event_list, struct event, link);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500255 list_del(&event->link);
Stefan Richter3ba94982009-01-04 16:23:29 +0100256 spin_unlock_irq(&client->lock);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500257
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500258 total = 0;
259 for (i = 0; i < ARRAY_SIZE(event->v) && total < count; i++) {
260 size = min(event->v[i].size, count - total);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500261 if (copy_to_user(buffer + total, event->v[i].data, size)) {
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100262 ret = -EFAULT;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500263 goto out;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500264 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500265 total += size;
266 }
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100267 ret = total;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500268
269 out:
270 kfree(event);
271
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100272 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500273}
274
Stefan Richter53dca512008-12-14 21:47:04 +0100275static ssize_t fw_device_op_read(struct file *file, char __user *buffer,
276 size_t count, loff_t *offset)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500277{
278 struct client *client = file->private_data;
279
280 return dequeue_event(client, buffer, count);
281}
282
Stefan Richter53dca512008-12-14 21:47:04 +0100283static void fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
284 struct client *client)
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500285{
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400286 struct fw_card *card = client->device->card;
Jay Fenlasoncf417e542008-10-03 11:19:09 -0400287
Stefan Richter3ba94982009-01-04 16:23:29 +0100288 spin_lock_irq(&card->lock);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500289
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400290 event->closure = client->bus_reset_closure;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500291 event->type = FW_CDEV_EVENT_BUS_RESET;
Stefan Richtercf5a56a2008-01-24 01:53:51 +0100292 event->generation = client->device->generation;
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400293 event->node_id = client->device->node_id;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500294 event->local_node_id = card->local_node->node_id;
295 event->bm_node_id = 0; /* FIXME: We don't track the BM. */
296 event->irm_node_id = card->irm_node->node_id;
297 event->root_node_id = card->root_node->node_id;
Jay Fenlasoncf417e542008-10-03 11:19:09 -0400298
Stefan Richter3ba94982009-01-04 16:23:29 +0100299 spin_unlock_irq(&card->lock);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500300}
301
Stefan Richter53dca512008-12-14 21:47:04 +0100302static void for_each_client(struct fw_device *device,
303 void (*callback)(struct client *client))
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500304{
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500305 struct client *c;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500306
Stefan Richterd67cfb92008-10-05 10:37:11 +0200307 mutex_lock(&device->client_list_mutex);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500308 list_for_each_entry(c, &device->client_list, link)
309 callback(c);
Stefan Richterd67cfb92008-10-05 10:37:11 +0200310 mutex_unlock(&device->client_list_mutex);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500311}
312
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100313static int schedule_reallocations(int id, void *p, void *data)
314{
315 struct client_resource *r = p;
316
317 if (r->release == release_iso_resource)
318 schedule_iso_resource(container_of(r,
319 struct iso_resource, resource));
320 return 0;
321}
322
Stefan Richter53dca512008-12-14 21:47:04 +0100323static void queue_bus_reset_event(struct client *client)
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500324{
Stefan Richter97c18b72009-01-04 16:23:29 +0100325 struct bus_reset_event *e;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500326
Stefan Richter97c18b72009-01-04 16:23:29 +0100327 e = kzalloc(sizeof(*e), GFP_KERNEL);
328 if (e == NULL) {
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500329 fw_notify("Out of memory when allocating bus reset event\n");
330 return;
331 }
332
Stefan Richter97c18b72009-01-04 16:23:29 +0100333 fill_bus_reset_event(&e->reset, client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500334
Stefan Richter97c18b72009-01-04 16:23:29 +0100335 queue_event(client, &e->event,
336 &e->reset, sizeof(e->reset), NULL, 0);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100337
338 spin_lock_irq(&client->lock);
339 idr_for_each(&client->resource_idr, schedule_reallocations, client);
340 spin_unlock_irq(&client->lock);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500341}
342
343void fw_device_cdev_update(struct fw_device *device)
344{
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500345 for_each_client(device, queue_bus_reset_event);
346}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500347
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500348static void wake_up_client(struct client *client)
349{
350 wake_up_interruptible(&client->wait);
351}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500352
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500353void fw_device_cdev_remove(struct fw_device *device)
354{
355 for_each_client(device, wake_up_client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500356}
357
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400358static int ioctl_get_info(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500359{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400360 struct fw_cdev_get_info *get_info = buffer;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500361 struct fw_cdev_event_bus_reset bus_reset;
Stefan Richterc9755e12008-03-24 20:54:28 +0100362 unsigned long ret = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500363
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400364 client->version = get_info->version;
365 get_info->version = FW_CDEV_VERSION;
Jay Fenlasoncf417e542008-10-03 11:19:09 -0400366 get_info->card = client->device->card->index;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500367
Stefan Richterc9755e12008-03-24 20:54:28 +0100368 down_read(&fw_device_rwsem);
369
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400370 if (get_info->rom != 0) {
371 void __user *uptr = u64_to_uptr(get_info->rom);
372 size_t want = get_info->rom_length;
Stefan Richterd84702a2007-03-20 19:42:15 +0100373 size_t have = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500374
Stefan Richterc9755e12008-03-24 20:54:28 +0100375 ret = copy_to_user(uptr, client->device->config_rom,
376 min(want, have));
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500377 }
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400378 get_info->rom_length = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500379
Stefan Richterc9755e12008-03-24 20:54:28 +0100380 up_read(&fw_device_rwsem);
381
382 if (ret != 0)
383 return -EFAULT;
384
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400385 client->bus_reset_closure = get_info->bus_reset_closure;
386 if (get_info->bus_reset != 0) {
387 void __user *uptr = u64_to_uptr(get_info->bus_reset);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500388
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400389 fill_bus_reset_event(&bus_reset, client);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400390 if (copy_to_user(uptr, &bus_reset, sizeof(bus_reset)))
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500391 return -EFAULT;
392 }
393
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500394 return 0;
395}
396
Stefan Richter53dca512008-12-14 21:47:04 +0100397static int add_client_resource(struct client *client,
398 struct client_resource *resource, gfp_t gfp_mask)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400399{
400 unsigned long flags;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100401 int ret;
402
403 retry:
404 if (idr_pre_get(&client->resource_idr, gfp_mask) == 0)
405 return -ENOMEM;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400406
407 spin_lock_irqsave(&client->lock, flags);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100408 if (client->in_shutdown)
409 ret = -ECANCELED;
410 else
411 ret = idr_get_new(&client->resource_idr, resource,
412 &resource->handle);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100413 if (ret >= 0) {
Stefan Richterfb443032009-01-04 16:23:29 +0100414 client_get(client);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100415 if (resource->release == release_iso_resource)
416 schedule_iso_resource(container_of(resource,
417 struct iso_resource, resource));
418 }
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400419 spin_unlock_irqrestore(&client->lock, flags);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100420
421 if (ret == -EAGAIN)
422 goto retry;
423
424 return ret < 0 ? ret : 0;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400425}
426
Stefan Richter53dca512008-12-14 21:47:04 +0100427static int release_client_resource(struct client *client, u32 handle,
428 client_resource_release_fn_t release,
429 struct client_resource **resource)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400430{
431 struct client_resource *r;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400432
Stefan Richter3ba94982009-01-04 16:23:29 +0100433 spin_lock_irq(&client->lock);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100434 if (client->in_shutdown)
435 r = NULL;
436 else
437 r = idr_find(&client->resource_idr, handle);
438 if (r && r->release == release)
439 idr_remove(&client->resource_idr, handle);
Stefan Richter3ba94982009-01-04 16:23:29 +0100440 spin_unlock_irq(&client->lock);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400441
Jay Fenlason45ee3192008-12-21 16:47:17 +0100442 if (!(r && r->release == release))
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400443 return -EINVAL;
444
445 if (resource)
446 *resource = r;
447 else
448 r->release(client, r);
449
Stefan Richterfb443032009-01-04 16:23:29 +0100450 client_put(client);
451
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400452 return 0;
453}
454
Stefan Richter53dca512008-12-14 21:47:04 +0100455static void release_transaction(struct client *client,
456 struct client_resource *resource)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400457{
Stefan Richter97c18b72009-01-04 16:23:29 +0100458 struct outbound_transaction_resource *r = container_of(resource,
459 struct outbound_transaction_resource, resource);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400460
Stefan Richter97c18b72009-01-04 16:23:29 +0100461 fw_cancel_transaction(client->device->card, &r->transaction);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400462}
463
Stefan Richter53dca512008-12-14 21:47:04 +0100464static void complete_transaction(struct fw_card *card, int rcode,
465 void *payload, size_t length, void *data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500466{
Stefan Richter97c18b72009-01-04 16:23:29 +0100467 struct outbound_transaction_event *e = data;
468 struct fw_cdev_event_response *rsp = &e->response;
469 struct client *client = e->client;
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500470 unsigned long flags;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500471
Stefan Richter97c18b72009-01-04 16:23:29 +0100472 if (length < rsp->length)
473 rsp->length = length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500474 if (rcode == RCODE_COMPLETE)
Stefan Richter97c18b72009-01-04 16:23:29 +0100475 memcpy(rsp->data, payload, rsp->length);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500476
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500477 spin_lock_irqsave(&client->lock, flags);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100478 /*
Stefan Richterfb443032009-01-04 16:23:29 +0100479 * 1. If called while in shutdown, the idr tree must be left untouched.
480 * The idr handle will be removed and the client reference will be
481 * dropped later.
482 * 2. If the call chain was release_client_resource ->
483 * release_transaction -> complete_transaction (instead of a normal
484 * conclusion of the transaction), i.e. if this resource was already
485 * unregistered from the idr, the client reference will be dropped
486 * by release_client_resource and we must not drop it here.
Jay Fenlason45ee3192008-12-21 16:47:17 +0100487 */
Stefan Richterfb443032009-01-04 16:23:29 +0100488 if (!client->in_shutdown &&
Stefan Richter97c18b72009-01-04 16:23:29 +0100489 idr_find(&client->resource_idr, e->r.resource.handle)) {
490 idr_remove(&client->resource_idr, e->r.resource.handle);
Stefan Richterfb443032009-01-04 16:23:29 +0100491 /* Drop the idr's reference */
492 client_put(client);
493 }
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500494 spin_unlock_irqrestore(&client->lock, flags);
495
Stefan Richter97c18b72009-01-04 16:23:29 +0100496 rsp->type = FW_CDEV_EVENT_RESPONSE;
497 rsp->rcode = rcode;
David Moore8401d922008-07-29 23:46:25 -0700498
499 /*
Stefan Richter97c18b72009-01-04 16:23:29 +0100500 * In the case that sizeof(*rsp) doesn't align with the position of the
David Moore8401d922008-07-29 23:46:25 -0700501 * data, and the read is short, preserve an extra copy of the data
502 * to stay compatible with a pre-2.6.27 bug. Since the bug is harmless
503 * for short reads and some apps depended on it, this is both safe
504 * and prudent for compatibility.
505 */
Stefan Richter97c18b72009-01-04 16:23:29 +0100506 if (rsp->length <= sizeof(*rsp) - offsetof(typeof(*rsp), data))
507 queue_event(client, &e->event, rsp, sizeof(*rsp),
508 rsp->data, rsp->length);
David Moore8401d922008-07-29 23:46:25 -0700509 else
Stefan Richter97c18b72009-01-04 16:23:29 +0100510 queue_event(client, &e->event, rsp, sizeof(*rsp) + rsp->length,
David Moore8401d922008-07-29 23:46:25 -0700511 NULL, 0);
Stefan Richterfb443032009-01-04 16:23:29 +0100512
513 /* Drop the transaction callback's reference */
514 client_put(client);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500515}
516
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100517static int init_request(struct client *client,
518 struct fw_cdev_send_request *request,
519 int destination_id, int speed)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500520{
Stefan Richter97c18b72009-01-04 16:23:29 +0100521 struct outbound_transaction_event *e;
Stefan Richter1f3125a2008-12-05 22:44:42 +0100522 int ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500523
Stefan Richter18e9b102009-03-10 21:02:21 +0100524 if (request->tcode != TCODE_STREAM_DATA &&
525 (request->length > 4096 || request->length > 512 << speed))
Stefan Richter5d3fd692009-01-04 16:23:29 +0100526 return -EIO;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500527
Stefan Richter97c18b72009-01-04 16:23:29 +0100528 e = kmalloc(sizeof(*e) + request->length, GFP_KERNEL);
529 if (e == NULL)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500530 return -ENOMEM;
531
Stefan Richter97c18b72009-01-04 16:23:29 +0100532 e->client = client;
533 e->response.length = request->length;
534 e->response.closure = request->closure;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500535
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400536 if (request->data &&
Stefan Richter97c18b72009-01-04 16:23:29 +0100537 copy_from_user(e->response.data,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400538 u64_to_uptr(request->data), request->length)) {
Stefan Richter1f3125a2008-12-05 22:44:42 +0100539 ret = -EFAULT;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100540 goto failed;
Stefan Richter1f3125a2008-12-05 22:44:42 +0100541 }
542
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100543 e->r.resource.release = release_transaction;
544 ret = add_client_resource(client, &e->r.resource, GFP_KERNEL);
545 if (ret < 0)
546 goto failed;
547
548 /* Get a reference for the transaction callback */
549 client_get(client);
550
551 fw_send_request(client->device->card, &e->r.transaction,
Stefan Richter664d8012009-03-10 21:01:54 +0100552 request->tcode, destination_id, request->generation,
553 speed, request->offset, e->response.data,
554 request->length, complete_transaction, e);
555 return 0;
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100556
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100557 failed:
558 kfree(e);
559
560 return ret;
561}
562
563static int ioctl_send_request(struct client *client, void *buffer)
564{
565 struct fw_cdev_send_request *request = buffer;
566
Stefan Richter1f3125a2008-12-05 22:44:42 +0100567 switch (request->tcode) {
568 case TCODE_WRITE_QUADLET_REQUEST:
569 case TCODE_WRITE_BLOCK_REQUEST:
570 case TCODE_READ_QUADLET_REQUEST:
571 case TCODE_READ_BLOCK_REQUEST:
572 case TCODE_LOCK_MASK_SWAP:
573 case TCODE_LOCK_COMPARE_SWAP:
574 case TCODE_LOCK_FETCH_ADD:
575 case TCODE_LOCK_LITTLE_ADD:
576 case TCODE_LOCK_BOUNDED_ADD:
577 case TCODE_LOCK_WRAP_ADD:
578 case TCODE_LOCK_VENDOR_DEPENDENT:
579 break;
580 default:
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100581 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500582 }
583
Stefan Richter207fbef2009-03-10 21:01:08 +0100584 return init_request(client, request, client->device->node_id,
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100585 client->device->max_speed);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500586}
587
Stefan Richter53dca512008-12-14 21:47:04 +0100588static void release_request(struct client *client,
589 struct client_resource *resource)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400590{
Stefan Richter97c18b72009-01-04 16:23:29 +0100591 struct inbound_transaction_resource *r = container_of(resource,
592 struct inbound_transaction_resource, resource);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400593
Stefan Richter97c18b72009-01-04 16:23:29 +0100594 fw_send_response(client->device->card, r->request,
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400595 RCODE_CONFLICT_ERROR);
Stefan Richter97c18b72009-01-04 16:23:29 +0100596 kfree(r);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400597}
598
Stefan Richter97c18b72009-01-04 16:23:29 +0100599static void handle_request(struct fw_card *card, struct fw_request *request,
Stefan Richter53dca512008-12-14 21:47:04 +0100600 int tcode, int destination, int source,
601 int generation, int speed,
602 unsigned long long offset,
603 void *payload, size_t length, void *callback_data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500604{
Stefan Richter97c18b72009-01-04 16:23:29 +0100605 struct address_handler_resource *handler = callback_data;
606 struct inbound_transaction_resource *r;
607 struct inbound_transaction_event *e;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100608 int ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500609
Stefan Richter97c18b72009-01-04 16:23:29 +0100610 r = kmalloc(sizeof(*r), GFP_ATOMIC);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400611 e = kmalloc(sizeof(*e), GFP_ATOMIC);
Stefan Richter97c18b72009-01-04 16:23:29 +0100612 if (r == NULL || e == NULL)
Jay Fenlason45ee3192008-12-21 16:47:17 +0100613 goto failed;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500614
Stefan Richter97c18b72009-01-04 16:23:29 +0100615 r->request = request;
616 r->data = payload;
617 r->length = length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500618
Stefan Richter97c18b72009-01-04 16:23:29 +0100619 r->resource.release = release_request;
620 ret = add_client_resource(handler->client, &r->resource, GFP_ATOMIC);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100621 if (ret < 0)
622 goto failed;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500623
624 e->request.type = FW_CDEV_EVENT_REQUEST;
625 e->request.tcode = tcode;
626 e->request.offset = offset;
627 e->request.length = length;
Stefan Richter97c18b72009-01-04 16:23:29 +0100628 e->request.handle = r->resource.handle;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500629 e->request.closure = handler->closure;
630
Stefan Richter97c18b72009-01-04 16:23:29 +0100631 queue_event(handler->client, &e->event,
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400632 &e->request, sizeof(e->request), payload, length);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100633 return;
634
635 failed:
Stefan Richter97c18b72009-01-04 16:23:29 +0100636 kfree(r);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100637 kfree(e);
Stefan Richter97c18b72009-01-04 16:23:29 +0100638 fw_send_response(card, request, RCODE_CONFLICT_ERROR);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500639}
640
Stefan Richter53dca512008-12-14 21:47:04 +0100641static void release_address_handler(struct client *client,
642 struct client_resource *resource)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400643{
Stefan Richter97c18b72009-01-04 16:23:29 +0100644 struct address_handler_resource *r =
645 container_of(resource, struct address_handler_resource, resource);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400646
Stefan Richter97c18b72009-01-04 16:23:29 +0100647 fw_core_remove_address_handler(&r->handler);
648 kfree(r);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400649}
650
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400651static int ioctl_allocate(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500652{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400653 struct fw_cdev_allocate *request = buffer;
Stefan Richter97c18b72009-01-04 16:23:29 +0100654 struct address_handler_resource *r;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500655 struct fw_address_region region;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100656 int ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500657
Stefan Richter97c18b72009-01-04 16:23:29 +0100658 r = kmalloc(sizeof(*r), GFP_KERNEL);
659 if (r == NULL)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500660 return -ENOMEM;
661
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400662 region.start = request->offset;
663 region.end = request->offset + request->length;
Stefan Richter97c18b72009-01-04 16:23:29 +0100664 r->handler.length = request->length;
665 r->handler.address_callback = handle_request;
666 r->handler.callback_data = r;
667 r->closure = request->closure;
668 r->client = client;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500669
Stefan Richter97c18b72009-01-04 16:23:29 +0100670 ret = fw_core_add_address_handler(&r->handler, &region);
Stefan Richter3e0b5f02008-12-14 19:21:01 +0100671 if (ret < 0) {
Stefan Richter97c18b72009-01-04 16:23:29 +0100672 kfree(r);
Stefan Richter3e0b5f02008-12-14 19:21:01 +0100673 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500674 }
675
Stefan Richter97c18b72009-01-04 16:23:29 +0100676 r->resource.release = release_address_handler;
677 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100678 if (ret < 0) {
Stefan Richter97c18b72009-01-04 16:23:29 +0100679 release_address_handler(client, &r->resource);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100680 return ret;
681 }
Stefan Richter97c18b72009-01-04 16:23:29 +0100682 request->handle = r->resource.handle;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500683
684 return 0;
685}
686
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400687static int ioctl_deallocate(struct client *client, void *buffer)
Kristian Høgsberg94723162007-03-14 17:34:55 -0400688{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400689 struct fw_cdev_deallocate *request = buffer;
Kristian Høgsberg94723162007-03-14 17:34:55 -0400690
Jay Fenlason45ee3192008-12-21 16:47:17 +0100691 return release_client_resource(client, request->handle,
692 release_address_handler, NULL);
Kristian Høgsberg94723162007-03-14 17:34:55 -0400693}
694
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400695static int ioctl_send_response(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_send_response *request = buffer;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400698 struct client_resource *resource;
Stefan Richter97c18b72009-01-04 16:23:29 +0100699 struct inbound_transaction_resource *r;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500700
Jay Fenlason45ee3192008-12-21 16:47:17 +0100701 if (release_client_resource(client, request->handle,
702 release_request, &resource) < 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500703 return -EINVAL;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100704
Stefan Richter97c18b72009-01-04 16:23:29 +0100705 r = container_of(resource, struct inbound_transaction_resource,
706 resource);
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400707 if (request->length < r->length)
708 r->length = request->length;
709 if (copy_from_user(r->data, u64_to_uptr(request->data), r->length))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500710 return -EFAULT;
711
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400712 fw_send_response(client->device->card, r->request, request->rcode);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500713 kfree(r);
714
715 return 0;
716}
717
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400718static int ioctl_initiate_bus_reset(struct client *client, void *buffer)
Kristian Høgsberg53718422007-03-07 12:12:42 -0500719{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400720 struct fw_cdev_initiate_bus_reset *request = buffer;
Kristian Høgsberg53718422007-03-07 12:12:42 -0500721 int short_reset;
722
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400723 short_reset = (request->type == FW_CDEV_SHORT_RESET);
Kristian Høgsberg53718422007-03-07 12:12:42 -0500724
725 return fw_core_initiate_bus_reset(client->device->card, short_reset);
726}
727
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400728static void release_descriptor(struct client *client,
729 struct client_resource *resource)
730{
Stefan Richter97c18b72009-01-04 16:23:29 +0100731 struct descriptor_resource *r =
732 container_of(resource, struct descriptor_resource, resource);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400733
Stefan Richter97c18b72009-01-04 16:23:29 +0100734 fw_core_remove_descriptor(&r->descriptor);
735 kfree(r);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400736}
737
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400738static int ioctl_add_descriptor(struct client *client, void *buffer)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200739{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400740 struct fw_cdev_add_descriptor *request = buffer;
Stefan Richter97c18b72009-01-04 16:23:29 +0100741 struct descriptor_resource *r;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100742 int ret;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200743
Stefan Richterde487da2009-03-10 21:00:23 +0100744 /* Access policy: Allow this ioctl only on local nodes' device files. */
Stefan Richter92368892009-05-13 21:42:14 +0200745 if (!client->device->is_local)
Stefan Richterde487da2009-03-10 21:00:23 +0100746 return -ENOSYS;
747
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400748 if (request->length > 256)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200749 return -EINVAL;
750
Stefan Richter97c18b72009-01-04 16:23:29 +0100751 r = kmalloc(sizeof(*r) + request->length * 4, GFP_KERNEL);
752 if (r == NULL)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200753 return -ENOMEM;
754
Stefan Richter97c18b72009-01-04 16:23:29 +0100755 if (copy_from_user(r->data,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400756 u64_to_uptr(request->data), request->length * 4)) {
Jay Fenlason45ee3192008-12-21 16:47:17 +0100757 ret = -EFAULT;
758 goto failed;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200759 }
760
Stefan Richter97c18b72009-01-04 16:23:29 +0100761 r->descriptor.length = request->length;
762 r->descriptor.immediate = request->immediate;
763 r->descriptor.key = request->key;
764 r->descriptor.data = r->data;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200765
Stefan Richter97c18b72009-01-04 16:23:29 +0100766 ret = fw_core_add_descriptor(&r->descriptor);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100767 if (ret < 0)
768 goto failed;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200769
Stefan Richter97c18b72009-01-04 16:23:29 +0100770 r->resource.release = release_descriptor;
771 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100772 if (ret < 0) {
Stefan Richter97c18b72009-01-04 16:23:29 +0100773 fw_core_remove_descriptor(&r->descriptor);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100774 goto failed;
775 }
Stefan Richter97c18b72009-01-04 16:23:29 +0100776 request->handle = r->resource.handle;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200777
778 return 0;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100779 failed:
Stefan Richter97c18b72009-01-04 16:23:29 +0100780 kfree(r);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100781
782 return ret;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200783}
784
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400785static int ioctl_remove_descriptor(struct client *client, void *buffer)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200786{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400787 struct fw_cdev_remove_descriptor *request = buffer;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200788
Jay Fenlason45ee3192008-12-21 16:47:17 +0100789 return release_client_resource(client, request->handle,
790 release_descriptor, NULL);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200791}
792
Stefan Richter53dca512008-12-14 21:47:04 +0100793static void iso_callback(struct fw_iso_context *context, u32 cycle,
794 size_t header_length, void *header, void *data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500795{
796 struct client *client = data;
Stefan Richter97c18b72009-01-04 16:23:29 +0100797 struct iso_interrupt_event *e;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500798
Stefan Richter97c18b72009-01-04 16:23:29 +0100799 e = kzalloc(sizeof(*e) + header_length, GFP_ATOMIC);
800 if (e == NULL)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500801 return;
802
Stefan Richter97c18b72009-01-04 16:23:29 +0100803 e->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT;
804 e->interrupt.closure = client->iso_closure;
805 e->interrupt.cycle = cycle;
806 e->interrupt.header_length = header_length;
807 memcpy(e->interrupt.header, header, header_length);
808 queue_event(client, &e->event, &e->interrupt,
809 sizeof(e->interrupt) + header_length, NULL, 0);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500810}
811
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400812static int ioctl_create_iso_context(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500813{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400814 struct fw_cdev_create_iso_context *request = buffer;
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400815 struct fw_iso_context *context;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500816
Stefan Richterfae60312008-02-20 21:10:06 +0100817 /* We only support one context at this time. */
818 if (client->iso_context != NULL)
819 return -EBUSY;
820
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400821 if (request->channel > 63)
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500822 return -EINVAL;
823
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400824 switch (request->type) {
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400825 case FW_ISO_CONTEXT_RECEIVE:
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400826 if (request->header_size < 4 || (request->header_size & 3))
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400827 return -EINVAL;
828
829 break;
830
831 case FW_ISO_CONTEXT_TRANSMIT:
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400832 if (request->speed > SCODE_3200)
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400833 return -EINVAL;
834
835 break;
836
837 default:
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500838 return -EINVAL;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400839 }
840
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400841 context = fw_iso_context_create(client->device->card,
842 request->type,
843 request->channel,
844 request->speed,
845 request->header_size,
846 iso_callback, client);
847 if (IS_ERR(context))
848 return PTR_ERR(context);
849
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400850 client->iso_closure = request->closure;
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400851 client->iso_context = context;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500852
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400853 /* We only support one context at this time. */
854 request->handle = 0;
855
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500856 return 0;
857}
858
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400859/* Macros for decoding the iso packet control header. */
860#define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
861#define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
862#define GET_SKIP(v) (((v) >> 17) & 0x01)
Stefan Richter7a100342008-09-12 18:09:55 +0200863#define GET_TAG(v) (((v) >> 18) & 0x03)
864#define GET_SY(v) (((v) >> 20) & 0x0f)
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400865#define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
866
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400867static int ioctl_queue_iso(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500868{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400869 struct fw_cdev_queue_iso *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500870 struct fw_cdev_iso_packet __user *p, *end, *next;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500871 struct fw_iso_context *ctx = client->iso_context;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200872 unsigned long payload, buffer_end, header_length;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400873 u32 control;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500874 int count;
875 struct {
876 struct fw_iso_packet packet;
877 u8 header[256];
878 } u;
879
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400880 if (ctx == NULL || request->handle != 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500881 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500882
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400883 /*
884 * If the user passes a non-NULL data pointer, has mmap()'ed
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500885 * the iso buffer, and the pointer points inside the buffer,
886 * we setup the payload pointers accordingly. Otherwise we
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500887 * set them both to 0, which will still let packets with
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500888 * payload_length == 0 through. In other words, if no packets
889 * use the indirect payload, the iso buffer need not be mapped
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400890 * and the request->data pointer is ignored.
891 */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500892
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400893 payload = (unsigned long)request->data - client->vm_start;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200894 buffer_end = client->buffer.page_count << PAGE_SHIFT;
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400895 if (request->data == 0 || client->buffer.pages == NULL ||
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200896 payload >= buffer_end) {
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500897 payload = 0;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200898 buffer_end = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500899 }
900
Al Viro1ccc9142007-10-14 19:34:40 +0100901 p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(request->packets);
902
903 if (!access_ok(VERIFY_READ, p, request->size))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500904 return -EFAULT;
905
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400906 end = (void __user *)p + request->size;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500907 count = 0;
908 while (p < end) {
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400909 if (get_user(control, &p->control))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500910 return -EFAULT;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -0400911 u.packet.payload_length = GET_PAYLOAD_LENGTH(control);
912 u.packet.interrupt = GET_INTERRUPT(control);
913 u.packet.skip = GET_SKIP(control);
914 u.packet.tag = GET_TAG(control);
915 u.packet.sy = GET_SY(control);
916 u.packet.header_length = GET_HEADER_LENGTH(control);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500917
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500918 if (ctx->type == FW_ISO_CONTEXT_TRANSMIT) {
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500919 header_length = u.packet.header_length;
920 } else {
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400921 /*
922 * We require that header_length is a multiple of
923 * the fixed header size, ctx->header_size.
924 */
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500925 if (ctx->header_size == 0) {
926 if (u.packet.header_length > 0)
927 return -EINVAL;
928 } else if (u.packet.header_length % ctx->header_size != 0) {
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500929 return -EINVAL;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500930 }
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500931 header_length = 0;
932 }
933
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500934 next = (struct fw_cdev_iso_packet __user *)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500935 &p->header[header_length / 4];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500936 if (next > end)
937 return -EINVAL;
938 if (__copy_from_user
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500939 (u.packet.header, p->header, header_length))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500940 return -EFAULT;
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -0500941 if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500942 u.packet.header_length + u.packet.payload_length > 0)
943 return -EINVAL;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +0200944 if (payload + u.packet.payload_length > buffer_end)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500945 return -EINVAL;
946
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500947 if (fw_iso_context_queue(ctx, &u.packet,
948 &client->buffer, payload))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500949 break;
950
951 p = next;
952 payload += u.packet.payload_length;
953 count++;
954 }
955
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400956 request->size -= uptr_to_u64(p) - request->packets;
957 request->packets = uptr_to_u64(p);
958 request->data = client->vm_start + payload;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500959
960 return count;
961}
962
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400963static int ioctl_start_iso(struct client *client, void *buffer)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500964{
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400965 struct fw_cdev_start_iso *request = buffer;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500966
Stefan Richterfae60312008-02-20 21:10:06 +0100967 if (client->iso_context == NULL || request->handle != 0)
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400968 return -EINVAL;
Stefan Richterfae60312008-02-20 21:10:06 +0100969
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400970 if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE) {
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400971 if (request->tags == 0 || request->tags > 15)
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400972 return -EINVAL;
973
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400974 if (request->sync > 15)
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400975 return -EINVAL;
976 }
977
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400978 return fw_iso_context_start(client->iso_context, request->cycle,
979 request->sync, request->tags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500980}
981
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400982static int ioctl_stop_iso(struct client *client, void *buffer)
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500983{
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400984 struct fw_cdev_stop_iso *request = buffer;
985
Stefan Richterfae60312008-02-20 21:10:06 +0100986 if (client->iso_context == NULL || request->handle != 0)
Kristian Høgsbergabaa5742007-04-30 15:03:14 -0400987 return -EINVAL;
988
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500989 return fw_iso_context_stop(client->iso_context);
990}
991
Stefan Richtera64408b2007-09-29 10:41:58 +0200992static int ioctl_get_cycle_timer(struct client *client, void *buffer)
993{
994 struct fw_cdev_get_cycle_timer *request = buffer;
995 struct fw_card *card = client->device->card;
996 unsigned long long bus_time;
997 struct timeval tv;
998 unsigned long flags;
999
1000 preempt_disable();
1001 local_irq_save(flags);
1002
1003 bus_time = card->driver->get_bus_time(card);
1004 do_gettimeofday(&tv);
1005
1006 local_irq_restore(flags);
1007 preempt_enable();
1008
1009 request->local_time = tv.tv_sec * 1000000ULL + tv.tv_usec;
1010 request->cycle_timer = bus_time & 0xffffffff;
1011 return 0;
1012}
1013
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001014static void iso_resource_work(struct work_struct *work)
1015{
1016 struct iso_resource_event *e;
1017 struct iso_resource *r =
1018 container_of(work, struct iso_resource, work.work);
1019 struct client *client = r->client;
1020 int generation, channel, bandwidth, todo;
1021 bool skip, free, success;
1022
1023 spin_lock_irq(&client->lock);
1024 generation = client->device->generation;
1025 todo = r->todo;
1026 /* Allow 1000ms grace period for other reallocations. */
1027 if (todo == ISO_RES_ALLOC &&
1028 time_is_after_jiffies(client->device->card->reset_jiffies + HZ)) {
1029 if (schedule_delayed_work(&r->work, DIV_ROUND_UP(HZ, 3)))
1030 client_get(client);
1031 skip = true;
1032 } else {
1033 /* We could be called twice within the same generation. */
1034 skip = todo == ISO_RES_REALLOC &&
1035 r->generation == generation;
1036 }
Stefan Richter1ec3c022009-01-04 16:23:29 +01001037 free = todo == ISO_RES_DEALLOC ||
1038 todo == ISO_RES_ALLOC_ONCE ||
1039 todo == ISO_RES_DEALLOC_ONCE;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001040 r->generation = generation;
1041 spin_unlock_irq(&client->lock);
1042
1043 if (skip)
1044 goto out;
1045
1046 bandwidth = r->bandwidth;
1047
1048 fw_iso_resource_manage(client->device->card, generation,
1049 r->channels, &channel, &bandwidth,
Stefan Richter1ec3c022009-01-04 16:23:29 +01001050 todo == ISO_RES_ALLOC ||
1051 todo == ISO_RES_REALLOC ||
1052 todo == ISO_RES_ALLOC_ONCE);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001053 /*
1054 * Is this generation outdated already? As long as this resource sticks
1055 * in the idr, it will be scheduled again for a newer generation or at
1056 * shutdown.
1057 */
1058 if (channel == -EAGAIN &&
1059 (todo == ISO_RES_ALLOC || todo == ISO_RES_REALLOC))
1060 goto out;
1061
1062 success = channel >= 0 || bandwidth > 0;
1063
1064 spin_lock_irq(&client->lock);
1065 /*
1066 * Transit from allocation to reallocation, except if the client
1067 * requested deallocation in the meantime.
1068 */
1069 if (r->todo == ISO_RES_ALLOC)
1070 r->todo = ISO_RES_REALLOC;
1071 /*
1072 * Allocation or reallocation failure? Pull this resource out of the
1073 * idr and prepare for deletion, unless the client is shutting down.
1074 */
1075 if (r->todo == ISO_RES_REALLOC && !success &&
1076 !client->in_shutdown &&
1077 idr_find(&client->resource_idr, r->resource.handle)) {
1078 idr_remove(&client->resource_idr, r->resource.handle);
1079 client_put(client);
1080 free = true;
1081 }
1082 spin_unlock_irq(&client->lock);
1083
1084 if (todo == ISO_RES_ALLOC && channel >= 0)
Stefan Richter5d9cb7d272009-01-08 23:07:40 +01001085 r->channels = 1ULL << channel;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001086
1087 if (todo == ISO_RES_REALLOC && success)
1088 goto out;
1089
Stefan Richter1ec3c022009-01-04 16:23:29 +01001090 if (todo == ISO_RES_ALLOC || todo == ISO_RES_ALLOC_ONCE) {
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001091 e = r->e_alloc;
1092 r->e_alloc = NULL;
1093 } else {
1094 e = r->e_dealloc;
1095 r->e_dealloc = NULL;
1096 }
1097 e->resource.handle = r->resource.handle;
1098 e->resource.channel = channel;
1099 e->resource.bandwidth = bandwidth;
1100
1101 queue_event(client, &e->event,
1102 &e->resource, sizeof(e->resource), NULL, 0);
1103
1104 if (free) {
1105 cancel_delayed_work(&r->work);
1106 kfree(r->e_alloc);
1107 kfree(r->e_dealloc);
1108 kfree(r);
1109 }
1110 out:
1111 client_put(client);
1112}
1113
Stefan Richter81610b82009-01-11 13:44:46 +01001114static void schedule_iso_resource(struct iso_resource *r)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001115{
Stefan Richter1ec3c022009-01-04 16:23:29 +01001116 client_get(r->client);
Stefan Richter81610b82009-01-11 13:44:46 +01001117 if (!schedule_delayed_work(&r->work, 0))
Stefan Richter1ec3c022009-01-04 16:23:29 +01001118 client_put(r->client);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001119}
1120
1121static void release_iso_resource(struct client *client,
1122 struct client_resource *resource)
1123{
1124 struct iso_resource *r =
1125 container_of(resource, struct iso_resource, resource);
1126
1127 spin_lock_irq(&client->lock);
1128 r->todo = ISO_RES_DEALLOC;
1129 schedule_iso_resource(r);
1130 spin_unlock_irq(&client->lock);
1131}
1132
Stefan Richter1ec3c022009-01-04 16:23:29 +01001133static int init_iso_resource(struct client *client,
1134 struct fw_cdev_allocate_iso_resource *request, int todo)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001135{
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001136 struct iso_resource_event *e1, *e2;
1137 struct iso_resource *r;
1138 int ret;
1139
1140 if ((request->channels == 0 && request->bandwidth == 0) ||
1141 request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL ||
1142 request->bandwidth < 0)
1143 return -EINVAL;
1144
1145 r = kmalloc(sizeof(*r), GFP_KERNEL);
1146 e1 = kmalloc(sizeof(*e1), GFP_KERNEL);
1147 e2 = kmalloc(sizeof(*e2), GFP_KERNEL);
1148 if (r == NULL || e1 == NULL || e2 == NULL) {
1149 ret = -ENOMEM;
1150 goto fail;
1151 }
1152
1153 INIT_DELAYED_WORK(&r->work, iso_resource_work);
1154 r->client = client;
Stefan Richter1ec3c022009-01-04 16:23:29 +01001155 r->todo = todo;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001156 r->generation = -1;
1157 r->channels = request->channels;
1158 r->bandwidth = request->bandwidth;
1159 r->e_alloc = e1;
1160 r->e_dealloc = e2;
1161
1162 e1->resource.closure = request->closure;
1163 e1->resource.type = FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED;
1164 e2->resource.closure = request->closure;
1165 e2->resource.type = FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED;
1166
Stefan Richter1ec3c022009-01-04 16:23:29 +01001167 if (todo == ISO_RES_ALLOC) {
1168 r->resource.release = release_iso_resource;
1169 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
Stefan Richter81610b82009-01-11 13:44:46 +01001170 if (ret < 0)
1171 goto fail;
Stefan Richter1ec3c022009-01-04 16:23:29 +01001172 } else {
1173 r->resource.release = NULL;
1174 r->resource.handle = -1;
Stefan Richter81610b82009-01-11 13:44:46 +01001175 schedule_iso_resource(r);
Stefan Richter1ec3c022009-01-04 16:23:29 +01001176 }
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001177 request->handle = r->resource.handle;
1178
1179 return 0;
1180 fail:
1181 kfree(r);
1182 kfree(e1);
1183 kfree(e2);
1184
1185 return ret;
1186}
1187
Stefan Richter1ec3c022009-01-04 16:23:29 +01001188static int ioctl_allocate_iso_resource(struct client *client, void *buffer)
1189{
1190 struct fw_cdev_allocate_iso_resource *request = buffer;
1191
1192 return init_iso_resource(client, request, ISO_RES_ALLOC);
1193}
1194
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001195static int ioctl_deallocate_iso_resource(struct client *client, void *buffer)
1196{
1197 struct fw_cdev_deallocate *request = buffer;
1198
1199 return release_client_resource(client, request->handle,
1200 release_iso_resource, NULL);
1201}
1202
Stefan Richter1ec3c022009-01-04 16:23:29 +01001203static int ioctl_allocate_iso_resource_once(struct client *client, void *buffer)
1204{
1205 struct fw_cdev_allocate_iso_resource *request = buffer;
1206
1207 return init_iso_resource(client, request, ISO_RES_ALLOC_ONCE);
1208}
1209
1210static int ioctl_deallocate_iso_resource_once(struct client *client, void *buffer)
1211{
1212 struct fw_cdev_allocate_iso_resource *request = buffer;
1213
1214 return init_iso_resource(client, request, ISO_RES_DEALLOC_ONCE);
1215}
1216
Stefan Richterc8a25902009-03-10 20:59:16 +01001217/*
1218 * Returns a speed code: Maximum speed to or from this device,
1219 * limited by the device's link speed, the local node's link speed,
1220 * and all PHY port speeds between the two links.
1221 */
Stefan Richter33580a32009-01-04 16:23:29 +01001222static int ioctl_get_speed(struct client *client, void *buffer)
1223{
Stefan Richterc8a25902009-03-10 20:59:16 +01001224 return client->device->max_speed;
Stefan Richter33580a32009-01-04 16:23:29 +01001225}
1226
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001227static int ioctl_send_broadcast_request(struct client *client, void *buffer)
1228{
1229 struct fw_cdev_send_request *request = buffer;
1230
1231 switch (request->tcode) {
1232 case TCODE_WRITE_QUADLET_REQUEST:
1233 case TCODE_WRITE_BLOCK_REQUEST:
1234 break;
1235 default:
1236 return -EINVAL;
1237 }
1238
Stefan Richter1566f3d2009-01-04 16:23:29 +01001239 /* Security policy: Only allow accesses to Units Space. */
1240 if (request->offset < CSR_REGISTER_BASE + CSR_CONFIG_ROM_END)
1241 return -EACCES;
1242
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001243 return init_request(client, request, LOCAL_BUS | 0x3f, SCODE_100);
1244}
1245
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001246static int ioctl_send_stream_packet(struct client *client, void *buffer)
1247{
Stefan Richter18e9b102009-03-10 21:02:21 +01001248 struct fw_cdev_send_stream_packet *p = buffer;
1249 struct fw_cdev_send_request request;
1250 int dest;
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001251
Stefan Richter18e9b102009-03-10 21:02:21 +01001252 if (p->speed > client->device->card->link_speed ||
1253 p->length > 1024 << p->speed)
1254 return -EIO;
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001255
Stefan Richter18e9b102009-03-10 21:02:21 +01001256 if (p->tag > 3 || p->channel > 63 || p->sy > 15)
1257 return -EINVAL;
1258
1259 dest = fw_stream_packet_destination_id(p->tag, p->channel, p->sy);
1260 request.tcode = TCODE_STREAM_DATA;
1261 request.length = p->length;
1262 request.closure = p->closure;
1263 request.data = p->data;
1264 request.generation = p->generation;
1265
1266 return init_request(client, &request, dest, p->speed);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001267}
1268
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001269static int (* const ioctl_handlers[])(struct client *client, void *buffer) = {
1270 ioctl_get_info,
1271 ioctl_send_request,
1272 ioctl_allocate,
1273 ioctl_deallocate,
1274 ioctl_send_response,
1275 ioctl_initiate_bus_reset,
1276 ioctl_add_descriptor,
1277 ioctl_remove_descriptor,
1278 ioctl_create_iso_context,
1279 ioctl_queue_iso,
1280 ioctl_start_iso,
1281 ioctl_stop_iso,
Stefan Richtera64408b2007-09-29 10:41:58 +02001282 ioctl_get_cycle_timer,
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001283 ioctl_allocate_iso_resource,
1284 ioctl_deallocate_iso_resource,
Stefan Richter1ec3c022009-01-04 16:23:29 +01001285 ioctl_allocate_iso_resource_once,
1286 ioctl_deallocate_iso_resource_once,
Stefan Richter33580a32009-01-04 16:23:29 +01001287 ioctl_get_speed,
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001288 ioctl_send_broadcast_request,
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001289 ioctl_send_stream_packet,
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001290};
1291
Stefan Richter53dca512008-12-14 21:47:04 +01001292static int dispatch_ioctl(struct client *client,
1293 unsigned int cmd, void __user *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001294{
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001295 char buffer[256];
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001296 int ret;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001297
1298 if (_IOC_TYPE(cmd) != '#' ||
1299 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001300 return -EINVAL;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001301
1302 if (_IOC_DIR(cmd) & _IOC_WRITE) {
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001303 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001304 copy_from_user(buffer, arg, _IOC_SIZE(cmd)))
1305 return -EFAULT;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001306 }
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001307
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001308 ret = ioctl_handlers[_IOC_NR(cmd)](client, buffer);
1309 if (ret < 0)
1310 return ret;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001311
1312 if (_IOC_DIR(cmd) & _IOC_READ) {
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -04001313 if (_IOC_SIZE(cmd) > sizeof(buffer) ||
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001314 copy_to_user(arg, buffer, _IOC_SIZE(cmd)))
1315 return -EFAULT;
1316 }
1317
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001318 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001319}
1320
Stefan Richter53dca512008-12-14 21:47:04 +01001321static long fw_device_op_ioctl(struct file *file,
1322 unsigned int cmd, unsigned long arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001323{
1324 struct client *client = file->private_data;
1325
Jay Fenlason551f4cb2008-05-16 11:15:23 -04001326 if (fw_device_is_shutdown(client->device))
1327 return -ENODEV;
1328
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001329 return dispatch_ioctl(client, cmd, (void __user *) arg);
1330}
1331
1332#ifdef CONFIG_COMPAT
Stefan Richter53dca512008-12-14 21:47:04 +01001333static long fw_device_op_compat_ioctl(struct file *file,
1334 unsigned int cmd, unsigned long arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001335{
1336 struct client *client = file->private_data;
1337
Jay Fenlason551f4cb2008-05-16 11:15:23 -04001338 if (fw_device_is_shutdown(client->device))
1339 return -ENODEV;
1340
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001341 return dispatch_ioctl(client, cmd, compat_ptr(arg));
1342}
1343#endif
1344
1345static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
1346{
1347 struct client *client = file->private_data;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001348 enum dma_data_direction direction;
1349 unsigned long size;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001350 int page_count, ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001351
Jay Fenlason551f4cb2008-05-16 11:15:23 -04001352 if (fw_device_is_shutdown(client->device))
1353 return -ENODEV;
1354
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001355 /* FIXME: We could support multiple buffers, but we don't. */
1356 if (client->buffer.pages != NULL)
1357 return -EBUSY;
1358
1359 if (!(vma->vm_flags & VM_SHARED))
1360 return -EINVAL;
1361
1362 if (vma->vm_start & ~PAGE_MASK)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001363 return -EINVAL;
1364
1365 client->vm_start = vma->vm_start;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001366 size = vma->vm_end - vma->vm_start;
1367 page_count = size >> PAGE_SHIFT;
1368 if (size & ~PAGE_MASK)
1369 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001370
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001371 if (vma->vm_flags & VM_WRITE)
1372 direction = DMA_TO_DEVICE;
1373 else
1374 direction = DMA_FROM_DEVICE;
1375
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001376 ret = fw_iso_buffer_init(&client->buffer, client->device->card,
1377 page_count, direction);
1378 if (ret < 0)
1379 return ret;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001380
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001381 ret = fw_iso_buffer_map(&client->buffer, vma);
1382 if (ret < 0)
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001383 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1384
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001385 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001386}
1387
Jay Fenlason45ee3192008-12-21 16:47:17 +01001388static int shutdown_resource(int id, void *p, void *data)
1389{
1390 struct client_resource *r = p;
1391 struct client *client = data;
1392
1393 r->release(client, r);
Stefan Richterfb443032009-01-04 16:23:29 +01001394 client_put(client);
Jay Fenlason45ee3192008-12-21 16:47:17 +01001395
1396 return 0;
1397}
1398
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001399static int fw_device_op_release(struct inode *inode, struct file *file)
1400{
1401 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001402 struct event *e, *next_e;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001403
Stefan Richter97811e32008-12-14 19:19:23 +01001404 mutex_lock(&client->device->client_list_mutex);
1405 list_del(&client->link);
1406 mutex_unlock(&client->device->client_list_mutex);
1407
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001408 if (client->iso_context)
1409 fw_iso_context_destroy(client->iso_context);
1410
Stefan Richter36a755c2009-01-05 20:28:10 +01001411 if (client->buffer.pages)
1412 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1413
Jay Fenlason45ee3192008-12-21 16:47:17 +01001414 /* Freeze client->resource_idr and client->event_list */
Stefan Richter3ba94982009-01-04 16:23:29 +01001415 spin_lock_irq(&client->lock);
Jay Fenlason45ee3192008-12-21 16:47:17 +01001416 client->in_shutdown = true;
Stefan Richter3ba94982009-01-04 16:23:29 +01001417 spin_unlock_irq(&client->lock);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +02001418
Jay Fenlason45ee3192008-12-21 16:47:17 +01001419 idr_for_each(&client->resource_idr, shutdown_resource, client);
1420 idr_remove_all(&client->resource_idr);
1421 idr_destroy(&client->resource_idr);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -05001422
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001423 list_for_each_entry_safe(e, next_e, &client->event_list, link)
1424 kfree(e);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001425
Stefan Richterfb443032009-01-04 16:23:29 +01001426 client_put(client);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001427
1428 return 0;
1429}
1430
1431static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
1432{
1433 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001434 unsigned int mask = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001435
1436 poll_wait(file, &client->wait, pt);
1437
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001438 if (fw_device_is_shutdown(client->device))
1439 mask |= POLLHUP | POLLERR;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001440 if (!list_empty(&client->event_list))
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001441 mask |= POLLIN | POLLRDNORM;
1442
1443 return mask;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001444}
1445
Stefan Richter21ebcd12007-01-14 15:29:07 +01001446const struct file_operations fw_device_ops = {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001447 .owner = THIS_MODULE,
1448 .open = fw_device_op_open,
1449 .read = fw_device_op_read,
1450 .unlocked_ioctl = fw_device_op_ioctl,
1451 .poll = fw_device_op_poll,
1452 .release = fw_device_op_release,
1453 .mmap = fw_device_op_mmap,
1454
1455#ifdef CONFIG_COMPAT
Stefan Richter5af4e5e2007-01-21 20:45:32 +01001456 .compat_ioctl = fw_device_op_compat_ioctl,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001457#endif
1458};