blob: b558810b2da09135db5ee56ad3e449c4ceeeb52a [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 Richtereb5b35a2010-07-07 14:13:14 +020021#include <linux/bug.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010022#include <linux/compat.h>
23#include <linux/delay.h>
24#include <linux/device.h>
25#include <linux/errno.h>
Stefan Richter77c9a5d2009-06-05 16:26:18 +020026#include <linux/firewire.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010027#include <linux/firewire-cdev.h>
28#include <linux/idr.h>
Stefan Richter4a9bde92010-02-20 22:24:43 +010029#include <linux/irqflags.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010030#include <linux/jiffies.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050031#include <linux/kernel.h>
Stefan Richterfb443032009-01-04 16:23:29 +010032#include <linux/kref.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010033#include <linux/mm.h>
34#include <linux/module.h>
Stefan Richterd67cfb92008-10-05 10:37:11 +020035#include <linux/mutex.h>
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050036#include <linux/poll.h>
Stefan Richterae2a9762010-07-29 09:31:56 +020037#include <linux/sched.h> /* required for linux/wait.h */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Jay Fenlasoncf417e542008-10-03 11:19:09 -040039#include <linux/spinlock.h>
Stefan Richter281e2032010-01-24 16:45:03 +010040#include <linux/string.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010041#include <linux/time.h>
Stefan Richtere034d242009-06-06 18:36:24 +020042#include <linux/uaccess.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010043#include <linux/vmalloc.h>
44#include <linux/wait.h>
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +010045#include <linux/workqueue.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010046
Stefan Richterbe5bbd62009-01-04 16:23:29 +010047
Stefan Richter77c9a5d2009-06-05 16:26:18 +020048#include "core.h"
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050049
Stefan Richter604f4512010-06-20 22:52:55 +020050/*
51 * ABI version history is documented in linux/firewire-cdev.h.
52 */
Clemens Ladisch18d62712012-03-18 19:05:29 +010053#define FW_CDEV_KERNEL_VERSION 5
Stefan Richter8e2b2b42010-07-23 13:05:39 +020054#define FW_CDEV_VERSION_EVENT_REQUEST2 4
55#define FW_CDEV_VERSION_ALLOCATE_REGION_END 4
Clemens Ladisch8cde0212013-07-22 21:32:09 +020056#define FW_CDEV_VERSION_AUTO_FLUSH_ISO_OVERFLOW 5
Stefan Richter604f4512010-06-20 22:52:55 +020057
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050058struct client {
Kristian Høgsberg344bbc42007-03-07 12:12:43 -050059 u32 version;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050060 struct fw_device *device;
Jay Fenlason45ee3192008-12-21 16:47:17 +010061
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050062 spinlock_t lock;
Jay Fenlason45ee3192008-12-21 16:47:17 +010063 bool in_shutdown;
64 struct idr resource_idr;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050065 struct list_head event_list;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050066 wait_queue_head_t wait;
Clemens Ladisch5a5e62d2011-01-10 17:28:39 +010067 wait_queue_head_t tx_flush_wait;
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -040068 u64 bus_reset_closure;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050069
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050070 struct fw_iso_context *iso_context;
Kristian Høgsbergabaa5742007-04-30 15:03:14 -040071 u64 iso_closure;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050072 struct fw_iso_buffer buffer;
73 unsigned long vm_start;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -050074
Stefan Richterbf54e142010-07-16 22:25:51 +020075 struct list_head phy_receiver_link;
76 u64 phy_receiver_closure;
77
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -050078 struct list_head link;
Stefan Richterfb443032009-01-04 16:23:29 +010079 struct kref kref;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050080};
81
Stefan Richterfb443032009-01-04 16:23:29 +010082static inline void client_get(struct client *client)
83{
84 kref_get(&client->kref);
85}
86
87static void client_release(struct kref *kref)
88{
89 struct client *client = container_of(kref, struct client, kref);
90
91 fw_device_put(client->device);
92 kfree(client);
93}
94
95static void client_put(struct client *client)
96{
97 kref_put(&client->kref, client_release);
98}
99
Stefan Richter97c18b72009-01-04 16:23:29 +0100100struct client_resource;
101typedef void (*client_resource_release_fn_t)(struct client *,
102 struct client_resource *);
103struct client_resource {
104 client_resource_release_fn_t release;
105 int handle;
106};
107
108struct address_handler_resource {
109 struct client_resource resource;
110 struct fw_address_handler handler;
111 __u64 closure;
112 struct client *client;
113};
114
115struct outbound_transaction_resource {
116 struct client_resource resource;
117 struct fw_transaction transaction;
118};
119
120struct inbound_transaction_resource {
121 struct client_resource resource;
Jay Fenlason08bd34c2010-05-18 14:02:45 -0400122 struct fw_card *card;
Stefan Richter97c18b72009-01-04 16:23:29 +0100123 struct fw_request *request;
124 void *data;
125 size_t length;
126};
127
128struct descriptor_resource {
129 struct client_resource resource;
130 struct fw_descriptor descriptor;
131 u32 data[0];
132};
133
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100134struct iso_resource {
135 struct client_resource resource;
136 struct client *client;
137 /* Schedule work and access todo only with client->lock held. */
138 struct delayed_work work;
Stefan Richter1ec3c022009-01-04 16:23:29 +0100139 enum {ISO_RES_ALLOC, ISO_RES_REALLOC, ISO_RES_DEALLOC,
140 ISO_RES_ALLOC_ONCE, ISO_RES_DEALLOC_ONCE,} todo;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100141 int generation;
142 u64 channels;
143 s32 bandwidth;
144 struct iso_resource_event *e_alloc, *e_dealloc;
145};
146
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100147static void release_iso_resource(struct client *, struct client_resource *);
148
Stefan Richter9fb551b2009-10-08 00:41:10 +0200149static void schedule_iso_resource(struct iso_resource *r, unsigned long delay)
150{
151 client_get(r->client);
Stefan Richter105e53f2011-05-01 20:50:31 +0200152 if (!queue_delayed_work(fw_workqueue, &r->work, delay))
Stefan Richter9fb551b2009-10-08 00:41:10 +0200153 client_put(r->client);
154}
155
156static void schedule_if_iso_resource(struct client_resource *resource)
157{
158 if (resource->release == release_iso_resource)
159 schedule_iso_resource(container_of(resource,
160 struct iso_resource, resource), 0);
161}
162
Stefan Richter97c18b72009-01-04 16:23:29 +0100163/*
164 * dequeue_event() just kfree()'s the event, so the event has to be
165 * the first field in a struct XYZ_event.
166 */
167struct event {
168 struct { void *data; size_t size; } v[2];
169 struct list_head link;
170};
171
172struct bus_reset_event {
173 struct event event;
174 struct fw_cdev_event_bus_reset reset;
175};
176
177struct outbound_transaction_event {
178 struct event event;
179 struct client *client;
180 struct outbound_transaction_resource r;
181 struct fw_cdev_event_response response;
182};
183
184struct inbound_transaction_event {
185 struct event event;
Stefan Richtere2055972010-06-20 22:53:55 +0200186 union {
187 struct fw_cdev_event_request request;
188 struct fw_cdev_event_request2 request2;
189 } req;
Stefan Richter97c18b72009-01-04 16:23:29 +0100190};
191
192struct iso_interrupt_event {
193 struct event event;
194 struct fw_cdev_event_iso_interrupt interrupt;
195};
196
Stefan Richter872e3302010-07-29 18:19:22 +0200197struct iso_interrupt_mc_event {
198 struct event event;
199 struct fw_cdev_event_iso_interrupt_mc interrupt;
200};
201
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100202struct iso_resource_event {
203 struct event event;
Stefan Richtere21fcf72009-10-08 00:41:38 +0200204 struct fw_cdev_event_iso_resource iso_resource;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100205};
206
Stefan Richter850bb6f2010-07-16 22:25:14 +0200207struct outbound_phy_packet_event {
208 struct event event;
209 struct client *client;
210 struct fw_packet p;
211 struct fw_cdev_event_phy_packet phy_packet;
212};
213
Stefan Richterbf54e142010-07-16 22:25:51 +0200214struct inbound_phy_packet_event {
215 struct event event;
216 struct fw_cdev_event_phy_packet phy_packet;
217};
218
Stefan Richter9c1176b2011-08-11 00:06:04 +0200219#ifdef CONFIG_COMPAT
220static void __user *u64_to_uptr(u64 value)
221{
222 if (is_compat_task())
223 return compat_ptr(value);
224 else
225 return (void __user *)(unsigned long)value;
226}
227
228static u64 uptr_to_u64(void __user *ptr)
229{
230 if (is_compat_task())
231 return ptr_to_compat(ptr);
232 else
233 return (u64)(unsigned long)ptr;
234}
235#else
236static inline void __user *u64_to_uptr(u64 value)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500237{
238 return (void __user *)(unsigned long)value;
239}
240
Stefan Richter9c1176b2011-08-11 00:06:04 +0200241static inline u64 uptr_to_u64(void __user *ptr)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500242{
Stefan Richter9c1176b2011-08-11 00:06:04 +0200243 return (u64)(unsigned long)ptr;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500244}
Stefan Richter9c1176b2011-08-11 00:06:04 +0200245#endif /* CONFIG_COMPAT */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500246
247static int fw_device_op_open(struct inode *inode, struct file *file)
248{
249 struct fw_device *device;
250 struct client *client;
251
Stefan Richter96b19062008-02-02 15:01:09 +0100252 device = fw_device_get_by_devt(inode->i_rdev);
Kristian Høgsberga3aca3d2007-03-07 12:12:44 -0500253 if (device == NULL)
254 return -ENODEV;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500255
Jay Fenlason551f4cb2008-05-16 11:15:23 -0400256 if (fw_device_is_shutdown(device)) {
257 fw_device_put(device);
258 return -ENODEV;
259 }
260
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400261 client = kzalloc(sizeof(*client), GFP_KERNEL);
Stefan Richter96b19062008-02-02 15:01:09 +0100262 if (client == NULL) {
263 fw_device_put(device);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500264 return -ENOMEM;
Stefan Richter96b19062008-02-02 15:01:09 +0100265 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500266
Stefan Richter96b19062008-02-02 15:01:09 +0100267 client->device = device;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500268 spin_lock_init(&client->lock);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100269 idr_init(&client->resource_idr);
270 INIT_LIST_HEAD(&client->event_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500271 init_waitqueue_head(&client->wait);
Clemens Ladisch5a5e62d2011-01-10 17:28:39 +0100272 init_waitqueue_head(&client->tx_flush_wait);
Stefan Richterbf54e142010-07-16 22:25:51 +0200273 INIT_LIST_HEAD(&client->phy_receiver_link);
Stefan Richter93b37902011-07-09 16:43:22 +0200274 INIT_LIST_HEAD(&client->link);
Stefan Richterfb443032009-01-04 16:23:29 +0100275 kref_init(&client->kref);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500276
277 file->private_data = client;
278
Stefan Richter3ac26b22010-04-10 16:38:05 +0100279 return nonseekable_open(inode, file);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500280}
281
282static void queue_event(struct client *client, struct event *event,
283 void *data0, size_t size0, void *data1, size_t size1)
284{
285 unsigned long flags;
286
287 event->v[0].data = data0;
288 event->v[0].size = size0;
289 event->v[1].data = data1;
290 event->v[1].size = size1;
291
292 spin_lock_irqsave(&client->lock, flags);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100293 if (client->in_shutdown)
294 kfree(event);
295 else
296 list_add_tail(&event->link, &client->event_list);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500297 spin_unlock_irqrestore(&client->lock, flags);
Jay Fenlason83431cb2007-10-08 17:00:29 -0400298
299 wake_up_interruptible(&client->wait);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500300}
301
Stefan Richter53dca512008-12-14 21:47:04 +0100302static int dequeue_event(struct client *client,
303 char __user *buffer, size_t count)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500304{
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500305 struct event *event;
306 size_t size, total;
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100307 int i, ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500308
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100309 ret = wait_event_interruptible(client->wait,
310 !list_empty(&client->event_list) ||
311 fw_device_is_shutdown(client->device));
312 if (ret < 0)
313 return ret;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500314
315 if (list_empty(&client->event_list) &&
316 fw_device_is_shutdown(client->device))
317 return -ENODEV;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500318
Stefan Richter3ba94982009-01-04 16:23:29 +0100319 spin_lock_irq(&client->lock);
Stefan Richtera459b8a2008-12-21 16:49:57 +0100320 event = list_first_entry(&client->event_list, struct event, link);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500321 list_del(&event->link);
Stefan Richter3ba94982009-01-04 16:23:29 +0100322 spin_unlock_irq(&client->lock);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500323
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500324 total = 0;
325 for (i = 0; i < ARRAY_SIZE(event->v) && total < count; i++) {
326 size = min(event->v[i].size, count - total);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500327 if (copy_to_user(buffer + total, event->v[i].data, size)) {
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100328 ret = -EFAULT;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500329 goto out;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500330 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500331 total += size;
332 }
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100333 ret = total;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500334
335 out:
336 kfree(event);
337
Stefan Richter2dbd7d72008-12-14 21:45:45 +0100338 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500339}
340
Stefan Richter53dca512008-12-14 21:47:04 +0100341static ssize_t fw_device_op_read(struct file *file, char __user *buffer,
342 size_t count, loff_t *offset)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500343{
344 struct client *client = file->private_data;
345
346 return dequeue_event(client, buffer, count);
347}
348
Stefan Richter53dca512008-12-14 21:47:04 +0100349static void fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
350 struct client *client)
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500351{
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400352 struct fw_card *card = client->device->card;
Jay Fenlasoncf417e542008-10-03 11:19:09 -0400353
Stefan Richter3ba94982009-01-04 16:23:29 +0100354 spin_lock_irq(&card->lock);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500355
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400356 event->closure = client->bus_reset_closure;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500357 event->type = FW_CDEV_EVENT_BUS_RESET;
Stefan Richtercf5a56a2008-01-24 01:53:51 +0100358 event->generation = client->device->generation;
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400359 event->node_id = client->device->node_id;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500360 event->local_node_id = card->local_node->node_id;
Stefan Richter250b2b62010-06-21 23:24:35 +0200361 event->bm_node_id = card->bm_node_id;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500362 event->irm_node_id = card->irm_node->node_id;
363 event->root_node_id = card->root_node->node_id;
Jay Fenlasoncf417e542008-10-03 11:19:09 -0400364
Stefan Richter3ba94982009-01-04 16:23:29 +0100365 spin_unlock_irq(&card->lock);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500366}
367
Stefan Richter53dca512008-12-14 21:47:04 +0100368static void for_each_client(struct fw_device *device,
369 void (*callback)(struct client *client))
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500370{
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500371 struct client *c;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500372
Stefan Richterd67cfb92008-10-05 10:37:11 +0200373 mutex_lock(&device->client_list_mutex);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500374 list_for_each_entry(c, &device->client_list, link)
375 callback(c);
Stefan Richterd67cfb92008-10-05 10:37:11 +0200376 mutex_unlock(&device->client_list_mutex);
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500377}
378
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100379static int schedule_reallocations(int id, void *p, void *data)
380{
Stefan Richter9fb551b2009-10-08 00:41:10 +0200381 schedule_if_iso_resource(p);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100382
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100383 return 0;
384}
385
Stefan Richter53dca512008-12-14 21:47:04 +0100386static void queue_bus_reset_event(struct client *client)
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500387{
Stefan Richter97c18b72009-01-04 16:23:29 +0100388 struct bus_reset_event *e;
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500389
Stefan Richter97c18b72009-01-04 16:23:29 +0100390 e = kzalloc(sizeof(*e), GFP_KERNEL);
391 if (e == NULL) {
Stefan Richter26b49502012-02-18 22:03:14 +0100392 fw_notice(client->device->card, "out of memory when allocating event\n");
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500393 return;
394 }
395
Stefan Richter97c18b72009-01-04 16:23:29 +0100396 fill_bus_reset_event(&e->reset, client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500397
Stefan Richter97c18b72009-01-04 16:23:29 +0100398 queue_event(client, &e->event,
399 &e->reset, sizeof(e->reset), NULL, 0);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100400
401 spin_lock_irq(&client->lock);
402 idr_for_each(&client->resource_idr, schedule_reallocations, client);
403 spin_unlock_irq(&client->lock);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500404}
405
406void fw_device_cdev_update(struct fw_device *device)
407{
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500408 for_each_client(device, queue_bus_reset_event);
409}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500410
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500411static void wake_up_client(struct client *client)
412{
413 wake_up_interruptible(&client->wait);
414}
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500415
Kristian Høgsberg2603bf22007-03-07 12:12:48 -0500416void fw_device_cdev_remove(struct fw_device *device)
417{
418 for_each_client(device, wake_up_client);
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -0500419}
420
Stefan Richter6e95dea2010-02-21 17:56:21 +0100421union ioctl_arg {
422 struct fw_cdev_get_info get_info;
423 struct fw_cdev_send_request send_request;
424 struct fw_cdev_allocate allocate;
425 struct fw_cdev_deallocate deallocate;
426 struct fw_cdev_send_response send_response;
427 struct fw_cdev_initiate_bus_reset initiate_bus_reset;
428 struct fw_cdev_add_descriptor add_descriptor;
429 struct fw_cdev_remove_descriptor remove_descriptor;
430 struct fw_cdev_create_iso_context create_iso_context;
431 struct fw_cdev_queue_iso queue_iso;
432 struct fw_cdev_start_iso start_iso;
433 struct fw_cdev_stop_iso stop_iso;
434 struct fw_cdev_get_cycle_timer get_cycle_timer;
435 struct fw_cdev_allocate_iso_resource allocate_iso_resource;
436 struct fw_cdev_send_stream_packet send_stream_packet;
437 struct fw_cdev_get_cycle_timer2 get_cycle_timer2;
Stefan Richter850bb6f2010-07-16 22:25:14 +0200438 struct fw_cdev_send_phy_packet send_phy_packet;
Stefan Richterbf54e142010-07-16 22:25:51 +0200439 struct fw_cdev_receive_phy_packets receive_phy_packets;
Stefan Richter872e3302010-07-29 18:19:22 +0200440 struct fw_cdev_set_iso_channels set_iso_channels;
Clemens Ladischd1bbd202012-03-18 19:06:39 +0100441 struct fw_cdev_flush_iso flush_iso;
Stefan Richter6e95dea2010-02-21 17:56:21 +0100442};
443
444static int ioctl_get_info(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500445{
Stefan Richter6e95dea2010-02-21 17:56:21 +0100446 struct fw_cdev_get_info *a = &arg->get_info;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500447 struct fw_cdev_event_bus_reset bus_reset;
Stefan Richterc9755e12008-03-24 20:54:28 +0100448 unsigned long ret = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500449
Stefan Richter6e95dea2010-02-21 17:56:21 +0100450 client->version = a->version;
Stefan Richter604f4512010-06-20 22:52:55 +0200451 a->version = FW_CDEV_KERNEL_VERSION;
Stefan Richter6e95dea2010-02-21 17:56:21 +0100452 a->card = client->device->card->index;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500453
Stefan Richterc9755e12008-03-24 20:54:28 +0100454 down_read(&fw_device_rwsem);
455
Stefan Richter6e95dea2010-02-21 17:56:21 +0100456 if (a->rom != 0) {
457 size_t want = a->rom_length;
Stefan Richterd84702a2007-03-20 19:42:15 +0100458 size_t have = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500459
Stefan Richter6e95dea2010-02-21 17:56:21 +0100460 ret = copy_to_user(u64_to_uptr(a->rom),
461 client->device->config_rom, min(want, have));
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500462 }
Stefan Richter6e95dea2010-02-21 17:56:21 +0100463 a->rom_length = client->device->config_rom_length * 4;
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500464
Stefan Richterc9755e12008-03-24 20:54:28 +0100465 up_read(&fw_device_rwsem);
466
467 if (ret != 0)
468 return -EFAULT;
469
Stefan Richter93b37902011-07-09 16:43:22 +0200470 mutex_lock(&client->device->client_list_mutex);
471
Stefan Richter6e95dea2010-02-21 17:56:21 +0100472 client->bus_reset_closure = a->bus_reset_closure;
473 if (a->bus_reset != 0) {
Kristian Høgsbergda8ecff2007-03-27 01:43:39 -0400474 fill_bus_reset_event(&bus_reset, client);
Stefan Richter303a7442012-10-06 14:12:56 +0200475 /* unaligned size of bus_reset is 36 bytes */
476 ret = copy_to_user(u64_to_uptr(a->bus_reset), &bus_reset, 36);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500477 }
Stefan Richter93b37902011-07-09 16:43:22 +0200478 if (ret == 0 && list_empty(&client->link))
479 list_add_tail(&client->link, &client->device->client_list);
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500480
Stefan Richter93b37902011-07-09 16:43:22 +0200481 mutex_unlock(&client->device->client_list_mutex);
482
483 return ret ? -EFAULT : 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500484}
485
Stefan Richter53dca512008-12-14 21:47:04 +0100486static int add_client_resource(struct client *client,
487 struct client_resource *resource, gfp_t gfp_mask)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400488{
489 unsigned long flags;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100490 int ret;
491
492 retry:
493 if (idr_pre_get(&client->resource_idr, gfp_mask) == 0)
494 return -ENOMEM;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400495
496 spin_lock_irqsave(&client->lock, flags);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100497 if (client->in_shutdown)
498 ret = -ECANCELED;
499 else
500 ret = idr_get_new(&client->resource_idr, resource,
501 &resource->handle);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100502 if (ret >= 0) {
Stefan Richterfb443032009-01-04 16:23:29 +0100503 client_get(client);
Stefan Richter9fb551b2009-10-08 00:41:10 +0200504 schedule_if_iso_resource(resource);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +0100505 }
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400506 spin_unlock_irqrestore(&client->lock, flags);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100507
508 if (ret == -EAGAIN)
509 goto retry;
510
511 return ret < 0 ? ret : 0;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400512}
513
Stefan Richter53dca512008-12-14 21:47:04 +0100514static int release_client_resource(struct client *client, u32 handle,
515 client_resource_release_fn_t release,
Stefan Richtere21fcf72009-10-08 00:41:38 +0200516 struct client_resource **return_resource)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400517{
Stefan Richtere21fcf72009-10-08 00:41:38 +0200518 struct client_resource *resource;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400519
Stefan Richter3ba94982009-01-04 16:23:29 +0100520 spin_lock_irq(&client->lock);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100521 if (client->in_shutdown)
Stefan Richtere21fcf72009-10-08 00:41:38 +0200522 resource = NULL;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100523 else
Stefan Richtere21fcf72009-10-08 00:41:38 +0200524 resource = idr_find(&client->resource_idr, handle);
525 if (resource && resource->release == release)
Jay Fenlason45ee3192008-12-21 16:47:17 +0100526 idr_remove(&client->resource_idr, handle);
Stefan Richter3ba94982009-01-04 16:23:29 +0100527 spin_unlock_irq(&client->lock);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400528
Stefan Richtere21fcf72009-10-08 00:41:38 +0200529 if (!(resource && resource->release == release))
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400530 return -EINVAL;
531
Stefan Richtere21fcf72009-10-08 00:41:38 +0200532 if (return_resource)
533 *return_resource = resource;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400534 else
Stefan Richtere21fcf72009-10-08 00:41:38 +0200535 resource->release(client, resource);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400536
Stefan Richterfb443032009-01-04 16:23:29 +0100537 client_put(client);
538
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400539 return 0;
540}
541
Stefan Richter53dca512008-12-14 21:47:04 +0100542static void release_transaction(struct client *client,
543 struct client_resource *resource)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400544{
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400545}
546
Stefan Richter53dca512008-12-14 21:47:04 +0100547static void complete_transaction(struct fw_card *card, int rcode,
548 void *payload, size_t length, void *data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500549{
Stefan Richter97c18b72009-01-04 16:23:29 +0100550 struct outbound_transaction_event *e = data;
551 struct fw_cdev_event_response *rsp = &e->response;
552 struct client *client = e->client;
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500553 unsigned long flags;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500554
Stefan Richter97c18b72009-01-04 16:23:29 +0100555 if (length < rsp->length)
556 rsp->length = length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500557 if (rcode == RCODE_COMPLETE)
Stefan Richter97c18b72009-01-04 16:23:29 +0100558 memcpy(rsp->data, payload, rsp->length);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500559
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500560 spin_lock_irqsave(&client->lock, flags);
Clemens Ladisch5a5e62d2011-01-10 17:28:39 +0100561 idr_remove(&client->resource_idr, e->r.resource.handle);
562 if (client->in_shutdown)
563 wake_up(&client->tx_flush_wait);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -0500564 spin_unlock_irqrestore(&client->lock, flags);
565
Stefan Richter97c18b72009-01-04 16:23:29 +0100566 rsp->type = FW_CDEV_EVENT_RESPONSE;
567 rsp->rcode = rcode;
David Moore8401d922008-07-29 23:46:25 -0700568
569 /*
Stefan Richter97c18b72009-01-04 16:23:29 +0100570 * In the case that sizeof(*rsp) doesn't align with the position of the
David Moore8401d922008-07-29 23:46:25 -0700571 * data, and the read is short, preserve an extra copy of the data
572 * to stay compatible with a pre-2.6.27 bug. Since the bug is harmless
573 * for short reads and some apps depended on it, this is both safe
574 * and prudent for compatibility.
575 */
Stefan Richter97c18b72009-01-04 16:23:29 +0100576 if (rsp->length <= sizeof(*rsp) - offsetof(typeof(*rsp), data))
577 queue_event(client, &e->event, rsp, sizeof(*rsp),
578 rsp->data, rsp->length);
David Moore8401d922008-07-29 23:46:25 -0700579 else
Stefan Richter97c18b72009-01-04 16:23:29 +0100580 queue_event(client, &e->event, rsp, sizeof(*rsp) + rsp->length,
David Moore8401d922008-07-29 23:46:25 -0700581 NULL, 0);
Stefan Richterfb443032009-01-04 16:23:29 +0100582
Clemens Ladisch5a5e62d2011-01-10 17:28:39 +0100583 /* Drop the idr's reference */
584 client_put(client);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500585}
586
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100587static int init_request(struct client *client,
588 struct fw_cdev_send_request *request,
589 int destination_id, int speed)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500590{
Stefan Richter97c18b72009-01-04 16:23:29 +0100591 struct outbound_transaction_event *e;
Stefan Richter1f3125a2008-12-05 22:44:42 +0100592 int ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500593
Stefan Richter18e9b102009-03-10 21:02:21 +0100594 if (request->tcode != TCODE_STREAM_DATA &&
595 (request->length > 4096 || request->length > 512 << speed))
Stefan Richter5d3fd692009-01-04 16:23:29 +0100596 return -EIO;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500597
Clemens Ladischa8e93f32010-07-07 14:37:30 +0200598 if (request->tcode == TCODE_WRITE_QUADLET_REQUEST &&
599 request->length < 4)
600 return -EINVAL;
601
Stefan Richter97c18b72009-01-04 16:23:29 +0100602 e = kmalloc(sizeof(*e) + request->length, GFP_KERNEL);
603 if (e == NULL)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500604 return -ENOMEM;
605
Stefan Richter97c18b72009-01-04 16:23:29 +0100606 e->client = client;
607 e->response.length = request->length;
608 e->response.closure = request->closure;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500609
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400610 if (request->data &&
Stefan Richter97c18b72009-01-04 16:23:29 +0100611 copy_from_user(e->response.data,
Kristian Høgsberg4f259222007-04-30 15:03:13 -0400612 u64_to_uptr(request->data), request->length)) {
Stefan Richter1f3125a2008-12-05 22:44:42 +0100613 ret = -EFAULT;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100614 goto failed;
Stefan Richter1f3125a2008-12-05 22:44:42 +0100615 }
616
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100617 e->r.resource.release = release_transaction;
618 ret = add_client_resource(client, &e->r.resource, GFP_KERNEL);
619 if (ret < 0)
620 goto failed;
621
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100622 fw_send_request(client->device->card, &e->r.transaction,
Stefan Richter664d8012009-03-10 21:01:54 +0100623 request->tcode, destination_id, request->generation,
624 speed, request->offset, e->response.data,
625 request->length, complete_transaction, e);
626 return 0;
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100627
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100628 failed:
629 kfree(e);
630
631 return ret;
632}
633
Stefan Richter6e95dea2010-02-21 17:56:21 +0100634static int ioctl_send_request(struct client *client, union ioctl_arg *arg)
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100635{
Stefan Richter6e95dea2010-02-21 17:56:21 +0100636 switch (arg->send_request.tcode) {
Stefan Richter1f3125a2008-12-05 22:44:42 +0100637 case TCODE_WRITE_QUADLET_REQUEST:
638 case TCODE_WRITE_BLOCK_REQUEST:
639 case TCODE_READ_QUADLET_REQUEST:
640 case TCODE_READ_BLOCK_REQUEST:
641 case TCODE_LOCK_MASK_SWAP:
642 case TCODE_LOCK_COMPARE_SWAP:
643 case TCODE_LOCK_FETCH_ADD:
644 case TCODE_LOCK_LITTLE_ADD:
645 case TCODE_LOCK_BOUNDED_ADD:
646 case TCODE_LOCK_WRAP_ADD:
647 case TCODE_LOCK_VENDOR_DEPENDENT:
648 break;
649 default:
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100650 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500651 }
652
Stefan Richter6e95dea2010-02-21 17:56:21 +0100653 return init_request(client, &arg->send_request, client->device->node_id,
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +0100654 client->device->max_speed);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500655}
656
Stefan Richter281e2032010-01-24 16:45:03 +0100657static inline bool is_fcp_request(struct fw_request *request)
658{
659 return request == NULL;
660}
661
Stefan Richter53dca512008-12-14 21:47:04 +0100662static void release_request(struct client *client,
663 struct client_resource *resource)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400664{
Stefan Richter97c18b72009-01-04 16:23:29 +0100665 struct inbound_transaction_resource *r = container_of(resource,
666 struct inbound_transaction_resource, resource);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400667
Stefan Richter281e2032010-01-24 16:45:03 +0100668 if (is_fcp_request(r->request))
669 kfree(r->data);
670 else
Jay Fenlason08bd34c2010-05-18 14:02:45 -0400671 fw_send_response(r->card, r->request, RCODE_CONFLICT_ERROR);
Stefan Richter0244f572010-06-20 22:52:27 +0200672
673 fw_card_put(r->card);
Stefan Richter97c18b72009-01-04 16:23:29 +0100674 kfree(r);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400675}
676
Stefan Richter97c18b72009-01-04 16:23:29 +0100677static void handle_request(struct fw_card *card, struct fw_request *request,
Stefan Richter53dca512008-12-14 21:47:04 +0100678 int tcode, int destination, int source,
Stefan Richter33e553f2010-06-20 22:50:35 +0200679 int generation, unsigned long long offset,
Stefan Richter53dca512008-12-14 21:47:04 +0100680 void *payload, size_t length, void *callback_data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500681{
Stefan Richter97c18b72009-01-04 16:23:29 +0100682 struct address_handler_resource *handler = callback_data;
683 struct inbound_transaction_resource *r;
684 struct inbound_transaction_event *e;
Stefan Richtere2055972010-06-20 22:53:55 +0200685 size_t event_size0;
Stefan Richter281e2032010-01-24 16:45:03 +0100686 void *fcp_frame = NULL;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100687 int ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500688
Stefan Richter0244f572010-06-20 22:52:27 +0200689 /* card may be different from handler->client->device->card */
690 fw_card_get(card);
691
Stefan Richter97c18b72009-01-04 16:23:29 +0100692 r = kmalloc(sizeof(*r), GFP_ATOMIC);
Kristian Høgsberg2d826cc2007-05-09 19:23:14 -0400693 e = kmalloc(sizeof(*e), GFP_ATOMIC);
Stefan Richterbf54e142010-07-16 22:25:51 +0200694 if (r == NULL || e == NULL) {
Stefan Richter26b49502012-02-18 22:03:14 +0100695 fw_notice(card, "out of memory when allocating event\n");
Jay Fenlason45ee3192008-12-21 16:47:17 +0100696 goto failed;
Stefan Richterbf54e142010-07-16 22:25:51 +0200697 }
Jay Fenlason08bd34c2010-05-18 14:02:45 -0400698 r->card = card;
Stefan Richter97c18b72009-01-04 16:23:29 +0100699 r->request = request;
700 r->data = payload;
701 r->length = length;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500702
Stefan Richter281e2032010-01-24 16:45:03 +0100703 if (is_fcp_request(request)) {
704 /*
705 * FIXME: Let core-transaction.c manage a
706 * single reference-counted copy?
707 */
708 fcp_frame = kmemdup(payload, length, GFP_ATOMIC);
709 if (fcp_frame == NULL)
710 goto failed;
711
712 r->data = fcp_frame;
713 }
714
Stefan Richter97c18b72009-01-04 16:23:29 +0100715 r->resource.release = release_request;
716 ret = add_client_resource(handler->client, &r->resource, GFP_ATOMIC);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100717 if (ret < 0)
718 goto failed;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500719
Stefan Richtere2055972010-06-20 22:53:55 +0200720 if (handler->client->version < FW_CDEV_VERSION_EVENT_REQUEST2) {
721 struct fw_cdev_event_request *req = &e->req.request;
722
723 if (tcode & 0x10)
724 tcode = TCODE_LOCK_REQUEST;
725
726 req->type = FW_CDEV_EVENT_REQUEST;
727 req->tcode = tcode;
728 req->offset = offset;
729 req->length = length;
730 req->handle = r->resource.handle;
731 req->closure = handler->closure;
732 event_size0 = sizeof(*req);
733 } else {
734 struct fw_cdev_event_request2 *req = &e->req.request2;
735
736 req->type = FW_CDEV_EVENT_REQUEST2;
737 req->tcode = tcode;
738 req->offset = offset;
739 req->source_node_id = source;
740 req->destination_node_id = destination;
741 req->card = card->index;
742 req->generation = generation;
743 req->length = length;
744 req->handle = r->resource.handle;
745 req->closure = handler->closure;
746 event_size0 = sizeof(*req);
747 }
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500748
Stefan Richter97c18b72009-01-04 16:23:29 +0100749 queue_event(handler->client, &e->event,
Stefan Richtere2055972010-06-20 22:53:55 +0200750 &e->req, event_size0, r->data, length);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100751 return;
752
753 failed:
Stefan Richter97c18b72009-01-04 16:23:29 +0100754 kfree(r);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100755 kfree(e);
Stefan Richter281e2032010-01-24 16:45:03 +0100756 kfree(fcp_frame);
757
758 if (!is_fcp_request(request))
Clemens Ladischdb5d2472009-12-24 12:05:58 +0100759 fw_send_response(card, request, RCODE_CONFLICT_ERROR);
Stefan Richter0244f572010-06-20 22:52:27 +0200760
761 fw_card_put(card);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500762}
763
Stefan Richter53dca512008-12-14 21:47:04 +0100764static void release_address_handler(struct client *client,
765 struct client_resource *resource)
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400766{
Stefan Richter97c18b72009-01-04 16:23:29 +0100767 struct address_handler_resource *r =
768 container_of(resource, struct address_handler_resource, resource);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400769
Stefan Richter97c18b72009-01-04 16:23:29 +0100770 fw_core_remove_address_handler(&r->handler);
771 kfree(r);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400772}
773
Stefan Richter6e95dea2010-02-21 17:56:21 +0100774static int ioctl_allocate(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500775{
Stefan Richter6e95dea2010-02-21 17:56:21 +0100776 struct fw_cdev_allocate *a = &arg->allocate;
Stefan Richter97c18b72009-01-04 16:23:29 +0100777 struct address_handler_resource *r;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500778 struct fw_address_region region;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100779 int ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500780
Stefan Richter97c18b72009-01-04 16:23:29 +0100781 r = kmalloc(sizeof(*r), GFP_KERNEL);
782 if (r == NULL)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500783 return -ENOMEM;
784
Stefan Richter6e95dea2010-02-21 17:56:21 +0100785 region.start = a->offset;
Stefan Richter8e2b2b42010-07-23 13:05:39 +0200786 if (client->version < FW_CDEV_VERSION_ALLOCATE_REGION_END)
787 region.end = a->offset + a->length;
788 else
789 region.end = a->region_end;
790
Stefan Richter6e95dea2010-02-21 17:56:21 +0100791 r->handler.length = a->length;
Stefan Richter97c18b72009-01-04 16:23:29 +0100792 r->handler.address_callback = handle_request;
Stefan Richter6e95dea2010-02-21 17:56:21 +0100793 r->handler.callback_data = r;
794 r->closure = a->closure;
795 r->client = client;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500796
Stefan Richter97c18b72009-01-04 16:23:29 +0100797 ret = fw_core_add_address_handler(&r->handler, &region);
Stefan Richter3e0b5f02008-12-14 19:21:01 +0100798 if (ret < 0) {
Stefan Richter97c18b72009-01-04 16:23:29 +0100799 kfree(r);
Stefan Richter3e0b5f02008-12-14 19:21:01 +0100800 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500801 }
Stefan Richter8e2b2b42010-07-23 13:05:39 +0200802 a->offset = r->handler.offset;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500803
Stefan Richter97c18b72009-01-04 16:23:29 +0100804 r->resource.release = release_address_handler;
805 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100806 if (ret < 0) {
Stefan Richter97c18b72009-01-04 16:23:29 +0100807 release_address_handler(client, &r->resource);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100808 return ret;
809 }
Stefan Richter6e95dea2010-02-21 17:56:21 +0100810 a->handle = r->resource.handle;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500811
812 return 0;
813}
814
Stefan Richter6e95dea2010-02-21 17:56:21 +0100815static int ioctl_deallocate(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg94723162007-03-14 17:34:55 -0400816{
Stefan Richter6e95dea2010-02-21 17:56:21 +0100817 return release_client_resource(client, arg->deallocate.handle,
Jay Fenlason45ee3192008-12-21 16:47:17 +0100818 release_address_handler, NULL);
Kristian Høgsberg94723162007-03-14 17:34:55 -0400819}
820
Stefan Richter6e95dea2010-02-21 17:56:21 +0100821static int ioctl_send_response(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500822{
Stefan Richter6e95dea2010-02-21 17:56:21 +0100823 struct fw_cdev_send_response *a = &arg->send_response;
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400824 struct client_resource *resource;
Stefan Richter97c18b72009-01-04 16:23:29 +0100825 struct inbound_transaction_resource *r;
Stefan Richter7e44c0b2009-10-08 00:39:56 +0200826 int ret = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500827
Stefan Richter6e95dea2010-02-21 17:56:21 +0100828 if (release_client_resource(client, a->handle,
Jay Fenlason45ee3192008-12-21 16:47:17 +0100829 release_request, &resource) < 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500830 return -EINVAL;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100831
Stefan Richter97c18b72009-01-04 16:23:29 +0100832 r = container_of(resource, struct inbound_transaction_resource,
833 resource);
Stefan Richter281e2032010-01-24 16:45:03 +0100834 if (is_fcp_request(r->request))
835 goto out;
836
Clemens Ladischa10c0ce72010-05-19 08:28:32 +0200837 if (a->length != fw_get_response_length(r->request)) {
838 ret = -EINVAL;
839 kfree(r->request);
840 goto out;
841 }
842 if (copy_from_user(r->data, u64_to_uptr(a->data), a->length)) {
Stefan Richter281e2032010-01-24 16:45:03 +0100843 ret = -EFAULT;
844 kfree(r->request);
845 goto out;
Stefan Richter7e44c0b2009-10-08 00:39:56 +0200846 }
Jay Fenlason08bd34c2010-05-18 14:02:45 -0400847 fw_send_response(r->card, r->request, a->rcode);
Stefan Richter7e44c0b2009-10-08 00:39:56 +0200848 out:
Stefan Richter0244f572010-06-20 22:52:27 +0200849 fw_card_put(r->card);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500850 kfree(r);
851
Stefan Richter7e44c0b2009-10-08 00:39:56 +0200852 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500853}
854
Stefan Richter6e95dea2010-02-21 17:56:21 +0100855static int ioctl_initiate_bus_reset(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg53718422007-03-07 12:12:42 -0500856{
Stefan Richter02d37be2010-07-08 16:09:06 +0200857 fw_schedule_bus_reset(client->device->card, true,
Stefan Richter6e95dea2010-02-21 17:56:21 +0100858 arg->initiate_bus_reset.type == FW_CDEV_SHORT_RESET);
Stefan Richter02d37be2010-07-08 16:09:06 +0200859 return 0;
Kristian Høgsberg53718422007-03-07 12:12:42 -0500860}
861
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400862static void release_descriptor(struct client *client,
863 struct client_resource *resource)
864{
Stefan Richter97c18b72009-01-04 16:23:29 +0100865 struct descriptor_resource *r =
866 container_of(resource, struct descriptor_resource, resource);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400867
Stefan Richter97c18b72009-01-04 16:23:29 +0100868 fw_core_remove_descriptor(&r->descriptor);
869 kfree(r);
Kristian Høgsberg3964a442007-03-27 01:43:41 -0400870}
871
Stefan Richter6e95dea2010-02-21 17:56:21 +0100872static int ioctl_add_descriptor(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200873{
Stefan Richter6e95dea2010-02-21 17:56:21 +0100874 struct fw_cdev_add_descriptor *a = &arg->add_descriptor;
Stefan Richter97c18b72009-01-04 16:23:29 +0100875 struct descriptor_resource *r;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100876 int ret;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200877
Stefan Richterde487da2009-03-10 21:00:23 +0100878 /* Access policy: Allow this ioctl only on local nodes' device files. */
Stefan Richter92368892009-05-13 21:42:14 +0200879 if (!client->device->is_local)
Stefan Richterde487da2009-03-10 21:00:23 +0100880 return -ENOSYS;
881
Stefan Richter6e95dea2010-02-21 17:56:21 +0100882 if (a->length > 256)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200883 return -EINVAL;
884
Stefan Richter6e95dea2010-02-21 17:56:21 +0100885 r = kmalloc(sizeof(*r) + a->length * 4, GFP_KERNEL);
Stefan Richter97c18b72009-01-04 16:23:29 +0100886 if (r == NULL)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200887 return -ENOMEM;
888
Stefan Richter6e95dea2010-02-21 17:56:21 +0100889 if (copy_from_user(r->data, u64_to_uptr(a->data), a->length * 4)) {
Jay Fenlason45ee3192008-12-21 16:47:17 +0100890 ret = -EFAULT;
891 goto failed;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200892 }
893
Stefan Richter6e95dea2010-02-21 17:56:21 +0100894 r->descriptor.length = a->length;
895 r->descriptor.immediate = a->immediate;
896 r->descriptor.key = a->key;
Stefan Richter97c18b72009-01-04 16:23:29 +0100897 r->descriptor.data = r->data;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200898
Stefan Richter97c18b72009-01-04 16:23:29 +0100899 ret = fw_core_add_descriptor(&r->descriptor);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100900 if (ret < 0)
901 goto failed;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200902
Stefan Richter97c18b72009-01-04 16:23:29 +0100903 r->resource.release = release_descriptor;
904 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100905 if (ret < 0) {
Stefan Richter97c18b72009-01-04 16:23:29 +0100906 fw_core_remove_descriptor(&r->descriptor);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100907 goto failed;
908 }
Stefan Richter6e95dea2010-02-21 17:56:21 +0100909 a->handle = r->resource.handle;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200910
911 return 0;
Jay Fenlason45ee3192008-12-21 16:47:17 +0100912 failed:
Stefan Richter97c18b72009-01-04 16:23:29 +0100913 kfree(r);
Jay Fenlason45ee3192008-12-21 16:47:17 +0100914
915 return ret;
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200916}
917
Stefan Richter6e95dea2010-02-21 17:56:21 +0100918static int ioctl_remove_descriptor(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200919{
Stefan Richter6e95dea2010-02-21 17:56:21 +0100920 return release_client_resource(client, arg->remove_descriptor.handle,
Jay Fenlason45ee3192008-12-21 16:47:17 +0100921 release_descriptor, NULL);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +0200922}
923
Stefan Richter53dca512008-12-14 21:47:04 +0100924static void iso_callback(struct fw_iso_context *context, u32 cycle,
925 size_t header_length, void *header, void *data)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500926{
927 struct client *client = data;
Stefan Richter97c18b72009-01-04 16:23:29 +0100928 struct iso_interrupt_event *e;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500929
Stefan Richter56d04cb2010-06-08 00:20:10 +0200930 e = kmalloc(sizeof(*e) + header_length, GFP_ATOMIC);
Stefan Richterbf54e142010-07-16 22:25:51 +0200931 if (e == NULL) {
Stefan Richter26b49502012-02-18 22:03:14 +0100932 fw_notice(context->card, "out of memory when allocating event\n");
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500933 return;
Stefan Richterbf54e142010-07-16 22:25:51 +0200934 }
Stefan Richter97c18b72009-01-04 16:23:29 +0100935 e->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT;
936 e->interrupt.closure = client->iso_closure;
937 e->interrupt.cycle = cycle;
938 e->interrupt.header_length = header_length;
939 memcpy(e->interrupt.header, header, header_length);
940 queue_event(client, &e->event, &e->interrupt,
941 sizeof(e->interrupt) + header_length, NULL, 0);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500942}
943
Stefan Richter872e3302010-07-29 18:19:22 +0200944static void iso_mc_callback(struct fw_iso_context *context,
945 dma_addr_t completed, void *data)
946{
947 struct client *client = data;
948 struct iso_interrupt_mc_event *e;
949
950 e = kmalloc(sizeof(*e), GFP_ATOMIC);
951 if (e == NULL) {
Stefan Richter26b49502012-02-18 22:03:14 +0100952 fw_notice(context->card, "out of memory when allocating event\n");
Stefan Richter872e3302010-07-29 18:19:22 +0200953 return;
954 }
955 e->interrupt.type = FW_CDEV_EVENT_ISO_INTERRUPT_MULTICHANNEL;
956 e->interrupt.closure = client->iso_closure;
957 e->interrupt.completed = fw_iso_buffer_lookup(&client->buffer,
958 completed);
959 queue_event(client, &e->event, &e->interrupt,
960 sizeof(e->interrupt), NULL, 0);
961}
962
Stefan Richter6e95dea2010-02-21 17:56:21 +0100963static int ioctl_create_iso_context(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500964{
Stefan Richter6e95dea2010-02-21 17:56:21 +0100965 struct fw_cdev_create_iso_context *a = &arg->create_iso_context;
Kristian Høgsberg24315c52007-06-20 17:48:07 -0400966 struct fw_iso_context *context;
Stefan Richter872e3302010-07-29 18:19:22 +0200967 fw_iso_callback_t cb;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500968
Stefan Richtereb5b35a2010-07-07 14:13:14 +0200969 BUILD_BUG_ON(FW_CDEV_ISO_CONTEXT_TRANSMIT != FW_ISO_CONTEXT_TRANSMIT ||
Stefan Richter872e3302010-07-29 18:19:22 +0200970 FW_CDEV_ISO_CONTEXT_RECEIVE != FW_ISO_CONTEXT_RECEIVE ||
971 FW_CDEV_ISO_CONTEXT_RECEIVE_MULTICHANNEL !=
972 FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL);
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500973
Stefan Richter6e95dea2010-02-21 17:56:21 +0100974 switch (a->type) {
Stefan Richter872e3302010-07-29 18:19:22 +0200975 case FW_ISO_CONTEXT_TRANSMIT:
976 if (a->speed > SCODE_3200 || a->channel > 63)
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400977 return -EINVAL;
Stefan Richter872e3302010-07-29 18:19:22 +0200978
979 cb = iso_callback;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400980 break;
981
Stefan Richter872e3302010-07-29 18:19:22 +0200982 case FW_ISO_CONTEXT_RECEIVE:
983 if (a->header_size < 4 || (a->header_size & 3) ||
984 a->channel > 63)
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400985 return -EINVAL;
Stefan Richter872e3302010-07-29 18:19:22 +0200986
987 cb = iso_callback;
988 break;
989
990 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
991 cb = (fw_iso_callback_t)iso_mc_callback;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400992 break;
993
994 default:
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500995 return -EINVAL;
Kristian Høgsbergc70dc782007-03-14 17:34:53 -0400996 }
997
Stefan Richter6e95dea2010-02-21 17:56:21 +0100998 context = fw_iso_context_create(client->device->card, a->type,
Stefan Richter872e3302010-07-29 18:19:22 +0200999 a->channel, a->speed, a->header_size, cb, client);
Kristian Høgsberg24315c52007-06-20 17:48:07 -04001000 if (IS_ERR(context))
1001 return PTR_ERR(context);
Clemens Ladisch8cde0212013-07-22 21:32:09 +02001002 if (client->version < FW_CDEV_VERSION_AUTO_FLUSH_ISO_OVERFLOW)
1003 context->drop_overflow_headers = true;
Kristian Høgsberg24315c52007-06-20 17:48:07 -04001004
Clemens Ladischbdfe2732010-06-14 11:46:25 +02001005 /* We only support one context at this time. */
1006 spin_lock_irq(&client->lock);
1007 if (client->iso_context != NULL) {
1008 spin_unlock_irq(&client->lock);
1009 fw_iso_context_destroy(context);
1010 return -EBUSY;
1011 }
Stefan Richter6e95dea2010-02-21 17:56:21 +01001012 client->iso_closure = a->closure;
Kristian Høgsberg24315c52007-06-20 17:48:07 -04001013 client->iso_context = context;
Clemens Ladischbdfe2732010-06-14 11:46:25 +02001014 spin_unlock_irq(&client->lock);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001015
Stefan Richter6e95dea2010-02-21 17:56:21 +01001016 a->handle = 0;
Kristian Høgsbergabaa5742007-04-30 15:03:14 -04001017
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001018 return 0;
1019}
1020
Stefan Richter872e3302010-07-29 18:19:22 +02001021static int ioctl_set_iso_channels(struct client *client, union ioctl_arg *arg)
1022{
1023 struct fw_cdev_set_iso_channels *a = &arg->set_iso_channels;
1024 struct fw_iso_context *ctx = client->iso_context;
1025
1026 if (ctx == NULL || a->handle != 0)
1027 return -EINVAL;
1028
1029 return fw_iso_context_set_channels(ctx, &a->channels);
1030}
1031
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001032/* Macros for decoding the iso packet control header. */
1033#define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
1034#define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
1035#define GET_SKIP(v) (((v) >> 17) & 0x01)
Stefan Richter7a100342008-09-12 18:09:55 +02001036#define GET_TAG(v) (((v) >> 18) & 0x03)
1037#define GET_SY(v) (((v) >> 20) & 0x0f)
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001038#define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
1039
Stefan Richter6e95dea2010-02-21 17:56:21 +01001040static int ioctl_queue_iso(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001041{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001042 struct fw_cdev_queue_iso *a = &arg->queue_iso;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001043 struct fw_cdev_iso_packet __user *p, *end, *next;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001044 struct fw_iso_context *ctx = client->iso_context;
Stefan Richter872e3302010-07-29 18:19:22 +02001045 unsigned long payload, buffer_end, transmit_header_bytes = 0;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001046 u32 control;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001047 int count;
1048 struct {
1049 struct fw_iso_packet packet;
1050 u8 header[256];
1051 } u;
1052
Stefan Richter6e95dea2010-02-21 17:56:21 +01001053 if (ctx == NULL || a->handle != 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001054 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001055
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001056 /*
1057 * If the user passes a non-NULL data pointer, has mmap()'ed
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001058 * the iso buffer, and the pointer points inside the buffer,
1059 * we setup the payload pointers accordingly. Otherwise we
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001060 * set them both to 0, which will still let packets with
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001061 * payload_length == 0 through. In other words, if no packets
1062 * use the indirect payload, the iso buffer need not be mapped
Stefan Richter6e95dea2010-02-21 17:56:21 +01001063 * and the a->data pointer is ignored.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001064 */
Stefan Richter6e95dea2010-02-21 17:56:21 +01001065 payload = (unsigned long)a->data - client->vm_start;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +02001066 buffer_end = client->buffer.page_count << PAGE_SHIFT;
Stefan Richter6e95dea2010-02-21 17:56:21 +01001067 if (a->data == 0 || client->buffer.pages == NULL ||
Kristian Høgsbergef370ee2007-03-28 20:46:23 +02001068 payload >= buffer_end) {
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001069 payload = 0;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +02001070 buffer_end = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001071 }
1072
Stefan Richter872e3302010-07-29 18:19:22 +02001073 if (ctx->type == FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL && payload & 3)
1074 return -EINVAL;
Al Viro1ccc9142007-10-14 19:34:40 +01001075
Stefan Richter872e3302010-07-29 18:19:22 +02001076 p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(a->packets);
Stefan Richter6e95dea2010-02-21 17:56:21 +01001077 if (!access_ok(VERIFY_READ, p, a->size))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001078 return -EFAULT;
1079
Stefan Richter6e95dea2010-02-21 17:56:21 +01001080 end = (void __user *)p + a->size;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001081 count = 0;
1082 while (p < end) {
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001083 if (get_user(control, &p->control))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001084 return -EFAULT;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001085 u.packet.payload_length = GET_PAYLOAD_LENGTH(control);
1086 u.packet.interrupt = GET_INTERRUPT(control);
1087 u.packet.skip = GET_SKIP(control);
1088 u.packet.tag = GET_TAG(control);
1089 u.packet.sy = GET_SY(control);
1090 u.packet.header_length = GET_HEADER_LENGTH(control);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001091
Stefan Richter872e3302010-07-29 18:19:22 +02001092 switch (ctx->type) {
1093 case FW_ISO_CONTEXT_TRANSMIT:
1094 if (u.packet.header_length & 3)
Clemens Ladisch385ab5b2010-03-31 16:26:46 +02001095 return -EINVAL;
Stefan Richterae2a9762010-07-29 09:31:56 +02001096 transmit_header_bytes = u.packet.header_length;
Stefan Richter872e3302010-07-29 18:19:22 +02001097 break;
1098
1099 case FW_ISO_CONTEXT_RECEIVE:
Stefan Richter69e61d02010-07-28 23:49:45 +02001100 if (u.packet.header_length == 0 ||
1101 u.packet.header_length % ctx->header_size != 0)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001102 return -EINVAL;
Stefan Richter872e3302010-07-29 18:19:22 +02001103 break;
1104
1105 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
1106 if (u.packet.payload_length == 0 ||
1107 u.packet.payload_length & 3)
1108 return -EINVAL;
1109 break;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001110 }
1111
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001112 next = (struct fw_cdev_iso_packet __user *)
Stefan Richterae2a9762010-07-29 09:31:56 +02001113 &p->header[transmit_header_bytes / 4];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001114 if (next > end)
1115 return -EINVAL;
1116 if (__copy_from_user
Stefan Richterae2a9762010-07-29 09:31:56 +02001117 (u.packet.header, p->header, transmit_header_bytes))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001118 return -EFAULT;
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -05001119 if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001120 u.packet.header_length + u.packet.payload_length > 0)
1121 return -EINVAL;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +02001122 if (payload + u.packet.payload_length > buffer_end)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001123 return -EINVAL;
1124
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001125 if (fw_iso_context_queue(ctx, &u.packet,
1126 &client->buffer, payload))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001127 break;
1128
1129 p = next;
1130 payload += u.packet.payload_length;
1131 count++;
1132 }
Clemens Ladisch13882a82011-05-02 09:33:56 +02001133 fw_iso_context_queue_flush(ctx);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001134
Stefan Richter6e95dea2010-02-21 17:56:21 +01001135 a->size -= uptr_to_u64(p) - a->packets;
1136 a->packets = uptr_to_u64(p);
1137 a->data = client->vm_start + payload;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001138
1139 return count;
1140}
1141
Stefan Richter6e95dea2010-02-21 17:56:21 +01001142static int ioctl_start_iso(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001143{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001144 struct fw_cdev_start_iso *a = &arg->start_iso;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001145
Stefan Richtereb5b35a2010-07-07 14:13:14 +02001146 BUILD_BUG_ON(
1147 FW_CDEV_ISO_CONTEXT_MATCH_TAG0 != FW_ISO_CONTEXT_MATCH_TAG0 ||
1148 FW_CDEV_ISO_CONTEXT_MATCH_TAG1 != FW_ISO_CONTEXT_MATCH_TAG1 ||
1149 FW_CDEV_ISO_CONTEXT_MATCH_TAG2 != FW_ISO_CONTEXT_MATCH_TAG2 ||
1150 FW_CDEV_ISO_CONTEXT_MATCH_TAG3 != FW_ISO_CONTEXT_MATCH_TAG3 ||
1151 FW_CDEV_ISO_CONTEXT_MATCH_ALL_TAGS != FW_ISO_CONTEXT_MATCH_ALL_TAGS);
1152
Stefan Richter6e95dea2010-02-21 17:56:21 +01001153 if (client->iso_context == NULL || a->handle != 0)
Kristian Høgsbergabaa5742007-04-30 15:03:14 -04001154 return -EINVAL;
Stefan Richterfae60312008-02-20 21:10:06 +01001155
Stefan Richter6e95dea2010-02-21 17:56:21 +01001156 if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE &&
1157 (a->tags == 0 || a->tags > 15 || a->sync > 15))
1158 return -EINVAL;
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04001159
Stefan Richter6e95dea2010-02-21 17:56:21 +01001160 return fw_iso_context_start(client->iso_context,
1161 a->cycle, a->sync, a->tags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001162}
1163
Stefan Richter6e95dea2010-02-21 17:56:21 +01001164static int ioctl_stop_iso(struct client *client, union ioctl_arg *arg)
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001165{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001166 struct fw_cdev_stop_iso *a = &arg->stop_iso;
Kristian Høgsbergabaa5742007-04-30 15:03:14 -04001167
Stefan Richter6e95dea2010-02-21 17:56:21 +01001168 if (client->iso_context == NULL || a->handle != 0)
Kristian Høgsbergabaa5742007-04-30 15:03:14 -04001169 return -EINVAL;
1170
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001171 return fw_iso_context_stop(client->iso_context);
1172}
1173
Clemens Ladischd1bbd202012-03-18 19:06:39 +01001174static int ioctl_flush_iso(struct client *client, union ioctl_arg *arg)
1175{
1176 struct fw_cdev_flush_iso *a = &arg->flush_iso;
1177
1178 if (client->iso_context == NULL || a->handle != 0)
1179 return -EINVAL;
1180
1181 return fw_iso_context_flush_completions(client->iso_context);
1182}
1183
Stefan Richter6e95dea2010-02-21 17:56:21 +01001184static int ioctl_get_cycle_timer2(struct client *client, union ioctl_arg *arg)
Stefan Richtera64408b2007-09-29 10:41:58 +02001185{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001186 struct fw_cdev_get_cycle_timer2 *a = &arg->get_cycle_timer2;
Stefan Richtera64408b2007-09-29 10:41:58 +02001187 struct fw_card *card = client->device->card;
Stefan Richterabfe5a02010-02-20 12:13:49 +01001188 struct timespec ts = {0, 0};
Stefan Richter4a9bde92010-02-20 22:24:43 +01001189 u32 cycle_time;
Stefan Richterabfe5a02010-02-20 12:13:49 +01001190 int ret = 0;
Stefan Richtera64408b2007-09-29 10:41:58 +02001191
Stefan Richter4a9bde92010-02-20 22:24:43 +01001192 local_irq_disable();
Stefan Richtera64408b2007-09-29 10:41:58 +02001193
Stefan Richter0fcff4e2010-06-12 20:35:52 +02001194 cycle_time = card->driver->read_csr(card, CSR_CYCLE_TIME);
Stefan Richterabfe5a02010-02-20 12:13:49 +01001195
Stefan Richter6e95dea2010-02-21 17:56:21 +01001196 switch (a->clk_id) {
Stefan Richterabfe5a02010-02-20 12:13:49 +01001197 case CLOCK_REALTIME: getnstimeofday(&ts); break;
1198 case CLOCK_MONOTONIC: do_posix_clock_monotonic_gettime(&ts); break;
1199 case CLOCK_MONOTONIC_RAW: getrawmonotonic(&ts); break;
1200 default:
1201 ret = -EINVAL;
1202 }
Stefan Richtera64408b2007-09-29 10:41:58 +02001203
Stefan Richter4a9bde92010-02-20 22:24:43 +01001204 local_irq_enable();
Stefan Richtera64408b2007-09-29 10:41:58 +02001205
Stefan Richter6e95dea2010-02-21 17:56:21 +01001206 a->tv_sec = ts.tv_sec;
1207 a->tv_nsec = ts.tv_nsec;
1208 a->cycle_timer = cycle_time;
Stefan Richterabfe5a02010-02-20 12:13:49 +01001209
1210 return ret;
1211}
1212
Stefan Richter6e95dea2010-02-21 17:56:21 +01001213static int ioctl_get_cycle_timer(struct client *client, union ioctl_arg *arg)
Stefan Richterabfe5a02010-02-20 12:13:49 +01001214{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001215 struct fw_cdev_get_cycle_timer *a = &arg->get_cycle_timer;
Stefan Richterabfe5a02010-02-20 12:13:49 +01001216 struct fw_cdev_get_cycle_timer2 ct2;
1217
1218 ct2.clk_id = CLOCK_REALTIME;
Stefan Richter6e95dea2010-02-21 17:56:21 +01001219 ioctl_get_cycle_timer2(client, (union ioctl_arg *)&ct2);
Stefan Richterabfe5a02010-02-20 12:13:49 +01001220
Stefan Richter6e95dea2010-02-21 17:56:21 +01001221 a->local_time = ct2.tv_sec * USEC_PER_SEC + ct2.tv_nsec / NSEC_PER_USEC;
1222 a->cycle_timer = ct2.cycle_timer;
Stefan Richter4a9bde92010-02-20 22:24:43 +01001223
Stefan Richtera64408b2007-09-29 10:41:58 +02001224 return 0;
1225}
1226
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001227static void iso_resource_work(struct work_struct *work)
1228{
1229 struct iso_resource_event *e;
1230 struct iso_resource *r =
1231 container_of(work, struct iso_resource, work.work);
1232 struct client *client = r->client;
1233 int generation, channel, bandwidth, todo;
1234 bool skip, free, success;
1235
1236 spin_lock_irq(&client->lock);
1237 generation = client->device->generation;
1238 todo = r->todo;
1239 /* Allow 1000ms grace period for other reallocations. */
1240 if (todo == ISO_RES_ALLOC &&
Clemens Ladische71084a2011-01-22 15:05:03 +01001241 time_before64(get_jiffies_64(),
1242 client->device->card->reset_jiffies + HZ)) {
Stefan Richter9fb551b2009-10-08 00:41:10 +02001243 schedule_iso_resource(r, DIV_ROUND_UP(HZ, 3));
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001244 skip = true;
1245 } else {
1246 /* We could be called twice within the same generation. */
1247 skip = todo == ISO_RES_REALLOC &&
1248 r->generation == generation;
1249 }
Stefan Richter1ec3c022009-01-04 16:23:29 +01001250 free = todo == ISO_RES_DEALLOC ||
1251 todo == ISO_RES_ALLOC_ONCE ||
1252 todo == ISO_RES_DEALLOC_ONCE;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001253 r->generation = generation;
1254 spin_unlock_irq(&client->lock);
1255
1256 if (skip)
1257 goto out;
1258
1259 bandwidth = r->bandwidth;
1260
1261 fw_iso_resource_manage(client->device->card, generation,
1262 r->channels, &channel, &bandwidth,
Stefan Richter1ec3c022009-01-04 16:23:29 +01001263 todo == ISO_RES_ALLOC ||
1264 todo == ISO_RES_REALLOC ||
Stefan Richterf30e6d32011-04-22 15:13:54 +02001265 todo == ISO_RES_ALLOC_ONCE);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001266 /*
1267 * Is this generation outdated already? As long as this resource sticks
1268 * in the idr, it will be scheduled again for a newer generation or at
1269 * shutdown.
1270 */
1271 if (channel == -EAGAIN &&
1272 (todo == ISO_RES_ALLOC || todo == ISO_RES_REALLOC))
1273 goto out;
1274
1275 success = channel >= 0 || bandwidth > 0;
1276
1277 spin_lock_irq(&client->lock);
1278 /*
1279 * Transit from allocation to reallocation, except if the client
1280 * requested deallocation in the meantime.
1281 */
1282 if (r->todo == ISO_RES_ALLOC)
1283 r->todo = ISO_RES_REALLOC;
1284 /*
1285 * Allocation or reallocation failure? Pull this resource out of the
1286 * idr and prepare for deletion, unless the client is shutting down.
1287 */
1288 if (r->todo == ISO_RES_REALLOC && !success &&
1289 !client->in_shutdown &&
1290 idr_find(&client->resource_idr, r->resource.handle)) {
1291 idr_remove(&client->resource_idr, r->resource.handle);
1292 client_put(client);
1293 free = true;
1294 }
1295 spin_unlock_irq(&client->lock);
1296
1297 if (todo == ISO_RES_ALLOC && channel >= 0)
Stefan Richter5d9cb7d2009-01-08 23:07:40 +01001298 r->channels = 1ULL << channel;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001299
1300 if (todo == ISO_RES_REALLOC && success)
1301 goto out;
1302
Stefan Richter1ec3c022009-01-04 16:23:29 +01001303 if (todo == ISO_RES_ALLOC || todo == ISO_RES_ALLOC_ONCE) {
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001304 e = r->e_alloc;
1305 r->e_alloc = NULL;
1306 } else {
1307 e = r->e_dealloc;
1308 r->e_dealloc = NULL;
1309 }
Stefan Richtere21fcf72009-10-08 00:41:38 +02001310 e->iso_resource.handle = r->resource.handle;
1311 e->iso_resource.channel = channel;
1312 e->iso_resource.bandwidth = bandwidth;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001313
1314 queue_event(client, &e->event,
Stefan Richtere21fcf72009-10-08 00:41:38 +02001315 &e->iso_resource, sizeof(e->iso_resource), NULL, 0);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001316
1317 if (free) {
1318 cancel_delayed_work(&r->work);
1319 kfree(r->e_alloc);
1320 kfree(r->e_dealloc);
1321 kfree(r);
1322 }
1323 out:
1324 client_put(client);
1325}
1326
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001327static void release_iso_resource(struct client *client,
1328 struct client_resource *resource)
1329{
1330 struct iso_resource *r =
1331 container_of(resource, struct iso_resource, resource);
1332
1333 spin_lock_irq(&client->lock);
1334 r->todo = ISO_RES_DEALLOC;
Stefan Richter9fb551b2009-10-08 00:41:10 +02001335 schedule_iso_resource(r, 0);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001336 spin_unlock_irq(&client->lock);
1337}
1338
Stefan Richter1ec3c022009-01-04 16:23:29 +01001339static int init_iso_resource(struct client *client,
1340 struct fw_cdev_allocate_iso_resource *request, int todo)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001341{
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001342 struct iso_resource_event *e1, *e2;
1343 struct iso_resource *r;
1344 int ret;
1345
1346 if ((request->channels == 0 && request->bandwidth == 0) ||
1347 request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL ||
1348 request->bandwidth < 0)
1349 return -EINVAL;
1350
1351 r = kmalloc(sizeof(*r), GFP_KERNEL);
1352 e1 = kmalloc(sizeof(*e1), GFP_KERNEL);
1353 e2 = kmalloc(sizeof(*e2), GFP_KERNEL);
1354 if (r == NULL || e1 == NULL || e2 == NULL) {
1355 ret = -ENOMEM;
1356 goto fail;
1357 }
1358
1359 INIT_DELAYED_WORK(&r->work, iso_resource_work);
1360 r->client = client;
Stefan Richter1ec3c022009-01-04 16:23:29 +01001361 r->todo = todo;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001362 r->generation = -1;
1363 r->channels = request->channels;
1364 r->bandwidth = request->bandwidth;
1365 r->e_alloc = e1;
1366 r->e_dealloc = e2;
1367
Stefan Richtere21fcf72009-10-08 00:41:38 +02001368 e1->iso_resource.closure = request->closure;
1369 e1->iso_resource.type = FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED;
1370 e2->iso_resource.closure = request->closure;
1371 e2->iso_resource.type = FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001372
Stefan Richter1ec3c022009-01-04 16:23:29 +01001373 if (todo == ISO_RES_ALLOC) {
1374 r->resource.release = release_iso_resource;
1375 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
Stefan Richter81610b82009-01-11 13:44:46 +01001376 if (ret < 0)
1377 goto fail;
Stefan Richter1ec3c022009-01-04 16:23:29 +01001378 } else {
1379 r->resource.release = NULL;
1380 r->resource.handle = -1;
Stefan Richter9fb551b2009-10-08 00:41:10 +02001381 schedule_iso_resource(r, 0);
Stefan Richter1ec3c022009-01-04 16:23:29 +01001382 }
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001383 request->handle = r->resource.handle;
1384
1385 return 0;
1386 fail:
1387 kfree(r);
1388 kfree(e1);
1389 kfree(e2);
1390
1391 return ret;
1392}
1393
Stefan Richter6e95dea2010-02-21 17:56:21 +01001394static int ioctl_allocate_iso_resource(struct client *client,
1395 union ioctl_arg *arg)
Stefan Richter1ec3c022009-01-04 16:23:29 +01001396{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001397 return init_iso_resource(client,
1398 &arg->allocate_iso_resource, ISO_RES_ALLOC);
Stefan Richter1ec3c022009-01-04 16:23:29 +01001399}
1400
Stefan Richter6e95dea2010-02-21 17:56:21 +01001401static int ioctl_deallocate_iso_resource(struct client *client,
1402 union ioctl_arg *arg)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001403{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001404 return release_client_resource(client,
1405 arg->deallocate.handle, release_iso_resource, NULL);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001406}
1407
Stefan Richter6e95dea2010-02-21 17:56:21 +01001408static int ioctl_allocate_iso_resource_once(struct client *client,
1409 union ioctl_arg *arg)
Stefan Richter1ec3c022009-01-04 16:23:29 +01001410{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001411 return init_iso_resource(client,
1412 &arg->allocate_iso_resource, ISO_RES_ALLOC_ONCE);
Stefan Richter1ec3c022009-01-04 16:23:29 +01001413}
1414
Stefan Richter6e95dea2010-02-21 17:56:21 +01001415static int ioctl_deallocate_iso_resource_once(struct client *client,
1416 union ioctl_arg *arg)
Stefan Richter1ec3c022009-01-04 16:23:29 +01001417{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001418 return init_iso_resource(client,
1419 &arg->allocate_iso_resource, ISO_RES_DEALLOC_ONCE);
Stefan Richter1ec3c022009-01-04 16:23:29 +01001420}
1421
Stefan Richterc8a25902009-03-10 20:59:16 +01001422/*
1423 * Returns a speed code: Maximum speed to or from this device,
1424 * limited by the device's link speed, the local node's link speed,
1425 * and all PHY port speeds between the two links.
1426 */
Stefan Richter6e95dea2010-02-21 17:56:21 +01001427static int ioctl_get_speed(struct client *client, union ioctl_arg *arg)
Stefan Richter33580a32009-01-04 16:23:29 +01001428{
Stefan Richterc8a25902009-03-10 20:59:16 +01001429 return client->device->max_speed;
Stefan Richter33580a32009-01-04 16:23:29 +01001430}
1431
Stefan Richter6e95dea2010-02-21 17:56:21 +01001432static int ioctl_send_broadcast_request(struct client *client,
1433 union ioctl_arg *arg)
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001434{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001435 struct fw_cdev_send_request *a = &arg->send_request;
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001436
Stefan Richter6e95dea2010-02-21 17:56:21 +01001437 switch (a->tcode) {
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001438 case TCODE_WRITE_QUADLET_REQUEST:
1439 case TCODE_WRITE_BLOCK_REQUEST:
1440 break;
1441 default:
1442 return -EINVAL;
1443 }
1444
Stefan Richter1566f3d2009-01-04 16:23:29 +01001445 /* Security policy: Only allow accesses to Units Space. */
Stefan Richter6e95dea2010-02-21 17:56:21 +01001446 if (a->offset < CSR_REGISTER_BASE + CSR_CONFIG_ROM_END)
Stefan Richter1566f3d2009-01-04 16:23:29 +01001447 return -EACCES;
1448
Stefan Richter6e95dea2010-02-21 17:56:21 +01001449 return init_request(client, a, LOCAL_BUS | 0x3f, SCODE_100);
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001450}
1451
Stefan Richter6e95dea2010-02-21 17:56:21 +01001452static int ioctl_send_stream_packet(struct client *client, union ioctl_arg *arg)
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001453{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001454 struct fw_cdev_send_stream_packet *a = &arg->send_stream_packet;
Stefan Richter18e9b102009-03-10 21:02:21 +01001455 struct fw_cdev_send_request request;
1456 int dest;
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001457
Stefan Richter6e95dea2010-02-21 17:56:21 +01001458 if (a->speed > client->device->card->link_speed ||
1459 a->length > 1024 << a->speed)
Stefan Richter18e9b102009-03-10 21:02:21 +01001460 return -EIO;
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001461
Stefan Richter6e95dea2010-02-21 17:56:21 +01001462 if (a->tag > 3 || a->channel > 63 || a->sy > 15)
Stefan Richter18e9b102009-03-10 21:02:21 +01001463 return -EINVAL;
1464
Stefan Richter6e95dea2010-02-21 17:56:21 +01001465 dest = fw_stream_packet_destination_id(a->tag, a->channel, a->sy);
Stefan Richter18e9b102009-03-10 21:02:21 +01001466 request.tcode = TCODE_STREAM_DATA;
Stefan Richter6e95dea2010-02-21 17:56:21 +01001467 request.length = a->length;
1468 request.closure = a->closure;
1469 request.data = a->data;
1470 request.generation = a->generation;
Stefan Richter18e9b102009-03-10 21:02:21 +01001471
Stefan Richter6e95dea2010-02-21 17:56:21 +01001472 return init_request(client, &request, dest, a->speed);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001473}
1474
Stefan Richter850bb6f2010-07-16 22:25:14 +02001475static void outbound_phy_packet_callback(struct fw_packet *packet,
1476 struct fw_card *card, int status)
1477{
1478 struct outbound_phy_packet_event *e =
1479 container_of(packet, struct outbound_phy_packet_event, p);
1480
1481 switch (status) {
1482 /* expected: */
1483 case ACK_COMPLETE: e->phy_packet.rcode = RCODE_COMPLETE; break;
1484 /* should never happen with PHY packets: */
1485 case ACK_PENDING: e->phy_packet.rcode = RCODE_COMPLETE; break;
1486 case ACK_BUSY_X:
1487 case ACK_BUSY_A:
1488 case ACK_BUSY_B: e->phy_packet.rcode = RCODE_BUSY; break;
1489 case ACK_DATA_ERROR: e->phy_packet.rcode = RCODE_DATA_ERROR; break;
1490 case ACK_TYPE_ERROR: e->phy_packet.rcode = RCODE_TYPE_ERROR; break;
1491 /* stale generation; cancelled; on certain controllers: no ack */
1492 default: e->phy_packet.rcode = status; break;
1493 }
Stefan Richtercc550212010-07-18 13:00:50 +02001494 e->phy_packet.data[0] = packet->timestamp;
Stefan Richter850bb6f2010-07-16 22:25:14 +02001495
Stefan Richtercc550212010-07-18 13:00:50 +02001496 queue_event(e->client, &e->event, &e->phy_packet,
1497 sizeof(e->phy_packet) + e->phy_packet.length, NULL, 0);
Stefan Richter850bb6f2010-07-16 22:25:14 +02001498 client_put(e->client);
1499}
1500
1501static int ioctl_send_phy_packet(struct client *client, union ioctl_arg *arg)
1502{
1503 struct fw_cdev_send_phy_packet *a = &arg->send_phy_packet;
1504 struct fw_card *card = client->device->card;
1505 struct outbound_phy_packet_event *e;
1506
1507 /* Access policy: Allow this ioctl only on local nodes' device files. */
1508 if (!client->device->is_local)
1509 return -ENOSYS;
1510
Stefan Richtercc550212010-07-18 13:00:50 +02001511 e = kzalloc(sizeof(*e) + 4, GFP_KERNEL);
Stefan Richter850bb6f2010-07-16 22:25:14 +02001512 if (e == NULL)
1513 return -ENOMEM;
1514
1515 client_get(client);
1516 e->client = client;
1517 e->p.speed = SCODE_100;
1518 e->p.generation = a->generation;
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001519 e->p.header[0] = TCODE_LINK_INTERNAL << 4;
1520 e->p.header[1] = a->data[0];
1521 e->p.header[2] = a->data[1];
1522 e->p.header_length = 12;
Stefan Richter850bb6f2010-07-16 22:25:14 +02001523 e->p.callback = outbound_phy_packet_callback;
1524 e->phy_packet.closure = a->closure;
1525 e->phy_packet.type = FW_CDEV_EVENT_PHY_PACKET_SENT;
Stefan Richtercc550212010-07-18 13:00:50 +02001526 if (is_ping_packet(a->data))
1527 e->phy_packet.length = 4;
Stefan Richter850bb6f2010-07-16 22:25:14 +02001528
1529 card->driver->send_request(card, &e->p);
1530
1531 return 0;
1532}
1533
Stefan Richterbf54e142010-07-16 22:25:51 +02001534static int ioctl_receive_phy_packets(struct client *client, union ioctl_arg *arg)
1535{
1536 struct fw_cdev_receive_phy_packets *a = &arg->receive_phy_packets;
1537 struct fw_card *card = client->device->card;
1538
1539 /* Access policy: Allow this ioctl only on local nodes' device files. */
1540 if (!client->device->is_local)
1541 return -ENOSYS;
1542
1543 spin_lock_irq(&card->lock);
1544
1545 list_move_tail(&client->phy_receiver_link, &card->phy_receiver_list);
1546 client->phy_receiver_closure = a->closure;
1547
1548 spin_unlock_irq(&card->lock);
1549
1550 return 0;
1551}
1552
1553void fw_cdev_handle_phy_packet(struct fw_card *card, struct fw_packet *p)
1554{
1555 struct client *client;
1556 struct inbound_phy_packet_event *e;
1557 unsigned long flags;
1558
1559 spin_lock_irqsave(&card->lock, flags);
1560
1561 list_for_each_entry(client, &card->phy_receiver_list, phy_receiver_link) {
1562 e = kmalloc(sizeof(*e) + 8, GFP_ATOMIC);
1563 if (e == NULL) {
Stefan Richter26b49502012-02-18 22:03:14 +01001564 fw_notice(card, "out of memory when allocating event\n");
Stefan Richterbf54e142010-07-16 22:25:51 +02001565 break;
1566 }
1567 e->phy_packet.closure = client->phy_receiver_closure;
1568 e->phy_packet.type = FW_CDEV_EVENT_PHY_PACKET_RECEIVED;
1569 e->phy_packet.rcode = RCODE_COMPLETE;
1570 e->phy_packet.length = 8;
1571 e->phy_packet.data[0] = p->header[1];
1572 e->phy_packet.data[1] = p->header[2];
1573 queue_event(client, &e->event,
1574 &e->phy_packet, sizeof(e->phy_packet) + 8, NULL, 0);
1575 }
1576
1577 spin_unlock_irqrestore(&card->lock, flags);
1578}
1579
Stefan Richter6e95dea2010-02-21 17:56:21 +01001580static int (* const ioctl_handlers[])(struct client *, union ioctl_arg *) = {
Stefan Richterb9dc61c2010-07-16 22:24:29 +02001581 [0x00] = ioctl_get_info,
1582 [0x01] = ioctl_send_request,
1583 [0x02] = ioctl_allocate,
1584 [0x03] = ioctl_deallocate,
1585 [0x04] = ioctl_send_response,
1586 [0x05] = ioctl_initiate_bus_reset,
1587 [0x06] = ioctl_add_descriptor,
1588 [0x07] = ioctl_remove_descriptor,
1589 [0x08] = ioctl_create_iso_context,
1590 [0x09] = ioctl_queue_iso,
1591 [0x0a] = ioctl_start_iso,
1592 [0x0b] = ioctl_stop_iso,
1593 [0x0c] = ioctl_get_cycle_timer,
1594 [0x0d] = ioctl_allocate_iso_resource,
1595 [0x0e] = ioctl_deallocate_iso_resource,
1596 [0x0f] = ioctl_allocate_iso_resource_once,
1597 [0x10] = ioctl_deallocate_iso_resource_once,
1598 [0x11] = ioctl_get_speed,
1599 [0x12] = ioctl_send_broadcast_request,
1600 [0x13] = ioctl_send_stream_packet,
1601 [0x14] = ioctl_get_cycle_timer2,
Stefan Richter850bb6f2010-07-16 22:25:14 +02001602 [0x15] = ioctl_send_phy_packet,
Stefan Richterbf54e142010-07-16 22:25:51 +02001603 [0x16] = ioctl_receive_phy_packets,
Stefan Richter872e3302010-07-29 18:19:22 +02001604 [0x17] = ioctl_set_iso_channels,
Clemens Ladischd1bbd202012-03-18 19:06:39 +01001605 [0x18] = ioctl_flush_iso,
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001606};
1607
Stefan Richter53dca512008-12-14 21:47:04 +01001608static int dispatch_ioctl(struct client *client,
1609 unsigned int cmd, void __user *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001610{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001611 union ioctl_arg buffer;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001612 int ret;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001613
Stefan Richter64582292010-02-21 17:56:42 +01001614 if (fw_device_is_shutdown(client->device))
1615 return -ENODEV;
1616
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001617 if (_IOC_TYPE(cmd) != '#' ||
Stefan Richter9cac00b2010-04-07 08:30:50 +02001618 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers) ||
1619 _IOC_SIZE(cmd) > sizeof(buffer))
Stefan Richterd873d792011-07-09 16:42:26 +02001620 return -ENOTTY;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001621
Stefan Richter9cac00b2010-04-07 08:30:50 +02001622 if (_IOC_DIR(cmd) == _IOC_READ)
1623 memset(&buffer, 0, _IOC_SIZE(cmd));
1624
1625 if (_IOC_DIR(cmd) & _IOC_WRITE)
1626 if (copy_from_user(&buffer, arg, _IOC_SIZE(cmd)))
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001627 return -EFAULT;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001628
Stefan Richter6e95dea2010-02-21 17:56:21 +01001629 ret = ioctl_handlers[_IOC_NR(cmd)](client, &buffer);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001630 if (ret < 0)
1631 return ret;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001632
Stefan Richter9cac00b2010-04-07 08:30:50 +02001633 if (_IOC_DIR(cmd) & _IOC_READ)
1634 if (copy_to_user(arg, &buffer, _IOC_SIZE(cmd)))
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001635 return -EFAULT;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001636
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001637 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001638}
1639
Stefan Richter53dca512008-12-14 21:47:04 +01001640static long fw_device_op_ioctl(struct file *file,
1641 unsigned int cmd, unsigned long arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001642{
Stefan Richter64582292010-02-21 17:56:42 +01001643 return dispatch_ioctl(file->private_data, cmd, (void __user *)arg);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001644}
1645
1646#ifdef CONFIG_COMPAT
Stefan Richter53dca512008-12-14 21:47:04 +01001647static long fw_device_op_compat_ioctl(struct file *file,
1648 unsigned int cmd, unsigned long arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001649{
Stefan Richter64582292010-02-21 17:56:42 +01001650 return dispatch_ioctl(file->private_data, cmd, compat_ptr(arg));
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001651}
1652#endif
1653
1654static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
1655{
1656 struct client *client = file->private_data;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001657 enum dma_data_direction direction;
1658 unsigned long size;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001659 int page_count, ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001660
Jay Fenlason551f4cb2008-05-16 11:15:23 -04001661 if (fw_device_is_shutdown(client->device))
1662 return -ENODEV;
1663
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001664 /* FIXME: We could support multiple buffers, but we don't. */
1665 if (client->buffer.pages != NULL)
1666 return -EBUSY;
1667
1668 if (!(vma->vm_flags & VM_SHARED))
1669 return -EINVAL;
1670
1671 if (vma->vm_start & ~PAGE_MASK)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001672 return -EINVAL;
1673
1674 client->vm_start = vma->vm_start;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001675 size = vma->vm_end - vma->vm_start;
1676 page_count = size >> PAGE_SHIFT;
1677 if (size & ~PAGE_MASK)
1678 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001679
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001680 if (vma->vm_flags & VM_WRITE)
1681 direction = DMA_TO_DEVICE;
1682 else
1683 direction = DMA_FROM_DEVICE;
1684
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001685 ret = fw_iso_buffer_init(&client->buffer, client->device->card,
1686 page_count, direction);
1687 if (ret < 0)
1688 return ret;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001689
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001690 ret = fw_iso_buffer_map(&client->buffer, vma);
1691 if (ret < 0)
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001692 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1693
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001694 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001695}
1696
Clemens Ladisch5a5e62d2011-01-10 17:28:39 +01001697static int is_outbound_transaction_resource(int id, void *p, void *data)
1698{
1699 struct client_resource *resource = p;
1700
1701 return resource->release == release_transaction;
1702}
1703
1704static int has_outbound_transactions(struct client *client)
1705{
1706 int ret;
1707
1708 spin_lock_irq(&client->lock);
1709 ret = idr_for_each(&client->resource_idr,
1710 is_outbound_transaction_resource, NULL);
1711 spin_unlock_irq(&client->lock);
1712
1713 return ret;
1714}
1715
Jay Fenlason45ee3192008-12-21 16:47:17 +01001716static int shutdown_resource(int id, void *p, void *data)
1717{
Stefan Richtere21fcf72009-10-08 00:41:38 +02001718 struct client_resource *resource = p;
Jay Fenlason45ee3192008-12-21 16:47:17 +01001719 struct client *client = data;
1720
Stefan Richtere21fcf72009-10-08 00:41:38 +02001721 resource->release(client, resource);
Stefan Richterfb443032009-01-04 16:23:29 +01001722 client_put(client);
Jay Fenlason45ee3192008-12-21 16:47:17 +01001723
1724 return 0;
1725}
1726
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001727static int fw_device_op_release(struct inode *inode, struct file *file)
1728{
1729 struct client *client = file->private_data;
Stefan Richtere21fcf72009-10-08 00:41:38 +02001730 struct event *event, *next_event;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001731
Stefan Richterbf54e142010-07-16 22:25:51 +02001732 spin_lock_irq(&client->device->card->lock);
1733 list_del(&client->phy_receiver_link);
1734 spin_unlock_irq(&client->device->card->lock);
1735
Stefan Richter97811e32008-12-14 19:19:23 +01001736 mutex_lock(&client->device->client_list_mutex);
1737 list_del(&client->link);
1738 mutex_unlock(&client->device->client_list_mutex);
1739
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001740 if (client->iso_context)
1741 fw_iso_context_destroy(client->iso_context);
1742
Stefan Richter36a755c2009-01-05 20:28:10 +01001743 if (client->buffer.pages)
1744 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1745
Jay Fenlason45ee3192008-12-21 16:47:17 +01001746 /* Freeze client->resource_idr and client->event_list */
Stefan Richter3ba94982009-01-04 16:23:29 +01001747 spin_lock_irq(&client->lock);
Jay Fenlason45ee3192008-12-21 16:47:17 +01001748 client->in_shutdown = true;
Stefan Richter3ba94982009-01-04 16:23:29 +01001749 spin_unlock_irq(&client->lock);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +02001750
Clemens Ladisch5a5e62d2011-01-10 17:28:39 +01001751 wait_event(client->tx_flush_wait, !has_outbound_transactions(client));
1752
Jay Fenlason45ee3192008-12-21 16:47:17 +01001753 idr_for_each(&client->resource_idr, shutdown_resource, client);
1754 idr_remove_all(&client->resource_idr);
1755 idr_destroy(&client->resource_idr);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -05001756
Stefan Richtere21fcf72009-10-08 00:41:38 +02001757 list_for_each_entry_safe(event, next_event, &client->event_list, link)
1758 kfree(event);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001759
Stefan Richterfb443032009-01-04 16:23:29 +01001760 client_put(client);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001761
1762 return 0;
1763}
1764
1765static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
1766{
1767 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001768 unsigned int mask = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001769
1770 poll_wait(file, &client->wait, pt);
1771
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001772 if (fw_device_is_shutdown(client->device))
1773 mask |= POLLHUP | POLLERR;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001774 if (!list_empty(&client->event_list))
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001775 mask |= POLLIN | POLLRDNORM;
1776
1777 return mask;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001778}
1779
Stefan Richter21ebcd12007-01-14 15:29:07 +01001780const struct file_operations fw_device_ops = {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001781 .owner = THIS_MODULE,
Stefan Richter3ac26b22010-04-10 16:38:05 +01001782 .llseek = no_llseek,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001783 .open = fw_device_op_open,
1784 .read = fw_device_op_read,
1785 .unlocked_ioctl = fw_device_op_ioctl,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001786 .mmap = fw_device_op_mmap,
Stefan Richter3ac26b22010-04-10 16:38:05 +01001787 .release = fw_device_op_release,
1788 .poll = fw_device_op_poll,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001789#ifdef CONFIG_COMPAT
Stefan Richter5af4e5e2007-01-21 20:45:32 +01001790 .compat_ioctl = fw_device_op_compat_ioctl,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001791#endif
1792};