interface.c 16.6 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

	if (cmd > 1)
		return -EINVAL;

	if (cmd < 0) {
T
Tilman Schmidt 已提交
31
		*arg = cs->mstate == MS_LOCKED;
32 33 34
		return 0;
	}

T
Tilman Schmidt 已提交
35
	if (!cmd && cs->mstate == MS_LOCKED && cs->connected) {
36 37 38 39 40 41 42 43
		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,
44
			       NULL, cmd, NULL)) {
45 46 47 48
		cs->waiting = 0;
		return -ENOMEM;
	}

49
	gig_dbg(DEBUG_CMD, "scheduling IF_LOCK");
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
	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];

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

	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,
80
				       NULL, 0, arg)) {
81 82 83 84
			cs->waiting = 0;
			return -ENOMEM;
		}

85
		gig_dbg(DEBUG_CMD, "scheduling IF_VER");
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
		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)
{
101
	gig_dbg(DEBUG_IF, "%u: if_config (%d)", cs->minor_index, *arg);
102 103 104 105

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

T
Tilman Schmidt 已提交
106
	if (cs->mstate != MS_LOCKED)
107 108
		return -EBUSY;

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

114 115 116 117 118 119 120 121 122 123
	*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,
124
		     unsigned int cmd, unsigned long arg);
125 126 127 128
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 已提交
129
static void if_set_termios(struct tty_struct *tty, struct ktermios *old);
130 131
static int  if_tiocmget(struct tty_struct *tty, struct file *file);
static int  if_tiocmset(struct tty_struct *tty, struct file *file,
132
			unsigned int set, unsigned int clear);
133
static int  if_write(struct tty_struct *tty,
134
		     const unsigned char *buf, int count);
135

J
Jeff Dike 已提交
136
static const struct tty_operations if_ops = {
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
	.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;

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

	tty->driver_data = NULL;

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

167
	if (mutex_lock_interruptible(&cs->mutex))
168 169 170 171 172 173 174 175 176 177 178 179
		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
	}

180
	mutex_unlock(&cs->mutex);
181 182 183 184 185 186 187 188 189 190
	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) {
191
		err("cs==NULL in %s", __func__);
192 193 194
		return;
	}

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

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

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

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

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

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

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

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

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

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

	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) {
298
		err("cs==NULL in %s", __func__);
299 300 301
		return -ENODEV;
	}

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

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

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

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

	return retval;
}

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

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

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

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

334
	if (!cs->connected) {
335
		gig_dbg(DEBUG_ANY, "can't communicate with unplugged device");
336 337 338 339 340 341 342
		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;
	}

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

	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) {
355
		err("cs==NULL in %s", __func__);
356 357 358
		return -ENODEV;
	}

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

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

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

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

	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) {
389
		err("cs==NULL in %s", __func__);
390 391 392
		return -ENODEV;
	}

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

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

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

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

	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) {
421
		err("cs==NULL in %s", __func__);
422 423 424
		return -ENODEV;
	}

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

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

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

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

	return retval;
}

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

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

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

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

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

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

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

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

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

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

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

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

A
Alan Cox 已提交
492
static void if_set_termios(struct tty_struct *tty, struct ktermios *old)
493 494 495 496 497 498 499 500 501
{
	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) {
502
		err("cs==NULL in %s", __func__);
503 504 505
		return;
	}

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

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

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

515
	if (!cs->connected) {
516
		gig_dbg(DEBUG_ANY, "can't communicate with unplugged device");
517 518 519 520 521 522 523
		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?
524 525
	gig_dbg(DEBUG_IF, "%u: iflag %x cflag %x old %x",
		cs->minor_index, iflag, cflag, old_cflag);
526 527 528 529 530 531 532 533 534 535 536

	/* 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.
	 */

537
	/* reassert DTR and (maybe) RTS on transition from B0 */
538 539 540 541 542
	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;
543 544 545
		gig_dbg(DEBUG_IF, "%u: from B0 - set DTR%s",
			cs->minor_index,
			(new_state & TIOCM_RTS) ? " only" : "/RTS");
546 547 548 549 550 551 552 553
		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 */
554
		gig_dbg(DEBUG_IF, "%u: to B0 - drop DTR/RTS", cs->minor_index);
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
		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 */
574 575
	gig_dbg(DEBUG_IF, "%u: control_state %x",
		cs->minor_index, control_state);
576 577 578 579 580 581
	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) {
582 583
		gig_dbg(DEBUG_IF, "%u: new_state %x",
			cs->minor_index, new_state);
584
		gigaset_set_modem_ctrl(cs, control_state, new_state);
585 586 587 588 589 590 591 592
		control_state = new_state;
	}
#endif

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

out:
593
	mutex_unlock(&cs->mutex);
594 595 596 597 598 599 600 601
}


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

J
Jiri Slaby 已提交
602 603
	if (cs->tty)
		tty_wakeup(cs->tty);
604 605 606 607 608 609 610 611 612 613 614 615 616
}

/*** 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);
617 618

	mutex_lock(&cs->mutex);
619
	cs->tty_dev = tty_register_device(drv->tty, cs->minor_index, NULL);
620

621 622
	if (!IS_ERR(cs->tty_dev))
		dev_set_drvdata(cs->tty_dev, cs);
623 624
	else {
		warn("could not register device to the tty subsystem");
625
		cs->tty_dev = NULL;
626
	}
627
	mutex_unlock(&cs->mutex);
628 629 630 631 632 633 634 635 636 637 638 639
}

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);
640
	cs->tty_dev = NULL;
641 642 643 644
	tty_unregister_device(drv->tty, cs->minor_index);
}

void gigaset_if_receive(struct cardstate *cs,
645
			unsigned char *buffer, size_t len)
646 647 648 649 650 651
{
	unsigned long flags;
	struct tty_struct *tty;

	spin_lock_irqsave(&cs->lock, flags);
	if ((tty = cs->tty) == NULL)
652
		gig_dbg(DEBUG_ANY, "receive on closed device");
653 654 655 656 657 658 659 660 661 662 663 664
	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:
665 666 667
 *	drv		Driver
 *	procname	Name of the driver (e.g. for /proc/tty/drivers)
 *	devname		Name of the device files (prefix without minor number)
668 669
 */
void gigaset_if_initdriver(struct gigaset_driver *drv, const char *procname,
670
			   const char *devname)
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
{
	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,
686
	tty->flags =		TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703

	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;
	}
704
	gig_dbg(DEBUG_IF, "tty driver initialized");
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
	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);
}