blob: 22c6df5f136d3a631483cb5879d5aca2eb16eecf [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 Richtera64408b2007-09-29 10:41:58 +020047#include <asm/system.h>
Stefan Richterbe5bbd62009-01-04 16:23:29 +010048
Stefan Richter77c9a5d2009-06-05 16:26:18 +020049#include "core.h"
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050050
Stefan Richter604f4512010-06-20 22:52:55 +020051/*
52 * ABI version history is documented in linux/firewire-cdev.h.
53 */
Clemens Ladisch18d62712012-03-18 19:05:29 +010054#define FW_CDEV_KERNEL_VERSION 5
Stefan Richter8e2b2b42010-07-23 13:05:39 +020055#define FW_CDEV_VERSION_EVENT_REQUEST2 4
56#define FW_CDEV_VERSION_ALLOCATE_REGION_END 4
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 Richter93b37902011-07-09 16:43:22 +0200475 ret = copy_to_user(u64_to_uptr(a->bus_reset),
476 &bus_reset, sizeof(bus_reset));
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);
1002
Clemens Ladischbdfe2732010-06-14 11:46:25 +02001003 /* We only support one context at this time. */
1004 spin_lock_irq(&client->lock);
1005 if (client->iso_context != NULL) {
1006 spin_unlock_irq(&client->lock);
1007 fw_iso_context_destroy(context);
1008 return -EBUSY;
1009 }
Stefan Richter6e95dea2010-02-21 17:56:21 +01001010 client->iso_closure = a->closure;
Kristian Høgsberg24315c52007-06-20 17:48:07 -04001011 client->iso_context = context;
Clemens Ladischbdfe2732010-06-14 11:46:25 +02001012 spin_unlock_irq(&client->lock);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001013
Stefan Richter6e95dea2010-02-21 17:56:21 +01001014 a->handle = 0;
Kristian Høgsbergabaa5742007-04-30 15:03:14 -04001015
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001016 return 0;
1017}
1018
Stefan Richter872e3302010-07-29 18:19:22 +02001019static int ioctl_set_iso_channels(struct client *client, union ioctl_arg *arg)
1020{
1021 struct fw_cdev_set_iso_channels *a = &arg->set_iso_channels;
1022 struct fw_iso_context *ctx = client->iso_context;
1023
1024 if (ctx == NULL || a->handle != 0)
1025 return -EINVAL;
1026
1027 return fw_iso_context_set_channels(ctx, &a->channels);
1028}
1029
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001030/* Macros for decoding the iso packet control header. */
1031#define GET_PAYLOAD_LENGTH(v) ((v) & 0xffff)
1032#define GET_INTERRUPT(v) (((v) >> 16) & 0x01)
1033#define GET_SKIP(v) (((v) >> 17) & 0x01)
Stefan Richter7a100342008-09-12 18:09:55 +02001034#define GET_TAG(v) (((v) >> 18) & 0x03)
1035#define GET_SY(v) (((v) >> 20) & 0x0f)
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001036#define GET_HEADER_LENGTH(v) (((v) >> 24) & 0xff)
1037
Stefan Richter6e95dea2010-02-21 17:56:21 +01001038static int ioctl_queue_iso(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001039{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001040 struct fw_cdev_queue_iso *a = &arg->queue_iso;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001041 struct fw_cdev_iso_packet __user *p, *end, *next;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001042 struct fw_iso_context *ctx = client->iso_context;
Stefan Richter872e3302010-07-29 18:19:22 +02001043 unsigned long payload, buffer_end, transmit_header_bytes = 0;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001044 u32 control;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001045 int count;
1046 struct {
1047 struct fw_iso_packet packet;
1048 u8 header[256];
1049 } u;
1050
Stefan Richter6e95dea2010-02-21 17:56:21 +01001051 if (ctx == NULL || a->handle != 0)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001052 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001053
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001054 /*
1055 * If the user passes a non-NULL data pointer, has mmap()'ed
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001056 * the iso buffer, and the pointer points inside the buffer,
1057 * we setup the payload pointers accordingly. Otherwise we
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001058 * set them both to 0, which will still let packets with
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001059 * payload_length == 0 through. In other words, if no packets
1060 * use the indirect payload, the iso buffer need not be mapped
Stefan Richter6e95dea2010-02-21 17:56:21 +01001061 * and the a->data pointer is ignored.
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001062 */
Stefan Richter6e95dea2010-02-21 17:56:21 +01001063 payload = (unsigned long)a->data - client->vm_start;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +02001064 buffer_end = client->buffer.page_count << PAGE_SHIFT;
Stefan Richter6e95dea2010-02-21 17:56:21 +01001065 if (a->data == 0 || client->buffer.pages == NULL ||
Kristian Høgsbergef370ee2007-03-28 20:46:23 +02001066 payload >= buffer_end) {
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001067 payload = 0;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +02001068 buffer_end = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001069 }
1070
Stefan Richter872e3302010-07-29 18:19:22 +02001071 if (ctx->type == FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL && payload & 3)
1072 return -EINVAL;
Al Viro1ccc9142007-10-14 19:34:40 +01001073
Stefan Richter872e3302010-07-29 18:19:22 +02001074 p = (struct fw_cdev_iso_packet __user *)u64_to_uptr(a->packets);
Stefan Richter6e95dea2010-02-21 17:56:21 +01001075 if (!access_ok(VERIFY_READ, p, a->size))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001076 return -EFAULT;
1077
Stefan Richter6e95dea2010-02-21 17:56:21 +01001078 end = (void __user *)p + a->size;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001079 count = 0;
1080 while (p < end) {
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001081 if (get_user(control, &p->control))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001082 return -EFAULT;
Kristian Høgsberg1ca31ae2007-05-31 11:16:43 -04001083 u.packet.payload_length = GET_PAYLOAD_LENGTH(control);
1084 u.packet.interrupt = GET_INTERRUPT(control);
1085 u.packet.skip = GET_SKIP(control);
1086 u.packet.tag = GET_TAG(control);
1087 u.packet.sy = GET_SY(control);
1088 u.packet.header_length = GET_HEADER_LENGTH(control);
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001089
Stefan Richter872e3302010-07-29 18:19:22 +02001090 switch (ctx->type) {
1091 case FW_ISO_CONTEXT_TRANSMIT:
1092 if (u.packet.header_length & 3)
Clemens Ladisch385ab5b2010-03-31 16:26:46 +02001093 return -EINVAL;
Stefan Richterae2a9762010-07-29 09:31:56 +02001094 transmit_header_bytes = u.packet.header_length;
Stefan Richter872e3302010-07-29 18:19:22 +02001095 break;
1096
1097 case FW_ISO_CONTEXT_RECEIVE:
Stefan Richter69e61d02010-07-28 23:49:45 +02001098 if (u.packet.header_length == 0 ||
1099 u.packet.header_length % ctx->header_size != 0)
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001100 return -EINVAL;
Stefan Richter872e3302010-07-29 18:19:22 +02001101 break;
1102
1103 case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL:
1104 if (u.packet.payload_length == 0 ||
1105 u.packet.payload_length & 3)
1106 return -EINVAL;
1107 break;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -05001108 }
1109
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001110 next = (struct fw_cdev_iso_packet __user *)
Stefan Richterae2a9762010-07-29 09:31:56 +02001111 &p->header[transmit_header_bytes / 4];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001112 if (next > end)
1113 return -EINVAL;
1114 if (__copy_from_user
Stefan Richterae2a9762010-07-29 09:31:56 +02001115 (u.packet.header, p->header, transmit_header_bytes))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001116 return -EFAULT;
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -05001117 if (u.packet.skip && ctx->type == FW_ISO_CONTEXT_TRANSMIT &&
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001118 u.packet.header_length + u.packet.payload_length > 0)
1119 return -EINVAL;
Kristian Høgsbergef370ee2007-03-28 20:46:23 +02001120 if (payload + u.packet.payload_length > buffer_end)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001121 return -EINVAL;
1122
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -05001123 if (fw_iso_context_queue(ctx, &u.packet,
1124 &client->buffer, payload))
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001125 break;
1126
1127 p = next;
1128 payload += u.packet.payload_length;
1129 count++;
1130 }
Clemens Ladisch13882a82011-05-02 09:33:56 +02001131 fw_iso_context_queue_flush(ctx);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001132
Stefan Richter6e95dea2010-02-21 17:56:21 +01001133 a->size -= uptr_to_u64(p) - a->packets;
1134 a->packets = uptr_to_u64(p);
1135 a->data = client->vm_start + payload;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001136
1137 return count;
1138}
1139
Stefan Richter6e95dea2010-02-21 17:56:21 +01001140static int ioctl_start_iso(struct client *client, union ioctl_arg *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001141{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001142 struct fw_cdev_start_iso *a = &arg->start_iso;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001143
Stefan Richtereb5b35a2010-07-07 14:13:14 +02001144 BUILD_BUG_ON(
1145 FW_CDEV_ISO_CONTEXT_MATCH_TAG0 != FW_ISO_CONTEXT_MATCH_TAG0 ||
1146 FW_CDEV_ISO_CONTEXT_MATCH_TAG1 != FW_ISO_CONTEXT_MATCH_TAG1 ||
1147 FW_CDEV_ISO_CONTEXT_MATCH_TAG2 != FW_ISO_CONTEXT_MATCH_TAG2 ||
1148 FW_CDEV_ISO_CONTEXT_MATCH_TAG3 != FW_ISO_CONTEXT_MATCH_TAG3 ||
1149 FW_CDEV_ISO_CONTEXT_MATCH_ALL_TAGS != FW_ISO_CONTEXT_MATCH_ALL_TAGS);
1150
Stefan Richter6e95dea2010-02-21 17:56:21 +01001151 if (client->iso_context == NULL || a->handle != 0)
Kristian Høgsbergabaa5742007-04-30 15:03:14 -04001152 return -EINVAL;
Stefan Richterfae60312008-02-20 21:10:06 +01001153
Stefan Richter6e95dea2010-02-21 17:56:21 +01001154 if (client->iso_context->type == FW_ISO_CONTEXT_RECEIVE &&
1155 (a->tags == 0 || a->tags > 15 || a->sync > 15))
1156 return -EINVAL;
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -04001157
Stefan Richter6e95dea2010-02-21 17:56:21 +01001158 return fw_iso_context_start(client->iso_context,
1159 a->cycle, a->sync, a->tags);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001160}
1161
Stefan Richter6e95dea2010-02-21 17:56:21 +01001162static int ioctl_stop_iso(struct client *client, union ioctl_arg *arg)
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001163{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001164 struct fw_cdev_stop_iso *a = &arg->stop_iso;
Kristian Høgsbergabaa5742007-04-30 15:03:14 -04001165
Stefan Richter6e95dea2010-02-21 17:56:21 +01001166 if (client->iso_context == NULL || a->handle != 0)
Kristian Høgsbergabaa5742007-04-30 15:03:14 -04001167 return -EINVAL;
1168
Kristian Høgsbergb8295662007-02-16 17:34:42 -05001169 return fw_iso_context_stop(client->iso_context);
1170}
1171
Clemens Ladischd1bbd202012-03-18 19:06:39 +01001172static int ioctl_flush_iso(struct client *client, union ioctl_arg *arg)
1173{
1174 struct fw_cdev_flush_iso *a = &arg->flush_iso;
1175
1176 if (client->iso_context == NULL || a->handle != 0)
1177 return -EINVAL;
1178
1179 return fw_iso_context_flush_completions(client->iso_context);
1180}
1181
Stefan Richter6e95dea2010-02-21 17:56:21 +01001182static int ioctl_get_cycle_timer2(struct client *client, union ioctl_arg *arg)
Stefan Richtera64408b2007-09-29 10:41:58 +02001183{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001184 struct fw_cdev_get_cycle_timer2 *a = &arg->get_cycle_timer2;
Stefan Richtera64408b2007-09-29 10:41:58 +02001185 struct fw_card *card = client->device->card;
Stefan Richterabfe5a02010-02-20 12:13:49 +01001186 struct timespec ts = {0, 0};
Stefan Richter4a9bde92010-02-20 22:24:43 +01001187 u32 cycle_time;
Stefan Richterabfe5a02010-02-20 12:13:49 +01001188 int ret = 0;
Stefan Richtera64408b2007-09-29 10:41:58 +02001189
Stefan Richter4a9bde92010-02-20 22:24:43 +01001190 local_irq_disable();
Stefan Richtera64408b2007-09-29 10:41:58 +02001191
Stefan Richter0fcff4e2010-06-12 20:35:52 +02001192 cycle_time = card->driver->read_csr(card, CSR_CYCLE_TIME);
Stefan Richterabfe5a02010-02-20 12:13:49 +01001193
Stefan Richter6e95dea2010-02-21 17:56:21 +01001194 switch (a->clk_id) {
Stefan Richterabfe5a02010-02-20 12:13:49 +01001195 case CLOCK_REALTIME: getnstimeofday(&ts); break;
1196 case CLOCK_MONOTONIC: do_posix_clock_monotonic_gettime(&ts); break;
1197 case CLOCK_MONOTONIC_RAW: getrawmonotonic(&ts); break;
1198 default:
1199 ret = -EINVAL;
1200 }
Stefan Richtera64408b2007-09-29 10:41:58 +02001201
Stefan Richter4a9bde92010-02-20 22:24:43 +01001202 local_irq_enable();
Stefan Richtera64408b2007-09-29 10:41:58 +02001203
Stefan Richter6e95dea2010-02-21 17:56:21 +01001204 a->tv_sec = ts.tv_sec;
1205 a->tv_nsec = ts.tv_nsec;
1206 a->cycle_timer = cycle_time;
Stefan Richterabfe5a02010-02-20 12:13:49 +01001207
1208 return ret;
1209}
1210
Stefan Richter6e95dea2010-02-21 17:56:21 +01001211static int ioctl_get_cycle_timer(struct client *client, union ioctl_arg *arg)
Stefan Richterabfe5a02010-02-20 12:13:49 +01001212{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001213 struct fw_cdev_get_cycle_timer *a = &arg->get_cycle_timer;
Stefan Richterabfe5a02010-02-20 12:13:49 +01001214 struct fw_cdev_get_cycle_timer2 ct2;
1215
1216 ct2.clk_id = CLOCK_REALTIME;
Stefan Richter6e95dea2010-02-21 17:56:21 +01001217 ioctl_get_cycle_timer2(client, (union ioctl_arg *)&ct2);
Stefan Richterabfe5a02010-02-20 12:13:49 +01001218
Stefan Richter6e95dea2010-02-21 17:56:21 +01001219 a->local_time = ct2.tv_sec * USEC_PER_SEC + ct2.tv_nsec / NSEC_PER_USEC;
1220 a->cycle_timer = ct2.cycle_timer;
Stefan Richter4a9bde92010-02-20 22:24:43 +01001221
Stefan Richtera64408b2007-09-29 10:41:58 +02001222 return 0;
1223}
1224
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001225static void iso_resource_work(struct work_struct *work)
1226{
1227 struct iso_resource_event *e;
1228 struct iso_resource *r =
1229 container_of(work, struct iso_resource, work.work);
1230 struct client *client = r->client;
1231 int generation, channel, bandwidth, todo;
1232 bool skip, free, success;
1233
1234 spin_lock_irq(&client->lock);
1235 generation = client->device->generation;
1236 todo = r->todo;
1237 /* Allow 1000ms grace period for other reallocations. */
1238 if (todo == ISO_RES_ALLOC &&
Clemens Ladische71084a2011-01-22 15:05:03 +01001239 time_before64(get_jiffies_64(),
1240 client->device->card->reset_jiffies + HZ)) {
Stefan Richter9fb551b2009-10-08 00:41:10 +02001241 schedule_iso_resource(r, DIV_ROUND_UP(HZ, 3));
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001242 skip = true;
1243 } else {
1244 /* We could be called twice within the same generation. */
1245 skip = todo == ISO_RES_REALLOC &&
1246 r->generation == generation;
1247 }
Stefan Richter1ec3c022009-01-04 16:23:29 +01001248 free = todo == ISO_RES_DEALLOC ||
1249 todo == ISO_RES_ALLOC_ONCE ||
1250 todo == ISO_RES_DEALLOC_ONCE;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001251 r->generation = generation;
1252 spin_unlock_irq(&client->lock);
1253
1254 if (skip)
1255 goto out;
1256
1257 bandwidth = r->bandwidth;
1258
1259 fw_iso_resource_manage(client->device->card, generation,
1260 r->channels, &channel, &bandwidth,
Stefan Richter1ec3c022009-01-04 16:23:29 +01001261 todo == ISO_RES_ALLOC ||
1262 todo == ISO_RES_REALLOC ||
Stefan Richterf30e6d32011-04-22 15:13:54 +02001263 todo == ISO_RES_ALLOC_ONCE);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001264 /*
1265 * Is this generation outdated already? As long as this resource sticks
1266 * in the idr, it will be scheduled again for a newer generation or at
1267 * shutdown.
1268 */
1269 if (channel == -EAGAIN &&
1270 (todo == ISO_RES_ALLOC || todo == ISO_RES_REALLOC))
1271 goto out;
1272
1273 success = channel >= 0 || bandwidth > 0;
1274
1275 spin_lock_irq(&client->lock);
1276 /*
1277 * Transit from allocation to reallocation, except if the client
1278 * requested deallocation in the meantime.
1279 */
1280 if (r->todo == ISO_RES_ALLOC)
1281 r->todo = ISO_RES_REALLOC;
1282 /*
1283 * Allocation or reallocation failure? Pull this resource out of the
1284 * idr and prepare for deletion, unless the client is shutting down.
1285 */
1286 if (r->todo == ISO_RES_REALLOC && !success &&
1287 !client->in_shutdown &&
1288 idr_find(&client->resource_idr, r->resource.handle)) {
1289 idr_remove(&client->resource_idr, r->resource.handle);
1290 client_put(client);
1291 free = true;
1292 }
1293 spin_unlock_irq(&client->lock);
1294
1295 if (todo == ISO_RES_ALLOC && channel >= 0)
Stefan Richter5d9cb7d2009-01-08 23:07:40 +01001296 r->channels = 1ULL << channel;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001297
1298 if (todo == ISO_RES_REALLOC && success)
1299 goto out;
1300
Stefan Richter1ec3c022009-01-04 16:23:29 +01001301 if (todo == ISO_RES_ALLOC || todo == ISO_RES_ALLOC_ONCE) {
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001302 e = r->e_alloc;
1303 r->e_alloc = NULL;
1304 } else {
1305 e = r->e_dealloc;
1306 r->e_dealloc = NULL;
1307 }
Stefan Richtere21fcf72009-10-08 00:41:38 +02001308 e->iso_resource.handle = r->resource.handle;
1309 e->iso_resource.channel = channel;
1310 e->iso_resource.bandwidth = bandwidth;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001311
1312 queue_event(client, &e->event,
Stefan Richtere21fcf72009-10-08 00:41:38 +02001313 &e->iso_resource, sizeof(e->iso_resource), NULL, 0);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001314
1315 if (free) {
1316 cancel_delayed_work(&r->work);
1317 kfree(r->e_alloc);
1318 kfree(r->e_dealloc);
1319 kfree(r);
1320 }
1321 out:
1322 client_put(client);
1323}
1324
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001325static void release_iso_resource(struct client *client,
1326 struct client_resource *resource)
1327{
1328 struct iso_resource *r =
1329 container_of(resource, struct iso_resource, resource);
1330
1331 spin_lock_irq(&client->lock);
1332 r->todo = ISO_RES_DEALLOC;
Stefan Richter9fb551b2009-10-08 00:41:10 +02001333 schedule_iso_resource(r, 0);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001334 spin_unlock_irq(&client->lock);
1335}
1336
Stefan Richter1ec3c022009-01-04 16:23:29 +01001337static int init_iso_resource(struct client *client,
1338 struct fw_cdev_allocate_iso_resource *request, int todo)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001339{
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001340 struct iso_resource_event *e1, *e2;
1341 struct iso_resource *r;
1342 int ret;
1343
1344 if ((request->channels == 0 && request->bandwidth == 0) ||
1345 request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL ||
1346 request->bandwidth < 0)
1347 return -EINVAL;
1348
1349 r = kmalloc(sizeof(*r), GFP_KERNEL);
1350 e1 = kmalloc(sizeof(*e1), GFP_KERNEL);
1351 e2 = kmalloc(sizeof(*e2), GFP_KERNEL);
1352 if (r == NULL || e1 == NULL || e2 == NULL) {
1353 ret = -ENOMEM;
1354 goto fail;
1355 }
1356
1357 INIT_DELAYED_WORK(&r->work, iso_resource_work);
1358 r->client = client;
Stefan Richter1ec3c022009-01-04 16:23:29 +01001359 r->todo = todo;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001360 r->generation = -1;
1361 r->channels = request->channels;
1362 r->bandwidth = request->bandwidth;
1363 r->e_alloc = e1;
1364 r->e_dealloc = e2;
1365
Stefan Richtere21fcf72009-10-08 00:41:38 +02001366 e1->iso_resource.closure = request->closure;
1367 e1->iso_resource.type = FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED;
1368 e2->iso_resource.closure = request->closure;
1369 e2->iso_resource.type = FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED;
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001370
Stefan Richter1ec3c022009-01-04 16:23:29 +01001371 if (todo == ISO_RES_ALLOC) {
1372 r->resource.release = release_iso_resource;
1373 ret = add_client_resource(client, &r->resource, GFP_KERNEL);
Stefan Richter81610b82009-01-11 13:44:46 +01001374 if (ret < 0)
1375 goto fail;
Stefan Richter1ec3c022009-01-04 16:23:29 +01001376 } else {
1377 r->resource.release = NULL;
1378 r->resource.handle = -1;
Stefan Richter9fb551b2009-10-08 00:41:10 +02001379 schedule_iso_resource(r, 0);
Stefan Richter1ec3c022009-01-04 16:23:29 +01001380 }
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001381 request->handle = r->resource.handle;
1382
1383 return 0;
1384 fail:
1385 kfree(r);
1386 kfree(e1);
1387 kfree(e2);
1388
1389 return ret;
1390}
1391
Stefan Richter6e95dea2010-02-21 17:56:21 +01001392static int ioctl_allocate_iso_resource(struct client *client,
1393 union ioctl_arg *arg)
Stefan Richter1ec3c022009-01-04 16:23:29 +01001394{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001395 return init_iso_resource(client,
1396 &arg->allocate_iso_resource, ISO_RES_ALLOC);
Stefan Richter1ec3c022009-01-04 16:23:29 +01001397}
1398
Stefan Richter6e95dea2010-02-21 17:56:21 +01001399static int ioctl_deallocate_iso_resource(struct client *client,
1400 union ioctl_arg *arg)
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001401{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001402 return release_client_resource(client,
1403 arg->deallocate.handle, release_iso_resource, NULL);
Jay Fenlason, Stefan Richterb1bda4c2009-01-04 16:23:29 +01001404}
1405
Stefan Richter6e95dea2010-02-21 17:56:21 +01001406static int ioctl_allocate_iso_resource_once(struct client *client,
1407 union ioctl_arg *arg)
Stefan Richter1ec3c022009-01-04 16:23:29 +01001408{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001409 return init_iso_resource(client,
1410 &arg->allocate_iso_resource, ISO_RES_ALLOC_ONCE);
Stefan Richter1ec3c022009-01-04 16:23:29 +01001411}
1412
Stefan Richter6e95dea2010-02-21 17:56:21 +01001413static int ioctl_deallocate_iso_resource_once(struct client *client,
1414 union ioctl_arg *arg)
Stefan Richter1ec3c022009-01-04 16:23:29 +01001415{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001416 return init_iso_resource(client,
1417 &arg->allocate_iso_resource, ISO_RES_DEALLOC_ONCE);
Stefan Richter1ec3c022009-01-04 16:23:29 +01001418}
1419
Stefan Richterc8a25902009-03-10 20:59:16 +01001420/*
1421 * Returns a speed code: Maximum speed to or from this device,
1422 * limited by the device's link speed, the local node's link speed,
1423 * and all PHY port speeds between the two links.
1424 */
Stefan Richter6e95dea2010-02-21 17:56:21 +01001425static int ioctl_get_speed(struct client *client, union ioctl_arg *arg)
Stefan Richter33580a32009-01-04 16:23:29 +01001426{
Stefan Richterc8a25902009-03-10 20:59:16 +01001427 return client->device->max_speed;
Stefan Richter33580a32009-01-04 16:23:29 +01001428}
1429
Stefan Richter6e95dea2010-02-21 17:56:21 +01001430static int ioctl_send_broadcast_request(struct client *client,
1431 union ioctl_arg *arg)
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001432{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001433 struct fw_cdev_send_request *a = &arg->send_request;
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001434
Stefan Richter6e95dea2010-02-21 17:56:21 +01001435 switch (a->tcode) {
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001436 case TCODE_WRITE_QUADLET_REQUEST:
1437 case TCODE_WRITE_BLOCK_REQUEST:
1438 break;
1439 default:
1440 return -EINVAL;
1441 }
1442
Stefan Richter1566f3d2009-01-04 16:23:29 +01001443 /* Security policy: Only allow accesses to Units Space. */
Stefan Richter6e95dea2010-02-21 17:56:21 +01001444 if (a->offset < CSR_REGISTER_BASE + CSR_CONFIG_ROM_END)
Stefan Richter1566f3d2009-01-04 16:23:29 +01001445 return -EACCES;
1446
Stefan Richter6e95dea2010-02-21 17:56:21 +01001447 return init_request(client, a, LOCAL_BUS | 0x3f, SCODE_100);
Jay Fenlason, Stefan Richteracfe8332009-01-04 16:23:29 +01001448}
1449
Stefan Richter6e95dea2010-02-21 17:56:21 +01001450static int ioctl_send_stream_packet(struct client *client, union ioctl_arg *arg)
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001451{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001452 struct fw_cdev_send_stream_packet *a = &arg->send_stream_packet;
Stefan Richter18e9b102009-03-10 21:02:21 +01001453 struct fw_cdev_send_request request;
1454 int dest;
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001455
Stefan Richter6e95dea2010-02-21 17:56:21 +01001456 if (a->speed > client->device->card->link_speed ||
1457 a->length > 1024 << a->speed)
Stefan Richter18e9b102009-03-10 21:02:21 +01001458 return -EIO;
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001459
Stefan Richter6e95dea2010-02-21 17:56:21 +01001460 if (a->tag > 3 || a->channel > 63 || a->sy > 15)
Stefan Richter18e9b102009-03-10 21:02:21 +01001461 return -EINVAL;
1462
Stefan Richter6e95dea2010-02-21 17:56:21 +01001463 dest = fw_stream_packet_destination_id(a->tag, a->channel, a->sy);
Stefan Richter18e9b102009-03-10 21:02:21 +01001464 request.tcode = TCODE_STREAM_DATA;
Stefan Richter6e95dea2010-02-21 17:56:21 +01001465 request.length = a->length;
1466 request.closure = a->closure;
1467 request.data = a->data;
1468 request.generation = a->generation;
Stefan Richter18e9b102009-03-10 21:02:21 +01001469
Stefan Richter6e95dea2010-02-21 17:56:21 +01001470 return init_request(client, &request, dest, a->speed);
Jay Fenlasonf8c22872009-03-05 19:08:40 +01001471}
1472
Stefan Richter850bb6f2010-07-16 22:25:14 +02001473static void outbound_phy_packet_callback(struct fw_packet *packet,
1474 struct fw_card *card, int status)
1475{
1476 struct outbound_phy_packet_event *e =
1477 container_of(packet, struct outbound_phy_packet_event, p);
1478
1479 switch (status) {
1480 /* expected: */
1481 case ACK_COMPLETE: e->phy_packet.rcode = RCODE_COMPLETE; break;
1482 /* should never happen with PHY packets: */
1483 case ACK_PENDING: e->phy_packet.rcode = RCODE_COMPLETE; break;
1484 case ACK_BUSY_X:
1485 case ACK_BUSY_A:
1486 case ACK_BUSY_B: e->phy_packet.rcode = RCODE_BUSY; break;
1487 case ACK_DATA_ERROR: e->phy_packet.rcode = RCODE_DATA_ERROR; break;
1488 case ACK_TYPE_ERROR: e->phy_packet.rcode = RCODE_TYPE_ERROR; break;
1489 /* stale generation; cancelled; on certain controllers: no ack */
1490 default: e->phy_packet.rcode = status; break;
1491 }
Stefan Richtercc550212010-07-18 13:00:50 +02001492 e->phy_packet.data[0] = packet->timestamp;
Stefan Richter850bb6f2010-07-16 22:25:14 +02001493
Stefan Richtercc550212010-07-18 13:00:50 +02001494 queue_event(e->client, &e->event, &e->phy_packet,
1495 sizeof(e->phy_packet) + e->phy_packet.length, NULL, 0);
Stefan Richter850bb6f2010-07-16 22:25:14 +02001496 client_put(e->client);
1497}
1498
1499static int ioctl_send_phy_packet(struct client *client, union ioctl_arg *arg)
1500{
1501 struct fw_cdev_send_phy_packet *a = &arg->send_phy_packet;
1502 struct fw_card *card = client->device->card;
1503 struct outbound_phy_packet_event *e;
1504
1505 /* Access policy: Allow this ioctl only on local nodes' device files. */
1506 if (!client->device->is_local)
1507 return -ENOSYS;
1508
Stefan Richtercc550212010-07-18 13:00:50 +02001509 e = kzalloc(sizeof(*e) + 4, GFP_KERNEL);
Stefan Richter850bb6f2010-07-16 22:25:14 +02001510 if (e == NULL)
1511 return -ENOMEM;
1512
1513 client_get(client);
1514 e->client = client;
1515 e->p.speed = SCODE_100;
1516 e->p.generation = a->generation;
Clemens Ladisch5b06db12010-11-30 08:24:47 +01001517 e->p.header[0] = TCODE_LINK_INTERNAL << 4;
1518 e->p.header[1] = a->data[0];
1519 e->p.header[2] = a->data[1];
1520 e->p.header_length = 12;
Stefan Richter850bb6f2010-07-16 22:25:14 +02001521 e->p.callback = outbound_phy_packet_callback;
1522 e->phy_packet.closure = a->closure;
1523 e->phy_packet.type = FW_CDEV_EVENT_PHY_PACKET_SENT;
Stefan Richtercc550212010-07-18 13:00:50 +02001524 if (is_ping_packet(a->data))
1525 e->phy_packet.length = 4;
Stefan Richter850bb6f2010-07-16 22:25:14 +02001526
1527 card->driver->send_request(card, &e->p);
1528
1529 return 0;
1530}
1531
Stefan Richterbf54e142010-07-16 22:25:51 +02001532static int ioctl_receive_phy_packets(struct client *client, union ioctl_arg *arg)
1533{
1534 struct fw_cdev_receive_phy_packets *a = &arg->receive_phy_packets;
1535 struct fw_card *card = client->device->card;
1536
1537 /* Access policy: Allow this ioctl only on local nodes' device files. */
1538 if (!client->device->is_local)
1539 return -ENOSYS;
1540
1541 spin_lock_irq(&card->lock);
1542
1543 list_move_tail(&client->phy_receiver_link, &card->phy_receiver_list);
1544 client->phy_receiver_closure = a->closure;
1545
1546 spin_unlock_irq(&card->lock);
1547
1548 return 0;
1549}
1550
1551void fw_cdev_handle_phy_packet(struct fw_card *card, struct fw_packet *p)
1552{
1553 struct client *client;
1554 struct inbound_phy_packet_event *e;
1555 unsigned long flags;
1556
1557 spin_lock_irqsave(&card->lock, flags);
1558
1559 list_for_each_entry(client, &card->phy_receiver_list, phy_receiver_link) {
1560 e = kmalloc(sizeof(*e) + 8, GFP_ATOMIC);
1561 if (e == NULL) {
Stefan Richter26b49502012-02-18 22:03:14 +01001562 fw_notice(card, "out of memory when allocating event\n");
Stefan Richterbf54e142010-07-16 22:25:51 +02001563 break;
1564 }
1565 e->phy_packet.closure = client->phy_receiver_closure;
1566 e->phy_packet.type = FW_CDEV_EVENT_PHY_PACKET_RECEIVED;
1567 e->phy_packet.rcode = RCODE_COMPLETE;
1568 e->phy_packet.length = 8;
1569 e->phy_packet.data[0] = p->header[1];
1570 e->phy_packet.data[1] = p->header[2];
1571 queue_event(client, &e->event,
1572 &e->phy_packet, sizeof(e->phy_packet) + 8, NULL, 0);
1573 }
1574
1575 spin_unlock_irqrestore(&card->lock, flags);
1576}
1577
Stefan Richter6e95dea2010-02-21 17:56:21 +01001578static int (* const ioctl_handlers[])(struct client *, union ioctl_arg *) = {
Stefan Richterb9dc61c2010-07-16 22:24:29 +02001579 [0x00] = ioctl_get_info,
1580 [0x01] = ioctl_send_request,
1581 [0x02] = ioctl_allocate,
1582 [0x03] = ioctl_deallocate,
1583 [0x04] = ioctl_send_response,
1584 [0x05] = ioctl_initiate_bus_reset,
1585 [0x06] = ioctl_add_descriptor,
1586 [0x07] = ioctl_remove_descriptor,
1587 [0x08] = ioctl_create_iso_context,
1588 [0x09] = ioctl_queue_iso,
1589 [0x0a] = ioctl_start_iso,
1590 [0x0b] = ioctl_stop_iso,
1591 [0x0c] = ioctl_get_cycle_timer,
1592 [0x0d] = ioctl_allocate_iso_resource,
1593 [0x0e] = ioctl_deallocate_iso_resource,
1594 [0x0f] = ioctl_allocate_iso_resource_once,
1595 [0x10] = ioctl_deallocate_iso_resource_once,
1596 [0x11] = ioctl_get_speed,
1597 [0x12] = ioctl_send_broadcast_request,
1598 [0x13] = ioctl_send_stream_packet,
1599 [0x14] = ioctl_get_cycle_timer2,
Stefan Richter850bb6f2010-07-16 22:25:14 +02001600 [0x15] = ioctl_send_phy_packet,
Stefan Richterbf54e142010-07-16 22:25:51 +02001601 [0x16] = ioctl_receive_phy_packets,
Stefan Richter872e3302010-07-29 18:19:22 +02001602 [0x17] = ioctl_set_iso_channels,
Clemens Ladischd1bbd202012-03-18 19:06:39 +01001603 [0x18] = ioctl_flush_iso,
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001604};
1605
Stefan Richter53dca512008-12-14 21:47:04 +01001606static int dispatch_ioctl(struct client *client,
1607 unsigned int cmd, void __user *arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001608{
Stefan Richter6e95dea2010-02-21 17:56:21 +01001609 union ioctl_arg buffer;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001610 int ret;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001611
Stefan Richter64582292010-02-21 17:56:42 +01001612 if (fw_device_is_shutdown(client->device))
1613 return -ENODEV;
1614
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001615 if (_IOC_TYPE(cmd) != '#' ||
Stefan Richter9cac00b2010-04-07 08:30:50 +02001616 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers) ||
1617 _IOC_SIZE(cmd) > sizeof(buffer))
Stefan Richterd873d792011-07-09 16:42:26 +02001618 return -ENOTTY;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001619
Stefan Richter9cac00b2010-04-07 08:30:50 +02001620 if (_IOC_DIR(cmd) == _IOC_READ)
1621 memset(&buffer, 0, _IOC_SIZE(cmd));
1622
1623 if (_IOC_DIR(cmd) & _IOC_WRITE)
1624 if (copy_from_user(&buffer, arg, _IOC_SIZE(cmd)))
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001625 return -EFAULT;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001626
Stefan Richter6e95dea2010-02-21 17:56:21 +01001627 ret = ioctl_handlers[_IOC_NR(cmd)](client, &buffer);
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001628 if (ret < 0)
1629 return ret;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001630
Stefan Richter9cac00b2010-04-07 08:30:50 +02001631 if (_IOC_DIR(cmd) & _IOC_READ)
1632 if (copy_to_user(arg, &buffer, _IOC_SIZE(cmd)))
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001633 return -EFAULT;
Kristian Høgsberg4f259222007-04-30 15:03:13 -04001634
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001635 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001636}
1637
Stefan Richter53dca512008-12-14 21:47:04 +01001638static long fw_device_op_ioctl(struct file *file,
1639 unsigned int cmd, unsigned long arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001640{
Stefan Richter64582292010-02-21 17:56:42 +01001641 return dispatch_ioctl(file->private_data, cmd, (void __user *)arg);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001642}
1643
1644#ifdef CONFIG_COMPAT
Stefan Richter53dca512008-12-14 21:47:04 +01001645static long fw_device_op_compat_ioctl(struct file *file,
1646 unsigned int cmd, unsigned long arg)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001647{
Stefan Richter64582292010-02-21 17:56:42 +01001648 return dispatch_ioctl(file->private_data, cmd, compat_ptr(arg));
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001649}
1650#endif
1651
1652static int fw_device_op_mmap(struct file *file, struct vm_area_struct *vma)
1653{
1654 struct client *client = file->private_data;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001655 enum dma_data_direction direction;
1656 unsigned long size;
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001657 int page_count, ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001658
Jay Fenlason551f4cb2008-05-16 11:15:23 -04001659 if (fw_device_is_shutdown(client->device))
1660 return -ENODEV;
1661
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001662 /* FIXME: We could support multiple buffers, but we don't. */
1663 if (client->buffer.pages != NULL)
1664 return -EBUSY;
1665
1666 if (!(vma->vm_flags & VM_SHARED))
1667 return -EINVAL;
1668
1669 if (vma->vm_start & ~PAGE_MASK)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001670 return -EINVAL;
1671
1672 client->vm_start = vma->vm_start;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001673 size = vma->vm_end - vma->vm_start;
1674 page_count = size >> PAGE_SHIFT;
1675 if (size & ~PAGE_MASK)
1676 return -EINVAL;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001677
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001678 if (vma->vm_flags & VM_WRITE)
1679 direction = DMA_TO_DEVICE;
1680 else
1681 direction = DMA_FROM_DEVICE;
1682
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001683 ret = fw_iso_buffer_init(&client->buffer, client->device->card,
1684 page_count, direction);
1685 if (ret < 0)
1686 return ret;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001687
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001688 ret = fw_iso_buffer_map(&client->buffer, vma);
1689 if (ret < 0)
Kristian Høgsberg9aad8122007-02-16 17:34:38 -05001690 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1691
Stefan Richter2dbd7d72008-12-14 21:45:45 +01001692 return ret;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001693}
1694
Clemens Ladisch5a5e62d2011-01-10 17:28:39 +01001695static int is_outbound_transaction_resource(int id, void *p, void *data)
1696{
1697 struct client_resource *resource = p;
1698
1699 return resource->release == release_transaction;
1700}
1701
1702static int has_outbound_transactions(struct client *client)
1703{
1704 int ret;
1705
1706 spin_lock_irq(&client->lock);
1707 ret = idr_for_each(&client->resource_idr,
1708 is_outbound_transaction_resource, NULL);
1709 spin_unlock_irq(&client->lock);
1710
1711 return ret;
1712}
1713
Jay Fenlason45ee3192008-12-21 16:47:17 +01001714static int shutdown_resource(int id, void *p, void *data)
1715{
Stefan Richtere21fcf72009-10-08 00:41:38 +02001716 struct client_resource *resource = p;
Jay Fenlason45ee3192008-12-21 16:47:17 +01001717 struct client *client = data;
1718
Stefan Richtere21fcf72009-10-08 00:41:38 +02001719 resource->release(client, resource);
Stefan Richterfb443032009-01-04 16:23:29 +01001720 client_put(client);
Jay Fenlason45ee3192008-12-21 16:47:17 +01001721
1722 return 0;
1723}
1724
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001725static int fw_device_op_release(struct inode *inode, struct file *file)
1726{
1727 struct client *client = file->private_data;
Stefan Richtere21fcf72009-10-08 00:41:38 +02001728 struct event *event, *next_event;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001729
Stefan Richterbf54e142010-07-16 22:25:51 +02001730 spin_lock_irq(&client->device->card->lock);
1731 list_del(&client->phy_receiver_link);
1732 spin_unlock_irq(&client->device->card->lock);
1733
Stefan Richter97811e32008-12-14 19:19:23 +01001734 mutex_lock(&client->device->client_list_mutex);
1735 list_del(&client->link);
1736 mutex_unlock(&client->device->client_list_mutex);
1737
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001738 if (client->iso_context)
1739 fw_iso_context_destroy(client->iso_context);
1740
Stefan Richter36a755c2009-01-05 20:28:10 +01001741 if (client->buffer.pages)
1742 fw_iso_buffer_destroy(&client->buffer, client->device->card);
1743
Jay Fenlason45ee3192008-12-21 16:47:17 +01001744 /* Freeze client->resource_idr and client->event_list */
Stefan Richter3ba94982009-01-04 16:23:29 +01001745 spin_lock_irq(&client->lock);
Jay Fenlason45ee3192008-12-21 16:47:17 +01001746 client->in_shutdown = true;
Stefan Richter3ba94982009-01-04 16:23:29 +01001747 spin_unlock_irq(&client->lock);
Kristian Høgsberg66dea3e2007-03-28 21:26:42 +02001748
Clemens Ladisch5a5e62d2011-01-10 17:28:39 +01001749 wait_event(client->tx_flush_wait, !has_outbound_transactions(client));
1750
Jay Fenlason45ee3192008-12-21 16:47:17 +01001751 idr_for_each(&client->resource_idr, shutdown_resource, client);
1752 idr_remove_all(&client->resource_idr);
1753 idr_destroy(&client->resource_idr);
Kristian Høgsberg28cf6a02007-03-07 12:12:50 -05001754
Stefan Richtere21fcf72009-10-08 00:41:38 +02001755 list_for_each_entry_safe(event, next_event, &client->event_list, link)
1756 kfree(event);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001757
Stefan Richterfb443032009-01-04 16:23:29 +01001758 client_put(client);
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001759
1760 return 0;
1761}
1762
1763static unsigned int fw_device_op_poll(struct file *file, poll_table * pt)
1764{
1765 struct client *client = file->private_data;
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001766 unsigned int mask = 0;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001767
1768 poll_wait(file, &client->wait, pt);
1769
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001770 if (fw_device_is_shutdown(client->device))
1771 mask |= POLLHUP | POLLERR;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001772 if (!list_empty(&client->event_list))
Kristian Høgsberg2603bf22007-03-07 12:12:48 -05001773 mask |= POLLIN | POLLRDNORM;
1774
1775 return mask;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001776}
1777
Stefan Richter21ebcd12007-01-14 15:29:07 +01001778const struct file_operations fw_device_ops = {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001779 .owner = THIS_MODULE,
Stefan Richter3ac26b22010-04-10 16:38:05 +01001780 .llseek = no_llseek,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001781 .open = fw_device_op_open,
1782 .read = fw_device_op_read,
1783 .unlocked_ioctl = fw_device_op_ioctl,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001784 .mmap = fw_device_op_mmap,
Stefan Richter3ac26b22010-04-10 16:38:05 +01001785 .release = fw_device_op_release,
1786 .poll = fw_device_op_poll,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001787#ifdef CONFIG_COMPAT
Stefan Richter5af4e5e2007-01-21 20:45:32 +01001788 .compat_ioctl = fw_device_op_compat_ioctl,
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001789#endif
1790};