1 /*********************************************************************
3 * sir_kthread.c: dedicated thread to process scheduled
4 * sir device setup requests
6 * Copyright (c) 2002 Martin Diehl
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 ********************************************************************/
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/version.h>
18 #include <linux/init.h>
19 #include <linux/smp_lock.h>
20 #include <linux/completion.h>
21 #include <linux/delay.h>
23 #include <net/irda/irda.h>
27 /**************************************************************************
29 * kIrDAd kernel thread and config state machine
33 struct irda_request_queue {
34 struct list_head request_list;
37 struct completion exit;
38 wait_queue_head_t kick, done;
42 static struct irda_request_queue irda_rq_queue;
44 static int irda_queue_request(struct irda_request *rq)
49 if (!test_and_set_bit(0, &rq->pending)) {
50 spin_lock_irqsave(&irda_rq_queue.lock, flags);
51 list_add_tail(&rq->lh_request, &irda_rq_queue.request_list);
52 wake_up(&irda_rq_queue.kick);
53 atomic_inc(&irda_rq_queue.num_pending);
54 spin_unlock_irqrestore(&irda_rq_queue.lock, flags);
60 static void irda_request_timer(unsigned long data)
62 struct irda_request *rq = (struct irda_request *)data;
65 spin_lock_irqsave(&irda_rq_queue.lock, flags);
66 list_add_tail(&rq->lh_request, &irda_rq_queue.request_list);
67 wake_up(&irda_rq_queue.kick);
68 spin_unlock_irqrestore(&irda_rq_queue.lock, flags);
71 static int irda_queue_delayed_request(struct irda_request *rq, unsigned long delay)
74 struct timer_list *timer = &rq->timer;
76 if (!test_and_set_bit(0, &rq->pending)) {
77 timer->expires = jiffies + delay;
78 timer->function = irda_request_timer;
79 timer->data = (unsigned long)rq;
80 atomic_inc(&irda_rq_queue.num_pending);
87 static void run_irda_queue(void)
90 struct list_head *entry, *tmp;
91 struct irda_request *rq;
93 spin_lock_irqsave(&irda_rq_queue.lock, flags);
94 list_for_each_safe(entry, tmp, &irda_rq_queue.request_list) {
95 rq = list_entry(entry, struct irda_request, lh_request);
97 spin_unlock_irqrestore(&irda_rq_queue.lock, flags);
99 clear_bit(0, &rq->pending);
102 if (atomic_dec_and_test(&irda_rq_queue.num_pending))
103 wake_up(&irda_rq_queue.done);
105 spin_lock_irqsave(&irda_rq_queue.lock, flags);
107 spin_unlock_irqrestore(&irda_rq_queue.lock, flags);
110 static int irda_thread(void *startup)
112 DECLARE_WAITQUEUE(wait, current);
116 irda_rq_queue.thread = current;
118 complete((struct completion *)startup);
120 while (irda_rq_queue.thread != NULL) {
122 /* We use TASK_INTERRUPTIBLE, rather than
123 * TASK_UNINTERRUPTIBLE. Andrew Morton made this
124 * change ; he told me that it is safe, because "signal
125 * blocking is now handled in daemonize()", he added
126 * that the problem is that "uninterruptible sleep
127 * contributes to load average", making user worry.
129 set_task_state(current, TASK_INTERRUPTIBLE);
130 add_wait_queue(&irda_rq_queue.kick, &wait);
131 if (list_empty(&irda_rq_queue.request_list))
134 __set_task_state(current, TASK_RUNNING);
135 remove_wait_queue(&irda_rq_queue.kick, &wait);
137 /* make swsusp happy with our thread */
138 if (current->flags & PF_FREEZE)
139 refrigerator(PF_FREEZE);
144 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,35)
147 complete_and_exit(&irda_rq_queue.exit, 0);
153 static void flush_irda_queue(void)
155 if (atomic_read(&irda_rq_queue.num_pending)) {
157 DECLARE_WAITQUEUE(wait, current);
159 if (!list_empty(&irda_rq_queue.request_list))
162 set_task_state(current, TASK_UNINTERRUPTIBLE);
163 add_wait_queue(&irda_rq_queue.done, &wait);
164 if (atomic_read(&irda_rq_queue.num_pending))
167 __set_task_state(current, TASK_RUNNING);
168 remove_wait_queue(&irda_rq_queue.done, &wait);
172 /* substate handler of the config-fsm to handle the cases where we want
173 * to wait for transmit completion before changing the port configuration
176 static int irda_tx_complete_fsm(struct sir_dev *dev)
178 struct sir_fsm *fsm = &dev->fsm;
179 unsigned next_state, delay;
183 next_state = fsm->substate; /* default: stay in current substate */
186 switch(fsm->substate) {
188 case SIRDEV_STATE_WAIT_XMIT:
189 if (dev->drv->chars_in_buffer)
190 bytes_left = dev->drv->chars_in_buffer(dev);
194 next_state = SIRDEV_STATE_WAIT_UNTIL_SENT;
198 if (dev->speed > 115200)
199 delay = (bytes_left*8*10000) / (dev->speed/100);
200 else if (dev->speed > 0)
201 delay = (bytes_left*10*10000) / (dev->speed/100);
204 /* expected delay (usec) until remaining bytes are sent */
210 /* sleep some longer delay (msec) */
211 delay = (delay+999) / 1000;
214 case SIRDEV_STATE_WAIT_UNTIL_SENT:
215 /* block until underlaying hardware buffer are empty */
216 if (dev->drv->wait_until_sent)
217 dev->drv->wait_until_sent(dev);
218 next_state = SIRDEV_STATE_TX_DONE;
221 case SIRDEV_STATE_TX_DONE:
225 IRDA_ERROR("%s - undefined state\n", __FUNCTION__);
228 fsm->substate = next_state;
229 } while (delay == 0);
234 * Function irda_config_fsm
236 * State machine to handle the configuration of the device (and attached dongle, if any).
237 * This handler is scheduled for execution in kIrDAd context, so we can sleep.
238 * however, kIrDAd is shared by all sir_dev devices so we better don't sleep there too
239 * long. Instead, for longer delays we start a timer to reschedule us later.
240 * On entry, fsm->sem is always locked and the netdev xmit queue stopped.
241 * Both must be unlocked/restarted on completion - but only on final exit.
244 static void irda_config_fsm(void *data)
246 struct sir_dev *dev = data;
247 struct sir_fsm *fsm = &dev->fsm;
252 IRDA_DEBUG(2, "%s(), <%ld>\n", __FUNCTION__, jiffies);
255 IRDA_DEBUG(3, "%s - state=0x%04x / substate=0x%04x\n",
256 __FUNCTION__, fsm->state, fsm->substate);
258 next_state = fsm->state;
263 case SIRDEV_STATE_DONGLE_OPEN:
264 if (dev->dongle_drv != NULL) {
265 ret = sirdev_put_dongle(dev);
267 fsm->result = -EINVAL;
268 next_state = SIRDEV_STATE_ERROR;
273 /* Initialize dongle */
274 ret = sirdev_get_dongle(dev, fsm->param);
277 next_state = SIRDEV_STATE_ERROR;
281 /* Dongles are powered through the modem control lines which
282 * were just set during open. Before resetting, let's wait for
283 * the power to stabilize. This is what some dongle drivers did
284 * in open before, while others didn't - should be safe anyway.
288 fsm->substate = SIRDEV_STATE_DONGLE_RESET;
289 next_state = SIRDEV_STATE_DONGLE_RESET;
295 case SIRDEV_STATE_DONGLE_CLOSE:
296 /* shouldn't we just treat this as success=? */
297 if (dev->dongle_drv == NULL) {
298 fsm->result = -EINVAL;
299 next_state = SIRDEV_STATE_ERROR;
303 ret = sirdev_put_dongle(dev);
306 next_state = SIRDEV_STATE_ERROR;
309 next_state = SIRDEV_STATE_DONE;
312 case SIRDEV_STATE_SET_DTR_RTS:
313 ret = sirdev_set_dtr_rts(dev,
314 (fsm->param&0x02) ? TRUE : FALSE,
315 (fsm->param&0x01) ? TRUE : FALSE);
316 next_state = SIRDEV_STATE_DONE;
319 case SIRDEV_STATE_SET_SPEED:
320 fsm->substate = SIRDEV_STATE_WAIT_XMIT;
321 next_state = SIRDEV_STATE_DONGLE_CHECK;
324 case SIRDEV_STATE_DONGLE_CHECK:
325 ret = irda_tx_complete_fsm(dev);
328 next_state = SIRDEV_STATE_ERROR;
331 if ((delay=ret) != 0)
334 if (dev->dongle_drv) {
335 fsm->substate = SIRDEV_STATE_DONGLE_RESET;
336 next_state = SIRDEV_STATE_DONGLE_RESET;
339 dev->speed = fsm->param;
340 next_state = SIRDEV_STATE_PORT_SPEED;
344 case SIRDEV_STATE_DONGLE_RESET:
345 if (dev->dongle_drv->reset) {
346 ret = dev->dongle_drv->reset(dev);
349 next_state = SIRDEV_STATE_ERROR;
355 if ((delay=ret) == 0) {
356 /* set serial port according to dongle default speed */
357 if (dev->drv->set_speed)
358 dev->drv->set_speed(dev, dev->speed);
359 fsm->substate = SIRDEV_STATE_DONGLE_SPEED;
360 next_state = SIRDEV_STATE_DONGLE_SPEED;
364 case SIRDEV_STATE_DONGLE_SPEED:
365 if (dev->dongle_drv->reset) {
366 ret = dev->dongle_drv->set_speed(dev, fsm->param);
369 next_state = SIRDEV_STATE_ERROR;
375 if ((delay=ret) == 0)
376 next_state = SIRDEV_STATE_PORT_SPEED;
379 case SIRDEV_STATE_PORT_SPEED:
380 /* Finally we are ready to change the serial port speed */
381 if (dev->drv->set_speed)
382 dev->drv->set_speed(dev, dev->speed);
384 next_state = SIRDEV_STATE_DONE;
387 case SIRDEV_STATE_DONE:
388 /* Signal network layer so it can send more frames */
389 netif_wake_queue(dev->netdev);
390 next_state = SIRDEV_STATE_COMPLETE;
394 IRDA_ERROR("%s - undefined state\n", __FUNCTION__);
395 fsm->result = -EINVAL;
398 case SIRDEV_STATE_ERROR:
399 IRDA_ERROR("%s - error: %d\n", __FUNCTION__, fsm->result);
401 #if 0 /* don't enable this before we have netdev->tx_timeout to recover */
402 netif_stop_queue(dev->netdev);
404 netif_wake_queue(dev->netdev);
408 case SIRDEV_STATE_COMPLETE:
409 /* config change finished, so we are not busy any longer */
410 sirdev_enable_rx(dev);
414 fsm->state = next_state;
417 irda_queue_delayed_request(&fsm->rq, msecs_to_jiffies(delay));
420 /* schedule some device configuration task for execution by kIrDAd
421 * on behalf of the above state machine.
422 * can be called from process or interrupt/tasklet context.
425 int sirdev_schedule_request(struct sir_dev *dev, int initial_state, unsigned param)
427 struct sir_fsm *fsm = &dev->fsm;
430 IRDA_DEBUG(2, "%s - state=0x%04x / param=%u\n", __FUNCTION__, initial_state, param);
432 if (down_trylock(&fsm->sem)) {
433 if (in_interrupt() || in_atomic() || irqs_disabled()) {
434 IRDA_DEBUG(1, "%s(), state machine busy!\n", __FUNCTION__);
440 if (fsm->state == SIRDEV_STATE_DEAD) {
441 /* race with sirdev_close should never happen */
442 IRDA_ERROR("%s(), instance staled!\n", __FUNCTION__);
444 return -ESTALE; /* or better EPIPE? */
447 xmit_was_down = netif_queue_stopped(dev->netdev);
448 netif_stop_queue(dev->netdev);
449 atomic_set(&dev->enable_rx, 0);
451 fsm->state = initial_state;
455 INIT_LIST_HEAD(&fsm->rq.lh_request);
457 fsm->rq.func = irda_config_fsm;
460 if (!irda_queue_request(&fsm->rq)) { /* returns 0 on error! */
461 atomic_set(&dev->enable_rx, 1);
463 netif_wake_queue(dev->netdev);
470 int __init irda_thread_create(void)
472 struct completion startup;
475 spin_lock_init(&irda_rq_queue.lock);
476 irda_rq_queue.thread = NULL;
477 INIT_LIST_HEAD(&irda_rq_queue.request_list);
478 init_waitqueue_head(&irda_rq_queue.kick);
479 init_waitqueue_head(&irda_rq_queue.done);
480 atomic_set(&irda_rq_queue.num_pending, 0);
482 init_completion(&startup);
483 pid = kernel_thread(irda_thread, &startup, CLONE_FS|CLONE_FILES);
487 wait_for_completion(&startup);
492 void __exit irda_thread_join(void)
494 if (irda_rq_queue.thread) {
496 init_completion(&irda_rq_queue.exit);
497 irda_rq_queue.thread = NULL;
498 wake_up(&irda_rq_queue.kick);
499 wait_for_completion(&irda_rq_queue.exit);