| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 | ** ----------------------------------------------------------------------------- | 
 | 3 | ** | 
 | 4 | **  Perle Specialix driver for Linux | 
 | 5 | **  Ported from existing RIO Driver for SCO sources. | 
 | 6 |  * | 
 | 7 |  *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK. | 
 | 8 |  * | 
 | 9 |  *      This program is free software; you can redistribute it and/or modify | 
 | 10 |  *      it under the terms of the GNU General Public License as published by | 
 | 11 |  *      the Free Software Foundation; either version 2 of the License, or | 
 | 12 |  *      (at your option) any later version. | 
 | 13 |  * | 
 | 14 |  *      This program is distributed in the hope that it will be useful, | 
 | 15 |  *      but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 16 |  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 17 |  *      GNU General Public License for more details. | 
 | 18 |  * | 
 | 19 |  *      You should have received a copy of the GNU General Public License | 
 | 20 |  *      along with this program; if not, write to the Free Software | 
 | 21 |  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 
 | 22 | ** | 
 | 23 | **	Module		: riotty.c | 
 | 24 | **	SID		: 1.3 | 
 | 25 | **	Last Modified	: 11/6/98 10:33:47 | 
 | 26 | **	Retrieved	: 11/6/98 10:33:50 | 
 | 27 | ** | 
 | 28 | **  ident @(#)riotty.c	1.3 | 
 | 29 | ** | 
 | 30 | ** ----------------------------------------------------------------------------- | 
 | 31 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 |  | 
 | 33 | #define __EXPLICIT_DEF_H__ | 
 | 34 |  | 
 | 35 | #include <linux/module.h> | 
 | 36 | #include <linux/slab.h> | 
 | 37 | #include <linux/errno.h> | 
 | 38 | #include <linux/tty.h> | 
 | 39 | #include <linux/string.h> | 
 | 40 | #include <asm/io.h> | 
 | 41 | #include <asm/system.h> | 
 | 42 | #include <asm/string.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/uaccess.h> | 
 | 44 |  | 
 | 45 | #include <linux/termios.h> | 
 | 46 |  | 
 | 47 | #include <linux/serial.h> | 
 | 48 |  | 
 | 49 | #include <linux/generic_serial.h> | 
 | 50 |  | 
 | 51 |  | 
 | 52 | #include "linux_compat.h" | 
 | 53 | #include "rio_linux.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include "pkt.h" | 
 | 55 | #include "daemon.h" | 
 | 56 | #include "rio.h" | 
 | 57 | #include "riospace.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include "cmdpkt.h" | 
 | 59 | #include "map.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include "rup.h" | 
 | 61 | #include "port.h" | 
 | 62 | #include "riodrvr.h" | 
 | 63 | #include "rioinfo.h" | 
 | 64 | #include "func.h" | 
 | 65 | #include "errors.h" | 
 | 66 | #include "pci.h" | 
 | 67 |  | 
 | 68 | #include "parmmap.h" | 
 | 69 | #include "unixrup.h" | 
 | 70 | #include "board.h" | 
 | 71 | #include "host.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #include "phb.h" | 
 | 73 | #include "link.h" | 
 | 74 | #include "cmdblk.h" | 
 | 75 | #include "route.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #include "cirrus.h" | 
 | 77 | #include "rioioctl.h" | 
 | 78 | #include "param.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | static void RIOClearUp(struct Port *PortP); | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 81 |  | 
 | 82 | /* Below belongs in func.h */ | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 83 | int RIOShortCommand(struct rio_info *p, struct Port *PortP, int command, int len, int arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | extern struct rio_info *p; | 
 | 87 |  | 
 | 88 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 89 | int riotopen(struct tty_struct *tty, struct file *filp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { | 
| Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 91 | 	unsigned int SysPort; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | 	int repeat_this = 250; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 93 | 	struct Port *PortP;	/* pointer to the port structure */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | 	unsigned long flags; | 
 | 95 | 	int retval = 0; | 
 | 96 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 97 | 	func_enter(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 |  | 
 | 99 | 	/* Make sure driver_data is NULL in case the rio isn't booted jet. Else gs_close | 
 | 100 | 	   is going to oops. | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 101 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | 	tty->driver_data = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 104 | 	SysPort = rio_minor(tty); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 105 |  | 
 | 106 | 	if (p->RIOFailed) { | 
 | 107 | 		rio_dprintk(RIO_DEBUG_TTY, "System initialisation failed\n"); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 108 | 		func_exit(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | 		return -ENXIO; | 
 | 110 | 	} | 
 | 111 |  | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 112 | 	rio_dprintk(RIO_DEBUG_TTY, "port open SysPort %d (mapped:%d)\n", SysPort, p->RIOPortp[SysPort]->Mapped); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 |  | 
 | 114 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 115 | 	 ** Validate that we have received a legitimate request. | 
 | 116 | 	 ** Currently, just check that we are opening a port on | 
 | 117 | 	 ** a host card that actually exists, and that the port | 
 | 118 | 	 ** has been mapped onto a host. | 
 | 119 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | 	if (SysPort >= RIO_PORTS) {	/* out of range ? */ | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 121 | 		rio_dprintk(RIO_DEBUG_TTY, "Illegal port number %d\n", SysPort); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | 		func_exit(); | 
 | 123 | 		return -ENXIO; | 
 | 124 | 	} | 
 | 125 |  | 
 | 126 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 127 | 	 ** Grab pointer to the port stucture | 
 | 128 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | 	PortP = p->RIOPortp[SysPort];	/* Get control struc */ | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 130 | 	rio_dprintk(RIO_DEBUG_TTY, "PortP: %p\n", PortP); | 
 | 131 | 	if (!PortP->Mapped) {	/* we aren't mapped yet! */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | 		/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 133 | 		 ** The system doesn't know which RTA this port | 
 | 134 | 		 ** corresponds to. | 
 | 135 | 		 */ | 
 | 136 | 		rio_dprintk(RIO_DEBUG_TTY, "port not mapped into system\n"); | 
 | 137 | 		func_exit(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | 		return -ENXIO; | 
 | 139 | 	} | 
 | 140 |  | 
 | 141 | 	tty->driver_data = PortP; | 
 | 142 |  | 
| Alan Cox | b5391e2 | 2008-07-16 21:55:20 +0100 | [diff] [blame] | 143 | 	PortP->gs.port.tty = tty; | 
 | 144 | 	PortP->gs.port.count++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 146 | 	rio_dprintk(RIO_DEBUG_TTY, "%d bytes in tx buffer\n", PortP->gs.xmit_cnt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 148 | 	retval = gs_init_port(&PortP->gs); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | 	if (retval) { | 
| Alan Cox | b5391e2 | 2008-07-16 21:55:20 +0100 | [diff] [blame] | 150 | 		PortP->gs.port.count--; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | 		return -ENXIO; | 
 | 152 | 	} | 
 | 153 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 154 | 	 ** If the host hasn't been booted yet, then | 
 | 155 | 	 ** fail | 
 | 156 | 	 */ | 
 | 157 | 	if ((PortP->HostP->Flags & RUN_STATE) != RC_RUNNING) { | 
 | 158 | 		rio_dprintk(RIO_DEBUG_TTY, "Host not running\n"); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 159 | 		func_exit(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | 		return -ENXIO; | 
 | 161 | 	} | 
 | 162 |  | 
 | 163 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 164 | 	 ** If the RTA has not booted yet and the user has choosen to block | 
 | 165 | 	 ** until the RTA is present then we must spin here waiting for | 
 | 166 | 	 ** the RTA to boot. | 
 | 167 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | 	/* I find the above code a bit hairy. I find the below code | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 169 | 	   easier to read and shorter. Now, if it works too that would | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | 	   be great... -- REW  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 171 | 	 */ | 
 | 172 | 	rio_dprintk(RIO_DEBUG_TTY, "Checking if RTA has booted... \n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | 	while (!(PortP->HostP->Mapping[PortP->RupNum].Flags & RTA_BOOTED)) { | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 174 | 		if (!PortP->WaitUntilBooted) { | 
 | 175 | 			rio_dprintk(RIO_DEBUG_TTY, "RTA never booted\n"); | 
 | 176 | 			func_exit(); | 
 | 177 | 			return -ENXIO; | 
 | 178 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 180 | 		/* Under Linux you'd normally use a wait instead of this | 
 | 181 | 		   busy-waiting. I'll stick with the old implementation for | 
 | 182 | 		   now. --REW | 
 | 183 | 		 */ | 
 | 184 | 		if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL) { | 
 | 185 | 			rio_dprintk(RIO_DEBUG_TTY, "RTA_wait_for_boot: EINTR in delay \n"); | 
 | 186 | 			func_exit(); | 
 | 187 | 			return -EINTR; | 
 | 188 | 		} | 
 | 189 | 		if (repeat_this-- <= 0) { | 
 | 190 | 			rio_dprintk(RIO_DEBUG_TTY, "Waiting for RTA to boot timeout\n"); | 
 | 191 | 			func_exit(); | 
 | 192 | 			return -EIO; | 
 | 193 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | 	} | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 195 | 	rio_dprintk(RIO_DEBUG_TTY, "RTA has been booted\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | 	rio_spin_lock_irqsave(&PortP->portSem, flags); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 197 | 	if (p->RIOHalted) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | 		goto bombout; | 
 | 199 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 |  | 
 | 201 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 202 | 	 ** If the port is in the final throws of being closed, | 
 | 203 | 	 ** we should wait here (politely), waiting | 
 | 204 | 	 ** for it to finish, so that it doesn't close us! | 
 | 205 | 	 */ | 
 | 206 | 	while ((PortP->State & RIO_CLOSING) && !p->RIOHalted) { | 
 | 207 | 		rio_dprintk(RIO_DEBUG_TTY, "Waiting for RIO_CLOSING to go away\n"); | 
 | 208 | 		if (repeat_this-- <= 0) { | 
 | 209 | 			rio_dprintk(RIO_DEBUG_TTY, "Waiting for not idle closed broken by signal\n"); | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 210 | 			RIOPreemptiveCmd(p, PortP, RIOC_FCLOSE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | 			retval = -EINTR; | 
 | 212 | 			goto bombout; | 
 | 213 | 		} | 
 | 214 | 		rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 215 | 		if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL) { | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 216 | 			rio_spin_lock_irqsave(&PortP->portSem, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | 			retval = -EINTR; | 
 | 218 | 			goto bombout; | 
 | 219 | 		} | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 220 | 		rio_spin_lock_irqsave(&PortP->portSem, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | 	} | 
 | 222 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 223 | 	if (!PortP->Mapped) { | 
 | 224 | 		rio_dprintk(RIO_DEBUG_TTY, "Port unmapped while closing!\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | 		rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 226 | 		retval = -ENXIO; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 227 | 		func_exit(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | 		return retval; | 
 | 229 | 	} | 
 | 230 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 231 | 	if (p->RIOHalted) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | 		goto bombout; | 
 | 233 | 	} | 
 | 234 |  | 
 | 235 | /* | 
 | 236 | ** 15.10.1998 ARG - ESIL 0761 part fix | 
 | 237 | ** RIO has it's own CTSFLOW and RTSFLOW flags in 'Config' in the port structure, | 
 | 238 | ** we need to make sure that the flags are clear when the port is opened. | 
 | 239 | */ | 
 | 240 | 	/* Uh? Suppose I turn these on and then another process opens | 
 | 241 | 	   the port again? The flags get cleared! Not good. -- REW */ | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 242 | 	if (!(PortP->State & (RIO_LOPEN | RIO_MOPEN))) { | 
 | 243 | 		PortP->Config &= ~(RIO_CTSFLOW | RIO_RTSFLOW); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | 	} | 
 | 245 |  | 
 | 246 | 	if (!(PortP->firstOpen)) {	/* First time ? */ | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 247 | 		rio_dprintk(RIO_DEBUG_TTY, "First open for this port\n"); | 
 | 248 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 |  | 
 | 250 | 		PortP->firstOpen++; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 251 | 		PortP->CookMode = 0;	/* XXX RIOCookMode(tp); */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | 		PortP->InUse = NOT_INUSE; | 
 | 253 |  | 
 | 254 | 		/* Tentative fix for bug PR27. Didn't work. */ | 
 | 255 | 		/* PortP->gs.xmit_cnt = 0; */ | 
 | 256 |  | 
 | 257 | 		rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 |  | 
 | 259 | 		/* Someone explain to me why this delay/config is | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 260 | 		   here. If I read the docs correctly the "open" | 
 | 261 | 		   command piggybacks the parameters immediately. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | 		   -- REW */ | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 263 | 		RIOParam(PortP, RIOC_OPEN, 1, OK_TO_SLEEP); /* Open the port */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | 		rio_spin_lock_irqsave(&PortP->portSem, flags); | 
 | 265 |  | 
 | 266 | 		/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 267 | 		 ** wait for the port to be not closed. | 
 | 268 | 		 */ | 
 | 269 | 		while (!(PortP->PortState & PORT_ISOPEN) && !p->RIOHalted) { | 
 | 270 | 			rio_dprintk(RIO_DEBUG_TTY, "Waiting for PORT_ISOPEN-currently %x\n", PortP->PortState); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | 			rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 272 | 			if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL) { | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 273 | 				rio_dprintk(RIO_DEBUG_TTY, "Waiting for open to finish broken by signal\n"); | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 274 | 				RIOPreemptiveCmd(p, PortP, RIOC_FCLOSE); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 275 | 				func_exit(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | 				return -EINTR; | 
 | 277 | 			} | 
 | 278 | 			rio_spin_lock_irqsave(&PortP->portSem, flags); | 
 | 279 | 		} | 
 | 280 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 281 | 		if (p->RIOHalted) { | 
 | 282 | 			retval = -EIO; | 
 | 283 | 		      bombout: | 
 | 284 | 			/*                    RIOClearUp( PortP ); */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | 			rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 286 | 			return retval; | 
 | 287 | 		} | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 288 | 		rio_dprintk(RIO_DEBUG_TTY, "PORT_ISOPEN found\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | 	} | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 290 | 	rio_dprintk(RIO_DEBUG_TTY, "Modem - test for carrier\n"); | 
 | 291 | 	/* | 
 | 292 | 	 ** ACTION | 
 | 293 | 	 ** insert test for carrier here. -- ??? | 
 | 294 | 	 ** I already see that test here. What's the deal? -- REW | 
 | 295 | 	 */ | 
| Alan Cox | b5391e2 | 2008-07-16 21:55:20 +0100 | [diff] [blame] | 296 | 	if ((PortP->gs.port.tty->termios->c_cflag & CLOCAL) || | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 297 | 			(PortP->ModemState & RIOC_MSVR1_CD)) { | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 298 | 		rio_dprintk(RIO_DEBUG_TTY, "open(%d) Modem carr on\n", SysPort); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | 		/* | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 300 | 		   tp->tm.c_state |= CARR_ON; | 
 | 301 | 		   wakeup((caddr_t) &tp->tm.c_canq); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 302 | 		 */ | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 303 | 		PortP->State |= RIO_CARR_ON; | 
| Alan Cox | b5391e2 | 2008-07-16 21:55:20 +0100 | [diff] [blame] | 304 | 		wake_up_interruptible(&PortP->gs.port.open_wait); | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 305 | 	} else {	/* no carrier - wait for DCD */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | 			/* | 
| Alan Cox | b5391e2 | 2008-07-16 21:55:20 +0100 | [diff] [blame] | 307 | 		   while (!(PortP->gs.port.tty->termios->c_state & CARR_ON) && | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 308 | 		   !(filp->f_flags & O_NONBLOCK) && !p->RIOHalted ) | 
 | 309 | 		 */ | 
 | 310 | 		while (!(PortP->State & RIO_CARR_ON) && !(filp->f_flags & O_NONBLOCK) && !p->RIOHalted) { | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 311 | 				rio_dprintk(RIO_DEBUG_TTY, "open(%d) sleeping for carr on\n", SysPort); | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 312 | 			/* | 
| Alan Cox | b5391e2 | 2008-07-16 21:55:20 +0100 | [diff] [blame] | 313 | 			   PortP->gs.port.tty->termios->c_state |= WOPEN; | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 314 | 			 */ | 
 | 315 | 			PortP->State |= RIO_WOPEN; | 
 | 316 | 			rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 317 | 			if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL) { | 
| Jiri Slaby | 212e7bb | 2008-04-02 13:04:48 -0700 | [diff] [blame] | 318 | 				rio_spin_lock_irqsave(&PortP->portSem, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | 				/* | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 320 | 				 ** ACTION: verify that this is a good thing | 
 | 321 | 				 ** to do here. -- ??? | 
 | 322 | 				 ** I think it's OK. -- REW | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 323 | 				 */ | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 324 | 				rio_dprintk(RIO_DEBUG_TTY, "open(%d) sleeping for carr broken by signal\n", SysPort); | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 325 | 				RIOPreemptiveCmd(p, PortP, RIOC_FCLOSE); | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 326 | 				/* | 
 | 327 | 				   tp->tm.c_state &= ~WOPEN; | 
 | 328 | 				 */ | 
 | 329 | 				PortP->State &= ~RIO_WOPEN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | 				rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 331 | 				func_exit(); | 
 | 332 | 				return -EINTR; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | 			} | 
| Jiri Slaby | 212e7bb | 2008-04-02 13:04:48 -0700 | [diff] [blame] | 334 | 			rio_spin_lock_irqsave(&PortP->portSem, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | 		} | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 336 | 		PortP->State &= ~RIO_WOPEN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | 	} | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 338 | 	if (p->RIOHalted) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | 		goto bombout; | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 340 | 	rio_dprintk(RIO_DEBUG_TTY, "Setting RIO_MOPEN\n"); | 
 | 341 | 	PortP->State |= RIO_MOPEN; | 
 | 342 |  | 
 | 343 | 	if (p->RIOHalted) | 
 | 344 | 		goto bombout; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 346 | 	rio_dprintk(RIO_DEBUG_TTY, "high level open done\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 349 | 	 ** Count opens for port statistics reporting | 
 | 350 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | 	if (PortP->statsGather) | 
 | 352 | 		PortP->opens++; | 
 | 353 |  | 
 | 354 | 	rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 355 | 	rio_dprintk(RIO_DEBUG_TTY, "Returning from open\n"); | 
 | 356 | 	func_exit(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | 	return 0; | 
 | 358 | } | 
 | 359 |  | 
 | 360 | /* | 
 | 361 | ** RIOClose the port. | 
 | 362 | ** The operating system thinks that this is last close for the device. | 
 | 363 | ** As there are two interfaces to the port (Modem and tty), we need to | 
 | 364 | ** check that both are closed before we close the device. | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 365 | */ | 
 | 366 | int riotclose(void *ptr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | { | 
| M.Baris Demiray | d2a457c | 2005-06-25 14:58:40 -0700 | [diff] [blame] | 368 | 	struct Port *PortP = ptr;	/* pointer to the port structure */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | 	int deleted = 0; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 370 | 	int try = -1;		/* Disable the timeouts by setting them to -1 */ | 
 | 371 | 	int repeat_this = -1;	/* Congrats to those having 15 years of | 
 | 372 | 				   uptime! (You get to break the driver.) */ | 
| M.Baris Demiray | d2a457c | 2005-06-25 14:58:40 -0700 | [diff] [blame] | 373 | 	unsigned long end_time; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 374 | 	struct tty_struct *tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | 	unsigned long flags; | 
| M.Baris Demiray | d2a457c | 2005-06-25 14:58:40 -0700 | [diff] [blame] | 376 | 	int rv = 0; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 377 |  | 
 | 378 | 	rio_dprintk(RIO_DEBUG_TTY, "port close SysPort %d\n", PortP->PortNum); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 |  | 
 | 380 | 	/* PortP = p->RIOPortp[SysPort]; */ | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 381 | 	rio_dprintk(RIO_DEBUG_TTY, "Port is at address %p\n", PortP); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 382 | 	/* tp = PortP->TtyP; *//* Get tty */ | 
| Alan Cox | b5391e2 | 2008-07-16 21:55:20 +0100 | [diff] [blame] | 383 | 	tty = PortP->gs.port.tty; | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 384 | 	rio_dprintk(RIO_DEBUG_TTY, "TTY is at address %p\n", tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 386 | 	if (PortP->gs.closing_wait) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | 		end_time = jiffies + PortP->gs.closing_wait; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 388 | 	else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | 		end_time = jiffies + MAX_SCHEDULE_TIMEOUT; | 
 | 390 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | 	rio_spin_lock_irqsave(&PortP->portSem, flags); | 
 | 392 |  | 
 | 393 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 394 | 	 ** Setting this flag will make any process trying to open | 
 | 395 | 	 ** this port block until we are complete closing it. | 
 | 396 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | 	PortP->State |= RIO_CLOSING; | 
 | 398 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 399 | 	if ((PortP->State & RIO_DELETED)) { | 
 | 400 | 		rio_dprintk(RIO_DEBUG_TTY, "Close on deleted RTA\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | 		deleted = 1; | 
 | 402 | 	} | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 403 |  | 
 | 404 | 	if (p->RIOHalted) { | 
 | 405 | 		RIOClearUp(PortP); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | 		rv = -EIO; | 
 | 407 | 		goto close_end; | 
 | 408 | 	} | 
 | 409 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 410 | 	rio_dprintk(RIO_DEBUG_TTY, "Clear bits\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 412 | 	 ** clear the open bits for this device | 
 | 413 | 	 */ | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 414 | 	PortP->State &= ~RIO_MOPEN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | 	PortP->State &= ~RIO_CARR_ON; | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 416 | 	PortP->ModemState &= ~RIOC_MSVR1_CD; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 418 | 	 ** If the device was open as both a Modem and a tty line | 
 | 419 | 	 ** then we need to wimp out here, as the port has not really | 
 | 420 | 	 ** been finally closed (gee, whizz!) The test here uses the | 
 | 421 | 	 ** bit for the OTHER mode of operation, to see if THAT is | 
 | 422 | 	 ** still active! | 
 | 423 | 	 */ | 
 | 424 | 	if ((PortP->State & (RIO_LOPEN | RIO_MOPEN))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | 		/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 426 | 		 ** The port is still open for the other task - | 
 | 427 | 		 ** return, pretending that we are still active. | 
 | 428 | 		 */ | 
 | 429 | 		rio_dprintk(RIO_DEBUG_TTY, "Channel %d still open !\n", PortP->PortNum); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | 		PortP->State &= ~RIO_CLOSING; | 
 | 431 | 		if (PortP->firstOpen) | 
 | 432 | 			PortP->firstOpen--; | 
 | 433 | 		rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 434 | 		return -EIO; | 
 | 435 | 	} | 
 | 436 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 437 | 	rio_dprintk(RIO_DEBUG_TTY, "Closing down - everything must go!\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 |  | 
 | 439 | 	PortP->State &= ~RIO_DYNOROD; | 
 | 440 |  | 
 | 441 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 442 | 	 ** This is where we wait for the port | 
 | 443 | 	 ** to drain down before closing. Bye-bye.... | 
 | 444 | 	 ** (We never meant to do this) | 
 | 445 | 	 */ | 
 | 446 | 	rio_dprintk(RIO_DEBUG_TTY, "Timeout 1 starts\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 |  | 
 | 448 | 	if (!deleted) | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 449 | 		while ((PortP->InUse != NOT_INUSE) && !p->RIOHalted && (PortP->TxBufferIn != PortP->TxBufferOut)) { | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 450 | 			if (repeat_this-- <= 0) { | 
 | 451 | 				rv = -EINTR; | 
 | 452 | 				rio_dprintk(RIO_DEBUG_TTY, "Waiting for not idle closed broken by signal\n"); | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 453 | 				RIOPreemptiveCmd(p, PortP, RIOC_FCLOSE); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 454 | 				goto close_end; | 
 | 455 | 			} | 
 | 456 | 			rio_dprintk(RIO_DEBUG_TTY, "Calling timeout to flush in closing\n"); | 
 | 457 | 			rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 458 | 			if (RIODelay_ni(PortP, HUNDRED_MS * 10) == RIO_FAIL) { | 
 | 459 | 				rio_dprintk(RIO_DEBUG_TTY, "RTA EINTR in delay \n"); | 
 | 460 | 				rv = -EINTR; | 
 | 461 | 				rio_spin_lock_irqsave(&PortP->portSem, flags); | 
 | 462 | 				goto close_end; | 
 | 463 | 			} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | 			rio_spin_lock_irqsave(&PortP->portSem, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 |  | 
 | 467 | 	PortP->TxBufferIn = PortP->TxBufferOut = 0; | 
 | 468 | 	repeat_this = 0xff; | 
 | 469 |  | 
 | 470 | 	PortP->InUse = 0; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 471 | 	if ((PortP->State & (RIO_LOPEN | RIO_MOPEN))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | 		/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 473 | 		 ** The port has been re-opened for the other task - | 
 | 474 | 		 ** return, pretending that we are still active. | 
 | 475 | 		 */ | 
 | 476 | 		rio_dprintk(RIO_DEBUG_TTY, "Channel %d re-open!\n", PortP->PortNum); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | 		PortP->State &= ~RIO_CLOSING; | 
 | 478 | 		rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 479 | 		if (PortP->firstOpen) | 
 | 480 | 			PortP->firstOpen--; | 
 | 481 | 		return -EIO; | 
 | 482 | 	} | 
 | 483 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 484 | 	if (p->RIOHalted) { | 
 | 485 | 		RIOClearUp(PortP); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | 		goto close_end; | 
 | 487 | 	} | 
 | 488 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | 	/* Can't call RIOShortCommand with the port locked. */ | 
 | 490 | 	rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 491 |  | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 492 | 	if (RIOShortCommand(p, PortP, RIOC_CLOSE, 1, 0) == RIO_FAIL) { | 
 | 493 | 		RIOPreemptiveCmd(p, PortP, RIOC_FCLOSE); | 
| Jiri Slaby | 212e7bb | 2008-04-02 13:04:48 -0700 | [diff] [blame] | 494 | 		rio_spin_lock_irqsave(&PortP->portSem, flags); | 
| M.Baris Demiray | d2a457c | 2005-06-25 14:58:40 -0700 | [diff] [blame] | 495 | 		goto close_end; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | 	} | 
 | 497 |  | 
 | 498 | 	if (!deleted) | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 499 | 		while (try && (PortP->PortState & PORT_ISOPEN)) { | 
 | 500 | 			try--; | 
 | 501 | 			if (time_after(jiffies, end_time)) { | 
 | 502 | 				rio_dprintk(RIO_DEBUG_TTY, "Run out of tries - force the bugger shut!\n"); | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 503 | 				RIOPreemptiveCmd(p, PortP, RIOC_FCLOSE); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 504 | 				break; | 
 | 505 | 			} | 
 | 506 | 			rio_dprintk(RIO_DEBUG_TTY, "Close: PortState:ISOPEN is %d\n", PortP->PortState & PORT_ISOPEN); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 508 | 			if (p->RIOHalted) { | 
 | 509 | 				RIOClearUp(PortP); | 
| Jiri Slaby | 212e7bb | 2008-04-02 13:04:48 -0700 | [diff] [blame] | 510 | 				rio_spin_lock_irqsave(&PortP->portSem, flags); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 511 | 				goto close_end; | 
 | 512 | 			} | 
 | 513 | 			if (RIODelay(PortP, HUNDRED_MS) == RIO_FAIL) { | 
 | 514 | 				rio_dprintk(RIO_DEBUG_TTY, "RTA EINTR in delay \n"); | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 515 | 				RIOPreemptiveCmd(p, PortP, RIOC_FCLOSE); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 516 | 				break; | 
 | 517 | 			} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | 	rio_spin_lock_irqsave(&PortP->portSem, flags); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 520 | 	rio_dprintk(RIO_DEBUG_TTY, "Close: try was %d on completion\n", try); | 
 | 521 |  | 
| Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 522 | 	/* RIOPreemptiveCmd(p, PortP, RIOC_FCLOSE); */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 |  | 
 | 524 | /* | 
 | 525 | ** 15.10.1998 ARG - ESIL 0761 part fix | 
 | 526 | ** 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. | 
 | 527 | */ | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 528 | 	PortP->Config &= ~(RIO_CTSFLOW | RIO_RTSFLOW); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 531 | 	 ** Count opens for port statistics reporting | 
 | 532 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | 	if (PortP->statsGather) | 
 | 534 | 		PortP->closes++; | 
 | 535 |  | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 536 | close_end: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | 	/* XXX: Why would a "DELETED" flag be reset here? I'd have | 
 | 538 | 	   thought that a "deleted" flag means that the port was | 
 | 539 | 	   permanently gone, but here we can make it reappear by it | 
 | 540 | 	   being in close during the "deletion". | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 541 | 	 */ | 
 | 542 | 	PortP->State &= ~(RIO_CLOSING | RIO_DELETED); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | 	if (PortP->firstOpen) | 
 | 544 | 		PortP->firstOpen--; | 
 | 545 | 	rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 546 | 	rio_dprintk(RIO_DEBUG_TTY, "Return from close\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | 	return rv; | 
 | 548 | } | 
 | 549 |  | 
 | 550 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 |  | 
| Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 552 | static void RIOClearUp(struct Port *PortP) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | { | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 554 | 	rio_dprintk(RIO_DEBUG_TTY, "RIOHalted set\n"); | 
 | 555 | 	PortP->Config = 0;	/* Direct semaphore */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | 	PortP->PortState = 0; | 
 | 557 | 	PortP->firstOpen = 0; | 
 | 558 | 	PortP->FlushCmdBodge = 0; | 
 | 559 | 	PortP->ModemState = PortP->CookMode = 0; | 
 | 560 | 	PortP->Mapped = 0; | 
 | 561 | 	PortP->WflushFlag = 0; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 562 | 	PortP->MagicFlags = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | 	PortP->RxDataStart = 0; | 
 | 564 | 	PortP->TxBufferIn = 0; | 
 | 565 | 	PortP->TxBufferOut = 0; | 
 | 566 | } | 
 | 567 |  | 
 | 568 | /* | 
 | 569 | ** Put a command onto a port. | 
 | 570 | ** The PortPointer, command, length and arg are passed. | 
 | 571 | ** The len is the length *inclusive* of the command byte, | 
 | 572 | ** and so for a command that takes no data, len==1. | 
 | 573 | ** The arg is a single byte, and is only used if len==2. | 
 | 574 | ** Other values of len aren't allowed, and will cause | 
 | 575 | ** a panic. | 
 | 576 | */ | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 577 | int RIOShortCommand(struct rio_info *p, struct Port *PortP, int command, int len, int arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | { | 
| Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 579 | 	struct PKT __iomem *PacketP; | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 580 | 	int retries = 20;	/* at 10 per second -> 2 seconds */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | 	unsigned long flags; | 
 | 582 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 583 | 	rio_dprintk(RIO_DEBUG_TTY, "entering shortcommand.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 585 | 	if (PortP->State & RIO_DELETED) { | 
 | 586 | 		rio_dprintk(RIO_DEBUG_TTY, "Short command to deleted RTA ignored\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | 		return RIO_FAIL; | 
 | 588 | 	} | 
 | 589 | 	rio_spin_lock_irqsave(&PortP->portSem, flags); | 
 | 590 |  | 
 | 591 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 592 | 	 ** If the port is in use for pre-emptive command, then wait for it to | 
 | 593 | 	 ** be free again. | 
 | 594 | 	 */ | 
 | 595 | 	while ((PortP->InUse != NOT_INUSE) && !p->RIOHalted) { | 
 | 596 | 		rio_dprintk(RIO_DEBUG_TTY, "Waiting for not in use (%d)\n", retries); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | 		rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 598 | 		if (retries-- <= 0) { | 
 | 599 | 			return RIO_FAIL; | 
 | 600 | 		} | 
 | 601 | 		if (RIODelay_ni(PortP, HUNDRED_MS) == RIO_FAIL) { | 
 | 602 | 			return RIO_FAIL; | 
 | 603 | 		} | 
 | 604 | 		rio_spin_lock_irqsave(&PortP->portSem, flags); | 
 | 605 | 	} | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 606 | 	if (PortP->State & RIO_DELETED) { | 
 | 607 | 		rio_dprintk(RIO_DEBUG_TTY, "Short command to deleted RTA ignored\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | 		rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 609 | 		return RIO_FAIL; | 
 | 610 | 	} | 
 | 611 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 612 | 	while (!can_add_transmit(&PacketP, PortP) && !p->RIOHalted) { | 
 | 613 | 		rio_dprintk(RIO_DEBUG_TTY, "Waiting to add short command to queue (%d)\n", retries); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | 		rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 615 | 		if (retries-- <= 0) { | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 616 | 			rio_dprintk(RIO_DEBUG_TTY, "out of tries. Failing\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | 			return RIO_FAIL; | 
 | 618 | 		} | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 619 | 		if (RIODelay_ni(PortP, HUNDRED_MS) == RIO_FAIL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | 			return RIO_FAIL; | 
 | 621 | 		} | 
 | 622 | 		rio_spin_lock_irqsave(&PortP->portSem, flags); | 
 | 623 | 	} | 
 | 624 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 625 | 	if (p->RIOHalted) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | 		rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 627 | 		return RIO_FAIL; | 
 | 628 | 	} | 
 | 629 |  | 
 | 630 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 631 | 	 ** set the command byte and the argument byte | 
 | 632 | 	 */ | 
| Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 633 | 	writeb(command, &PacketP->data[0]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 |  | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 635 | 	if (len == 2) | 
| Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 636 | 		writeb(arg, &PacketP->data[1]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 |  | 
 | 638 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 639 | 	 ** set the length of the packet and set the command bit. | 
 | 640 | 	 */ | 
| Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 641 | 	writeb(PKT_CMD_BIT | len, &PacketP->len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 |  | 
 | 643 | 	add_transmit(PortP); | 
 | 644 | 	/* | 
| Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 645 | 	 ** Count characters transmitted for port statistics reporting | 
 | 646 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | 	if (PortP->statsGather) | 
 | 648 | 		PortP->txchars += len; | 
 | 649 |  | 
 | 650 | 	rio_spin_unlock_irqrestore(&PortP->portSem, flags); | 
 | 651 | 	return p->RIOHalted ? RIO_FAIL : ~RIO_FAIL; | 
 | 652 | } | 
 | 653 |  | 
 | 654 |  |