riotty.c 20.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
/*
** -----------------------------------------------------------------------------
**
**  Perle Specialix driver for Linux
**  Ported from existing RIO Driver for SCO sources.
 *
 *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
 *
 *      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.
 *
 *      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.
 *
 *      You should have received a copy of the GNU General Public License
 *      along with this program; if not, write to the Free Software
 *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**
**	Module		: riotty.c
**	SID		: 1.3
**	Last Modified	: 11/6/98 10:33:47
**	Retrieved	: 11/6/98 10:33:50
**
**  ident @(#)riotty.c	1.3
**
** -----------------------------------------------------------------------------
*/
#ifdef SCCS_LABELS
static char *_riotty_c_sccs_ = "@(#)riotty.c	1.3";
#endif


#define __EXPLICIT_DEF_H__

#include <linux/module.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <linux/tty.h>
#include <linux/string.h>
#include <asm/io.h>
#include <asm/system.h>
#include <asm/string.h>
#include <asm/semaphore.h>
#include <asm/uaccess.h>

#include <linux/termios.h>

#include <linux/serial.h>

#include <linux/generic_serial.h>


#include "linux_compat.h"
#include "rio_linux.h"
#include "typdef.h"
#include "pkt.h"
#include "daemon.h"
#include "rio.h"
#include "riospace.h"
#include "top.h"
#include "cmdpkt.h"
#include "map.h"
#include "riotypes.h"
#include "rup.h"
#include "port.h"
#include "riodrvr.h"
#include "rioinfo.h"
#include "func.h"
#include "errors.h"
#include "pci.h"

#include "parmmap.h"
#include "unixrup.h"
#include "board.h"
#include "host.h"
#include "error.h"
#include "phb.h"
#include "link.h"
#include "cmdblk.h"
#include "route.h"
#include "control.h"
#include "cirrus.h"
#include "rioioctl.h"
#include "param.h"
#include "list.h"
#include "sam.h"

static void RIOClearUp(struct Port *PortP);
A
Andrew Morton 已提交
93
int RIOShortCommand(struct rio_info *p, struct Port *PortP, int command, int len, int arg);
L
Linus Torvalds 已提交
94 95


A
Andrew Morton 已提交
96 97 98
extern int conv_vb[];		/* now defined in ttymgr.c */
extern int conv_bv[];		/* now defined in ttymgr.c */

L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106 107 108 109 110
/*
** 16.09.1998 ARG - Fix to build riotty.k.o for Modular Kernel Support
**
** ep.def.h is necessary for Modular Kernel Support
** DO NOT place any kernel 'extern's after this line
** or this source file will not build riotty.k.o
*/
#ifdef uLYNX
#include <ep.def.h>
#endif

#ifdef NEED_THIS2
A
Andrew Morton 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
static struct old_sgttyb default_sg = {
	B19200, B19200,		/* input and output speed */
	'H' - '@',		/* erase char */
	-1,			/* 2nd erase char */
	'U' - '@',		/* kill char */
	ECHO | CRMOD,		/* mode */
	'C' - '@',		/* interrupt character */
	'\\' - '@',		/* quit char */
	'Q' - '@',		/* start char */
	'S' - '@',		/* stop char */
	'D' - '@',		/* EOF */
	-1,			/* brk */
	(LCRTBS | LCRTERA | LCRTKIL | LCTLECH),	/* local mode word */
	'Z' - '@',		/* process stop */
	'Y' - '@',		/* delayed stop */
	'R' - '@',		/* reprint line */
	'O' - '@',		/* flush output */
	'W' - '@',		/* word erase */
	'V' - '@'		/* literal next char */
L
Linus Torvalds 已提交
130 131 132 133 134 135 136
};
#endif


extern struct rio_info *p;


A
Andrew Morton 已提交
137
int riotopen(struct tty_struct *tty, struct file *filp)
L
Linus Torvalds 已提交
138
{
139
	unsigned int SysPort;
L
Linus Torvalds 已提交
140 141
	int Modem;
	int repeat_this = 250;
A
Andrew Morton 已提交
142
	struct Port *PortP;	/* pointer to the port structure */
L
Linus Torvalds 已提交
143 144 145
	unsigned long flags;
	int retval = 0;

A
Andrew Morton 已提交
146
	func_enter();
L
Linus Torvalds 已提交
147 148 149

	/* Make sure driver_data is NULL in case the rio isn't booted jet. Else gs_close
	   is going to oops.
A
Andrew Morton 已提交
150
	 */
L
Linus Torvalds 已提交
151
	tty->driver_data = NULL;
A
Andrew Morton 已提交
152

L
Linus Torvalds 已提交
153
	SysPort = rio_minor(tty);
A
Andrew Morton 已提交
154
	Modem = rio_ismodem(tty);
L
Linus Torvalds 已提交
155

A
Andrew Morton 已提交
156 157 158
	if (p->RIOFailed) {
		rio_dprintk(RIO_DEBUG_TTY, "System initialisation failed\n");
		func_exit();
L
Linus Torvalds 已提交
159 160 161
		return -ENXIO;
	}

A
Andrew Morton 已提交
162
	rio_dprintk(RIO_DEBUG_TTY, "port open SysPort %d (%s) (mapped:%d)\n", SysPort, Modem ? "Modem" : "tty", p->RIOPortp[SysPort]->Mapped);
L
Linus Torvalds 已提交
163 164

	/*
A
Andrew Morton 已提交
165 166 167 168 169
	 ** Validate that we have received a legitimate request.
	 ** Currently, just check that we are opening a port on
	 ** a host card that actually exists, and that the port
	 ** has been mapped onto a host.
	 */
L
Linus Torvalds 已提交
170
	if (SysPort >= RIO_PORTS) {	/* out of range ? */
A
Andrew Morton 已提交
171
		rio_dprintk(RIO_DEBUG_TTY, "Illegal port number %d\n", SysPort);
L
Linus Torvalds 已提交
172 173 174 175 176
		func_exit();
		return -ENXIO;
	}

	/*
A
Andrew Morton 已提交
177 178
	 ** Grab pointer to the port stucture
	 */
L
Linus Torvalds 已提交
179
	PortP = p->RIOPortp[SysPort];	/* Get control struc */
A
Andrew Morton 已提交
180 181
	rio_dprintk(RIO_DEBUG_TTY, "PortP: %p\n", PortP);
	if (!PortP->Mapped) {	/* we aren't mapped yet! */
L
Linus Torvalds 已提交
182
		/*
A
Andrew Morton 已提交
183 184 185 186 187
		 ** The system doesn't know which RTA this port
		 ** corresponds to.
		 */
		rio_dprintk(RIO_DEBUG_TTY, "port not mapped into system\n");
		func_exit();
L
Linus Torvalds 已提交
188 189 190 191 192 193 194 195
		return -ENXIO;
	}

	tty->driver_data = PortP;

	PortP->gs.tty = tty;
	PortP->gs.count++;

A
Andrew Morton 已提交
196
	rio_dprintk(RIO_DEBUG_TTY, "%d bytes in tx buffer\n", PortP->gs.xmit_cnt);
L
Linus Torvalds 已提交
197

A
Andrew Morton 已提交
198
	retval = gs_init_port(&PortP->gs);
L
Linus Torvalds 已提交
199 200 201 202 203
	if (retval) {
		PortP->gs.count--;
		return -ENXIO;
	}
	/*
A
Andrew Morton 已提交
204 205 206 207 208 209
	 ** If the host hasn't been booted yet, then
	 ** fail
	 */
	if ((PortP->HostP->Flags & RUN_STATE) != RC_RUNNING) {
		rio_dprintk(RIO_DEBUG_TTY, "Host not running\n");
		func_exit();
L
Linus Torvalds 已提交
210 211 212 213
		return -ENXIO;
	}

	/*
A
Andrew Morton 已提交
214 215 216 217
	 ** If the RTA has not booted yet and the user has choosen to block
	 ** until the RTA is present then we must spin here waiting for
	 ** the RTA to boot.
	 */
L
Linus Torvalds 已提交
218
	/* I find the above code a bit hairy. I find the below code
A
Andrew Morton 已提交
219
	   easier to read and shorter. Now, if it works too that would
L
Linus Torvalds 已提交
220
	   be great... -- REW 
A
Andrew Morton 已提交
221 222
	 */
	rio_dprintk(RIO_DEBUG_TTY, "Checking if RTA has booted... \n");
L
Linus Torvalds 已提交
223
	while (!(PortP->HostP->Mapping[PortP->RupNum].Flags & RTA_BOOTED)) {
A
Andrew Morton 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
		if (!PortP->WaitUntilBooted) {
			rio_dprintk(RIO_DEBUG_TTY, "RTA never booted\n");
			func_exit();
			return -ENXIO;
		}

		/* Under Linux you'd normally use a wait instead of this
		   busy-waiting. I'll stick with the old implementation for
		   now. --REW
		 */
		if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL) {
			rio_dprintk(RIO_DEBUG_TTY, "RTA_wait_for_boot: EINTR in delay \n");
			func_exit();
			return -EINTR;
		}
		if (repeat_this-- <= 0) {
			rio_dprintk(RIO_DEBUG_TTY, "Waiting for RTA to boot timeout\n");
			func_exit();
			return -EIO;
		}
L
Linus Torvalds 已提交
244
	}
A
Andrew Morton 已提交
245
	rio_dprintk(RIO_DEBUG_TTY, "RTA has been booted\n");
L
Linus Torvalds 已提交
246
	rio_spin_lock_irqsave(&PortP->portSem, flags);
A
Andrew Morton 已提交
247
	if (p->RIOHalted) {
L
Linus Torvalds 已提交
248 249 250 251
		goto bombout;
	}

	/*
A
Andrew Morton 已提交
252 253 254 255 256 257 258 259 260
	 ** If the port is in the final throws of being closed,
	 ** we should wait here (politely), waiting
	 ** for it to finish, so that it doesn't close us!
	 */
	while ((PortP->State & RIO_CLOSING) && !p->RIOHalted) {
		rio_dprintk(RIO_DEBUG_TTY, "Waiting for RIO_CLOSING to go away\n");
		if (repeat_this-- <= 0) {
			rio_dprintk(RIO_DEBUG_TTY, "Waiting for not idle closed broken by signal\n");
			RIOPreemptiveCmd(p, PortP, FCLOSE);
L
Linus Torvalds 已提交
261 262 263 264 265
			retval = -EINTR;
			goto bombout;
		}
		rio_spin_unlock_irqrestore(&PortP->portSem, flags);
		if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL) {
A
Andrew Morton 已提交
266
			rio_spin_lock_irqsave(&PortP->portSem, flags);
L
Linus Torvalds 已提交
267 268 269
			retval = -EINTR;
			goto bombout;
		}
A
Andrew Morton 已提交
270
		rio_spin_lock_irqsave(&PortP->portSem, flags);
L
Linus Torvalds 已提交
271 272
	}

A
Andrew Morton 已提交
273 274
	if (!PortP->Mapped) {
		rio_dprintk(RIO_DEBUG_TTY, "Port unmapped while closing!\n");
L
Linus Torvalds 已提交
275 276
		rio_spin_unlock_irqrestore(&PortP->portSem, flags);
		retval = -ENXIO;
A
Andrew Morton 已提交
277
		func_exit();
L
Linus Torvalds 已提交
278 279 280
		return retval;
	}

A
Andrew Morton 已提交
281
	if (p->RIOHalted) {
L
Linus Torvalds 已提交
282 283 284 285 286 287 288 289 290 291
		goto bombout;
	}

/*
** 15.10.1998 ARG - ESIL 0761 part fix
** RIO has it's own CTSFLOW and RTSFLOW flags in 'Config' in the port structure,
** we need to make sure that the flags are clear when the port is opened.
*/
	/* Uh? Suppose I turn these on and then another process opens
	   the port again? The flags get cleared! Not good. -- REW */
A
Andrew Morton 已提交
292 293
	if (!(PortP->State & (RIO_LOPEN | RIO_MOPEN))) {
		PortP->Config &= ~(RIO_CTSFLOW | RIO_RTSFLOW);
L
Linus Torvalds 已提交
294 295 296
	}

	if (!(PortP->firstOpen)) {	/* First time ? */
A
Andrew Morton 已提交
297 298
		rio_dprintk(RIO_DEBUG_TTY, "First open for this port\n");

L
Linus Torvalds 已提交
299 300

		PortP->firstOpen++;
A
Andrew Morton 已提交
301
		PortP->CookMode = 0;	/* XXX RIOCookMode(tp); */
L
Linus Torvalds 已提交
302 303 304 305 306 307 308
		PortP->InUse = NOT_INUSE;

		/* Tentative fix for bug PR27. Didn't work. */
		/* PortP->gs.xmit_cnt = 0; */

		rio_spin_unlock_irqrestore(&PortP->portSem, flags);
#ifdef NEED_THIS
A
Andrew Morton 已提交
309
		ttyseth(PortP, tp, (struct old_sgttyb *) &default_sg);
L
Linus Torvalds 已提交
310 311 312
#endif

		/* Someone explain to me why this delay/config is
A
Andrew Morton 已提交
313 314
		   here. If I read the docs correctly the "open"
		   command piggybacks the parameters immediately.
L
Linus Torvalds 已提交
315
		   -- REW */
A
Andrew Morton 已提交
316
		RIOParam(PortP, OPEN, Modem, OK_TO_SLEEP);	/* Open the port */
L
Linus Torvalds 已提交
317 318 319
		rio_spin_lock_irqsave(&PortP->portSem, flags);

		/*
A
Andrew Morton 已提交
320 321 322 323
		 ** wait for the port to be not closed.
		 */
		while (!(PortP->PortState & PORT_ISOPEN) && !p->RIOHalted) {
			rio_dprintk(RIO_DEBUG_TTY, "Waiting for PORT_ISOPEN-currently %x\n", PortP->PortState);
L
Linus Torvalds 已提交
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
/*
** 15.10.1998 ARG - ESIL 0759
** (Part) fix for port being trashed when opened whilst RTA "disconnected"
** Take out the limited wait - now wait for ever or until user
** bangs us out.
**
			if (repeat_this -- <= 0) {
				rio_dprint(RIO_DEBUG_TTY, ("Waiting for open to finish timed out.\n"));
				RIOPreemptiveCmd(p, PortP, FCLOSE ); 
				rio_spin_unlock_irqrestore(&PortP->portSem, flags);
				return -EINTR;
			}
**
*/
			rio_spin_unlock_irqrestore(&PortP->portSem, flags);
			if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL) {
A
Andrew Morton 已提交
340 341 342
				rio_dprintk(RIO_DEBUG_TTY, "Waiting for open to finish broken by signal\n");
				RIOPreemptiveCmd(p, PortP, FCLOSE);
				func_exit();
L
Linus Torvalds 已提交
343 344 345 346 347
				return -EINTR;
			}
			rio_spin_lock_irqsave(&PortP->portSem, flags);
		}

A
Andrew Morton 已提交
348 349 350 351
		if (p->RIOHalted) {
			retval = -EIO;
		      bombout:
			/*                    RIOClearUp( PortP ); */
L
Linus Torvalds 已提交
352 353 354
			rio_spin_unlock_irqrestore(&PortP->portSem, flags);
			return retval;
		}
A
Andrew Morton 已提交
355
		rio_dprintk(RIO_DEBUG_TTY, "PORT_ISOPEN found\n");
L
Linus Torvalds 已提交
356
	}
A
Andrew Morton 已提交
357
#ifdef MODEM_SUPPORT
L
Linus Torvalds 已提交
358
	if (Modem) {
A
Andrew Morton 已提交
359
		rio_dprintk(RIO_DEBUG_TTY, "Modem - test for carrier\n");
L
Linus Torvalds 已提交
360
		/*
A
Andrew Morton 已提交
361 362 363 364 365 366
		 ** ACTION
		 ** insert test for carrier here. -- ???
		 ** I already see that test here. What's the deal? -- REW
		 */
		if ((PortP->gs.tty->termios->c_cflag & CLOCAL) || (PortP->ModemState & MSVR1_CD)) {
			rio_dprintk(RIO_DEBUG_TTY, "open(%d) Modem carr on\n", SysPort);
L
Linus Torvalds 已提交
367
			/*
A
Andrew Morton 已提交
368 369 370
			   tp->tm.c_state |= CARR_ON;
			   wakeup((caddr_t) &tp->tm.c_canq);
			 */
L
Linus Torvalds 已提交
371
			PortP->State |= RIO_CARR_ON;
A
Andrew Morton 已提交
372 373 374 375 376 377 378 379 380 381
			wake_up_interruptible(&PortP->gs.open_wait);
		} else {	/* no carrier - wait for DCD */

			/*
			   while (!(PortP->gs.tty->termios->c_state & CARR_ON) &&
			   !(filp->f_flags & O_NONBLOCK) && !p->RIOHalted )
			 */
			while (!(PortP->State & RIO_CARR_ON) && !(filp->f_flags & O_NONBLOCK) && !p->RIOHalted) {

				rio_dprintk(RIO_DEBUG_TTY, "open(%d) sleeping for carr on\n", SysPort);
L
Linus Torvalds 已提交
382
				/*
A
Andrew Morton 已提交
383 384
				   PortP->gs.tty->termios->c_state |= WOPEN;
				 */
L
Linus Torvalds 已提交
385 386
				PortP->State |= RIO_WOPEN;
				rio_spin_unlock_irqrestore(&PortP->portSem, flags);
A
Andrew Morton 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
				if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL)
					{
						/*
						 ** ACTION: verify that this is a good thing
						 ** to do here. -- ???
						 ** I think it's OK. -- REW
						 */
						rio_dprintk(RIO_DEBUG_TTY, "open(%d) sleeping for carr broken by signal\n", SysPort);
						RIOPreemptiveCmd(p, PortP, FCLOSE);
						/*
						   tp->tm.c_state &= ~WOPEN;
						 */
						PortP->State &= ~RIO_WOPEN;
						rio_spin_unlock_irqrestore(&PortP->portSem, flags);
						func_exit();
						return -EINTR;
					}
L
Linus Torvalds 已提交
404 405 406
			}
			PortP->State &= ~RIO_WOPEN;
		}
A
Andrew Morton 已提交
407
		if (p->RIOHalted)
L
Linus Torvalds 已提交
408
			goto bombout;
A
Andrew Morton 已提交
409
		rio_dprintk(RIO_DEBUG_TTY, "Setting RIO_MOPEN\n");
L
Linus Torvalds 已提交
410
		PortP->State |= RIO_MOPEN;
A
Andrew Morton 已提交
411
	} else
L
Linus Torvalds 已提交
412 413 414
#endif
	{
		/*
A
Andrew Morton 已提交
415 416 417 418
		 ** ACTION
		 ** Direct line open - force carrier (will probably mean
		 ** that sleeping Modem line fubar)
		 */
L
Linus Torvalds 已提交
419 420 421
		PortP->State |= RIO_LOPEN;
	}

A
Andrew Morton 已提交
422
	if (p->RIOHalted) {
L
Linus Torvalds 已提交
423 424 425
		goto bombout;
	}

A
Andrew Morton 已提交
426
	rio_dprintk(RIO_DEBUG_TTY, "high level open done\n");
L
Linus Torvalds 已提交
427 428

	/*
A
Andrew Morton 已提交
429 430
	 ** Count opens for port statistics reporting
	 */
L
Linus Torvalds 已提交
431 432 433 434
	if (PortP->statsGather)
		PortP->opens++;

	rio_spin_unlock_irqrestore(&PortP->portSem, flags);
A
Andrew Morton 已提交
435 436
	rio_dprintk(RIO_DEBUG_TTY, "Returning from open\n");
	func_exit();
L
Linus Torvalds 已提交
437 438 439 440 441 442 443 444
	return 0;
}

/*
** RIOClose the port.
** The operating system thinks that this is last close for the device.
** As there are two interfaces to the port (Modem and tty), we need to
** check that both are closed before we close the device.
A
Andrew Morton 已提交
445 446
*/
int riotclose(void *ptr)
L
Linus Torvalds 已提交
447
{
448
	struct Port *PortP = ptr;	/* pointer to the port structure */
L
Linus Torvalds 已提交
449
	int deleted = 0;
A
Andrew Morton 已提交
450 451 452
	int try = -1;		/* Disable the timeouts by setting them to -1 */
	int repeat_this = -1;	/* Congrats to those having 15 years of
				   uptime! (You get to break the driver.) */
453
	unsigned long end_time;
A
Andrew Morton 已提交
454
	struct tty_struct *tty;
L
Linus Torvalds 已提交
455 456
	unsigned long flags;
	int Modem;
457
	int rv = 0;
A
Andrew Morton 已提交
458 459

	rio_dprintk(RIO_DEBUG_TTY, "port close SysPort %d\n", PortP->PortNum);
L
Linus Torvalds 已提交
460 461

	/* PortP = p->RIOPortp[SysPort]; */
462
	rio_dprintk(RIO_DEBUG_TTY, "Port is at address 0x%p\n", PortP);
A
Andrew Morton 已提交
463
	/* tp = PortP->TtyP; *//* Get tty */
L
Linus Torvalds 已提交
464
	tty = PortP->gs.tty;
465
	rio_dprintk(RIO_DEBUG_TTY, "TTY is at address 0x%p\n", tty);
L
Linus Torvalds 已提交
466

A
Andrew Morton 已提交
467
	if (PortP->gs.closing_wait)
L
Linus Torvalds 已提交
468
		end_time = jiffies + PortP->gs.closing_wait;
A
Andrew Morton 已提交
469
	else
L
Linus Torvalds 已提交
470 471 472 473 474 475
		end_time = jiffies + MAX_SCHEDULE_TIMEOUT;

	Modem = rio_ismodem(tty);
	rio_spin_lock_irqsave(&PortP->portSem, flags);

	/*
A
Andrew Morton 已提交
476 477 478
	 ** Setting this flag will make any process trying to open
	 ** this port block until we are complete closing it.
	 */
L
Linus Torvalds 已提交
479 480
	PortP->State |= RIO_CLOSING;

A
Andrew Morton 已提交
481 482
	if ((PortP->State & RIO_DELETED)) {
		rio_dprintk(RIO_DEBUG_TTY, "Close on deleted RTA\n");
L
Linus Torvalds 已提交
483 484
		deleted = 1;
	}
A
Andrew Morton 已提交
485 486 487

	if (p->RIOHalted) {
		RIOClearUp(PortP);
L
Linus Torvalds 已提交
488 489 490 491
		rv = -EIO;
		goto close_end;
	}

A
Andrew Morton 已提交
492
	rio_dprintk(RIO_DEBUG_TTY, "Clear bits\n");
L
Linus Torvalds 已提交
493
	/*
A
Andrew Morton 已提交
494 495
	 ** clear the open bits for this device
	 */
L
Linus Torvalds 已提交
496 497 498 499
	PortP->State &= (Modem ? ~RIO_MOPEN : ~RIO_LOPEN);
	PortP->State &= ~RIO_CARR_ON;
	PortP->ModemState &= ~MSVR1_CD;
	/*
A
Andrew Morton 已提交
500 501 502 503 504 505 506
	 ** If the device was open as both a Modem and a tty line
	 ** then we need to wimp out here, as the port has not really
	 ** been finally closed (gee, whizz!) The test here uses the
	 ** bit for the OTHER mode of operation, to see if THAT is
	 ** still active!
	 */
	if ((PortP->State & (RIO_LOPEN | RIO_MOPEN))) {
L
Linus Torvalds 已提交
507
		/*
A
Andrew Morton 已提交
508 509 510 511
		 ** The port is still open for the other task -
		 ** return, pretending that we are still active.
		 */
		rio_dprintk(RIO_DEBUG_TTY, "Channel %d still open !\n", PortP->PortNum);
L
Linus Torvalds 已提交
512 513 514 515 516 517 518
		PortP->State &= ~RIO_CLOSING;
		if (PortP->firstOpen)
			PortP->firstOpen--;
		rio_spin_unlock_irqrestore(&PortP->portSem, flags);
		return -EIO;
	}

A
Andrew Morton 已提交
519
	rio_dprintk(RIO_DEBUG_TTY, "Closing down - everything must go!\n");
L
Linus Torvalds 已提交
520 521 522 523

	PortP->State &= ~RIO_DYNOROD;

	/*
A
Andrew Morton 已提交
524 525 526 527 528
	 ** This is where we wait for the port
	 ** to drain down before closing. Bye-bye....
	 ** (We never meant to do this)
	 */
	rio_dprintk(RIO_DEBUG_TTY, "Timeout 1 starts\n");
L
Linus Torvalds 已提交
529 530

	if (!deleted)
A
Andrew Morton 已提交
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
		while ((PortP->InUse != NOT_INUSE) && !p->RIOHalted && (PortP->TxBufferIn != PortP->TxBufferOut)) {
			if (repeat_this-- <= 0) {
				rv = -EINTR;
				rio_dprintk(RIO_DEBUG_TTY, "Waiting for not idle closed broken by signal\n");
				RIOPreemptiveCmd(p, PortP, FCLOSE);
				goto close_end;
			}
			rio_dprintk(RIO_DEBUG_TTY, "Calling timeout to flush in closing\n");
			rio_spin_unlock_irqrestore(&PortP->portSem, flags);
			if (RIODelay_ni(PortP, HUNDRED_MS * 10) == RIO_FAIL) {
				rio_dprintk(RIO_DEBUG_TTY, "RTA EINTR in delay \n");
				rv = -EINTR;
				rio_spin_lock_irqsave(&PortP->portSem, flags);
				goto close_end;
			}
L
Linus Torvalds 已提交
546 547 548 549 550 551 552
			rio_spin_lock_irqsave(&PortP->portSem, flags);
		}

	PortP->TxBufferIn = PortP->TxBufferOut = 0;
	repeat_this = 0xff;

	PortP->InUse = 0;
A
Andrew Morton 已提交
553
	if ((PortP->State & (RIO_LOPEN | RIO_MOPEN))) {
L
Linus Torvalds 已提交
554
		/*
A
Andrew Morton 已提交
555 556 557 558
		 ** The port has been re-opened for the other task -
		 ** return, pretending that we are still active.
		 */
		rio_dprintk(RIO_DEBUG_TTY, "Channel %d re-open!\n", PortP->PortNum);
L
Linus Torvalds 已提交
559 560 561 562 563 564 565
		PortP->State &= ~RIO_CLOSING;
		rio_spin_unlock_irqrestore(&PortP->portSem, flags);
		if (PortP->firstOpen)
			PortP->firstOpen--;
		return -EIO;
	}

A
Andrew Morton 已提交
566 567
	if (p->RIOHalted) {
		RIOClearUp(PortP);
L
Linus Torvalds 已提交
568 569 570 571 572 573 574
		goto close_end;
	}

	/* Can't call RIOShortCommand with the port locked. */
	rio_spin_unlock_irqrestore(&PortP->portSem, flags);

	if (RIOShortCommand(p, PortP, CLOSE, 1, 0) == RIO_FAIL) {
575 576
		RIOPreemptiveCmd(p, PortP, FCLOSE);
		goto close_end;
L
Linus Torvalds 已提交
577 578 579
	}

	if (!deleted)
A
Andrew Morton 已提交
580 581 582 583 584 585 586 587
		while (try && (PortP->PortState & PORT_ISOPEN)) {
			try--;
			if (time_after(jiffies, end_time)) {
				rio_dprintk(RIO_DEBUG_TTY, "Run out of tries - force the bugger shut!\n");
				RIOPreemptiveCmd(p, PortP, FCLOSE);
				break;
			}
			rio_dprintk(RIO_DEBUG_TTY, "Close: PortState:ISOPEN is %d\n", PortP->PortState & PORT_ISOPEN);
L
Linus Torvalds 已提交
588

A
Andrew Morton 已提交
589 590 591 592 593 594 595 596 597
			if (p->RIOHalted) {
				RIOClearUp(PortP);
				goto close_end;
			}
			if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL) {
				rio_dprintk(RIO_DEBUG_TTY, "RTA EINTR in delay \n");
				RIOPreemptiveCmd(p, PortP, FCLOSE);
				break;
			}
L
Linus Torvalds 已提交
598 599
		}
	rio_spin_lock_irqsave(&PortP->portSem, flags);
A
Andrew Morton 已提交
600 601
	rio_dprintk(RIO_DEBUG_TTY, "Close: try was %d on completion\n", try);

L
Linus Torvalds 已提交
602 603 604 605 606 607
	/* RIOPreemptiveCmd(p, PortP, FCLOSE); */

/*
** 15.10.1998 ARG - ESIL 0761 part fix
** RIO has it's own CTSFLOW and RTSFLOW flags in 'Config' in the port structure,** we need to make sure that the flags are clear when the port is opened.
*/
A
Andrew Morton 已提交
608
	PortP->Config &= ~(RIO_CTSFLOW | RIO_RTSFLOW);
L
Linus Torvalds 已提交
609 610

	/*
A
Andrew Morton 已提交
611 612
	 ** Count opens for port statistics reporting
	 */
L
Linus Torvalds 已提交
613 614 615
	if (PortP->statsGather)
		PortP->closes++;

A
Andrew Morton 已提交
616
      close_end:
L
Linus Torvalds 已提交
617 618 619 620
	/* XXX: Why would a "DELETED" flag be reset here? I'd have
	   thought that a "deleted" flag means that the port was
	   permanently gone, but here we can make it reappear by it
	   being in close during the "deletion".
A
Andrew Morton 已提交
621 622
	 */
	PortP->State &= ~(RIO_CLOSING | RIO_DELETED);
L
Linus Torvalds 已提交
623 624 625
	if (PortP->firstOpen)
		PortP->firstOpen--;
	rio_spin_unlock_irqrestore(&PortP->portSem, flags);
A
Andrew Morton 已提交
626
	rio_dprintk(RIO_DEBUG_TTY, "Return from close\n");
L
Linus Torvalds 已提交
627 628 629 630 631
	return rv;
}



A
Andrew Morton 已提交
632
static void RIOClearUp(PortP)
L
Linus Torvalds 已提交
633 634
struct Port *PortP;
{
A
Andrew Morton 已提交
635 636
	rio_dprintk(RIO_DEBUG_TTY, "RIOHalted set\n");
	PortP->Config = 0;	/* Direct semaphore */
L
Linus Torvalds 已提交
637 638 639 640 641 642
	PortP->PortState = 0;
	PortP->firstOpen = 0;
	PortP->FlushCmdBodge = 0;
	PortP->ModemState = PortP->CookMode = 0;
	PortP->Mapped = 0;
	PortP->WflushFlag = 0;
A
Andrew Morton 已提交
643
	PortP->MagicFlags = 0;
L
Linus Torvalds 已提交
644 645 646 647 648 649 650 651 652 653 654 655 656 657
	PortP->RxDataStart = 0;
	PortP->TxBufferIn = 0;
	PortP->TxBufferOut = 0;
}

/*
** Put a command onto a port.
** The PortPointer, command, length and arg are passed.
** The len is the length *inclusive* of the command byte,
** and so for a command that takes no data, len==1.
** The arg is a single byte, and is only used if len==2.
** Other values of len aren't allowed, and will cause
** a panic.
*/
A
Andrew Morton 已提交
658
int RIOShortCommand(struct rio_info *p, struct Port *PortP, int command, int len, int arg)
L
Linus Torvalds 已提交
659 660
{
	PKT *PacketP;
A
Andrew Morton 已提交
661
	int retries = 20;	/* at 10 per second -> 2 seconds */
L
Linus Torvalds 已提交
662 663
	unsigned long flags;

A
Andrew Morton 已提交
664
	rio_dprintk(RIO_DEBUG_TTY, "entering shortcommand.\n");
L
Linus Torvalds 已提交
665

A
Andrew Morton 已提交
666 667
	if (PortP->State & RIO_DELETED) {
		rio_dprintk(RIO_DEBUG_TTY, "Short command to deleted RTA ignored\n");
L
Linus Torvalds 已提交
668 669 670 671 672
		return RIO_FAIL;
	}
	rio_spin_lock_irqsave(&PortP->portSem, flags);

	/*
A
Andrew Morton 已提交
673 674 675 676 677
	 ** If the port is in use for pre-emptive command, then wait for it to
	 ** be free again.
	 */
	while ((PortP->InUse != NOT_INUSE) && !p->RIOHalted) {
		rio_dprintk(RIO_DEBUG_TTY, "Waiting for not in use (%d)\n", retries);
L
Linus Torvalds 已提交
678 679 680 681 682 683 684 685 686
		rio_spin_unlock_irqrestore(&PortP->portSem, flags);
		if (retries-- <= 0) {
			return RIO_FAIL;
		}
		if (RIODelay_ni(PortP, HUNDRED_MS) == RIO_FAIL) {
			return RIO_FAIL;
		}
		rio_spin_lock_irqsave(&PortP->portSem, flags);
	}
A
Andrew Morton 已提交
687 688
	if (PortP->State & RIO_DELETED) {
		rio_dprintk(RIO_DEBUG_TTY, "Short command to deleted RTA ignored\n");
L
Linus Torvalds 已提交
689 690 691 692
		rio_spin_unlock_irqrestore(&PortP->portSem, flags);
		return RIO_FAIL;
	}

A
Andrew Morton 已提交
693 694
	while (!can_add_transmit(&PacketP, PortP) && !p->RIOHalted) {
		rio_dprintk(RIO_DEBUG_TTY, "Waiting to add short command to queue (%d)\n", retries);
L
Linus Torvalds 已提交
695 696
		rio_spin_unlock_irqrestore(&PortP->portSem, flags);
		if (retries-- <= 0) {
A
Andrew Morton 已提交
697
			rio_dprintk(RIO_DEBUG_TTY, "out of tries. Failing\n");
L
Linus Torvalds 已提交
698 699
			return RIO_FAIL;
		}
A
Andrew Morton 已提交
700
		if (RIODelay_ni(PortP, HUNDRED_MS) == RIO_FAIL) {
L
Linus Torvalds 已提交
701 702 703 704 705
			return RIO_FAIL;
		}
		rio_spin_lock_irqsave(&PortP->portSem, flags);
	}

A
Andrew Morton 已提交
706
	if (p->RIOHalted) {
L
Linus Torvalds 已提交
707 708 709 710 711
		rio_spin_unlock_irqrestore(&PortP->portSem, flags);
		return RIO_FAIL;
	}

	/*
A
Andrew Morton 已提交
712 713
	 ** set the command byte and the argument byte
	 */
714
	writeb(command, &PacketP->data[0]);
L
Linus Torvalds 已提交
715

A
Andrew Morton 已提交
716
	if (len == 2)
717
		writeb(arg, &PacketP->data[1]);
L
Linus Torvalds 已提交
718 719

	/*
A
Andrew Morton 已提交
720 721
	 ** set the length of the packet and set the command bit.
	 */
722
	writeb(PKT_CMD_BIT | len, &PacketP->len);
L
Linus Torvalds 已提交
723 724 725

	add_transmit(PortP);
	/*
A
Andrew Morton 已提交
726 727
	 ** Count characters transmitted for port statistics reporting
	 */
L
Linus Torvalds 已提交
728 729 730 731 732 733 734 735
	if (PortP->statsGather)
		PortP->txchars += len;

	rio_spin_unlock_irqrestore(&PortP->portSem, flags);
	return p->RIOHalted ? RIO_FAIL : ~RIO_FAIL;
}