[PATCH] FS: speed up rw_verify_area()
[linux-2.6-block.git] / drivers / isdn / gigaset / common.c
CommitLineData
6fd5ea63
HL
1/*
2 * Stuff used by all variants of the driver
3 *
70440cf2 4 * Copyright (c) 2001 by Stefan Eilers,
6fd5ea63
HL
5 * Hansjoerg Lipp <hjlipp@web.de>,
6 * Tilman Schmidt <tilman@imap.cc>.
7 *
8 * =====================================================================
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 * =====================================================================
6fd5ea63
HL
14 */
15
16#include "gigaset.h"
17#include <linux/ctype.h>
18#include <linux/module.h>
19#include <linux/moduleparam.h>
20
21/* Version Information */
70440cf2 22#define DRIVER_AUTHOR "Hansjoerg Lipp <hjlipp@web.de>, Tilman Schmidt <tilman@imap.cc>, Stefan Eilers"
6fd5ea63
HL
23#define DRIVER_DESC "Driver for Gigaset 307x"
24
25/* Module parameters */
26int gigaset_debuglevel = DEBUG_DEFAULT;
27EXPORT_SYMBOL_GPL(gigaset_debuglevel);
28module_param_named(debug, gigaset_debuglevel, int, S_IRUGO|S_IWUSR);
29MODULE_PARM_DESC(debug, "debug level");
30
70440cf2 31/* driver state flags */
784d5858
TS
32#define VALID_MINOR 0x01
33#define VALID_ID 0x02
34#define ASSIGNED 0x04
6fd5ea63 35
6fd5ea63 36void gigaset_dbg_buffer(enum debuglevel level, const unsigned char *msg,
01371500 37 size_t len, const unsigned char *buf)
6fd5ea63
HL
38{
39 unsigned char outbuf[80];
784d5858 40 unsigned char c;
6fd5ea63
HL
41 size_t space = sizeof outbuf - 1;
42 unsigned char *out = outbuf;
01371500 43 size_t numin = len;
6fd5ea63 44
01371500 45 while (numin--) {
784d5858
TS
46 c = *buf++;
47 if (c == '~' || c == '^' || c == '\\') {
01371500 48 if (!space--)
784d5858
TS
49 break;
50 *out++ = '\\';
51 }
52 if (c & 0x80) {
01371500 53 if (!space--)
784d5858
TS
54 break;
55 *out++ = '~';
56 c ^= 0x80;
57 }
58 if (c < 0x20 || c == 0x7f) {
01371500 59 if (!space--)
784d5858 60 break;
6fd5ea63 61 *out++ = '^';
784d5858 62 c ^= 0x40;
6fd5ea63 63 }
01371500 64 if (!space--)
784d5858
TS
65 break;
66 *out++ = c;
6fd5ea63
HL
67 }
68 *out = 0;
69
784d5858 70 gig_dbg(level, "%s (%u bytes): %s", msg, (unsigned) len, outbuf);
6fd5ea63
HL
71}
72EXPORT_SYMBOL_GPL(gigaset_dbg_buffer);
73
74static int setflags(struct cardstate *cs, unsigned flags, unsigned delay)
75{
76 int r;
77
78 r = cs->ops->set_modem_ctrl(cs, cs->control_state, flags);
79 cs->control_state = flags;
80 if (r < 0)
81 return r;
82
83 if (delay) {
84 set_current_state(TASK_INTERRUPTIBLE);
85 schedule_timeout(delay * HZ / 1000);
86 }
87
88 return 0;
89}
90
91int gigaset_enterconfigmode(struct cardstate *cs)
92{
93 int i, r;
94
6fd5ea63
HL
95 cs->control_state = TIOCM_RTS; //FIXME
96
97 r = setflags(cs, TIOCM_DTR, 200);
98 if (r < 0)
99 goto error;
100 r = setflags(cs, 0, 200);
101 if (r < 0)
102 goto error;
103 for (i = 0; i < 5; ++i) {
104 r = setflags(cs, TIOCM_RTS, 100);
105 if (r < 0)
106 goto error;
107 r = setflags(cs, 0, 100);
108 if (r < 0)
109 goto error;
110 }
111 r = setflags(cs, TIOCM_RTS|TIOCM_DTR, 800);
112 if (r < 0)
113 goto error;
114
115 return 0;
116
117error:
784d5858 118 dev_err(cs->dev, "error %d on setuartbits\n", -r);
6fd5ea63
HL
119 cs->control_state = TIOCM_RTS|TIOCM_DTR; // FIXME is this a good value?
120 cs->ops->set_modem_ctrl(cs, 0, TIOCM_RTS|TIOCM_DTR);
121
122 return -1; //r
123}
124
125static int test_timeout(struct at_state_t *at_state)
126{
127 if (!at_state->timer_expires)
128 return 0;
129
130 if (--at_state->timer_expires) {
784d5858
TS
131 gig_dbg(DEBUG_MCMD, "decreased timer of %p to %lu",
132 at_state, at_state->timer_expires);
6fd5ea63
HL
133 return 0;
134 }
135
136 if (!gigaset_add_event(at_state->cs, at_state, EV_TIMEOUT, NULL,
69049cc8 137 at_state->timer_index, NULL)) {
6fd5ea63
HL
138 //FIXME what should we do?
139 }
140
141 return 1;
142}
143
144static void timer_tick(unsigned long data)
145{
146 struct cardstate *cs = (struct cardstate *) data;
147 unsigned long flags;
148 unsigned channel;
149 struct at_state_t *at_state;
150 int timeout = 0;
151
152 spin_lock_irqsave(&cs->lock, flags);
153
154 for (channel = 0; channel < cs->channels; ++channel)
155 if (test_timeout(&cs->bcs[channel].at_state))
156 timeout = 1;
157
158 if (test_timeout(&cs->at_state))
159 timeout = 1;
160
161 list_for_each_entry(at_state, &cs->temp_at_states, list)
162 if (test_timeout(at_state))
163 timeout = 1;
164
69049cc8 165 if (cs->running) {
ec81b5e6 166 mod_timer(&cs->timer, jiffies + msecs_to_jiffies(GIG_TICK));
6fd5ea63 167 if (timeout) {
784d5858 168 gig_dbg(DEBUG_CMD, "scheduling timeout");
6fd5ea63
HL
169 tasklet_schedule(&cs->event_tasklet);
170 }
171 }
172
173 spin_unlock_irqrestore(&cs->lock, flags);
174}
175
176int gigaset_get_channel(struct bc_state *bcs)
177{
178 unsigned long flags;
179
180 spin_lock_irqsave(&bcs->cs->lock, flags);
181 if (bcs->use_count) {
784d5858
TS
182 gig_dbg(DEBUG_ANY, "could not allocate channel %d",
183 bcs->channel);
6fd5ea63
HL
184 spin_unlock_irqrestore(&bcs->cs->lock, flags);
185 return 0;
186 }
187 ++bcs->use_count;
188 bcs->busy = 1;
784d5858 189 gig_dbg(DEBUG_ANY, "allocated channel %d", bcs->channel);
6fd5ea63
HL
190 spin_unlock_irqrestore(&bcs->cs->lock, flags);
191 return 1;
192}
193
194void gigaset_free_channel(struct bc_state *bcs)
195{
196 unsigned long flags;
197
198 spin_lock_irqsave(&bcs->cs->lock, flags);
199 if (!bcs->busy) {
784d5858 200 gig_dbg(DEBUG_ANY, "could not free channel %d", bcs->channel);
6fd5ea63
HL
201 spin_unlock_irqrestore(&bcs->cs->lock, flags);
202 return;
203 }
204 --bcs->use_count;
205 bcs->busy = 0;
784d5858 206 gig_dbg(DEBUG_ANY, "freed channel %d", bcs->channel);
6fd5ea63
HL
207 spin_unlock_irqrestore(&bcs->cs->lock, flags);
208}
209
210int gigaset_get_channels(struct cardstate *cs)
211{
212 unsigned long flags;
213 int i;
214
215 spin_lock_irqsave(&cs->lock, flags);
216 for (i = 0; i < cs->channels; ++i)
217 if (cs->bcs[i].use_count) {
218 spin_unlock_irqrestore(&cs->lock, flags);
784d5858 219 gig_dbg(DEBUG_ANY, "could not allocate all channels");
6fd5ea63
HL
220 return 0;
221 }
222 for (i = 0; i < cs->channels; ++i)
223 ++cs->bcs[i].use_count;
224 spin_unlock_irqrestore(&cs->lock, flags);
225
784d5858 226 gig_dbg(DEBUG_ANY, "allocated all channels");
6fd5ea63
HL
227
228 return 1;
229}
230
231void gigaset_free_channels(struct cardstate *cs)
232{
233 unsigned long flags;
234 int i;
235
784d5858 236 gig_dbg(DEBUG_ANY, "unblocking all channels");
6fd5ea63
HL
237 spin_lock_irqsave(&cs->lock, flags);
238 for (i = 0; i < cs->channels; ++i)
239 --cs->bcs[i].use_count;
240 spin_unlock_irqrestore(&cs->lock, flags);
241}
242
243void gigaset_block_channels(struct cardstate *cs)
244{
245 unsigned long flags;
246 int i;
247
784d5858 248 gig_dbg(DEBUG_ANY, "blocking all channels");
6fd5ea63
HL
249 spin_lock_irqsave(&cs->lock, flags);
250 for (i = 0; i < cs->channels; ++i)
251 ++cs->bcs[i].use_count;
252 spin_unlock_irqrestore(&cs->lock, flags);
253}
254
255static void clear_events(struct cardstate *cs)
256{
257 struct event_t *ev;
258 unsigned head, tail;
69049cc8 259 unsigned long flags;
6fd5ea63 260
69049cc8 261 spin_lock_irqsave(&cs->ev_lock, flags);
6fd5ea63 262
69049cc8
TS
263 head = cs->ev_head;
264 tail = cs->ev_tail;
6fd5ea63
HL
265
266 while (tail != head) {
267 ev = cs->events + head;
268 kfree(ev->ptr);
6fd5ea63
HL
269 head = (head + 1) % MAX_EVENTS;
270 }
271
69049cc8
TS
272 cs->ev_head = tail;
273
274 spin_unlock_irqrestore(&cs->ev_lock, flags);
6fd5ea63
HL
275}
276
277struct event_t *gigaset_add_event(struct cardstate *cs,
784d5858
TS
278 struct at_state_t *at_state, int type,
279 void *ptr, int parameter, void *arg)
6fd5ea63
HL
280{
281 unsigned long flags;
282 unsigned next, tail;
283 struct event_t *event = NULL;
284
285 spin_lock_irqsave(&cs->ev_lock, flags);
286
69049cc8 287 tail = cs->ev_tail;
6fd5ea63 288 next = (tail + 1) % MAX_EVENTS;
69049cc8 289 if (unlikely(next == cs->ev_head))
6fd5ea63
HL
290 err("event queue full");
291 else {
292 event = cs->events + tail;
293 event->type = type;
294 event->at_state = at_state;
295 event->cid = -1;
296 event->ptr = ptr;
297 event->arg = arg;
298 event->parameter = parameter;
69049cc8 299 cs->ev_tail = next;
6fd5ea63
HL
300 }
301
302 spin_unlock_irqrestore(&cs->ev_lock, flags);
303
304 return event;
305}
306EXPORT_SYMBOL_GPL(gigaset_add_event);
307
308static void free_strings(struct at_state_t *at_state)
309{
310 int i;
311
312 for (i = 0; i < STR_NUM; ++i) {
313 kfree(at_state->str_var[i]);
314 at_state->str_var[i] = NULL;
315 }
316}
317
318static void clear_at_state(struct at_state_t *at_state)
319{
320 free_strings(at_state);
321}
322
323static void dealloc_at_states(struct cardstate *cs)
324{
325 struct at_state_t *cur, *next;
326
327 list_for_each_entry_safe(cur, next, &cs->temp_at_states, list) {
328 list_del(&cur->list);
329 free_strings(cur);
330 kfree(cur);
331 }
332}
333
334static void gigaset_freebcs(struct bc_state *bcs)
335{
336 int i;
337
784d5858 338 gig_dbg(DEBUG_INIT, "freeing bcs[%d]->hw", bcs->channel);
6fd5ea63 339 if (!bcs->cs->ops->freebcshw(bcs)) {
784d5858 340 gig_dbg(DEBUG_INIT, "failed");
6fd5ea63
HL
341 }
342
784d5858 343 gig_dbg(DEBUG_INIT, "clearing bcs[%d]->at_state", bcs->channel);
6fd5ea63 344 clear_at_state(&bcs->at_state);
784d5858 345 gig_dbg(DEBUG_INIT, "freeing bcs[%d]->skb", bcs->channel);
6fd5ea63
HL
346
347 if (bcs->skb)
348 dev_kfree_skb(bcs->skb);
349 for (i = 0; i < AT_NUM; ++i) {
350 kfree(bcs->commands[i]);
351 bcs->commands[i] = NULL;
352 }
353}
354
70440cf2
TS
355static struct cardstate *alloc_cs(struct gigaset_driver *drv)
356{
357 unsigned long flags;
358 unsigned i;
e702ff0b 359 struct cardstate *ret = NULL;
70440cf2
TS
360
361 spin_lock_irqsave(&drv->lock, flags);
362 for (i = 0; i < drv->minors; ++i) {
363 if (!(drv->flags[i] & VALID_MINOR)) {
e702ff0b
TS
364 if (try_module_get(drv->owner)) {
365 drv->flags[i] = VALID_MINOR;
366 ret = drv->cs + i;
367 }
70440cf2 368 break;
e702ff0b 369 }
70440cf2
TS
370 }
371 spin_unlock_irqrestore(&drv->lock, flags);
372 return ret;
373}
374
375static void free_cs(struct cardstate *cs)
376{
377 unsigned long flags;
378 struct gigaset_driver *drv = cs->driver;
379 spin_lock_irqsave(&drv->lock, flags);
e702ff0b
TS
380 if (drv->flags[cs->minor_index] & VALID_MINOR)
381 module_put(drv->owner);
70440cf2
TS
382 drv->flags[cs->minor_index] = 0;
383 spin_unlock_irqrestore(&drv->lock, flags);
384}
385
386static void make_valid(struct cardstate *cs, unsigned mask)
387{
388 unsigned long flags;
389 struct gigaset_driver *drv = cs->driver;
390 spin_lock_irqsave(&drv->lock, flags);
391 drv->flags[cs->minor_index] |= mask;
392 spin_unlock_irqrestore(&drv->lock, flags);
393}
394
395static void make_invalid(struct cardstate *cs, unsigned mask)
396{
397 unsigned long flags;
398 struct gigaset_driver *drv = cs->driver;
399 spin_lock_irqsave(&drv->lock, flags);
400 drv->flags[cs->minor_index] &= ~mask;
401 spin_unlock_irqrestore(&drv->lock, flags);
402}
403
6fd5ea63
HL
404void gigaset_freecs(struct cardstate *cs)
405{
406 int i;
407 unsigned long flags;
408
409 if (!cs)
410 return;
411
abfd1dc7 412 mutex_lock(&cs->mutex);
6fd5ea63
HL
413
414 if (!cs->bcs)
415 goto f_cs;
416 if (!cs->inbuf)
417 goto f_bcs;
418
419 spin_lock_irqsave(&cs->lock, flags);
69049cc8 420 cs->running = 0;
917f5085
TS
421 spin_unlock_irqrestore(&cs->lock, flags); /* event handler and timer are
422 not rescheduled below */
6fd5ea63
HL
423
424 tasklet_kill(&cs->event_tasklet);
425 del_timer_sync(&cs->timer);
426
427 switch (cs->cs_init) {
428 default:
3dda4e37
HL
429 /* clear device sysfs */
430 gigaset_free_dev_sysfs(cs);
431
6fd5ea63
HL
432 gigaset_if_free(cs);
433
784d5858 434 gig_dbg(DEBUG_INIT, "clearing hw");
6fd5ea63
HL
435 cs->ops->freecshw(cs);
436
437 //FIXME cmdbuf
438
439 /* fall through */
440 case 2: /* error in initcshw */
441 /* Deregister from LL */
442 make_invalid(cs, VALID_ID);
784d5858 443 gig_dbg(DEBUG_INIT, "clearing iif");
6fd5ea63
HL
444 gigaset_i4l_cmd(cs, ISDN_STAT_UNLOAD);
445
446 /* fall through */
447 case 1: /* error when regestering to LL */
784d5858 448 gig_dbg(DEBUG_INIT, "clearing at_state");
6fd5ea63
HL
449 clear_at_state(&cs->at_state);
450 dealloc_at_states(cs);
451
452 /* fall through */
453 case 0: /* error in one call to initbcs */
454 for (i = 0; i < cs->channels; ++i) {
784d5858 455 gig_dbg(DEBUG_INIT, "clearing bcs[%d]", i);
6fd5ea63
HL
456 gigaset_freebcs(cs->bcs + i);
457 }
458
459 clear_events(cs);
784d5858 460 gig_dbg(DEBUG_INIT, "freeing inbuf");
6fd5ea63
HL
461 kfree(cs->inbuf);
462 }
784d5858 463f_bcs: gig_dbg(DEBUG_INIT, "freeing bcs[]");
6fd5ea63 464 kfree(cs->bcs);
784d5858 465f_cs: gig_dbg(DEBUG_INIT, "freeing cs");
abfd1dc7 466 mutex_unlock(&cs->mutex);
6fd5ea63
HL
467 free_cs(cs);
468}
469EXPORT_SYMBOL_GPL(gigaset_freecs);
470
471void gigaset_at_init(struct at_state_t *at_state, struct bc_state *bcs,
784d5858 472 struct cardstate *cs, int cid)
6fd5ea63
HL
473{
474 int i;
475
476 INIT_LIST_HEAD(&at_state->list);
477 at_state->waiting = 0;
478 at_state->getstring = 0;
479 at_state->pending_commands = 0;
480 at_state->timer_expires = 0;
481 at_state->timer_active = 0;
69049cc8
TS
482 at_state->timer_index = 0;
483 at_state->seq_index = 0;
6fd5ea63
HL
484 at_state->ConState = 0;
485 for (i = 0; i < STR_NUM; ++i)
486 at_state->str_var[i] = NULL;
487 at_state->int_var[VAR_ZDLE] = 0;
488 at_state->int_var[VAR_ZCTP] = -1;
489 at_state->int_var[VAR_ZSAU] = ZSAU_NULL;
490 at_state->cs = cs;
491 at_state->bcs = bcs;
492 at_state->cid = cid;
493 if (!cid)
494 at_state->replystruct = cs->tabnocid;
495 else
496 at_state->replystruct = cs->tabcid;
497}
498
499
500static void gigaset_inbuf_init(struct inbuf_t *inbuf, struct bc_state *bcs,
784d5858 501 struct cardstate *cs, int inputstate)
6fd5ea63
HL
502/* inbuf->read must be allocated before! */
503{
504 atomic_set(&inbuf->head, 0);
505 atomic_set(&inbuf->tail, 0);
506 inbuf->cs = cs;
507 inbuf->bcs = bcs; /*base driver: NULL*/
508 inbuf->rcvbuf = NULL; //FIXME
509 inbuf->inputstate = inputstate;
510}
511
714e8236
TS
512/* append received bytes to inbuf */
513int gigaset_fill_inbuf(struct inbuf_t *inbuf, const unsigned char *src,
514 unsigned numbytes)
515{
516 unsigned n, head, tail, bytesleft;
517
518 gig_dbg(DEBUG_INTR, "received %u bytes", numbytes);
519
520 if (!numbytes)
521 return 0;
522
523 bytesleft = numbytes;
524 tail = atomic_read(&inbuf->tail);
525 head = atomic_read(&inbuf->head);
526 gig_dbg(DEBUG_INTR, "buffer state: %u -> %u", head, tail);
527
528 while (bytesleft) {
529 if (head > tail)
530 n = head - 1 - tail;
531 else if (head == 0)
532 n = (RBUFSIZE-1) - tail;
533 else
534 n = RBUFSIZE - tail;
535 if (!n) {
536 dev_err(inbuf->cs->dev,
537 "buffer overflow (%u bytes lost)", bytesleft);
538 break;
539 }
540 if (n > bytesleft)
541 n = bytesleft;
542 memcpy(inbuf->data + tail, src, n);
543 bytesleft -= n;
544 tail = (tail + n) % RBUFSIZE;
545 src += n;
546 }
547 gig_dbg(DEBUG_INTR, "setting tail to %u", tail);
548 atomic_set(&inbuf->tail, tail);
549 return numbytes != bytesleft;
550}
551EXPORT_SYMBOL_GPL(gigaset_fill_inbuf);
552
6fd5ea63
HL
553/* Initialize the b-channel structure */
554static struct bc_state *gigaset_initbcs(struct bc_state *bcs,
784d5858 555 struct cardstate *cs, int channel)
6fd5ea63
HL
556{
557 int i;
558
559 bcs->tx_skb = NULL; //FIXME -> hw part
560
561 skb_queue_head_init(&bcs->squeue);
562
563 bcs->corrupted = 0;
564 bcs->trans_down = 0;
565 bcs->trans_up = 0;
566
784d5858 567 gig_dbg(DEBUG_INIT, "setting up bcs[%d]->at_state", channel);
6fd5ea63
HL
568 gigaset_at_init(&bcs->at_state, bcs, cs, -1);
569
570 bcs->rcvbytes = 0;
571
572#ifdef CONFIG_GIGASET_DEBUG
573 bcs->emptycount = 0;
574#endif
575
784d5858 576 gig_dbg(DEBUG_INIT, "allocating bcs[%d]->skb", channel);
6fd5ea63
HL
577 bcs->fcs = PPP_INITFCS;
578 bcs->inputstate = 0;
579 if (cs->ignoreframes) {
580 bcs->inputstate |= INS_skip_frame;
581 bcs->skb = NULL;
582 } else if ((bcs->skb = dev_alloc_skb(SBUFSIZE + HW_HDR_LEN)) != NULL)
583 skb_reserve(bcs->skb, HW_HDR_LEN);
584 else {
e702ff0b 585 warn("could not allocate skb");
6fd5ea63
HL
586 bcs->inputstate |= INS_skip_frame;
587 }
588
589 bcs->channel = channel;
590 bcs->cs = cs;
591
592 bcs->chstate = 0;
593 bcs->use_count = 1;
594 bcs->busy = 0;
595 bcs->ignore = cs->ignoreframes;
596
597 for (i = 0; i < AT_NUM; ++i)
598 bcs->commands[i] = NULL;
599
784d5858 600 gig_dbg(DEBUG_INIT, " setting up bcs[%d]->hw", channel);
6fd5ea63
HL
601 if (cs->ops->initbcshw(bcs))
602 return bcs;
603
784d5858 604 gig_dbg(DEBUG_INIT, " failed");
6fd5ea63 605
784d5858 606 gig_dbg(DEBUG_INIT, " freeing bcs[%d]->skb", channel);
6fd5ea63
HL
607 if (bcs->skb)
608 dev_kfree_skb(bcs->skb);
609
610 return NULL;
611}
612
613/* gigaset_initcs
614 * Allocate and initialize cardstate structure for Gigaset driver
615 * Calls hardware dependent gigaset_initcshw() function
616 * Calls B channel initialization function gigaset_initbcs() for each B channel
617 * parameters:
784d5858 618 * drv hardware driver the device belongs to
6fd5ea63 619 * channels number of B channels supported by device
917f5085
TS
620 * onechannel !=0: B channel data and AT commands share one
621 * communication channel
6fd5ea63
HL
622 * ==0: B channels have separate communication channels
623 * ignoreframes number of frames to ignore after setting up B channel
624 * cidmode !=0: start in CallID mode
625 * modulename name of driver module (used for I4L registration)
626 * return value:
627 * pointer to cardstate structure
628 */
629struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels,
630 int onechannel, int ignoreframes,
631 int cidmode, const char *modulename)
632{
633 struct cardstate *cs = NULL;
69049cc8 634 unsigned long flags;
6fd5ea63
HL
635 int i;
636
784d5858 637 gig_dbg(DEBUG_INIT, "allocating cs");
e702ff0b
TS
638 if (!(cs = alloc_cs(drv))) {
639 err("maximum number of devices exceeded");
640 return NULL;
641 }
642 mutex_init(&cs->mutex);
643 mutex_lock(&cs->mutex);
644
784d5858 645 gig_dbg(DEBUG_INIT, "allocating bcs[0..%d]", channels - 1);
6fd5ea63 646 cs->bcs = kmalloc(channels * sizeof(struct bc_state), GFP_KERNEL);
e702ff0b
TS
647 if (!cs->bcs) {
648 err("out of memory");
6fd5ea63 649 goto error;
e702ff0b 650 }
784d5858 651 gig_dbg(DEBUG_INIT, "allocating inbuf");
6fd5ea63 652 cs->inbuf = kmalloc(sizeof(struct inbuf_t), GFP_KERNEL);
e702ff0b
TS
653 if (!cs->inbuf) {
654 err("out of memory");
6fd5ea63 655 goto error;
e702ff0b 656 }
6fd5ea63
HL
657
658 cs->cs_init = 0;
659 cs->channels = channels;
660 cs->onechannel = onechannel;
661 cs->ignoreframes = ignoreframes;
662 INIT_LIST_HEAD(&cs->temp_at_states);
69049cc8 663 cs->running = 0;
6fd5ea63
HL
664 init_timer(&cs->timer); /* clear next & prev */
665 spin_lock_init(&cs->ev_lock);
69049cc8
TS
666 cs->ev_tail = 0;
667 cs->ev_head = 0;
abfd1dc7 668
917f5085
TS
669 tasklet_init(&cs->event_tasklet, &gigaset_handle_event,
670 (unsigned long) cs);
6fd5ea63
HL
671 atomic_set(&cs->commands_pending, 0);
672 cs->cur_at_seq = 0;
673 cs->gotfwver = -1;
674 cs->open_count = 0;
784d5858 675 cs->dev = NULL;
6fd5ea63 676 cs->tty = NULL;
01107d34 677 cs->tty_dev = NULL;
69049cc8 678 cs->cidmode = cidmode != 0;
6fd5ea63
HL
679
680 //if(onechannel) { //FIXME
681 cs->tabnocid = gigaset_tab_nocid_m10x;
682 cs->tabcid = gigaset_tab_cid_m10x;
683 //} else {
684 // cs->tabnocid = gigaset_tab_nocid;
685 // cs->tabcid = gigaset_tab_cid;
686 //}
687
688 init_waitqueue_head(&cs->waitqueue);
689 cs->waiting = 0;
690
691 atomic_set(&cs->mode, M_UNKNOWN);
692 atomic_set(&cs->mstate, MS_UNINITIALIZED);
693
694 for (i = 0; i < channels; ++i) {
784d5858 695 gig_dbg(DEBUG_INIT, "setting up bcs[%d].read", i);
e702ff0b
TS
696 if (!gigaset_initbcs(cs->bcs + i, cs, i)) {
697 err("could not allocate channel %d data", i);
6fd5ea63 698 goto error;
e702ff0b 699 }
6fd5ea63
HL
700 }
701
702 ++cs->cs_init;
703
784d5858 704 gig_dbg(DEBUG_INIT, "setting up at_state");
6fd5ea63
HL
705 spin_lock_init(&cs->lock);
706 gigaset_at_init(&cs->at_state, NULL, cs, 0);
707 cs->dle = 0;
708 cs->cbytes = 0;
709
784d5858 710 gig_dbg(DEBUG_INIT, "setting up inbuf");
6fd5ea63
HL
711 if (onechannel) { //FIXME distinction necessary?
712 gigaset_inbuf_init(cs->inbuf, cs->bcs, cs, INS_command);
713 } else
714 gigaset_inbuf_init(cs->inbuf, NULL, cs, INS_command);
715
69049cc8
TS
716 cs->connected = 0;
717 cs->isdn_up = 0;
6fd5ea63 718
784d5858 719 gig_dbg(DEBUG_INIT, "setting up cmdbuf");
6fd5ea63
HL
720 cs->cmdbuf = cs->lastcmdbuf = NULL;
721 spin_lock_init(&cs->cmdlock);
722 cs->curlen = 0;
723 cs->cmdbytes = 0;
724
784d5858 725 gig_dbg(DEBUG_INIT, "setting up iif");
6fd5ea63 726 if (!gigaset_register_to_LL(cs, modulename)) {
784d5858 727 err("register_isdn failed");
6fd5ea63
HL
728 goto error;
729 }
730
731 make_valid(cs, VALID_ID);
732 ++cs->cs_init;
784d5858 733 gig_dbg(DEBUG_INIT, "setting up hw");
e702ff0b
TS
734 if (!cs->ops->initcshw(cs)) {
735 err("could not allocate device specific data");
6fd5ea63 736 goto error;
e702ff0b 737 }
6fd5ea63
HL
738
739 ++cs->cs_init;
740
741 gigaset_if_init(cs);
742
3dda4e37
HL
743 /* set up device sysfs */
744 gigaset_init_dev_sysfs(cs);
745
69049cc8
TS
746 spin_lock_irqsave(&cs->lock, flags);
747 cs->running = 1;
748 spin_unlock_irqrestore(&cs->lock, flags);
ec81b5e6
TS
749 setup_timer(&cs->timer, timer_tick, (unsigned long) cs);
750 cs->timer.expires = jiffies + msecs_to_jiffies(GIG_TICK);
6fd5ea63
HL
751 /* FIXME: can jiffies increase too much until the timer is added?
752 * Same problem(?) with mod_timer() in timer_tick(). */
753 add_timer(&cs->timer);
754
784d5858 755 gig_dbg(DEBUG_INIT, "cs initialized");
abfd1dc7 756 mutex_unlock(&cs->mutex);
6fd5ea63
HL
757 return cs;
758
e702ff0b
TS
759error:
760 mutex_unlock(&cs->mutex);
784d5858 761 gig_dbg(DEBUG_INIT, "failed");
6fd5ea63
HL
762 gigaset_freecs(cs);
763 return NULL;
764}
765EXPORT_SYMBOL_GPL(gigaset_initcs);
766
73a88814 767/* ReInitialize the b-channel structure on hangup */
6fd5ea63
HL
768void gigaset_bcs_reinit(struct bc_state *bcs)
769{
770 struct sk_buff *skb;
771 struct cardstate *cs = bcs->cs;
772 unsigned long flags;
773
774 while ((skb = skb_dequeue(&bcs->squeue)) != NULL)
775 dev_kfree_skb(skb);
776
917f5085 777 spin_lock_irqsave(&cs->lock, flags);
6fd5ea63
HL
778 clear_at_state(&bcs->at_state);
779 bcs->at_state.ConState = 0;
780 bcs->at_state.timer_active = 0;
781 bcs->at_state.timer_expires = 0;
784d5858 782 bcs->at_state.cid = -1; /* No CID defined */
6fd5ea63
HL
783 spin_unlock_irqrestore(&cs->lock, flags);
784
785 bcs->inputstate = 0;
786
787#ifdef CONFIG_GIGASET_DEBUG
788 bcs->emptycount = 0;
789#endif
790
791 bcs->fcs = PPP_INITFCS;
792 bcs->chstate = 0;
793
794 bcs->ignore = cs->ignoreframes;
795 if (bcs->ignore)
796 bcs->inputstate |= INS_skip_frame;
797
798
799 cs->ops->reinitbcshw(bcs);
800}
801
802static void cleanup_cs(struct cardstate *cs)
803{
804 struct cmdbuf_t *cb, *tcb;
805 int i;
806 unsigned long flags;
807
808 spin_lock_irqsave(&cs->lock, flags);
809
810 atomic_set(&cs->mode, M_UNKNOWN);
811 atomic_set(&cs->mstate, MS_UNINITIALIZED);
812
813 clear_at_state(&cs->at_state);
814 dealloc_at_states(cs);
815 free_strings(&cs->at_state);
816 gigaset_at_init(&cs->at_state, NULL, cs, 0);
817
818 kfree(cs->inbuf->rcvbuf);
819 cs->inbuf->rcvbuf = NULL;
820 cs->inbuf->inputstate = INS_command;
821 atomic_set(&cs->inbuf->head, 0);
822 atomic_set(&cs->inbuf->tail, 0);
823
824 cb = cs->cmdbuf;
825 while (cb) {
826 tcb = cb;
827 cb = cb->next;
828 kfree(tcb);
829 }
830 cs->cmdbuf = cs->lastcmdbuf = NULL;
831 cs->curlen = 0;
832 cs->cmdbytes = 0;
833 cs->gotfwver = -1;
834 cs->dle = 0;
835 cs->cur_at_seq = 0;
836 atomic_set(&cs->commands_pending, 0);
837 cs->cbytes = 0;
838
839 spin_unlock_irqrestore(&cs->lock, flags);
840
841 for (i = 0; i < cs->channels; ++i) {
842 gigaset_freebcs(cs->bcs + i);
843 if (!gigaset_initbcs(cs->bcs + i, cs, i))
844 break; //FIXME error handling
845 }
846
847 if (cs->waiting) {
848 cs->cmd_result = -ENODEV;
849 cs->waiting = 0;
850 wake_up_interruptible(&cs->waitqueue);
851 }
852}
853
854
855int gigaset_start(struct cardstate *cs)
856{
69049cc8
TS
857 unsigned long flags;
858
abfd1dc7 859 if (mutex_lock_interruptible(&cs->mutex))
6fd5ea63 860 return 0;
6fd5ea63 861
69049cc8
TS
862 spin_lock_irqsave(&cs->lock, flags);
863 cs->connected = 1;
864 spin_unlock_irqrestore(&cs->lock, flags);
6fd5ea63
HL
865
866 if (atomic_read(&cs->mstate) != MS_LOCKED) {
867 cs->ops->set_modem_ctrl(cs, 0, TIOCM_DTR|TIOCM_RTS);
868 cs->ops->baud_rate(cs, B115200);
869 cs->ops->set_line_ctrl(cs, CS8);
870 cs->control_state = TIOCM_DTR|TIOCM_RTS;
871 } else {
872 //FIXME use some saved values?
873 }
874
875 cs->waiting = 1;
876
877 if (!gigaset_add_event(cs, &cs->at_state, EV_START, NULL, 0, NULL)) {
878 cs->waiting = 0;
879 //FIXME what should we do?
880 goto error;
881 }
882
784d5858 883 gig_dbg(DEBUG_CMD, "scheduling START");
6fd5ea63
HL
884 gigaset_schedule_event(cs);
885
886 wait_event(cs->waitqueue, !cs->waiting);
887
abfd1dc7 888 mutex_unlock(&cs->mutex);
6fd5ea63
HL
889 return 1;
890
891error:
abfd1dc7 892 mutex_unlock(&cs->mutex);
6fd5ea63
HL
893 return 0;
894}
895EXPORT_SYMBOL_GPL(gigaset_start);
896
897void gigaset_shutdown(struct cardstate *cs)
898{
abfd1dc7 899 mutex_lock(&cs->mutex);
6fd5ea63
HL
900
901 cs->waiting = 1;
902
903 if (!gigaset_add_event(cs, &cs->at_state, EV_SHUTDOWN, NULL, 0, NULL)) {
904 //FIXME what should we do?
905 goto exit;
906 }
907
784d5858 908 gig_dbg(DEBUG_CMD, "scheduling SHUTDOWN");
6fd5ea63
HL
909 gigaset_schedule_event(cs);
910
911 if (wait_event_interruptible(cs->waitqueue, !cs->waiting)) {
784d5858 912 warn("%s: aborted", __func__);
6fd5ea63
HL
913 //FIXME
914 }
915
916 if (atomic_read(&cs->mstate) != MS_LOCKED) {
917 //FIXME?
918 //gigaset_baud_rate(cs, B115200);
919 //gigaset_set_line_ctrl(cs, CS8);
920 //gigaset_set_modem_ctrl(cs, TIOCM_DTR|TIOCM_RTS, 0);
921 //cs->control_state = 0;
922 } else {
923 //FIXME use some saved values?
924 }
925
926 cleanup_cs(cs);
927
928exit:
abfd1dc7 929 mutex_unlock(&cs->mutex);
6fd5ea63
HL
930}
931EXPORT_SYMBOL_GPL(gigaset_shutdown);
932
933void gigaset_stop(struct cardstate *cs)
934{
abfd1dc7 935 mutex_lock(&cs->mutex);
6fd5ea63 936
6fd5ea63
HL
937 cs->waiting = 1;
938
939 if (!gigaset_add_event(cs, &cs->at_state, EV_STOP, NULL, 0, NULL)) {
940 //FIXME what should we do?
941 goto exit;
942 }
943
784d5858 944 gig_dbg(DEBUG_CMD, "scheduling STOP");
6fd5ea63
HL
945 gigaset_schedule_event(cs);
946
947 if (wait_event_interruptible(cs->waitqueue, !cs->waiting)) {
784d5858 948 warn("%s: aborted", __func__);
6fd5ea63
HL
949 //FIXME
950 }
951
6fd5ea63
HL
952 cleanup_cs(cs);
953
954exit:
abfd1dc7 955 mutex_unlock(&cs->mutex);
6fd5ea63
HL
956}
957EXPORT_SYMBOL_GPL(gigaset_stop);
958
959static LIST_HEAD(drivers);
34af946a 960static DEFINE_SPINLOCK(driver_lock);
6fd5ea63
HL
961
962struct cardstate *gigaset_get_cs_by_id(int id)
963{
964 unsigned long flags;
965 static struct cardstate *ret = NULL;
966 static struct cardstate *cs;
967 struct gigaset_driver *drv;
968 unsigned i;
969
970 spin_lock_irqsave(&driver_lock, flags);
971 list_for_each_entry(drv, &drivers, list) {
972 spin_lock(&drv->lock);
973 for (i = 0; i < drv->minors; ++i) {
974 if (drv->flags[i] & VALID_ID) {
975 cs = drv->cs + i;
976 if (cs->myid == id)
977 ret = cs;
978 }
979 if (ret)
980 break;
981 }
982 spin_unlock(&drv->lock);
983 if (ret)
984 break;
985 }
986 spin_unlock_irqrestore(&driver_lock, flags);
987 return ret;
988}
989
990void gigaset_debugdrivers(void)
991{
992 unsigned long flags;
993 static struct cardstate *cs;
994 struct gigaset_driver *drv;
995 unsigned i;
996
997 spin_lock_irqsave(&driver_lock, flags);
998 list_for_each_entry(drv, &drivers, list) {
784d5858 999 gig_dbg(DEBUG_DRIVER, "driver %p", drv);
6fd5ea63
HL
1000 spin_lock(&drv->lock);
1001 for (i = 0; i < drv->minors; ++i) {
784d5858
TS
1002 gig_dbg(DEBUG_DRIVER, " index %u", i);
1003 gig_dbg(DEBUG_DRIVER, " flags 0x%02x",
1004 drv->flags[i]);
6fd5ea63 1005 cs = drv->cs + i;
784d5858
TS
1006 gig_dbg(DEBUG_DRIVER, " cardstate %p", cs);
1007 gig_dbg(DEBUG_DRIVER, " minor_index %u",
1008 cs->minor_index);
1009 gig_dbg(DEBUG_DRIVER, " driver %p", cs->driver);
1010 gig_dbg(DEBUG_DRIVER, " i4l id %d", cs->myid);
6fd5ea63
HL
1011 }
1012 spin_unlock(&drv->lock);
1013 }
1014 spin_unlock_irqrestore(&driver_lock, flags);
1015}
6fd5ea63 1016
8ca445df 1017static struct cardstate *gigaset_get_cs_by_minor(unsigned minor)
6fd5ea63
HL
1018{
1019 unsigned long flags;
1020 static struct cardstate *ret = NULL;
1021 struct gigaset_driver *drv;
1022 unsigned index;
1023
1024 spin_lock_irqsave(&driver_lock, flags);
1025 list_for_each_entry(drv, &drivers, list) {
1026 if (minor < drv->minor || minor >= drv->minor + drv->minors)
1027 continue;
1028 index = minor - drv->minor;
1029 spin_lock(&drv->lock);
1030 if (drv->flags[index] & VALID_MINOR)
1031 ret = drv->cs + index;
1032 spin_unlock(&drv->lock);
1033 if (ret)
1034 break;
1035 }
1036 spin_unlock_irqrestore(&driver_lock, flags);
1037 return ret;
1038}
1039
8ca445df
AB
1040struct cardstate *gigaset_get_cs_by_tty(struct tty_struct *tty)
1041{
1042 if (tty->index < 0 || tty->index >= tty->driver->num)
1043 return NULL;
1044 return gigaset_get_cs_by_minor(tty->index + tty->driver->minor_start);
1045}
1046
6fd5ea63
HL
1047void gigaset_freedriver(struct gigaset_driver *drv)
1048{
1049 unsigned long flags;
1050
1051 spin_lock_irqsave(&driver_lock, flags);
1052 list_del(&drv->list);
1053 spin_unlock_irqrestore(&driver_lock, flags);
1054
1055 gigaset_if_freedriver(drv);
6fd5ea63
HL
1056
1057 kfree(drv->cs);
1058 kfree(drv->flags);
1059 kfree(drv);
1060}
1061EXPORT_SYMBOL_GPL(gigaset_freedriver);
1062
1063/* gigaset_initdriver
1064 * Allocate and initialize gigaset_driver structure. Initialize interface.
1065 * parameters:
784d5858
TS
1066 * minor First minor number
1067 * minors Number of minors this driver can handle
1068 * procname Name of the driver
1069 * devname Name of the device files (prefix without minor number)
6fd5ea63 1070 * return value:
784d5858 1071 * Pointer to the gigaset_driver structure on success, NULL on failure.
6fd5ea63
HL
1072 */
1073struct gigaset_driver *gigaset_initdriver(unsigned minor, unsigned minors,
784d5858
TS
1074 const char *procname,
1075 const char *devname,
784d5858
TS
1076 const struct gigaset_ops *ops,
1077 struct module *owner)
6fd5ea63
HL
1078{
1079 struct gigaset_driver *drv;
1080 unsigned long flags;
1081 unsigned i;
1082
1083 drv = kmalloc(sizeof *drv, GFP_KERNEL);
1084 if (!drv)
1085 return NULL;
f4675c70 1086
6fd5ea63
HL
1087 drv->have_tty = 0;
1088 drv->minor = minor;
1089 drv->minors = minors;
1090 spin_lock_init(&drv->lock);
1091 drv->blocked = 0;
1092 drv->ops = ops;
1093 drv->owner = owner;
1094 INIT_LIST_HEAD(&drv->list);
1095
1096 drv->cs = kmalloc(minors * sizeof *drv->cs, GFP_KERNEL);
1097 if (!drv->cs)
e702ff0b 1098 goto error;
f4675c70 1099
6fd5ea63
HL
1100 drv->flags = kmalloc(minors * sizeof *drv->flags, GFP_KERNEL);
1101 if (!drv->flags)
e702ff0b 1102 goto error;
6fd5ea63
HL
1103
1104 for (i = 0; i < minors; ++i) {
1105 drv->flags[i] = 0;
1106 drv->cs[i].driver = drv;
1107 drv->cs[i].ops = drv->ops;
1108 drv->cs[i].minor_index = i;
1109 }
1110
f4eaa370 1111 gigaset_if_initdriver(drv, procname, devname);
6fd5ea63
HL
1112
1113 spin_lock_irqsave(&driver_lock, flags);
1114 list_add(&drv->list, &drivers);
1115 spin_unlock_irqrestore(&driver_lock, flags);
1116
1117 return drv;
1118
e702ff0b 1119error:
6fd5ea63 1120 kfree(drv->cs);
6fd5ea63 1121 kfree(drv);
6fd5ea63
HL
1122 return NULL;
1123}
1124EXPORT_SYMBOL_GPL(gigaset_initdriver);
1125
6fd5ea63
HL
1126/* For drivers without fixed assignment device<->cardstate (usb) */
1127struct cardstate *gigaset_getunassignedcs(struct gigaset_driver *drv)
1128{
1129 unsigned long flags;
1130 struct cardstate *cs = NULL;
1131 unsigned i;
1132
1133 spin_lock_irqsave(&drv->lock, flags);
1134 if (drv->blocked)
1135 goto exit;
1136 for (i = 0; i < drv->minors; ++i) {
1137 if ((drv->flags[i] & VALID_MINOR) &&
1138 !(drv->flags[i] & ASSIGNED)) {
1139 drv->flags[i] |= ASSIGNED;
1140 cs = drv->cs + i;
1141 break;
1142 }
1143 }
1144exit:
1145 spin_unlock_irqrestore(&drv->lock, flags);
1146 return cs;
1147}
1148EXPORT_SYMBOL_GPL(gigaset_getunassignedcs);
1149
1150void gigaset_unassign(struct cardstate *cs)
1151{
1152 unsigned long flags;
1153 unsigned *minor_flags;
1154 struct gigaset_driver *drv;
1155
1156 if (!cs)
1157 return;
1158 drv = cs->driver;
1159 spin_lock_irqsave(&drv->lock, flags);
1160 minor_flags = drv->flags + cs->minor_index;
1161 if (*minor_flags & VALID_MINOR)
1162 *minor_flags &= ~ASSIGNED;
1163 spin_unlock_irqrestore(&drv->lock, flags);
1164}
1165EXPORT_SYMBOL_GPL(gigaset_unassign);
1166
1167void gigaset_blockdriver(struct gigaset_driver *drv)
1168{
1169 unsigned long flags;
1170 spin_lock_irqsave(&drv->lock, flags);
1171 drv->blocked = 1;
1172 spin_unlock_irqrestore(&drv->lock, flags);
1173}
1174EXPORT_SYMBOL_GPL(gigaset_blockdriver);
1175
1176static int __init gigaset_init_module(void)
1177{
1178 /* in accordance with the principle of least astonishment,
1179 * setting the 'debug' parameter to 1 activates a sensible
1180 * set of default debug levels
1181 */
1182 if (gigaset_debuglevel == 1)
1183 gigaset_debuglevel = DEBUG_DEFAULT;
1184
1185 info(DRIVER_AUTHOR);
1186 info(DRIVER_DESC);
1187 return 0;
1188}
1189
1190static void __exit gigaset_exit_module(void)
1191{
1192}
1193
1194module_init(gigaset_init_module);
1195module_exit(gigaset_exit_module);
1196
1197MODULE_AUTHOR(DRIVER_AUTHOR);
1198MODULE_DESCRIPTION(DRIVER_DESC);
1199
1200MODULE_LICENSE("GPL");