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 : rioparam.c |
| 24 | ** SID : 1.3 |
| 25 | ** Last Modified : 11/6/98 10:33:45 |
| 26 | ** Retrieved : 11/6/98 10:33:50 |
| 27 | ** |
| 28 | ** ident @(#)rioparam.c 1.3 |
| 29 | ** |
| 30 | ** ----------------------------------------------------------------------------- |
| 31 | */ |
| 32 | |
| 33 | #ifdef SCCS_LABELS |
| 34 | static char *_rioparam_c_sccs_ = "@(#)rioparam.c 1.3"; |
| 35 | #endif |
| 36 | |
| 37 | #include <linux/module.h> |
| 38 | #include <linux/slab.h> |
| 39 | #include <linux/errno.h> |
| 40 | #include <linux/tty.h> |
| 41 | #include <asm/io.h> |
| 42 | #include <asm/system.h> |
| 43 | #include <asm/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <asm/uaccess.h> |
| 45 | |
| 46 | #include <linux/termios.h> |
| 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 | |
| 80 | |
| 81 | |
| 82 | /* |
| 83 | ** The Scam, based on email from jeremyr@bugs.specialix.co.uk.... |
| 84 | ** |
| 85 | ** To send a command on a particular port, you put a packet with the |
| 86 | ** command bit set onto the port. The command bit is in the len field, |
| 87 | ** and gets ORed in with the actual byte count. |
| 88 | ** |
Matt LaPlante | 0779bf2 | 2006-11-30 05:24:39 +0100 | [diff] [blame] | 89 | ** When you send a packet with the command bit set the first |
| 90 | ** data byte (data[0]) is interpreted as the command to execute. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | ** It also governs what data structure overlay should accompany the packet. |
| 92 | ** Commands are defined in cirrus/cirrus.h |
| 93 | ** |
| 94 | ** If you want the command to pre-emt data already on the queue for the |
| 95 | ** port, set the pre-emptive bit in conjunction with the command bit. |
| 96 | ** It is not defined what will happen if you set the preemptive bit |
| 97 | ** on a packet that is NOT a command. |
| 98 | ** |
| 99 | ** Pre-emptive commands should be queued at the head of the queue using |
| 100 | ** add_start(), whereas normal commands and data are enqueued using |
| 101 | ** add_end(). |
| 102 | ** |
| 103 | ** Most commands do not use the remaining bytes in the data array. The |
| 104 | ** exceptions are OPEN MOPEN and CONFIG. (NB. As with the SI CONFIG and |
Matt LaPlante | 0779bf2 | 2006-11-30 05:24:39 +0100 | [diff] [blame] | 105 | ** OPEN are currently analogous). With these three commands the following |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | ** 11 data bytes are all used to pass config information such as baud rate etc. |
| 107 | ** The fields are also defined in cirrus.h. Some contain straightforward |
| 108 | ** information such as the transmit XON character. Two contain the transmit and |
| 109 | ** receive baud rates respectively. For most baud rates there is a direct |
| 110 | ** mapping between the rates defined in <sys/termio.h> and the byte in the |
| 111 | ** packet. There are additional (non UNIX-standard) rates defined in |
| 112 | ** /u/dos/rio/cirrus/h/brates.h. |
| 113 | ** |
| 114 | ** The rest of the data fields contain approximations to the Cirrus registers |
| 115 | ** that are used to program number of bits etc. Each registers bit fields is |
| 116 | ** defined in cirrus.h. |
| 117 | ** |
| 118 | ** NB. Only use those bits that are defined as being driver specific |
| 119 | ** or common to the RTA and the driver. |
| 120 | ** |
| 121 | ** All commands going from RTA->Host will be dealt with by the Host code - you |
| 122 | ** will never see them. As with the SI there will be three fields to look out |
| 123 | ** for in each phb (not yet defined - needs defining a.s.a.p). |
| 124 | ** |
| 125 | ** modem_status - current state of handshake pins. |
| 126 | ** |
| 127 | ** port_status - current port status - equivalent to hi_stat for SI, indicates |
| 128 | ** if port is IDLE_OPEN, IDLE_CLOSED etc. |
| 129 | ** |
| 130 | ** break_status - bit X set if break has been received. |
| 131 | ** |
| 132 | ** Happy hacking. |
| 133 | ** |
| 134 | */ |
| 135 | |
| 136 | /* |
| 137 | ** RIOParam is used to open or configure a port. You pass it a PortP, |
| 138 | ** which will have a tty struct attached to it. You also pass a command, |
| 139 | ** either OPEN or CONFIG. The port's setup is taken from the t_ fields |
| 140 | ** of the tty struct inside the PortP, and the port is either opened |
| 141 | ** or re-configured. You must also tell RIOParam if the device is a modem |
| 142 | ** device or not (i.e. top bit of minor number set or clear - take special |
| 143 | ** care when deciding on this!). |
| 144 | ** RIOParam neither flushes nor waits for drain, and is NOT preemptive. |
| 145 | ** |
| 146 | ** RIOParam assumes it will be called at splrio(), and also assumes |
| 147 | ** that CookMode is set correctly in the port structure. |
| 148 | ** |
| 149 | ** NB. for MPX |
| 150 | ** tty lock must NOT have been previously acquired. |
| 151 | */ |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 152 | int RIOParam(struct Port *PortP, int cmd, int Modem, int SleepFlag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | { |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 154 | struct tty_struct *TtyP; |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 155 | int retval; |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 156 | struct phb_param __iomem *phb_param_ptr; |
| 157 | struct PKT __iomem *PacketP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | int res; |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 159 | u8 Cor1 = 0, Cor2 = 0, Cor4 = 0, Cor5 = 0; |
| 160 | u8 TxXon = 0, TxXoff = 0, RxXon = 0, RxXoff = 0; |
| 161 | u8 LNext = 0, TxBaud = 0, RxBaud = 0; |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 162 | int retries = 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | unsigned long flags; |
| 164 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 165 | func_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | TtyP = PortP->gs.tty; |
| 168 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 169 | rio_dprintk(RIO_DEBUG_PARAM, "RIOParam: Port:%d cmd:%d Modem:%d SleepFlag:%d Mapped: %d, tty=%p\n", PortP->PortNum, cmd, Modem, SleepFlag, PortP->Mapped, TtyP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
| 171 | if (!TtyP) { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 172 | rio_dprintk(RIO_DEBUG_PARAM, "Can't call rioparam with null tty.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 174 | func_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 176 | return RIO_FAIL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 178 | rio_spin_lock_irqsave(&PortP->portSem, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 180 | if (cmd == RIOC_OPEN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 182 | ** If the port is set to store or lock the parameters, and it is |
| 183 | ** paramed with OPEN, we want to restore the saved port termio, but |
| 184 | ** only if StoredTermio has been saved, i.e. NOT 1st open after reboot. |
| 185 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 189 | ** wait for space |
| 190 | */ |
| 191 | while (!(res = can_add_transmit(&PacketP, PortP)) || (PortP->InUse != NOT_INUSE)) { |
| 192 | if (retries-- <= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | break; |
| 194 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 195 | if (PortP->InUse != NOT_INUSE) { |
| 196 | rio_dprintk(RIO_DEBUG_PARAM, "Port IN_USE for pre-emptive command\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 199 | if (!res) { |
| 200 | rio_dprintk(RIO_DEBUG_PARAM, "Port has no space on transmit queue\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | } |
| 202 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 203 | if (SleepFlag != OK_TO_SLEEP) { |
| 204 | rio_spin_unlock_irqrestore(&PortP->portSem, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | func_exit(); |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | return RIO_FAIL; |
| 208 | } |
| 209 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 210 | rio_dprintk(RIO_DEBUG_PARAM, "wait for can_add_transmit\n"); |
| 211 | rio_spin_unlock_irqrestore(&PortP->portSem, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | retval = RIODelay(PortP, HUNDRED_MS); |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 213 | rio_spin_lock_irqsave(&PortP->portSem, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | if (retval == RIO_FAIL) { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 215 | rio_dprintk(RIO_DEBUG_PARAM, "wait for can_add_transmit broken by signal\n"); |
| 216 | rio_spin_unlock_irqrestore(&PortP->portSem, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | func_exit(); |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 218 | return -EINTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 220 | if (PortP->State & RIO_DELETED) { |
| 221 | rio_spin_unlock_irqrestore(&PortP->portSem, flags); |
| 222 | func_exit(); |
Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 223 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } |
| 225 | } |
| 226 | |
| 227 | if (!res) { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 228 | rio_spin_unlock_irqrestore(&PortP->portSem, flags); |
| 229 | func_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | return RIO_FAIL; |
| 232 | } |
| 233 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 234 | rio_dprintk(RIO_DEBUG_PARAM, "can_add_transmit() returns %x\n", res); |
Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 235 | rio_dprintk(RIO_DEBUG_PARAM, "Packet is %p\n", PacketP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 237 | phb_param_ptr = (struct phb_param __iomem *) PacketP->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
| 239 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 240 | switch (TtyP->termios->c_cflag & CSIZE) { |
| 241 | case CS5: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 243 | rio_dprintk(RIO_DEBUG_PARAM, "5 bit data\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 244 | Cor1 |= RIOC_COR1_5BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | break; |
| 246 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 247 | case CS6: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 249 | rio_dprintk(RIO_DEBUG_PARAM, "6 bit data\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 250 | Cor1 |= RIOC_COR1_6BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | break; |
| 252 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 253 | case CS7: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 255 | rio_dprintk(RIO_DEBUG_PARAM, "7 bit data\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 256 | Cor1 |= RIOC_COR1_7BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | break; |
| 258 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 259 | case CS8: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 261 | rio_dprintk(RIO_DEBUG_PARAM, "8 bit data\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 262 | Cor1 |= RIOC_COR1_8BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | break; |
| 264 | } |
| 265 | } |
| 266 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 267 | if (TtyP->termios->c_cflag & CSTOPB) { |
| 268 | rio_dprintk(RIO_DEBUG_PARAM, "2 stop bits\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 269 | Cor1 |= RIOC_COR1_2STOP; |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 270 | } else { |
| 271 | rio_dprintk(RIO_DEBUG_PARAM, "1 stop bit\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 272 | Cor1 |= RIOC_COR1_1STOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | } |
| 274 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 275 | if (TtyP->termios->c_cflag & PARENB) { |
| 276 | rio_dprintk(RIO_DEBUG_PARAM, "Enable parity\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 277 | Cor1 |= RIOC_COR1_NORMAL; |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 278 | } else { |
| 279 | rio_dprintk(RIO_DEBUG_PARAM, "Disable parity\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 280 | Cor1 |= RIOC_COR1_NOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 282 | if (TtyP->termios->c_cflag & PARODD) { |
| 283 | rio_dprintk(RIO_DEBUG_PARAM, "Odd parity\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 284 | Cor1 |= RIOC_COR1_ODD; |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 285 | } else { |
| 286 | rio_dprintk(RIO_DEBUG_PARAM, "Even parity\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 287 | Cor1 |= RIOC_COR1_EVEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 291 | ** COR 2 |
| 292 | */ |
| 293 | if (TtyP->termios->c_iflag & IXON) { |
| 294 | rio_dprintk(RIO_DEBUG_PARAM, "Enable start/stop output control\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 295 | Cor2 |= RIOC_COR2_IXON; |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 296 | } else { |
| 297 | if (PortP->Config & RIO_IXON) { |
| 298 | rio_dprintk(RIO_DEBUG_PARAM, "Force enable start/stop output control\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 299 | Cor2 |= RIOC_COR2_IXON; |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 300 | } else |
| 301 | rio_dprintk(RIO_DEBUG_PARAM, "IXON has been disabled.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | if (TtyP->termios->c_iflag & IXANY) { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 305 | if (PortP->Config & RIO_IXANY) { |
| 306 | rio_dprintk(RIO_DEBUG_PARAM, "Enable any key to restart output\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 307 | Cor2 |= RIOC_COR2_IXANY; |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 308 | } else |
| 309 | rio_dprintk(RIO_DEBUG_PARAM, "IXANY has been disabled due to sanity reasons.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 312 | if (TtyP->termios->c_iflag & IXOFF) { |
| 313 | rio_dprintk(RIO_DEBUG_PARAM, "Enable start/stop input control 2\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 314 | Cor2 |= RIOC_COR2_IXOFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 317 | if (TtyP->termios->c_cflag & HUPCL) { |
| 318 | rio_dprintk(RIO_DEBUG_PARAM, "Hangup on last close\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 319 | Cor2 |= RIOC_COR2_HUPCL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | } |
| 321 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 322 | if (C_CRTSCTS(TtyP)) { |
| 323 | rio_dprintk(RIO_DEBUG_PARAM, "Rx hardware flow control enabled\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 324 | Cor2 |= RIOC_COR2_CTSFLOW; |
| 325 | Cor2 |= RIOC_COR2_RTSFLOW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } else { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 327 | rio_dprintk(RIO_DEBUG_PARAM, "Rx hardware flow control disabled\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 328 | Cor2 &= ~RIOC_COR2_CTSFLOW; |
| 329 | Cor2 &= ~RIOC_COR2_RTSFLOW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 333 | if (TtyP->termios->c_cflag & CLOCAL) { |
| 334 | rio_dprintk(RIO_DEBUG_PARAM, "Local line\n"); |
| 335 | } else { |
| 336 | rio_dprintk(RIO_DEBUG_PARAM, "Possible Modem line\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 340 | ** COR 4 (there is no COR 3) |
| 341 | */ |
| 342 | if (TtyP->termios->c_iflag & IGNBRK) { |
| 343 | rio_dprintk(RIO_DEBUG_PARAM, "Ignore break condition\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 344 | Cor4 |= RIOC_COR4_IGNBRK; |
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 | if (!(TtyP->termios->c_iflag & BRKINT)) { |
| 347 | rio_dprintk(RIO_DEBUG_PARAM, "Break generates NULL condition\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 348 | Cor4 |= RIOC_COR4_NBRKINT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | } else { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 350 | rio_dprintk(RIO_DEBUG_PARAM, "Interrupt on break condition\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | } |
| 352 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 353 | if (TtyP->termios->c_iflag & INLCR) { |
| 354 | rio_dprintk(RIO_DEBUG_PARAM, "Map newline to carriage return on input\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 355 | Cor4 |= RIOC_COR4_INLCR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 358 | if (TtyP->termios->c_iflag & IGNCR) { |
| 359 | rio_dprintk(RIO_DEBUG_PARAM, "Ignore carriage return on input\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 360 | Cor4 |= RIOC_COR4_IGNCR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } |
| 362 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 363 | if (TtyP->termios->c_iflag & ICRNL) { |
| 364 | rio_dprintk(RIO_DEBUG_PARAM, "Map carriage return to newline on input\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 365 | Cor4 |= RIOC_COR4_ICRNL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 367 | if (TtyP->termios->c_iflag & IGNPAR) { |
| 368 | rio_dprintk(RIO_DEBUG_PARAM, "Ignore characters with parity errors\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 369 | Cor4 |= RIOC_COR4_IGNPAR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 371 | if (TtyP->termios->c_iflag & PARMRK) { |
| 372 | rio_dprintk(RIO_DEBUG_PARAM, "Mark parity errors\n"); |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 373 | Cor4 |= RIOC_COR4_PARMRK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 377 | ** Set the RAISEMOD flag to ensure that the modem lines are raised |
| 378 | ** on reception of a config packet. |
| 379 | ** The download code handles the zero baud condition. |
| 380 | */ |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 381 | Cor4 |= RIOC_COR4_RAISEMOD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
| 383 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 384 | ** COR 5 |
| 385 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 387 | Cor5 = RIOC_COR5_CMOE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
| 389 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 390 | ** Set to monitor tbusy/tstop (or not). |
| 391 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
| 393 | if (PortP->MonitorTstate) |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 394 | Cor5 |= RIOC_COR5_TSTATE_ON; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | else |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 396 | Cor5 |= RIOC_COR5_TSTATE_OFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
| 398 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 399 | ** Could set LNE here if you wanted LNext processing. SVR4 will use it. |
| 400 | */ |
| 401 | if (TtyP->termios->c_iflag & ISTRIP) { |
| 402 | rio_dprintk(RIO_DEBUG_PARAM, "Strip input characters\n"); |
| 403 | if (!(PortP->State & RIO_TRIAD_MODE)) { |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 404 | Cor5 |= RIOC_COR5_ISTRIP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | } |
| 406 | } |
| 407 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 408 | if (TtyP->termios->c_oflag & ONLCR) { |
| 409 | rio_dprintk(RIO_DEBUG_PARAM, "Map newline to carriage-return, newline on output\n"); |
| 410 | if (PortP->CookMode == COOK_MEDIUM) |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 411 | Cor5 |= RIOC_COR5_ONLCR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 413 | if (TtyP->termios->c_oflag & OCRNL) { |
| 414 | rio_dprintk(RIO_DEBUG_PARAM, "Map carriage return to newline on output\n"); |
| 415 | if (PortP->CookMode == COOK_MEDIUM) |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 416 | Cor5 |= RIOC_COR5_OCRNL; |
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 ((TtyP->termios->c_oflag & TABDLY) == TAB3) { |
| 419 | rio_dprintk(RIO_DEBUG_PARAM, "Tab delay 3 set\n"); |
| 420 | if (PortP->CookMode == COOK_MEDIUM) |
Jiri Slaby | d6f6341 | 2008-04-30 00:53:57 -0700 | [diff] [blame] | 421 | Cor5 |= RIOC_COR5_TAB3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 425 | ** Flow control bytes. |
| 426 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | TxXon = TtyP->termios->c_cc[VSTART]; |
| 428 | TxXoff = TtyP->termios->c_cc[VSTOP]; |
| 429 | RxXon = TtyP->termios->c_cc[VSTART]; |
| 430 | RxXoff = TtyP->termios->c_cc[VSTOP]; |
| 431 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 432 | ** LNEXT byte |
| 433 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | LNext = 0; |
| 435 | |
| 436 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 437 | ** Baud rate bytes |
| 438 | */ |
| 439 | rio_dprintk(RIO_DEBUG_PARAM, "Mapping of rx/tx baud %x (%x)\n", TtyP->termios->c_cflag, CBAUD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
| 441 | switch (TtyP->termios->c_cflag & CBAUD) { |
| 442 | #define e(b) case B ## b : RxBaud = TxBaud = RIO_B ## b ;break |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 443 | e(50); |
| 444 | e(75); |
| 445 | e(110); |
| 446 | e(134); |
| 447 | e(150); |
| 448 | e(200); |
| 449 | e(300); |
| 450 | e(600); |
| 451 | e(1200); |
| 452 | e(1800); |
| 453 | e(2400); |
| 454 | e(4800); |
| 455 | e(9600); |
| 456 | e(19200); |
| 457 | e(38400); |
| 458 | e(57600); |
| 459 | e(115200); /* e(230400);e(460800); e(921600); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 462 | rio_dprintk(RIO_DEBUG_PARAM, "tx baud 0x%x, rx baud 0x%x\n", TxBaud, RxBaud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | |
| 464 | |
| 465 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 466 | ** Leftovers |
| 467 | */ |
| 468 | if (TtyP->termios->c_cflag & CREAD) |
| 469 | rio_dprintk(RIO_DEBUG_PARAM, "Enable receiver\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | #ifdef RCV1EN |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 471 | if (TtyP->termios->c_cflag & RCV1EN) |
| 472 | rio_dprintk(RIO_DEBUG_PARAM, "RCV1EN (?)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | #endif |
| 474 | #ifdef XMT1EN |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 475 | if (TtyP->termios->c_cflag & XMT1EN) |
| 476 | rio_dprintk(RIO_DEBUG_PARAM, "XMT1EN (?)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | #endif |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 478 | if (TtyP->termios->c_lflag & ISIG) |
| 479 | rio_dprintk(RIO_DEBUG_PARAM, "Input character signal generating enabled\n"); |
| 480 | if (TtyP->termios->c_lflag & ICANON) |
| 481 | rio_dprintk(RIO_DEBUG_PARAM, "Canonical input: erase and kill enabled\n"); |
| 482 | if (TtyP->termios->c_lflag & XCASE) |
| 483 | rio_dprintk(RIO_DEBUG_PARAM, "Canonical upper/lower presentation\n"); |
| 484 | if (TtyP->termios->c_lflag & ECHO) |
| 485 | rio_dprintk(RIO_DEBUG_PARAM, "Enable input echo\n"); |
| 486 | if (TtyP->termios->c_lflag & ECHOE) |
| 487 | rio_dprintk(RIO_DEBUG_PARAM, "Enable echo erase\n"); |
| 488 | if (TtyP->termios->c_lflag & ECHOK) |
| 489 | rio_dprintk(RIO_DEBUG_PARAM, "Enable echo kill\n"); |
| 490 | if (TtyP->termios->c_lflag & ECHONL) |
| 491 | rio_dprintk(RIO_DEBUG_PARAM, "Enable echo newline\n"); |
| 492 | if (TtyP->termios->c_lflag & NOFLSH) |
| 493 | rio_dprintk(RIO_DEBUG_PARAM, "Disable flush after interrupt or quit\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | #ifdef TOSTOP |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 495 | if (TtyP->termios->c_lflag & TOSTOP) |
| 496 | rio_dprintk(RIO_DEBUG_PARAM, "Send SIGTTOU for background output\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | #endif |
| 498 | #ifdef XCLUDE |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 499 | if (TtyP->termios->c_lflag & XCLUDE) |
| 500 | rio_dprintk(RIO_DEBUG_PARAM, "Exclusive use of this line\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | #endif |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 502 | if (TtyP->termios->c_iflag & IUCLC) |
| 503 | rio_dprintk(RIO_DEBUG_PARAM, "Map uppercase to lowercase on input\n"); |
| 504 | if (TtyP->termios->c_oflag & OPOST) |
| 505 | rio_dprintk(RIO_DEBUG_PARAM, "Enable output post-processing\n"); |
| 506 | if (TtyP->termios->c_oflag & OLCUC) |
| 507 | rio_dprintk(RIO_DEBUG_PARAM, "Map lowercase to uppercase on output\n"); |
| 508 | if (TtyP->termios->c_oflag & ONOCR) |
| 509 | rio_dprintk(RIO_DEBUG_PARAM, "No carriage return output at column 0\n"); |
| 510 | if (TtyP->termios->c_oflag & ONLRET) |
| 511 | rio_dprintk(RIO_DEBUG_PARAM, "Newline performs carriage return function\n"); |
| 512 | if (TtyP->termios->c_oflag & OFILL) |
| 513 | rio_dprintk(RIO_DEBUG_PARAM, "Use fill characters for delay\n"); |
| 514 | if (TtyP->termios->c_oflag & OFDEL) |
| 515 | rio_dprintk(RIO_DEBUG_PARAM, "Fill character is DEL\n"); |
| 516 | if (TtyP->termios->c_oflag & NLDLY) |
| 517 | rio_dprintk(RIO_DEBUG_PARAM, "Newline delay set\n"); |
| 518 | if (TtyP->termios->c_oflag & CRDLY) |
| 519 | rio_dprintk(RIO_DEBUG_PARAM, "Carriage return delay set\n"); |
| 520 | if (TtyP->termios->c_oflag & TABDLY) |
| 521 | rio_dprintk(RIO_DEBUG_PARAM, "Tab delay set\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 523 | ** These things are kind of useful in a later life! |
| 524 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | PortP->Cor2Copy = Cor2; |
| 526 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 527 | if (PortP->State & RIO_DELETED) { |
| 528 | rio_spin_unlock_irqrestore(&PortP->portSem, flags); |
| 529 | func_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
| 531 | return RIO_FAIL; |
| 532 | } |
| 533 | |
| 534 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 535 | ** Actually write the info into the packet to be sent |
| 536 | */ |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 537 | writeb(cmd, &phb_param_ptr->Cmd); |
| 538 | writeb(Cor1, &phb_param_ptr->Cor1); |
| 539 | writeb(Cor2, &phb_param_ptr->Cor2); |
| 540 | writeb(Cor4, &phb_param_ptr->Cor4); |
| 541 | writeb(Cor5, &phb_param_ptr->Cor5); |
| 542 | writeb(TxXon, &phb_param_ptr->TxXon); |
| 543 | writeb(RxXon, &phb_param_ptr->RxXon); |
| 544 | writeb(TxXoff, &phb_param_ptr->TxXoff); |
| 545 | writeb(RxXoff, &phb_param_ptr->RxXoff); |
| 546 | writeb(LNext, &phb_param_ptr->LNext); |
| 547 | writeb(TxBaud, &phb_param_ptr->TxBaud); |
| 548 | writeb(RxBaud, &phb_param_ptr->RxBaud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | |
| 550 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 551 | ** Set the length/command field |
| 552 | */ |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 553 | writeb(12 | PKT_CMD_BIT, &PacketP->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
| 555 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 556 | ** The packet is formed - now, whack it off |
| 557 | ** to its final destination: |
| 558 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | add_transmit(PortP); |
| 560 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 561 | ** Count characters transmitted for port statistics reporting |
| 562 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | if (PortP->statsGather) |
| 564 | PortP->txchars += 12; |
| 565 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 566 | rio_spin_unlock_irqrestore(&PortP->portSem, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 568 | rio_dprintk(RIO_DEBUG_PARAM, "add_transmit returned.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | /* |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 570 | ** job done. |
| 571 | */ |
| 572 | func_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | |
Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 574 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | |
| 578 | /* |
| 579 | ** We can add another packet to a transmit queue if the packet pointer pointed |
| 580 | ** to by the TxAdd pointer has PKT_IN_USE clear in its address. |
| 581 | */ |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 582 | int can_add_transmit(struct PKT __iomem **PktP, struct Port *PortP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 584 | struct PKT __iomem *tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 586 | *PktP = tp = (struct PKT __iomem *) RIO_PTR(PortP->Caddr, readw(PortP->TxAdd)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 588 | return !((unsigned long) tp & PKT_IN_USE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | /* |
| 592 | ** To add a packet to the queue, you set the PKT_IN_USE bit in the address, |
| 593 | ** and then move the TxAdd pointer along one position to point to the next |
| 594 | ** packet pointer. You must wrap the pointer from the end back to the start. |
| 595 | */ |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 596 | void add_transmit(struct Port *PortP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | { |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 598 | if (readw(PortP->TxAdd) & PKT_IN_USE) { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 599 | rio_dprintk(RIO_DEBUG_PARAM, "add_transmit: Packet has been stolen!"); |
| 600 | } |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 601 | writew(readw(PortP->TxAdd) | PKT_IN_USE, PortP->TxAdd); |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 602 | PortP->TxAdd = (PortP->TxAdd == PortP->TxEnd) ? PortP->TxStart : PortP->TxAdd + 1; |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 603 | writew(RIO_OFF(PortP->Caddr, PortP->TxAdd), &PortP->PhbP->tx_add); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | /**************************************** |
| 607 | * Put a packet onto the end of the |
| 608 | * free list |
| 609 | ****************************************/ |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 610 | void put_free_end(struct Host *HostP, struct PKT __iomem *PktP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | { |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 612 | struct rio_free_list __iomem *tmp_pointer; |
Alan Cox | 554b7c8 | 2006-03-24 03:18:32 -0800 | [diff] [blame] | 613 | unsigned short old_end, new_end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | unsigned long flags; |
| 615 | |
| 616 | rio_spin_lock_irqsave(&HostP->HostLock, flags); |
| 617 | |
| 618 | /************************************************* |
| 619 | * Put a packet back onto the back of the free list |
| 620 | * |
| 621 | ************************************************/ |
| 622 | |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 623 | rio_dprintk(RIO_DEBUG_PFE, "put_free_end(PktP=%p)\n", PktP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 625 | if ((old_end = readw(&HostP->ParmMapP->free_list_end)) != TPNULL) { |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 626 | new_end = RIO_OFF(HostP->Caddr, PktP); |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 627 | tmp_pointer = (struct rio_free_list __iomem *) RIO_PTR(HostP->Caddr, old_end); |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 628 | writew(new_end, &tmp_pointer->next); |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 629 | writew(old_end, &((struct rio_free_list __iomem *) PktP)->prev); |
| 630 | writew(TPNULL, &((struct rio_free_list __iomem *) PktP)->next); |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 631 | writew(new_end, &HostP->ParmMapP->free_list_end); |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 632 | } else { /* First packet on the free list this should never happen! */ |
| 633 | rio_dprintk(RIO_DEBUG_PFE, "put_free_end(): This should never happen\n"); |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 634 | writew(RIO_OFF(HostP->Caddr, PktP), &HostP->ParmMapP->free_list_end); |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 635 | tmp_pointer = (struct rio_free_list __iomem *) PktP; |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 636 | writew(TPNULL, &tmp_pointer->prev); |
| 637 | writew(TPNULL, &tmp_pointer->next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | } |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 639 | rio_dprintk(RIO_DEBUG_CMD, "Before unlock: %p\n", &HostP->HostLock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | rio_spin_unlock_irqrestore(&HostP->HostLock, flags); |
| 641 | } |
| 642 | |
| 643 | /* |
| 644 | ** can_remove_receive(PktP,P) returns non-zero if PKT_IN_USE is set |
| 645 | ** for the next packet on the queue. It will also set PktP to point to the |
| 646 | ** relevant packet, [having cleared the PKT_IN_USE bit]. If PKT_IN_USE is clear, |
| 647 | ** then can_remove_receive() returns 0. |
| 648 | */ |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 649 | int can_remove_receive(struct PKT __iomem **PktP, struct Port *PortP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | { |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 651 | if (readw(PortP->RxRemove) & PKT_IN_USE) { |
Al Viro | d886cb5 | 2006-05-27 00:08:25 -0400 | [diff] [blame] | 652 | *PktP = (struct PKT __iomem *) RIO_PTR(PortP->Caddr, readw(PortP->RxRemove) & ~PKT_IN_USE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | return 1; |
| 654 | } |
| 655 | return 0; |
| 656 | } |
| 657 | |
| 658 | /* |
| 659 | ** To remove a packet from the receive queue you clear its PKT_IN_USE bit, |
| 660 | ** and then bump the pointers. Once the pointers get to the end, they must |
| 661 | ** be wrapped back to the start. |
| 662 | */ |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 663 | void remove_receive(struct Port *PortP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | { |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 665 | writew(readw(PortP->RxRemove) & ~PKT_IN_USE, PortP->RxRemove); |
Andrew Morton | 8d8706e | 2006-01-11 12:17:49 -0800 | [diff] [blame] | 666 | PortP->RxRemove = (PortP->RxRemove == PortP->RxEnd) ? PortP->RxStart : PortP->RxRemove + 1; |
Alan Cox | e2b3afd | 2006-03-24 03:18:27 -0800 | [diff] [blame] | 667 | writew(RIO_OFF(PortP->Caddr, PortP->RxRemove), &PortP->PhbP->rx_remove); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | } |