interface.c 16.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * interface to user space for the gigaset driver
 *
 * Copyright (c) 2004 by Hansjoerg Lipp <hjlipp@web.de>
 *
 * =====================================================================
 *    This program is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU General Public License as
 *    published by the Free Software Foundation; either version 2 of
 *    the License, or (at your option) any later version.
 * =====================================================================
 */

#include "gigaset.h"
#include <linux/gigaset_dev.h>
#include <linux/tty.h>
#include <linux/tty_flip.h>

/*** our ioctls ***/

static int if_lock(struct cardstate *cs, int *arg)
{
	int cmd = *arg;

25
	gig_dbg(DEBUG_IF, "%u: if_lock (%d)", cs->minor_index, cmd);
26 27 28 29 30 31 32 33 34 35

	if (cmd > 1)
		return -EINVAL;

	if (cmd < 0) {
		*arg = atomic_read(&cs->mstate) == MS_LOCKED; //FIXME remove?
		return 0;
	}

	if (!cmd && atomic_read(&cs->mstate) == MS_LOCKED
36
	    && cs->connected) {
37 38 39 40 41 42 43 44
		cs->ops->set_modem_ctrl(cs, 0, TIOCM_DTR|TIOCM_RTS);
		cs->ops->baud_rate(cs, B115200);
		cs->ops->set_line_ctrl(cs, CS8);
		cs->control_state = TIOCM_DTR|TIOCM_RTS;
	}

	cs->waiting = 1;
	if (!gigaset_add_event(cs, &cs->at_state, EV_IF_LOCK,
45
			       NULL, cmd, NULL)) {
46 47 48 49
		cs->waiting = 0;
		return -ENOMEM;
	}

50
	gig_dbg(DEBUG_CMD, "scheduling IF_LOCK");
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
	gigaset_schedule_event(cs);

	wait_event(cs->waitqueue, !cs->waiting);

	if (cs->cmd_result >= 0) {
		*arg = cs->cmd_result;
		return 0;
	}

	return cs->cmd_result;
}

static int if_version(struct cardstate *cs, unsigned arg[4])
{
	static const unsigned version[4] = GIG_VERSION;
	static const unsigned compat[4] = GIG_COMPAT;
	unsigned cmd = arg[0];

69
	gig_dbg(DEBUG_IF, "%u: if_version (%d)", cs->minor_index, cmd);
70 71 72 73 74 75 76 77 78 79 80

	switch (cmd) {
	case GIGVER_DRIVER:
		memcpy(arg, version, sizeof version);
		return 0;
	case GIGVER_COMPAT:
		memcpy(arg, compat, sizeof compat);
		return 0;
	case GIGVER_FWBASE:
		cs->waiting = 1;
		if (!gigaset_add_event(cs, &cs->at_state, EV_IF_VER,
81
				       NULL, 0, arg)) {
82 83 84 85
			cs->waiting = 0;
			return -ENOMEM;
		}

86
		gig_dbg(DEBUG_CMD, "scheduling IF_VER");
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
		gigaset_schedule_event(cs);

		wait_event(cs->waitqueue, !cs->waiting);

		if (cs->cmd_result >= 0)
			return 0;

		return cs->cmd_result;
	default:
		return -EINVAL;
	}
}

static int if_config(struct cardstate *cs, int *arg)
{
102
	gig_dbg(DEBUG_IF, "%u: if_config (%d)", cs->minor_index, *arg);
103 104 105 106 107 108 109

	if (*arg != 1)
		return -EINVAL;

	if (atomic_read(&cs->mstate) != MS_LOCKED)
		return -EBUSY;

110 111 112 113 114
	if (!cs->connected) {
		err("not connected!");
		return -ENODEV;
	}

115 116 117 118 119 120 121 122 123 124
	*arg = 0;
	return gigaset_enterconfigmode(cs);
}

/*** the terminal driver ***/
/* stolen from usbserial and some other tty drivers */

static int  if_open(struct tty_struct *tty, struct file *filp);
static void if_close(struct tty_struct *tty, struct file *filp);
static int  if_ioctl(struct tty_struct *tty, struct file *file,
125
		     unsigned int cmd, unsigned long arg);
126 127 128 129
static int  if_write_room(struct tty_struct *tty);
static int  if_chars_in_buffer(struct tty_struct *tty);
static void if_throttle(struct tty_struct *tty);
static void if_unthrottle(struct tty_struct *tty);
A
Alan Cox 已提交
130
static void if_set_termios(struct tty_struct *tty, struct ktermios *old);
131 132
static int  if_tiocmget(struct tty_struct *tty, struct file *file);
static int  if_tiocmset(struct tty_struct *tty, struct file *file,
133
			unsigned int set, unsigned int clear);
134
static int  if_write(struct tty_struct *tty,
135
		     const unsigned char *buf, int count);
136

J
Jeff Dike 已提交
137
static const struct tty_operations if_ops = {
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
	.open =			if_open,
	.close =		if_close,
	.ioctl =		if_ioctl,
	.write =		if_write,
	.write_room =		if_write_room,
	.chars_in_buffer =	if_chars_in_buffer,
	.set_termios =		if_set_termios,
	.throttle =		if_throttle,
	.unthrottle =		if_unthrottle,
#if 0
	.break_ctl =		serial_break,
#endif
	.tiocmget =		if_tiocmget,
	.tiocmset =		if_tiocmset,
};

static int if_open(struct tty_struct *tty, struct file *filp)
{
	struct cardstate *cs;
	unsigned long flags;

159 160
	gig_dbg(DEBUG_IF, "%d+%d: %s()",
		tty->driver->minor_start, tty->index, __func__);
161 162 163 164 165 166 167

	tty->driver_data = NULL;

	cs = gigaset_get_cs_by_tty(tty);
	if (!cs)
		return -ENODEV;

168
	if (mutex_lock_interruptible(&cs->mutex))
169 170 171 172 173 174 175 176 177 178 179 180
		return -ERESTARTSYS; // FIXME -EINTR?
	tty->driver_data = cs;

	++cs->open_count;

	if (cs->open_count == 1) {
		spin_lock_irqsave(&cs->lock, flags);
		cs->tty = tty;
		spin_unlock_irqrestore(&cs->lock, flags);
		tty->low_latency = 1; //FIXME test
	}

181
	mutex_unlock(&cs->mutex);
182 183 184 185 186 187 188 189 190 191
	return 0;
}

static void if_close(struct tty_struct *tty, struct file *filp)
{
	struct cardstate *cs;
	unsigned long flags;

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
192
		err("cs==NULL in %s", __func__);
193 194 195
		return;
	}

196
	gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
197

198
	mutex_lock(&cs->mutex);
199 200

	if (!cs->open_count)
201
		warn("%s: device not opened", __func__);
202 203 204 205 206 207 208 209
	else {
		if (!--cs->open_count) {
			spin_lock_irqsave(&cs->lock, flags);
			cs->tty = NULL;
			spin_unlock_irqrestore(&cs->lock, flags);
		}
	}

210
	mutex_unlock(&cs->mutex);
211 212 213
}

static int if_ioctl(struct tty_struct *tty, struct file *file,
214
		    unsigned int cmd, unsigned long arg)
215 216 217 218 219 220 221 222 223
{
	struct cardstate *cs;
	int retval = -ENODEV;
	int int_arg;
	unsigned char buf[6];
	unsigned version[4];

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
224
		err("cs==NULL in %s", __func__);
225 226 227
		return -ENODEV;
	}

228
	gig_dbg(DEBUG_IF, "%u: %s(0x%x)", cs->minor_index, __func__, cmd);
229

230
	if (mutex_lock_interruptible(&cs->mutex))
231 232 233
		return -ERESTARTSYS; // FIXME -EINTR?

	if (!cs->open_count)
234
		warn("%s: device not opened", __func__);
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
	else {
		retval = 0;
		switch (cmd) {
		case GIGASET_REDIR:
			retval = get_user(int_arg, (int __user *) arg);
			if (retval >= 0)
				retval = if_lock(cs, &int_arg);
			if (retval >= 0)
				retval = put_user(int_arg, (int __user *) arg);
			break;
		case GIGASET_CONFIG:
			retval = get_user(int_arg, (int __user *) arg);
			if (retval >= 0)
				retval = if_config(cs, &int_arg);
			if (retval >= 0)
				retval = put_user(int_arg, (int __user *) arg);
			break;
		case GIGASET_BRKCHARS:
			//FIXME test if MS_LOCKED
254
			if (!cs->connected) {
255
				gig_dbg(DEBUG_ANY,
256
				    "can't communicate with unplugged device");
257 258 259 260
				retval = -ENODEV;
				break;
			}
			retval = copy_from_user(&buf,
261 262
					(const unsigned char __user *) arg, 6)
				? -EFAULT : 0;
263 264 265
			if (retval >= 0) {
				gigaset_dbg_buffer(DEBUG_IF, "GIGASET_BRKCHARS",
						6, (const unsigned char *) arg);
266
				retval = cs->ops->brkchars(cs, buf);
267
			}
268 269
			break;
		case GIGASET_VERSION:
270
			retval = copy_from_user(version,
271 272
					(unsigned __user *) arg, sizeof version)
				? -EFAULT : 0;
273 274 275
			if (retval >= 0)
				retval = if_version(cs, version);
			if (retval >= 0)
276
				retval = copy_to_user((unsigned __user *) arg,
277 278
						      version, sizeof version)
					? -EFAULT : 0;
279
			break;
280 281 282
		default:
			gig_dbg(DEBUG_ANY, "%s: arg not supported - 0x%04x",
				__func__, cmd);
283 284 285 286
			retval = -ENOIOCTLCMD;
		}
	}

287
	mutex_unlock(&cs->mutex);
288 289 290 291 292 293 294 295 296 297 298

	return retval;
}

static int if_tiocmget(struct tty_struct *tty, struct file *file)
{
	struct cardstate *cs;
	int retval;

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
299
		err("cs==NULL in %s", __func__);
300 301 302
		return -ENODEV;
	}

303
	gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
304

305
	if (mutex_lock_interruptible(&cs->mutex))
306 307 308 309 310
		return -ERESTARTSYS; // FIXME -EINTR?

	// FIXME read from device?
	retval = cs->control_state & (TIOCM_RTS|TIOCM_DTR);

311
	mutex_unlock(&cs->mutex);
312 313 314 315 316

	return retval;
}

static int if_tiocmset(struct tty_struct *tty, struct file *file,
317
		       unsigned int set, unsigned int clear)
318 319 320 321 322 323 324
{
	struct cardstate *cs;
	int retval;
	unsigned mc;

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
325
		err("cs==NULL in %s", __func__);
326 327 328
		return -ENODEV;
	}

329 330
	gig_dbg(DEBUG_IF, "%u: %s(0x%x, 0x%x)",
		cs->minor_index, __func__, set, clear);
331

332
	if (mutex_lock_interruptible(&cs->mutex))
333 334
		return -ERESTARTSYS; // FIXME -EINTR?

335
	if (!cs->connected) {
336
		gig_dbg(DEBUG_ANY, "can't communicate with unplugged device");
337 338 339 340 341 342 343
		retval = -ENODEV;
	} else {
		mc = (cs->control_state | set) & ~clear & (TIOCM_RTS|TIOCM_DTR);
		retval = cs->ops->set_modem_ctrl(cs, cs->control_state, mc);
		cs->control_state = mc;
	}

344
	mutex_unlock(&cs->mutex);
345 346 347 348 349 350 351 352 353 354 355

	return retval;
}

static int if_write(struct tty_struct *tty, const unsigned char *buf, int count)
{
	struct cardstate *cs;
	int retval = -ENODEV;

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
356
		err("cs==NULL in %s", __func__);
357 358 359
		return -ENODEV;
	}

360
	gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
361

362
	if (mutex_lock_interruptible(&cs->mutex))
363 364 365
		return -ERESTARTSYS; // FIXME -EINTR?

	if (!cs->open_count)
366
		warn("%s: device not opened", __func__);
367 368 369
	else if (atomic_read(&cs->mstate) != MS_LOCKED) {
		warn("can't write to unlocked device");
		retval = -EBUSY;
370
	} else if (!cs->connected) {
371
		gig_dbg(DEBUG_ANY, "can't write to unplugged device");
372 373 374
		retval = -EBUSY; //FIXME
	} else {
		retval = cs->ops->write_cmd(cs, buf, count,
375
					    &cs->if_wake_tasklet);
376 377
	}

378
	mutex_unlock(&cs->mutex);
379 380 381 382 383 384 385 386 387 388 389

	return retval;
}

static int if_write_room(struct tty_struct *tty)
{
	struct cardstate *cs;
	int retval = -ENODEV;

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
390
		err("cs==NULL in %s", __func__);
391 392 393
		return -ENODEV;
	}

394
	gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
395

396
	if (mutex_lock_interruptible(&cs->mutex))
397 398 399
		return -ERESTARTSYS; // FIXME -EINTR?

	if (!cs->open_count)
400
		warn("%s: device not opened", __func__);
401 402 403
	else if (atomic_read(&cs->mstate) != MS_LOCKED) {
		warn("can't write to unlocked device");
		retval = -EBUSY; //FIXME
404
	} else if (!cs->connected) {
405
		gig_dbg(DEBUG_ANY, "can't write to unplugged device");
406 407 408 409
		retval = -EBUSY; //FIXME
	} else
		retval = cs->ops->write_room(cs);

410
	mutex_unlock(&cs->mutex);
411 412 413 414 415 416 417 418 419 420 421

	return retval;
}

static int if_chars_in_buffer(struct tty_struct *tty)
{
	struct cardstate *cs;
	int retval = -ENODEV;

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
422
		err("cs==NULL in %s", __func__);
423 424 425
		return -ENODEV;
	}

426
	gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
427

428
	if (mutex_lock_interruptible(&cs->mutex))
429 430 431
		return -ERESTARTSYS; // FIXME -EINTR?

	if (!cs->open_count)
432
		warn("%s: device not opened", __func__);
433 434 435
	else if (atomic_read(&cs->mstate) != MS_LOCKED) {
		warn("can't write to unlocked device");
		retval = -EBUSY;
436
	} else if (!cs->connected) {
437
		gig_dbg(DEBUG_ANY, "can't write to unplugged device");
438 439 440 441
		retval = -EBUSY; //FIXME
	} else
		retval = cs->ops->chars_in_buffer(cs);

442
	mutex_unlock(&cs->mutex);
443 444 445 446 447 448 449 450 451 452

	return retval;
}

static void if_throttle(struct tty_struct *tty)
{
	struct cardstate *cs;

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
453
		err("cs==NULL in %s", __func__);
454 455 456
		return;
	}

457
	gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
458

459
	mutex_lock(&cs->mutex);
460 461

	if (!cs->open_count)
462
		warn("%s: device not opened", __func__);
463 464 465 466
	else {
		//FIXME
	}

467
	mutex_unlock(&cs->mutex);
468 469 470 471 472 473 474 475
}

static void if_unthrottle(struct tty_struct *tty)
{
	struct cardstate *cs;

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
476
		err("cs==NULL in %s", __func__);
477 478 479
		return;
	}

480
	gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
481

482
	mutex_lock(&cs->mutex);
483 484

	if (!cs->open_count)
485
		warn("%s: device not opened", __func__);
486 487 488 489
	else {
		//FIXME
	}

490
	mutex_unlock(&cs->mutex);
491 492
}

A
Alan Cox 已提交
493
static void if_set_termios(struct tty_struct *tty, struct ktermios *old)
494 495 496 497 498 499 500 501 502
{
	struct cardstate *cs;
	unsigned int iflag;
	unsigned int cflag;
	unsigned int old_cflag;
	unsigned int control_state, new_state;

	cs = (struct cardstate *) tty->driver_data;
	if (!cs) {
503
		err("cs==NULL in %s", __func__);
504 505 506
		return;
	}

507
	gig_dbg(DEBUG_IF, "%u: %s()", cs->minor_index, __func__);
508

509
	mutex_lock(&cs->mutex);
510 511

	if (!cs->open_count) {
512
		warn("%s: device not opened", __func__);
513 514 515
		goto out;
	}

516
	if (!cs->connected) {
517
		gig_dbg(DEBUG_ANY, "can't communicate with unplugged device");
518 519 520 521 522 523 524
		goto out;
	}

	// stolen from mct_u232.c
	iflag = tty->termios->c_iflag;
	cflag = tty->termios->c_cflag;
	old_cflag = old ? old->c_cflag : cflag; //FIXME?
525 526
	gig_dbg(DEBUG_IF, "%u: iflag %x cflag %x old %x",
		cs->minor_index, iflag, cflag, old_cflag);
527 528 529 530 531 532 533 534 535 536 537

	/* get a local copy of the current port settings */
	control_state = cs->control_state;

	/*
	 * Update baud rate.
	 * Do not attempt to cache old rates and skip settings,
	 * disconnects screw such tricks up completely.
	 * Premature optimization is the root of all evil.
	 */

538
	/* reassert DTR and (maybe) RTS on transition from B0 */
539 540 541 542 543
	if ((old_cflag & CBAUD) == B0) {
		new_state = control_state | TIOCM_DTR;
		/* don't set RTS if using hardware flow control */
		if (!(old_cflag & CRTSCTS))
			new_state |= TIOCM_RTS;
544 545 546
		gig_dbg(DEBUG_IF, "%u: from B0 - set DTR%s",
			cs->minor_index,
			(new_state & TIOCM_RTS) ? " only" : "/RTS");
547 548 549 550 551 552 553 554
		cs->ops->set_modem_ctrl(cs, control_state, new_state);
		control_state = new_state;
	}

	cs->ops->baud_rate(cs, cflag & CBAUD);

	if ((cflag & CBAUD) == B0) {
		/* Drop RTS and DTR */
555
		gig_dbg(DEBUG_IF, "%u: to B0 - drop DTR/RTS", cs->minor_index);
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
		new_state = control_state & ~(TIOCM_DTR | TIOCM_RTS);
		cs->ops->set_modem_ctrl(cs, control_state, new_state);
		control_state = new_state;
	}

	/*
	 * Update line control register (LCR)
	 */

	cs->ops->set_line_ctrl(cs, cflag);

#if 0
	//FIXME this hangs M101 [ts 2005-03-09]
	//FIXME do we need this?
	/*
	 * Set flow control: well, I do not really now how to handle DTR/RTS.
	 * Just do what we have seen with SniffUSB on Win98.
	 */
	/* Drop DTR/RTS if no flow control otherwise assert */
575 576
	gig_dbg(DEBUG_IF, "%u: control_state %x",
		cs->minor_index, control_state);
577 578 579 580 581 582
	new_state = control_state;
	if ((iflag & IXOFF) || (iflag & IXON) || (cflag & CRTSCTS))
		new_state |= TIOCM_DTR | TIOCM_RTS;
	else
		new_state &= ~(TIOCM_DTR | TIOCM_RTS);
	if (new_state != control_state) {
583 584
		gig_dbg(DEBUG_IF, "%u: new_state %x",
			cs->minor_index, new_state);
585
		gigaset_set_modem_ctrl(cs, control_state, new_state);
586 587 588 589 590 591 592 593
		control_state = new_state;
	}
#endif

	/* save off the modified port settings */
	cs->control_state = control_state;

out:
594
	mutex_unlock(&cs->mutex);
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
}


/* wakeup tasklet for the write operation */
static void if_wake(unsigned long data)
{
	struct cardstate *cs = (struct cardstate *) data;
	struct tty_struct *tty;

	tty = cs->tty;
	if (!tty)
		return;

	if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
	    tty->ldisc.write_wakeup) {
610
		gig_dbg(DEBUG_IF, "write wakeup call");
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
		tty->ldisc.write_wakeup(tty);
	}

	wake_up_interruptible(&tty->write_wait);
}

/*** interface to common ***/

void gigaset_if_init(struct cardstate *cs)
{
	struct gigaset_driver *drv;

	drv = cs->driver;
	if (!drv->have_tty)
		return;

	tasklet_init(&cs->if_wake_tasklet, &if_wake, (unsigned long) cs);
628
	cs->tty_dev = tty_register_device(drv->tty, cs->minor_index, NULL);
629

630 631
	if (!IS_ERR(cs->tty_dev))
		dev_set_drvdata(cs->tty_dev, cs);
632 633
	else {
		warn("could not register device to the tty subsystem");
634
		cs->tty_dev = NULL;
635
	}
636 637 638 639 640 641 642 643 644 645 646 647
}

void gigaset_if_free(struct cardstate *cs)
{
	struct gigaset_driver *drv;

	drv = cs->driver;
	if (!drv->have_tty)
		return;

	tasklet_disable(&cs->if_wake_tasklet);
	tasklet_kill(&cs->if_wake_tasklet);
648
	cs->tty_dev = NULL;
649 650 651 652
	tty_unregister_device(drv->tty, cs->minor_index);
}

void gigaset_if_receive(struct cardstate *cs,
653
			unsigned char *buffer, size_t len)
654 655 656 657 658 659
{
	unsigned long flags;
	struct tty_struct *tty;

	spin_lock_irqsave(&cs->lock, flags);
	if ((tty = cs->tty) == NULL)
660
		gig_dbg(DEBUG_ANY, "receive on closed device");
661 662 663 664 665 666 667 668 669 670 671 672
	else {
		tty_buffer_request_room(tty, len);
		tty_insert_flip_string(tty, buffer, len);
		tty_flip_buffer_push(tty);
	}
	spin_unlock_irqrestore(&cs->lock, flags);
}
EXPORT_SYMBOL_GPL(gigaset_if_receive);

/* gigaset_if_initdriver
 * Initialize tty interface.
 * parameters:
673 674 675
 *	drv		Driver
 *	procname	Name of the driver (e.g. for /proc/tty/drivers)
 *	devname		Name of the device files (prefix without minor number)
676 677
 */
void gigaset_if_initdriver(struct gigaset_driver *drv, const char *procname,
678
			   const char *devname)
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
{
	unsigned minors = drv->minors;
	int ret;
	struct tty_driver *tty;

	drv->have_tty = 0;

	if ((drv->tty = alloc_tty_driver(minors)) == NULL)
		goto enomem;
	tty = drv->tty;

	tty->magic =		TTY_DRIVER_MAGIC,
	tty->major =		GIG_MAJOR,
	tty->type =		TTY_DRIVER_TYPE_SERIAL,
	tty->subtype =		SERIAL_TYPE_NORMAL,
694
	tty->flags =		TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711

	tty->driver_name =	procname;
	tty->name =		devname;
	tty->minor_start =	drv->minor;
	tty->num =		drv->minors;

	tty->owner =		THIS_MODULE;

	tty->init_termios          = tty_std_termios; //FIXME
	tty->init_termios.c_cflag  = B9600 | CS8 | CREAD | HUPCL | CLOCAL; //FIXME
	tty_set_operations(tty, &if_ops);

	ret = tty_register_driver(tty);
	if (ret < 0) {
		warn("failed to register tty driver (error %d)", ret);
		goto error;
	}
712
	gig_dbg(DEBUG_IF, "tty driver initialized");
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
	drv->have_tty = 1;
	return;

enomem:
	warn("could not allocate tty structures");
error:
	if (drv->tty)
		put_tty_driver(drv->tty);
}

void gigaset_if_freedriver(struct gigaset_driver *drv)
{
	if (!drv->have_tty)
		return;

	drv->have_tty = 0;
	tty_unregister_driver(drv->tty);
	put_tty_driver(drv->tty);
}