[PATCH] libata: kill unused xfer_mode functions
[linux-2.6/mini2440.git] / net / irda / irda_device.c
blobe3debbdb67f5a0272db139cda75eef326e0db71b
1 /*********************************************************************
3 * Filename: irda_device.c
4 * Version: 0.9
5 * Description: Utility functions used by the device drivers
6 * Status: Experimental.
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sat Oct 9 09:22:27 1999
9 * Modified at: Sun Jan 23 17:41:24 2000
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
12 * Copyright (c) 1999-2000 Dag Brattli, All Rights Reserved.
13 * Copyright (c) 2000-2001 Jean Tourrilhes <jt@hpl.hp.com>
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * MA 02111-1307 USA
30 ********************************************************************/
32 #include <linux/config.h>
33 #include <linux/string.h>
34 #include <linux/proc_fs.h>
35 #include <linux/skbuff.h>
36 #include <linux/capability.h>
37 #include <linux/if.h>
38 #include <linux/if_ether.h>
39 #include <linux/if_arp.h>
40 #include <linux/netdevice.h>
41 #include <linux/init.h>
42 #include <linux/tty.h>
43 #include <linux/kmod.h>
44 #include <linux/spinlock.h>
46 #include <asm/ioctls.h>
47 #include <asm/uaccess.h>
48 #include <asm/dma.h>
49 #include <asm/io.h>
51 #include <net/irda/irda_device.h>
52 #include <net/irda/irlap.h>
53 #include <net/irda/timer.h>
54 #include <net/irda/wrapper.h>
56 static void __irda_task_delete(struct irda_task *task);
58 static hashbin_t *dongles = NULL;
59 static hashbin_t *tasks = NULL;
61 #ifdef CONFIG_IRDA_DEBUG
62 static const char *task_state[] = {
63 "IRDA_TASK_INIT",
64 "IRDA_TASK_DONE",
65 "IRDA_TASK_WAIT",
66 "IRDA_TASK_WAIT1",
67 "IRDA_TASK_WAIT2",
68 "IRDA_TASK_WAIT3",
69 "IRDA_TASK_CHILD_INIT",
70 "IRDA_TASK_CHILD_WAIT",
71 "IRDA_TASK_CHILD_DONE",
73 #endif /* CONFIG_IRDA_DEBUG */
75 static void irda_task_timer_expired(void *data);
77 int __init irda_device_init( void)
79 dongles = hashbin_new(HB_NOLOCK);
80 if (dongles == NULL) {
81 IRDA_WARNING("IrDA: Can't allocate dongles hashbin!\n");
82 return -ENOMEM;
84 spin_lock_init(&dongles->hb_spinlock);
86 tasks = hashbin_new(HB_LOCK);
87 if (tasks == NULL) {
88 IRDA_WARNING("IrDA: Can't allocate tasks hashbin!\n");
89 hashbin_delete(dongles, NULL);
90 return -ENOMEM;
93 /* We no longer initialise the driver ourselves here, we let
94 * the system do it for us... - Jean II */
96 return 0;
99 static void __exit leftover_dongle(void *arg)
101 struct dongle_reg *reg = arg;
102 IRDA_WARNING("IrDA: Dongle type %x not unregistered\n",
103 reg->type);
106 void __exit irda_device_cleanup(void)
108 IRDA_DEBUG(4, "%s()\n", __FUNCTION__);
110 hashbin_delete(tasks, (FREE_FUNC) __irda_task_delete);
112 hashbin_delete(dongles, leftover_dongle);
116 * Function irda_device_set_media_busy (self, status)
118 * Called when we have detected that another station is transmitting
119 * in contention mode.
121 void irda_device_set_media_busy(struct net_device *dev, int status)
123 struct irlap_cb *self;
125 IRDA_DEBUG(4, "%s(%s)\n", __FUNCTION__, status ? "TRUE" : "FALSE");
127 self = (struct irlap_cb *) dev->atalk_ptr;
129 /* Some drivers may enable the receive interrupt before calling
130 * irlap_open(), or they may disable the receive interrupt
131 * after calling irlap_close().
132 * The IrDA stack is protected from this in irlap_driver_rcv().
133 * However, the driver calls directly the wrapper, that calls
134 * us directly. Make sure we protect ourselves.
135 * Jean II */
136 if (!self || self->magic != LAP_MAGIC)
137 return;
139 if (status) {
140 self->media_busy = TRUE;
141 if (status == SMALL)
142 irlap_start_mbusy_timer(self, SMALLBUSY_TIMEOUT);
143 else
144 irlap_start_mbusy_timer(self, MEDIABUSY_TIMEOUT);
145 IRDA_DEBUG( 4, "Media busy!\n");
146 } else {
147 self->media_busy = FALSE;
148 irlap_stop_mbusy_timer(self);
151 EXPORT_SYMBOL(irda_device_set_media_busy);
155 * Function irda_device_is_receiving (dev)
157 * Check if the device driver is currently receiving data
160 int irda_device_is_receiving(struct net_device *dev)
162 struct if_irda_req req;
163 int ret;
165 IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
167 if (!dev->do_ioctl) {
168 IRDA_ERROR("%s: do_ioctl not impl. by device driver\n",
169 __FUNCTION__);
170 return -1;
173 ret = dev->do_ioctl(dev, (struct ifreq *) &req, SIOCGRECEIVING);
174 if (ret < 0)
175 return ret;
177 return req.ifr_receiving;
180 void irda_task_next_state(struct irda_task *task, IRDA_TASK_STATE state)
182 IRDA_DEBUG(2, "%s(), state = %s\n", __FUNCTION__, task_state[state]);
184 task->state = state;
186 EXPORT_SYMBOL(irda_task_next_state);
188 static void __irda_task_delete(struct irda_task *task)
190 del_timer(&task->timer);
192 kfree(task);
195 void irda_task_delete(struct irda_task *task)
197 /* Unregister task */
198 hashbin_remove(tasks, (long) task, NULL);
200 __irda_task_delete(task);
202 EXPORT_SYMBOL(irda_task_delete);
205 * Function irda_task_kick (task)
207 * Tries to execute a task possible multiple times until the task is either
208 * finished, or askes for a timeout. When a task is finished, we do post
209 * processing, and notify the parent task, that is waiting for this task
210 * to complete.
212 static int irda_task_kick(struct irda_task *task)
214 int finished = TRUE;
215 int count = 0;
216 int timeout;
218 IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
220 IRDA_ASSERT(task != NULL, return -1;);
221 IRDA_ASSERT(task->magic == IRDA_TASK_MAGIC, return -1;);
223 /* Execute task until it's finished, or askes for a timeout */
224 do {
225 timeout = task->function(task);
226 if (count++ > 100) {
227 IRDA_ERROR("%s: error in task handler!\n",
228 __FUNCTION__);
229 irda_task_delete(task);
230 return TRUE;
232 } while ((timeout == 0) && (task->state != IRDA_TASK_DONE));
234 if (timeout < 0) {
235 IRDA_ERROR("%s: Error executing task!\n", __FUNCTION__);
236 irda_task_delete(task);
237 return TRUE;
240 /* Check if we are finished */
241 if (task->state == IRDA_TASK_DONE) {
242 del_timer(&task->timer);
244 /* Do post processing */
245 if (task->finished)
246 task->finished(task);
248 /* Notify parent */
249 if (task->parent) {
250 /* Check if parent is waiting for us to complete */
251 if (task->parent->state == IRDA_TASK_CHILD_WAIT) {
252 task->parent->state = IRDA_TASK_CHILD_DONE;
254 /* Stop timer now that we are here */
255 del_timer(&task->parent->timer);
257 /* Kick parent task */
258 irda_task_kick(task->parent);
261 irda_task_delete(task);
262 } else if (timeout > 0) {
263 irda_start_timer(&task->timer, timeout, (void *) task,
264 irda_task_timer_expired);
265 finished = FALSE;
266 } else {
267 IRDA_DEBUG(0, "%s(), not finished, and no timeout!\n",
268 __FUNCTION__);
269 finished = FALSE;
272 return finished;
276 * Function irda_task_execute (instance, function, finished)
278 * This function registers and tries to execute tasks that may take some
279 * time to complete. We do it this hairy way since we may have been
280 * called from interrupt context, so it's not possible to use
281 * schedule_timeout()
282 * Two important notes :
283 * o Make sure you irda_task_delete(task); in case you delete the
284 * calling instance.
285 * o No real need to lock when calling this function, but you may
286 * want to lock within the task handler.
287 * Jean II
289 struct irda_task *irda_task_execute(void *instance,
290 IRDA_TASK_CALLBACK function,
291 IRDA_TASK_CALLBACK finished,
292 struct irda_task *parent, void *param)
294 struct irda_task *task;
296 IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
298 task = kmalloc(sizeof(struct irda_task), GFP_ATOMIC);
299 if (!task)
300 return NULL;
302 task->state = IRDA_TASK_INIT;
303 task->instance = instance;
304 task->function = function;
305 task->finished = finished;
306 task->parent = parent;
307 task->param = param;
308 task->magic = IRDA_TASK_MAGIC;
310 init_timer(&task->timer);
312 /* Register task */
313 hashbin_insert(tasks, (irda_queue_t *) task, (long) task, NULL);
315 /* No time to waste, so lets get going! */
316 return irda_task_kick(task) ? NULL : task;
318 EXPORT_SYMBOL(irda_task_execute);
321 * Function irda_task_timer_expired (data)
323 * Task time has expired. We now try to execute task (again), and restart
324 * the timer if the task has not finished yet
326 static void irda_task_timer_expired(void *data)
328 struct irda_task *task;
330 IRDA_DEBUG(2, "%s()\n", __FUNCTION__);
332 task = (struct irda_task *) data;
334 irda_task_kick(task);
338 * Function irda_device_setup (dev)
340 * This function should be used by low level device drivers in a similar way
341 * as ether_setup() is used by normal network device drivers
343 static void irda_device_setup(struct net_device *dev)
345 dev->hard_header_len = 0;
346 dev->addr_len = LAP_ALEN;
348 dev->type = ARPHRD_IRDA;
349 dev->tx_queue_len = 8; /* Window size + 1 s-frame */
351 memset(dev->broadcast, 0xff, LAP_ALEN);
353 dev->mtu = 2048;
354 dev->flags = IFF_NOARP;
358 * Funciton alloc_irdadev
359 * Allocates and sets up an IRDA device in a manner similar to
360 * alloc_etherdev.
362 struct net_device *alloc_irdadev(int sizeof_priv)
364 return alloc_netdev(sizeof_priv, "irda%d", irda_device_setup);
366 EXPORT_SYMBOL(alloc_irdadev);
369 * Function irda_device_init_dongle (self, type, qos)
371 * Initialize attached dongle.
373 * Important : request_module require us to call this function with
374 * a process context and irq enabled. - Jean II
376 dongle_t *irda_device_dongle_init(struct net_device *dev, int type)
378 struct dongle_reg *reg;
379 dongle_t *dongle = NULL;
381 might_sleep();
383 spin_lock(&dongles->hb_spinlock);
384 reg = hashbin_find(dongles, type, NULL);
386 #ifdef CONFIG_KMOD
387 /* Try to load the module needed */
388 if (!reg && capable(CAP_SYS_MODULE)) {
389 spin_unlock(&dongles->hb_spinlock);
391 request_module("irda-dongle-%d", type);
393 spin_lock(&dongles->hb_spinlock);
394 reg = hashbin_find(dongles, type, NULL);
396 #endif
398 if (!reg || !try_module_get(reg->owner) ) {
399 IRDA_ERROR("IrDA: Unable to find requested dongle type %x\n",
400 type);
401 goto out;
404 /* Allocate dongle info for this instance */
405 dongle = kmalloc(sizeof(dongle_t), GFP_KERNEL);
406 if (!dongle)
407 goto out;
409 memset(dongle, 0, sizeof(dongle_t));
411 /* Bind the registration info to this particular instance */
412 dongle->issue = reg;
413 dongle->dev = dev;
415 out:
416 spin_unlock(&dongles->hb_spinlock);
417 return dongle;
419 EXPORT_SYMBOL(irda_device_dongle_init);
422 * Function irda_device_dongle_cleanup (dongle)
424 int irda_device_dongle_cleanup(dongle_t *dongle)
426 IRDA_ASSERT(dongle != NULL, return -1;);
428 dongle->issue->close(dongle);
429 module_put(dongle->issue->owner);
430 kfree(dongle);
432 return 0;
434 EXPORT_SYMBOL(irda_device_dongle_cleanup);
437 * Function irda_device_register_dongle (dongle)
439 int irda_device_register_dongle(struct dongle_reg *new)
441 spin_lock(&dongles->hb_spinlock);
442 /* Check if this dongle has been registered before */
443 if (hashbin_find(dongles, new->type, NULL)) {
444 IRDA_MESSAGE("%s: Dongle type %x already registered\n",
445 __FUNCTION__, new->type);
446 } else {
447 /* Insert IrDA dongle into hashbin */
448 hashbin_insert(dongles, (irda_queue_t *) new, new->type, NULL);
450 spin_unlock(&dongles->hb_spinlock);
452 return 0;
454 EXPORT_SYMBOL(irda_device_register_dongle);
457 * Function irda_device_unregister_dongle (dongle)
459 * Unregister dongle, and remove dongle from list of registered dongles
462 void irda_device_unregister_dongle(struct dongle_reg *dongle)
464 struct dongle *node;
466 spin_lock(&dongles->hb_spinlock);
467 node = hashbin_remove(dongles, dongle->type, NULL);
468 if (!node)
469 IRDA_ERROR("%s: dongle not found!\n", __FUNCTION__);
470 spin_unlock(&dongles->hb_spinlock);
472 EXPORT_SYMBOL(irda_device_unregister_dongle);
474 #ifdef CONFIG_ISA_DMA_API
476 * Function setup_dma (idev, buffer, count, mode)
478 * Setup the DMA channel. Commonly used by LPC FIR drivers
481 void irda_setup_dma(int channel, dma_addr_t buffer, int count, int mode)
483 unsigned long flags;
485 flags = claim_dma_lock();
487 disable_dma(channel);
488 clear_dma_ff(channel);
489 set_dma_mode(channel, mode);
490 set_dma_addr(channel, buffer);
491 set_dma_count(channel, count);
492 enable_dma(channel);
494 release_dma_lock(flags);
496 EXPORT_SYMBOL(irda_setup_dma);
497 #endif