stallion.c 128.4 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
/*****************************************************************************/

/*
 *	stallion.c  -- stallion multiport serial driver.
 *
 *	Copyright (C) 1996-1999  Stallion Technologies
 *	Copyright (C) 1994-1996  Greg Ungerer.
 *
 *	This code is loosely based on the Linux serial driver, written by
 *	Linus Torvalds, Theodore T'so and others.
 *
 *	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.
 */

/*****************************************************************************/

#include <linux/module.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/tty.h>
#include <linux/tty_flip.h>
#include <linux/serial.h>
#include <linux/cd1400.h>
#include <linux/sc26198.h>
#include <linux/comstats.h>
#include <linux/stallion.h>
#include <linux/ioport.h>
#include <linux/init.h>
#include <linux/smp_lock.h>
#include <linux/device.h>
#include <linux/delay.h>

#include <asm/io.h>
#include <asm/uaccess.h>

#ifdef CONFIG_PCI
#include <linux/pci.h>
#endif

/*****************************************************************************/

/*
 *	Define different board types. Use the standard Stallion "assigned"
 *	board numbers. Boards supported in this driver are abbreviated as
 *	EIO = EasyIO and ECH = EasyConnection 8/32.
 */
#define	BRD_EASYIO	20
#define	BRD_ECH		21
#define	BRD_ECHMC	22
#define	BRD_ECHPCI	26
#define	BRD_ECH64PCI	27
#define	BRD_EASYIOPCI	28

/*
 *	Define a configuration structure to hold the board configuration.
 *	Need to set this up in the code (for now) with the boards that are
 *	to be configured into the system. This is what needs to be modified
 *	when adding/removing/modifying boards. Each line entry in the
 *	stl_brdconf[] array is a board. Each line contains io/irq/memory
 *	ranges for that board (as well as what type of board it is).
 *	Some examples:
 *		{ BRD_EASYIO, 0x2a0, 0, 0, 10, 0 },
 *	This line would configure an EasyIO board (4 or 8, no difference),
 *	at io address 2a0 and irq 10.
 *	Another example:
 *		{ BRD_ECH, 0x2a8, 0x280, 0, 12, 0 },
 *	This line will configure an EasyConnection 8/32 board at primary io
 *	address 2a8, secondary io address 280 and irq 12.
 *	Enter as many lines into this array as you want (only the first 4
 *	will actually be used!). Any combination of EasyIO and EasyConnection
 *	boards can be specified. EasyConnection 8/32 boards can share their
 *	secondary io addresses between each other.
 *
 *	NOTE: there is no need to put any entries in this table for PCI
 *	boards. They will be found automatically by the driver - provided
 *	PCI BIOS32 support is compiled into the kernel.
 */

J
Jiri Slaby 已提交
91
static struct stlconf {
L
Linus Torvalds 已提交
92 93 94 95 96 97
	int		brdtype;
	int		ioaddr1;
	int		ioaddr2;
	unsigned long	memaddr;
	int		irq;
	int		irqtype;
J
Jiri Slaby 已提交
98
} stl_brdconf[] = {
L
Linus Torvalds 已提交
99 100 101
	/*{ BRD_EASYIO, 0x2a0, 0, 0, 10, 0 },*/
};

102
static int	stl_nrbrds = ARRAY_SIZE(stl_brdconf);
L
Linus Torvalds 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154

/*****************************************************************************/

/*
 *	Define some important driver characteristics. Device major numbers
 *	allocated as per Linux Device Registry.
 */
#ifndef	STL_SIOMEMMAJOR
#define	STL_SIOMEMMAJOR		28
#endif
#ifndef	STL_SERIALMAJOR
#define	STL_SERIALMAJOR		24
#endif
#ifndef	STL_CALLOUTMAJOR
#define	STL_CALLOUTMAJOR	25
#endif

/*
 *	Set the TX buffer size. Bigger is better, but we don't want
 *	to chew too much memory with buffers!
 */
#define	STL_TXBUFLOW		512
#define	STL_TXBUFSIZE		4096

/*****************************************************************************/

/*
 *	Define our local driver identity first. Set up stuff to deal with
 *	all the local structures required by a serial tty driver.
 */
static char	*stl_drvtitle = "Stallion Multiport Serial Driver";
static char	*stl_drvname = "stallion";
static char	*stl_drvversion = "5.6.0";

static struct tty_driver	*stl_serial;

/*
 *	Define a local default termios struct. All ports will be created
 *	with this termios initially. Basically all it defines is a raw port
 *	at 9600, 8 data bits, 1 stop bit.
 */
static struct termios		stl_deftermios = {
	.c_cflag	= (B9600 | CS8 | CREAD | HUPCL | CLOCAL),
	.c_cc		= INIT_C_CC,
};

/*
 *	Define global stats structures. Not used often, and can be
 *	re-used for each stats call.
 */
static comstats_t	stl_comstats;
static combrd_t		stl_brdstats;
J
Jiri Slaby 已提交
155 156
static struct stlbrd		stl_dummybrd;
static struct stlport	stl_dummyport;
L
Linus Torvalds 已提交
157 158 159 160 161 162 163 164

/*
 *	Define global place to put buffer overflow characters.
 */
static char		stl_unwanted[SC26198_RXFIFOSIZE];

/*****************************************************************************/

J
Jiri Slaby 已提交
165
static struct stlbrd		*stl_brds[STL_MAXBRDS];
L
Linus Torvalds 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187

/*
 *	Per board state flags. Used with the state field of the board struct.
 *	Not really much here!
 */
#define	BRD_FOUND	0x1

/*
 *	Define the port structure istate flags. These set of flags are
 *	modified at interrupt time - so setting and reseting them needs
 *	to be atomic. Use the bit clear/setting routines for this.
 */
#define	ASYI_TXBUSY	1
#define	ASYI_TXLOW	2
#define	ASYI_DCDCHANGE	3
#define	ASYI_TXFLOWED	4

/*
 *	Define an array of board names as printable strings. Handy for
 *	referencing boards when printing trace and stuff.
 */
static char	*stl_brdnames[] = {
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
L
Linus Torvalds 已提交
208 209 210
	"EasyIO",
	"EC8/32-AT",
	"EC8/32-MC",
211 212 213
	NULL,
	NULL,
	NULL,
L
Linus Torvalds 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
	"EC8/32-PCI",
	"EC8/64-PCI",
	"EasyIO-PCI",
};

/*****************************************************************************/

/*
 *	Define some string labels for arguments passed from the module
 *	load line. These allow for easy board definitions, and easy
 *	modification of the io, memory and irq resoucres.
 */
static int	stl_nargs = 0;
static char	*board0[4];
static char	*board1[4];
static char	*board2[4];
static char	*board3[4];

static char	**stl_brdsp[] = {
	(char **) &board0,
	(char **) &board1,
	(char **) &board2,
	(char **) &board3
};

/*
 *	Define a set of common board names, and types. This is used to
 *	parse any module arguments.
 */

J
Jiri Slaby 已提交
244
static struct {
L
Linus Torvalds 已提交
245 246
	char	*name;
	int	type;
J
Jiri Slaby 已提交
247
} stl_brdstr[] = {
L
Linus Torvalds 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
	{ "easyio", BRD_EASYIO },
	{ "eio", BRD_EASYIO },
	{ "20", BRD_EASYIO },
	{ "ec8/32", BRD_ECH },
	{ "ec8/32-at", BRD_ECH },
	{ "ec8/32-isa", BRD_ECH },
	{ "ech", BRD_ECH },
	{ "echat", BRD_ECH },
	{ "21", BRD_ECH },
	{ "ec8/32-mc", BRD_ECHMC },
	{ "ec8/32-mca", BRD_ECHMC },
	{ "echmc", BRD_ECHMC },
	{ "echmca", BRD_ECHMC },
	{ "22", BRD_ECHMC },
	{ "ec8/32-pc", BRD_ECHPCI },
	{ "ec8/32-pci", BRD_ECHPCI },
	{ "26", BRD_ECHPCI },
	{ "ec8/64-pc", BRD_ECH64PCI },
	{ "ec8/64-pci", BRD_ECH64PCI },
	{ "ech-pci", BRD_ECH64PCI },
	{ "echpci", BRD_ECH64PCI },
	{ "echpc", BRD_ECH64PCI },
	{ "27", BRD_ECH64PCI },
	{ "easyio-pc", BRD_EASYIOPCI },
	{ "easyio-pci", BRD_EASYIOPCI },
	{ "eio-pci", BRD_EASYIOPCI },
	{ "eiopci", BRD_EASYIOPCI },
	{ "28", BRD_EASYIOPCI },
};

/*
 *	Define the module agruments.
 */
MODULE_AUTHOR("Greg Ungerer");
MODULE_DESCRIPTION("Stallion Multiport Serial Driver");
MODULE_LICENSE("GPL");

module_param_array(board0, charp, &stl_nargs, 0);
MODULE_PARM_DESC(board0, "Board 0 config -> name[,ioaddr[,ioaddr2][,irq]]");
module_param_array(board1, charp, &stl_nargs, 0);
MODULE_PARM_DESC(board1, "Board 1 config -> name[,ioaddr[,ioaddr2][,irq]]");
module_param_array(board2, charp, &stl_nargs, 0);
MODULE_PARM_DESC(board2, "Board 2 config -> name[,ioaddr[,ioaddr2][,irq]]");
module_param_array(board3, charp, &stl_nargs, 0);
MODULE_PARM_DESC(board3, "Board 3 config -> name[,ioaddr[,ioaddr2][,irq]]");

/*****************************************************************************/

/*
 *	Hardware ID bits for the EasyIO and ECH boards. These defines apply
 *	to the directly accessible io ports of these boards (not the uarts -
 *	they are in cd1400.h and sc26198.h).
 */
#define	EIO_8PORTRS	0x04
#define	EIO_4PORTRS	0x05
#define	EIO_8PORTDI	0x00
#define	EIO_8PORTM	0x06
#define	EIO_MK3		0x03
#define	EIO_IDBITMASK	0x07

#define	EIO_BRDMASK	0xf0
#define	ID_BRD4		0x10
#define	ID_BRD8		0x20
#define	ID_BRD16	0x30

#define	EIO_INTRPEND	0x08
#define	EIO_INTEDGE	0x00
#define	EIO_INTLEVEL	0x08
#define	EIO_0WS		0x10

#define	ECH_ID		0xa0
#define	ECH_IDBITMASK	0xe0
#define	ECH_BRDENABLE	0x08
#define	ECH_BRDDISABLE	0x00
#define	ECH_INTENABLE	0x01
#define	ECH_INTDISABLE	0x00
#define	ECH_INTLEVEL	0x02
#define	ECH_INTEDGE	0x00
#define	ECH_INTRPEND	0x01
#define	ECH_BRDRESET	0x01

#define	ECHMC_INTENABLE	0x01
#define	ECHMC_BRDRESET	0x02

#define	ECH_PNLSTATUS	2
#define	ECH_PNL16PORT	0x20
#define	ECH_PNLIDMASK	0x07
#define	ECH_PNLXPID	0x40
#define	ECH_PNLINTRPEND	0x80

#define	ECH_ADDR2MASK	0x1e0

/*
 *	Define the vector mapping bits for the programmable interrupt board
 *	hardware. These bits encode the interrupt for the board to use - it
 *	is software selectable (except the EIO-8M).
 */
static unsigned char	stl_vecmap[] = {
	0xff, 0xff, 0xff, 0x04, 0x06, 0x05, 0xff, 0x07,
	0xff, 0xff, 0x00, 0x02, 0x01, 0xff, 0xff, 0x03
};

A
Alan Cox 已提交
350 351 352 353 354 355 356 357
/*
 *	Lock ordering is that you may not take stallion_lock holding
 *	brd_lock.
 */

static spinlock_t brd_lock; 		/* Guard the board mapping */
static spinlock_t stallion_lock;	/* Guard the tty driver */

L
Linus Torvalds 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
/*
 *	Set up enable and disable macros for the ECH boards. They require
 *	the secondary io address space to be activated and deactivated.
 *	This way all ECH boards can share their secondary io region.
 *	If this is an ECH-PCI board then also need to set the page pointer
 *	to point to the correct page.
 */
#define	BRDENABLE(brdnr,pagenr)						\
	if (stl_brds[(brdnr)]->brdtype == BRD_ECH)			\
		outb((stl_brds[(brdnr)]->ioctrlval | ECH_BRDENABLE),	\
			stl_brds[(brdnr)]->ioctrl);			\
	else if (stl_brds[(brdnr)]->brdtype == BRD_ECHPCI)		\
		outb((pagenr), stl_brds[(brdnr)]->ioctrl);

#define	BRDDISABLE(brdnr)						\
	if (stl_brds[(brdnr)]->brdtype == BRD_ECH)			\
		outb((stl_brds[(brdnr)]->ioctrlval | ECH_BRDDISABLE),	\
			stl_brds[(brdnr)]->ioctrl);

#define	STL_CD1400MAXBAUD	230400
#define	STL_SC26198MAXBAUD	460800

#define	STL_BAUDBASE		115200
#define	STL_CLOSEDELAY		(5 * HZ / 10)

/*****************************************************************************/

#ifdef CONFIG_PCI

/*
 *	Define the Stallion PCI vendor and device IDs.
 */
#ifndef	PCI_VENDOR_ID_STALLION
#define	PCI_VENDOR_ID_STALLION		0x124d
#endif
#ifndef PCI_DEVICE_ID_ECHPCI832
#define	PCI_DEVICE_ID_ECHPCI832		0x0000
#endif
#ifndef PCI_DEVICE_ID_ECHPCI864
#define	PCI_DEVICE_ID_ECHPCI864		0x0002
#endif
#ifndef PCI_DEVICE_ID_EIOPCI
#define	PCI_DEVICE_ID_EIOPCI		0x0003
#endif

/*
 *	Define structure to hold all Stallion PCI boards.
 */
typedef struct stlpcibrd {
	unsigned short		vendid;
	unsigned short		devid;
	int			brdtype;
} stlpcibrd_t;

static stlpcibrd_t	stl_pcibrds[] = {
	{ PCI_VENDOR_ID_STALLION, PCI_DEVICE_ID_ECHPCI864, BRD_ECH64PCI },
	{ PCI_VENDOR_ID_STALLION, PCI_DEVICE_ID_EIOPCI, BRD_EASYIOPCI },
	{ PCI_VENDOR_ID_STALLION, PCI_DEVICE_ID_ECHPCI832, BRD_ECHPCI },
	{ PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_87410, BRD_ECHPCI },
};

419
static int	stl_nrpcibrds = ARRAY_SIZE(stl_pcibrds);
L
Linus Torvalds 已提交
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456

#endif

/*****************************************************************************/

/*
 *	Define macros to extract a brd/port number from a minor number.
 */
#define	MINOR2BRD(min)		(((min) & 0xc0) >> 6)
#define	MINOR2PORT(min)		((min) & 0x3f)

/*
 *	Define a baud rate table that converts termios baud rate selector
 *	into the actual baud rate value. All baud rate calculations are
 *	based on the actual baud rate required.
 */
static unsigned int	stl_baudrates[] = {
	0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
	9600, 19200, 38400, 57600, 115200, 230400, 460800, 921600
};

/*
 *	Define some handy local macros...
 */
#undef	MIN
#define	MIN(a,b)	(((a) <= (b)) ? (a) : (b))

#undef	TOLOWER
#define	TOLOWER(x)	((((x) >= 'A') && ((x) <= 'Z')) ? ((x) + 0x20) : (x))

/*****************************************************************************/

/*
 *	Declare all those functions in this driver!
 */

static void	stl_argbrds(void);
J
Jiri Slaby 已提交
457
static int	stl_parsebrd(struct stlconf *confp, char **argp);
L
Linus Torvalds 已提交
458 459 460

static unsigned long stl_atol(char *str);

A
Adrian Bunk 已提交
461
static int	stl_init(void);
L
Linus Torvalds 已提交
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
static int	stl_open(struct tty_struct *tty, struct file *filp);
static void	stl_close(struct tty_struct *tty, struct file *filp);
static int	stl_write(struct tty_struct *tty, const unsigned char *buf, int count);
static void	stl_putchar(struct tty_struct *tty, unsigned char ch);
static void	stl_flushchars(struct tty_struct *tty);
static int	stl_writeroom(struct tty_struct *tty);
static int	stl_charsinbuffer(struct tty_struct *tty);
static int	stl_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg);
static void	stl_settermios(struct tty_struct *tty, struct termios *old);
static void	stl_throttle(struct tty_struct *tty);
static void	stl_unthrottle(struct tty_struct *tty);
static void	stl_stop(struct tty_struct *tty);
static void	stl_start(struct tty_struct *tty);
static void	stl_flushbuffer(struct tty_struct *tty);
static void	stl_breakctl(struct tty_struct *tty, int state);
static void	stl_waituntilsent(struct tty_struct *tty, int timeout);
static void	stl_sendxchar(struct tty_struct *tty, char ch);
static void	stl_hangup(struct tty_struct *tty);
static int	stl_memioctl(struct inode *ip, struct file *fp, unsigned int cmd, unsigned long arg);
J
Jiri Slaby 已提交
481
static int	stl_portinfo(struct stlport *portp, int portnr, char *pos);
L
Linus Torvalds 已提交
482 483
static int	stl_readproc(char *page, char **start, off_t off, int count, int *eof, void *data);

J
Jiri Slaby 已提交
484 485 486 487
static int	stl_brdinit(struct stlbrd *brdp);
static int	stl_initports(struct stlbrd *brdp, struct stlpanel *panelp);
static int	stl_getserial(struct stlport *portp, struct serial_struct __user *sp);
static int	stl_setserial(struct stlport *portp, struct serial_struct __user *sp);
L
Linus Torvalds 已提交
488
static int	stl_getbrdstats(combrd_t __user *bp);
J
Jiri Slaby 已提交
489 490 491 492 493 494 495 496 497 498
static int	stl_getportstats(struct stlport *portp, comstats_t __user *cp);
static int	stl_clrportstats(struct stlport *portp, comstats_t __user *cp);
static int	stl_getportstruct(struct stlport __user *arg);
static int	stl_getbrdstruct(struct stlbrd __user *arg);
static int	stl_waitcarrier(struct stlport *portp, struct file *filp);
static int	stl_eiointr(struct stlbrd *brdp);
static int	stl_echatintr(struct stlbrd *brdp);
static int	stl_echmcaintr(struct stlbrd *brdp);
static int	stl_echpciintr(struct stlbrd *brdp);
static int	stl_echpci64intr(struct stlbrd *brdp);
499
static void	stl_offintr(struct work_struct *);
J
Jiri Slaby 已提交
500 501
static struct stlbrd *stl_allocbrd(void);
static struct stlport *stl_getport(int brdnr, int panelnr, int portnr);
L
Linus Torvalds 已提交
502 503

static inline int	stl_initbrds(void);
J
Jiri Slaby 已提交
504 505
static inline int	stl_initeio(struct stlbrd *brdp);
static inline int	stl_initech(struct stlbrd *brdp);
L
Linus Torvalds 已提交
506 507 508 509 510 511 512 513 514 515
static inline int	stl_getbrdnr(void);

#ifdef	CONFIG_PCI
static inline int	stl_findpcibrds(void);
static inline int	stl_initpcibrd(int brdtype, struct pci_dev *devp);
#endif

/*
 *	CD1400 uart specific handling functions.
 */
J
Jiri Slaby 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
static void	stl_cd1400setreg(struct stlport *portp, int regnr, int value);
static int	stl_cd1400getreg(struct stlport *portp, int regnr);
static int	stl_cd1400updatereg(struct stlport *portp, int regnr, int value);
static int	stl_cd1400panelinit(struct stlbrd *brdp, struct stlpanel *panelp);
static void	stl_cd1400portinit(struct stlbrd *brdp, struct stlpanel *panelp, struct stlport *portp);
static void	stl_cd1400setport(struct stlport *portp, struct termios *tiosp);
static int	stl_cd1400getsignals(struct stlport *portp);
static void	stl_cd1400setsignals(struct stlport *portp, int dtr, int rts);
static void	stl_cd1400ccrwait(struct stlport *portp);
static void	stl_cd1400enablerxtx(struct stlport *portp, int rx, int tx);
static void	stl_cd1400startrxtx(struct stlport *portp, int rx, int tx);
static void	stl_cd1400disableintrs(struct stlport *portp);
static void	stl_cd1400sendbreak(struct stlport *portp, int len);
static void	stl_cd1400flowctrl(struct stlport *portp, int state);
static void	stl_cd1400sendflow(struct stlport *portp, int state);
static void	stl_cd1400flush(struct stlport *portp);
static int	stl_cd1400datastate(struct stlport *portp);
static void	stl_cd1400eiointr(struct stlpanel *panelp, unsigned int iobase);
static void	stl_cd1400echintr(struct stlpanel *panelp, unsigned int iobase);
static void	stl_cd1400txisr(struct stlpanel *panelp, int ioaddr);
static void	stl_cd1400rxisr(struct stlpanel *panelp, int ioaddr);
static void	stl_cd1400mdmisr(struct stlpanel *panelp, int ioaddr);

static inline int	stl_cd1400breakisr(struct stlport *portp, int ioaddr);
L
Linus Torvalds 已提交
540 541 542 543

/*
 *	SC26198 uart specific handling functions.
 */
J
Jiri Slaby 已提交
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
static void	stl_sc26198setreg(struct stlport *portp, int regnr, int value);
static int	stl_sc26198getreg(struct stlport *portp, int regnr);
static int	stl_sc26198updatereg(struct stlport *portp, int regnr, int value);
static int	stl_sc26198getglobreg(struct stlport *portp, int regnr);
static int	stl_sc26198panelinit(struct stlbrd *brdp, struct stlpanel *panelp);
static void	stl_sc26198portinit(struct stlbrd *brdp, struct stlpanel *panelp, struct stlport *portp);
static void	stl_sc26198setport(struct stlport *portp, struct termios *tiosp);
static int	stl_sc26198getsignals(struct stlport *portp);
static void	stl_sc26198setsignals(struct stlport *portp, int dtr, int rts);
static void	stl_sc26198enablerxtx(struct stlport *portp, int rx, int tx);
static void	stl_sc26198startrxtx(struct stlport *portp, int rx, int tx);
static void	stl_sc26198disableintrs(struct stlport *portp);
static void	stl_sc26198sendbreak(struct stlport *portp, int len);
static void	stl_sc26198flowctrl(struct stlport *portp, int state);
static void	stl_sc26198sendflow(struct stlport *portp, int state);
static void	stl_sc26198flush(struct stlport *portp);
static int	stl_sc26198datastate(struct stlport *portp);
static void	stl_sc26198wait(struct stlport *portp);
static void	stl_sc26198txunflow(struct stlport *portp, struct tty_struct *tty);
static void	stl_sc26198intr(struct stlpanel *panelp, unsigned int iobase);
static void	stl_sc26198txisr(struct stlport *port);
static void	stl_sc26198rxisr(struct stlport *port, unsigned int iack);
static void	stl_sc26198rxbadch(struct stlport *portp, unsigned char status, char ch);
static void	stl_sc26198rxbadchars(struct stlport *portp);
static void	stl_sc26198otherisr(struct stlport *port, unsigned int iack);
L
Linus Torvalds 已提交
569 570 571 572 573 574 575

/*****************************************************************************/

/*
 *	Generic UART support structure.
 */
typedef struct uart {
J
Jiri Slaby 已提交
576 577 578 579 580 581 582 583 584 585 586 587 588 589
	int	(*panelinit)(struct stlbrd *brdp, struct stlpanel *panelp);
	void	(*portinit)(struct stlbrd *brdp, struct stlpanel *panelp, struct stlport *portp);
	void	(*setport)(struct stlport *portp, struct termios *tiosp);
	int	(*getsignals)(struct stlport *portp);
	void	(*setsignals)(struct stlport *portp, int dtr, int rts);
	void	(*enablerxtx)(struct stlport *portp, int rx, int tx);
	void	(*startrxtx)(struct stlport *portp, int rx, int tx);
	void	(*disableintrs)(struct stlport *portp);
	void	(*sendbreak)(struct stlport *portp, int len);
	void	(*flowctrl)(struct stlport *portp, int state);
	void	(*sendflow)(struct stlport *portp, int state);
	void	(*flush)(struct stlport *portp);
	int	(*datastate)(struct stlport *portp);
	void	(*intr)(struct stlpanel *panelp, unsigned int iobase);
L
Linus Torvalds 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
} uart_t;

/*
 *	Define some macros to make calling these functions nice and clean.
 */
#define	stl_panelinit		(* ((uart_t *) panelp->uartp)->panelinit)
#define	stl_portinit		(* ((uart_t *) portp->uartp)->portinit)
#define	stl_setport		(* ((uart_t *) portp->uartp)->setport)
#define	stl_getsignals		(* ((uart_t *) portp->uartp)->getsignals)
#define	stl_setsignals		(* ((uart_t *) portp->uartp)->setsignals)
#define	stl_enablerxtx		(* ((uart_t *) portp->uartp)->enablerxtx)
#define	stl_startrxtx		(* ((uart_t *) portp->uartp)->startrxtx)
#define	stl_disableintrs	(* ((uart_t *) portp->uartp)->disableintrs)
#define	stl_sendbreak		(* ((uart_t *) portp->uartp)->sendbreak)
#define	stl_flowctrl		(* ((uart_t *) portp->uartp)->flowctrl)
#define	stl_sendflow		(* ((uart_t *) portp->uartp)->sendflow)
#define	stl_flush		(* ((uart_t *) portp->uartp)->flush)
#define	stl_datastate		(* ((uart_t *) portp->uartp)->datastate)

/*****************************************************************************/

/*
 *	CD1400 UART specific data initialization.
 */
static uart_t stl_cd1400uart = {
	stl_cd1400panelinit,
	stl_cd1400portinit,
	stl_cd1400setport,
	stl_cd1400getsignals,
	stl_cd1400setsignals,
	stl_cd1400enablerxtx,
	stl_cd1400startrxtx,
	stl_cd1400disableintrs,
	stl_cd1400sendbreak,
	stl_cd1400flowctrl,
	stl_cd1400sendflow,
	stl_cd1400flush,
	stl_cd1400datastate,
	stl_cd1400eiointr
};

/*
 *	Define the offsets within the register bank of a cd1400 based panel.
 *	These io address offsets are common to the EasyIO board as well.
 */
#define	EREG_ADDR	0
#define	EREG_DATA	4
#define	EREG_RXACK	5
#define	EREG_TXACK	6
#define	EREG_MDACK	7

#define	EREG_BANKSIZE	8

#define	CD1400_CLK	25000000
#define	CD1400_CLK8M	20000000

/*
 *	Define the cd1400 baud rate clocks. These are used when calculating
 *	what clock and divisor to use for the required baud rate. Also
 *	define the maximum baud rate allowed, and the default base baud.
 */
static int	stl_cd1400clkdivs[] = {
	CD1400_CLK0, CD1400_CLK1, CD1400_CLK2, CD1400_CLK3, CD1400_CLK4
};

/*****************************************************************************/

/*
 *	SC26198 UART specific data initization.
 */
static uart_t stl_sc26198uart = {
	stl_sc26198panelinit,
	stl_sc26198portinit,
	stl_sc26198setport,
	stl_sc26198getsignals,
	stl_sc26198setsignals,
	stl_sc26198enablerxtx,
	stl_sc26198startrxtx,
	stl_sc26198disableintrs,
	stl_sc26198sendbreak,
	stl_sc26198flowctrl,
	stl_sc26198sendflow,
	stl_sc26198flush,
	stl_sc26198datastate,
	stl_sc26198intr
};

/*
 *	Define the offsets within the register bank of a sc26198 based panel.
 */
#define	XP_DATA		0
#define	XP_ADDR		1
#define	XP_MODID	2
#define	XP_STATUS	2
#define	XP_IACK		3

#define	XP_BANKSIZE	4

/*
 *	Define the sc26198 baud rate table. Offsets within the table
 *	represent the actual baud rate selector of sc26198 registers.
 */
static unsigned int	sc26198_baudtable[] = {
	50, 75, 150, 200, 300, 450, 600, 900, 1200, 1800, 2400, 3600,
	4800, 7200, 9600, 14400, 19200, 28800, 38400, 57600, 115200,
	230400, 460800, 921600
};

698
#define	SC26198_NRBAUDS		ARRAY_SIZE(sc26198_baudtable)
L
Linus Torvalds 已提交
699 700 701 702 703 704 705

/*****************************************************************************/

/*
 *	Define the driver info for a user level control device. Used mainly
 *	to get at port stats - only not using the port device itself.
 */
706
static const struct file_operations	stl_fsiomem = {
L
Linus Torvalds 已提交
707 708 709 710 711 712
	.owner		= THIS_MODULE,
	.ioctl		= stl_memioctl,
};

/*****************************************************************************/

713
static struct class *stallion_class;
L
Linus Torvalds 已提交
714 715 716 717 718 719 720 721

/*
 *	Loadable module initialization stuff.
 */

static int __init stallion_module_init(void)
{
	stl_init();
722
	return 0;
L
Linus Torvalds 已提交
723 724 725 726 727 728
}

/*****************************************************************************/

static void __exit stallion_module_exit(void)
{
J
Jiri Slaby 已提交
729 730 731
	struct stlbrd	*brdp;
	struct stlpanel	*panelp;
	struct stlport	*portp;
L
Linus Torvalds 已提交
732 733
	int		i, j, k;

734
	pr_debug("cleanup_module()\n");
L
Linus Torvalds 已提交
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751

	printk(KERN_INFO "Unloading %s: version %s\n", stl_drvtitle,
		stl_drvversion);

/*
 *	Free up all allocated resources used by the ports. This includes
 *	memory and interrupts. As part of this process we will also do
 *	a hangup on every open port - to try to flush out any processes
 *	hanging onto ports.
 */
	i = tty_unregister_driver(stl_serial);
	put_tty_driver(stl_serial);
	if (i) {
		printk("STALLION: failed to un-register tty driver, "
			"errno=%d\n", -i);
		return;
	}
752
	for (i = 0; i < 4; i++)
753
		class_device_destroy(stallion_class, MKDEV(STL_SIOMEMMAJOR, i));
L
Linus Torvalds 已提交
754 755 756
	if ((i = unregister_chrdev(STL_SIOMEMMAJOR, "staliomem")))
		printk("STALLION: failed to un-register serial memory device, "
			"errno=%d\n", -i);
757
	class_destroy(stallion_class);
L
Linus Torvalds 已提交
758 759

	for (i = 0; (i < stl_nrbrds); i++) {
760
		if ((brdp = stl_brds[i]) == NULL)
L
Linus Torvalds 已提交
761 762 763 764 765 766
			continue;

		free_irq(brdp->irq, brdp);

		for (j = 0; (j < STL_MAXPANELS); j++) {
			panelp = brdp->panels[j];
767
			if (panelp == NULL)
L
Linus Torvalds 已提交
768 769 770
				continue;
			for (k = 0; (k < STL_PORTSPERPANEL); k++) {
				portp = panelp->ports[k];
771
				if (portp == NULL)
L
Linus Torvalds 已提交
772
					continue;
773
				if (portp->tty != NULL)
L
Linus Torvalds 已提交
774
					stl_hangup(portp->tty);
J
Jesper Juhl 已提交
775
				kfree(portp->tx.buf);
L
Linus Torvalds 已提交
776 777 778 779 780 781 782 783 784 785
				kfree(portp);
			}
			kfree(panelp);
		}

		release_region(brdp->ioaddr1, brdp->iosize1);
		if (brdp->iosize2 > 0)
			release_region(brdp->ioaddr2, brdp->iosize2);

		kfree(brdp);
786
		stl_brds[i] = NULL;
L
Linus Torvalds 已提交
787 788 789 790 791 792 793 794 795 796 797 798 799 800
	}
}

module_init(stallion_module_init);
module_exit(stallion_module_exit);

/*****************************************************************************/

/*
 *	Check for any arguments passed in on the module load command line.
 */

static void stl_argbrds(void)
{
J
Jiri Slaby 已提交
801 802
	struct stlconf	conf;
	struct stlbrd	*brdp;
L
Linus Torvalds 已提交
803 804
	int		i;

805
	pr_debug("stl_argbrds()\n");
L
Linus Torvalds 已提交
806 807 808 809 810

	for (i = stl_nrbrds; (i < stl_nargs); i++) {
		memset(&conf, 0, sizeof(conf));
		if (stl_parsebrd(&conf, stl_brdsp[i]) == 0)
			continue;
811
		if ((brdp = stl_allocbrd()) == NULL)
L
Linus Torvalds 已提交
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
			continue;
		stl_nrbrds = i + 1;
		brdp->brdnr = i;
		brdp->brdtype = conf.brdtype;
		brdp->ioaddr1 = conf.ioaddr1;
		brdp->ioaddr2 = conf.ioaddr2;
		brdp->irq = conf.irq;
		brdp->irqtype = conf.irqtype;
		stl_brdinit(brdp);
	}
}

/*****************************************************************************/

/*
 *	Convert an ascii string number into an unsigned long.
 */

static unsigned long stl_atol(char *str)
{
	unsigned long	val;
	int		base, c;
	char		*sp;

	val = 0;
	sp = str;
	if ((*sp == '0') && (*(sp+1) == 'x')) {
		base = 16;
		sp += 2;
	} else if (*sp == '0') {
		base = 8;
		sp++;
	} else {
		base = 10;
	}

	for (; (*sp != 0); sp++) {
		c = (*sp > '9') ? (TOLOWER(*sp) - 'a' + 10) : (*sp - '0');
		if ((c < 0) || (c >= base)) {
			printk("STALLION: invalid argument %s\n", str);
			val = 0;
			break;
		}
		val = (val * base) + c;
	}
857
	return val;
L
Linus Torvalds 已提交
858 859 860 861 862 863 864 865
}

/*****************************************************************************/

/*
 *	Parse the supplied argument string, into the board conf struct.
 */

J
Jiri Slaby 已提交
866
static int stl_parsebrd(struct stlconf *confp, char **argp)
L
Linus Torvalds 已提交
867 868
{
	char	*sp;
869
	int	i;
L
Linus Torvalds 已提交
870

871
	pr_debug("stl_parsebrd(confp=%p,argp=%p)\n", confp, argp);
L
Linus Torvalds 已提交
872

873
	if ((argp[0] == NULL) || (*argp[0] == 0))
874
		return 0;
L
Linus Torvalds 已提交
875 876 877 878

	for (sp = argp[0], i = 0; ((*sp != 0) && (i < 25)); sp++, i++)
		*sp = TOLOWER(*sp);

879
	for (i = 0; i < ARRAY_SIZE(stl_brdstr); i++) {
L
Linus Torvalds 已提交
880 881 882
		if (strcmp(stl_brdstr[i].name, argp[0]) == 0)
			break;
	}
883
	if (i == ARRAY_SIZE(stl_brdstr)) {
L
Linus Torvalds 已提交
884
		printk("STALLION: unknown board name, %s?\n", argp[0]);
885
		return 0;
L
Linus Torvalds 已提交
886 887 888 889 890
	}

	confp->brdtype = stl_brdstr[i].type;

	i = 1;
891
	if ((argp[i] != NULL) && (*argp[i] != 0))
L
Linus Torvalds 已提交
892 893 894
		confp->ioaddr1 = stl_atol(argp[i]);
	i++;
	if (confp->brdtype == BRD_ECH) {
895
		if ((argp[i] != NULL) && (*argp[i] != 0))
L
Linus Torvalds 已提交
896 897 898
			confp->ioaddr2 = stl_atol(argp[i]);
		i++;
	}
899
	if ((argp[i] != NULL) && (*argp[i] != 0))
L
Linus Torvalds 已提交
900
		confp->irq = stl_atol(argp[i]);
901
	return 1;
L
Linus Torvalds 已提交
902 903 904 905 906 907 908 909
}

/*****************************************************************************/

/*
 *	Allocate a new board structure. Fill out the basic info in it.
 */

J
Jiri Slaby 已提交
910
static struct stlbrd *stl_allocbrd(void)
L
Linus Torvalds 已提交
911
{
J
Jiri Slaby 已提交
912
	struct stlbrd	*brdp;
L
Linus Torvalds 已提交
913

J
Jiri Slaby 已提交
914
	brdp = kzalloc(sizeof(struct stlbrd), GFP_KERNEL);
915
	if (!brdp) {
A
Alan Cox 已提交
916
		printk("STALLION: failed to allocate memory (size=%Zd)\n",
J
Jiri Slaby 已提交
917
			sizeof(struct stlbrd));
918
		return NULL;
L
Linus Torvalds 已提交
919 920 921
	}

	brdp->magic = STL_BOARDMAGIC;
922
	return brdp;
L
Linus Torvalds 已提交
923 924 925 926 927 928
}

/*****************************************************************************/

static int stl_open(struct tty_struct *tty, struct file *filp)
{
J
Jiri Slaby 已提交
929 930
	struct stlport	*portp;
	struct stlbrd	*brdp;
L
Linus Torvalds 已提交
931 932 933
	unsigned int	minordev;
	int		brdnr, panelnr, portnr, rc;

934
	pr_debug("stl_open(tty=%p,filp=%p): device=%s\n", tty, filp, tty->name);
L
Linus Torvalds 已提交
935 936 937 938

	minordev = tty->index;
	brdnr = MINOR2BRD(minordev);
	if (brdnr >= stl_nrbrds)
939
		return -ENODEV;
L
Linus Torvalds 已提交
940
	brdp = stl_brds[brdnr];
941
	if (brdp == NULL)
942
		return -ENODEV;
L
Linus Torvalds 已提交
943 944
	minordev = MINOR2PORT(minordev);
	for (portnr = -1, panelnr = 0; (panelnr < STL_MAXPANELS); panelnr++) {
945
		if (brdp->panels[panelnr] == NULL)
L
Linus Torvalds 已提交
946 947 948 949 950 951 952 953
			break;
		if (minordev < brdp->panels[panelnr]->nrports) {
			portnr = minordev;
			break;
		}
		minordev -= brdp->panels[panelnr]->nrports;
	}
	if (portnr < 0)
954
		return -ENODEV;
L
Linus Torvalds 已提交
955 956

	portp = brdp->panels[panelnr]->ports[portnr];
957
	if (portp == NULL)
958
		return -ENODEV;
L
Linus Torvalds 已提交
959 960 961 962 963 964 965 966 967 968

/*
 *	On the first open of the device setup the port hardware, and
 *	initialize the per port data structure.
 */
	portp->tty = tty;
	tty->driver_data = portp;
	portp->refcount++;

	if ((portp->flags & ASYNC_INITIALIZED) == 0) {
969 970 971
		if (!portp->tx.buf) {
			portp->tx.buf = kmalloc(STL_TXBUFSIZE, GFP_KERNEL);
			if (!portp->tx.buf)
972
				return -ENOMEM;
L
Linus Torvalds 已提交
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993
			portp->tx.head = portp->tx.buf;
			portp->tx.tail = portp->tx.buf;
		}
		stl_setport(portp, tty->termios);
		portp->sigs = stl_getsignals(portp);
		stl_setsignals(portp, 1, 1);
		stl_enablerxtx(portp, 1, 1);
		stl_startrxtx(portp, 1, 0);
		clear_bit(TTY_IO_ERROR, &tty->flags);
		portp->flags |= ASYNC_INITIALIZED;
	}

/*
 *	Check if this port is in the middle of closing. If so then wait
 *	until it is closed then return error status, based on flag settings.
 *	The sleep here does not need interrupt protection since the wakeup
 *	for it is done with the same context.
 */
	if (portp->flags & ASYNC_CLOSING) {
		interruptible_sleep_on(&portp->close_wait);
		if (portp->flags & ASYNC_HUP_NOTIFY)
994 995
			return -EAGAIN;
		return -ERESTARTSYS;
L
Linus Torvalds 已提交
996 997 998 999 1000 1001 1002 1003 1004
	}

/*
 *	Based on type of open being done check if it can overlap with any
 *	previous opens still in effect. If we are a normal serial device
 *	then also we might have to wait for carrier.
 */
	if (!(filp->f_flags & O_NONBLOCK)) {
		if ((rc = stl_waitcarrier(portp, filp)) != 0)
1005
			return rc;
L
Linus Torvalds 已提交
1006 1007 1008
	}
	portp->flags |= ASYNC_NORMAL_ACTIVE;

1009
	return 0;
L
Linus Torvalds 已提交
1010 1011 1012 1013 1014 1015 1016 1017 1018
}

/*****************************************************************************/

/*
 *	Possibly need to wait for carrier (DCD signal) to come high. Say
 *	maybe because if we are clocal then we don't need to wait...
 */

J
Jiri Slaby 已提交
1019
static int stl_waitcarrier(struct stlport *portp, struct file *filp)
L
Linus Torvalds 已提交
1020 1021 1022 1023
{
	unsigned long	flags;
	int		rc, doclocal;

1024
	pr_debug("stl_waitcarrier(portp=%p,filp=%p)\n", portp, filp);
L
Linus Torvalds 已提交
1025 1026 1027 1028

	rc = 0;
	doclocal = 0;

A
Alan Cox 已提交
1029 1030
	spin_lock_irqsave(&stallion_lock, flags);

L
Linus Torvalds 已提交
1031 1032 1033 1034 1035 1036 1037 1038
	if (portp->tty->termios->c_cflag & CLOCAL)
		doclocal++;

	portp->openwaitcnt++;
	if (! tty_hung_up_p(filp))
		portp->refcount--;

	for (;;) {
A
Alan Cox 已提交
1039
		/* Takes brd_lock internally */
L
Linus Torvalds 已提交
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
		stl_setsignals(portp, 1, 1);
		if (tty_hung_up_p(filp) ||
		    ((portp->flags & ASYNC_INITIALIZED) == 0)) {
			if (portp->flags & ASYNC_HUP_NOTIFY)
				rc = -EBUSY;
			else
				rc = -ERESTARTSYS;
			break;
		}
		if (((portp->flags & ASYNC_CLOSING) == 0) &&
		    (doclocal || (portp->sigs & TIOCM_CD))) {
			break;
		}
		if (signal_pending(current)) {
			rc = -ERESTARTSYS;
			break;
		}
A
Alan Cox 已提交
1057
		/* FIXME */
L
Linus Torvalds 已提交
1058 1059 1060 1061 1062 1063
		interruptible_sleep_on(&portp->open_wait);
	}

	if (! tty_hung_up_p(filp))
		portp->refcount++;
	portp->openwaitcnt--;
A
Alan Cox 已提交
1064
	spin_unlock_irqrestore(&stallion_lock, flags);
L
Linus Torvalds 已提交
1065

1066
	return rc;
L
Linus Torvalds 已提交
1067 1068 1069 1070 1071 1072
}

/*****************************************************************************/

static void stl_close(struct tty_struct *tty, struct file *filp)
{
J
Jiri Slaby 已提交
1073
	struct stlport	*portp;
L
Linus Torvalds 已提交
1074 1075
	unsigned long	flags;

1076
	pr_debug("stl_close(tty=%p,filp=%p)\n", tty, filp);
L
Linus Torvalds 已提交
1077 1078

	portp = tty->driver_data;
1079
	if (portp == NULL)
L
Linus Torvalds 已提交
1080 1081
		return;

A
Alan Cox 已提交
1082
	spin_lock_irqsave(&stallion_lock, flags);
L
Linus Torvalds 已提交
1083
	if (tty_hung_up_p(filp)) {
A
Alan Cox 已提交
1084
		spin_unlock_irqrestore(&stallion_lock, flags);
L
Linus Torvalds 已提交
1085 1086 1087 1088 1089
		return;
	}
	if ((tty->count == 1) && (portp->refcount != 1))
		portp->refcount = 1;
	if (portp->refcount-- > 1) {
A
Alan Cox 已提交
1090
		spin_unlock_irqrestore(&stallion_lock, flags);
L
Linus Torvalds 已提交
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
		return;
	}

	portp->refcount = 0;
	portp->flags |= ASYNC_CLOSING;

/*
 *	May want to wait for any data to drain before closing. The BUSY
 *	flag keeps track of whether we are still sending or not - it is
 *	very accurate for the cd1400, not quite so for the sc26198.
 *	(The sc26198 has no "end-of-data" interrupt only empty FIFO)
 */
	tty->closing = 1;
A
Alan Cox 已提交
1104 1105 1106

	spin_unlock_irqrestore(&stallion_lock, flags);

L
Linus Torvalds 已提交
1107 1108 1109 1110
	if (portp->closing_wait != ASYNC_CLOSING_WAIT_NONE)
		tty_wait_until_sent(tty, portp->closing_wait);
	stl_waituntilsent(tty, (HZ / 2));

A
Alan Cox 已提交
1111 1112

	spin_lock_irqsave(&stallion_lock, flags);
L
Linus Torvalds 已提交
1113
	portp->flags &= ~ASYNC_INITIALIZED;
A
Alan Cox 已提交
1114 1115
	spin_unlock_irqrestore(&stallion_lock, flags);

L
Linus Torvalds 已提交
1116 1117 1118 1119 1120 1121
	stl_disableintrs(portp);
	if (tty->termios->c_cflag & HUPCL)
		stl_setsignals(portp, 0, 0);
	stl_enablerxtx(portp, 0, 0);
	stl_flushbuffer(tty);
	portp->istate = 0;
1122
	if (portp->tx.buf != NULL) {
L
Linus Torvalds 已提交
1123
		kfree(portp->tx.buf);
1124 1125 1126
		portp->tx.buf = NULL;
		portp->tx.head = NULL;
		portp->tx.tail = NULL;
L
Linus Torvalds 已提交
1127 1128 1129 1130 1131
	}
	set_bit(TTY_IO_ERROR, &tty->flags);
	tty_ldisc_flush(tty);

	tty->closing = 0;
1132
	portp->tty = NULL;
L
Linus Torvalds 已提交
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152

	if (portp->openwaitcnt) {
		if (portp->close_delay)
			msleep_interruptible(jiffies_to_msecs(portp->close_delay));
		wake_up_interruptible(&portp->open_wait);
	}

	portp->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
	wake_up_interruptible(&portp->close_wait);
}

/*****************************************************************************/

/*
 *	Write routine. Take data and stuff it in to the TX ring queue.
 *	If transmit interrupts are not running then start them.
 */

static int stl_write(struct tty_struct *tty, const unsigned char *buf, int count)
{
J
Jiri Slaby 已提交
1153
	struct stlport	*portp;
L
Linus Torvalds 已提交
1154 1155 1156 1157
	unsigned int	len, stlen;
	unsigned char	*chbuf;
	char		*head, *tail;

1158
	pr_debug("stl_write(tty=%p,buf=%p,count=%d)\n", tty, buf, count);
L
Linus Torvalds 已提交
1159 1160

	portp = tty->driver_data;
1161
	if (portp == NULL)
1162
		return 0;
1163
	if (portp->tx.buf == NULL)
1164
		return 0;
L
Linus Torvalds 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202

/*
 *	If copying direct from user space we must cater for page faults,
 *	causing us to "sleep" here for a while. To handle this copy in all
 *	the data we need now, into a local buffer. Then when we got it all
 *	copy it into the TX buffer.
 */
	chbuf = (unsigned char *) buf;

	head = portp->tx.head;
	tail = portp->tx.tail;
	if (head >= tail) {
		len = STL_TXBUFSIZE - (head - tail) - 1;
		stlen = STL_TXBUFSIZE - (head - portp->tx.buf);
	} else {
		len = tail - head - 1;
		stlen = len;
	}

	len = MIN(len, count);
	count = 0;
	while (len > 0) {
		stlen = MIN(len, stlen);
		memcpy(head, chbuf, stlen);
		len -= stlen;
		chbuf += stlen;
		count += stlen;
		head += stlen;
		if (head >= (portp->tx.buf + STL_TXBUFSIZE)) {
			head = portp->tx.buf;
			stlen = tail - head;
		}
	}
	portp->tx.head = head;

	clear_bit(ASYI_TXLOW, &portp->istate);
	stl_startrxtx(portp, -1, 1);

1203
	return count;
L
Linus Torvalds 已提交
1204 1205 1206 1207 1208 1209
}

/*****************************************************************************/

static void stl_putchar(struct tty_struct *tty, unsigned char ch)
{
J
Jiri Slaby 已提交
1210
	struct stlport	*portp;
L
Linus Torvalds 已提交
1211 1212 1213
	unsigned int	len;
	char		*head, *tail;

1214
	pr_debug("stl_putchar(tty=%p,ch=%x)\n", tty, ch);
L
Linus Torvalds 已提交
1215

1216
	if (tty == NULL)
L
Linus Torvalds 已提交
1217 1218
		return;
	portp = tty->driver_data;
1219
	if (portp == NULL)
L
Linus Torvalds 已提交
1220
		return;
1221
	if (portp->tx.buf == NULL)
L
Linus Torvalds 已提交
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
		return;

	head = portp->tx.head;
	tail = portp->tx.tail;

	len = (head >= tail) ? (STL_TXBUFSIZE - (head - tail)) : (tail - head);
	len--;

	if (len > 0) {
		*head++ = ch;
		if (head >= (portp->tx.buf + STL_TXBUFSIZE))
			head = portp->tx.buf;
	}	
	portp->tx.head = head;
}

/*****************************************************************************/

/*
 *	If there are any characters in the buffer then make sure that TX
 *	interrupts are on and get'em out. Normally used after the putchar
 *	routine has been called.
 */

static void stl_flushchars(struct tty_struct *tty)
{
J
Jiri Slaby 已提交
1248
	struct stlport	*portp;
L
Linus Torvalds 已提交
1249

1250
	pr_debug("stl_flushchars(tty=%p)\n", tty);
L
Linus Torvalds 已提交
1251

1252
	if (tty == NULL)
L
Linus Torvalds 已提交
1253 1254
		return;
	portp = tty->driver_data;
1255
	if (portp == NULL)
L
Linus Torvalds 已提交
1256
		return;
1257
	if (portp->tx.buf == NULL)
L
Linus Torvalds 已提交
1258 1259 1260 1261 1262 1263 1264 1265 1266
		return;

	stl_startrxtx(portp, -1, 1);
}

/*****************************************************************************/

static int stl_writeroom(struct tty_struct *tty)
{
J
Jiri Slaby 已提交
1267
	struct stlport	*portp;
L
Linus Torvalds 已提交
1268 1269
	char		*head, *tail;

1270
	pr_debug("stl_writeroom(tty=%p)\n", tty);
L
Linus Torvalds 已提交
1271

1272
	if (tty == NULL)
1273
		return 0;
L
Linus Torvalds 已提交
1274
	portp = tty->driver_data;
1275
	if (portp == NULL)
1276
		return 0;
1277
	if (portp->tx.buf == NULL)
1278
		return 0;
L
Linus Torvalds 已提交
1279 1280 1281

	head = portp->tx.head;
	tail = portp->tx.tail;
1282
	return ((head >= tail) ? (STL_TXBUFSIZE - (head - tail) - 1) : (tail - head - 1));
L
Linus Torvalds 已提交
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
}

/*****************************************************************************/

/*
 *	Return number of chars in the TX buffer. Normally we would just
 *	calculate the number of chars in the buffer and return that, but if
 *	the buffer is empty and TX interrupts are still on then we return
 *	that the buffer still has 1 char in it. This way whoever called us
 *	will not think that ALL chars have drained - since the UART still
 *	must have some chars in it (we are busy after all).
 */

static int stl_charsinbuffer(struct tty_struct *tty)
{
J
Jiri Slaby 已提交
1298
	struct stlport	*portp;
L
Linus Torvalds 已提交
1299 1300 1301
	unsigned int	size;
	char		*head, *tail;

1302
	pr_debug("stl_charsinbuffer(tty=%p)\n", tty);
L
Linus Torvalds 已提交
1303

1304
	if (tty == NULL)
1305
		return 0;
L
Linus Torvalds 已提交
1306
	portp = tty->driver_data;
1307
	if (portp == NULL)
1308
		return 0;
1309
	if (portp->tx.buf == NULL)
1310
		return 0;
L
Linus Torvalds 已提交
1311 1312 1313 1314 1315 1316

	head = portp->tx.head;
	tail = portp->tx.tail;
	size = (head >= tail) ? (head - tail) : (STL_TXBUFSIZE - (tail - head));
	if ((size == 0) && test_bit(ASYI_TXBUSY, &portp->istate))
		size = 1;
1317
	return size;
L
Linus Torvalds 已提交
1318 1319 1320 1321 1322 1323 1324 1325
}

/*****************************************************************************/

/*
 *	Generate the serial struct info.
 */

J
Jiri Slaby 已提交
1326
static int stl_getserial(struct stlport *portp, struct serial_struct __user *sp)
L
Linus Torvalds 已提交
1327 1328
{
	struct serial_struct	sio;
J
Jiri Slaby 已提交
1329
	struct stlbrd		*brdp;
L
Linus Torvalds 已提交
1330

1331
	pr_debug("stl_getserial(portp=%p,sp=%p)\n", portp, sp);
L
Linus Torvalds 已提交
1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350

	memset(&sio, 0, sizeof(struct serial_struct));
	sio.line = portp->portnr;
	sio.port = portp->ioaddr;
	sio.flags = portp->flags;
	sio.baud_base = portp->baud_base;
	sio.close_delay = portp->close_delay;
	sio.closing_wait = portp->closing_wait;
	sio.custom_divisor = portp->custom_divisor;
	sio.hub6 = 0;
	if (portp->uartp == &stl_cd1400uart) {
		sio.type = PORT_CIRRUS;
		sio.xmit_fifo_size = CD1400_TXFIFOSIZE;
	} else {
		sio.type = PORT_UNKNOWN;
		sio.xmit_fifo_size = SC26198_TXFIFOSIZE;
	}

	brdp = stl_brds[portp->brdnr];
1351
	if (brdp != NULL)
L
Linus Torvalds 已提交
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
		sio.irq = brdp->irq;

	return copy_to_user(sp, &sio, sizeof(struct serial_struct)) ? -EFAULT : 0;
}

/*****************************************************************************/

/*
 *	Set port according to the serial struct info.
 *	At this point we do not do any auto-configure stuff, so we will
 *	just quietly ignore any requests to change irq, etc.
 */

J
Jiri Slaby 已提交
1365
static int stl_setserial(struct stlport *portp, struct serial_struct __user *sp)
L
Linus Torvalds 已提交
1366 1367 1368
{
	struct serial_struct	sio;

1369
	pr_debug("stl_setserial(portp=%p,sp=%p)\n", portp, sp);
L
Linus Torvalds 已提交
1370 1371 1372 1373 1374 1375 1376 1377

	if (copy_from_user(&sio, sp, sizeof(struct serial_struct)))
		return -EFAULT;
	if (!capable(CAP_SYS_ADMIN)) {
		if ((sio.baud_base != portp->baud_base) ||
		    (sio.close_delay != portp->close_delay) ||
		    ((sio.flags & ~ASYNC_USR_MASK) !=
		    (portp->flags & ~ASYNC_USR_MASK)))
1378
			return -EPERM;
L
Linus Torvalds 已提交
1379 1380 1381 1382 1383 1384 1385 1386 1387
	} 

	portp->flags = (portp->flags & ~ASYNC_USR_MASK) |
		(sio.flags & ASYNC_USR_MASK);
	portp->baud_base = sio.baud_base;
	portp->close_delay = sio.close_delay;
	portp->closing_wait = sio.closing_wait;
	portp->custom_divisor = sio.custom_divisor;
	stl_setport(portp, portp->tty->termios);
1388
	return 0;
L
Linus Torvalds 已提交
1389 1390 1391 1392 1393 1394
}

/*****************************************************************************/

static int stl_tiocmget(struct tty_struct *tty, struct file *file)
{
J
Jiri Slaby 已提交
1395
	struct stlport	*portp;
L
Linus Torvalds 已提交
1396

1397
	if (tty == NULL)
1398
		return -ENODEV;
L
Linus Torvalds 已提交
1399
	portp = tty->driver_data;
1400
	if (portp == NULL)
1401
		return -ENODEV;
L
Linus Torvalds 已提交
1402
	if (tty->flags & (1 << TTY_IO_ERROR))
1403
		return -EIO;
L
Linus Torvalds 已提交
1404 1405 1406 1407 1408 1409 1410

	return stl_getsignals(portp);
}

static int stl_tiocmset(struct tty_struct *tty, struct file *file,
			unsigned int set, unsigned int clear)
{
J
Jiri Slaby 已提交
1411
	struct stlport	*portp;
L
Linus Torvalds 已提交
1412 1413
	int rts = -1, dtr = -1;

1414
	if (tty == NULL)
1415
		return -ENODEV;
L
Linus Torvalds 已提交
1416
	portp = tty->driver_data;
1417
	if (portp == NULL)
1418
		return -ENODEV;
L
Linus Torvalds 已提交
1419
	if (tty->flags & (1 << TTY_IO_ERROR))
1420
		return -EIO;
L
Linus Torvalds 已提交
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436

	if (set & TIOCM_RTS)
		rts = 1;
	if (set & TIOCM_DTR)
		dtr = 1;
	if (clear & TIOCM_RTS)
		rts = 0;
	if (clear & TIOCM_DTR)
		dtr = 0;

	stl_setsignals(portp, dtr, rts);
	return 0;
}

static int stl_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg)
{
J
Jiri Slaby 已提交
1437
	struct stlport	*portp;
L
Linus Torvalds 已提交
1438 1439 1440 1441
	unsigned int	ival;
	int		rc;
	void __user *argp = (void __user *)arg;

1442 1443
	pr_debug("stl_ioctl(tty=%p,file=%p,cmd=%x,arg=%lx)\n", tty, file, cmd,
			arg);
L
Linus Torvalds 已提交
1444

1445
	if (tty == NULL)
1446
		return -ENODEV;
L
Linus Torvalds 已提交
1447
	portp = tty->driver_data;
1448
	if (portp == NULL)
1449
		return -ENODEV;
L
Linus Torvalds 已提交
1450 1451 1452 1453

	if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
 	    (cmd != COM_GETPORTSTATS) && (cmd != COM_CLRPORTSTATS)) {
		if (tty->flags & (1 << TTY_IO_ERROR))
1454
			return -EIO;
L
Linus Torvalds 已提交
1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
	}

	rc = 0;

	switch (cmd) {
	case TIOCGSOFTCAR:
		rc = put_user(((tty->termios->c_cflag & CLOCAL) ? 1 : 0),
			(unsigned __user *) argp);
		break;
	case TIOCSSOFTCAR:
		if (get_user(ival, (unsigned int __user *) arg))
			return -EFAULT;
		tty->termios->c_cflag =
				(tty->termios->c_cflag & ~CLOCAL) |
				(ival ? CLOCAL : 0);
		break;
	case TIOCGSERIAL:
		rc = stl_getserial(portp, argp);
		break;
	case TIOCSSERIAL:
		rc = stl_setserial(portp, argp);
		break;
	case COM_GETPORTSTATS:
		rc = stl_getportstats(portp, argp);
		break;
	case COM_CLRPORTSTATS:
		rc = stl_clrportstats(portp, argp);
		break;
	case TIOCSERCONFIG:
	case TIOCSERGWILD:
	case TIOCSERSWILD:
	case TIOCSERGETLSR:
	case TIOCSERGSTRUCT:
	case TIOCSERGETMULTI:
	case TIOCSERSETMULTI:
	default:
		rc = -ENOIOCTLCMD;
		break;
	}

1495
	return rc;
L
Linus Torvalds 已提交
1496 1497 1498 1499 1500 1501
}

/*****************************************************************************/

static void stl_settermios(struct tty_struct *tty, struct termios *old)
{
J
Jiri Slaby 已提交
1502
	struct stlport	*portp;
L
Linus Torvalds 已提交
1503 1504
	struct termios	*tiosp;

1505
	pr_debug("stl_settermios(tty=%p,old=%p)\n", tty, old);
L
Linus Torvalds 已提交
1506

1507
	if (tty == NULL)
L
Linus Torvalds 已提交
1508 1509
		return;
	portp = tty->driver_data;
1510
	if (portp == NULL)
L
Linus Torvalds 已提交
1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
		return;

	tiosp = tty->termios;
	if ((tiosp->c_cflag == old->c_cflag) &&
	    (tiosp->c_iflag == old->c_iflag))
		return;

	stl_setport(portp, tiosp);
	stl_setsignals(portp, ((tiosp->c_cflag & (CBAUD & ~CBAUDEX)) ? 1 : 0),
		-1);
	if ((old->c_cflag & CRTSCTS) && ((tiosp->c_cflag & CRTSCTS) == 0)) {
		tty->hw_stopped = 0;
		stl_start(tty);
	}
	if (((old->c_cflag & CLOCAL) == 0) && (tiosp->c_cflag & CLOCAL))
		wake_up_interruptible(&portp->open_wait);
}

/*****************************************************************************/

/*
 *	Attempt to flow control who ever is sending us data. Based on termios
 *	settings use software or/and hardware flow control.
 */

static void stl_throttle(struct tty_struct *tty)
{
J
Jiri Slaby 已提交
1538
	struct stlport	*portp;
L
Linus Torvalds 已提交
1539

1540
	pr_debug("stl_throttle(tty=%p)\n", tty);
L
Linus Torvalds 已提交
1541

1542
	if (tty == NULL)
L
Linus Torvalds 已提交
1543 1544
		return;
	portp = tty->driver_data;
1545
	if (portp == NULL)
L
Linus Torvalds 已提交
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
		return;
	stl_flowctrl(portp, 0);
}

/*****************************************************************************/

/*
 *	Unflow control the device sending us data...
 */

static void stl_unthrottle(struct tty_struct *tty)
{
J
Jiri Slaby 已提交
1558
	struct stlport	*portp;
L
Linus Torvalds 已提交
1559

1560
	pr_debug("stl_unthrottle(tty=%p)\n", tty);
L
Linus Torvalds 已提交
1561

1562
	if (tty == NULL)
L
Linus Torvalds 已提交
1563 1564
		return;
	portp = tty->driver_data;
1565
	if (portp == NULL)
L
Linus Torvalds 已提交
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
		return;
	stl_flowctrl(portp, 1);
}

/*****************************************************************************/

/*
 *	Stop the transmitter. Basically to do this we will just turn TX
 *	interrupts off.
 */

static void stl_stop(struct tty_struct *tty)
{
J
Jiri Slaby 已提交
1579
	struct stlport	*portp;
L
Linus Torvalds 已提交
1580

1581
	pr_debug("stl_stop(tty=%p)\n", tty);
L
Linus Torvalds 已提交
1582

1583
	if (tty == NULL)
L
Linus Torvalds 已提交
1584 1585
		return;
	portp = tty->driver_data;
1586
	if (portp == NULL)
L
Linus Torvalds 已提交
1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598
		return;
	stl_startrxtx(portp, -1, 0);
}

/*****************************************************************************/

/*
 *	Start the transmitter again. Just turn TX interrupts back on.
 */

static void stl_start(struct tty_struct *tty)
{
J
Jiri Slaby 已提交
1599
	struct stlport	*portp;
L
Linus Torvalds 已提交
1600

1601
	pr_debug("stl_start(tty=%p)\n", tty);
L
Linus Torvalds 已提交
1602

1603
	if (tty == NULL)
L
Linus Torvalds 已提交
1604 1605
		return;
	portp = tty->driver_data;
1606
	if (portp == NULL)
L
Linus Torvalds 已提交
1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
		return;
	stl_startrxtx(portp, -1, 1);
}

/*****************************************************************************/

/*
 *	Hangup this port. This is pretty much like closing the port, only
 *	a little more brutal. No waiting for data to drain. Shutdown the
 *	port and maybe drop signals.
 */

static void stl_hangup(struct tty_struct *tty)
{
J
Jiri Slaby 已提交
1621
	struct stlport	*portp;
L
Linus Torvalds 已提交
1622

1623
	pr_debug("stl_hangup(tty=%p)\n", tty);
L
Linus Torvalds 已提交
1624

1625
	if (tty == NULL)
L
Linus Torvalds 已提交
1626 1627
		return;
	portp = tty->driver_data;
1628
	if (portp == NULL)
L
Linus Torvalds 已提交
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
		return;

	portp->flags &= ~ASYNC_INITIALIZED;
	stl_disableintrs(portp);
	if (tty->termios->c_cflag & HUPCL)
		stl_setsignals(portp, 0, 0);
	stl_enablerxtx(portp, 0, 0);
	stl_flushbuffer(tty);
	portp->istate = 0;
	set_bit(TTY_IO_ERROR, &tty->flags);
1639
	if (portp->tx.buf != NULL) {
L
Linus Torvalds 已提交
1640
		kfree(portp->tx.buf);
1641 1642 1643
		portp->tx.buf = NULL;
		portp->tx.head = NULL;
		portp->tx.tail = NULL;
L
Linus Torvalds 已提交
1644
	}
1645
	portp->tty = NULL;
L
Linus Torvalds 已提交
1646 1647 1648 1649 1650 1651 1652 1653 1654
	portp->flags &= ~ASYNC_NORMAL_ACTIVE;
	portp->refcount = 0;
	wake_up_interruptible(&portp->open_wait);
}

/*****************************************************************************/

static void stl_flushbuffer(struct tty_struct *tty)
{
J
Jiri Slaby 已提交
1655
	struct stlport	*portp;
L
Linus Torvalds 已提交
1656

1657
	pr_debug("stl_flushbuffer(tty=%p)\n", tty);
L
Linus Torvalds 已提交
1658

1659
	if (tty == NULL)
L
Linus Torvalds 已提交
1660 1661
		return;
	portp = tty->driver_data;
1662
	if (portp == NULL)
L
Linus Torvalds 已提交
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
		return;

	stl_flush(portp);
	tty_wakeup(tty);
}

/*****************************************************************************/

static void stl_breakctl(struct tty_struct *tty, int state)
{
J
Jiri Slaby 已提交
1673
	struct stlport	*portp;
L
Linus Torvalds 已提交
1674

1675
	pr_debug("stl_breakctl(tty=%p,state=%d)\n", tty, state);
L
Linus Torvalds 已提交
1676

1677
	if (tty == NULL)
L
Linus Torvalds 已提交
1678 1679
		return;
	portp = tty->driver_data;
1680
	if (portp == NULL)
L
Linus Torvalds 已提交
1681 1682 1683 1684 1685 1686 1687 1688 1689
		return;

	stl_sendbreak(portp, ((state == -1) ? 1 : 2));
}

/*****************************************************************************/

static void stl_waituntilsent(struct tty_struct *tty, int timeout)
{
J
Jiri Slaby 已提交
1690
	struct stlport	*portp;
L
Linus Torvalds 已提交
1691 1692
	unsigned long	tend;

1693
	pr_debug("stl_waituntilsent(tty=%p,timeout=%d)\n", tty, timeout);
L
Linus Torvalds 已提交
1694

1695
	if (tty == NULL)
L
Linus Torvalds 已提交
1696 1697
		return;
	portp = tty->driver_data;
1698
	if (portp == NULL)
L
Linus Torvalds 已提交
1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
		return;

	if (timeout == 0)
		timeout = HZ;
	tend = jiffies + timeout;

	while (stl_datastate(portp)) {
		if (signal_pending(current))
			break;
		msleep_interruptible(20);
		if (time_after_eq(jiffies, tend))
			break;
	}
}

/*****************************************************************************/

static void stl_sendxchar(struct tty_struct *tty, char ch)
{
J
Jiri Slaby 已提交
1718
	struct stlport	*portp;
L
Linus Torvalds 已提交
1719

1720
	pr_debug("stl_sendxchar(tty=%p,ch=%x)\n", tty, ch);
L
Linus Torvalds 已提交
1721

1722
	if (tty == NULL)
L
Linus Torvalds 已提交
1723 1724
		return;
	portp = tty->driver_data;
1725
	if (portp == NULL)
L
Linus Torvalds 已提交
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745
		return;

	if (ch == STOP_CHAR(tty))
		stl_sendflow(portp, 0);
	else if (ch == START_CHAR(tty))
		stl_sendflow(portp, 1);
	else
		stl_putchar(tty, ch);
}

/*****************************************************************************/

#define	MAXLINE		80

/*
 *	Format info for a specified port. The line is deliberately limited
 *	to 80 characters. (If it is too long it will be truncated, if too
 *	short then padded with spaces).
 */

J
Jiri Slaby 已提交
1746
static int stl_portinfo(struct stlport *portp, int portnr, char *pos)
L
Linus Torvalds 已提交
1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780
{
	char	*sp;
	int	sigs, cnt;

	sp = pos;
	sp += sprintf(sp, "%d: uart:%s tx:%d rx:%d",
		portnr, (portp->hwid == 1) ? "SC26198" : "CD1400",
		(int) portp->stats.txtotal, (int) portp->stats.rxtotal);

	if (portp->stats.rxframing)
		sp += sprintf(sp, " fe:%d", (int) portp->stats.rxframing);
	if (portp->stats.rxparity)
		sp += sprintf(sp, " pe:%d", (int) portp->stats.rxparity);
	if (portp->stats.rxbreaks)
		sp += sprintf(sp, " brk:%d", (int) portp->stats.rxbreaks);
	if (portp->stats.rxoverrun)
		sp += sprintf(sp, " oe:%d", (int) portp->stats.rxoverrun);

	sigs = stl_getsignals(portp);
	cnt = sprintf(sp, "%s%s%s%s%s ",
		(sigs & TIOCM_RTS) ? "|RTS" : "",
		(sigs & TIOCM_CTS) ? "|CTS" : "",
		(sigs & TIOCM_DTR) ? "|DTR" : "",
		(sigs & TIOCM_CD) ? "|DCD" : "",
		(sigs & TIOCM_DSR) ? "|DSR" : "");
	*sp = ' ';
	sp += cnt;

	for (cnt = (sp - pos); (cnt < (MAXLINE - 1)); cnt++)
		*sp++ = ' ';
	if (cnt >= MAXLINE)
		pos[(MAXLINE - 2)] = '+';
	pos[(MAXLINE - 1)] = '\n';

1781
	return MAXLINE;
L
Linus Torvalds 已提交
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
}

/*****************************************************************************/

/*
 *	Port info, read from the /proc file system.
 */

static int stl_readproc(char *page, char **start, off_t off, int count, int *eof, void *data)
{
J
Jiri Slaby 已提交
1792 1793 1794
	struct stlbrd	*brdp;
	struct stlpanel	*panelp;
	struct stlport	*portp;
L
Linus Torvalds 已提交
1795 1796 1797 1798
	int		brdnr, panelnr, portnr, totalport;
	int		curoff, maxoff;
	char		*pos;

1799 1800
	pr_debug("stl_readproc(page=%p,start=%p,off=%lx,count=%d,eof=%p,"
		"data=%p\n", page, start, off, count, eof, data);
L
Linus Torvalds 已提交
1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820

	pos = page;
	totalport = 0;
	curoff = 0;

	if (off == 0) {
		pos += sprintf(pos, "%s: version %s", stl_drvtitle,
			stl_drvversion);
		while (pos < (page + MAXLINE - 1))
			*pos++ = ' ';
		*pos++ = '\n';
	}
	curoff =  MAXLINE;

/*
 *	We scan through for each board, panel and port. The offset is
 *	calculated on the fly, and irrelevant ports are skipped.
 */
	for (brdnr = 0; (brdnr < stl_nrbrds); brdnr++) {
		brdp = stl_brds[brdnr];
1821
		if (brdp == NULL)
L
Linus Torvalds 已提交
1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834
			continue;
		if (brdp->state == 0)
			continue;

		maxoff = curoff + (brdp->nrports * MAXLINE);
		if (off >= maxoff) {
			curoff = maxoff;
			continue;
		}

		totalport = brdnr * STL_MAXPORTS;
		for (panelnr = 0; (panelnr < brdp->nrpanels); panelnr++) {
			panelp = brdp->panels[panelnr];
1835
			if (panelp == NULL)
L
Linus Torvalds 已提交
1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
				continue;

			maxoff = curoff + (panelp->nrports * MAXLINE);
			if (off >= maxoff) {
				curoff = maxoff;
				totalport += panelp->nrports;
				continue;
			}

			for (portnr = 0; (portnr < panelp->nrports); portnr++,
			    totalport++) {
				portp = panelp->ports[portnr];
1848
				if (portp == NULL)
L
Linus Torvalds 已提交
1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
					continue;
				if (off >= (curoff += MAXLINE))
					continue;
				if ((pos - page + MAXLINE) > count)
					goto stl_readdone;
				pos += stl_portinfo(portp, totalport, pos);
			}
		}
	}

	*eof = 1;

stl_readdone:
	*start = page;
1863
	return (pos - page);
L
Linus Torvalds 已提交
1864 1865 1866 1867 1868 1869 1870 1871 1872
}

/*****************************************************************************/

/*
 *	All board interrupts are vectored through here first. This code then
 *	calls off to the approrpriate board interrupt handlers.
 */

1873
static irqreturn_t stl_intr(int irq, void *dev_id)
L
Linus Torvalds 已提交
1874
{
J
Jiri Slaby 已提交
1875
	struct stlbrd *brdp = dev_id;
L
Linus Torvalds 已提交
1876

1877
	pr_debug("stl_intr(brdp=%p,irq=%d)\n", brdp, irq);
L
Linus Torvalds 已提交
1878 1879 1880 1881 1882 1883 1884 1885 1886 1887

	return IRQ_RETVAL((* brdp->isr)(brdp));
}

/*****************************************************************************/

/*
 *	Interrupt service routine for EasyIO board types.
 */

J
Jiri Slaby 已提交
1888
static int stl_eiointr(struct stlbrd *brdp)
L
Linus Torvalds 已提交
1889
{
J
Jiri Slaby 已提交
1890
	struct stlpanel	*panelp;
L
Linus Torvalds 已提交
1891 1892 1893
	unsigned int	iobase;
	int		handled = 0;

A
Alan Cox 已提交
1894
	spin_lock(&brd_lock);
L
Linus Torvalds 已提交
1895 1896 1897 1898 1899 1900
	panelp = brdp->panels[0];
	iobase = panelp->iobase;
	while (inb(brdp->iostatus) & EIO_INTRPEND) {
		handled = 1;
		(* panelp->isr)(panelp, iobase);
	}
A
Alan Cox 已提交
1901
	spin_unlock(&brd_lock);
L
Linus Torvalds 已提交
1902 1903 1904 1905 1906 1907 1908 1909 1910
	return handled;
}

/*****************************************************************************/

/*
 *	Interrupt service routine for ECH-AT board types.
 */

J
Jiri Slaby 已提交
1911
static int stl_echatintr(struct stlbrd *brdp)
L
Linus Torvalds 已提交
1912
{
J
Jiri Slaby 已提交
1913
	struct stlpanel	*panelp;
L
Linus Torvalds 已提交
1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941
	unsigned int	ioaddr;
	int		bnknr;
	int		handled = 0;

	outb((brdp->ioctrlval | ECH_BRDENABLE), brdp->ioctrl);

	while (inb(brdp->iostatus) & ECH_INTRPEND) {
		handled = 1;
		for (bnknr = 0; (bnknr < brdp->nrbnks); bnknr++) {
			ioaddr = brdp->bnkstataddr[bnknr];
			if (inb(ioaddr) & ECH_PNLINTRPEND) {
				panelp = brdp->bnk2panel[bnknr];
				(* panelp->isr)(panelp, (ioaddr & 0xfffc));
			}
		}
	}

	outb((brdp->ioctrlval | ECH_BRDDISABLE), brdp->ioctrl);

	return handled;
}

/*****************************************************************************/

/*
 *	Interrupt service routine for ECH-MCA board types.
 */

J
Jiri Slaby 已提交
1942
static int stl_echmcaintr(struct stlbrd *brdp)
L
Linus Torvalds 已提交
1943
{
J
Jiri Slaby 已提交
1944
	struct stlpanel	*panelp;
L
Linus Torvalds 已提交
1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967
	unsigned int	ioaddr;
	int		bnknr;
	int		handled = 0;

	while (inb(brdp->iostatus) & ECH_INTRPEND) {
		handled = 1;
		for (bnknr = 0; (bnknr < brdp->nrbnks); bnknr++) {
			ioaddr = brdp->bnkstataddr[bnknr];
			if (inb(ioaddr) & ECH_PNLINTRPEND) {
				panelp = brdp->bnk2panel[bnknr];
				(* panelp->isr)(panelp, (ioaddr & 0xfffc));
			}
		}
	}
	return handled;
}

/*****************************************************************************/

/*
 *	Interrupt service routine for ECH-PCI board types.
 */

J
Jiri Slaby 已提交
1968
static int stl_echpciintr(struct stlbrd *brdp)
L
Linus Torvalds 已提交
1969
{
J
Jiri Slaby 已提交
1970
	struct stlpanel	*panelp;
L
Linus Torvalds 已提交
1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998
	unsigned int	ioaddr;
	int		bnknr, recheck;
	int		handled = 0;

	while (1) {
		recheck = 0;
		for (bnknr = 0; (bnknr < brdp->nrbnks); bnknr++) {
			outb(brdp->bnkpageaddr[bnknr], brdp->ioctrl);
			ioaddr = brdp->bnkstataddr[bnknr];
			if (inb(ioaddr) & ECH_PNLINTRPEND) {
				panelp = brdp->bnk2panel[bnknr];
				(* panelp->isr)(panelp, (ioaddr & 0xfffc));
				recheck++;
				handled = 1;
			}
		}
		if (! recheck)
			break;
	}
	return handled;
}

/*****************************************************************************/

/*
 *	Interrupt service routine for ECH-8/64-PCI board types.
 */

J
Jiri Slaby 已提交
1999
static int stl_echpci64intr(struct stlbrd *brdp)
L
Linus Torvalds 已提交
2000
{
J
Jiri Slaby 已提交
2001
	struct stlpanel	*panelp;
L
Linus Torvalds 已提交
2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024
	unsigned int	ioaddr;
	int		bnknr;
	int		handled = 0;

	while (inb(brdp->ioctrl) & 0x1) {
		handled = 1;
		for (bnknr = 0; (bnknr < brdp->nrbnks); bnknr++) {
			ioaddr = brdp->bnkstataddr[bnknr];
			if (inb(ioaddr) & ECH_PNLINTRPEND) {
				panelp = brdp->bnk2panel[bnknr];
				(* panelp->isr)(panelp, (ioaddr & 0xfffc));
			}
		}
	}

	return handled;
}

/*****************************************************************************/

/*
 *	Service an off-level request for some channel.
 */
2025
static void stl_offintr(struct work_struct *work)
L
Linus Torvalds 已提交
2026
{
J
Jiri Slaby 已提交
2027
	struct stlport		*portp = container_of(work, struct stlport, tqueue);
L
Linus Torvalds 已提交
2028 2029 2030
	struct tty_struct	*tty;
	unsigned int		oldsigs;

2031
	pr_debug("stl_offintr(portp=%p)\n", portp);
L
Linus Torvalds 已提交
2032

2033
	if (portp == NULL)
L
Linus Torvalds 已提交
2034 2035 2036
		return;

	tty = portp->tty;
2037
	if (tty == NULL)
L
Linus Torvalds 已提交
2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063
		return;

	lock_kernel();
	if (test_bit(ASYI_TXLOW, &portp->istate)) {
		tty_wakeup(tty);
	}
	if (test_bit(ASYI_DCDCHANGE, &portp->istate)) {
		clear_bit(ASYI_DCDCHANGE, &portp->istate);
		oldsigs = portp->sigs;
		portp->sigs = stl_getsignals(portp);
		if ((portp->sigs & TIOCM_CD) && ((oldsigs & TIOCM_CD) == 0))
			wake_up_interruptible(&portp->open_wait);
		if ((oldsigs & TIOCM_CD) && ((portp->sigs & TIOCM_CD) == 0)) {
			if (portp->flags & ASYNC_CHECK_CD)
				tty_hangup(tty);	/* FIXME: module removal race here - AKPM */
		}
	}
	unlock_kernel();
}

/*****************************************************************************/

/*
 *	Initialize all the ports on a panel.
 */

J
Jiri Slaby 已提交
2064
static int __init stl_initports(struct stlbrd *brdp, struct stlpanel *panelp)
L
Linus Torvalds 已提交
2065
{
J
Jiri Slaby 已提交
2066
	struct stlport	*portp;
L
Linus Torvalds 已提交
2067 2068
	int		chipmask, i;

2069
	pr_debug("stl_initports(brdp=%p,panelp=%p)\n", brdp, panelp);
L
Linus Torvalds 已提交
2070 2071 2072 2073 2074 2075 2076 2077

	chipmask = stl_panelinit(brdp, panelp);

/*
 *	All UART's are initialized (if found!). Now go through and setup
 *	each ports data structures.
 */
	for (i = 0; (i < panelp->nrports); i++) {
J
Jiri Slaby 已提交
2078
		portp = kzalloc(sizeof(struct stlport), GFP_KERNEL);
2079
		if (!portp) {
L
Linus Torvalds 已提交
2080
			printk("STALLION: failed to allocate memory "
J
Jiri Slaby 已提交
2081
				"(size=%Zd)\n", sizeof(struct stlport));
L
Linus Torvalds 已提交
2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093
			break;
		}

		portp->magic = STL_PORTMAGIC;
		portp->portnr = i;
		portp->brdnr = panelp->brdnr;
		portp->panelnr = panelp->panelnr;
		portp->uartp = panelp->uartp;
		portp->clk = brdp->clk;
		portp->baud_base = STL_BAUDBASE;
		portp->close_delay = STL_CLOSEDELAY;
		portp->closing_wait = 30 * HZ;
2094
		INIT_WORK(&portp->tqueue, stl_offintr);
L
Linus Torvalds 已提交
2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
		init_waitqueue_head(&portp->open_wait);
		init_waitqueue_head(&portp->close_wait);
		portp->stats.brd = portp->brdnr;
		portp->stats.panel = portp->panelnr;
		portp->stats.port = portp->portnr;
		panelp->ports[i] = portp;
		stl_portinit(brdp, panelp, portp);
	}

	return(0);
}

/*****************************************************************************/

/*
 *	Try to find and initialize an EasyIO board.
 */

J
Jiri Slaby 已提交
2113
static inline int stl_initeio(struct stlbrd *brdp)
L
Linus Torvalds 已提交
2114
{
J
Jiri Slaby 已提交
2115
	struct stlpanel	*panelp;
L
Linus Torvalds 已提交
2116 2117 2118 2119
	unsigned int	status;
	char		*name;
	int		rc;

2120
	pr_debug("stl_initeio(brdp=%p)\n", brdp);
L
Linus Torvalds 已提交
2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211

	brdp->ioctrl = brdp->ioaddr1 + 1;
	brdp->iostatus = brdp->ioaddr1 + 2;

	status = inb(brdp->iostatus);
	if ((status & EIO_IDBITMASK) == EIO_MK3)
		brdp->ioctrl++;

/*
 *	Handle board specific stuff now. The real difference is PCI
 *	or not PCI.
 */
	if (brdp->brdtype == BRD_EASYIOPCI) {
		brdp->iosize1 = 0x80;
		brdp->iosize2 = 0x80;
		name = "serial(EIO-PCI)";
		outb(0x41, (brdp->ioaddr2 + 0x4c));
	} else {
		brdp->iosize1 = 8;
		name = "serial(EIO)";
		if ((brdp->irq < 0) || (brdp->irq > 15) ||
		    (stl_vecmap[brdp->irq] == (unsigned char) 0xff)) {
			printk("STALLION: invalid irq=%d for brd=%d\n",
				brdp->irq, brdp->brdnr);
			return(-EINVAL);
		}
		outb((stl_vecmap[brdp->irq] | EIO_0WS |
			((brdp->irqtype) ? EIO_INTLEVEL : EIO_INTEDGE)),
			brdp->ioctrl);
	}

	if (!request_region(brdp->ioaddr1, brdp->iosize1, name)) {
		printk(KERN_WARNING "STALLION: Warning, board %d I/O address "
			"%x conflicts with another device\n", brdp->brdnr, 
			brdp->ioaddr1);
		return(-EBUSY);
	}
	
	if (brdp->iosize2 > 0)
		if (!request_region(brdp->ioaddr2, brdp->iosize2, name)) {
			printk(KERN_WARNING "STALLION: Warning, board %d I/O "
				"address %x conflicts with another device\n",
				brdp->brdnr, brdp->ioaddr2);
			printk(KERN_WARNING "STALLION: Warning, also "
				"releasing board %d I/O address %x \n", 
				brdp->brdnr, brdp->ioaddr1);
			release_region(brdp->ioaddr1, brdp->iosize1);
        		return(-EBUSY);
		}

/*
 *	Everything looks OK, so let's go ahead and probe for the hardware.
 */
	brdp->clk = CD1400_CLK;
	brdp->isr = stl_eiointr;

	switch (status & EIO_IDBITMASK) {
	case EIO_8PORTM:
		brdp->clk = CD1400_CLK8M;
		/* fall thru */
	case EIO_8PORTRS:
	case EIO_8PORTDI:
		brdp->nrports = 8;
		break;
	case EIO_4PORTRS:
		brdp->nrports = 4;
		break;
	case EIO_MK3:
		switch (status & EIO_BRDMASK) {
		case ID_BRD4:
			brdp->nrports = 4;
			break;
		case ID_BRD8:
			brdp->nrports = 8;
			break;
		case ID_BRD16:
			brdp->nrports = 16;
			break;
		default:
			return(-ENODEV);
		}
		break;
	default:
		return(-ENODEV);
	}

/*
 *	We have verified that the board is actually present, so now we
 *	can complete the setup.
 */

J
Jiri Slaby 已提交
2212
	panelp = kzalloc(sizeof(struct stlpanel), GFP_KERNEL);
2213
	if (!panelp) {
L
Linus Torvalds 已提交
2214
		printk(KERN_WARNING "STALLION: failed to allocate memory "
J
Jiri Slaby 已提交
2215
			"(size=%Zd)\n", sizeof(struct stlpanel));
2216
		return -ENOMEM;
L
Linus Torvalds 已提交
2217 2218 2219 2220 2221 2222 2223 2224 2225
	}

	panelp->magic = STL_PANELMAGIC;
	panelp->brdnr = brdp->brdnr;
	panelp->panelnr = 0;
	panelp->nrports = brdp->nrports;
	panelp->iobase = brdp->ioaddr1;
	panelp->hwid = status;
	if ((status & EIO_IDBITMASK) == EIO_MK3) {
2226
		panelp->uartp = &stl_sc26198uart;
L
Linus Torvalds 已提交
2227 2228
		panelp->isr = stl_sc26198intr;
	} else {
2229
		panelp->uartp = &stl_cd1400uart;
L
Linus Torvalds 已提交
2230 2231 2232 2233 2234 2235 2236
		panelp->isr = stl_cd1400eiointr;
	}

	brdp->panels[0] = panelp;
	brdp->nrpanels = 1;
	brdp->state |= BRD_FOUND;
	brdp->hwid = status;
2237
	if (request_irq(brdp->irq, stl_intr, IRQF_SHARED, name, brdp) != 0) {
L
Linus Torvalds 已提交
2238 2239 2240 2241 2242 2243
		printk("STALLION: failed to register interrupt "
		    "routine for %s irq=%d\n", name, brdp->irq);
		rc = -ENODEV;
	} else {
		rc = 0;
	}
2244
	return rc;
L
Linus Torvalds 已提交
2245 2246 2247 2248 2249 2250 2251 2252 2253
}

/*****************************************************************************/

/*
 *	Try to find an ECH board and initialize it. This code is capable of
 *	dealing with all types of ECH board.
 */

J
Jiri Slaby 已提交
2254
static inline int stl_initech(struct stlbrd *brdp)
L
Linus Torvalds 已提交
2255
{
J
Jiri Slaby 已提交
2256
	struct stlpanel	*panelp;
L
Linus Torvalds 已提交
2257 2258 2259 2260
	unsigned int	status, nxtid, ioaddr, conflict;
	int		panelnr, banknr, i;
	char		*name;

2261
	pr_debug("stl_initech(brdp=%p)\n", brdp);
L
Linus Torvalds 已提交
2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383

	status = 0;
	conflict = 0;

/*
 *	Set up the initial board register contents for boards. This varies a
 *	bit between the different board types. So we need to handle each
 *	separately. Also do a check that the supplied IRQ is good.
 */
	switch (brdp->brdtype) {

	case BRD_ECH:
		brdp->isr = stl_echatintr;
		brdp->ioctrl = brdp->ioaddr1 + 1;
		brdp->iostatus = brdp->ioaddr1 + 1;
		status = inb(brdp->iostatus);
		if ((status & ECH_IDBITMASK) != ECH_ID)
			return(-ENODEV);
		if ((brdp->irq < 0) || (brdp->irq > 15) ||
		    (stl_vecmap[brdp->irq] == (unsigned char) 0xff)) {
			printk("STALLION: invalid irq=%d for brd=%d\n",
				brdp->irq, brdp->brdnr);
			return(-EINVAL);
		}
		status = ((brdp->ioaddr2 & ECH_ADDR2MASK) >> 1);
		status |= (stl_vecmap[brdp->irq] << 1);
		outb((status | ECH_BRDRESET), brdp->ioaddr1);
		brdp->ioctrlval = ECH_INTENABLE |
			((brdp->irqtype) ? ECH_INTLEVEL : ECH_INTEDGE);
		for (i = 0; (i < 10); i++)
			outb((brdp->ioctrlval | ECH_BRDENABLE), brdp->ioctrl);
		brdp->iosize1 = 2;
		brdp->iosize2 = 32;
		name = "serial(EC8/32)";
		outb(status, brdp->ioaddr1);
		break;

	case BRD_ECHMC:
		brdp->isr = stl_echmcaintr;
		brdp->ioctrl = brdp->ioaddr1 + 0x20;
		brdp->iostatus = brdp->ioctrl;
		status = inb(brdp->iostatus);
		if ((status & ECH_IDBITMASK) != ECH_ID)
			return(-ENODEV);
		if ((brdp->irq < 0) || (brdp->irq > 15) ||
		    (stl_vecmap[brdp->irq] == (unsigned char) 0xff)) {
			printk("STALLION: invalid irq=%d for brd=%d\n",
				brdp->irq, brdp->brdnr);
			return(-EINVAL);
		}
		outb(ECHMC_BRDRESET, brdp->ioctrl);
		outb(ECHMC_INTENABLE, brdp->ioctrl);
		brdp->iosize1 = 64;
		name = "serial(EC8/32-MC)";
		break;

	case BRD_ECHPCI:
		brdp->isr = stl_echpciintr;
		brdp->ioctrl = brdp->ioaddr1 + 2;
		brdp->iosize1 = 4;
		brdp->iosize2 = 8;
		name = "serial(EC8/32-PCI)";
		break;

	case BRD_ECH64PCI:
		brdp->isr = stl_echpci64intr;
		brdp->ioctrl = brdp->ioaddr2 + 0x40;
		outb(0x43, (brdp->ioaddr1 + 0x4c));
		brdp->iosize1 = 0x80;
		brdp->iosize2 = 0x80;
		name = "serial(EC8/64-PCI)";
		break;

	default:
		printk("STALLION: unknown board type=%d\n", brdp->brdtype);
		return(-EINVAL);
		break;
	}

/*
 *	Check boards for possible IO address conflicts and return fail status 
 * 	if an IO conflict found.
 */
	if (!request_region(brdp->ioaddr1, brdp->iosize1, name)) {
		printk(KERN_WARNING "STALLION: Warning, board %d I/O address "
			"%x conflicts with another device\n", brdp->brdnr, 
			brdp->ioaddr1);
		return(-EBUSY);
	}
	
	if (brdp->iosize2 > 0)
		if (!request_region(brdp->ioaddr2, brdp->iosize2, name)) {
			printk(KERN_WARNING "STALLION: Warning, board %d I/O "
				"address %x conflicts with another device\n",
				brdp->brdnr, brdp->ioaddr2);
			printk(KERN_WARNING "STALLION: Warning, also "
				"releasing board %d I/O address %x \n", 
				brdp->brdnr, brdp->ioaddr1);
			release_region(brdp->ioaddr1, brdp->iosize1);
			return(-EBUSY);
		}

/*
 *	Scan through the secondary io address space looking for panels.
 *	As we find'em allocate and initialize panel structures for each.
 */
	brdp->clk = CD1400_CLK;
	brdp->hwid = status;

	ioaddr = brdp->ioaddr2;
	banknr = 0;
	panelnr = 0;
	nxtid = 0;

	for (i = 0; (i < STL_MAXPANELS); i++) {
		if (brdp->brdtype == BRD_ECHPCI) {
			outb(nxtid, brdp->ioctrl);
			ioaddr = brdp->ioaddr2;
		}
		status = inb(ioaddr + ECH_PNLSTATUS);
		if ((status & ECH_PNLIDMASK) != nxtid)
			break;
J
Jiri Slaby 已提交
2384
		panelp = kzalloc(sizeof(struct stlpanel), GFP_KERNEL);
2385
		if (!panelp) {
L
Linus Torvalds 已提交
2386
			printk("STALLION: failed to allocate memory "
J
Jiri Slaby 已提交
2387
				"(size=%Zd)\n", sizeof(struct stlpanel));
L
Linus Torvalds 已提交
2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400
			break;
		}
		panelp->magic = STL_PANELMAGIC;
		panelp->brdnr = brdp->brdnr;
		panelp->panelnr = panelnr;
		panelp->iobase = ioaddr;
		panelp->pagenr = nxtid;
		panelp->hwid = status;
		brdp->bnk2panel[banknr] = panelp;
		brdp->bnkpageaddr[banknr] = nxtid;
		brdp->bnkstataddr[banknr++] = ioaddr + ECH_PNLSTATUS;

		if (status & ECH_PNLXPID) {
2401
			panelp->uartp = &stl_sc26198uart;
L
Linus Torvalds 已提交
2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412
			panelp->isr = stl_sc26198intr;
			if (status & ECH_PNL16PORT) {
				panelp->nrports = 16;
				brdp->bnk2panel[banknr] = panelp;
				brdp->bnkpageaddr[banknr] = nxtid;
				brdp->bnkstataddr[banknr++] = ioaddr + 4 +
					ECH_PNLSTATUS;
			} else {
				panelp->nrports = 8;
			}
		} else {
2413
			panelp->uartp = &stl_cd1400uart;
L
Linus Torvalds 已提交
2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
			panelp->isr = stl_cd1400echintr;
			if (status & ECH_PNL16PORT) {
				panelp->nrports = 16;
				panelp->ackmask = 0x80;
				if (brdp->brdtype != BRD_ECHPCI)
					ioaddr += EREG_BANKSIZE;
				brdp->bnk2panel[banknr] = panelp;
				brdp->bnkpageaddr[banknr] = ++nxtid;
				brdp->bnkstataddr[banknr++] = ioaddr +
					ECH_PNLSTATUS;
			} else {
				panelp->nrports = 8;
				panelp->ackmask = 0xc0;
			}
		}

		nxtid++;
		ioaddr += EREG_BANKSIZE;
		brdp->nrports += panelp->nrports;
		brdp->panels[panelnr++] = panelp;
		if ((brdp->brdtype != BRD_ECHPCI) &&
		    (ioaddr >= (brdp->ioaddr2 + brdp->iosize2)))
			break;
	}

	brdp->nrpanels = panelnr;
	brdp->nrbnks = banknr;
	if (brdp->brdtype == BRD_ECH)
		outb((brdp->ioctrlval | ECH_BRDDISABLE), brdp->ioctrl);

	brdp->state |= BRD_FOUND;
2445
	if (request_irq(brdp->irq, stl_intr, IRQF_SHARED, name, brdp) != 0) {
L
Linus Torvalds 已提交
2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464
		printk("STALLION: failed to register interrupt "
		    "routine for %s irq=%d\n", name, brdp->irq);
		i = -ENODEV;
	} else {
		i = 0;
	}

	return(i);
}

/*****************************************************************************/

/*
 *	Initialize and configure the specified board.
 *	Scan through all the boards in the configuration and see what we
 *	can find. Handle EIO and the ECH boards a little differently here
 *	since the initial search and setup is very different.
 */

J
Jiri Slaby 已提交
2465
static int __init stl_brdinit(struct stlbrd *brdp)
L
Linus Torvalds 已提交
2466 2467 2468
{
	int	i;

2469
	pr_debug("stl_brdinit(brdp=%p)\n", brdp);
L
Linus Torvalds 已提交
2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496

	switch (brdp->brdtype) {
	case BRD_EASYIO:
	case BRD_EASYIOPCI:
		stl_initeio(brdp);
		break;
	case BRD_ECH:
	case BRD_ECHMC:
	case BRD_ECHPCI:
	case BRD_ECH64PCI:
		stl_initech(brdp);
		break;
	default:
		printk("STALLION: board=%d is unknown board type=%d\n",
			brdp->brdnr, brdp->brdtype);
		return(ENODEV);
	}

	stl_brds[brdp->brdnr] = brdp;
	if ((brdp->state & BRD_FOUND) == 0) {
		printk("STALLION: %s board not found, board=%d io=%x irq=%d\n",
			stl_brdnames[brdp->brdtype], brdp->brdnr,
			brdp->ioaddr1, brdp->irq);
		return(ENODEV);
	}

	for (i = 0; (i < STL_MAXPANELS); i++)
2497
		if (brdp->panels[i] != NULL)
L
Linus Torvalds 已提交
2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517
			stl_initports(brdp, brdp->panels[i]);

	printk("STALLION: %s found, board=%d io=%x irq=%d "
		"nrpanels=%d nrports=%d\n", stl_brdnames[brdp->brdtype],
		brdp->brdnr, brdp->ioaddr1, brdp->irq, brdp->nrpanels,
		brdp->nrports);
	return(0);
}

/*****************************************************************************/

/*
 *	Find the next available board number that is free.
 */

static inline int stl_getbrdnr(void)
{
	int	i;

	for (i = 0; (i < STL_MAXBRDS); i++) {
2518
		if (stl_brds[i] == NULL) {
L
Linus Torvalds 已提交
2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538
			if (i >= stl_nrbrds)
				stl_nrbrds = i + 1;
			return(i);
		}
	}
	return(-1);
}

/*****************************************************************************/

#ifdef	CONFIG_PCI

/*
 *	We have a Stallion board. Allocate a board structure and
 *	initialize it. Read its IO and IRQ resources from PCI
 *	configuration space.
 */

static inline int stl_initpcibrd(int brdtype, struct pci_dev *devp)
{
J
Jiri Slaby 已提交
2539
	struct stlbrd	*brdp;
L
Linus Torvalds 已提交
2540

2541
	pr_debug("stl_initpcibrd(brdtype=%d,busnr=%x,devnr=%x)\n", brdtype,
L
Linus Torvalds 已提交
2542 2543 2544 2545
		devp->bus->number, devp->devfn);

	if (pci_enable_device(devp))
		return(-EIO);
2546
	if ((brdp = stl_allocbrd()) == NULL)
L
Linus Torvalds 已提交
2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558
		return(-ENOMEM);
	if ((brdp->brdnr = stl_getbrdnr()) < 0) {
		printk("STALLION: too many boards found, "
			"maximum supported %d\n", STL_MAXBRDS);
		return(0);
	}
	brdp->brdtype = brdtype;

/*
 *	Different Stallion boards use the BAR registers in different ways,
 *	so set up io addresses based on board type.
 */
2559
	pr_debug("%s(%d): BAR[]=%Lx,%Lx,%Lx,%Lx IRQ=%x\n", __FILE__, __LINE__,
L
Linus Torvalds 已提交
2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603
		pci_resource_start(devp, 0), pci_resource_start(devp, 1),
		pci_resource_start(devp, 2), pci_resource_start(devp, 3), devp->irq);

/*
 *	We have all resources from the board, so let's setup the actual
 *	board structure now.
 */
	switch (brdtype) {
	case BRD_ECHPCI:
		brdp->ioaddr2 = pci_resource_start(devp, 0);
		brdp->ioaddr1 = pci_resource_start(devp, 1);
		break;
	case BRD_ECH64PCI:
		brdp->ioaddr2 = pci_resource_start(devp, 2);
		brdp->ioaddr1 = pci_resource_start(devp, 1);
		break;
	case BRD_EASYIOPCI:
		brdp->ioaddr1 = pci_resource_start(devp, 2);
		brdp->ioaddr2 = pci_resource_start(devp, 1);
		break;
	default:
		printk("STALLION: unknown PCI board type=%d\n", brdtype);
		break;
	}

	brdp->irq = devp->irq;
	stl_brdinit(brdp);

	return(0);
}

/*****************************************************************************/

/*
 *	Find all Stallion PCI boards that might be installed. Initialize each
 *	one as it is found.
 */


static inline int stl_findpcibrds(void)
{
	struct pci_dev	*dev = NULL;
	int		i, rc;

2604
	pr_debug("stl_findpcibrds()\n");
L
Linus Torvalds 已提交
2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636

	for (i = 0; (i < stl_nrpcibrds); i++)
		while ((dev = pci_find_device(stl_pcibrds[i].vendid,
		    stl_pcibrds[i].devid, dev))) {

/*
 *			Found a device on the PCI bus that has our vendor and
 *			device ID. Need to check now that it is really us.
 */
			if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE)
				continue;

			rc = stl_initpcibrd(stl_pcibrds[i].brdtype, dev);
			if (rc)
				return(rc);
		}

	return(0);
}

#endif

/*****************************************************************************/

/*
 *	Scan through all the boards in the configuration and see what we
 *	can find. Handle EIO and the ECH boards a little differently here
 *	since the initial search and setup is too different.
 */

static inline int stl_initbrds(void)
{
J
Jiri Slaby 已提交
2637 2638
	struct stlbrd	*brdp;
	struct stlconf	*confp;
L
Linus Torvalds 已提交
2639 2640
	int		i;

2641
	pr_debug("stl_initbrds()\n");
L
Linus Torvalds 已提交
2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655

	if (stl_nrbrds > STL_MAXBRDS) {
		printk("STALLION: too many boards in configuration table, "
			"truncating to %d\n", STL_MAXBRDS);
		stl_nrbrds = STL_MAXBRDS;
	}

/*
 *	Firstly scan the list of static boards configured. Allocate
 *	resources and initialize the boards as found.
 */
	for (i = 0; (i < stl_nrbrds); i++) {
		confp = &stl_brdconf[i];
		stl_parsebrd(confp, stl_brdsp[i]);
2656
		if ((brdp = stl_allocbrd()) == NULL)
L
Linus Torvalds 已提交
2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686
			return(-ENOMEM);
		brdp->brdnr = i;
		brdp->brdtype = confp->brdtype;
		brdp->ioaddr1 = confp->ioaddr1;
		brdp->ioaddr2 = confp->ioaddr2;
		brdp->irq = confp->irq;
		brdp->irqtype = confp->irqtype;
		stl_brdinit(brdp);
	}

/*
 *	Find any dynamically supported boards. That is via module load
 *	line options or auto-detected on the PCI bus.
 */
	stl_argbrds();
#ifdef CONFIG_PCI
	stl_findpcibrds();
#endif

	return(0);
}

/*****************************************************************************/

/*
 *	Return the board stats structure to user app.
 */

static int stl_getbrdstats(combrd_t __user *bp)
{
J
Jiri Slaby 已提交
2687 2688
	struct stlbrd	*brdp;
	struct stlpanel	*panelp;
L
Linus Torvalds 已提交
2689 2690 2691 2692 2693 2694 2695
	int		i;

	if (copy_from_user(&stl_brdstats, bp, sizeof(combrd_t)))
		return -EFAULT;
	if (stl_brdstats.brd >= STL_MAXBRDS)
		return(-ENODEV);
	brdp = stl_brds[stl_brdstats.brd];
2696
	if (brdp == NULL)
L
Linus Torvalds 已提交
2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724
		return(-ENODEV);

	memset(&stl_brdstats, 0, sizeof(combrd_t));
	stl_brdstats.brd = brdp->brdnr;
	stl_brdstats.type = brdp->brdtype;
	stl_brdstats.hwid = brdp->hwid;
	stl_brdstats.state = brdp->state;
	stl_brdstats.ioaddr = brdp->ioaddr1;
	stl_brdstats.ioaddr2 = brdp->ioaddr2;
	stl_brdstats.irq = brdp->irq;
	stl_brdstats.nrpanels = brdp->nrpanels;
	stl_brdstats.nrports = brdp->nrports;
	for (i = 0; (i < brdp->nrpanels); i++) {
		panelp = brdp->panels[i];
		stl_brdstats.panels[i].panel = i;
		stl_brdstats.panels[i].hwid = panelp->hwid;
		stl_brdstats.panels[i].nrports = panelp->nrports;
	}

	return copy_to_user(bp, &stl_brdstats, sizeof(combrd_t)) ? -EFAULT : 0;
}

/*****************************************************************************/

/*
 *	Resolve the referenced port number into a port struct pointer.
 */

J
Jiri Slaby 已提交
2725
static struct stlport *stl_getport(int brdnr, int panelnr, int portnr)
L
Linus Torvalds 已提交
2726
{
J
Jiri Slaby 已提交
2727 2728
	struct stlbrd	*brdp;
	struct stlpanel	*panelp;
L
Linus Torvalds 已提交
2729 2730

	if ((brdnr < 0) || (brdnr >= STL_MAXBRDS))
2731
		return(NULL);
L
Linus Torvalds 已提交
2732
	brdp = stl_brds[brdnr];
2733 2734
	if (brdp == NULL)
		return(NULL);
L
Linus Torvalds 已提交
2735
	if ((panelnr < 0) || (panelnr >= brdp->nrpanels))
2736
		return(NULL);
L
Linus Torvalds 已提交
2737
	panelp = brdp->panels[panelnr];
2738 2739
	if (panelp == NULL)
		return(NULL);
L
Linus Torvalds 已提交
2740
	if ((portnr < 0) || (portnr >= panelp->nrports))
2741
		return(NULL);
L
Linus Torvalds 已提交
2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752
	return(panelp->ports[portnr]);
}

/*****************************************************************************/

/*
 *	Return the port stats structure to user app. A NULL port struct
 *	pointer passed in means that we need to find out from the app
 *	what port to get stats for (used through board control device).
 */

J
Jiri Slaby 已提交
2753
static int stl_getportstats(struct stlport *portp, comstats_t __user *cp)
L
Linus Torvalds 已提交
2754 2755 2756 2757 2758 2759 2760 2761 2762
{
	unsigned char	*head, *tail;
	unsigned long	flags;

	if (!portp) {
		if (copy_from_user(&stl_comstats, cp, sizeof(comstats_t)))
			return -EFAULT;
		portp = stl_getport(stl_comstats.brd, stl_comstats.panel,
			stl_comstats.port);
2763
		if (portp == NULL)
L
Linus Torvalds 已提交
2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777
			return(-ENODEV);
	}

	portp->stats.state = portp->istate;
	portp->stats.flags = portp->flags;
	portp->stats.hwid = portp->hwid;

	portp->stats.ttystate = 0;
	portp->stats.cflags = 0;
	portp->stats.iflags = 0;
	portp->stats.oflags = 0;
	portp->stats.lflags = 0;
	portp->stats.rxbuffered = 0;

A
Alan Cox 已提交
2778
	spin_lock_irqsave(&stallion_lock, flags);
2779
	if (portp->tty != NULL) {
L
Linus Torvalds 已提交
2780 2781
		if (portp->tty->driver_data == portp) {
			portp->stats.ttystate = portp->tty->flags;
A
Alan Cox 已提交
2782 2783
			/* No longer available as a statistic */
			portp->stats.rxbuffered = 1; /*portp->tty->flip.count; */
2784
			if (portp->tty->termios != NULL) {
L
Linus Torvalds 已提交
2785 2786 2787 2788 2789 2790 2791
				portp->stats.cflags = portp->tty->termios->c_cflag;
				portp->stats.iflags = portp->tty->termios->c_iflag;
				portp->stats.oflags = portp->tty->termios->c_oflag;
				portp->stats.lflags = portp->tty->termios->c_lflag;
			}
		}
	}
A
Alan Cox 已提交
2792
	spin_unlock_irqrestore(&stallion_lock, flags);
L
Linus Torvalds 已提交
2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810

	head = portp->tx.head;
	tail = portp->tx.tail;
	portp->stats.txbuffered = ((head >= tail) ? (head - tail) :
		(STL_TXBUFSIZE - (tail - head)));

	portp->stats.signals = (unsigned long) stl_getsignals(portp);

	return copy_to_user(cp, &portp->stats,
			    sizeof(comstats_t)) ? -EFAULT : 0;
}

/*****************************************************************************/

/*
 *	Clear the port stats structure. We also return it zeroed out...
 */

J
Jiri Slaby 已提交
2811
static int stl_clrportstats(struct stlport *portp, comstats_t __user *cp)
L
Linus Torvalds 已提交
2812 2813 2814 2815 2816 2817
{
	if (!portp) {
		if (copy_from_user(&stl_comstats, cp, sizeof(comstats_t)))
			return -EFAULT;
		portp = stl_getport(stl_comstats.brd, stl_comstats.panel,
			stl_comstats.port);
2818
		if (portp == NULL)
L
Linus Torvalds 已提交
2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835
			return(-ENODEV);
	}

	memset(&portp->stats, 0, sizeof(comstats_t));
	portp->stats.brd = portp->brdnr;
	portp->stats.panel = portp->panelnr;
	portp->stats.port = portp->portnr;
	return copy_to_user(cp, &portp->stats,
			    sizeof(comstats_t)) ? -EFAULT : 0;
}

/*****************************************************************************/

/*
 *	Return the entire driver ports structure to a user app.
 */

J
Jiri Slaby 已提交
2836
static int stl_getportstruct(struct stlport __user *arg)
L
Linus Torvalds 已提交
2837
{
J
Jiri Slaby 已提交
2838
	struct stlport	*portp;
L
Linus Torvalds 已提交
2839

J
Jiri Slaby 已提交
2840
	if (copy_from_user(&stl_dummyport, arg, sizeof(struct stlport)))
L
Linus Torvalds 已提交
2841 2842 2843 2844 2845
		return -EFAULT;
	portp = stl_getport(stl_dummyport.brdnr, stl_dummyport.panelnr,
		 stl_dummyport.portnr);
	if (!portp)
		return -ENODEV;
J
Jiri Slaby 已提交
2846
	return copy_to_user(arg, portp, sizeof(struct stlport)) ? -EFAULT : 0;
L
Linus Torvalds 已提交
2847 2848 2849 2850 2851 2852 2853 2854
}

/*****************************************************************************/

/*
 *	Return the entire driver board structure to a user app.
 */

J
Jiri Slaby 已提交
2855
static int stl_getbrdstruct(struct stlbrd __user *arg)
L
Linus Torvalds 已提交
2856
{
J
Jiri Slaby 已提交
2857
	struct stlbrd	*brdp;
L
Linus Torvalds 已提交
2858

J
Jiri Slaby 已提交
2859
	if (copy_from_user(&stl_dummybrd, arg, sizeof(struct stlbrd)))
L
Linus Torvalds 已提交
2860 2861 2862 2863 2864 2865
		return -EFAULT;
	if ((stl_dummybrd.brdnr < 0) || (stl_dummybrd.brdnr >= STL_MAXBRDS))
		return -ENODEV;
	brdp = stl_brds[stl_dummybrd.brdnr];
	if (!brdp)
		return(-ENODEV);
J
Jiri Slaby 已提交
2866
	return copy_to_user(arg, brdp, sizeof(struct stlbrd)) ? -EFAULT : 0;
L
Linus Torvalds 已提交
2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881
}

/*****************************************************************************/

/*
 *	The "staliomem" device is also required to do some special operations
 *	on the board and/or ports. In this driver it is mostly used for stats
 *	collection.
 */

static int stl_memioctl(struct inode *ip, struct file *fp, unsigned int cmd, unsigned long arg)
{
	int	brdnr, rc;
	void __user *argp = (void __user *)arg;

2882
	pr_debug("stl_memioctl(ip=%p,fp=%p,cmd=%x,arg=%lx)\n", ip, fp, cmd,arg);
L
Linus Torvalds 已提交
2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912

	brdnr = iminor(ip);
	if (brdnr >= STL_MAXBRDS)
		return(-ENODEV);
	rc = 0;

	switch (cmd) {
	case COM_GETPORTSTATS:
		rc = stl_getportstats(NULL, argp);
		break;
	case COM_CLRPORTSTATS:
		rc = stl_clrportstats(NULL, argp);
		break;
	case COM_GETBRDSTATS:
		rc = stl_getbrdstats(argp);
		break;
	case COM_READPORT:
		rc = stl_getportstruct(argp);
		break;
	case COM_READBOARD:
		rc = stl_getbrdstruct(argp);
		break;
	default:
		rc = -ENOIOCTLCMD;
		break;
	}

	return(rc);
}

J
Jeff Dike 已提交
2913
static const struct tty_operations stl_ops = {
L
Linus Torvalds 已提交
2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938
	.open = stl_open,
	.close = stl_close,
	.write = stl_write,
	.put_char = stl_putchar,
	.flush_chars = stl_flushchars,
	.write_room = stl_writeroom,
	.chars_in_buffer = stl_charsinbuffer,
	.ioctl = stl_ioctl,
	.set_termios = stl_settermios,
	.throttle = stl_throttle,
	.unthrottle = stl_unthrottle,
	.stop = stl_stop,
	.start = stl_start,
	.hangup = stl_hangup,
	.flush_buffer = stl_flushbuffer,
	.break_ctl = stl_breakctl,
	.wait_until_sent = stl_waituntilsent,
	.send_xchar = stl_sendxchar,
	.read_proc = stl_readproc,
	.tiocmget = stl_tiocmget,
	.tiocmset = stl_tiocmset,
};

/*****************************************************************************/

A
Adrian Bunk 已提交
2939
static int __init stl_init(void)
L
Linus Torvalds 已提交
2940 2941 2942 2943
{
	int i;
	printk(KERN_INFO "%s: version %s\n", stl_drvtitle, stl_drvversion);

2944 2945 2946
	spin_lock_init(&stallion_lock);
	spin_lock_init(&brd_lock);

L
Linus Torvalds 已提交
2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959
	stl_initbrds();

	stl_serial = alloc_tty_driver(STL_MAXBRDS * STL_MAXPORTS);
	if (!stl_serial)
		return -1;

/*
 *	Set up a character driver for per board stuff. This is mainly used
 *	to do stats ioctls on the ports.
 */
	if (register_chrdev(STL_SIOMEMMAJOR, "staliomem", &stl_fsiomem))
		printk("STALLION: failed to register serial board device\n");

2960
	stallion_class = class_create(THIS_MODULE, "staliomem");
2961
	for (i = 0; i < 4; i++)
2962 2963 2964
		class_device_create(stallion_class, NULL,
				    MKDEV(STL_SIOMEMMAJOR, i), NULL,
				    "staliomem%d", i);
L
Linus Torvalds 已提交
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982

	stl_serial->owner = THIS_MODULE;
	stl_serial->driver_name = stl_drvname;
	stl_serial->name = "ttyE";
	stl_serial->major = STL_SERIALMAJOR;
	stl_serial->minor_start = 0;
	stl_serial->type = TTY_DRIVER_TYPE_SERIAL;
	stl_serial->subtype = SERIAL_TYPE_NORMAL;
	stl_serial->init_termios = stl_deftermios;
	stl_serial->flags = TTY_DRIVER_REAL_RAW;
	tty_set_operations(stl_serial, &stl_ops);

	if (tty_register_driver(stl_serial)) {
		put_tty_driver(stl_serial);
		printk("STALLION: failed to register serial driver\n");
		return -1;
	}

2983
	return 0;
L
Linus Torvalds 已提交
2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995
}

/*****************************************************************************/
/*                       CD1400 HARDWARE FUNCTIONS                           */
/*****************************************************************************/

/*
 *	These functions get/set/update the registers of the cd1400 UARTs.
 *	Access to the cd1400 registers is via an address/data io port pair.
 *	(Maybe should make this inline...)
 */

J
Jiri Slaby 已提交
2996
static int stl_cd1400getreg(struct stlport *portp, int regnr)
L
Linus Torvalds 已提交
2997 2998
{
	outb((regnr + portp->uartaddr), portp->ioaddr);
2999
	return inb(portp->ioaddr + EREG_DATA);
L
Linus Torvalds 已提交
3000 3001
}

J
Jiri Slaby 已提交
3002
static void stl_cd1400setreg(struct stlport *portp, int regnr, int value)
L
Linus Torvalds 已提交
3003 3004 3005 3006 3007
{
	outb((regnr + portp->uartaddr), portp->ioaddr);
	outb(value, portp->ioaddr + EREG_DATA);
}

J
Jiri Slaby 已提交
3008
static int stl_cd1400updatereg(struct stlport *portp, int regnr, int value)
L
Linus Torvalds 已提交
3009 3010 3011 3012
{
	outb((regnr + portp->uartaddr), portp->ioaddr);
	if (inb(portp->ioaddr + EREG_DATA) != value) {
		outb(value, portp->ioaddr + EREG_DATA);
3013
		return 1;
L
Linus Torvalds 已提交
3014
	}
3015
	return 0;
L
Linus Torvalds 已提交
3016 3017 3018 3019 3020 3021 3022 3023 3024 3025
}

/*****************************************************************************/

/*
 *	Inbitialize the UARTs in a panel. We don't care what sort of board
 *	these ports are on - since the port io registers are almost
 *	identical when dealing with ports.
 */

J
Jiri Slaby 已提交
3026
static int stl_cd1400panelinit(struct stlbrd *brdp, struct stlpanel *panelp)
L
Linus Torvalds 已提交
3027 3028 3029 3030
{
	unsigned int	gfrcr;
	int		chipmask, i, j;
	int		nrchips, uartaddr, ioaddr;
A
Alan Cox 已提交
3031
	unsigned long   flags;
L
Linus Torvalds 已提交
3032

3033
	pr_debug("stl_panelinit(brdp=%p,panelp=%p)\n", brdp, panelp);
L
Linus Torvalds 已提交
3034

A
Alan Cox 已提交
3035
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072
	BRDENABLE(panelp->brdnr, panelp->pagenr);

/*
 *	Check that each chip is present and started up OK.
 */
	chipmask = 0;
	nrchips = panelp->nrports / CD1400_PORTS;
	for (i = 0; (i < nrchips); i++) {
		if (brdp->brdtype == BRD_ECHPCI) {
			outb((panelp->pagenr + (i >> 1)), brdp->ioctrl);
			ioaddr = panelp->iobase;
		} else {
			ioaddr = panelp->iobase + (EREG_BANKSIZE * (i >> 1));
		}
		uartaddr = (i & 0x01) ? 0x080 : 0;
		outb((GFRCR + uartaddr), ioaddr);
		outb(0, (ioaddr + EREG_DATA));
		outb((CCR + uartaddr), ioaddr);
		outb(CCR_RESETFULL, (ioaddr + EREG_DATA));
		outb(CCR_RESETFULL, (ioaddr + EREG_DATA));
		outb((GFRCR + uartaddr), ioaddr);
		for (j = 0; (j < CCR_MAXWAIT); j++) {
			if ((gfrcr = inb(ioaddr + EREG_DATA)) != 0)
				break;
		}
		if ((j >= CCR_MAXWAIT) || (gfrcr < 0x40) || (gfrcr > 0x60)) {
			printk("STALLION: cd1400 not responding, "
				"brd=%d panel=%d chip=%d\n",
				panelp->brdnr, panelp->panelnr, i);
			continue;
		}
		chipmask |= (0x1 << i);
		outb((PPR + uartaddr), ioaddr);
		outb(PPR_SCALAR, (ioaddr + EREG_DATA));
	}

	BRDDISABLE(panelp->brdnr);
A
Alan Cox 已提交
3073
	spin_unlock_irqrestore(&brd_lock, flags);
3074
	return chipmask;
L
Linus Torvalds 已提交
3075 3076 3077 3078 3079 3080 3081 3082
}

/*****************************************************************************/

/*
 *	Initialize hardware specific port registers.
 */

J
Jiri Slaby 已提交
3083
static void stl_cd1400portinit(struct stlbrd *brdp, struct stlpanel *panelp, struct stlport *portp)
L
Linus Torvalds 已提交
3084
{
A
Alan Cox 已提交
3085
	unsigned long flags;
3086 3087
	pr_debug("stl_cd1400portinit(brdp=%p,panelp=%p,portp=%p)\n", brdp,
			panelp, portp);
L
Linus Torvalds 已提交
3088

3089 3090
	if ((brdp == NULL) || (panelp == NULL) ||
	    (portp == NULL))
L
Linus Torvalds 已提交
3091 3092
		return;

A
Alan Cox 已提交
3093
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3094 3095 3096 3097 3098 3099 3100 3101 3102 3103
	portp->ioaddr = panelp->iobase + (((brdp->brdtype == BRD_ECHPCI) ||
		(portp->portnr < 8)) ? 0 : EREG_BANKSIZE);
	portp->uartaddr = (portp->portnr & 0x04) << 5;
	portp->pagenr = panelp->pagenr + (portp->portnr >> 3);

	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));
	stl_cd1400setreg(portp, LIVR, (portp->portnr << 3));
	portp->hwid = stl_cd1400getreg(portp, GFRCR);
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
3104
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3105 3106 3107 3108 3109 3110 3111 3112 3113
}

/*****************************************************************************/

/*
 *	Wait for the command register to be ready. We will poll this,
 *	since it won't usually take too long to be ready.
 */

J
Jiri Slaby 已提交
3114
static void stl_cd1400ccrwait(struct stlport *portp)
L
Linus Torvalds 已提交
3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134
{
	int	i;

	for (i = 0; (i < CCR_MAXWAIT); i++) {
		if (stl_cd1400getreg(portp, CCR) == 0) {
			return;
		}
	}

	printk("STALLION: cd1400 not responding, port=%d panel=%d brd=%d\n",
		portp->portnr, portp->panelnr, portp->brdnr);
}

/*****************************************************************************/

/*
 *	Set up the cd1400 registers for a port based on the termios port
 *	settings.
 */

J
Jiri Slaby 已提交
3135
static void stl_cd1400setport(struct stlport *portp, struct termios *tiosp)
L
Linus Torvalds 已提交
3136
{
J
Jiri Slaby 已提交
3137
	struct stlbrd	*brdp;
L
Linus Torvalds 已提交
3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160
	unsigned long	flags;
	unsigned int	clkdiv, baudrate;
	unsigned char	cor1, cor2, cor3;
	unsigned char	cor4, cor5, ccr;
	unsigned char	srer, sreron, sreroff;
	unsigned char	mcor1, mcor2, rtpr;
	unsigned char	clk, div;

	cor1 = 0;
	cor2 = 0;
	cor3 = 0;
	cor4 = 0;
	cor5 = 0;
	ccr = 0;
	rtpr = 0;
	clk = 0;
	div = 0;
	mcor1 = 0;
	mcor2 = 0;
	sreron = 0;
	sreroff = 0;

	brdp = stl_brds[portp->brdnr];
3161
	if (brdp == NULL)
L
Linus Torvalds 已提交
3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300
		return;

/*
 *	Set up the RX char ignore mask with those RX error types we
 *	can ignore. We can get the cd1400 to help us out a little here,
 *	it will ignore parity errors and breaks for us.
 */
	portp->rxignoremsk = 0;
	if (tiosp->c_iflag & IGNPAR) {
		portp->rxignoremsk |= (ST_PARITY | ST_FRAMING | ST_OVERRUN);
		cor1 |= COR1_PARIGNORE;
	}
	if (tiosp->c_iflag & IGNBRK) {
		portp->rxignoremsk |= ST_BREAK;
		cor4 |= COR4_IGNBRK;
	}

	portp->rxmarkmsk = ST_OVERRUN;
	if (tiosp->c_iflag & (INPCK | PARMRK))
		portp->rxmarkmsk |= (ST_PARITY | ST_FRAMING);
	if (tiosp->c_iflag & BRKINT)
		portp->rxmarkmsk |= ST_BREAK;

/*
 *	Go through the char size, parity and stop bits and set all the
 *	option register appropriately.
 */
	switch (tiosp->c_cflag & CSIZE) {
	case CS5:
		cor1 |= COR1_CHL5;
		break;
	case CS6:
		cor1 |= COR1_CHL6;
		break;
	case CS7:
		cor1 |= COR1_CHL7;
		break;
	default:
		cor1 |= COR1_CHL8;
		break;
	}

	if (tiosp->c_cflag & CSTOPB)
		cor1 |= COR1_STOP2;
	else
		cor1 |= COR1_STOP1;

	if (tiosp->c_cflag & PARENB) {
		if (tiosp->c_cflag & PARODD)
			cor1 |= (COR1_PARENB | COR1_PARODD);
		else
			cor1 |= (COR1_PARENB | COR1_PAREVEN);
	} else {
		cor1 |= COR1_PARNONE;
	}

/*
 *	Set the RX FIFO threshold at 6 chars. This gives a bit of breathing
 *	space for hardware flow control and the like. This should be set to
 *	VMIN. Also here we will set the RX data timeout to 10ms - this should
 *	really be based on VTIME.
 */
	cor3 |= FIFO_RXTHRESHOLD;
	rtpr = 2;

/*
 *	Calculate the baud rate timers. For now we will just assume that
 *	the input and output baud are the same. Could have used a baud
 *	table here, but this way we can generate virtually any baud rate
 *	we like!
 */
	baudrate = tiosp->c_cflag & CBAUD;
	if (baudrate & CBAUDEX) {
		baudrate &= ~CBAUDEX;
		if ((baudrate < 1) || (baudrate > 4))
			tiosp->c_cflag &= ~CBAUDEX;
		else
			baudrate += 15;
	}
	baudrate = stl_baudrates[baudrate];
	if ((tiosp->c_cflag & CBAUD) == B38400) {
		if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
			baudrate = 57600;
		else if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
			baudrate = 115200;
		else if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
			baudrate = 230400;
		else if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
			baudrate = 460800;
		else if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
			baudrate = (portp->baud_base / portp->custom_divisor);
	}
	if (baudrate > STL_CD1400MAXBAUD)
		baudrate = STL_CD1400MAXBAUD;

	if (baudrate > 0) {
		for (clk = 0; (clk < CD1400_NUMCLKS); clk++) {
			clkdiv = ((portp->clk / stl_cd1400clkdivs[clk]) / baudrate);
			if (clkdiv < 0x100)
				break;
		}
		div = (unsigned char) clkdiv;
	}

/*
 *	Check what form of modem signaling is required and set it up.
 */
	if ((tiosp->c_cflag & CLOCAL) == 0) {
		mcor1 |= MCOR1_DCD;
		mcor2 |= MCOR2_DCD;
		sreron |= SRER_MODEM;
		portp->flags |= ASYNC_CHECK_CD;
	} else {
		portp->flags &= ~ASYNC_CHECK_CD;
	}

/*
 *	Setup cd1400 enhanced modes if we can. In particular we want to
 *	handle as much of the flow control as possible automatically. As
 *	well as saving a few CPU cycles it will also greatly improve flow
 *	control reliability.
 */
	if (tiosp->c_iflag & IXON) {
		cor2 |= COR2_TXIBE;
		cor3 |= COR3_SCD12;
		if (tiosp->c_iflag & IXANY)
			cor2 |= COR2_IXM;
	}

	if (tiosp->c_cflag & CRTSCTS) {
		cor2 |= COR2_CTSAE;
		mcor1 |= FIFO_RTSTHRESHOLD;
	}

/*
 *	All cd1400 register values calculated so go through and set
 *	them all up.
 */

3301
	pr_debug("SETPORT: portnr=%d panelnr=%d brdnr=%d\n",
L
Linus Torvalds 已提交
3302
		portp->portnr, portp->panelnr, portp->brdnr);
3303
	pr_debug("    cor1=%x cor2=%x cor3=%x cor4=%x cor5=%x\n",
L
Linus Torvalds 已提交
3304
		cor1, cor2, cor3, cor4, cor5);
3305
	pr_debug("    mcor1=%x mcor2=%x rtpr=%x sreron=%x sreroff=%x\n",
L
Linus Torvalds 已提交
3306
		mcor1, mcor2, rtpr, sreron, sreroff);
3307 3308
	pr_debug("    tcor=%x tbpr=%x rcor=%x rbpr=%x\n", clk, div, clk, div);
	pr_debug("    schr1=%x schr2=%x schr3=%x schr4=%x\n",
L
Linus Torvalds 已提交
3309 3310 3311
		tiosp->c_cc[VSTART], tiosp->c_cc[VSTOP],
		tiosp->c_cc[VSTART], tiosp->c_cc[VSTOP]);

A
Alan Cox 已提交
3312
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x3));
	srer = stl_cd1400getreg(portp, SRER);
	stl_cd1400setreg(portp, SRER, 0);
	if (stl_cd1400updatereg(portp, COR1, cor1))
		ccr = 1;
	if (stl_cd1400updatereg(portp, COR2, cor2))
		ccr = 1;
	if (stl_cd1400updatereg(portp, COR3, cor3))
		ccr = 1;
	if (ccr) {
		stl_cd1400ccrwait(portp);
		stl_cd1400setreg(portp, CCR, CCR_CORCHANGE);
	}
	stl_cd1400setreg(portp, COR4, cor4);
	stl_cd1400setreg(portp, COR5, cor5);
	stl_cd1400setreg(portp, MCOR1, mcor1);
	stl_cd1400setreg(portp, MCOR2, mcor2);
	if (baudrate > 0) {
		stl_cd1400setreg(portp, TCOR, clk);
		stl_cd1400setreg(portp, TBPR, div);
		stl_cd1400setreg(portp, RCOR, clk);
		stl_cd1400setreg(portp, RBPR, div);
	}
	stl_cd1400setreg(portp, SCHR1, tiosp->c_cc[VSTART]);
	stl_cd1400setreg(portp, SCHR2, tiosp->c_cc[VSTOP]);
	stl_cd1400setreg(portp, SCHR3, tiosp->c_cc[VSTART]);
	stl_cd1400setreg(portp, SCHR4, tiosp->c_cc[VSTOP]);
	stl_cd1400setreg(portp, RTPR, rtpr);
	mcor1 = stl_cd1400getreg(portp, MSVR1);
	if (mcor1 & MSVR1_DCD)
		portp->sigs |= TIOCM_CD;
	else
		portp->sigs &= ~TIOCM_CD;
	stl_cd1400setreg(portp, SRER, ((srer & ~sreroff) | sreron));
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
3349
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3350 3351 3352 3353 3354 3355 3356 3357
}

/*****************************************************************************/

/*
 *	Set the state of the DTR and RTS signals.
 */

J
Jiri Slaby 已提交
3358
static void stl_cd1400setsignals(struct stlport *portp, int dtr, int rts)
L
Linus Torvalds 已提交
3359 3360 3361 3362
{
	unsigned char	msvr1, msvr2;
	unsigned long	flags;

3363 3364
	pr_debug("stl_cd1400setsignals(portp=%p,dtr=%d,rts=%d)\n",
			portp, dtr, rts);
L
Linus Torvalds 已提交
3365 3366 3367 3368 3369 3370 3371 3372

	msvr1 = 0;
	msvr2 = 0;
	if (dtr > 0)
		msvr1 = MSVR1_DTR;
	if (rts > 0)
		msvr2 = MSVR2_RTS;

A
Alan Cox 已提交
3373
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3374 3375 3376 3377 3378 3379 3380
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));
	if (rts >= 0)
		stl_cd1400setreg(portp, MSVR2, msvr2);
	if (dtr >= 0)
		stl_cd1400setreg(portp, MSVR1, msvr1);
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
3381
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3382 3383 3384 3385 3386 3387 3388 3389
}

/*****************************************************************************/

/*
 *	Return the state of the signals.
 */

J
Jiri Slaby 已提交
3390
static int stl_cd1400getsignals(struct stlport *portp)
L
Linus Torvalds 已提交
3391 3392 3393 3394 3395
{
	unsigned char	msvr1, msvr2;
	unsigned long	flags;
	int		sigs;

3396
	pr_debug("stl_cd1400getsignals(portp=%p)\n", portp);
L
Linus Torvalds 已提交
3397

A
Alan Cox 已提交
3398
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3399 3400 3401 3402 3403
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));
	msvr1 = stl_cd1400getreg(portp, MSVR1);
	msvr2 = stl_cd1400getreg(portp, MSVR2);
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
3404
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416

	sigs = 0;
	sigs |= (msvr1 & MSVR1_DCD) ? TIOCM_CD : 0;
	sigs |= (msvr1 & MSVR1_CTS) ? TIOCM_CTS : 0;
	sigs |= (msvr1 & MSVR1_DTR) ? TIOCM_DTR : 0;
	sigs |= (msvr2 & MSVR2_RTS) ? TIOCM_RTS : 0;
#if 0
	sigs |= (msvr1 & MSVR1_RI) ? TIOCM_RI : 0;
	sigs |= (msvr1 & MSVR1_DSR) ? TIOCM_DSR : 0;
#else
	sigs |= TIOCM_DSR;
#endif
3417
	return sigs;
L
Linus Torvalds 已提交
3418 3419 3420 3421 3422 3423 3424 3425
}

/*****************************************************************************/

/*
 *	Enable/Disable the Transmitter and/or Receiver.
 */

J
Jiri Slaby 已提交
3426
static void stl_cd1400enablerxtx(struct stlport *portp, int rx, int tx)
L
Linus Torvalds 已提交
3427 3428 3429 3430
{
	unsigned char	ccr;
	unsigned long	flags;

3431 3432
	pr_debug("stl_cd1400enablerxtx(portp=%p,rx=%d,tx=%d)\n", portp, rx, tx);

L
Linus Torvalds 已提交
3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443
	ccr = 0;

	if (tx == 0)
		ccr |= CCR_TXDISABLE;
	else if (tx > 0)
		ccr |= CCR_TXENABLE;
	if (rx == 0)
		ccr |= CCR_RXDISABLE;
	else if (rx > 0)
		ccr |= CCR_RXENABLE;

A
Alan Cox 已提交
3444
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3445 3446 3447 3448 3449 3450
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));
	stl_cd1400ccrwait(portp);
	stl_cd1400setreg(portp, CCR, ccr);
	stl_cd1400ccrwait(portp);
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
3451
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3452 3453 3454 3455 3456 3457 3458 3459
}

/*****************************************************************************/

/*
 *	Start/stop the Transmitter and/or Receiver.
 */

J
Jiri Slaby 已提交
3460
static void stl_cd1400startrxtx(struct stlport *portp, int rx, int tx)
L
Linus Torvalds 已提交
3461 3462 3463 3464
{
	unsigned char	sreron, sreroff;
	unsigned long	flags;

3465
	pr_debug("stl_cd1400startrxtx(portp=%p,rx=%d,tx=%d)\n", portp, rx, tx);
L
Linus Torvalds 已提交
3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479

	sreron = 0;
	sreroff = 0;
	if (tx == 0)
		sreroff |= (SRER_TXDATA | SRER_TXEMPTY);
	else if (tx == 1)
		sreron |= SRER_TXDATA;
	else if (tx >= 2)
		sreron |= SRER_TXEMPTY;
	if (rx == 0)
		sreroff |= SRER_RXDATA;
	else if (rx > 0)
		sreron |= SRER_RXDATA;

A
Alan Cox 已提交
3480
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3481 3482 3483 3484 3485 3486 3487
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));
	stl_cd1400setreg(portp, SRER,
		((stl_cd1400getreg(portp, SRER) & ~sreroff) | sreron));
	BRDDISABLE(portp->brdnr);
	if (tx > 0)
		set_bit(ASYI_TXBUSY, &portp->istate);
A
Alan Cox 已提交
3488
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3489 3490 3491 3492 3493 3494 3495 3496
}

/*****************************************************************************/

/*
 *	Disable all interrupts from this port.
 */

J
Jiri Slaby 已提交
3497
static void stl_cd1400disableintrs(struct stlport *portp)
L
Linus Torvalds 已提交
3498 3499 3500
{
	unsigned long	flags;

3501 3502
	pr_debug("stl_cd1400disableintrs(portp=%p)\n", portp);

A
Alan Cox 已提交
3503
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3504 3505 3506 3507
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));
	stl_cd1400setreg(portp, SRER, 0);
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
3508
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3509 3510 3511 3512
}

/*****************************************************************************/

J
Jiri Slaby 已提交
3513
static void stl_cd1400sendbreak(struct stlport *portp, int len)
L
Linus Torvalds 已提交
3514 3515 3516
{
	unsigned long	flags;

3517
	pr_debug("stl_cd1400sendbreak(portp=%p,len=%d)\n", portp, len);
L
Linus Torvalds 已提交
3518

A
Alan Cox 已提交
3519
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3520 3521 3522 3523 3524 3525 3526 3527 3528
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));
	stl_cd1400setreg(portp, SRER,
		((stl_cd1400getreg(portp, SRER) & ~SRER_TXDATA) |
		SRER_TXEMPTY));
	BRDDISABLE(portp->brdnr);
	portp->brklen = len;
	if (len == 1)
		portp->stats.txbreaks++;
A
Alan Cox 已提交
3529
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3530 3531 3532 3533 3534 3535 3536 3537
}

/*****************************************************************************/

/*
 *	Take flow control actions...
 */

J
Jiri Slaby 已提交
3538
static void stl_cd1400flowctrl(struct stlport *portp, int state)
L
Linus Torvalds 已提交
3539 3540 3541 3542
{
	struct tty_struct	*tty;
	unsigned long		flags;

3543
	pr_debug("stl_cd1400flowctrl(portp=%p,state=%x)\n", portp, state);
L
Linus Torvalds 已提交
3544

3545
	if (portp == NULL)
L
Linus Torvalds 已提交
3546 3547
		return;
	tty = portp->tty;
3548
	if (tty == NULL)
L
Linus Torvalds 已提交
3549 3550
		return;

A
Alan Cox 已提交
3551
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));

	if (state) {
		if (tty->termios->c_iflag & IXOFF) {
			stl_cd1400ccrwait(portp);
			stl_cd1400setreg(portp, CCR, CCR_SENDSCHR1);
			portp->stats.rxxon++;
			stl_cd1400ccrwait(portp);
		}
/*
 *		Question: should we return RTS to what it was before? It may
 *		have been set by an ioctl... Suppose not, since if you have
 *		hardware flow control set then it is pretty silly to go and
 *		set the RTS line by hand.
 */
		if (tty->termios->c_cflag & CRTSCTS) {
			stl_cd1400setreg(portp, MCOR1,
				(stl_cd1400getreg(portp, MCOR1) |
				FIFO_RTSTHRESHOLD));
			stl_cd1400setreg(portp, MSVR2, MSVR2_RTS);
			portp->stats.rxrtson++;
		}
	} else {
		if (tty->termios->c_iflag & IXOFF) {
			stl_cd1400ccrwait(portp);
			stl_cd1400setreg(portp, CCR, CCR_SENDSCHR2);
			portp->stats.rxxoff++;
			stl_cd1400ccrwait(portp);
		}
		if (tty->termios->c_cflag & CRTSCTS) {
			stl_cd1400setreg(portp, MCOR1,
				(stl_cd1400getreg(portp, MCOR1) & 0xf0));
			stl_cd1400setreg(portp, MSVR2, 0);
			portp->stats.rxrtsoff++;
		}
	}

	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
3591
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3592 3593 3594 3595 3596 3597 3598 3599
}

/*****************************************************************************/

/*
 *	Send a flow control character...
 */

J
Jiri Slaby 已提交
3600
static void stl_cd1400sendflow(struct stlport *portp, int state)
L
Linus Torvalds 已提交
3601 3602 3603 3604
{
	struct tty_struct	*tty;
	unsigned long		flags;

3605
	pr_debug("stl_cd1400sendflow(portp=%p,state=%x)\n", portp, state);
L
Linus Torvalds 已提交
3606

3607
	if (portp == NULL)
L
Linus Torvalds 已提交
3608 3609
		return;
	tty = portp->tty;
3610
	if (tty == NULL)
L
Linus Torvalds 已提交
3611 3612
		return;

A
Alan Cox 已提交
3613
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));
	if (state) {
		stl_cd1400ccrwait(portp);
		stl_cd1400setreg(portp, CCR, CCR_SENDSCHR1);
		portp->stats.rxxon++;
		stl_cd1400ccrwait(portp);
	} else {
		stl_cd1400ccrwait(portp);
		stl_cd1400setreg(portp, CCR, CCR_SENDSCHR2);
		portp->stats.rxxoff++;
		stl_cd1400ccrwait(portp);
	}
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
3628
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3629 3630 3631 3632
}

/*****************************************************************************/

J
Jiri Slaby 已提交
3633
static void stl_cd1400flush(struct stlport *portp)
L
Linus Torvalds 已提交
3634 3635 3636
{
	unsigned long	flags;

3637
	pr_debug("stl_cd1400flush(portp=%p)\n", portp);
L
Linus Torvalds 已提交
3638

3639
	if (portp == NULL)
L
Linus Torvalds 已提交
3640 3641
		return;

A
Alan Cox 已提交
3642
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
3643 3644 3645 3646 3647 3648 3649
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_cd1400setreg(portp, CAR, (portp->portnr & 0x03));
	stl_cd1400ccrwait(portp);
	stl_cd1400setreg(portp, CCR, CCR_TXFLUSHFIFO);
	stl_cd1400ccrwait(portp);
	portp->tx.tail = portp->tx.head;
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
3650
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661
}

/*****************************************************************************/

/*
 *	Return the current state of data flow on this port. This is only
 *	really interresting when determining if data has fully completed
 *	transmission or not... This is easy for the cd1400, it accurately
 *	maintains the busy port flag.
 */

J
Jiri Slaby 已提交
3662
static int stl_cd1400datastate(struct stlport *portp)
L
Linus Torvalds 已提交
3663
{
3664
	pr_debug("stl_cd1400datastate(portp=%p)\n", portp);
L
Linus Torvalds 已提交
3665

3666
	if (portp == NULL)
3667
		return 0;
L
Linus Torvalds 已提交
3668

3669
	return test_bit(ASYI_TXBUSY, &portp->istate) ? 1 : 0;
L
Linus Torvalds 已提交
3670 3671 3672 3673 3674 3675 3676 3677
}

/*****************************************************************************/

/*
 *	Interrupt service routine for cd1400 EasyIO boards.
 */

J
Jiri Slaby 已提交
3678
static void stl_cd1400eiointr(struct stlpanel *panelp, unsigned int iobase)
L
Linus Torvalds 已提交
3679 3680 3681
{
	unsigned char	svrtype;

3682
	pr_debug("stl_cd1400eiointr(panelp=%p,iobase=%x)\n", panelp, iobase);
L
Linus Torvalds 已提交
3683

A
Alan Cox 已提交
3684
	spin_lock(&brd_lock);
L
Linus Torvalds 已提交
3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697
	outb(SVRR, iobase);
	svrtype = inb(iobase + EREG_DATA);
	if (panelp->nrports > 4) {
		outb((SVRR + 0x80), iobase);
		svrtype |= inb(iobase + EREG_DATA);
	}

	if (svrtype & SVRR_RX)
		stl_cd1400rxisr(panelp, iobase);
	else if (svrtype & SVRR_TX)
		stl_cd1400txisr(panelp, iobase);
	else if (svrtype & SVRR_MDM)
		stl_cd1400mdmisr(panelp, iobase);
A
Alan Cox 已提交
3698 3699

	spin_unlock(&brd_lock);
L
Linus Torvalds 已提交
3700 3701 3702 3703 3704 3705 3706 3707
}

/*****************************************************************************/

/*
 *	Interrupt service routine for cd1400 panels.
 */

J
Jiri Slaby 已提交
3708
static void stl_cd1400echintr(struct stlpanel *panelp, unsigned int iobase)
L
Linus Torvalds 已提交
3709 3710 3711
{
	unsigned char	svrtype;

3712
	pr_debug("stl_cd1400echintr(panelp=%p,iobase=%x)\n", panelp, iobase);
L
Linus Torvalds 已提交
3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733

	outb(SVRR, iobase);
	svrtype = inb(iobase + EREG_DATA);
	outb((SVRR + 0x80), iobase);
	svrtype |= inb(iobase + EREG_DATA);
	if (svrtype & SVRR_RX)
		stl_cd1400rxisr(panelp, iobase);
	else if (svrtype & SVRR_TX)
		stl_cd1400txisr(panelp, iobase);
	else if (svrtype & SVRR_MDM)
		stl_cd1400mdmisr(panelp, iobase);
}


/*****************************************************************************/

/*
 *	Unfortunately we need to handle breaks in the TX data stream, since
 *	this is the only way to generate them on the cd1400.
 */

J
Jiri Slaby 已提交
3734
static inline int stl_cd1400breakisr(struct stlport *portp, int ioaddr)
L
Linus Torvalds 已提交
3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745
{
	if (portp->brklen == 1) {
		outb((COR2 + portp->uartaddr), ioaddr);
		outb((inb(ioaddr + EREG_DATA) | COR2_ETC),
			(ioaddr + EREG_DATA));
		outb((TDR + portp->uartaddr), ioaddr);
		outb(ETC_CMD, (ioaddr + EREG_DATA));
		outb(ETC_STARTBREAK, (ioaddr + EREG_DATA));
		outb((SRER + portp->uartaddr), ioaddr);
		outb((inb(ioaddr + EREG_DATA) & ~(SRER_TXDATA | SRER_TXEMPTY)),
			(ioaddr + EREG_DATA));
3746
		return 1;
L
Linus Torvalds 已提交
3747 3748 3749 3750 3751
	} else if (portp->brklen > 1) {
		outb((TDR + portp->uartaddr), ioaddr);
		outb(ETC_CMD, (ioaddr + EREG_DATA));
		outb(ETC_STOPBREAK, (ioaddr + EREG_DATA));
		portp->brklen = -1;
3752
		return 1;
L
Linus Torvalds 已提交
3753 3754 3755 3756 3757 3758
	} else {
		outb((COR2 + portp->uartaddr), ioaddr);
		outb((inb(ioaddr + EREG_DATA) & ~COR2_ETC),
			(ioaddr + EREG_DATA));
		portp->brklen = 0;
	}
3759
	return 0;
L
Linus Torvalds 已提交
3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775
}

/*****************************************************************************/

/*
 *	Transmit interrupt handler. This has gotta be fast!  Handling TX
 *	chars is pretty simple, stuff as many as possible from the TX buffer
 *	into the cd1400 FIFO. Must also handle TX breaks here, since they
 *	are embedded as commands in the data stream. Oh no, had to use a goto!
 *	This could be optimized more, will do when I get time...
 *	In practice it is possible that interrupts are enabled but that the
 *	port has been hung up. Need to handle not having any TX buffer here,
 *	this is done by using the side effect that head and tail will also
 *	be NULL if the buffer has been freed.
 */

J
Jiri Slaby 已提交
3776
static void stl_cd1400txisr(struct stlpanel *panelp, int ioaddr)
L
Linus Torvalds 已提交
3777
{
J
Jiri Slaby 已提交
3778
	struct stlport	*portp;
L
Linus Torvalds 已提交
3779 3780 3781 3782
	int		len, stlen;
	char		*head, *tail;
	unsigned char	ioack, srer;

3783
	pr_debug("stl_cd1400txisr(panelp=%p,ioaddr=%x)\n", panelp, ioaddr);
L
Linus Torvalds 已提交
3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854

	ioack = inb(ioaddr + EREG_TXACK);
	if (((ioack & panelp->ackmask) != 0) ||
	    ((ioack & ACK_TYPMASK) != ACK_TYPTX)) {
		printk("STALLION: bad TX interrupt ack value=%x\n", ioack);
		return;
	}
	portp = panelp->ports[(ioack >> 3)];

/*
 *	Unfortunately we need to handle breaks in the data stream, since
 *	this is the only way to generate them on the cd1400. Do it now if
 *	a break is to be sent.
 */
	if (portp->brklen != 0)
		if (stl_cd1400breakisr(portp, ioaddr))
			goto stl_txalldone;

	head = portp->tx.head;
	tail = portp->tx.tail;
	len = (head >= tail) ? (head - tail) : (STL_TXBUFSIZE - (tail - head));
	if ((len == 0) || ((len < STL_TXBUFLOW) &&
	    (test_bit(ASYI_TXLOW, &portp->istate) == 0))) {
		set_bit(ASYI_TXLOW, &portp->istate);
		schedule_work(&portp->tqueue);
	}

	if (len == 0) {
		outb((SRER + portp->uartaddr), ioaddr);
		srer = inb(ioaddr + EREG_DATA);
		if (srer & SRER_TXDATA) {
			srer = (srer & ~SRER_TXDATA) | SRER_TXEMPTY;
		} else {
			srer &= ~(SRER_TXDATA | SRER_TXEMPTY);
			clear_bit(ASYI_TXBUSY, &portp->istate);
		}
		outb(srer, (ioaddr + EREG_DATA));
	} else {
		len = MIN(len, CD1400_TXFIFOSIZE);
		portp->stats.txtotal += len;
		stlen = MIN(len, ((portp->tx.buf + STL_TXBUFSIZE) - tail));
		outb((TDR + portp->uartaddr), ioaddr);
		outsb((ioaddr + EREG_DATA), tail, stlen);
		len -= stlen;
		tail += stlen;
		if (tail >= (portp->tx.buf + STL_TXBUFSIZE))
			tail = portp->tx.buf;
		if (len > 0) {
			outsb((ioaddr + EREG_DATA), tail, len);
			tail += len;
		}
		portp->tx.tail = tail;
	}

stl_txalldone:
	outb((EOSRR + portp->uartaddr), ioaddr);
	outb(0, (ioaddr + EREG_DATA));
}

/*****************************************************************************/

/*
 *	Receive character interrupt handler. Determine if we have good chars
 *	or bad chars and then process appropriately. Good chars are easy
 *	just shove the lot into the RX buffer and set all status byte to 0.
 *	If a bad RX char then process as required. This routine needs to be
 *	fast!  In practice it is possible that we get an interrupt on a port
 *	that is closed. This can happen on hangups - since they completely
 *	shutdown a port not in user context. Need to handle this case.
 */

J
Jiri Slaby 已提交
3855
static void stl_cd1400rxisr(struct stlpanel *panelp, int ioaddr)
L
Linus Torvalds 已提交
3856
{
J
Jiri Slaby 已提交
3857
	struct stlport		*portp;
L
Linus Torvalds 已提交
3858 3859 3860 3861 3862
	struct tty_struct	*tty;
	unsigned int		ioack, len, buflen;
	unsigned char		status;
	char			ch;

3863
	pr_debug("stl_cd1400rxisr(panelp=%p,ioaddr=%x)\n", panelp, ioaddr);
L
Linus Torvalds 已提交
3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875

	ioack = inb(ioaddr + EREG_RXACK);
	if ((ioack & panelp->ackmask) != 0) {
		printk("STALLION: bad RX interrupt ack value=%x\n", ioack);
		return;
	}
	portp = panelp->ports[(ioack >> 3)];
	tty = portp->tty;

	if ((ioack & ACK_TYPMASK) == ACK_TYPRXGOOD) {
		outb((RDCR + portp->uartaddr), ioaddr);
		len = inb(ioaddr + EREG_DATA);
A
Alan Cox 已提交
3876
		if (tty == NULL || (buflen = tty_buffer_request_room(tty, len)) == 0) {
L
Linus Torvalds 已提交
3877 3878 3879 3880 3881 3882 3883 3884
			len = MIN(len, sizeof(stl_unwanted));
			outb((RDSR + portp->uartaddr), ioaddr);
			insb((ioaddr + EREG_DATA), &stl_unwanted[0], len);
			portp->stats.rxlost += len;
			portp->stats.rxtotal += len;
		} else {
			len = MIN(len, buflen);
			if (len > 0) {
A
Alan Cox 已提交
3885
				unsigned char *ptr;
L
Linus Torvalds 已提交
3886
				outb((RDSR + portp->uartaddr), ioaddr);
A
Alan Cox 已提交
3887 3888
				tty_prepare_flip_string(tty, &ptr, len);
				insb((ioaddr + EREG_DATA), ptr, len);
L
Linus Torvalds 已提交
3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911
				tty_schedule_flip(tty);
				portp->stats.rxtotal += len;
			}
		}
	} else if ((ioack & ACK_TYPMASK) == ACK_TYPRXBAD) {
		outb((RDSR + portp->uartaddr), ioaddr);
		status = inb(ioaddr + EREG_DATA);
		ch = inb(ioaddr + EREG_DATA);
		if (status & ST_PARITY)
			portp->stats.rxparity++;
		if (status & ST_FRAMING)
			portp->stats.rxframing++;
		if (status & ST_OVERRUN)
			portp->stats.rxoverrun++;
		if (status & ST_BREAK)
			portp->stats.rxbreaks++;
		if (status & ST_SCHARMASK) {
			if ((status & ST_SCHARMASK) == ST_SCHAR1)
				portp->stats.txxon++;
			if ((status & ST_SCHARMASK) == ST_SCHAR2)
				portp->stats.txxoff++;
			goto stl_rxalldone;
		}
A
Alan Cox 已提交
3912
		if (tty != NULL && (portp->rxignoremsk & status) == 0) {
L
Linus Torvalds 已提交
3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931
			if (portp->rxmarkmsk & status) {
				if (status & ST_BREAK) {
					status = TTY_BREAK;
					if (portp->flags & ASYNC_SAK) {
						do_SAK(tty);
						BRDENABLE(portp->brdnr, portp->pagenr);
					}
				} else if (status & ST_PARITY) {
					status = TTY_PARITY;
				} else if (status & ST_FRAMING) {
					status = TTY_FRAME;
				} else if(status & ST_OVERRUN) {
					status = TTY_OVERRUN;
				} else {
					status = 0;
				}
			} else {
				status = 0;
			}
A
Alan Cox 已提交
3932 3933
			tty_insert_flip_char(tty, ch, status);
			tty_schedule_flip(tty);
L
Linus Torvalds 已提交
3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952
		}
	} else {
		printk("STALLION: bad RX interrupt ack value=%x\n", ioack);
		return;
	}

stl_rxalldone:
	outb((EOSRR + portp->uartaddr), ioaddr);
	outb(0, (ioaddr + EREG_DATA));
}

/*****************************************************************************/

/*
 *	Modem interrupt handler. The is called when the modem signal line
 *	(DCD) has changed state. Leave most of the work to the off-level
 *	processing routine.
 */

J
Jiri Slaby 已提交
3953
static void stl_cd1400mdmisr(struct stlpanel *panelp, int ioaddr)
L
Linus Torvalds 已提交
3954
{
J
Jiri Slaby 已提交
3955
	struct stlport	*portp;
L
Linus Torvalds 已提交
3956 3957 3958
	unsigned int	ioack;
	unsigned char	misr;

3959
	pr_debug("stl_cd1400mdmisr(panelp=%p)\n", panelp);
L
Linus Torvalds 已提交
3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990

	ioack = inb(ioaddr + EREG_MDACK);
	if (((ioack & panelp->ackmask) != 0) ||
	    ((ioack & ACK_TYPMASK) != ACK_TYPMDM)) {
		printk("STALLION: bad MODEM interrupt ack value=%x\n", ioack);
		return;
	}
	portp = panelp->ports[(ioack >> 3)];

	outb((MISR + portp->uartaddr), ioaddr);
	misr = inb(ioaddr + EREG_DATA);
	if (misr & MISR_DCD) {
		set_bit(ASYI_DCDCHANGE, &portp->istate);
		schedule_work(&portp->tqueue);
		portp->stats.modem++;
	}

	outb((EOSRR + portp->uartaddr), ioaddr);
	outb(0, (ioaddr + EREG_DATA));
}

/*****************************************************************************/
/*                      SC26198 HARDWARE FUNCTIONS                           */
/*****************************************************************************/

/*
 *	These functions get/set/update the registers of the sc26198 UARTs.
 *	Access to the sc26198 registers is via an address/data io port pair.
 *	(Maybe should make this inline...)
 */

J
Jiri Slaby 已提交
3991
static int stl_sc26198getreg(struct stlport *portp, int regnr)
L
Linus Torvalds 已提交
3992 3993
{
	outb((regnr | portp->uartaddr), (portp->ioaddr + XP_ADDR));
3994
	return inb(portp->ioaddr + XP_DATA);
L
Linus Torvalds 已提交
3995 3996
}

J
Jiri Slaby 已提交
3997
static void stl_sc26198setreg(struct stlport *portp, int regnr, int value)
L
Linus Torvalds 已提交
3998 3999 4000 4001 4002
{
	outb((regnr | portp->uartaddr), (portp->ioaddr + XP_ADDR));
	outb(value, (portp->ioaddr + XP_DATA));
}

J
Jiri Slaby 已提交
4003
static int stl_sc26198updatereg(struct stlport *portp, int regnr, int value)
L
Linus Torvalds 已提交
4004 4005 4006 4007
{
	outb((regnr | portp->uartaddr), (portp->ioaddr + XP_ADDR));
	if (inb(portp->ioaddr + XP_DATA) != value) {
		outb(value, (portp->ioaddr + XP_DATA));
4008
		return 1;
L
Linus Torvalds 已提交
4009
	}
4010
	return 0;
L
Linus Torvalds 已提交
4011 4012 4013 4014 4015 4016 4017 4018
}

/*****************************************************************************/

/*
 *	Functions to get and set the sc26198 global registers.
 */

J
Jiri Slaby 已提交
4019
static int stl_sc26198getglobreg(struct stlport *portp, int regnr)
L
Linus Torvalds 已提交
4020 4021
{
	outb(regnr, (portp->ioaddr + XP_ADDR));
4022
	return inb(portp->ioaddr + XP_DATA);
L
Linus Torvalds 已提交
4023 4024 4025
}

#if 0
J
Jiri Slaby 已提交
4026
static void stl_sc26198setglobreg(struct stlport *portp, int regnr, int value)
L
Linus Torvalds 已提交
4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040
{
	outb(regnr, (portp->ioaddr + XP_ADDR));
	outb(value, (portp->ioaddr + XP_DATA));
}
#endif

/*****************************************************************************/

/*
 *	Inbitialize the UARTs in a panel. We don't care what sort of board
 *	these ports are on - since the port io registers are almost
 *	identical when dealing with ports.
 */

J
Jiri Slaby 已提交
4041
static int stl_sc26198panelinit(struct stlbrd *brdp, struct stlpanel *panelp)
L
Linus Torvalds 已提交
4042 4043 4044 4045
{
	int	chipmask, i;
	int	nrchips, ioaddr;

4046
	pr_debug("stl_sc26198panelinit(brdp=%p,panelp=%p)\n", brdp, panelp);
L
Linus Torvalds 已提交
4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076

	BRDENABLE(panelp->brdnr, panelp->pagenr);

/*
 *	Check that each chip is present and started up OK.
 */
	chipmask = 0;
	nrchips = (panelp->nrports + 4) / SC26198_PORTS;
	if (brdp->brdtype == BRD_ECHPCI)
		outb(panelp->pagenr, brdp->ioctrl);

	for (i = 0; (i < nrchips); i++) {
		ioaddr = panelp->iobase + (i * 4); 
		outb(SCCR, (ioaddr + XP_ADDR));
		outb(CR_RESETALL, (ioaddr + XP_DATA));
		outb(TSTR, (ioaddr + XP_ADDR));
		if (inb(ioaddr + XP_DATA) != 0) {
			printk("STALLION: sc26198 not responding, "
				"brd=%d panel=%d chip=%d\n",
				panelp->brdnr, panelp->panelnr, i);
			continue;
		}
		chipmask |= (0x1 << i);
		outb(GCCR, (ioaddr + XP_ADDR));
		outb(GCCR_IVRTYPCHANACK, (ioaddr + XP_DATA));
		outb(WDTRCR, (ioaddr + XP_ADDR));
		outb(0xff, (ioaddr + XP_DATA));
	}

	BRDDISABLE(panelp->brdnr);
4077
	return chipmask;
L
Linus Torvalds 已提交
4078 4079 4080 4081 4082 4083 4084 4085
}

/*****************************************************************************/

/*
 *	Initialize hardware specific port registers.
 */

J
Jiri Slaby 已提交
4086
static void stl_sc26198portinit(struct stlbrd *brdp, struct stlpanel *panelp, struct stlport *portp)
L
Linus Torvalds 已提交
4087
{
4088 4089
	pr_debug("stl_sc26198portinit(brdp=%p,panelp=%p,portp=%p)\n", brdp,
			panelp, portp);
L
Linus Torvalds 已提交
4090

4091 4092
	if ((brdp == NULL) || (panelp == NULL) ||
	    (portp == NULL))
L
Linus Torvalds 已提交
4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111
		return;

	portp->ioaddr = panelp->iobase + ((portp->portnr < 8) ? 0 : 4);
	portp->uartaddr = (portp->portnr & 0x07) << 4;
	portp->pagenr = panelp->pagenr;
	portp->hwid = 0x1;

	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_sc26198setreg(portp, IOPCR, IOPCR_SETSIGS);
	BRDDISABLE(portp->brdnr);
}

/*****************************************************************************/

/*
 *	Set up the sc26198 registers for a port based on the termios port
 *	settings.
 */

J
Jiri Slaby 已提交
4112
static void stl_sc26198setport(struct stlport *portp, struct termios *tiosp)
L
Linus Torvalds 已提交
4113
{
J
Jiri Slaby 已提交
4114
	struct stlbrd	*brdp;
L
Linus Torvalds 已提交
4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128
	unsigned long	flags;
	unsigned int	baudrate;
	unsigned char	mr0, mr1, mr2, clk;
	unsigned char	imron, imroff, iopr, ipr;

	mr0 = 0;
	mr1 = 0;
	mr2 = 0;
	clk = 0;
	iopr = 0;
	imron = 0;
	imroff = 0;

	brdp = stl_brds[portp->brdnr];
4129
	if (brdp == NULL)
L
Linus Torvalds 已提交
4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262
		return;

/*
 *	Set up the RX char ignore mask with those RX error types we
 *	can ignore.
 */
	portp->rxignoremsk = 0;
	if (tiosp->c_iflag & IGNPAR)
		portp->rxignoremsk |= (SR_RXPARITY | SR_RXFRAMING |
			SR_RXOVERRUN);
	if (tiosp->c_iflag & IGNBRK)
		portp->rxignoremsk |= SR_RXBREAK;

	portp->rxmarkmsk = SR_RXOVERRUN;
	if (tiosp->c_iflag & (INPCK | PARMRK))
		portp->rxmarkmsk |= (SR_RXPARITY | SR_RXFRAMING);
	if (tiosp->c_iflag & BRKINT)
		portp->rxmarkmsk |= SR_RXBREAK;

/*
 *	Go through the char size, parity and stop bits and set all the
 *	option register appropriately.
 */
	switch (tiosp->c_cflag & CSIZE) {
	case CS5:
		mr1 |= MR1_CS5;
		break;
	case CS6:
		mr1 |= MR1_CS6;
		break;
	case CS7:
		mr1 |= MR1_CS7;
		break;
	default:
		mr1 |= MR1_CS8;
		break;
	}

	if (tiosp->c_cflag & CSTOPB)
		mr2 |= MR2_STOP2;
	else
		mr2 |= MR2_STOP1;

	if (tiosp->c_cflag & PARENB) {
		if (tiosp->c_cflag & PARODD)
			mr1 |= (MR1_PARENB | MR1_PARODD);
		else
			mr1 |= (MR1_PARENB | MR1_PAREVEN);
	} else {
		mr1 |= MR1_PARNONE;
	}

	mr1 |= MR1_ERRBLOCK;

/*
 *	Set the RX FIFO threshold at 8 chars. This gives a bit of breathing
 *	space for hardware flow control and the like. This should be set to
 *	VMIN.
 */
	mr2 |= MR2_RXFIFOHALF;

/*
 *	Calculate the baud rate timers. For now we will just assume that
 *	the input and output baud are the same. The sc26198 has a fixed
 *	baud rate table, so only discrete baud rates possible.
 */
	baudrate = tiosp->c_cflag & CBAUD;
	if (baudrate & CBAUDEX) {
		baudrate &= ~CBAUDEX;
		if ((baudrate < 1) || (baudrate > 4))
			tiosp->c_cflag &= ~CBAUDEX;
		else
			baudrate += 15;
	}
	baudrate = stl_baudrates[baudrate];
	if ((tiosp->c_cflag & CBAUD) == B38400) {
		if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
			baudrate = 57600;
		else if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
			baudrate = 115200;
		else if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
			baudrate = 230400;
		else if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
			baudrate = 460800;
		else if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
			baudrate = (portp->baud_base / portp->custom_divisor);
	}
	if (baudrate > STL_SC26198MAXBAUD)
		baudrate = STL_SC26198MAXBAUD;

	if (baudrate > 0) {
		for (clk = 0; (clk < SC26198_NRBAUDS); clk++) {
			if (baudrate <= sc26198_baudtable[clk])
				break;
		}
	}

/*
 *	Check what form of modem signaling is required and set it up.
 */
	if (tiosp->c_cflag & CLOCAL) {
		portp->flags &= ~ASYNC_CHECK_CD;
	} else {
		iopr |= IOPR_DCDCOS;
		imron |= IR_IOPORT;
		portp->flags |= ASYNC_CHECK_CD;
	}

/*
 *	Setup sc26198 enhanced modes if we can. In particular we want to
 *	handle as much of the flow control as possible automatically. As
 *	well as saving a few CPU cycles it will also greatly improve flow
 *	control reliability.
 */
	if (tiosp->c_iflag & IXON) {
		mr0 |= MR0_SWFTX | MR0_SWFT;
		imron |= IR_XONXOFF;
	} else {
		imroff |= IR_XONXOFF;
	}
	if (tiosp->c_iflag & IXOFF)
		mr0 |= MR0_SWFRX;

	if (tiosp->c_cflag & CRTSCTS) {
		mr2 |= MR2_AUTOCTS;
		mr1 |= MR1_AUTORTS;
	}

/*
 *	All sc26198 register values calculated so go through and set
 *	them all up.
 */

4263
	pr_debug("SETPORT: portnr=%d panelnr=%d brdnr=%d\n",
L
Linus Torvalds 已提交
4264
		portp->portnr, portp->panelnr, portp->brdnr);
4265 4266 4267
	pr_debug("    mr0=%x mr1=%x mr2=%x clk=%x\n", mr0, mr1, mr2, clk);
	pr_debug("    iopr=%x imron=%x imroff=%x\n", iopr, imron, imroff);
	pr_debug("    schr1=%x schr2=%x schr3=%x schr4=%x\n",
L
Linus Torvalds 已提交
4268 4269 4270
		tiosp->c_cc[VSTART], tiosp->c_cc[VSTOP],
		tiosp->c_cc[VSTART], tiosp->c_cc[VSTOP]);

A
Alan Cox 已提交
4271
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_sc26198setreg(portp, IMR, 0);
	stl_sc26198updatereg(portp, MR0, mr0);
	stl_sc26198updatereg(portp, MR1, mr1);
	stl_sc26198setreg(portp, SCCR, CR_RXERRBLOCK);
	stl_sc26198updatereg(portp, MR2, mr2);
	stl_sc26198updatereg(portp, IOPIOR,
		((stl_sc26198getreg(portp, IOPIOR) & ~IPR_CHANGEMASK) | iopr));

	if (baudrate > 0) {
		stl_sc26198setreg(portp, TXCSR, clk);
		stl_sc26198setreg(portp, RXCSR, clk);
	}

	stl_sc26198setreg(portp, XONCR, tiosp->c_cc[VSTART]);
	stl_sc26198setreg(portp, XOFFCR, tiosp->c_cc[VSTOP]);

	ipr = stl_sc26198getreg(portp, IPR);
	if (ipr & IPR_DCD)
		portp->sigs &= ~TIOCM_CD;
	else
		portp->sigs |= TIOCM_CD;

	portp->imr = (portp->imr & ~imroff) | imron;
	stl_sc26198setreg(portp, IMR, portp->imr);
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
4298
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4299 4300 4301 4302 4303 4304 4305 4306
}

/*****************************************************************************/

/*
 *	Set the state of the DTR and RTS signals.
 */

J
Jiri Slaby 已提交
4307
static void stl_sc26198setsignals(struct stlport *portp, int dtr, int rts)
L
Linus Torvalds 已提交
4308 4309 4310 4311
{
	unsigned char	iopioron, iopioroff;
	unsigned long	flags;

4312 4313
	pr_debug("stl_sc26198setsignals(portp=%p,dtr=%d,rts=%d)\n", portp,
			dtr, rts);
L
Linus Torvalds 已提交
4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325

	iopioron = 0;
	iopioroff = 0;
	if (dtr == 0)
		iopioroff |= IPR_DTR;
	else if (dtr > 0)
		iopioron |= IPR_DTR;
	if (rts == 0)
		iopioroff |= IPR_RTS;
	else if (rts > 0)
		iopioron |= IPR_RTS;

A
Alan Cox 已提交
4326
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4327 4328 4329 4330
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_sc26198setreg(portp, IOPIOR,
		((stl_sc26198getreg(portp, IOPIOR) & ~iopioroff) | iopioron));
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
4331
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4332 4333 4334 4335 4336 4337 4338 4339
}

/*****************************************************************************/

/*
 *	Return the state of the signals.
 */

J
Jiri Slaby 已提交
4340
static int stl_sc26198getsignals(struct stlport *portp)
L
Linus Torvalds 已提交
4341 4342 4343 4344 4345
{
	unsigned char	ipr;
	unsigned long	flags;
	int		sigs;

4346
	pr_debug("stl_sc26198getsignals(portp=%p)\n", portp);
L
Linus Torvalds 已提交
4347

A
Alan Cox 已提交
4348
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4349 4350 4351
	BRDENABLE(portp->brdnr, portp->pagenr);
	ipr = stl_sc26198getreg(portp, IPR);
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
4352
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4353 4354 4355 4356 4357 4358 4359

	sigs = 0;
	sigs |= (ipr & IPR_DCD) ? 0 : TIOCM_CD;
	sigs |= (ipr & IPR_CTS) ? 0 : TIOCM_CTS;
	sigs |= (ipr & IPR_DTR) ? 0: TIOCM_DTR;
	sigs |= (ipr & IPR_RTS) ? 0: TIOCM_RTS;
	sigs |= TIOCM_DSR;
4360
	return sigs;
L
Linus Torvalds 已提交
4361 4362 4363 4364 4365 4366 4367 4368
}

/*****************************************************************************/

/*
 *	Enable/Disable the Transmitter and/or Receiver.
 */

J
Jiri Slaby 已提交
4369
static void stl_sc26198enablerxtx(struct stlport *portp, int rx, int tx)
L
Linus Torvalds 已提交
4370 4371 4372 4373
{
	unsigned char	ccr;
	unsigned long	flags;

4374
	pr_debug("stl_sc26198enablerxtx(portp=%p,rx=%d,tx=%d)\n", portp, rx,tx);
L
Linus Torvalds 已提交
4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385

	ccr = portp->crenable;
	if (tx == 0)
		ccr &= ~CR_TXENABLE;
	else if (tx > 0)
		ccr |= CR_TXENABLE;
	if (rx == 0)
		ccr &= ~CR_RXENABLE;
	else if (rx > 0)
		ccr |= CR_RXENABLE;

A
Alan Cox 已提交
4386
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4387 4388 4389 4390
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_sc26198setreg(portp, SCCR, ccr);
	BRDDISABLE(portp->brdnr);
	portp->crenable = ccr;
A
Alan Cox 已提交
4391
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4392 4393 4394 4395 4396 4397 4398 4399
}

/*****************************************************************************/

/*
 *	Start/stop the Transmitter and/or Receiver.
 */

J
Jiri Slaby 已提交
4400
static void stl_sc26198startrxtx(struct stlport *portp, int rx, int tx)
L
Linus Torvalds 已提交
4401 4402 4403 4404
{
	unsigned char	imr;
	unsigned long	flags;

4405
	pr_debug("stl_sc26198startrxtx(portp=%p,rx=%d,tx=%d)\n", portp, rx, tx);
L
Linus Torvalds 已提交
4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416

	imr = portp->imr;
	if (tx == 0)
		imr &= ~IR_TXRDY;
	else if (tx == 1)
		imr |= IR_TXRDY;
	if (rx == 0)
		imr &= ~(IR_RXRDY | IR_RXBREAK | IR_RXWATCHDOG);
	else if (rx > 0)
		imr |= IR_RXRDY | IR_RXBREAK | IR_RXWATCHDOG;

A
Alan Cox 已提交
4417
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4418 4419 4420 4421 4422 4423
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_sc26198setreg(portp, IMR, imr);
	BRDDISABLE(portp->brdnr);
	portp->imr = imr;
	if (tx > 0)
		set_bit(ASYI_TXBUSY, &portp->istate);
A
Alan Cox 已提交
4424
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4425 4426 4427 4428 4429 4430 4431 4432
}

/*****************************************************************************/

/*
 *	Disable all interrupts from this port.
 */

J
Jiri Slaby 已提交
4433
static void stl_sc26198disableintrs(struct stlport *portp)
L
Linus Torvalds 已提交
4434 4435 4436
{
	unsigned long	flags;

4437
	pr_debug("stl_sc26198disableintrs(portp=%p)\n", portp);
L
Linus Torvalds 已提交
4438

A
Alan Cox 已提交
4439
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4440 4441 4442 4443
	BRDENABLE(portp->brdnr, portp->pagenr);
	portp->imr = 0;
	stl_sc26198setreg(portp, IMR, 0);
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
4444
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4445 4446 4447 4448
}

/*****************************************************************************/

J
Jiri Slaby 已提交
4449
static void stl_sc26198sendbreak(struct stlport *portp, int len)
L
Linus Torvalds 已提交
4450 4451 4452
{
	unsigned long	flags;

4453
	pr_debug("stl_sc26198sendbreak(portp=%p,len=%d)\n", portp, len);
L
Linus Torvalds 已提交
4454

A
Alan Cox 已提交
4455
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4456 4457 4458 4459 4460 4461 4462 4463
	BRDENABLE(portp->brdnr, portp->pagenr);
	if (len == 1) {
		stl_sc26198setreg(portp, SCCR, CR_TXSTARTBREAK);
		portp->stats.txbreaks++;
	} else {
		stl_sc26198setreg(portp, SCCR, CR_TXSTOPBREAK);
	}
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
4464
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4465 4466 4467 4468 4469 4470 4471 4472
}

/*****************************************************************************/

/*
 *	Take flow control actions...
 */

J
Jiri Slaby 已提交
4473
static void stl_sc26198flowctrl(struct stlport *portp, int state)
L
Linus Torvalds 已提交
4474 4475 4476 4477 4478
{
	struct tty_struct	*tty;
	unsigned long		flags;
	unsigned char		mr0;

4479
	pr_debug("stl_sc26198flowctrl(portp=%p,state=%x)\n", portp, state);
L
Linus Torvalds 已提交
4480

4481
	if (portp == NULL)
L
Linus Torvalds 已提交
4482 4483
		return;
	tty = portp->tty;
4484
	if (tty == NULL)
L
Linus Torvalds 已提交
4485 4486
		return;

A
Alan Cox 已提交
4487
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532
	BRDENABLE(portp->brdnr, portp->pagenr);

	if (state) {
		if (tty->termios->c_iflag & IXOFF) {
			mr0 = stl_sc26198getreg(portp, MR0);
			stl_sc26198setreg(portp, MR0, (mr0 & ~MR0_SWFRXTX));
			stl_sc26198setreg(portp, SCCR, CR_TXSENDXON);
			mr0 |= MR0_SWFRX;
			portp->stats.rxxon++;
			stl_sc26198wait(portp);
			stl_sc26198setreg(portp, MR0, mr0);
		}
/*
 *		Question: should we return RTS to what it was before? It may
 *		have been set by an ioctl... Suppose not, since if you have
 *		hardware flow control set then it is pretty silly to go and
 *		set the RTS line by hand.
 */
		if (tty->termios->c_cflag & CRTSCTS) {
			stl_sc26198setreg(portp, MR1,
				(stl_sc26198getreg(portp, MR1) | MR1_AUTORTS));
			stl_sc26198setreg(portp, IOPIOR,
				(stl_sc26198getreg(portp, IOPIOR) | IOPR_RTS));
			portp->stats.rxrtson++;
		}
	} else {
		if (tty->termios->c_iflag & IXOFF) {
			mr0 = stl_sc26198getreg(portp, MR0);
			stl_sc26198setreg(portp, MR0, (mr0 & ~MR0_SWFRXTX));
			stl_sc26198setreg(portp, SCCR, CR_TXSENDXOFF);
			mr0 &= ~MR0_SWFRX;
			portp->stats.rxxoff++;
			stl_sc26198wait(portp);
			stl_sc26198setreg(portp, MR0, mr0);
		}
		if (tty->termios->c_cflag & CRTSCTS) {
			stl_sc26198setreg(portp, MR1,
				(stl_sc26198getreg(portp, MR1) & ~MR1_AUTORTS));
			stl_sc26198setreg(portp, IOPIOR,
				(stl_sc26198getreg(portp, IOPIOR) & ~IOPR_RTS));
			portp->stats.rxrtsoff++;
		}
	}

	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
4533
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4534 4535 4536 4537 4538 4539 4540 4541
}

/*****************************************************************************/

/*
 *	Send a flow control character.
 */

J
Jiri Slaby 已提交
4542
static void stl_sc26198sendflow(struct stlport *portp, int state)
L
Linus Torvalds 已提交
4543 4544 4545 4546 4547
{
	struct tty_struct	*tty;
	unsigned long		flags;
	unsigned char		mr0;

4548
	pr_debug("stl_sc26198sendflow(portp=%p,state=%x)\n", portp, state);
L
Linus Torvalds 已提交
4549

4550
	if (portp == NULL)
L
Linus Torvalds 已提交
4551 4552
		return;
	tty = portp->tty;
4553
	if (tty == NULL)
L
Linus Torvalds 已提交
4554 4555
		return;

A
Alan Cox 已提交
4556
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575
	BRDENABLE(portp->brdnr, portp->pagenr);
	if (state) {
		mr0 = stl_sc26198getreg(portp, MR0);
		stl_sc26198setreg(portp, MR0, (mr0 & ~MR0_SWFRXTX));
		stl_sc26198setreg(portp, SCCR, CR_TXSENDXON);
		mr0 |= MR0_SWFRX;
		portp->stats.rxxon++;
		stl_sc26198wait(portp);
		stl_sc26198setreg(portp, MR0, mr0);
	} else {
		mr0 = stl_sc26198getreg(portp, MR0);
		stl_sc26198setreg(portp, MR0, (mr0 & ~MR0_SWFRXTX));
		stl_sc26198setreg(portp, SCCR, CR_TXSENDXOFF);
		mr0 &= ~MR0_SWFRX;
		portp->stats.rxxoff++;
		stl_sc26198wait(portp);
		stl_sc26198setreg(portp, MR0, mr0);
	}
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
4576
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4577 4578 4579 4580
}

/*****************************************************************************/

J
Jiri Slaby 已提交
4581
static void stl_sc26198flush(struct stlport *portp)
L
Linus Torvalds 已提交
4582 4583 4584
{
	unsigned long	flags;

4585
	pr_debug("stl_sc26198flush(portp=%p)\n", portp);
L
Linus Torvalds 已提交
4586

4587
	if (portp == NULL)
L
Linus Torvalds 已提交
4588 4589
		return;

A
Alan Cox 已提交
4590
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4591 4592 4593 4594 4595
	BRDENABLE(portp->brdnr, portp->pagenr);
	stl_sc26198setreg(portp, SCCR, CR_TXRESET);
	stl_sc26198setreg(portp, SCCR, portp->crenable);
	BRDDISABLE(portp->brdnr);
	portp->tx.tail = portp->tx.head;
A
Alan Cox 已提交
4596
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608
}

/*****************************************************************************/

/*
 *	Return the current state of data flow on this port. This is only
 *	really interresting when determining if data has fully completed
 *	transmission or not... The sc26198 interrupt scheme cannot
 *	determine when all data has actually drained, so we need to
 *	check the port statusy register to be sure.
 */

J
Jiri Slaby 已提交
4609
static int stl_sc26198datastate(struct stlport *portp)
L
Linus Torvalds 已提交
4610 4611 4612 4613
{
	unsigned long	flags;
	unsigned char	sr;

4614
	pr_debug("stl_sc26198datastate(portp=%p)\n", portp);
L
Linus Torvalds 已提交
4615

4616
	if (portp == NULL)
4617
		return 0;
L
Linus Torvalds 已提交
4618
	if (test_bit(ASYI_TXBUSY, &portp->istate))
4619
		return 1;
L
Linus Torvalds 已提交
4620

A
Alan Cox 已提交
4621
	spin_lock_irqsave(&brd_lock, flags);
L
Linus Torvalds 已提交
4622 4623 4624
	BRDENABLE(portp->brdnr, portp->pagenr);
	sr = stl_sc26198getreg(portp, SR);
	BRDDISABLE(portp->brdnr);
A
Alan Cox 已提交
4625
	spin_unlock_irqrestore(&brd_lock, flags);
L
Linus Torvalds 已提交
4626

4627
	return (sr & SR_TXEMPTY) ? 0 : 1;
L
Linus Torvalds 已提交
4628 4629 4630 4631 4632 4633 4634 4635 4636
}

/*****************************************************************************/

/*
 *	Delay for a small amount of time, to give the sc26198 a chance
 *	to process a command...
 */

J
Jiri Slaby 已提交
4637
static void stl_sc26198wait(struct stlport *portp)
L
Linus Torvalds 已提交
4638 4639 4640
{
	int	i;

4641
	pr_debug("stl_sc26198wait(portp=%p)\n", portp);
L
Linus Torvalds 已提交
4642

4643
	if (portp == NULL)
L
Linus Torvalds 已提交
4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657
		return;

	for (i = 0; (i < 20); i++)
		stl_sc26198getglobreg(portp, TSTR);
}

/*****************************************************************************/

/*
 *	If we are TX flow controlled and in IXANY mode then we may
 *	need to unflow control here. We gotta do this because of the
 *	automatic flow control modes of the sc26198.
 */

J
Jiri Slaby 已提交
4658
static inline void stl_sc26198txunflow(struct stlport *portp, struct tty_struct *tty)
L
Linus Torvalds 已提交
4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675
{
	unsigned char	mr0;

	mr0 = stl_sc26198getreg(portp, MR0);
	stl_sc26198setreg(portp, MR0, (mr0 & ~MR0_SWFRXTX));
	stl_sc26198setreg(portp, SCCR, CR_HOSTXON);
	stl_sc26198wait(portp);
	stl_sc26198setreg(portp, MR0, mr0);
	clear_bit(ASYI_TXFLOWED, &portp->istate);
}

/*****************************************************************************/

/*
 *	Interrupt service routine for sc26198 panels.
 */

J
Jiri Slaby 已提交
4676
static void stl_sc26198intr(struct stlpanel *panelp, unsigned int iobase)
L
Linus Torvalds 已提交
4677
{
J
Jiri Slaby 已提交
4678
	struct stlport	*portp;
L
Linus Torvalds 已提交
4679 4680
	unsigned int	iack;

A
Alan Cox 已提交
4681 4682
	spin_lock(&brd_lock);

L
Linus Torvalds 已提交
4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697
/* 
 *	Work around bug in sc26198 chip... Cannot have A6 address
 *	line of UART high, else iack will be returned as 0.
 */
	outb(0, (iobase + 1));

	iack = inb(iobase + XP_IACK);
	portp = panelp->ports[(iack & IVR_CHANMASK) + ((iobase & 0x4) << 1)];

	if (iack & IVR_RXDATA)
		stl_sc26198rxisr(portp, iack);
	else if (iack & IVR_TXDATA)
		stl_sc26198txisr(portp);
	else
		stl_sc26198otherisr(portp, iack);
A
Alan Cox 已提交
4698 4699

	spin_unlock(&brd_lock);
L
Linus Torvalds 已提交
4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713
}

/*****************************************************************************/

/*
 *	Transmit interrupt handler. This has gotta be fast!  Handling TX
 *	chars is pretty simple, stuff as many as possible from the TX buffer
 *	into the sc26198 FIFO.
 *	In practice it is possible that interrupts are enabled but that the
 *	port has been hung up. Need to handle not having any TX buffer here,
 *	this is done by using the side effect that head and tail will also
 *	be NULL if the buffer has been freed.
 */

J
Jiri Slaby 已提交
4714
static void stl_sc26198txisr(struct stlport *portp)
L
Linus Torvalds 已提交
4715 4716 4717 4718 4719 4720
{
	unsigned int	ioaddr;
	unsigned char	mr0;
	int		len, stlen;
	char		*head, *tail;

4721
	pr_debug("stl_sc26198txisr(portp=%p)\n", portp);
L
Linus Torvalds 已提交
4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774

	ioaddr = portp->ioaddr;
	head = portp->tx.head;
	tail = portp->tx.tail;
	len = (head >= tail) ? (head - tail) : (STL_TXBUFSIZE - (tail - head));
	if ((len == 0) || ((len < STL_TXBUFLOW) &&
	    (test_bit(ASYI_TXLOW, &portp->istate) == 0))) {
		set_bit(ASYI_TXLOW, &portp->istate);
		schedule_work(&portp->tqueue); 
	}

	if (len == 0) {
		outb((MR0 | portp->uartaddr), (ioaddr + XP_ADDR));
		mr0 = inb(ioaddr + XP_DATA);
		if ((mr0 & MR0_TXMASK) == MR0_TXEMPTY) {
			portp->imr &= ~IR_TXRDY;
			outb((IMR | portp->uartaddr), (ioaddr + XP_ADDR));
			outb(portp->imr, (ioaddr + XP_DATA));
			clear_bit(ASYI_TXBUSY, &portp->istate);
		} else {
			mr0 |= ((mr0 & ~MR0_TXMASK) | MR0_TXEMPTY);
			outb(mr0, (ioaddr + XP_DATA));
		}
	} else {
		len = MIN(len, SC26198_TXFIFOSIZE);
		portp->stats.txtotal += len;
		stlen = MIN(len, ((portp->tx.buf + STL_TXBUFSIZE) - tail));
		outb(GTXFIFO, (ioaddr + XP_ADDR));
		outsb((ioaddr + XP_DATA), tail, stlen);
		len -= stlen;
		tail += stlen;
		if (tail >= (portp->tx.buf + STL_TXBUFSIZE))
			tail = portp->tx.buf;
		if (len > 0) {
			outsb((ioaddr + XP_DATA), tail, len);
			tail += len;
		}
		portp->tx.tail = tail;
	}
}

/*****************************************************************************/

/*
 *	Receive character interrupt handler. Determine if we have good chars
 *	or bad chars and then process appropriately. Good chars are easy
 *	just shove the lot into the RX buffer and set all status byte to 0.
 *	If a bad RX char then process as required. This routine needs to be
 *	fast!  In practice it is possible that we get an interrupt on a port
 *	that is closed. This can happen on hangups - since they completely
 *	shutdown a port not in user context. Need to handle this case.
 */

J
Jiri Slaby 已提交
4775
static void stl_sc26198rxisr(struct stlport *portp, unsigned int iack)
L
Linus Torvalds 已提交
4776 4777 4778 4779
{
	struct tty_struct	*tty;
	unsigned int		len, buflen, ioaddr;

4780
	pr_debug("stl_sc26198rxisr(portp=%p,iack=%x)\n", portp, iack);
L
Linus Torvalds 已提交
4781 4782 4783 4784 4785 4786 4787

	tty = portp->tty;
	ioaddr = portp->ioaddr;
	outb(GIBCR, (ioaddr + XP_ADDR));
	len = inb(ioaddr + XP_DATA) + 1;

	if ((iack & IVR_TYPEMASK) == IVR_RXDATA) {
A
Alan Cox 已提交
4788
		if (tty == NULL || (buflen = tty_buffer_request_room(tty, len)) == 0) {
L
Linus Torvalds 已提交
4789 4790 4791 4792 4793 4794 4795 4796
			len = MIN(len, sizeof(stl_unwanted));
			outb(GRXFIFO, (ioaddr + XP_ADDR));
			insb((ioaddr + XP_DATA), &stl_unwanted[0], len);
			portp->stats.rxlost += len;
			portp->stats.rxtotal += len;
		} else {
			len = MIN(len, buflen);
			if (len > 0) {
A
Alan Cox 已提交
4797
				unsigned char *ptr;
L
Linus Torvalds 已提交
4798
				outb(GRXFIFO, (ioaddr + XP_ADDR));
A
Alan Cox 已提交
4799 4800
				tty_prepare_flip_string(tty, &ptr, len);
				insb((ioaddr + XP_DATA), ptr, len);
L
Linus Torvalds 已提交
4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814
				tty_schedule_flip(tty);
				portp->stats.rxtotal += len;
			}
		}
	} else {
		stl_sc26198rxbadchars(portp);
	}

/*
 *	If we are TX flow controlled and in IXANY mode then we may need
 *	to unflow control here. We gotta do this because of the automatic
 *	flow control modes of the sc26198.
 */
	if (test_bit(ASYI_TXFLOWED, &portp->istate)) {
4815 4816
		if ((tty != NULL) &&
		    (tty->termios != NULL) &&
L
Linus Torvalds 已提交
4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828
		    (tty->termios->c_iflag & IXANY)) {
			stl_sc26198txunflow(portp, tty);
		}
	}
}

/*****************************************************************************/

/*
 *	Process an RX bad character.
 */

J
Jiri Slaby 已提交
4829
static inline void stl_sc26198rxbadch(struct stlport *portp, unsigned char status, char ch)
L
Linus Torvalds 已提交
4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845
{
	struct tty_struct	*tty;
	unsigned int		ioaddr;

	tty = portp->tty;
	ioaddr = portp->ioaddr;

	if (status & SR_RXPARITY)
		portp->stats.rxparity++;
	if (status & SR_RXFRAMING)
		portp->stats.rxframing++;
	if (status & SR_RXOVERRUN)
		portp->stats.rxoverrun++;
	if (status & SR_RXBREAK)
		portp->stats.rxbreaks++;

4846
	if ((tty != NULL) &&
L
Linus Torvalds 已提交
4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867
	    ((portp->rxignoremsk & status) == 0)) {
		if (portp->rxmarkmsk & status) {
			if (status & SR_RXBREAK) {
				status = TTY_BREAK;
				if (portp->flags & ASYNC_SAK) {
					do_SAK(tty);
					BRDENABLE(portp->brdnr, portp->pagenr);
				}
			} else if (status & SR_RXPARITY) {
				status = TTY_PARITY;
			} else if (status & SR_RXFRAMING) {
				status = TTY_FRAME;
			} else if(status & SR_RXOVERRUN) {
				status = TTY_OVERRUN;
			} else {
				status = 0;
			}
		} else {
			status = 0;
		}

A
Alan Cox 已提交
4868 4869
		tty_insert_flip_char(tty, ch, status);
		tty_schedule_flip(tty);
L
Linus Torvalds 已提交
4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886

		if (status == 0)
			portp->stats.rxtotal++;
	}
}

/*****************************************************************************/

/*
 *	Process all characters in the RX FIFO of the UART. Check all char
 *	status bytes as well, and process as required. We need to check
 *	all bytes in the FIFO, in case some more enter the FIFO while we
 *	are here. To get the exact character error type we need to switch
 *	into CHAR error mode (that is why we need to make sure we empty
 *	the FIFO).
 */

J
Jiri Slaby 已提交
4887
static void stl_sc26198rxbadchars(struct stlport *portp)
L
Linus Torvalds 已提交
4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919
{
	unsigned char	status, mr1;
	char		ch;

/*
 *	To get the precise error type for each character we must switch
 *	back into CHAR error mode.
 */
	mr1 = stl_sc26198getreg(portp, MR1);
	stl_sc26198setreg(portp, MR1, (mr1 & ~MR1_ERRBLOCK));

	while ((status = stl_sc26198getreg(portp, SR)) & SR_RXRDY) {
		stl_sc26198setreg(portp, SCCR, CR_CLEARRXERR);
		ch = stl_sc26198getreg(portp, RXFIFO);
		stl_sc26198rxbadch(portp, status, ch);
	}

/*
 *	To get correct interrupt class we must switch back into BLOCK
 *	error mode.
 */
	stl_sc26198setreg(portp, MR1, mr1);
}

/*****************************************************************************/

/*
 *	Other interrupt handler. This includes modem signals, flow
 *	control actions, etc. Most stuff is left to off-level interrupt
 *	processing time.
 */

J
Jiri Slaby 已提交
4920
static void stl_sc26198otherisr(struct stlport *portp, unsigned int iack)
L
Linus Torvalds 已提交
4921 4922 4923
{
	unsigned char	cir, ipr, xisr;

4924
	pr_debug("stl_sc26198otherisr(portp=%p,iack=%x)\n", portp, iack);
L
Linus Torvalds 已提交
4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957

	cir = stl_sc26198getglobreg(portp, CIR);

	switch (cir & CIR_SUBTYPEMASK) {
	case CIR_SUBCOS:
		ipr = stl_sc26198getreg(portp, IPR);
		if (ipr & IPR_DCDCHANGE) {
			set_bit(ASYI_DCDCHANGE, &portp->istate);
			schedule_work(&portp->tqueue); 
			portp->stats.modem++;
		}
		break;
	case CIR_SUBXONXOFF:
		xisr = stl_sc26198getreg(portp, XISR);
		if (xisr & XISR_RXXONGOT) {
			set_bit(ASYI_TXFLOWED, &portp->istate);
			portp->stats.txxoff++;
		}
		if (xisr & XISR_RXXOFFGOT) {
			clear_bit(ASYI_TXFLOWED, &portp->istate);
			portp->stats.txxon++;
		}
		break;
	case CIR_SUBBREAK:
		stl_sc26198setreg(portp, SCCR, CR_BREAKRESET);
		stl_sc26198rxbadchars(portp);
		break;
	default:
		break;
	}
}

/*****************************************************************************/