ircomm_tty_ioctl.c 10.9 KB
Newer Older
L
Linus Torvalds 已提交
1
/*********************************************************************
2
 *
L
Linus Torvalds 已提交
3
 * Filename:      ircomm_tty_ioctl.c
4 5
 * Version:
 * Description:
L
Linus Torvalds 已提交
6 7 8 9 10
 * Status:        Experimental.
 * Author:        Dag Brattli <dagb@cs.uit.no>
 * Created at:    Thu Jun 10 14:39:09 1999
 * Modified at:   Wed Jan  5 14:45:43 2000
 * Modified by:   Dag Brattli <dagb@cs.uit.no>
11
 *
L
Linus Torvalds 已提交
12
 *     Copyright (c) 1999-2000 Dag Brattli, All Rights Reserved.
13 14 15 16
 *
 *     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
L
Linus Torvalds 已提交
17
 *     the License, or (at your option) any later version.
18
 *
L
Linus Torvalds 已提交
19 20 21 22
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *     GNU General Public License for more details.
23 24
 *
 *     You should have received a copy of the GNU General Public License
25
 *     along with this program; if not, see <http://www.gnu.org/licenses/>.
26
 *
L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
 ********************************************************************/

#include <linux/init.h>
#include <linux/fs.h>
#include <linux/termios.h>
#include <linux/tty.h>
#include <linux/serial.h>

#include <asm/uaccess.h>

#include <net/irda/irda.h>
#include <net/irda/irmod.h>

#include <net/irda/ircomm_core.h>
#include <net/irda/ircomm_param.h>
#include <net/irda/ircomm_tty_attach.h>
#include <net/irda/ircomm_tty.h>

#define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))

/*
 * Function ircomm_tty_change_speed (driver)
 *
 *    Change speed of the driver. If the remote device is a DCE, then this
 *    should make it change the speed of its serial port
 */
J
Jiri Slaby 已提交
53 54
static void ircomm_tty_change_speed(struct ircomm_tty_cb *self,
		struct tty_struct *tty)
L
Linus Torvalds 已提交
55
{
56
	unsigned int cflag, cval;
L
Linus Torvalds 已提交
57 58
	int baud;

J
Jiri Slaby 已提交
59
	if (!self->ircomm)
L
Linus Torvalds 已提交
60 61
		return;

62
	cflag = tty->termios.c_cflag;
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72 73

	/*  byte size and parity */
	switch (cflag & CSIZE) {
	case CS5: cval = IRCOMM_WSIZE_5; break;
	case CS6: cval = IRCOMM_WSIZE_6; break;
	case CS7: cval = IRCOMM_WSIZE_7; break;
	case CS8: cval = IRCOMM_WSIZE_8; break;
	default:  cval = IRCOMM_WSIZE_5; break;
	}
	if (cflag & CSTOPB)
		cval |= IRCOMM_2_STOP_BIT;
74

L
Linus Torvalds 已提交
75 76 77 78 79 80
	if (cflag & PARENB)
		cval |= IRCOMM_PARITY_ENABLE;
	if (!(cflag & PARODD))
		cval |= IRCOMM_PARITY_EVEN;

	/* Determine divisor based on baud rate */
J
Jiri Slaby 已提交
81
	baud = tty_get_baud_rate(tty);
L
Linus Torvalds 已提交
82 83 84 85 86
	if (!baud)
		baud = 9600;	/* B0 transition handled in rs_set_termios */

	self->settings.data_rate = baud;
	ircomm_param_request(self, IRCOMM_DATA_RATE, FALSE);
87

L
Linus Torvalds 已提交
88
	/* CTS flow control flag and modem status interrupts */
89
	tty_port_set_cts_flow(&self->port, cflag & CRTSCTS);
L
Linus Torvalds 已提交
90 91 92 93
	if (cflag & CRTSCTS) {
		self->settings.flow_control |= IRCOMM_RTS_CTS_IN;
		/* This got me. Bummer. Jean II */
		if (self->service_type == IRCOMM_3_WIRE_RAW)
94 95
			net_warn_ratelimited("%s(), enabling RTS/CTS on link that doesn't support it (3-wire-raw)\n",
					     __func__);
L
Linus Torvalds 已提交
96 97 98
	} else {
		self->settings.flow_control &= ~IRCOMM_RTS_CTS_IN;
	}
99
	tty_port_set_check_carrier(&self->port, ~cflag & CLOCAL);
100
#if 0
L
Linus Torvalds 已提交
101 102 103 104 105 106 107 108
	/*
	 * Set up parity check flag
	 */

	if (I_INPCK(self->tty))
		driver->read_status_mask |= LSR_FE | LSR_PE;
	if (I_BRKINT(driver->tty) || I_PARMRK(driver->tty))
		driver->read_status_mask |= LSR_BI;
109

L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118 119
	/*
	 * Characters to ignore
	 */
	driver->ignore_status_mask = 0;
	if (I_IGNPAR(driver->tty))
		driver->ignore_status_mask |= LSR_PE | LSR_FE;

	if (I_IGNBRK(self->tty)) {
		self->ignore_status_mask |= LSR_BI;
		/*
120
		 * If we're ignore parity and break indicators, ignore
L
Linus Torvalds 已提交
121 122
		 * overruns too. (For real raw support).
		 */
123
		if (I_IGNPAR(self->tty))
L
Linus Torvalds 已提交
124 125 126 127 128 129
			self->ignore_status_mask |= LSR_OE;
	}
#endif
	self->settings.data_format = cval;

	ircomm_param_request(self, IRCOMM_DATA_FORMAT, FALSE);
130
	ircomm_param_request(self, IRCOMM_FLOW_CONTROL, TRUE);
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140
}

/*
 * Function ircomm_tty_set_termios (tty, old_termios)
 *
 *    This routine allows the tty driver to be notified when device's
 *    termios settings have changed.  Note that a well-designed tty driver
 *    should be prepared to accept the case where old == NULL, and try to
 *    do something rational.
 */
141
void ircomm_tty_set_termios(struct tty_struct *tty,
142
			    struct ktermios *old_termios)
L
Linus Torvalds 已提交
143 144
{
	struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
145
	unsigned int cflag = tty->termios.c_cflag;
L
Linus Torvalds 已提交
146

147
	if ((cflag == old_termios->c_cflag) &&
148
	    (RELEVANT_IFLAG(tty->termios.c_iflag) ==
L
Linus Torvalds 已提交
149 150 151 152 153
	     RELEVANT_IFLAG(old_termios->c_iflag)))
	{
		return;
	}

J
Jiri Slaby 已提交
154
	ircomm_tty_change_speed(self, tty);
L
Linus Torvalds 已提交
155 156

	/* Handle transition to B0 status */
P
Peter Hurley 已提交
157
	if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD)) {
L
Linus Torvalds 已提交
158 159 160
		self->settings.dte &= ~(IRCOMM_DTR|IRCOMM_RTS);
		ircomm_param_request(self, IRCOMM_DTE, TRUE);
	}
161

L
Linus Torvalds 已提交
162
	/* Handle transition away from B0 status */
P
Peter Hurley 已提交
163
	if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
L
Linus Torvalds 已提交
164
		self->settings.dte |= IRCOMM_DTR;
165
		if (!C_CRTSCTS(tty) || !tty_throttled(tty))
L
Linus Torvalds 已提交
166 167 168
			self->settings.dte |= IRCOMM_RTS;
		ircomm_param_request(self, IRCOMM_DTE, TRUE);
	}
169

L
Linus Torvalds 已提交
170
	/* Handle turning off CRTSCTS */
P
Peter Hurley 已提交
171
	if ((old_termios->c_cflag & CRTSCTS) && !C_CRTSCTS(tty))
L
Linus Torvalds 已提交
172 173 174 175 176 177 178
	{
		tty->hw_stopped = 0;
		ircomm_tty_start(tty);
	}
}

/*
179
 * Function ircomm_tty_tiocmget (tty)
L
Linus Torvalds 已提交
180
 *
181
 *
L
Linus Torvalds 已提交
182 183
 *
 */
184
int ircomm_tty_tiocmget(struct tty_struct *tty)
L
Linus Torvalds 已提交
185 186 187 188
{
	struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
	unsigned int result;

189
	if (tty_io_error(tty))
L
Linus Torvalds 已提交
190 191 192 193 194 195 196 197 198 199 200 201
		return -EIO;

	result =  ((self->settings.dte & IRCOMM_RTS) ? TIOCM_RTS : 0)
		| ((self->settings.dte & IRCOMM_DTR) ? TIOCM_DTR : 0)
		| ((self->settings.dce & IRCOMM_CD)  ? TIOCM_CAR : 0)
		| ((self->settings.dce & IRCOMM_RI)  ? TIOCM_RNG : 0)
		| ((self->settings.dce & IRCOMM_DSR) ? TIOCM_DSR : 0)
		| ((self->settings.dce & IRCOMM_CTS) ? TIOCM_CTS : 0);
	return result;
}

/*
202
 * Function ircomm_tty_tiocmset (tty, set, clear)
L
Linus Torvalds 已提交
203
 *
204
 *
L
Linus Torvalds 已提交
205 206
 *
 */
207
int ircomm_tty_tiocmset(struct tty_struct *tty,
L
Linus Torvalds 已提交
208
			unsigned int set, unsigned int clear)
209
{
L
Linus Torvalds 已提交
210 211
	struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;

212
	if (tty_io_error(tty))
L
Linus Torvalds 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
		return -EIO;

	IRDA_ASSERT(self != NULL, return -1;);
	IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);

	if (set & TIOCM_RTS)
		self->settings.dte |= IRCOMM_RTS;
	if (set & TIOCM_DTR)
		self->settings.dte |= IRCOMM_DTR;

	if (clear & TIOCM_RTS)
		self->settings.dte &= ~IRCOMM_RTS;
	if (clear & TIOCM_DTR)
		self->settings.dte &= ~IRCOMM_DTR;

	if ((set|clear) & TIOCM_RTS)
		self->settings.dte |= IRCOMM_DELTA_RTS;
	if ((set|clear) & TIOCM_DTR)
		self->settings.dte |= IRCOMM_DELTA_DTR;

	ircomm_param_request(self, IRCOMM_DTE, TRUE);
234

L
Linus Torvalds 已提交
235 236 237 238 239 240
	return 0;
}

/*
 * Function get_serial_info (driver, retinfo)
 *
241
 *
L
Linus Torvalds 已提交
242 243 244 245 246 247
 *
 */
static int ircomm_tty_get_serial_info(struct ircomm_tty_cb *self,
				      struct serial_struct __user *retinfo)
{
	struct serial_struct info;
248

L
Linus Torvalds 已提交
249 250 251 252 253
	if (!retinfo)
		return -EFAULT;

	memset(&info, 0, sizeof(info));
	info.line = self->line;
254
	info.flags = self->port.flags;
L
Linus Torvalds 已提交
255
	info.baud_base = self->settings.data_rate;
256 257
	info.close_delay = self->port.close_delay;
	info.closing_wait = self->port.closing_wait;
L
Linus Torvalds 已提交
258 259

	/* For compatibility  */
260 261 262
	info.type = PORT_16550A;
	info.port = 0;
	info.irq = 0;
L
Linus Torvalds 已提交
263
	info.xmit_fifo_size = 0;
264
	info.hub6 = 0;
L
Linus Torvalds 已提交
265 266 267 268 269 270 271 272 273 274 275
	info.custom_divisor = 0;

	if (copy_to_user(retinfo, &info, sizeof(*retinfo)))
		return -EFAULT;

	return 0;
}

/*
 * Function set_serial_info (driver, new_info)
 *
276
 *
L
Linus Torvalds 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
 *
 */
static int ircomm_tty_set_serial_info(struct ircomm_tty_cb *self,
				      struct serial_struct __user *new_info)
{
#if 0
	struct serial_struct new_serial;
	struct ircomm_tty_cb old_state, *state;

	if (copy_from_user(&new_serial,new_info,sizeof(new_serial)))
		return -EFAULT;


	state = self
	old_state = *self;
292

L
Linus Torvalds 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
	if (!capable(CAP_SYS_ADMIN)) {
		if ((new_serial.baud_base != state->settings.data_rate) ||
		    (new_serial.close_delay != state->close_delay) ||
		    ((new_serial.flags & ~ASYNC_USR_MASK) !=
		     (self->flags & ~ASYNC_USR_MASK)))
			return -EPERM;
		state->flags = ((state->flags & ~ASYNC_USR_MASK) |
				 (new_serial.flags & ASYNC_USR_MASK));
		self->flags = ((self->flags & ~ASYNC_USR_MASK) |
			       (new_serial.flags & ASYNC_USR_MASK));
		/* self->custom_divisor = new_serial.custom_divisor; */
		goto check_and_exit;
	}

	/*
	 * OK, past this point, all the error checking has been done.
	 * At this point, we start making changes.....
	 */

	if (self->settings.data_rate != new_serial.baud_base) {
		self->settings.data_rate = new_serial.baud_base;
		ircomm_param_request(self, IRCOMM_DATA_RATE, TRUE);
	}

	self->close_delay = new_serial.close_delay * HZ/100;
	self->closing_wait = new_serial.closing_wait * HZ/100;
	/* self->custom_divisor = new_serial.custom_divisor; */

	self->flags = ((self->flags & ~ASYNC_FLAGS) |
		       (new_serial.flags & ASYNC_FLAGS));
	self->tty->low_latency = (self->flags & ASYNC_LOW_LATENCY) ? 1 : 0;

 check_and_exit:

	if (self->flags & ASYNC_INITIALIZED) {
		if (((old_state.flags & ASYNC_SPD_MASK) !=
		     (self->flags & ASYNC_SPD_MASK)) ||
		    (old_driver.custom_divisor != driver->custom_divisor)) {
			if ((driver->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
				driver->tty->alt_speed = 57600;
			if ((driver->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
				driver->tty->alt_speed = 115200;
			if ((driver->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
				driver->tty->alt_speed = 230400;
			if ((driver->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
				driver->tty->alt_speed = 460800;
			ircomm_tty_change_speed(driver);
		}
	}
#endif
	return 0;
}

/*
347
 * Function ircomm_tty_ioctl (tty, cmd, arg)
L
Linus Torvalds 已提交
348
 *
349
 *
L
Linus Torvalds 已提交
350 351
 *
 */
352
int ircomm_tty_ioctl(struct tty_struct *tty,
L
Linus Torvalds 已提交
353 354 355 356 357 358 359 360
		     unsigned int cmd, unsigned long arg)
{
	struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
	int ret = 0;

	if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
	    (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) &&
	    (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
361
		if (tty_io_error(tty))
L
Linus Torvalds 已提交
362 363 364 365 366 367 368 369 370 371 372
		    return -EIO;
	}

	switch (cmd) {
	case TIOCGSERIAL:
		ret = ircomm_tty_get_serial_info(self, (struct serial_struct __user *) arg);
		break;
	case TIOCSSERIAL:
		ret = ircomm_tty_set_serial_info(self, (struct serial_struct __user *) arg);
		break;
	case TIOCMIWAIT:
J
Joe Perches 已提交
373
		pr_debug("(), TIOCMIWAIT, not impl!\n");
L
Linus Torvalds 已提交
374 375 376
		break;

	case TIOCGICOUNT:
J
Joe Perches 已提交
377
		pr_debug("%s(), TIOCGICOUNT not impl!\n", __func__);
L
Linus Torvalds 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
#if 0
		save_flags(flags); cli();
		cnow = driver->icount;
		restore_flags(flags);
		p_cuser = (struct serial_icounter_struct __user *) arg;
		if (put_user(cnow.cts, &p_cuser->cts) ||
		    put_user(cnow.dsr, &p_cuser->dsr) ||
		    put_user(cnow.rng, &p_cuser->rng) ||
		    put_user(cnow.dcd, &p_cuser->dcd) ||
		    put_user(cnow.rx, &p_cuser->rx) ||
		    put_user(cnow.tx, &p_cuser->tx) ||
		    put_user(cnow.frame, &p_cuser->frame) ||
		    put_user(cnow.overrun, &p_cuser->overrun) ||
		    put_user(cnow.parity, &p_cuser->parity) ||
		    put_user(cnow.brk, &p_cuser->brk) ||
		    put_user(cnow.buf_overrun, &p_cuser->buf_overrun))
			return -EFAULT;
395
#endif
L
Linus Torvalds 已提交
396 397 398 399 400 401 402 403 404
		return 0;
	default:
		ret = -ENOIOCTLCMD;  /* ioctls which we must ignore */
	}
	return ret;
}