Merge branch 'for-linus' of git://neil.brown.name/md
[deliverable/linux.git] / drivers / isdn / gigaset / interface.c
CommitLineData
ee8a4b7f
HL
1/*
2 * interface to user space for the gigaset driver
3 *
4 * Copyright (c) 2004 by Hansjoerg Lipp <hjlipp@web.de>
5 *
6 * =====================================================================
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 * =====================================================================
ee8a4b7f
HL
12 */
13
14#include "gigaset.h"
15#include <linux/gigaset_dev.h>
ee8a4b7f
HL
16#include <linux/tty_flip.h>
17
18/*** our ioctls ***/
19
20static int if_lock(struct cardstate *cs, int *arg)
21{
22 int cmd = *arg;
23
784d5858 24 gig_dbg(DEBUG_IF, "%u: if_lock (%d)", cs->minor_index, cmd);
ee8a4b7f
HL
25
26 if (cmd > 1)
27 return -EINVAL;
28
29 if (cmd < 0) {
9d4bee2b 30 *arg = cs->mstate == MS_LOCKED;
ee8a4b7f
HL
31 return 0;
32 }
33
9d4bee2b 34 if (!cmd && cs->mstate == MS_LOCKED && cs->connected) {
ee8a4b7f
HL
35 cs->ops->set_modem_ctrl(cs, 0, TIOCM_DTR|TIOCM_RTS);
36 cs->ops->baud_rate(cs, B115200);
37 cs->ops->set_line_ctrl(cs, CS8);
38 cs->control_state = TIOCM_DTR|TIOCM_RTS;
39 }
40
41 cs->waiting = 1;
42 if (!gigaset_add_event(cs, &cs->at_state, EV_IF_LOCK,
784d5858 43 NULL, cmd, NULL)) {
ee8a4b7f
HL
44 cs->waiting = 0;
45 return -ENOMEM;
46 }
ee8a4b7f
HL
47 gigaset_schedule_event(cs);
48
49 wait_event(cs->waitqueue, !cs->waiting);
50
51 if (cs->cmd_result >= 0) {
52 *arg = cs->cmd_result;
53 return 0;
54 }
55
56 return cs->cmd_result;
57}
58
59static int if_version(struct cardstate *cs, unsigned arg[4])
60{
61 static const unsigned version[4] = GIG_VERSION;
62 static const unsigned compat[4] = GIG_COMPAT;
63 unsigned cmd = arg[0];
64
784d5858 65 gig_dbg(DEBUG_IF, "%u: if_version (%d)", cs->minor_index, cmd);
ee8a4b7f
HL
66
67 switch (cmd) {
68 case GIGVER_DRIVER:
69 memcpy(arg, version, sizeof version);
70 return 0;
71 case GIGVER_COMPAT:
72 memcpy(arg, compat, sizeof compat);
73 return 0;
74 case GIGVER_FWBASE:
75 cs->waiting = 1;
76 if (!gigaset_add_event(cs, &cs->at_state, EV_IF_VER,
784d5858 77 NULL, 0, arg)) {
ee8a4b7f
HL
78 cs->waiting = 0;
79 return -ENOMEM;
80 }
ee8a4b7f
HL
81 gigaset_schedule_event(cs);
82
83 wait_event(cs->waitqueue, !cs->waiting);
84
85 if (cs->cmd_result >= 0)
86 return 0;
87
88 return cs->cmd_result;
89 default:
90 return -EINVAL;
91 }
92}
93
94static int if_config(struct cardstate *cs, int *arg)
95{
784d5858 96 gig_dbg(DEBUG_IF, "%u: if_config (%d)", cs->minor_index, *arg);
ee8a4b7f
HL
97
98 if (*arg != 1)
99 return -EINVAL;
100
9d4bee2b 101 if (cs->mstate != MS_LOCKED)
ee8a4b7f
HL
102 return -EBUSY;
103
69049cc8 104 if (!cs->connected) {
c8770dca 105 pr_err("%s: not connected\n", __func__);
69049cc8
TS
106 return -ENODEV;
107 }
108
ee8a4b7f
HL
109 *arg = 0;
110 return gigaset_enterconfigmode(cs);
111}
112
113/*** the terminal driver ***/
114/* stolen from usbserial and some other tty drivers */
115
116static int if_open(struct tty_struct *tty, struct file *filp);
117static void if_close(struct tty_struct *tty, struct file *filp);
118static int if_ioctl(struct tty_struct *tty, struct file *file,
784d5858 119 unsigned int cmd, unsigned long arg);
ee8a4b7f
HL
120static int if_write_room(struct tty_struct *tty);
121static int if_chars_in_buffer(struct tty_struct *tty);
122static void if_throttle(struct tty_struct *tty);
123static void if_unthrottle(struct tty_struct *tty);
606d099c 124static void if_set_termios(struct tty_struct *tty, struct ktermios *old);
ee8a4b7f
HL
125static int if_tiocmget(struct tty_struct *tty, struct file *file);
126static int if_tiocmset(struct tty_struct *tty, struct file *file,
784d5858 127 unsigned int set, unsigned int clear);
ee8a4b7f 128static int if_write(struct tty_struct *tty,
784d5858 129 const unsigned char *buf, int count);
ee8a4b7f 130
b68e31d0 131static const struct tty_operations if_ops = {
ee8a4b7f
HL
132 .open = if_open,
133 .close = if_close,
134 .ioctl = if_ioctl,
135 .write = if_write,
136 .write_room = if_write_room,
137 .chars_in_buffer = if_chars_in_buffer,
138 .set_termios = if_set_termios,
139 .throttle = if_throttle,
140 .unthrottle = if_unthrottle,
ee8a4b7f
HL
141 .tiocmget = if_tiocmget,
142 .tiocmset = if_tiocmset,
143};
144
145static int if_open(struct tty_struct *tty, struct file *filp)
146{
147 struct cardstate *cs;
148 unsigned long flags;
149
784d5858
TS
150 gig_dbg(DEBUG_IF, "%d+%d: %s()",
151 tty->driver->minor_start, tty->index, __func__);
ee8a4b7f
HL
152
153 tty->driver_data = NULL;
154
155 cs = gigaset_get_cs_by_tty(tty);
e468c048 156 if (!cs || !try_module_get(cs->driver->owner))
ee8a4b7f
HL
157 return -ENODEV;
158
abfd1dc7 159 if (mutex_lock_interruptible(&cs->mutex))
d9ba9c91 160 return -ERESTARTSYS;
ee8a4b7f
HL
161 tty->driver_data = cs;
162
163 ++cs->open_count;
164
165 if (cs->open_count == 1) {
166 spin_lock_irqsave(&cs->lock, flags);
167 cs->tty = tty;
168 spin_unlock_irqrestore(&cs->lock, flags);
d9ba9c91 169 tty->low_latency = 1;
ee8a4b7f
HL
170 }
171
abfd1dc7 172 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
173 return 0;
174}
175
176static void if_close(struct tty_struct *tty, struct file *filp)
177{
178 struct cardstate *cs;
179 unsigned long flags;
180
181 cs = (struct cardstate *) tty->driver_data;
182 if (!cs) {
c8770dca 183 pr_err("%s: no cardstate\n", __func__);
ee8a4b7f
HL
184 return;
185 }
186
784d5858 187 gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
ee8a4b7f 188
abfd1dc7 189 mutex_lock(&cs->mutex);
ee8a4b7f 190
51370e5b
TS
191 if (!cs->connected)
192 gig_dbg(DEBUG_IF, "not connected"); /* nothing to do */
193 else if (!cs->open_count)
5002779d 194 dev_warn(cs->dev, "%s: device not opened\n", __func__);
ee8a4b7f
HL
195 else {
196 if (!--cs->open_count) {
197 spin_lock_irqsave(&cs->lock, flags);
198 cs->tty = NULL;
199 spin_unlock_irqrestore(&cs->lock, flags);
ee8a4b7f
HL
200 }
201 }
202
abfd1dc7 203 mutex_unlock(&cs->mutex);
e468c048
TS
204
205 module_put(cs->driver->owner);
ee8a4b7f
HL
206}
207
208static int if_ioctl(struct tty_struct *tty, struct file *file,
784d5858 209 unsigned int cmd, unsigned long arg)
ee8a4b7f
HL
210{
211 struct cardstate *cs;
212 int retval = -ENODEV;
213 int int_arg;
214 unsigned char buf[6];
215 unsigned version[4];
216
217 cs = (struct cardstate *) tty->driver_data;
218 if (!cs) {
c8770dca 219 pr_err("%s: no cardstate\n", __func__);
ee8a4b7f
HL
220 return -ENODEV;
221 }
222
784d5858 223 gig_dbg(DEBUG_IF, "%u: %s(0x%x)", cs->minor_index, __func__, cmd);
ee8a4b7f 224
abfd1dc7 225 if (mutex_lock_interruptible(&cs->mutex))
d9ba9c91 226 return -ERESTARTSYS;
ee8a4b7f 227
51370e5b
TS
228 if (!cs->connected) {
229 gig_dbg(DEBUG_IF, "not connected");
230 retval = -ENODEV;
231 } else if (!cs->open_count)
5002779d 232 dev_warn(cs->dev, "%s: device not opened\n", __func__);
ee8a4b7f
HL
233 else {
234 retval = 0;
235 switch (cmd) {
236 case GIGASET_REDIR:
237 retval = get_user(int_arg, (int __user *) arg);
238 if (retval >= 0)
239 retval = if_lock(cs, &int_arg);
240 if (retval >= 0)
241 retval = put_user(int_arg, (int __user *) arg);
242 break;
243 case GIGASET_CONFIG:
244 retval = get_user(int_arg, (int __user *) arg);
245 if (retval >= 0)
246 retval = if_config(cs, &int_arg);
247 if (retval >= 0)
248 retval = put_user(int_arg, (int __user *) arg);
249 break;
250 case GIGASET_BRKCHARS:
ee8a4b7f 251 retval = copy_from_user(&buf,
784d5858
TS
252 (const unsigned char __user *) arg, 6)
253 ? -EFAULT : 0;
01371500
TS
254 if (retval >= 0) {
255 gigaset_dbg_buffer(DEBUG_IF, "GIGASET_BRKCHARS",
256 6, (const unsigned char *) arg);
ee8a4b7f 257 retval = cs->ops->brkchars(cs, buf);
01371500 258 }
ee8a4b7f
HL
259 break;
260 case GIGASET_VERSION:
917f5085 261 retval = copy_from_user(version,
784d5858
TS
262 (unsigned __user *) arg, sizeof version)
263 ? -EFAULT : 0;
ee8a4b7f
HL
264 if (retval >= 0)
265 retval = if_version(cs, version);
266 if (retval >= 0)
917f5085 267 retval = copy_to_user((unsigned __user *) arg,
784d5858
TS
268 version, sizeof version)
269 ? -EFAULT : 0;
ee8a4b7f 270 break;
784d5858 271 default:
1528b18f 272 gig_dbg(DEBUG_IF, "%s: arg not supported - 0x%04x",
784d5858 273 __func__, cmd);
ee8a4b7f
HL
274 retval = -ENOIOCTLCMD;
275 }
276 }
277
abfd1dc7 278 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
279
280 return retval;
281}
282
283static int if_tiocmget(struct tty_struct *tty, struct file *file)
284{
285 struct cardstate *cs;
286 int retval;
287
288 cs = (struct cardstate *) tty->driver_data;
289 if (!cs) {
c8770dca 290 pr_err("%s: no cardstate\n", __func__);
ee8a4b7f
HL
291 return -ENODEV;
292 }
293
784d5858 294 gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
ee8a4b7f 295
abfd1dc7 296 if (mutex_lock_interruptible(&cs->mutex))
d9ba9c91 297 return -ERESTARTSYS;
ee8a4b7f 298
ee8a4b7f
HL
299 retval = cs->control_state & (TIOCM_RTS|TIOCM_DTR);
300
abfd1dc7 301 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
302
303 return retval;
304}
305
306static int if_tiocmset(struct tty_struct *tty, struct file *file,
784d5858 307 unsigned int set, unsigned int clear)
ee8a4b7f
HL
308{
309 struct cardstate *cs;
310 int retval;
311 unsigned mc;
312
313 cs = (struct cardstate *) tty->driver_data;
314 if (!cs) {
c8770dca 315 pr_err("%s: no cardstate\n", __func__);
ee8a4b7f
HL
316 return -ENODEV;
317 }
318
784d5858
TS
319 gig_dbg(DEBUG_IF, "%u: %s(0x%x, 0x%x)",
320 cs->minor_index, __func__, set, clear);
ee8a4b7f 321
abfd1dc7 322 if (mutex_lock_interruptible(&cs->mutex))
d9ba9c91 323 return -ERESTARTSYS;
ee8a4b7f 324
69049cc8 325 if (!cs->connected) {
51370e5b 326 gig_dbg(DEBUG_IF, "not connected");
ee8a4b7f
HL
327 retval = -ENODEV;
328 } else {
329 mc = (cs->control_state | set) & ~clear & (TIOCM_RTS|TIOCM_DTR);
330 retval = cs->ops->set_modem_ctrl(cs, cs->control_state, mc);
331 cs->control_state = mc;
332 }
333
abfd1dc7 334 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
335
336 return retval;
337}
338
339static int if_write(struct tty_struct *tty, const unsigned char *buf, int count)
340{
341 struct cardstate *cs;
e3628dd1
TS
342 struct cmdbuf_t *cb;
343 int retval;
ee8a4b7f
HL
344
345 cs = (struct cardstate *) tty->driver_data;
346 if (!cs) {
c8770dca 347 pr_err("%s: no cardstate\n", __func__);
ee8a4b7f
HL
348 return -ENODEV;
349 }
350
784d5858 351 gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
ee8a4b7f 352
abfd1dc7 353 if (mutex_lock_interruptible(&cs->mutex))
d9ba9c91 354 return -ERESTARTSYS;
ee8a4b7f 355
51370e5b
TS
356 if (!cs->connected) {
357 gig_dbg(DEBUG_IF, "not connected");
358 retval = -ENODEV;
e3628dd1
TS
359 goto done;
360 }
361 if (!cs->open_count) {
5002779d 362 dev_warn(cs->dev, "%s: device not opened\n", __func__);
e3628dd1
TS
363 retval = -ENODEV;
364 goto done;
365 }
366 if (cs->mstate != MS_LOCKED) {
5002779d 367 dev_warn(cs->dev, "can't write to unlocked device\n");
ee8a4b7f 368 retval = -EBUSY;
e3628dd1
TS
369 goto done;
370 }
371 if (count <= 0) {
372 /* nothing to do */
373 retval = 0;
374 goto done;
ee8a4b7f
HL
375 }
376
e3628dd1
TS
377 cb = kmalloc(sizeof(struct cmdbuf_t) + count, GFP_KERNEL);
378 if (!cb) {
379 dev_err(cs->dev, "%s: out of memory\n", __func__);
380 retval = -ENOMEM;
381 goto done;
382 }
ee8a4b7f 383
e3628dd1
TS
384 memcpy(cb->buf, buf, count);
385 cb->len = count;
386 cb->offset = 0;
387 cb->next = NULL;
388 cb->wake_tasklet = &cs->if_wake_tasklet;
389 retval = cs->ops->write_cmd(cs, cb);
390done:
391 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
392 return retval;
393}
394
395static int if_write_room(struct tty_struct *tty)
396{
397 struct cardstate *cs;
398 int retval = -ENODEV;
399
400 cs = (struct cardstate *) tty->driver_data;
401 if (!cs) {
c8770dca 402 pr_err("%s: no cardstate\n", __func__);
ee8a4b7f
HL
403 return -ENODEV;
404 }
405
784d5858 406 gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
ee8a4b7f 407
abfd1dc7 408 if (mutex_lock_interruptible(&cs->mutex))
d9ba9c91 409 return -ERESTARTSYS;
ee8a4b7f 410
51370e5b
TS
411 if (!cs->connected) {
412 gig_dbg(DEBUG_IF, "not connected");
413 retval = -ENODEV;
414 } else if (!cs->open_count)
5002779d 415 dev_warn(cs->dev, "%s: device not opened\n", __func__);
9d4bee2b 416 else if (cs->mstate != MS_LOCKED) {
5002779d 417 dev_warn(cs->dev, "can't write to unlocked device\n");
9d4bee2b 418 retval = -EBUSY;
ee8a4b7f
HL
419 } else
420 retval = cs->ops->write_room(cs);
421
abfd1dc7 422 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
423
424 return retval;
425}
426
427static int if_chars_in_buffer(struct tty_struct *tty)
428{
429 struct cardstate *cs;
a4304f2d 430 int retval = 0;
ee8a4b7f
HL
431
432 cs = (struct cardstate *) tty->driver_data;
433 if (!cs) {
c8770dca 434 pr_err("%s: no cardstate\n", __func__);
a4304f2d 435 return 0;
ee8a4b7f
HL
436 }
437
784d5858 438 gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
ee8a4b7f 439
a4304f2d 440 mutex_lock(&cs->mutex);
ee8a4b7f 441
a4304f2d 442 if (!cs->connected)
51370e5b 443 gig_dbg(DEBUG_IF, "not connected");
a4304f2d 444 else if (!cs->open_count)
5002779d 445 dev_warn(cs->dev, "%s: device not opened\n", __func__);
a4304f2d 446 else if (cs->mstate != MS_LOCKED)
5002779d 447 dev_warn(cs->dev, "can't write to unlocked device\n");
a4304f2d 448 else
ee8a4b7f
HL
449 retval = cs->ops->chars_in_buffer(cs);
450
abfd1dc7 451 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
452
453 return retval;
454}
455
456static void if_throttle(struct tty_struct *tty)
457{
458 struct cardstate *cs;
459
460 cs = (struct cardstate *) tty->driver_data;
461 if (!cs) {
c8770dca 462 pr_err("%s: no cardstate\n", __func__);
ee8a4b7f
HL
463 return;
464 }
465
784d5858 466 gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
ee8a4b7f 467
abfd1dc7 468 mutex_lock(&cs->mutex);
ee8a4b7f 469
51370e5b
TS
470 if (!cs->connected)
471 gig_dbg(DEBUG_IF, "not connected"); /* nothing to do */
472 else if (!cs->open_count)
5002779d 473 dev_warn(cs->dev, "%s: device not opened\n", __func__);
d9ba9c91 474 else
1528b18f 475 gig_dbg(DEBUG_IF, "%s: not implemented\n", __func__);
ee8a4b7f 476
abfd1dc7 477 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
478}
479
480static void if_unthrottle(struct tty_struct *tty)
481{
482 struct cardstate *cs;
483
484 cs = (struct cardstate *) tty->driver_data;
485 if (!cs) {
c8770dca 486 pr_err("%s: no cardstate\n", __func__);
ee8a4b7f
HL
487 return;
488 }
489
784d5858 490 gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
ee8a4b7f 491
abfd1dc7 492 mutex_lock(&cs->mutex);
ee8a4b7f 493
51370e5b
TS
494 if (!cs->connected)
495 gig_dbg(DEBUG_IF, "not connected"); /* nothing to do */
496 else if (!cs->open_count)
5002779d 497 dev_warn(cs->dev, "%s: device not opened\n", __func__);
d9ba9c91 498 else
1528b18f 499 gig_dbg(DEBUG_IF, "%s: not implemented\n", __func__);
ee8a4b7f 500
abfd1dc7 501 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
502}
503
606d099c 504static void if_set_termios(struct tty_struct *tty, struct ktermios *old)
ee8a4b7f
HL
505{
506 struct cardstate *cs;
507 unsigned int iflag;
508 unsigned int cflag;
509 unsigned int old_cflag;
510 unsigned int control_state, new_state;
511
512 cs = (struct cardstate *) tty->driver_data;
513 if (!cs) {
c8770dca 514 pr_err("%s: no cardstate\n", __func__);
ee8a4b7f
HL
515 return;
516 }
517
784d5858 518 gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
ee8a4b7f 519
abfd1dc7 520 mutex_lock(&cs->mutex);
ee8a4b7f 521
51370e5b
TS
522 if (!cs->connected) {
523 gig_dbg(DEBUG_IF, "not connected");
ee8a4b7f
HL
524 goto out;
525 }
526
51370e5b
TS
527 if (!cs->open_count) {
528 dev_warn(cs->dev, "%s: device not opened\n", __func__);
ee8a4b7f
HL
529 goto out;
530 }
531
ee8a4b7f
HL
532 iflag = tty->termios->c_iflag;
533 cflag = tty->termios->c_cflag;
d9ba9c91 534 old_cflag = old ? old->c_cflag : cflag;
784d5858
TS
535 gig_dbg(DEBUG_IF, "%u: iflag %x cflag %x old %x",
536 cs->minor_index, iflag, cflag, old_cflag);
ee8a4b7f
HL
537
538 /* get a local copy of the current port settings */
539 control_state = cs->control_state;
540
541 /*
542 * Update baud rate.
543 * Do not attempt to cache old rates and skip settings,
544 * disconnects screw such tricks up completely.
545 * Premature optimization is the root of all evil.
546 */
547
784d5858 548 /* reassert DTR and (maybe) RTS on transition from B0 */
ee8a4b7f
HL
549 if ((old_cflag & CBAUD) == B0) {
550 new_state = control_state | TIOCM_DTR;
551 /* don't set RTS if using hardware flow control */
552 if (!(old_cflag & CRTSCTS))
553 new_state |= TIOCM_RTS;
784d5858
TS
554 gig_dbg(DEBUG_IF, "%u: from B0 - set DTR%s",
555 cs->minor_index,
556 (new_state & TIOCM_RTS) ? " only" : "/RTS");
ee8a4b7f
HL
557 cs->ops->set_modem_ctrl(cs, control_state, new_state);
558 control_state = new_state;
559 }
560
561 cs->ops->baud_rate(cs, cflag & CBAUD);
562
563 if ((cflag & CBAUD) == B0) {
564 /* Drop RTS and DTR */
784d5858 565 gig_dbg(DEBUG_IF, "%u: to B0 - drop DTR/RTS", cs->minor_index);
ee8a4b7f
HL
566 new_state = control_state & ~(TIOCM_DTR | TIOCM_RTS);
567 cs->ops->set_modem_ctrl(cs, control_state, new_state);
568 control_state = new_state;
569 }
570
571 /*
572 * Update line control register (LCR)
573 */
574
575 cs->ops->set_line_ctrl(cs, cflag);
576
ee8a4b7f
HL
577 /* save off the modified port settings */
578 cs->control_state = control_state;
579
580out:
abfd1dc7 581 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
582}
583
584
585/* wakeup tasklet for the write operation */
586static void if_wake(unsigned long data)
587{
588 struct cardstate *cs = (struct cardstate *) data;
ee8a4b7f 589
b963a844
JS
590 if (cs->tty)
591 tty_wakeup(cs->tty);
ee8a4b7f
HL
592}
593
594/*** interface to common ***/
595
596void gigaset_if_init(struct cardstate *cs)
597{
598 struct gigaset_driver *drv;
599
600 drv = cs->driver;
601 if (!drv->have_tty)
602 return;
603
5452fee2 604 tasklet_init(&cs->if_wake_tasklet, if_wake, (unsigned long) cs);
7435f50e
TS
605
606 mutex_lock(&cs->mutex);
01107d34 607 cs->tty_dev = tty_register_device(drv->tty, cs->minor_index, NULL);
3dda4e37 608
01107d34
GKH
609 if (!IS_ERR(cs->tty_dev))
610 dev_set_drvdata(cs->tty_dev, cs);
3dda4e37 611 else {
42e3d611 612 pr_warning("could not register device to the tty subsystem\n");
01107d34 613 cs->tty_dev = NULL;
3dda4e37 614 }
7435f50e 615 mutex_unlock(&cs->mutex);
ee8a4b7f
HL
616}
617
618void gigaset_if_free(struct cardstate *cs)
619{
620 struct gigaset_driver *drv;
621
622 drv = cs->driver;
623 if (!drv->have_tty)
624 return;
625
626 tasklet_disable(&cs->if_wake_tasklet);
627 tasklet_kill(&cs->if_wake_tasklet);
01107d34 628 cs->tty_dev = NULL;
ee8a4b7f
HL
629 tty_unregister_device(drv->tty, cs->minor_index);
630}
631
1cec9727
TS
632/**
633 * gigaset_if_receive() - pass a received block of data to the tty device
634 * @cs: device descriptor structure.
635 * @buffer: received data.
636 * @len: number of bytes received.
637 *
638 * Called by asyncdata/isocdata if a block of data received from the
639 * device must be sent to userspace through the ttyG* device.
640 */
ee8a4b7f 641void gigaset_if_receive(struct cardstate *cs,
784d5858 642 unsigned char *buffer, size_t len)
ee8a4b7f
HL
643{
644 unsigned long flags;
645 struct tty_struct *tty;
646
647 spin_lock_irqsave(&cs->lock, flags);
d9ba9c91
TS
648 tty = cs->tty;
649 if (tty == NULL)
1528b18f 650 gig_dbg(DEBUG_IF, "receive on closed device");
ee8a4b7f 651 else {
ee8a4b7f
HL
652 tty_insert_flip_string(tty, buffer, len);
653 tty_flip_buffer_push(tty);
654 }
655 spin_unlock_irqrestore(&cs->lock, flags);
656}
657EXPORT_SYMBOL_GPL(gigaset_if_receive);
658
659/* gigaset_if_initdriver
660 * Initialize tty interface.
661 * parameters:
784d5858
TS
662 * drv Driver
663 * procname Name of the driver (e.g. for /proc/tty/drivers)
664 * devname Name of the device files (prefix without minor number)
ee8a4b7f
HL
665 */
666void gigaset_if_initdriver(struct gigaset_driver *drv, const char *procname,
f4eaa370 667 const char *devname)
ee8a4b7f
HL
668{
669 unsigned minors = drv->minors;
670 int ret;
671 struct tty_driver *tty;
672
673 drv->have_tty = 0;
674
d9ba9c91
TS
675 drv->tty = tty = alloc_tty_driver(minors);
676 if (tty == NULL)
ee8a4b7f 677 goto enomem;
ee8a4b7f
HL
678
679 tty->magic = TTY_DRIVER_MAGIC,
ee8a4b7f
HL
680 tty->type = TTY_DRIVER_TYPE_SERIAL,
681 tty->subtype = SERIAL_TYPE_NORMAL,
331b8319 682 tty->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
ee8a4b7f
HL
683
684 tty->driver_name = procname;
685 tty->name = devname;
686 tty->minor_start = drv->minor;
687 tty->num = drv->minors;
688
689 tty->owner = THIS_MODULE;
ee8a4b7f 690
d9ba9c91
TS
691 tty->init_termios = tty_std_termios;
692 tty->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
ee8a4b7f
HL
693 tty_set_operations(tty, &if_ops);
694
695 ret = tty_register_driver(tty);
696 if (ret < 0) {
c8770dca 697 pr_err("error %d registering tty driver\n", ret);
ee8a4b7f
HL
698 goto error;
699 }
784d5858 700 gig_dbg(DEBUG_IF, "tty driver initialized");
ee8a4b7f
HL
701 drv->have_tty = 1;
702 return;
703
704enomem:
c8770dca 705 pr_err("out of memory\n");
ee8a4b7f
HL
706error:
707 if (drv->tty)
708 put_tty_driver(drv->tty);
709}
710
711void gigaset_if_freedriver(struct gigaset_driver *drv)
712{
713 if (!drv->have_tty)
714 return;
715
716 drv->have_tty = 0;
717 tty_unregister_driver(drv->tty);
718 put_tty_driver(drv->tty);
719}
This page took 0.676647 seconds and 5 git commands to generate.