blob: 4c69ab97339a05a2c58864efb2b1955ba57a6125 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*****************************************************************************/
2
3/*
4 * istallion.c -- stallion intelligent multiport serial driver.
5 *
6 * Copyright (C) 1996-1999 Stallion Technologies
7 * Copyright (C) 1994-1996 Greg Ungerer.
8 *
9 * This code is loosely based on the Linux serial driver, written by
10 * Linus Torvalds, Theodore T'so and others.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19/*****************************************************************************/
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/slab.h>
23#include <linux/interrupt.h>
24#include <linux/tty.h>
25#include <linux/tty_flip.h>
26#include <linux/serial.h>
27#include <linux/cdk.h>
28#include <linux/comstats.h>
29#include <linux/istallion.h>
30#include <linux/ioport.h>
31#include <linux/delay.h>
32#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/device.h>
34#include <linux/wait.h>
Alan Cox4ac43602006-06-28 04:26:52 -070035#include <linux/eisa.h>
Jiri Slabya3f8d9d2006-12-08 02:39:18 -080036#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/io.h>
39#include <asm/uaccess.h>
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*****************************************************************************/
44
45/*
46 * Define different board types. Not all of the following board types
47 * are supported by this driver. But I will use the standard "assigned"
48 * board numbers. Currently supported boards are abbreviated as:
49 * ECP = EasyConnection 8/64, ONB = ONboard, BBY = Brumby and
50 * STAL = Stallion.
51 */
52#define BRD_UNKNOWN 0
53#define BRD_STALLION 1
54#define BRD_BRUMBY4 2
55#define BRD_ONBOARD2 3
56#define BRD_ONBOARD 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define BRD_ONBOARDE 7
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define BRD_ECP 23
59#define BRD_ECPE 24
60#define BRD_ECPMC 25
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define BRD_ECPPCI 29
62
63#define BRD_BRUMBY BRD_BRUMBY4
64
65/*
66 * Define a configuration structure to hold the board configuration.
67 * Need to set this up in the code (for now) with the boards that are
68 * to be configured into the system. This is what needs to be modified
69 * when adding/removing/modifying boards. Each line entry in the
70 * stli_brdconf[] array is a board. Each line contains io/irq/memory
71 * ranges for that board (as well as what type of board it is).
72 * Some examples:
73 * { BRD_ECP, 0x2a0, 0, 0xcc000, 0, 0 },
74 * This line will configure an EasyConnection 8/64 at io address 2a0,
75 * and shared memory address of cc000. Multiple EasyConnection 8/64
76 * boards can share the same shared memory address space. No interrupt
77 * is required for this board type.
78 * Another example:
79 * { BRD_ECPE, 0x5000, 0, 0x80000000, 0, 0 },
80 * This line will configure an EasyConnection 8/64 EISA in slot 5 and
81 * shared memory address of 0x80000000 (2 GByte). Multiple
82 * EasyConnection 8/64 EISA boards can share the same shared memory
83 * address space. No interrupt is required for this board type.
84 * Another example:
85 * { BRD_ONBOARD, 0x240, 0, 0xd0000, 0, 0 },
86 * This line will configure an ONboard (ISA type) at io address 240,
87 * and shared memory address of d0000. Multiple ONboards can share
88 * the same shared memory address space. No interrupt required.
89 * Another example:
90 * { BRD_BRUMBY4, 0x360, 0, 0xc8000, 0, 0 },
91 * This line will configure a Brumby board (any number of ports!) at
92 * io address 360 and shared memory address of c8000. All Brumby boards
93 * configured into a system must have their own separate io and memory
94 * addresses. No interrupt is required.
95 * Another example:
96 * { BRD_STALLION, 0x330, 0, 0xd0000, 0, 0 },
97 * This line will configure an original Stallion board at io address 330
98 * and shared memory address d0000 (this would only be valid for a "V4.0"
99 * or Rev.O Stallion board). All Stallion boards configured into the
100 * system must have their own separate io and memory addresses. No
101 * interrupt is required.
102 */
103
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800104struct stlconf {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int brdtype;
106 int ioaddr1;
107 int ioaddr2;
108 unsigned long memaddr;
109 int irq;
110 int irqtype;
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800111};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Jiri Slaby1328d732006-12-08 02:39:19 -0800113static unsigned int stli_nrbrds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Alan Cox4ac43602006-06-28 04:26:52 -0700115/* stli_lock must NOT be taken holding brd_lock */
116static spinlock_t stli_lock; /* TTY logic lock */
117static spinlock_t brd_lock; /* Board logic lock */
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/*
120 * There is some experimental EISA board detection code in this driver.
121 * By default it is disabled, but for those that want to try it out,
122 * then set the define below to be 1.
123 */
124#define STLI_EISAPROBE 0
125
126/*****************************************************************************/
127
128/*
129 * Define some important driver characteristics. Device major numbers
130 * allocated as per Linux Device Registry.
131 */
132#ifndef STL_SIOMEMMAJOR
133#define STL_SIOMEMMAJOR 28
134#endif
135#ifndef STL_SERIALMAJOR
136#define STL_SERIALMAJOR 24
137#endif
138#ifndef STL_CALLOUTMAJOR
139#define STL_CALLOUTMAJOR 25
140#endif
141
142/*****************************************************************************/
143
144/*
145 * Define our local driver identity first. Set up stuff to deal with
146 * all the local structures required by a serial tty driver.
147 */
148static char *stli_drvtitle = "Stallion Intelligent Multiport Serial Driver";
149static char *stli_drvname = "istallion";
150static char *stli_drvversion = "5.6.0";
151static char *stli_serialname = "ttyE";
152
153static struct tty_driver *stli_serial;
Alan Cox31f35932009-01-02 13:45:05 +0000154static const struct tty_port_operations stli_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156#define STLI_TXBUFSIZE 4096
157
158/*
159 * Use a fast local buffer for cooked characters. Typically a whole
160 * bunch of cooked characters come in for a port, 1 at a time. So we
161 * save those up into a local buffer, then write out the whole lot
162 * with a large memcpy. Just use 1 buffer for all ports, since its
163 * use it is only need for short periods of time by each port.
164 */
165static char *stli_txcookbuf;
166static int stli_txcooksize;
167static int stli_txcookrealsize;
168static struct tty_struct *stli_txcooktty;
169
170/*
171 * Define a local default termios struct. All ports will be created
172 * with this termios initially. Basically all it defines is a raw port
173 * at 9600 baud, 8 data bits, no parity, 1 stop bit.
174 */
Alan Cox606d0992006-12-08 02:38:45 -0800175static struct ktermios stli_deftermios = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .c_cflag = (B9600 | CS8 | CREAD | HUPCL | CLOCAL),
177 .c_cc = INIT_C_CC,
Alan Cox606d0992006-12-08 02:38:45 -0800178 .c_ispeed = 9600,
179 .c_ospeed = 9600,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180};
181
182/*
183 * Define global stats structures. Not used often, and can be
184 * re-used for each stats call.
185 */
186static comstats_t stli_comstats;
187static combrd_t stli_brdstats;
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800188static struct asystats stli_cdkstats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190/*****************************************************************************/
191
Jiri Slabyb103b5c2006-12-08 02:39:21 -0800192static DEFINE_MUTEX(stli_brdslock);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800193static struct stlibrd *stli_brds[STL_MAXBRDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195static int stli_shared;
196
197/*
198 * Per board state flags. Used with the state field of the board struct.
199 * Not really much here... All we need to do is keep track of whether
200 * the board has been detected, and whether it is actually running a slave
201 * or not.
202 */
203#define BST_FOUND 0x1
204#define BST_STARTED 0x2
Jiri Slaby39014172006-12-08 02:39:22 -0800205#define BST_PROBED 0x4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207/*
208 * Define the set of port state flags. These are marked for internal
209 * state purposes only, usually to do with the state of communications
210 * with the slave. Most of them need to be updated atomically, so always
211 * use the bit setting operations (unless protected by cli/sti).
212 */
213#define ST_INITIALIZING 1
214#define ST_OPENING 2
215#define ST_CLOSING 3
216#define ST_CMDING 4
217#define ST_TXBUSY 5
218#define ST_RXING 6
219#define ST_DOFLUSHRX 7
220#define ST_DOFLUSHTX 8
221#define ST_DOSIGS 9
222#define ST_RXSTOP 10
223#define ST_GETSIGS 11
224
225/*
226 * Define an array of board names as printable strings. Handy for
227 * referencing boards when printing trace and stuff.
228 */
229static char *stli_brdnames[] = {
230 "Unknown",
231 "Stallion",
232 "Brumby",
233 "ONboard-MC",
234 "ONboard",
235 "Brumby",
236 "Brumby",
237 "ONboard-EI",
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800238 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 "ONboard",
240 "ONboard-MC",
241 "ONboard-MC",
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800242 NULL,
243 NULL,
244 NULL,
245 NULL,
246 NULL,
247 NULL,
248 NULL,
249 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 "EasyIO",
251 "EC8/32-AT",
252 "EC8/32-MC",
253 "EC8/64-AT",
254 "EC8/64-EI",
255 "EC8/64-MC",
256 "EC8/32-PCI",
257 "EC8/64-PCI",
258 "EasyIO-PCI",
259 "EC/RA-PCI",
260};
261
262/*****************************************************************************/
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/*
265 * Define some string labels for arguments passed from the module
266 * load line. These allow for easy board definitions, and easy
267 * modification of the io, memory and irq resoucres.
268 */
269
270static char *board0[8];
271static char *board1[8];
272static char *board2[8];
273static char *board3[8];
274
275static char **stli_brdsp[] = {
276 (char **) &board0,
277 (char **) &board1,
278 (char **) &board2,
279 (char **) &board3
280};
281
282/*
283 * Define a set of common board names, and types. This is used to
284 * parse any module arguments.
285 */
286
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800287static struct stlibrdtype {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 char *name;
289 int type;
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800290} stli_brdstr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 { "stallion", BRD_STALLION },
292 { "1", BRD_STALLION },
293 { "brumby", BRD_BRUMBY },
294 { "brumby4", BRD_BRUMBY },
295 { "brumby/4", BRD_BRUMBY },
296 { "brumby-4", BRD_BRUMBY },
297 { "brumby8", BRD_BRUMBY },
298 { "brumby/8", BRD_BRUMBY },
299 { "brumby-8", BRD_BRUMBY },
300 { "brumby16", BRD_BRUMBY },
301 { "brumby/16", BRD_BRUMBY },
302 { "brumby-16", BRD_BRUMBY },
303 { "2", BRD_BRUMBY },
304 { "onboard2", BRD_ONBOARD2 },
305 { "onboard-2", BRD_ONBOARD2 },
306 { "onboard/2", BRD_ONBOARD2 },
307 { "onboard-mc", BRD_ONBOARD2 },
308 { "onboard/mc", BRD_ONBOARD2 },
309 { "onboard-mca", BRD_ONBOARD2 },
310 { "onboard/mca", BRD_ONBOARD2 },
311 { "3", BRD_ONBOARD2 },
312 { "onboard", BRD_ONBOARD },
313 { "onboardat", BRD_ONBOARD },
314 { "4", BRD_ONBOARD },
315 { "onboarde", BRD_ONBOARDE },
316 { "onboard-e", BRD_ONBOARDE },
317 { "onboard/e", BRD_ONBOARDE },
318 { "onboard-ei", BRD_ONBOARDE },
319 { "onboard/ei", BRD_ONBOARDE },
320 { "7", BRD_ONBOARDE },
321 { "ecp", BRD_ECP },
322 { "ecpat", BRD_ECP },
323 { "ec8/64", BRD_ECP },
324 { "ec8/64-at", BRD_ECP },
325 { "ec8/64-isa", BRD_ECP },
326 { "23", BRD_ECP },
327 { "ecpe", BRD_ECPE },
328 { "ecpei", BRD_ECPE },
329 { "ec8/64-e", BRD_ECPE },
330 { "ec8/64-ei", BRD_ECPE },
331 { "24", BRD_ECPE },
332 { "ecpmc", BRD_ECPMC },
333 { "ec8/64-mc", BRD_ECPMC },
334 { "ec8/64-mca", BRD_ECPMC },
335 { "25", BRD_ECPMC },
336 { "ecppci", BRD_ECPPCI },
337 { "ec/ra", BRD_ECPPCI },
338 { "ec/ra-pc", BRD_ECPPCI },
339 { "ec/ra-pci", BRD_ECPPCI },
340 { "29", BRD_ECPPCI },
341};
342
343/*
344 * Define the module agruments.
345 */
346MODULE_AUTHOR("Greg Ungerer");
347MODULE_DESCRIPTION("Stallion Intelligent Multiport Serial Driver");
348MODULE_LICENSE("GPL");
349
350
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800351module_param_array(board0, charp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352MODULE_PARM_DESC(board0, "Board 0 config -> name[,ioaddr[,memaddr]");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800353module_param_array(board1, charp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354MODULE_PARM_DESC(board1, "Board 1 config -> name[,ioaddr[,memaddr]");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800355module_param_array(board2, charp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356MODULE_PARM_DESC(board2, "Board 2 config -> name[,ioaddr[,memaddr]");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800357module_param_array(board3, charp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358MODULE_PARM_DESC(board3, "Board 3 config -> name[,ioaddr[,memaddr]");
359
Jiri Slabya00f33f2006-12-08 02:39:20 -0800360#if STLI_EISAPROBE != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/*
362 * Set up a default memory address table for EISA board probing.
363 * The default addresses are all bellow 1Mbyte, which has to be the
364 * case anyway. They should be safe, since we only read values from
365 * them, and interrupts are disabled while we do it. If the higher
366 * memory support is compiled in then we also try probing around
367 * the 1Gb, 2Gb and 3Gb areas as well...
368 */
369static unsigned long stli_eisamemprobeaddrs[] = {
370 0xc0000, 0xd0000, 0xe0000, 0xf0000,
371 0x80000000, 0x80010000, 0x80020000, 0x80030000,
372 0x40000000, 0x40010000, 0x40020000, 0x40030000,
373 0xc0000000, 0xc0010000, 0xc0020000, 0xc0030000,
374 0xff000000, 0xff010000, 0xff020000, 0xff030000,
375};
376
Tobias Klauserfe971072006-01-09 20:54:02 -0800377static int stli_eisamempsize = ARRAY_SIZE(stli_eisamemprobeaddrs);
Jiri Slabya00f33f2006-12-08 02:39:20 -0800378#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380/*
381 * Define the Stallion PCI vendor and device IDs.
382 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#ifndef PCI_DEVICE_ID_ECRA
384#define PCI_DEVICE_ID_ECRA 0x0004
385#endif
386
387static struct pci_device_id istallion_pci_tbl[] = {
Alan Cox4ac43602006-06-28 04:26:52 -0700388 { PCI_DEVICE(PCI_VENDOR_ID_STALLION, PCI_DEVICE_ID_ECRA), },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 { 0 }
390};
391MODULE_DEVICE_TABLE(pci, istallion_pci_tbl);
392
Jiri Slaby845bead2006-12-08 02:39:17 -0800393static struct pci_driver stli_pcidriver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395/*****************************************************************************/
396
397/*
398 * Hardware configuration info for ECP boards. These defines apply
399 * to the directly accessible io ports of the ECP. There is a set of
400 * defines for each ECP board type, ISA, EISA, MCA and PCI.
401 */
402#define ECP_IOSIZE 4
403
404#define ECP_MEMSIZE (128 * 1024)
405#define ECP_PCIMEMSIZE (256 * 1024)
406
407#define ECP_ATPAGESIZE (4 * 1024)
408#define ECP_MCPAGESIZE (4 * 1024)
409#define ECP_EIPAGESIZE (64 * 1024)
410#define ECP_PCIPAGESIZE (64 * 1024)
411
412#define STL_EISAID 0x8c4e
413
414/*
415 * Important defines for the ISA class of ECP board.
416 */
417#define ECP_ATIREG 0
418#define ECP_ATCONFR 1
419#define ECP_ATMEMAR 2
420#define ECP_ATMEMPR 3
421#define ECP_ATSTOP 0x1
422#define ECP_ATINTENAB 0x10
423#define ECP_ATENABLE 0x20
424#define ECP_ATDISABLE 0x00
425#define ECP_ATADDRMASK 0x3f000
426#define ECP_ATADDRSHFT 12
427
428/*
429 * Important defines for the EISA class of ECP board.
430 */
431#define ECP_EIIREG 0
432#define ECP_EIMEMARL 1
433#define ECP_EICONFR 2
434#define ECP_EIMEMARH 3
435#define ECP_EIENABLE 0x1
436#define ECP_EIDISABLE 0x0
437#define ECP_EISTOP 0x4
438#define ECP_EIEDGE 0x00
439#define ECP_EILEVEL 0x80
440#define ECP_EIADDRMASKL 0x00ff0000
441#define ECP_EIADDRSHFTL 16
442#define ECP_EIADDRMASKH 0xff000000
443#define ECP_EIADDRSHFTH 24
444#define ECP_EIBRDENAB 0xc84
445
446#define ECP_EISAID 0x4
447
448/*
449 * Important defines for the Micro-channel class of ECP board.
450 * (It has a lot in common with the ISA boards.)
451 */
452#define ECP_MCIREG 0
453#define ECP_MCCONFR 1
454#define ECP_MCSTOP 0x20
455#define ECP_MCENABLE 0x80
456#define ECP_MCDISABLE 0x00
457
458/*
459 * Important defines for the PCI class of ECP board.
460 * (It has a lot in common with the other ECP boards.)
461 */
462#define ECP_PCIIREG 0
463#define ECP_PCICONFR 1
464#define ECP_PCISTOP 0x01
465
466/*
467 * Hardware configuration info for ONboard and Brumby boards. These
468 * defines apply to the directly accessible io ports of these boards.
469 */
470#define ONB_IOSIZE 16
471#define ONB_MEMSIZE (64 * 1024)
472#define ONB_ATPAGESIZE (64 * 1024)
473#define ONB_MCPAGESIZE (64 * 1024)
474#define ONB_EIMEMSIZE (128 * 1024)
475#define ONB_EIPAGESIZE (64 * 1024)
476
477/*
478 * Important defines for the ISA class of ONboard board.
479 */
480#define ONB_ATIREG 0
481#define ONB_ATMEMAR 1
482#define ONB_ATCONFR 2
483#define ONB_ATSTOP 0x4
484#define ONB_ATENABLE 0x01
485#define ONB_ATDISABLE 0x00
486#define ONB_ATADDRMASK 0xff0000
487#define ONB_ATADDRSHFT 16
488
489#define ONB_MEMENABLO 0
490#define ONB_MEMENABHI 0x02
491
492/*
493 * Important defines for the EISA class of ONboard board.
494 */
495#define ONB_EIIREG 0
496#define ONB_EIMEMARL 1
497#define ONB_EICONFR 2
498#define ONB_EIMEMARH 3
499#define ONB_EIENABLE 0x1
500#define ONB_EIDISABLE 0x0
501#define ONB_EISTOP 0x4
502#define ONB_EIEDGE 0x00
503#define ONB_EILEVEL 0x80
504#define ONB_EIADDRMASKL 0x00ff0000
505#define ONB_EIADDRSHFTL 16
506#define ONB_EIADDRMASKH 0xff000000
507#define ONB_EIADDRSHFTH 24
508#define ONB_EIBRDENAB 0xc84
509
510#define ONB_EISAID 0x1
511
512/*
513 * Important defines for the Brumby boards. They are pretty simple,
514 * there is not much that is programmably configurable.
515 */
516#define BBY_IOSIZE 16
517#define BBY_MEMSIZE (64 * 1024)
518#define BBY_PAGESIZE (16 * 1024)
519
520#define BBY_ATIREG 0
521#define BBY_ATCONFR 1
522#define BBY_ATSTOP 0x4
523
524/*
525 * Important defines for the Stallion boards. They are pretty simple,
526 * there is not much that is programmably configurable.
527 */
528#define STAL_IOSIZE 16
529#define STAL_MEMSIZE (64 * 1024)
530#define STAL_PAGESIZE (64 * 1024)
531
532/*
533 * Define the set of status register values for EasyConnection panels.
534 * The signature will return with the status value for each panel. From
535 * this we can determine what is attached to the board - before we have
536 * actually down loaded any code to it.
537 */
538#define ECH_PNLSTATUS 2
539#define ECH_PNL16PORT 0x20
540#define ECH_PNLIDMASK 0x07
541#define ECH_PNLXPID 0x40
542#define ECH_PNLINTRPEND 0x80
543
544/*
545 * Define some macros to do things to the board. Even those these boards
546 * are somewhat related there is often significantly different ways of
547 * doing some operation on it (like enable, paging, reset, etc). So each
548 * board class has a set of functions which do the commonly required
549 * operations. The macros below basically just call these functions,
550 * generally checking for a NULL function - which means that the board
551 * needs nothing done to it to achieve this operation!
552 */
553#define EBRDINIT(brdp) \
554 if (brdp->init != NULL) \
555 (* brdp->init)(brdp)
556
557#define EBRDENABLE(brdp) \
558 if (brdp->enable != NULL) \
559 (* brdp->enable)(brdp);
560
561#define EBRDDISABLE(brdp) \
562 if (brdp->disable != NULL) \
563 (* brdp->disable)(brdp);
564
565#define EBRDINTR(brdp) \
566 if (brdp->intr != NULL) \
567 (* brdp->intr)(brdp);
568
569#define EBRDRESET(brdp) \
570 if (brdp->reset != NULL) \
571 (* brdp->reset)(brdp);
572
573#define EBRDGETMEMPTR(brdp,offset) \
574 (* brdp->getmemptr)(brdp, offset, __LINE__)
575
576/*
577 * Define the maximal baud rate, and the default baud base for ports.
578 */
579#define STL_MAXBAUD 460800
580#define STL_BAUDBASE 115200
581#define STL_CLOSEDELAY (5 * HZ / 10)
582
583/*****************************************************************************/
584
585/*
586 * Define macros to extract a brd or port number from a minor number.
587 */
588#define MINOR2BRD(min) (((min) & 0xc0) >> 6)
589#define MINOR2PORT(min) ((min) & 0x3f)
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/*****************************************************************************/
592
593/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 * Prototype all functions in this driver!
595 */
596
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800597static int stli_parsebrd(struct stlconf *confp, char **argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598static int stli_open(struct tty_struct *tty, struct file *filp);
599static void stli_close(struct tty_struct *tty, struct file *filp);
600static int stli_write(struct tty_struct *tty, const unsigned char *buf, int count);
Wang Chen42a77a12008-07-21 17:48:59 +0800601static int stli_putchar(struct tty_struct *tty, unsigned char ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602static void stli_flushchars(struct tty_struct *tty);
603static int stli_writeroom(struct tty_struct *tty);
604static int stli_charsinbuffer(struct tty_struct *tty);
605static int stli_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg);
Alan Cox606d0992006-12-08 02:38:45 -0800606static void stli_settermios(struct tty_struct *tty, struct ktermios *old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607static void stli_throttle(struct tty_struct *tty);
608static void stli_unthrottle(struct tty_struct *tty);
609static void stli_stop(struct tty_struct *tty);
610static void stli_start(struct tty_struct *tty);
611static void stli_flushbuffer(struct tty_struct *tty);
Alan Cox9e989662008-07-22 11:18:03 +0100612static int stli_breakctl(struct tty_struct *tty, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613static void stli_waituntilsent(struct tty_struct *tty, int timeout);
614static void stli_sendxchar(struct tty_struct *tty, char ch);
615static void stli_hangup(struct tty_struct *tty);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800616static int stli_portinfo(struct stlibrd *brdp, struct stliport *portp, int portnr, char *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800618static int stli_brdinit(struct stlibrd *brdp);
619static int stli_startbrd(struct stlibrd *brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620static ssize_t stli_memread(struct file *fp, char __user *buf, size_t count, loff_t *offp);
621static ssize_t stli_memwrite(struct file *fp, const char __user *buf, size_t count, loff_t *offp);
622static int stli_memioctl(struct inode *ip, struct file *fp, unsigned int cmd, unsigned long arg);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800623static void stli_brdpoll(struct stlibrd *brdp, cdkhdr_t __iomem *hdrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624static void stli_poll(unsigned long arg);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800625static int stli_hostcmd(struct stlibrd *brdp, struct stliport *portp);
Alan Coxd18a7502008-10-13 10:40:07 +0100626static int stli_initopen(struct tty_struct *tty, struct stlibrd *brdp, struct stliport *portp);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800627static int stli_rawopen(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait);
628static int stli_rawclose(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait);
Alan Coxd18a7502008-10-13 10:40:07 +0100629static int stli_setport(struct tty_struct *tty);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800630static int stli_cmdwait(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback);
631static void stli_sendcmd(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback);
632static void __stli_sendcmd(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback);
633static void stli_dodelaycmd(struct stliport *portp, cdkctrl_t __iomem *cp);
Alan Coxd18a7502008-10-13 10:40:07 +0100634static void stli_mkasyport(struct tty_struct *tty, struct stliport *portp, asyport_t *pp, struct ktermios *tiosp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635static void stli_mkasysigs(asysigs_t *sp, int dtr, int rts);
636static long stli_mktiocm(unsigned long sigvalue);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800637static void stli_read(struct stlibrd *brdp, struct stliport *portp);
638static int stli_getserial(struct stliport *portp, struct serial_struct __user *sp);
Alan Coxd18a7502008-10-13 10:40:07 +0100639static int stli_setserial(struct tty_struct *tty, struct serial_struct __user *sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640static int stli_getbrdstats(combrd_t __user *bp);
Alan Coxd18a7502008-10-13 10:40:07 +0100641static int stli_getportstats(struct tty_struct *tty, struct stliport *portp, comstats_t __user *cp);
642static int stli_portcmdstats(struct tty_struct *tty, struct stliport *portp);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800643static int stli_clrportstats(struct stliport *portp, comstats_t __user *cp);
644static int stli_getportstruct(struct stliport __user *arg);
645static int stli_getbrdstruct(struct stlibrd __user *arg);
646static struct stlibrd *stli_allocbrd(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800648static void stli_ecpinit(struct stlibrd *brdp);
649static void stli_ecpenable(struct stlibrd *brdp);
650static void stli_ecpdisable(struct stlibrd *brdp);
651static void __iomem *stli_ecpgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
652static void stli_ecpreset(struct stlibrd *brdp);
653static void stli_ecpintr(struct stlibrd *brdp);
654static void stli_ecpeiinit(struct stlibrd *brdp);
655static void stli_ecpeienable(struct stlibrd *brdp);
656static void stli_ecpeidisable(struct stlibrd *brdp);
657static void __iomem *stli_ecpeigetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
658static void stli_ecpeireset(struct stlibrd *brdp);
659static void stli_ecpmcenable(struct stlibrd *brdp);
660static void stli_ecpmcdisable(struct stlibrd *brdp);
661static void __iomem *stli_ecpmcgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
662static void stli_ecpmcreset(struct stlibrd *brdp);
663static void stli_ecppciinit(struct stlibrd *brdp);
664static void __iomem *stli_ecppcigetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
665static void stli_ecppcireset(struct stlibrd *brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800667static void stli_onbinit(struct stlibrd *brdp);
668static void stli_onbenable(struct stlibrd *brdp);
669static void stli_onbdisable(struct stlibrd *brdp);
670static void __iomem *stli_onbgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
671static void stli_onbreset(struct stlibrd *brdp);
672static void stli_onbeinit(struct stlibrd *brdp);
673static void stli_onbeenable(struct stlibrd *brdp);
674static void stli_onbedisable(struct stlibrd *brdp);
675static void __iomem *stli_onbegetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
676static void stli_onbereset(struct stlibrd *brdp);
677static void stli_bbyinit(struct stlibrd *brdp);
678static void __iomem *stli_bbygetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
679static void stli_bbyreset(struct stlibrd *brdp);
680static void stli_stalinit(struct stlibrd *brdp);
681static void __iomem *stli_stalgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
682static void stli_stalreset(struct stlibrd *brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Jiri Slaby1328d732006-12-08 02:39:19 -0800684static struct stliport *stli_getport(unsigned int brdnr, unsigned int panelnr, unsigned int portnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800686static int stli_initecp(struct stlibrd *brdp);
687static int stli_initonb(struct stlibrd *brdp);
Jiri Slabya00f33f2006-12-08 02:39:20 -0800688#if STLI_EISAPROBE != 0
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800689static int stli_eisamemprobe(struct stlibrd *brdp);
Jiri Slabya00f33f2006-12-08 02:39:20 -0800690#endif
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800691static int stli_initports(struct stlibrd *brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693/*****************************************************************************/
694
695/*
696 * Define the driver info for a user level shared memory device. This
697 * device will work sort of like the /dev/kmem device - except that it
698 * will give access to the shared memory on the Stallion intelligent
699 * board. This is also a very useful debugging tool.
700 */
Arjan van de Ven62322d22006-07-03 00:24:21 -0700701static const struct file_operations stli_fsiomem = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 .owner = THIS_MODULE,
703 .read = stli_memread,
704 .write = stli_memwrite,
705 .ioctl = stli_memioctl,
706};
707
708/*****************************************************************************/
709
710/*
711 * Define a timer_list entry for our poll routine. The slave board
712 * is polled every so often to see if anything needs doing. This is
713 * much cheaper on host cpu than using interrupts. It turns out to
714 * not increase character latency by much either...
715 */
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700716static DEFINE_TIMER(stli_timerlist, stli_poll, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718static int stli_timeron;
719
720/*
721 * Define the calculation for the timeout routine.
722 */
723#define STLI_TIMEOUT (jiffies + 1)
724
725/*****************************************************************************/
726
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800727static struct class *istallion_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800729static void stli_cleanup_ports(struct stlibrd *brdp)
Jiri Slaby845bead2006-12-08 02:39:17 -0800730{
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800731 struct stliport *portp;
Jiri Slaby845bead2006-12-08 02:39:17 -0800732 unsigned int j;
Alan Coxd18a7502008-10-13 10:40:07 +0100733 struct tty_struct *tty;
Jiri Slaby845bead2006-12-08 02:39:17 -0800734
735 for (j = 0; j < STL_MAXPORTS; j++) {
736 portp = brdp->ports[j];
737 if (portp != NULL) {
Alan Coxd18a7502008-10-13 10:40:07 +0100738 tty = tty_port_tty_get(&portp->port);
739 if (tty != NULL) {
740 tty_hangup(tty);
741 tty_kref_put(tty);
742 }
Jiri Slaby845bead2006-12-08 02:39:17 -0800743 kfree(portp);
744 }
745 }
746}
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748/*****************************************************************************/
749
750/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 * Parse the supplied argument string, into the board conf struct.
752 */
753
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800754static int stli_parsebrd(struct stlconf *confp, char **argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Jiri Slaby1328d732006-12-08 02:39:19 -0800756 unsigned int i;
Alan Cox4ac43602006-06-28 04:26:52 -0700757 char *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Alan Cox4ac43602006-06-28 04:26:52 -0700759 if (argp[0] == NULL || *argp[0] == 0)
760 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 for (sp = argp[0], i = 0; ((*sp != 0) && (i < 25)); sp++, i++)
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800763 *sp = tolower(*sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Tobias Klauserfe971072006-01-09 20:54:02 -0800765 for (i = 0; i < ARRAY_SIZE(stli_brdstr); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (strcmp(stli_brdstr[i].name, argp[0]) == 0)
767 break;
768 }
Tobias Klauserfe971072006-01-09 20:54:02 -0800769 if (i == ARRAY_SIZE(stli_brdstr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 printk("STALLION: unknown board name, %s?\n", argp[0]);
Tobias Klauserfe971072006-01-09 20:54:02 -0800771 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773
774 confp->brdtype = stli_brdstr[i].type;
Alan Cox4ac43602006-06-28 04:26:52 -0700775 if (argp[1] != NULL && *argp[1] != 0)
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800776 confp->ioaddr1 = simple_strtoul(argp[1], NULL, 0);
Alan Cox4ac43602006-06-28 04:26:52 -0700777 if (argp[2] != NULL && *argp[2] != 0)
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800778 confp->memaddr = simple_strtoul(argp[2], NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return(1);
780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782/*****************************************************************************/
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784static int stli_open(struct tty_struct *tty, struct file *filp)
785{
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800786 struct stlibrd *brdp;
787 struct stliport *portp;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000788 struct tty_port *port;
Jiri Slaby1328d732006-12-08 02:39:19 -0800789 unsigned int minordev, brdnr, portnr;
790 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 minordev = tty->index;
793 brdnr = MINOR2BRD(minordev);
794 if (brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -0700795 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -0700797 if (brdp == NULL)
798 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if ((brdp->state & BST_STARTED) == 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700800 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 portnr = MINOR2PORT(minordev);
Jiri Slaby1328d732006-12-08 02:39:19 -0800802 if (portnr > brdp->nrports)
Alan Cox4ac43602006-06-28 04:26:52 -0700803 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 portp = brdp->ports[portnr];
Alan Cox4ac43602006-06-28 04:26:52 -0700806 if (portp == NULL)
807 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (portp->devnr < 1)
Alan Cox4ac43602006-06-28 04:26:52 -0700809 return -ENODEV;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000810 port = &portp->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812/*
813 * On the first open of the device setup the port hardware, and
814 * initialize the per port data structure. Since initializing the port
815 * requires several commands to the board we will need to wait for any
816 * other open that is already initializing the port.
Alan Cox2a6eadb2009-01-02 13:46:18 +0000817 *
818 * Review - locking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 */
Alan Cox2a6eadb2009-01-02 13:46:18 +0000820 tty_port_tty_set(port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 tty->driver_data = portp;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000822 port->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 wait_event_interruptible(portp->raw_wait,
825 !test_bit(ST_INITIALIZING, &portp->state));
826 if (signal_pending(current))
Alan Cox4ac43602006-06-28 04:26:52 -0700827 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Alan Coxb02f5ad62008-07-16 21:55:53 +0100829 if ((portp->port.flags & ASYNC_INITIALIZED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 set_bit(ST_INITIALIZING, &portp->state);
Alan Coxd18a7502008-10-13 10:40:07 +0100831 if ((rc = stli_initopen(tty, brdp, portp)) >= 0) {
Alan Cox2a6eadb2009-01-02 13:46:18 +0000832 /* Locking */
833 port->flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 clear_bit(TTY_IO_ERROR, &tty->flags);
835 }
836 clear_bit(ST_INITIALIZING, &portp->state);
837 wake_up_interruptible(&portp->raw_wait);
838 if (rc < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700839 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
Alan Cox2a6eadb2009-01-02 13:46:18 +0000841 return tty_port_block_til_ready(&portp->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844/*****************************************************************************/
845
846static void stli_close(struct tty_struct *tty, struct file *filp)
847{
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800848 struct stlibrd *brdp;
849 struct stliport *portp;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000850 struct tty_port *port;
Alan Cox4ac43602006-06-28 04:26:52 -0700851 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -0700854 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000856 port = &portp->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Alan Cox2a6eadb2009-01-02 13:46:18 +0000858 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (tty_hung_up_p(filp)) {
Alan Cox2a6eadb2009-01-02 13:46:18 +0000860 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return;
862 }
Alan Cox2a6eadb2009-01-02 13:46:18 +0000863 if (tty->count == 1 && port->count != 1)
864 port->count = 1;
865 if (port->count-- > 1) {
866 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return;
868 }
869
Alan Cox2a6eadb2009-01-02 13:46:18 +0000870 port->flags |= ASYNC_CLOSING;
871 tty->closing = 1;
872 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874/*
875 * May want to wait for data to drain before closing. The BUSY flag
876 * keeps track of whether we are still transmitting or not. It is
877 * updated by messages from the slave - indicating when all chars
878 * really have drained.
879 */
Alan Cox2a6eadb2009-01-02 13:46:18 +0000880 spin_lock_irqsave(&stli_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (tty == stli_txcooktty)
882 stli_flushchars(tty);
Alan Cox4ac43602006-06-28 04:26:52 -0700883 spin_unlock_irqrestore(&stli_lock, flags);
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (portp->closing_wait != ASYNC_CLOSING_WAIT_NONE)
886 tty_wait_until_sent(tty, portp->closing_wait);
887
Alan Cox2a6eadb2009-01-02 13:46:18 +0000888 /* FIXME: port locking here needs attending to */
889 port->flags &= ~ASYNC_INITIALIZED;
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 brdp = stli_brds[portp->brdnr];
892 stli_rawclose(brdp, portp, 0, 0);
893 if (tty->termios->c_cflag & HUPCL) {
894 stli_mkasysigs(&portp->asig, 0, 0);
895 if (test_bit(ST_CMDING, &portp->state))
896 set_bit(ST_DOSIGS, &portp->state);
897 else
898 stli_sendcmd(brdp, portp, A_SETSIGNALS, &portp->asig,
899 sizeof(asysigs_t), 0);
900 }
901 clear_bit(ST_TXBUSY, &portp->state);
902 clear_bit(ST_RXSTOP, &portp->state);
903 set_bit(TTY_IO_ERROR, &tty->flags);
Alan Coxed569bf2008-07-22 13:44:14 +0100904 tty_ldisc_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 set_bit(ST_DOFLUSHRX, &portp->state);
906 stli_flushbuffer(tty);
907
908 tty->closing = 0;
Alan Coxd18a7502008-10-13 10:40:07 +0100909 tty_port_tty_set(&portp->port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Alan Cox2a6eadb2009-01-02 13:46:18 +0000911 if (port->blocked_open) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (portp->close_delay)
913 msleep_interruptible(jiffies_to_msecs(portp->close_delay));
Alan Cox2a6eadb2009-01-02 13:46:18 +0000914 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
Alan Cox2a6eadb2009-01-02 13:46:18 +0000917 port->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
918 wake_up_interruptible(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
921/*****************************************************************************/
922
923/*
924 * Carry out first open operations on a port. This involves a number of
925 * commands to be sent to the slave. We need to open the port, set the
926 * notification events, set the initial port settings, get and set the
927 * initial signal values. We sleep and wait in between each one. But
928 * this still all happens pretty quickly.
929 */
930
Alan Coxd18a7502008-10-13 10:40:07 +0100931static int stli_initopen(struct tty_struct *tty,
932 struct stlibrd *brdp, struct stliport *portp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Alan Cox4ac43602006-06-28 04:26:52 -0700934 asynotify_t nt;
935 asyport_t aport;
936 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 if ((rc = stli_rawopen(brdp, portp, 0, 1)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700939 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 memset(&nt, 0, sizeof(asynotify_t));
942 nt.data = (DT_TXLOW | DT_TXEMPTY | DT_RXBUSY | DT_RXBREAK);
943 nt.signal = SG_DCD;
944 if ((rc = stli_cmdwait(brdp, portp, A_SETNOTIFY, &nt,
945 sizeof(asynotify_t), 0)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700946 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Alan Coxd18a7502008-10-13 10:40:07 +0100948 stli_mkasyport(tty, portp, &aport, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if ((rc = stli_cmdwait(brdp, portp, A_SETPORT, &aport,
950 sizeof(asyport_t), 0)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700951 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 set_bit(ST_GETSIGS, &portp->state);
954 if ((rc = stli_cmdwait(brdp, portp, A_GETSIGNALS, &portp->asig,
955 sizeof(asysigs_t), 1)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700956 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (test_and_clear_bit(ST_GETSIGS, &portp->state))
958 portp->sigs = stli_mktiocm(portp->asig.sigvalue);
959 stli_mkasysigs(&portp->asig, 1, 1);
960 if ((rc = stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
961 sizeof(asysigs_t), 0)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700962 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Alan Cox4ac43602006-06-28 04:26:52 -0700964 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967/*****************************************************************************/
968
969/*
970 * Send an open message to the slave. This will sleep waiting for the
971 * acknowledgement, so must have user context. We need to co-ordinate
972 * with close events here, since we don't want open and close events
973 * to overlap.
974 */
975
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800976static int stli_rawopen(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Alan Cox4ac43602006-06-28 04:26:52 -0700978 cdkhdr_t __iomem *hdrp;
979 cdkctrl_t __iomem *cp;
980 unsigned char __iomem *bits;
981 unsigned long flags;
982 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984/*
985 * Send a message to the slave to open this port.
986 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988/*
989 * Slave is already closing this port. This can happen if a hangup
990 * occurs on this port. So we must wait until it is complete. The
991 * order of opens and closes may not be preserved across shared
992 * memory, so we must wait until it is complete.
993 */
994 wait_event_interruptible(portp->raw_wait,
995 !test_bit(ST_CLOSING, &portp->state));
996 if (signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return -ERESTARTSYS;
998 }
999
1000/*
1001 * Everything is ready now, so write the open message into shared
1002 * memory. Once the message is in set the service bits to say that
1003 * this port wants service.
1004 */
Alan Cox4ac43602006-06-28 04:26:52 -07001005 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001007 cp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->ctrl;
1008 writel(arg, &cp->openarg);
1009 writeb(1, &cp->open);
1010 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1011 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -07001013 writeb(readb(bits) | portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 EBRDDISABLE(brdp);
1015
1016 if (wait == 0) {
Alan Cox4ac43602006-06-28 04:26:52 -07001017 spin_unlock_irqrestore(&brd_lock, flags);
1018 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020
1021/*
1022 * Slave is in action, so now we must wait for the open acknowledgment
1023 * to come back.
1024 */
1025 rc = 0;
1026 set_bit(ST_OPENING, &portp->state);
Alan Cox4ac43602006-06-28 04:26:52 -07001027 spin_unlock_irqrestore(&brd_lock, flags);
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 wait_event_interruptible(portp->raw_wait,
1030 !test_bit(ST_OPENING, &portp->state));
1031 if (signal_pending(current))
1032 rc = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 if ((rc == 0) && (portp->rc != 0))
1035 rc = -EIO;
Alan Cox4ac43602006-06-28 04:26:52 -07001036 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
1039/*****************************************************************************/
1040
1041/*
1042 * Send a close message to the slave. Normally this will sleep waiting
1043 * for the acknowledgement, but if wait parameter is 0 it will not. If
1044 * wait is true then must have user context (to sleep).
1045 */
1046
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001047static int stli_rawclose(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
Alan Cox4ac43602006-06-28 04:26:52 -07001049 cdkhdr_t __iomem *hdrp;
1050 cdkctrl_t __iomem *cp;
1051 unsigned char __iomem *bits;
1052 unsigned long flags;
1053 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055/*
1056 * Slave is already closing this port. This can happen if a hangup
1057 * occurs on this port.
1058 */
1059 if (wait) {
1060 wait_event_interruptible(portp->raw_wait,
1061 !test_bit(ST_CLOSING, &portp->state));
1062 if (signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 return -ERESTARTSYS;
1064 }
1065 }
1066
1067/*
1068 * Write the close command into shared memory.
1069 */
Alan Cox4ac43602006-06-28 04:26:52 -07001070 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001072 cp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->ctrl;
1073 writel(arg, &cp->closearg);
1074 writeb(1, &cp->close);
1075 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1076 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -07001078 writeb(readb(bits) |portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 EBRDDISABLE(brdp);
1080
1081 set_bit(ST_CLOSING, &portp->state);
Alan Cox4ac43602006-06-28 04:26:52 -07001082 spin_unlock_irqrestore(&brd_lock, flags);
1083
1084 if (wait == 0)
1085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087/*
1088 * Slave is in action, so now we must wait for the open acknowledgment
1089 * to come back.
1090 */
1091 rc = 0;
1092 wait_event_interruptible(portp->raw_wait,
1093 !test_bit(ST_CLOSING, &portp->state));
1094 if (signal_pending(current))
1095 rc = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 if ((rc == 0) && (portp->rc != 0))
1098 rc = -EIO;
Alan Cox4ac43602006-06-28 04:26:52 -07001099 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
1102/*****************************************************************************/
1103
1104/*
1105 * Send a command to the slave and wait for the response. This must
1106 * have user context (it sleeps). This routine is generic in that it
1107 * can send any type of command. Its purpose is to wait for that command
1108 * to complete (as opposed to initiating the command then returning).
1109 */
1110
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001111static int stli_cmdwait(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 wait_event_interruptible(portp->raw_wait,
1114 !test_bit(ST_CMDING, &portp->state));
Alan Cox4ac43602006-06-28 04:26:52 -07001115 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 stli_sendcmd(brdp, portp, cmd, arg, size, copyback);
1119
1120 wait_event_interruptible(portp->raw_wait,
1121 !test_bit(ST_CMDING, &portp->state));
Alan Cox4ac43602006-06-28 04:26:52 -07001122 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 if (portp->rc != 0)
Alan Cox4ac43602006-06-28 04:26:52 -07001126 return -EIO;
1127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
1130/*****************************************************************************/
1131
1132/*
1133 * Send the termios settings for this port to the slave. This sleeps
1134 * waiting for the command to complete - so must have user context.
1135 */
1136
Alan Coxd18a7502008-10-13 10:40:07 +01001137static int stli_setport(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
Alan Coxd18a7502008-10-13 10:40:07 +01001139 struct stliport *portp = tty->driver_data;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001140 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001141 asyport_t aport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Alan Cox4ac43602006-06-28 04:26:52 -07001143 if (portp == NULL)
1144 return -ENODEV;
Jiri Slaby1328d732006-12-08 02:39:19 -08001145 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001146 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001148 if (brdp == NULL)
1149 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Alan Coxd18a7502008-10-13 10:40:07 +01001151 stli_mkasyport(tty, portp, &aport, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return(stli_cmdwait(brdp, portp, A_SETPORT, &aport, sizeof(asyport_t), 0));
1153}
1154
1155/*****************************************************************************/
1156
Alan Cox31f35932009-01-02 13:45:05 +00001157static int stli_carrier_raised(struct tty_port *port)
1158{
1159 struct stliport *portp = container_of(port, struct stliport, port);
1160 return (portp->sigs & TIOCM_CD) ? 1 : 0;
1161}
1162
Alan Cox2a6eadb2009-01-02 13:46:18 +00001163static void stli_raise_dtr_rts(struct tty_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
Alan Cox2a6eadb2009-01-02 13:46:18 +00001165 struct stliport *portp = container_of(port, struct stliport, port);
1166 struct stlibrd *brdp = stli_brds[portp->brdnr];
1167 stli_mkasysigs(&portp->asig, 1, 1);
1168 if (stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
1169 sizeof(asysigs_t), 0) < 0)
1170 printk(KERN_WARNING "istallion: dtr raise failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}
1172
Alan Cox2a6eadb2009-01-02 13:46:18 +00001173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174/*****************************************************************************/
1175
1176/*
1177 * Write routine. Take the data and put it in the shared memory ring
1178 * queue. If port is not already sending chars then need to mark the
1179 * service bits for this port.
1180 */
1181
1182static int stli_write(struct tty_struct *tty, const unsigned char *buf, int count)
1183{
Alan Cox4ac43602006-06-28 04:26:52 -07001184 cdkasy_t __iomem *ap;
1185 cdkhdr_t __iomem *hdrp;
1186 unsigned char __iomem *bits;
1187 unsigned char __iomem *shbuf;
1188 unsigned char *chbuf;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001189 struct stliport *portp;
1190 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001191 unsigned int len, stlen, head, tail, size;
1192 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (tty == stli_txcooktty)
1195 stli_flushchars(tty);
1196 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001197 if (portp == NULL)
1198 return 0;
Jiri Slaby1328d732006-12-08 02:39:19 -08001199 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001202 if (brdp == NULL)
1203 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 chbuf = (unsigned char *) buf;
1205
1206/*
1207 * All data is now local, shove as much as possible into shared memory.
1208 */
Alan Cox4ac43602006-06-28 04:26:52 -07001209 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001211 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1212 head = (unsigned int) readw(&ap->txq.head);
1213 tail = (unsigned int) readw(&ap->txq.tail);
1214 if (tail != ((unsigned int) readw(&ap->txq.tail)))
1215 tail = (unsigned int) readw(&ap->txq.tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 size = portp->txsize;
1217 if (head >= tail) {
1218 len = size - (head - tail) - 1;
1219 stlen = size - head;
1220 } else {
1221 len = tail - head - 1;
1222 stlen = len;
1223 }
1224
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08001225 len = min(len, (unsigned int)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 count = 0;
Alan Cox4ac43602006-06-28 04:26:52 -07001227 shbuf = (char __iomem *) EBRDGETMEMPTR(brdp, portp->txoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 while (len > 0) {
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08001230 stlen = min(len, stlen);
Alan Cox4ac43602006-06-28 04:26:52 -07001231 memcpy_toio(shbuf + head, chbuf, stlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 chbuf += stlen;
1233 len -= stlen;
1234 count += stlen;
1235 head += stlen;
1236 if (head >= size) {
1237 head = 0;
1238 stlen = tail;
1239 }
1240 }
1241
Alan Cox4ac43602006-06-28 04:26:52 -07001242 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1243 writew(head, &ap->txq.head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (test_bit(ST_TXBUSY, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07001245 if (readl(&ap->changed.data) & DT_TXEMPTY)
1246 writel(readl(&ap->changed.data) & ~DT_TXEMPTY, &ap->changed.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
Alan Cox4ac43602006-06-28 04:26:52 -07001248 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1249 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -07001251 writeb(readb(bits) | portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 set_bit(ST_TXBUSY, &portp->state);
1253 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001254 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 return(count);
1257}
1258
1259/*****************************************************************************/
1260
1261/*
1262 * Output a single character. We put it into a temporary local buffer
1263 * (for speed) then write out that buffer when the flushchars routine
1264 * is called. There is a safety catch here so that if some other port
1265 * writes chars before the current buffer has been, then we write them
1266 * first them do the new ports.
1267 */
1268
Wang Chen42a77a12008-07-21 17:48:59 +08001269static int stli_putchar(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (tty != stli_txcooktty) {
Alan Cox4ac43602006-06-28 04:26:52 -07001272 if (stli_txcooktty != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 stli_flushchars(stli_txcooktty);
1274 stli_txcooktty = tty;
1275 }
1276
1277 stli_txcookbuf[stli_txcooksize++] = ch;
Wang Chen42a77a12008-07-21 17:48:59 +08001278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
1281/*****************************************************************************/
1282
1283/*
1284 * Transfer characters from the local TX cooking buffer to the board.
1285 * We sort of ignore the tty that gets passed in here. We rely on the
1286 * info stored with the TX cook buffer to tell us which port to flush
1287 * the data on. In any case we clean out the TX cook buffer, for re-use
1288 * by someone else.
1289 */
1290
1291static void stli_flushchars(struct tty_struct *tty)
1292{
Alan Cox4ac43602006-06-28 04:26:52 -07001293 cdkhdr_t __iomem *hdrp;
1294 unsigned char __iomem *bits;
1295 cdkasy_t __iomem *ap;
1296 struct tty_struct *cooktty;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001297 struct stliport *portp;
1298 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001299 unsigned int len, stlen, head, tail, size, count, cooksize;
1300 unsigned char *buf;
1301 unsigned char __iomem *shbuf;
1302 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 cooksize = stli_txcooksize;
1305 cooktty = stli_txcooktty;
1306 stli_txcooksize = 0;
1307 stli_txcookrealsize = 0;
Alan Cox4ac43602006-06-28 04:26:52 -07001308 stli_txcooktty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Alan Cox4ac43602006-06-28 04:26:52 -07001310 if (cooktty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return;
1312 if (tty != cooktty)
1313 tty = cooktty;
1314 if (cooksize == 0)
1315 return;
1316
1317 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001318 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001320 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 return;
1322 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001323 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 return;
1325
Alan Cox4ac43602006-06-28 04:26:52 -07001326 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 EBRDENABLE(brdp);
1328
Alan Cox4ac43602006-06-28 04:26:52 -07001329 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1330 head = (unsigned int) readw(&ap->txq.head);
1331 tail = (unsigned int) readw(&ap->txq.tail);
1332 if (tail != ((unsigned int) readw(&ap->txq.tail)))
1333 tail = (unsigned int) readw(&ap->txq.tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 size = portp->txsize;
1335 if (head >= tail) {
1336 len = size - (head - tail) - 1;
1337 stlen = size - head;
1338 } else {
1339 len = tail - head - 1;
1340 stlen = len;
1341 }
1342
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08001343 len = min(len, cooksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 count = 0;
Al Viro29756fa2006-10-10 22:47:27 +01001345 shbuf = EBRDGETMEMPTR(brdp, portp->txoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 buf = stli_txcookbuf;
1347
1348 while (len > 0) {
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08001349 stlen = min(len, stlen);
Alan Cox4ac43602006-06-28 04:26:52 -07001350 memcpy_toio(shbuf + head, buf, stlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 buf += stlen;
1352 len -= stlen;
1353 count += stlen;
1354 head += stlen;
1355 if (head >= size) {
1356 head = 0;
1357 stlen = tail;
1358 }
1359 }
1360
Alan Cox4ac43602006-06-28 04:26:52 -07001361 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1362 writew(head, &ap->txq.head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
1364 if (test_bit(ST_TXBUSY, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07001365 if (readl(&ap->changed.data) & DT_TXEMPTY)
1366 writel(readl(&ap->changed.data) & ~DT_TXEMPTY, &ap->changed.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
Alan Cox4ac43602006-06-28 04:26:52 -07001368 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1369 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -07001371 writeb(readb(bits) | portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 set_bit(ST_TXBUSY, &portp->state);
1373
1374 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001375 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
1378/*****************************************************************************/
1379
1380static int stli_writeroom(struct tty_struct *tty)
1381{
Alan Cox4ac43602006-06-28 04:26:52 -07001382 cdkasyrq_t __iomem *rp;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001383 struct stliport *portp;
1384 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001385 unsigned int head, tail, len;
1386 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (tty == stli_txcooktty) {
1389 if (stli_txcookrealsize != 0) {
1390 len = stli_txcookrealsize - stli_txcooksize;
Alan Cox4ac43602006-06-28 04:26:52 -07001391 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393 }
1394
1395 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001396 if (portp == NULL)
1397 return 0;
Jiri Slaby1328d732006-12-08 02:39:19 -08001398 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001399 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001401 if (brdp == NULL)
1402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Alan Cox4ac43602006-06-28 04:26:52 -07001404 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001406 rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->txq;
1407 head = (unsigned int) readw(&rp->head);
1408 tail = (unsigned int) readw(&rp->tail);
1409 if (tail != ((unsigned int) readw(&rp->tail)))
1410 tail = (unsigned int) readw(&rp->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 len = (head >= tail) ? (portp->txsize - (head - tail)) : (tail - head);
1412 len--;
1413 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001414 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 if (tty == stli_txcooktty) {
1417 stli_txcookrealsize = len;
1418 len -= stli_txcooksize;
1419 }
Alan Cox4ac43602006-06-28 04:26:52 -07001420 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
1423/*****************************************************************************/
1424
1425/*
1426 * Return the number of characters in the transmit buffer. Normally we
1427 * will return the number of chars in the shared memory ring queue.
1428 * We need to kludge around the case where the shared memory buffer is
1429 * empty but not all characters have drained yet, for this case just
1430 * return that there is 1 character in the buffer!
1431 */
1432
1433static int stli_charsinbuffer(struct tty_struct *tty)
1434{
Alan Cox4ac43602006-06-28 04:26:52 -07001435 cdkasyrq_t __iomem *rp;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001436 struct stliport *portp;
1437 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001438 unsigned int head, tail, len;
1439 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (tty == stli_txcooktty)
1442 stli_flushchars(tty);
1443 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001444 if (portp == NULL)
1445 return 0;
Jiri Slaby1328d732006-12-08 02:39:19 -08001446 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001449 if (brdp == NULL)
1450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Alan Cox4ac43602006-06-28 04:26:52 -07001452 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001454 rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->txq;
1455 head = (unsigned int) readw(&rp->head);
1456 tail = (unsigned int) readw(&rp->tail);
1457 if (tail != ((unsigned int) readw(&rp->tail)))
1458 tail = (unsigned int) readw(&rp->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 len = (head >= tail) ? (head - tail) : (portp->txsize - (tail - head));
1460 if ((len == 0) && test_bit(ST_TXBUSY, &portp->state))
1461 len = 1;
1462 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001463 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Alan Cox4ac43602006-06-28 04:26:52 -07001465 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
1468/*****************************************************************************/
1469
1470/*
1471 * Generate the serial struct info.
1472 */
1473
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001474static int stli_getserial(struct stliport *portp, struct serial_struct __user *sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Alan Cox4ac43602006-06-28 04:26:52 -07001476 struct serial_struct sio;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001477 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 memset(&sio, 0, sizeof(struct serial_struct));
1480 sio.type = PORT_UNKNOWN;
1481 sio.line = portp->portnr;
1482 sio.irq = 0;
Alan Coxb02f5ad62008-07-16 21:55:53 +01001483 sio.flags = portp->port.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 sio.baud_base = portp->baud_base;
1485 sio.close_delay = portp->close_delay;
1486 sio.closing_wait = portp->closing_wait;
1487 sio.custom_divisor = portp->custom_divisor;
1488 sio.xmit_fifo_size = 0;
1489 sio.hub6 = 0;
1490
1491 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001492 if (brdp != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 sio.port = brdp->iobase;
1494
1495 return copy_to_user(sp, &sio, sizeof(struct serial_struct)) ?
1496 -EFAULT : 0;
1497}
1498
1499/*****************************************************************************/
1500
1501/*
1502 * Set port according to the serial struct info.
1503 * At this point we do not do any auto-configure stuff, so we will
1504 * just quietly ignore any requests to change irq, etc.
1505 */
1506
Alan Coxd18a7502008-10-13 10:40:07 +01001507static int stli_setserial(struct tty_struct *tty, struct serial_struct __user *sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Alan Cox4ac43602006-06-28 04:26:52 -07001509 struct serial_struct sio;
1510 int rc;
Alan Coxd18a7502008-10-13 10:40:07 +01001511 struct stliport *portp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 if (copy_from_user(&sio, sp, sizeof(struct serial_struct)))
1514 return -EFAULT;
1515 if (!capable(CAP_SYS_ADMIN)) {
1516 if ((sio.baud_base != portp->baud_base) ||
1517 (sio.close_delay != portp->close_delay) ||
1518 ((sio.flags & ~ASYNC_USR_MASK) !=
Alan Coxb02f5ad62008-07-16 21:55:53 +01001519 (portp->port.flags & ~ASYNC_USR_MASK)))
Alan Cox4ac43602006-06-28 04:26:52 -07001520 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522
Alan Coxb02f5ad62008-07-16 21:55:53 +01001523 portp->port.flags = (portp->port.flags & ~ASYNC_USR_MASK) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 (sio.flags & ASYNC_USR_MASK);
1525 portp->baud_base = sio.baud_base;
1526 portp->close_delay = sio.close_delay;
1527 portp->closing_wait = sio.closing_wait;
1528 portp->custom_divisor = sio.custom_divisor;
1529
Alan Coxd18a7502008-10-13 10:40:07 +01001530 if ((rc = stli_setport(tty)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -07001531 return rc;
1532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
1535/*****************************************************************************/
1536
1537static int stli_tiocmget(struct tty_struct *tty, struct file *file)
1538{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001539 struct stliport *portp = tty->driver_data;
1540 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 int rc;
1542
Alan Cox4ac43602006-06-28 04:26:52 -07001543 if (portp == NULL)
1544 return -ENODEV;
Jiri Slaby1328d732006-12-08 02:39:19 -08001545 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001546 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001548 if (brdp == NULL)
1549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (tty->flags & (1 << TTY_IO_ERROR))
Alan Cox4ac43602006-06-28 04:26:52 -07001551 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 if ((rc = stli_cmdwait(brdp, portp, A_GETSIGNALS,
1554 &portp->asig, sizeof(asysigs_t), 1)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -07001555 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 return stli_mktiocm(portp->asig.sigvalue);
1558}
1559
1560static int stli_tiocmset(struct tty_struct *tty, struct file *file,
1561 unsigned int set, unsigned int clear)
1562{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001563 struct stliport *portp = tty->driver_data;
1564 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 int rts = -1, dtr = -1;
1566
Alan Cox4ac43602006-06-28 04:26:52 -07001567 if (portp == NULL)
1568 return -ENODEV;
Jiri Slaby1328d732006-12-08 02:39:19 -08001569 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001570 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001572 if (brdp == NULL)
1573 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 if (tty->flags & (1 << TTY_IO_ERROR))
Alan Cox4ac43602006-06-28 04:26:52 -07001575 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 if (set & TIOCM_RTS)
1578 rts = 1;
1579 if (set & TIOCM_DTR)
1580 dtr = 1;
1581 if (clear & TIOCM_RTS)
1582 rts = 0;
1583 if (clear & TIOCM_DTR)
1584 dtr = 0;
1585
1586 stli_mkasysigs(&portp->asig, dtr, rts);
1587
1588 return stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
1589 sizeof(asysigs_t), 0);
1590}
1591
1592static int stli_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg)
1593{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001594 struct stliport *portp;
1595 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001596 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 void __user *argp = (void __user *)arg;
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001600 if (portp == NULL)
1601 return -ENODEV;
Jiri Slaby1328d732006-12-08 02:39:19 -08001602 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001605 if (brdp == NULL)
1606 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
1609 (cmd != COM_GETPORTSTATS) && (cmd != COM_CLRPORTSTATS)) {
1610 if (tty->flags & (1 << TTY_IO_ERROR))
Alan Cox4ac43602006-06-28 04:26:52 -07001611 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 }
1613
1614 rc = 0;
1615
1616 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 case TIOCGSERIAL:
1618 rc = stli_getserial(portp, argp);
1619 break;
1620 case TIOCSSERIAL:
Alan Coxd18a7502008-10-13 10:40:07 +01001621 rc = stli_setserial(tty, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 break;
1623 case STL_GETPFLAG:
1624 rc = put_user(portp->pflag, (unsigned __user *)argp);
1625 break;
1626 case STL_SETPFLAG:
1627 if ((rc = get_user(portp->pflag, (unsigned __user *)argp)) == 0)
Alan Coxd18a7502008-10-13 10:40:07 +01001628 stli_setport(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 break;
1630 case COM_GETPORTSTATS:
Alan Coxd18a7502008-10-13 10:40:07 +01001631 rc = stli_getportstats(tty, portp, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 break;
1633 case COM_CLRPORTSTATS:
1634 rc = stli_clrportstats(portp, argp);
1635 break;
1636 case TIOCSERCONFIG:
1637 case TIOCSERGWILD:
1638 case TIOCSERSWILD:
1639 case TIOCSERGETLSR:
1640 case TIOCSERGSTRUCT:
1641 case TIOCSERGETMULTI:
1642 case TIOCSERSETMULTI:
1643 default:
1644 rc = -ENOIOCTLCMD;
1645 break;
1646 }
1647
Alan Cox4ac43602006-06-28 04:26:52 -07001648 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649}
1650
1651/*****************************************************************************/
1652
1653/*
1654 * This routine assumes that we have user context and can sleep.
1655 * Looks like it is true for the current ttys implementation..!!
1656 */
1657
Alan Cox606d0992006-12-08 02:38:45 -08001658static void stli_settermios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001660 struct stliport *portp;
1661 struct stlibrd *brdp;
Alan Cox606d0992006-12-08 02:38:45 -08001662 struct ktermios *tiosp;
Alan Cox4ac43602006-06-28 04:26:52 -07001663 asyport_t aport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001666 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001668 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 return;
1670 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001671 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return;
1673
1674 tiosp = tty->termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Alan Coxd18a7502008-10-13 10:40:07 +01001676 stli_mkasyport(tty, portp, &aport, tiosp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 stli_cmdwait(brdp, portp, A_SETPORT, &aport, sizeof(asyport_t), 0);
1678 stli_mkasysigs(&portp->asig, ((tiosp->c_cflag & CBAUD) ? 1 : 0), -1);
1679 stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
1680 sizeof(asysigs_t), 0);
1681 if ((old->c_cflag & CRTSCTS) && ((tiosp->c_cflag & CRTSCTS) == 0))
1682 tty->hw_stopped = 0;
1683 if (((old->c_cflag & CLOCAL) == 0) && (tiosp->c_cflag & CLOCAL))
Alan Coxb02f5ad62008-07-16 21:55:53 +01001684 wake_up_interruptible(&portp->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
1686
1687/*****************************************************************************/
1688
1689/*
1690 * Attempt to flow control who ever is sending us data. We won't really
1691 * do any flow control action here. We can't directly, and even if we
1692 * wanted to we would have to send a command to the slave. The slave
1693 * knows how to flow control, and will do so when its buffers reach its
1694 * internal high water marks. So what we will do is set a local state
1695 * bit that will stop us sending any RX data up from the poll routine
1696 * (which is the place where RX data from the slave is handled).
1697 */
1698
1699static void stli_throttle(struct tty_struct *tty)
1700{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001701 struct stliport *portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001702 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 set_bit(ST_RXSTOP, &portp->state);
1705}
1706
1707/*****************************************************************************/
1708
1709/*
1710 * Unflow control the device sending us data... That means that all
1711 * we have to do is clear the RXSTOP state bit. The next poll call
1712 * will then be able to pass the RX data back up.
1713 */
1714
1715static void stli_unthrottle(struct tty_struct *tty)
1716{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001717 struct stliport *portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001718 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 clear_bit(ST_RXSTOP, &portp->state);
1721}
1722
1723/*****************************************************************************/
1724
1725/*
Alan Cox4ac43602006-06-28 04:26:52 -07001726 * Stop the transmitter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 */
1728
1729static void stli_stop(struct tty_struct *tty)
1730{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731}
1732
1733/*****************************************************************************/
1734
1735/*
Alan Cox4ac43602006-06-28 04:26:52 -07001736 * Start the transmitter again.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 */
1738
1739static void stli_start(struct tty_struct *tty)
1740{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
1743/*****************************************************************************/
1744
1745/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 * Hangup this port. This is pretty much like closing the port, only
1747 * a little more brutal. No waiting for data to drain. Shutdown the
1748 * port and maybe drop signals. This is rather tricky really. We want
1749 * to close the port as well.
1750 */
1751
1752static void stli_hangup(struct tty_struct *tty)
1753{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001754 struct stliport *portp;
1755 struct stlibrd *brdp;
Alan Cox2a6eadb2009-01-02 13:46:18 +00001756 struct tty_port *port;
Alan Cox4ac43602006-06-28 04:26:52 -07001757 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001760 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001762 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 return;
1764 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001765 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 return;
Alan Cox2a6eadb2009-01-02 13:46:18 +00001767 port = &portp->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Alan Cox2a6eadb2009-01-02 13:46:18 +00001769 spin_lock_irqsave(&port->lock, flags);
1770 port->flags &= ~ASYNC_INITIALIZED;
1771 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Alan Cox4ac43602006-06-28 04:26:52 -07001773 if (!test_bit(ST_CLOSING, &portp->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 stli_rawclose(brdp, portp, 0, 0);
Alan Cox4ac43602006-06-28 04:26:52 -07001775
1776 spin_lock_irqsave(&stli_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (tty->termios->c_cflag & HUPCL) {
1778 stli_mkasysigs(&portp->asig, 0, 0);
1779 if (test_bit(ST_CMDING, &portp->state)) {
1780 set_bit(ST_DOSIGS, &portp->state);
1781 set_bit(ST_DOFLUSHTX, &portp->state);
1782 set_bit(ST_DOFLUSHRX, &portp->state);
1783 } else {
1784 stli_sendcmd(brdp, portp, A_SETSIGNALSF,
1785 &portp->asig, sizeof(asysigs_t), 0);
1786 }
1787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 clear_bit(ST_TXBUSY, &portp->state);
1790 clear_bit(ST_RXSTOP, &portp->state);
1791 set_bit(TTY_IO_ERROR, &tty->flags);
Alan Cox4ac43602006-06-28 04:26:52 -07001792 spin_unlock_irqrestore(&stli_lock, flags);
1793
Alan Cox2a6eadb2009-01-02 13:46:18 +00001794 tty_port_hangup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795}
1796
1797/*****************************************************************************/
1798
1799/*
1800 * Flush characters from the lower buffer. We may not have user context
1801 * so we cannot sleep waiting for it to complete. Also we need to check
1802 * if there is chars for this port in the TX cook buffer, and flush them
1803 * as well.
1804 */
1805
1806static void stli_flushbuffer(struct tty_struct *tty)
1807{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001808 struct stliport *portp;
1809 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001810 unsigned long ftype, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001813 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001815 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return;
1817 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001818 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return;
1820
Alan Cox4ac43602006-06-28 04:26:52 -07001821 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (tty == stli_txcooktty) {
Alan Cox4ac43602006-06-28 04:26:52 -07001823 stli_txcooktty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 stli_txcooksize = 0;
1825 stli_txcookrealsize = 0;
1826 }
1827 if (test_bit(ST_CMDING, &portp->state)) {
1828 set_bit(ST_DOFLUSHTX, &portp->state);
1829 } else {
1830 ftype = FLUSHTX;
1831 if (test_bit(ST_DOFLUSHRX, &portp->state)) {
1832 ftype |= FLUSHRX;
1833 clear_bit(ST_DOFLUSHRX, &portp->state);
1834 }
Alan Cox4ac43602006-06-28 04:26:52 -07001835 __stli_sendcmd(brdp, portp, A_FLUSH, &ftype, sizeof(u32), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
Alan Cox4ac43602006-06-28 04:26:52 -07001837 spin_unlock_irqrestore(&brd_lock, flags);
1838 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
1841/*****************************************************************************/
1842
Alan Cox9e989662008-07-22 11:18:03 +01001843static int stli_breakctl(struct tty_struct *tty, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001845 struct stlibrd *brdp;
1846 struct stliport *portp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 long arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001850 if (portp == NULL)
Alan Cox9e989662008-07-22 11:18:03 +01001851 return -EINVAL;
Jiri Slaby1328d732006-12-08 02:39:19 -08001852 if (portp->brdnr >= stli_nrbrds)
Alan Cox9e989662008-07-22 11:18:03 +01001853 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001855 if (brdp == NULL)
Alan Cox9e989662008-07-22 11:18:03 +01001856 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 arg = (state == -1) ? BREAKON : BREAKOFF;
1859 stli_cmdwait(brdp, portp, A_BREAK, &arg, sizeof(long), 0);
Alan Cox9e989662008-07-22 11:18:03 +01001860 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861}
1862
1863/*****************************************************************************/
1864
1865static void stli_waituntilsent(struct tty_struct *tty, int timeout)
1866{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001867 struct stliport *portp;
Alan Cox4ac43602006-06-28 04:26:52 -07001868 unsigned long tend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001871 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return;
1873
1874 if (timeout == 0)
1875 timeout = HZ;
1876 tend = jiffies + timeout;
1877
1878 while (test_bit(ST_TXBUSY, &portp->state)) {
1879 if (signal_pending(current))
1880 break;
1881 msleep_interruptible(20);
1882 if (time_after_eq(jiffies, tend))
1883 break;
1884 }
1885}
1886
1887/*****************************************************************************/
1888
1889static void stli_sendxchar(struct tty_struct *tty, char ch)
1890{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001891 struct stlibrd *brdp;
1892 struct stliport *portp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 asyctrl_t actrl;
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001896 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001898 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return;
1900 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001901 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 return;
1903
1904 memset(&actrl, 0, sizeof(asyctrl_t));
1905 if (ch == STOP_CHAR(tty)) {
1906 actrl.rxctrl = CT_STOPFLOW;
1907 } else if (ch == START_CHAR(tty)) {
1908 actrl.rxctrl = CT_STARTFLOW;
1909 } else {
1910 actrl.txctrl = CT_SENDCHR;
1911 actrl.tximdch = ch;
1912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 stli_cmdwait(brdp, portp, A_PORTCTRL, &actrl, sizeof(asyctrl_t), 0);
1914}
1915
1916/*****************************************************************************/
1917
1918#define MAXLINE 80
1919
1920/*
1921 * Format info for a specified port. The line is deliberately limited
1922 * to 80 characters. (If it is too long it will be truncated, if too
1923 * short then padded with spaces).
1924 */
1925
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001926static int stli_portinfo(struct stlibrd *brdp, struct stliport *portp, int portnr, char *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Alan Cox4ac43602006-06-28 04:26:52 -07001928 char *sp, *uart;
1929 int rc, cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Alan Coxd18a7502008-10-13 10:40:07 +01001931 rc = stli_portcmdstats(NULL, portp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 uart = "UNKNOWN";
1934 if (brdp->state & BST_STARTED) {
1935 switch (stli_comstats.hwid) {
Alan Cox4ac43602006-06-28 04:26:52 -07001936 case 0: uart = "2681"; break;
1937 case 1: uart = "SC26198"; break;
1938 default:uart = "CD1400"; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 }
1940 }
1941
1942 sp = pos;
1943 sp += sprintf(sp, "%d: uart:%s ", portnr, uart);
1944
1945 if ((brdp->state & BST_STARTED) && (rc >= 0)) {
1946 sp += sprintf(sp, "tx:%d rx:%d", (int) stli_comstats.txtotal,
1947 (int) stli_comstats.rxtotal);
1948
1949 if (stli_comstats.rxframing)
1950 sp += sprintf(sp, " fe:%d",
1951 (int) stli_comstats.rxframing);
1952 if (stli_comstats.rxparity)
1953 sp += sprintf(sp, " pe:%d",
1954 (int) stli_comstats.rxparity);
1955 if (stli_comstats.rxbreaks)
1956 sp += sprintf(sp, " brk:%d",
1957 (int) stli_comstats.rxbreaks);
1958 if (stli_comstats.rxoverrun)
1959 sp += sprintf(sp, " oe:%d",
1960 (int) stli_comstats.rxoverrun);
1961
1962 cnt = sprintf(sp, "%s%s%s%s%s ",
1963 (stli_comstats.signals & TIOCM_RTS) ? "|RTS" : "",
1964 (stli_comstats.signals & TIOCM_CTS) ? "|CTS" : "",
1965 (stli_comstats.signals & TIOCM_DTR) ? "|DTR" : "",
1966 (stli_comstats.signals & TIOCM_CD) ? "|DCD" : "",
1967 (stli_comstats.signals & TIOCM_DSR) ? "|DSR" : "");
1968 *sp = ' ';
1969 sp += cnt;
1970 }
1971
1972 for (cnt = (sp - pos); (cnt < (MAXLINE - 1)); cnt++)
1973 *sp++ = ' ';
1974 if (cnt >= MAXLINE)
1975 pos[(MAXLINE - 2)] = '+';
1976 pos[(MAXLINE - 1)] = '\n';
1977
1978 return(MAXLINE);
1979}
1980
1981/*****************************************************************************/
1982
1983/*
1984 * Port info, read from the /proc file system.
1985 */
1986
1987static int stli_readproc(char *page, char **start, off_t off, int count, int *eof, void *data)
1988{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001989 struct stlibrd *brdp;
1990 struct stliport *portp;
Jiri Slaby1328d732006-12-08 02:39:19 -08001991 unsigned int brdnr, portnr, totalport;
Alan Cox4ac43602006-06-28 04:26:52 -07001992 int curoff, maxoff;
1993 char *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995 pos = page;
1996 totalport = 0;
1997 curoff = 0;
1998
1999 if (off == 0) {
2000 pos += sprintf(pos, "%s: version %s", stli_drvtitle,
2001 stli_drvversion);
2002 while (pos < (page + MAXLINE - 1))
2003 *pos++ = ' ';
2004 *pos++ = '\n';
2005 }
2006 curoff = MAXLINE;
2007
2008/*
2009 * We scan through for each board, panel and port. The offset is
2010 * calculated on the fly, and irrelevant ports are skipped.
2011 */
2012 for (brdnr = 0; (brdnr < stli_nrbrds); brdnr++) {
2013 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07002014 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 continue;
2016 if (brdp->state == 0)
2017 continue;
2018
2019 maxoff = curoff + (brdp->nrports * MAXLINE);
2020 if (off >= maxoff) {
2021 curoff = maxoff;
2022 continue;
2023 }
2024
2025 totalport = brdnr * STL_MAXPORTS;
2026 for (portnr = 0; (portnr < brdp->nrports); portnr++,
2027 totalport++) {
2028 portp = brdp->ports[portnr];
Alan Cox4ac43602006-06-28 04:26:52 -07002029 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 continue;
2031 if (off >= (curoff += MAXLINE))
2032 continue;
2033 if ((pos - page + MAXLINE) > count)
2034 goto stli_readdone;
2035 pos += stli_portinfo(brdp, portp, totalport, pos);
2036 }
2037 }
2038
2039 *eof = 1;
2040
2041stli_readdone:
2042 *start = page;
2043 return(pos - page);
2044}
2045
2046/*****************************************************************************/
2047
2048/*
2049 * Generic send command routine. This will send a message to the slave,
2050 * of the specified type with the specified argument. Must be very
2051 * careful of data that will be copied out from shared memory -
2052 * containing command results. The command completion is all done from
2053 * a poll routine that does not have user context. Therefore you cannot
2054 * copy back directly into user space, or to the kernel stack of a
2055 * process. This routine does not sleep, so can be called from anywhere.
Alan Cox4ac43602006-06-28 04:26:52 -07002056 *
2057 * The caller must hold the brd_lock (see also stli_sendcmd the usual
2058 * entry point)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 */
2060
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002061static void __stli_sendcmd(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
Alan Cox4ac43602006-06-28 04:26:52 -07002063 cdkhdr_t __iomem *hdrp;
2064 cdkctrl_t __iomem *cp;
2065 unsigned char __iomem *bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 if (test_bit(ST_CMDING, &portp->state)) {
2068 printk(KERN_ERR "STALLION: command already busy, cmd=%x!\n",
2069 (int) cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return;
2071 }
2072
2073 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07002074 cp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 if (size > 0) {
Alan Cox4ac43602006-06-28 04:26:52 -07002076 memcpy_toio((void __iomem *) &(cp->args[0]), arg, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (copyback) {
2078 portp->argp = arg;
2079 portp->argsize = size;
2080 }
2081 }
Alan Cox4ac43602006-06-28 04:26:52 -07002082 writel(0, &cp->status);
2083 writel(cmd, &cp->cmd);
2084 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
2085 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -07002087 writeb(readb(bits) | portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 set_bit(ST_CMDING, &portp->state);
2089 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07002090}
2091
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002092static void stli_sendcmd(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback)
Alan Cox4ac43602006-06-28 04:26:52 -07002093{
2094 unsigned long flags;
2095
2096 spin_lock_irqsave(&brd_lock, flags);
2097 __stli_sendcmd(brdp, portp, cmd, arg, size, copyback);
2098 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
2101/*****************************************************************************/
2102
2103/*
2104 * Read data from shared memory. This assumes that the shared memory
2105 * is enabled and that interrupts are off. Basically we just empty out
2106 * the shared memory buffer into the tty buffer. Must be careful to
2107 * handle the case where we fill up the tty buffer, but still have
2108 * more chars to unload.
2109 */
2110
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002111static void stli_read(struct stlibrd *brdp, struct stliport *portp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
Alan Cox4ac43602006-06-28 04:26:52 -07002113 cdkasyrq_t __iomem *rp;
2114 char __iomem *shbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 struct tty_struct *tty;
Alan Cox4ac43602006-06-28 04:26:52 -07002116 unsigned int head, tail, size;
2117 unsigned int len, stlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 if (test_bit(ST_RXSTOP, &portp->state))
2120 return;
Alan Coxd18a7502008-10-13 10:40:07 +01002121 tty = tty_port_tty_get(&portp->port);
Alan Cox4ac43602006-06-28 04:26:52 -07002122 if (tty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return;
2124
Alan Cox4ac43602006-06-28 04:26:52 -07002125 rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->rxq;
2126 head = (unsigned int) readw(&rp->head);
2127 if (head != ((unsigned int) readw(&rp->head)))
2128 head = (unsigned int) readw(&rp->head);
2129 tail = (unsigned int) readw(&rp->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 size = portp->rxsize;
2131 if (head >= tail) {
2132 len = head - tail;
2133 stlen = len;
2134 } else {
2135 len = size - (tail - head);
2136 stlen = size - tail;
2137 }
2138
Alan Cox33f0f882006-01-09 20:54:13 -08002139 len = tty_buffer_request_room(tty, len);
Alan Cox4ac43602006-06-28 04:26:52 -07002140
2141 shbuf = (char __iomem *) EBRDGETMEMPTR(brdp, portp->rxoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 while (len > 0) {
Alan Cox4ac43602006-06-28 04:26:52 -07002144 unsigned char *cptr;
2145
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08002146 stlen = min(len, stlen);
Alan Cox4ac43602006-06-28 04:26:52 -07002147 tty_prepare_flip_string(tty, &cptr, stlen);
2148 memcpy_fromio(cptr, shbuf + tail, stlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 len -= stlen;
2150 tail += stlen;
2151 if (tail >= size) {
2152 tail = 0;
2153 stlen = head;
2154 }
2155 }
Alan Cox4ac43602006-06-28 04:26:52 -07002156 rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->rxq;
2157 writew(tail, &rp->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159 if (head != tail)
2160 set_bit(ST_RXING, &portp->state);
2161
2162 tty_schedule_flip(tty);
Alan Coxd18a7502008-10-13 10:40:07 +01002163 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164}
2165
2166/*****************************************************************************/
2167
2168/*
2169 * Set up and carry out any delayed commands. There is only a small set
2170 * of slave commands that can be done "off-level". So it is not too
2171 * difficult to deal with them here.
2172 */
2173
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002174static void stli_dodelaycmd(struct stliport *portp, cdkctrl_t __iomem *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
Alan Cox4ac43602006-06-28 04:26:52 -07002176 int cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
2178 if (test_bit(ST_DOSIGS, &portp->state)) {
2179 if (test_bit(ST_DOFLUSHTX, &portp->state) &&
2180 test_bit(ST_DOFLUSHRX, &portp->state))
2181 cmd = A_SETSIGNALSF;
2182 else if (test_bit(ST_DOFLUSHTX, &portp->state))
2183 cmd = A_SETSIGNALSFTX;
2184 else if (test_bit(ST_DOFLUSHRX, &portp->state))
2185 cmd = A_SETSIGNALSFRX;
2186 else
2187 cmd = A_SETSIGNALS;
2188 clear_bit(ST_DOFLUSHTX, &portp->state);
2189 clear_bit(ST_DOFLUSHRX, &portp->state);
2190 clear_bit(ST_DOSIGS, &portp->state);
Alan Cox4ac43602006-06-28 04:26:52 -07002191 memcpy_toio((void __iomem *) &(cp->args[0]), (void *) &portp->asig,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 sizeof(asysigs_t));
Alan Cox4ac43602006-06-28 04:26:52 -07002193 writel(0, &cp->status);
2194 writel(cmd, &cp->cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 set_bit(ST_CMDING, &portp->state);
2196 } else if (test_bit(ST_DOFLUSHTX, &portp->state) ||
2197 test_bit(ST_DOFLUSHRX, &portp->state)) {
2198 cmd = ((test_bit(ST_DOFLUSHTX, &portp->state)) ? FLUSHTX : 0);
2199 cmd |= ((test_bit(ST_DOFLUSHRX, &portp->state)) ? FLUSHRX : 0);
2200 clear_bit(ST_DOFLUSHTX, &portp->state);
2201 clear_bit(ST_DOFLUSHRX, &portp->state);
Alan Cox4ac43602006-06-28 04:26:52 -07002202 memcpy_toio((void __iomem *) &(cp->args[0]), (void *) &cmd, sizeof(int));
2203 writel(0, &cp->status);
2204 writel(A_FLUSH, &cp->cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 set_bit(ST_CMDING, &portp->state);
2206 }
2207}
2208
2209/*****************************************************************************/
2210
2211/*
2212 * Host command service checking. This handles commands or messages
2213 * coming from the slave to the host. Must have board shared memory
2214 * enabled and interrupts off when called. Notice that by servicing the
2215 * read data last we don't need to change the shared memory pointer
2216 * during processing (which is a slow IO operation).
2217 * Return value indicates if this port is still awaiting actions from
2218 * the slave (like open, command, or even TX data being sent). If 0
2219 * then port is still busy, otherwise no longer busy.
2220 */
2221
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002222static int stli_hostcmd(struct stlibrd *brdp, struct stliport *portp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
Alan Cox4ac43602006-06-28 04:26:52 -07002224 cdkasy_t __iomem *ap;
2225 cdkctrl_t __iomem *cp;
2226 struct tty_struct *tty;
2227 asynotify_t nt;
2228 unsigned long oldsigs;
2229 int rc, donerx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Alan Cox4ac43602006-06-28 04:26:52 -07002231 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 cp = &ap->ctrl;
2233
2234/*
2235 * Check if we are waiting for an open completion message.
2236 */
2237 if (test_bit(ST_OPENING, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002238 rc = readl(&cp->openarg);
2239 if (readb(&cp->open) == 0 && rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (rc > 0)
2241 rc--;
Alan Cox4ac43602006-06-28 04:26:52 -07002242 writel(0, &cp->openarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 portp->rc = rc;
2244 clear_bit(ST_OPENING, &portp->state);
2245 wake_up_interruptible(&portp->raw_wait);
2246 }
2247 }
2248
2249/*
2250 * Check if we are waiting for a close completion message.
2251 */
2252 if (test_bit(ST_CLOSING, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002253 rc = (int) readl(&cp->closearg);
2254 if (readb(&cp->close) == 0 && rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 if (rc > 0)
2256 rc--;
Alan Cox4ac43602006-06-28 04:26:52 -07002257 writel(0, &cp->closearg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 portp->rc = rc;
2259 clear_bit(ST_CLOSING, &portp->state);
2260 wake_up_interruptible(&portp->raw_wait);
2261 }
2262 }
2263
2264/*
2265 * Check if we are waiting for a command completion message. We may
2266 * need to copy out the command results associated with this command.
2267 */
2268 if (test_bit(ST_CMDING, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002269 rc = readl(&cp->status);
2270 if (readl(&cp->cmd) == 0 && rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 if (rc > 0)
2272 rc--;
Alan Cox4ac43602006-06-28 04:26:52 -07002273 if (portp->argp != NULL) {
2274 memcpy_fromio(portp->argp, (void __iomem *) &(cp->args[0]),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 portp->argsize);
Alan Cox4ac43602006-06-28 04:26:52 -07002276 portp->argp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 }
Alan Cox4ac43602006-06-28 04:26:52 -07002278 writel(0, &cp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 portp->rc = rc;
2280 clear_bit(ST_CMDING, &portp->state);
2281 stli_dodelaycmd(portp, cp);
2282 wake_up_interruptible(&portp->raw_wait);
2283 }
2284 }
2285
2286/*
2287 * Check for any notification messages ready. This includes lots of
2288 * different types of events - RX chars ready, RX break received,
2289 * TX data low or empty in the slave, modem signals changed state.
2290 */
2291 donerx = 0;
2292
2293 if (ap->notify) {
2294 nt = ap->changed;
2295 ap->notify = 0;
Alan Coxd18a7502008-10-13 10:40:07 +01002296 tty = tty_port_tty_get(&portp->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
2298 if (nt.signal & SG_DCD) {
2299 oldsigs = portp->sigs;
2300 portp->sigs = stli_mktiocm(nt.sigvalue);
2301 clear_bit(ST_GETSIGS, &portp->state);
2302 if ((portp->sigs & TIOCM_CD) &&
2303 ((oldsigs & TIOCM_CD) == 0))
Alan Coxb02f5ad62008-07-16 21:55:53 +01002304 wake_up_interruptible(&portp->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 if ((oldsigs & TIOCM_CD) &&
2306 ((portp->sigs & TIOCM_CD) == 0)) {
Alan Coxb02f5ad62008-07-16 21:55:53 +01002307 if (portp->port.flags & ASYNC_CHECK_CD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 if (tty)
Jiri Slabycfccaee2008-02-07 00:16:38 -08002309 tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311 }
2312 }
2313
2314 if (nt.data & DT_TXEMPTY)
2315 clear_bit(ST_TXBUSY, &portp->state);
2316 if (nt.data & (DT_TXEMPTY | DT_TXLOW)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002317 if (tty != NULL) {
2318 tty_wakeup(tty);
2319 EBRDENABLE(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
2321 }
2322
2323 if ((nt.data & DT_RXBREAK) && (portp->rxmarkmsk & BRKINT)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002324 if (tty != NULL) {
Alan Cox33f0f882006-01-09 20:54:13 -08002325 tty_insert_flip_char(tty, 0, TTY_BREAK);
Alan Coxb02f5ad62008-07-16 21:55:53 +01002326 if (portp->port.flags & ASYNC_SAK) {
Alan Cox33f0f882006-01-09 20:54:13 -08002327 do_SAK(tty);
2328 EBRDENABLE(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
Alan Cox33f0f882006-01-09 20:54:13 -08002330 tty_schedule_flip(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 }
2332 }
Alan Coxd18a7502008-10-13 10:40:07 +01002333 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335 if (nt.data & DT_RXBUSY) {
2336 donerx++;
2337 stli_read(brdp, portp);
2338 }
2339 }
2340
2341/*
2342 * It might seem odd that we are checking for more RX chars here.
2343 * But, we need to handle the case where the tty buffer was previously
2344 * filled, but we had more characters to pass up. The slave will not
2345 * send any more RX notify messages until the RX buffer has been emptied.
2346 * But it will leave the service bits on (since the buffer is not empty).
2347 * So from here we can try to process more RX chars.
2348 */
2349 if ((!donerx) && test_bit(ST_RXING, &portp->state)) {
2350 clear_bit(ST_RXING, &portp->state);
2351 stli_read(brdp, portp);
2352 }
2353
2354 return((test_bit(ST_OPENING, &portp->state) ||
2355 test_bit(ST_CLOSING, &portp->state) ||
2356 test_bit(ST_CMDING, &portp->state) ||
2357 test_bit(ST_TXBUSY, &portp->state) ||
2358 test_bit(ST_RXING, &portp->state)) ? 0 : 1);
2359}
2360
2361/*****************************************************************************/
2362
2363/*
2364 * Service all ports on a particular board. Assumes that the boards
2365 * shared memory is enabled, and that the page pointer is pointed
2366 * at the cdk header structure.
2367 */
2368
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002369static void stli_brdpoll(struct stlibrd *brdp, cdkhdr_t __iomem *hdrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002371 struct stliport *portp;
Alan Cox4ac43602006-06-28 04:26:52 -07002372 unsigned char hostbits[(STL_MAXCHANS / 8) + 1];
2373 unsigned char slavebits[(STL_MAXCHANS / 8) + 1];
2374 unsigned char __iomem *slavep;
2375 int bitpos, bitat, bitsize;
2376 int channr, nrdevs, slavebitchange;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
2378 bitsize = brdp->bitsize;
2379 nrdevs = brdp->nrdevs;
2380
2381/*
2382 * Check if slave wants any service. Basically we try to do as
2383 * little work as possible here. There are 2 levels of service
2384 * bits. So if there is nothing to do we bail early. We check
2385 * 8 service bits at a time in the inner loop, so we can bypass
2386 * the lot if none of them want service.
2387 */
Alan Cox4ac43602006-06-28 04:26:52 -07002388 memcpy_fromio(&hostbits[0], (((unsigned char __iomem *) hdrp) + brdp->hostoffset),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 bitsize);
2390
2391 memset(&slavebits[0], 0, bitsize);
2392 slavebitchange = 0;
2393
2394 for (bitpos = 0; (bitpos < bitsize); bitpos++) {
2395 if (hostbits[bitpos] == 0)
2396 continue;
2397 channr = bitpos * 8;
2398 for (bitat = 0x1; (channr < nrdevs); channr++, bitat <<= 1) {
2399 if (hostbits[bitpos] & bitat) {
2400 portp = brdp->ports[(channr - 1)];
2401 if (stli_hostcmd(brdp, portp)) {
2402 slavebitchange++;
2403 slavebits[bitpos] |= bitat;
2404 }
2405 }
2406 }
2407 }
2408
2409/*
2410 * If any of the ports are no longer busy then update them in the
2411 * slave request bits. We need to do this after, since a host port
2412 * service may initiate more slave requests.
2413 */
2414 if (slavebitchange) {
Alan Cox4ac43602006-06-28 04:26:52 -07002415 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
2416 slavep = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 for (bitpos = 0; (bitpos < bitsize); bitpos++) {
Alan Cox4ac43602006-06-28 04:26:52 -07002418 if (readb(slavebits + bitpos))
2419 writeb(readb(slavep + bitpos) & ~slavebits[bitpos], slavebits + bitpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 }
2421 }
2422}
2423
2424/*****************************************************************************/
2425
2426/*
2427 * Driver poll routine. This routine polls the boards in use and passes
2428 * messages back up to host when necessary. This is actually very
2429 * CPU efficient, since we will always have the kernel poll clock, it
2430 * adds only a few cycles when idle (since board service can be
2431 * determined very easily), but when loaded generates no interrupts
2432 * (with their expensive associated context change).
2433 */
2434
2435static void stli_poll(unsigned long arg)
2436{
Alan Cox4ac43602006-06-28 04:26:52 -07002437 cdkhdr_t __iomem *hdrp;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002438 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08002439 unsigned int brdnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Jiri Slabyff8efe92006-12-08 02:39:27 -08002441 mod_timer(&stli_timerlist, STLI_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443/*
2444 * Check each board and do any servicing required.
2445 */
2446 for (brdnr = 0; (brdnr < stli_nrbrds); brdnr++) {
2447 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07002448 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 continue;
2450 if ((brdp->state & BST_STARTED) == 0)
2451 continue;
2452
Alan Cox4ac43602006-06-28 04:26:52 -07002453 spin_lock(&brd_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07002455 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
2456 if (readb(&hdrp->hostreq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 stli_brdpoll(brdp, hdrp);
2458 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07002459 spin_unlock(&brd_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 }
2461}
2462
2463/*****************************************************************************/
2464
2465/*
2466 * Translate the termios settings into the port setting structure of
2467 * the slave.
2468 */
2469
Alan Coxd18a7502008-10-13 10:40:07 +01002470static void stli_mkasyport(struct tty_struct *tty, struct stliport *portp,
2471 asyport_t *pp, struct ktermios *tiosp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 memset(pp, 0, sizeof(asyport_t));
2474
2475/*
2476 * Start of by setting the baud, char size, parity and stop bit info.
2477 */
Alan Coxd18a7502008-10-13 10:40:07 +01002478 pp->baudout = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 if ((tiosp->c_cflag & CBAUD) == B38400) {
Alan Coxb02f5ad62008-07-16 21:55:53 +01002480 if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 pp->baudout = 57600;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002482 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 pp->baudout = 115200;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002484 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 pp->baudout = 230400;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002486 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 pp->baudout = 460800;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002488 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 pp->baudout = (portp->baud_base / portp->custom_divisor);
2490 }
2491 if (pp->baudout > STL_MAXBAUD)
2492 pp->baudout = STL_MAXBAUD;
2493 pp->baudin = pp->baudout;
2494
2495 switch (tiosp->c_cflag & CSIZE) {
2496 case CS5:
2497 pp->csize = 5;
2498 break;
2499 case CS6:
2500 pp->csize = 6;
2501 break;
2502 case CS7:
2503 pp->csize = 7;
2504 break;
2505 default:
2506 pp->csize = 8;
2507 break;
2508 }
2509
2510 if (tiosp->c_cflag & CSTOPB)
2511 pp->stopbs = PT_STOP2;
2512 else
2513 pp->stopbs = PT_STOP1;
2514
2515 if (tiosp->c_cflag & PARENB) {
2516 if (tiosp->c_cflag & PARODD)
2517 pp->parity = PT_ODDPARITY;
2518 else
2519 pp->parity = PT_EVENPARITY;
2520 } else {
2521 pp->parity = PT_NOPARITY;
2522 }
2523
2524/*
2525 * Set up any flow control options enabled.
2526 */
2527 if (tiosp->c_iflag & IXON) {
2528 pp->flow |= F_IXON;
2529 if (tiosp->c_iflag & IXANY)
2530 pp->flow |= F_IXANY;
2531 }
2532 if (tiosp->c_cflag & CRTSCTS)
2533 pp->flow |= (F_RTSFLOW | F_CTSFLOW);
2534
2535 pp->startin = tiosp->c_cc[VSTART];
2536 pp->stopin = tiosp->c_cc[VSTOP];
2537 pp->startout = tiosp->c_cc[VSTART];
2538 pp->stopout = tiosp->c_cc[VSTOP];
2539
2540/*
2541 * Set up the RX char marking mask with those RX error types we must
2542 * catch. We can get the slave to help us out a little here, it will
2543 * ignore parity errors and breaks for us, and mark parity errors in
2544 * the data stream.
2545 */
2546 if (tiosp->c_iflag & IGNPAR)
2547 pp->iflag |= FI_IGNRXERRS;
2548 if (tiosp->c_iflag & IGNBRK)
2549 pp->iflag |= FI_IGNBREAK;
2550
2551 portp->rxmarkmsk = 0;
2552 if (tiosp->c_iflag & (INPCK | PARMRK))
2553 pp->iflag |= FI_1MARKRXERRS;
2554 if (tiosp->c_iflag & BRKINT)
2555 portp->rxmarkmsk |= BRKINT;
2556
2557/*
2558 * Set up clocal processing as required.
2559 */
2560 if (tiosp->c_cflag & CLOCAL)
Alan Coxb02f5ad62008-07-16 21:55:53 +01002561 portp->port.flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 else
Alan Coxb02f5ad62008-07-16 21:55:53 +01002563 portp->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565/*
2566 * Transfer any persistent flags into the asyport structure.
2567 */
2568 pp->pflag = (portp->pflag & 0xffff);
2569 pp->vmin = (portp->pflag & P_RXIMIN) ? 1 : 0;
2570 pp->vtime = (portp->pflag & P_RXITIME) ? 1 : 0;
2571 pp->cc[1] = (portp->pflag & P_RXTHOLD) ? 1 : 0;
2572}
2573
2574/*****************************************************************************/
2575
2576/*
2577 * Construct a slave signals structure for setting the DTR and RTS
2578 * signals as specified.
2579 */
2580
2581static void stli_mkasysigs(asysigs_t *sp, int dtr, int rts)
2582{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 memset(sp, 0, sizeof(asysigs_t));
2584 if (dtr >= 0) {
2585 sp->signal |= SG_DTR;
2586 sp->sigvalue |= ((dtr > 0) ? SG_DTR : 0);
2587 }
2588 if (rts >= 0) {
2589 sp->signal |= SG_RTS;
2590 sp->sigvalue |= ((rts > 0) ? SG_RTS : 0);
2591 }
2592}
2593
2594/*****************************************************************************/
2595
2596/*
2597 * Convert the signals returned from the slave into a local TIOCM type
2598 * signals value. We keep them locally in TIOCM format.
2599 */
2600
2601static long stli_mktiocm(unsigned long sigvalue)
2602{
Alan Cox4ac43602006-06-28 04:26:52 -07002603 long tiocm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 tiocm |= ((sigvalue & SG_DCD) ? TIOCM_CD : 0);
2605 tiocm |= ((sigvalue & SG_CTS) ? TIOCM_CTS : 0);
2606 tiocm |= ((sigvalue & SG_RI) ? TIOCM_RI : 0);
2607 tiocm |= ((sigvalue & SG_DSR) ? TIOCM_DSR : 0);
2608 tiocm |= ((sigvalue & SG_DTR) ? TIOCM_DTR : 0);
2609 tiocm |= ((sigvalue & SG_RTS) ? TIOCM_RTS : 0);
2610 return(tiocm);
2611}
2612
2613/*****************************************************************************/
2614
2615/*
2616 * All panels and ports actually attached have been worked out. All
2617 * we need to do here is set up the appropriate per port data structures.
2618 */
2619
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002620static int stli_initports(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002622 struct stliport *portp;
Jiri Slaby1328d732006-12-08 02:39:19 -08002623 unsigned int i, panelnr, panelport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 for (i = 0, panelnr = 0, panelport = 0; (i < brdp->nrports); i++) {
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002626 portp = kzalloc(sizeof(struct stliport), GFP_KERNEL);
Tobias Klauserb0b4ed72006-03-31 02:30:56 -08002627 if (!portp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 printk("STALLION: failed to allocate port structure\n");
2629 continue;
2630 }
Alan Coxd18a7502008-10-13 10:40:07 +01002631 tty_port_init(&portp->port);
Alan Cox31f35932009-01-02 13:45:05 +00002632 portp->port.ops = &stli_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 portp->magic = STLI_PORTMAGIC;
2634 portp->portnr = i;
2635 portp->brdnr = brdp->brdnr;
2636 portp->panelnr = panelnr;
2637 portp->baud_base = STL_BAUDBASE;
2638 portp->close_delay = STL_CLOSEDELAY;
2639 portp->closing_wait = 30 * HZ;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002640 init_waitqueue_head(&portp->port.open_wait);
2641 init_waitqueue_head(&portp->port.close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 init_waitqueue_head(&portp->raw_wait);
2643 panelport++;
2644 if (panelport >= brdp->panels[panelnr]) {
2645 panelport = 0;
2646 panelnr++;
2647 }
2648 brdp->ports[i] = portp;
2649 }
2650
Alan Cox4ac43602006-06-28 04:26:52 -07002651 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652}
2653
2654/*****************************************************************************/
2655
2656/*
2657 * All the following routines are board specific hardware operations.
2658 */
2659
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002660static void stli_ecpinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661{
2662 unsigned long memconf;
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 outb(ECP_ATSTOP, (brdp->iobase + ECP_ATCONFR));
2665 udelay(10);
2666 outb(ECP_ATDISABLE, (brdp->iobase + ECP_ATCONFR));
2667 udelay(100);
2668
2669 memconf = (brdp->memaddr & ECP_ATADDRMASK) >> ECP_ATADDRSHFT;
2670 outb(memconf, (brdp->iobase + ECP_ATMEMAR));
2671}
2672
2673/*****************************************************************************/
2674
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002675static void stli_ecpenable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 outb(ECP_ATENABLE, (brdp->iobase + ECP_ATCONFR));
2678}
2679
2680/*****************************************************************************/
2681
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002682static void stli_ecpdisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 outb(ECP_ATDISABLE, (brdp->iobase + ECP_ATCONFR));
2685}
2686
2687/*****************************************************************************/
2688
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002689static void __iomem *stli_ecpgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
Al Viro29756fa2006-10-10 22:47:27 +01002691 void __iomem *ptr;
Alan Cox4ac43602006-06-28 04:26:52 -07002692 unsigned char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
2694 if (offset > brdp->memsize) {
2695 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2696 "range at line=%d(%d), brd=%d\n",
2697 (int) offset, line, __LINE__, brdp->brdnr);
2698 ptr = NULL;
2699 val = 0;
2700 } else {
2701 ptr = brdp->membase + (offset % ECP_ATPAGESIZE);
2702 val = (unsigned char) (offset / ECP_ATPAGESIZE);
2703 }
2704 outb(val, (brdp->iobase + ECP_ATMEMPR));
2705 return(ptr);
2706}
2707
2708/*****************************************************************************/
2709
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002710static void stli_ecpreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 outb(ECP_ATSTOP, (brdp->iobase + ECP_ATCONFR));
2713 udelay(10);
2714 outb(ECP_ATDISABLE, (brdp->iobase + ECP_ATCONFR));
2715 udelay(500);
2716}
2717
2718/*****************************************************************************/
2719
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002720static void stli_ecpintr(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 outb(0x1, brdp->iobase);
2723}
2724
2725/*****************************************************************************/
2726
2727/*
2728 * The following set of functions act on ECP EISA boards.
2729 */
2730
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002731static void stli_ecpeiinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
2733 unsigned long memconf;
2734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 outb(0x1, (brdp->iobase + ECP_EIBRDENAB));
2736 outb(ECP_EISTOP, (brdp->iobase + ECP_EICONFR));
2737 udelay(10);
2738 outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
2739 udelay(500);
2740
2741 memconf = (brdp->memaddr & ECP_EIADDRMASKL) >> ECP_EIADDRSHFTL;
2742 outb(memconf, (brdp->iobase + ECP_EIMEMARL));
2743 memconf = (brdp->memaddr & ECP_EIADDRMASKH) >> ECP_EIADDRSHFTH;
2744 outb(memconf, (brdp->iobase + ECP_EIMEMARH));
2745}
2746
2747/*****************************************************************************/
2748
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002749static void stli_ecpeienable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
2751 outb(ECP_EIENABLE, (brdp->iobase + ECP_EICONFR));
2752}
2753
2754/*****************************************************************************/
2755
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002756static void stli_ecpeidisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
2758 outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
2759}
2760
2761/*****************************************************************************/
2762
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002763static void __iomem *stli_ecpeigetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764{
Al Viro29756fa2006-10-10 22:47:27 +01002765 void __iomem *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 unsigned char val;
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (offset > brdp->memsize) {
2769 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2770 "range at line=%d(%d), brd=%d\n",
2771 (int) offset, line, __LINE__, brdp->brdnr);
2772 ptr = NULL;
2773 val = 0;
2774 } else {
2775 ptr = brdp->membase + (offset % ECP_EIPAGESIZE);
2776 if (offset < ECP_EIPAGESIZE)
2777 val = ECP_EIENABLE;
2778 else
2779 val = ECP_EIENABLE | 0x40;
2780 }
2781 outb(val, (brdp->iobase + ECP_EICONFR));
2782 return(ptr);
2783}
2784
2785/*****************************************************************************/
2786
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002787static void stli_ecpeireset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788{
2789 outb(ECP_EISTOP, (brdp->iobase + ECP_EICONFR));
2790 udelay(10);
2791 outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
2792 udelay(500);
2793}
2794
2795/*****************************************************************************/
2796
2797/*
2798 * The following set of functions act on ECP MCA boards.
2799 */
2800
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002801static void stli_ecpmcenable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802{
2803 outb(ECP_MCENABLE, (brdp->iobase + ECP_MCCONFR));
2804}
2805
2806/*****************************************************************************/
2807
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002808static void stli_ecpmcdisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809{
2810 outb(ECP_MCDISABLE, (brdp->iobase + ECP_MCCONFR));
2811}
2812
2813/*****************************************************************************/
2814
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002815static void __iomem *stli_ecpmcgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816{
Al Viro29756fa2006-10-10 22:47:27 +01002817 void __iomem *ptr;
Alan Cox4ac43602006-06-28 04:26:52 -07002818 unsigned char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
2820 if (offset > brdp->memsize) {
2821 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2822 "range at line=%d(%d), brd=%d\n",
2823 (int) offset, line, __LINE__, brdp->brdnr);
2824 ptr = NULL;
2825 val = 0;
2826 } else {
2827 ptr = brdp->membase + (offset % ECP_MCPAGESIZE);
2828 val = ((unsigned char) (offset / ECP_MCPAGESIZE)) | ECP_MCENABLE;
2829 }
2830 outb(val, (brdp->iobase + ECP_MCCONFR));
2831 return(ptr);
2832}
2833
2834/*****************************************************************************/
2835
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002836static void stli_ecpmcreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837{
2838 outb(ECP_MCSTOP, (brdp->iobase + ECP_MCCONFR));
2839 udelay(10);
2840 outb(ECP_MCDISABLE, (brdp->iobase + ECP_MCCONFR));
2841 udelay(500);
2842}
2843
2844/*****************************************************************************/
2845
2846/*
2847 * The following set of functions act on ECP PCI boards.
2848 */
2849
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002850static void stli_ecppciinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 outb(ECP_PCISTOP, (brdp->iobase + ECP_PCICONFR));
2853 udelay(10);
2854 outb(0, (brdp->iobase + ECP_PCICONFR));
2855 udelay(500);
2856}
2857
2858/*****************************************************************************/
2859
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002860static void __iomem *stli_ecppcigetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861{
Al Viro29756fa2006-10-10 22:47:27 +01002862 void __iomem *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 unsigned char val;
2864
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 if (offset > brdp->memsize) {
2866 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2867 "range at line=%d(%d), board=%d\n",
2868 (int) offset, line, __LINE__, brdp->brdnr);
2869 ptr = NULL;
2870 val = 0;
2871 } else {
2872 ptr = brdp->membase + (offset % ECP_PCIPAGESIZE);
2873 val = (offset / ECP_PCIPAGESIZE) << 1;
2874 }
2875 outb(val, (brdp->iobase + ECP_PCICONFR));
2876 return(ptr);
2877}
2878
2879/*****************************************************************************/
2880
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002881static void stli_ecppcireset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
2883 outb(ECP_PCISTOP, (brdp->iobase + ECP_PCICONFR));
2884 udelay(10);
2885 outb(0, (brdp->iobase + ECP_PCICONFR));
2886 udelay(500);
2887}
2888
2889/*****************************************************************************/
2890
2891/*
2892 * The following routines act on ONboards.
2893 */
2894
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002895static void stli_onbinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896{
2897 unsigned long memconf;
2898
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 outb(ONB_ATSTOP, (brdp->iobase + ONB_ATCONFR));
2900 udelay(10);
2901 outb(ONB_ATDISABLE, (brdp->iobase + ONB_ATCONFR));
2902 mdelay(1000);
2903
2904 memconf = (brdp->memaddr & ONB_ATADDRMASK) >> ONB_ATADDRSHFT;
2905 outb(memconf, (brdp->iobase + ONB_ATMEMAR));
2906 outb(0x1, brdp->iobase);
2907 mdelay(1);
2908}
2909
2910/*****************************************************************************/
2911
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002912static void stli_onbenable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 outb((brdp->enabval | ONB_ATENABLE), (brdp->iobase + ONB_ATCONFR));
2915}
2916
2917/*****************************************************************************/
2918
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002919static void stli_onbdisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 outb((brdp->enabval | ONB_ATDISABLE), (brdp->iobase + ONB_ATCONFR));
2922}
2923
2924/*****************************************************************************/
2925
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002926static void __iomem *stli_onbgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
Al Viro29756fa2006-10-10 22:47:27 +01002928 void __iomem *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 if (offset > brdp->memsize) {
2931 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2932 "range at line=%d(%d), brd=%d\n",
2933 (int) offset, line, __LINE__, brdp->brdnr);
2934 ptr = NULL;
2935 } else {
2936 ptr = brdp->membase + (offset % ONB_ATPAGESIZE);
2937 }
2938 return(ptr);
2939}
2940
2941/*****************************************************************************/
2942
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002943static void stli_onbreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 outb(ONB_ATSTOP, (brdp->iobase + ONB_ATCONFR));
2946 udelay(10);
2947 outb(ONB_ATDISABLE, (brdp->iobase + ONB_ATCONFR));
2948 mdelay(1000);
2949}
2950
2951/*****************************************************************************/
2952
2953/*
2954 * The following routines act on ONboard EISA.
2955 */
2956
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002957static void stli_onbeinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958{
2959 unsigned long memconf;
2960
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 outb(0x1, (brdp->iobase + ONB_EIBRDENAB));
2962 outb(ONB_EISTOP, (brdp->iobase + ONB_EICONFR));
2963 udelay(10);
2964 outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
2965 mdelay(1000);
2966
2967 memconf = (brdp->memaddr & ONB_EIADDRMASKL) >> ONB_EIADDRSHFTL;
2968 outb(memconf, (brdp->iobase + ONB_EIMEMARL));
2969 memconf = (brdp->memaddr & ONB_EIADDRMASKH) >> ONB_EIADDRSHFTH;
2970 outb(memconf, (brdp->iobase + ONB_EIMEMARH));
2971 outb(0x1, brdp->iobase);
2972 mdelay(1);
2973}
2974
2975/*****************************************************************************/
2976
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002977static void stli_onbeenable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 outb(ONB_EIENABLE, (brdp->iobase + ONB_EICONFR));
2980}
2981
2982/*****************************************************************************/
2983
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002984static void stli_onbedisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
2987}
2988
2989/*****************************************************************************/
2990
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002991static void __iomem *stli_onbegetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
Al Viro29756fa2006-10-10 22:47:27 +01002993 void __iomem *ptr;
Alan Cox4ac43602006-06-28 04:26:52 -07002994 unsigned char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 if (offset > brdp->memsize) {
2997 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2998 "range at line=%d(%d), brd=%d\n",
2999 (int) offset, line, __LINE__, brdp->brdnr);
3000 ptr = NULL;
3001 val = 0;
3002 } else {
3003 ptr = brdp->membase + (offset % ONB_EIPAGESIZE);
3004 if (offset < ONB_EIPAGESIZE)
3005 val = ONB_EIENABLE;
3006 else
3007 val = ONB_EIENABLE | 0x40;
3008 }
3009 outb(val, (brdp->iobase + ONB_EICONFR));
3010 return(ptr);
3011}
3012
3013/*****************************************************************************/
3014
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003015static void stli_onbereset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 outb(ONB_EISTOP, (brdp->iobase + ONB_EICONFR));
3018 udelay(10);
3019 outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
3020 mdelay(1000);
3021}
3022
3023/*****************************************************************************/
3024
3025/*
3026 * The following routines act on Brumby boards.
3027 */
3028
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003029static void stli_bbyinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 outb(BBY_ATSTOP, (brdp->iobase + BBY_ATCONFR));
3032 udelay(10);
3033 outb(0, (brdp->iobase + BBY_ATCONFR));
3034 mdelay(1000);
3035 outb(0x1, brdp->iobase);
3036 mdelay(1);
3037}
3038
3039/*****************************************************************************/
3040
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003041static void __iomem *stli_bbygetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042{
Al Viro29756fa2006-10-10 22:47:27 +01003043 void __iomem *ptr;
Alan Cox4ac43602006-06-28 04:26:52 -07003044 unsigned char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
Alan Cox4ac43602006-06-28 04:26:52 -07003046 BUG_ON(offset > brdp->memsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Alan Cox4ac43602006-06-28 04:26:52 -07003048 ptr = brdp->membase + (offset % BBY_PAGESIZE);
3049 val = (unsigned char) (offset / BBY_PAGESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 outb(val, (brdp->iobase + BBY_ATCONFR));
3051 return(ptr);
3052}
3053
3054/*****************************************************************************/
3055
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003056static void stli_bbyreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 outb(BBY_ATSTOP, (brdp->iobase + BBY_ATCONFR));
3059 udelay(10);
3060 outb(0, (brdp->iobase + BBY_ATCONFR));
3061 mdelay(1000);
3062}
3063
3064/*****************************************************************************/
3065
3066/*
3067 * The following routines act on original old Stallion boards.
3068 */
3069
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003070static void stli_stalinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 outb(0x1, brdp->iobase);
3073 mdelay(1000);
3074}
3075
3076/*****************************************************************************/
3077
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003078static void __iomem *stli_stalgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079{
Alan Cox4ac43602006-06-28 04:26:52 -07003080 BUG_ON(offset > brdp->memsize);
3081 return brdp->membase + (offset % STAL_PAGESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082}
3083
3084/*****************************************************************************/
3085
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003086static void stli_stalreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087{
Alan Cox4ac43602006-06-28 04:26:52 -07003088 u32 __iomem *vecp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Alan Cox4ac43602006-06-28 04:26:52 -07003090 vecp = (u32 __iomem *) (brdp->membase + 0x30);
3091 writel(0xffff0000, vecp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 outb(0, brdp->iobase);
3093 mdelay(1000);
3094}
3095
3096/*****************************************************************************/
3097
3098/*
3099 * Try to find an ECP board and initialize it. This handles only ECP
3100 * board types.
3101 */
3102
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003103static int stli_initecp(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104{
Alan Cox4ac43602006-06-28 04:26:52 -07003105 cdkecpsig_t sig;
3106 cdkecpsig_t __iomem *sigsp;
3107 unsigned int status, nxtid;
3108 char *name;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003109 int retval, panelnr, nrports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003111 if ((brdp->iobase == 0) || (brdp->memaddr == 0)) {
3112 retval = -ENODEV;
3113 goto err;
3114 }
3115
Ingo Korbb3061222007-07-17 04:05:23 -07003116 brdp->iosize = ECP_IOSIZE;
3117
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003118 if (!request_region(brdp->iobase, brdp->iosize, "istallion")) {
3119 retval = -EIO;
3120 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 }
3122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123/*
3124 * Based on the specific board type setup the common vars to access
3125 * and enable shared memory. Set all board specific information now
3126 * as well.
3127 */
3128 switch (brdp->brdtype) {
3129 case BRD_ECP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 brdp->memsize = ECP_MEMSIZE;
3131 brdp->pagesize = ECP_ATPAGESIZE;
3132 brdp->init = stli_ecpinit;
3133 brdp->enable = stli_ecpenable;
3134 brdp->reenable = stli_ecpenable;
3135 brdp->disable = stli_ecpdisable;
3136 brdp->getmemptr = stli_ecpgetmemptr;
3137 brdp->intr = stli_ecpintr;
3138 brdp->reset = stli_ecpreset;
3139 name = "serial(EC8/64)";
3140 break;
3141
3142 case BRD_ECPE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 brdp->memsize = ECP_MEMSIZE;
3144 brdp->pagesize = ECP_EIPAGESIZE;
3145 brdp->init = stli_ecpeiinit;
3146 brdp->enable = stli_ecpeienable;
3147 brdp->reenable = stli_ecpeienable;
3148 brdp->disable = stli_ecpeidisable;
3149 brdp->getmemptr = stli_ecpeigetmemptr;
3150 brdp->intr = stli_ecpintr;
3151 brdp->reset = stli_ecpeireset;
3152 name = "serial(EC8/64-EI)";
3153 break;
3154
3155 case BRD_ECPMC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 brdp->memsize = ECP_MEMSIZE;
3157 brdp->pagesize = ECP_MCPAGESIZE;
3158 brdp->init = NULL;
3159 brdp->enable = stli_ecpmcenable;
3160 brdp->reenable = stli_ecpmcenable;
3161 brdp->disable = stli_ecpmcdisable;
3162 brdp->getmemptr = stli_ecpmcgetmemptr;
3163 brdp->intr = stli_ecpintr;
3164 brdp->reset = stli_ecpmcreset;
3165 name = "serial(EC8/64-MCA)";
3166 break;
3167
3168 case BRD_ECPPCI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 brdp->memsize = ECP_PCIMEMSIZE;
3170 brdp->pagesize = ECP_PCIPAGESIZE;
3171 brdp->init = stli_ecppciinit;
3172 brdp->enable = NULL;
3173 brdp->reenable = NULL;
3174 brdp->disable = NULL;
3175 brdp->getmemptr = stli_ecppcigetmemptr;
3176 brdp->intr = stli_ecpintr;
3177 brdp->reset = stli_ecppcireset;
3178 name = "serial(EC/RA-PCI)";
3179 break;
3180
3181 default:
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003182 retval = -EINVAL;
3183 goto err_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
3185
3186/*
3187 * The per-board operations structure is all set up, so now let's go
3188 * and get the board operational. Firstly initialize board configuration
3189 * registers. Set the memory mapping info so we can get at the boards
3190 * shared memory.
3191 */
3192 EBRDINIT(brdp);
3193
Alan Cox24cb2332008-04-30 00:54:19 -07003194 brdp->membase = ioremap_nocache(brdp->memaddr, brdp->memsize);
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003195 if (brdp->membase == NULL) {
3196 retval = -ENOMEM;
3197 goto err_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 }
3199
3200/*
3201 * Now that all specific code is set up, enable the shared memory and
3202 * look for the a signature area that will tell us exactly what board
3203 * this is, and what it is connected to it.
3204 */
3205 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07003206 sigsp = (cdkecpsig_t __iomem *) EBRDGETMEMPTR(brdp, CDK_SIGADDR);
Al Viro634965f2006-09-23 01:20:31 +01003207 memcpy_fromio(&sig, sigsp, sizeof(cdkecpsig_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 EBRDDISABLE(brdp);
3209
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003210 if (sig.magic != cpu_to_le32(ECP_MAGIC)) {
3211 retval = -ENODEV;
3212 goto err_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 }
3214
3215/*
3216 * Scan through the signature looking at the panels connected to the
3217 * board. Calculate the total number of ports as we go.
3218 */
3219 for (panelnr = 0, nxtid = 0; (panelnr < STL_MAXPANELS); panelnr++) {
3220 status = sig.panelid[nxtid];
3221 if ((status & ECH_PNLIDMASK) != nxtid)
3222 break;
3223
3224 brdp->panelids[panelnr] = status;
3225 nrports = (status & ECH_PNL16PORT) ? 16 : 8;
3226 if ((nrports == 16) && ((status & ECH_PNLXPID) == 0))
3227 nxtid++;
3228 brdp->panels[panelnr] = nrports;
3229 brdp->nrports += nrports;
3230 nxtid++;
3231 brdp->nrpanels++;
3232 }
3233
3234
3235 brdp->state |= BST_FOUND;
Alan Cox4ac43602006-06-28 04:26:52 -07003236 return 0;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003237err_unmap:
3238 iounmap(brdp->membase);
3239 brdp->membase = NULL;
3240err_reg:
3241 release_region(brdp->iobase, brdp->iosize);
3242err:
3243 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244}
3245
3246/*****************************************************************************/
3247
3248/*
3249 * Try to find an ONboard, Brumby or Stallion board and initialize it.
3250 * This handles only these board types.
3251 */
3252
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003253static int stli_initonb(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254{
Alan Cox4ac43602006-06-28 04:26:52 -07003255 cdkonbsig_t sig;
3256 cdkonbsig_t __iomem *sigsp;
3257 char *name;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003258 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260/*
3261 * Do a basic sanity check on the IO and memory addresses.
3262 */
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003263 if (brdp->iobase == 0 || brdp->memaddr == 0) {
3264 retval = -ENODEV;
3265 goto err;
3266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 brdp->iosize = ONB_IOSIZE;
3269
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003270 if (!request_region(brdp->iobase, brdp->iosize, "istallion")) {
3271 retval = -EIO;
3272 goto err;
3273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
3275/*
3276 * Based on the specific board type setup the common vars to access
3277 * and enable shared memory. Set all board specific information now
3278 * as well.
3279 */
3280 switch (brdp->brdtype) {
3281 case BRD_ONBOARD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 case BRD_ONBOARD2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 brdp->memsize = ONB_MEMSIZE;
3284 brdp->pagesize = ONB_ATPAGESIZE;
3285 brdp->init = stli_onbinit;
3286 brdp->enable = stli_onbenable;
3287 brdp->reenable = stli_onbenable;
3288 brdp->disable = stli_onbdisable;
3289 brdp->getmemptr = stli_onbgetmemptr;
3290 brdp->intr = stli_ecpintr;
3291 brdp->reset = stli_onbreset;
3292 if (brdp->memaddr > 0x100000)
3293 brdp->enabval = ONB_MEMENABHI;
3294 else
3295 brdp->enabval = ONB_MEMENABLO;
3296 name = "serial(ONBoard)";
3297 break;
3298
3299 case BRD_ONBOARDE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 brdp->memsize = ONB_EIMEMSIZE;
3301 brdp->pagesize = ONB_EIPAGESIZE;
3302 brdp->init = stli_onbeinit;
3303 brdp->enable = stli_onbeenable;
3304 brdp->reenable = stli_onbeenable;
3305 brdp->disable = stli_onbedisable;
3306 brdp->getmemptr = stli_onbegetmemptr;
3307 brdp->intr = stli_ecpintr;
3308 brdp->reset = stli_onbereset;
3309 name = "serial(ONBoard/E)";
3310 break;
3311
3312 case BRD_BRUMBY4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 brdp->memsize = BBY_MEMSIZE;
3314 brdp->pagesize = BBY_PAGESIZE;
3315 brdp->init = stli_bbyinit;
3316 brdp->enable = NULL;
3317 brdp->reenable = NULL;
3318 brdp->disable = NULL;
3319 brdp->getmemptr = stli_bbygetmemptr;
3320 brdp->intr = stli_ecpintr;
3321 brdp->reset = stli_bbyreset;
3322 name = "serial(Brumby)";
3323 break;
3324
3325 case BRD_STALLION:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 brdp->memsize = STAL_MEMSIZE;
3327 brdp->pagesize = STAL_PAGESIZE;
3328 brdp->init = stli_stalinit;
3329 brdp->enable = NULL;
3330 brdp->reenable = NULL;
3331 brdp->disable = NULL;
3332 brdp->getmemptr = stli_stalgetmemptr;
3333 brdp->intr = stli_ecpintr;
3334 brdp->reset = stli_stalreset;
3335 name = "serial(Stallion)";
3336 break;
3337
3338 default:
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003339 retval = -EINVAL;
3340 goto err_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 }
3342
3343/*
3344 * The per-board operations structure is all set up, so now let's go
3345 * and get the board operational. Firstly initialize board configuration
3346 * registers. Set the memory mapping info so we can get at the boards
3347 * shared memory.
3348 */
3349 EBRDINIT(brdp);
3350
Alan Cox24cb2332008-04-30 00:54:19 -07003351 brdp->membase = ioremap_nocache(brdp->memaddr, brdp->memsize);
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003352 if (brdp->membase == NULL) {
3353 retval = -ENOMEM;
3354 goto err_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 }
3356
3357/*
3358 * Now that all specific code is set up, enable the shared memory and
3359 * look for the a signature area that will tell us exactly what board
3360 * this is, and how many ports.
3361 */
3362 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07003363 sigsp = (cdkonbsig_t __iomem *) EBRDGETMEMPTR(brdp, CDK_SIGADDR);
3364 memcpy_fromio(&sig, sigsp, sizeof(cdkonbsig_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 EBRDDISABLE(brdp);
3366
Alan Cox4ac43602006-06-28 04:26:52 -07003367 if (sig.magic0 != cpu_to_le16(ONB_MAGIC0) ||
3368 sig.magic1 != cpu_to_le16(ONB_MAGIC1) ||
3369 sig.magic2 != cpu_to_le16(ONB_MAGIC2) ||
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003370 sig.magic3 != cpu_to_le16(ONB_MAGIC3)) {
3371 retval = -ENODEV;
3372 goto err_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 }
3374
3375/*
3376 * Scan through the signature alive mask and calculate how many ports
3377 * there are on this board.
3378 */
3379 brdp->nrpanels = 1;
3380 if (sig.amask1) {
3381 brdp->nrports = 32;
3382 } else {
3383 for (i = 0; (i < 16); i++) {
3384 if (((sig.amask0 << i) & 0x8000) == 0)
3385 break;
3386 }
3387 brdp->nrports = i;
3388 }
3389 brdp->panels[0] = brdp->nrports;
3390
3391
3392 brdp->state |= BST_FOUND;
Alan Cox4ac43602006-06-28 04:26:52 -07003393 return 0;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003394err_unmap:
3395 iounmap(brdp->membase);
3396 brdp->membase = NULL;
3397err_reg:
3398 release_region(brdp->iobase, brdp->iosize);
3399err:
3400 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401}
3402
3403/*****************************************************************************/
3404
3405/*
3406 * Start up a running board. This routine is only called after the
3407 * code has been down loaded to the board and is operational. It will
3408 * read in the memory map, and get the show on the road...
3409 */
3410
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003411static int stli_startbrd(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412{
Alan Cox4ac43602006-06-28 04:26:52 -07003413 cdkhdr_t __iomem *hdrp;
3414 cdkmem_t __iomem *memp;
3415 cdkasy_t __iomem *ap;
3416 unsigned long flags;
Jiri Slaby1328d732006-12-08 02:39:19 -08003417 unsigned int portnr, nrdevs, i;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003418 struct stliport *portp;
Jiri Slaby1328d732006-12-08 02:39:19 -08003419 int rc = 0;
Alan Cox4ac43602006-06-28 04:26:52 -07003420 u32 memoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Alan Cox4ac43602006-06-28 04:26:52 -07003422 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07003424 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 nrdevs = hdrp->nrdevs;
3426
3427#if 0
3428 printk("%s(%d): CDK version %d.%d.%d --> "
3429 "nrdevs=%d memp=%x hostp=%x slavep=%x\n",
Alan Cox4ac43602006-06-28 04:26:52 -07003430 __FILE__, __LINE__, readb(&hdrp->ver_release), readb(&hdrp->ver_modification),
3431 readb(&hdrp->ver_fix), nrdevs, (int) readl(&hdrp->memp), readl(&hdrp->hostp),
3432 readl(&hdrp->slavep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433#endif
3434
3435 if (nrdevs < (brdp->nrports + 1)) {
3436 printk(KERN_ERR "STALLION: slave failed to allocate memory for "
3437 "all devices, devices=%d\n", nrdevs);
3438 brdp->nrports = nrdevs - 1;
3439 }
3440 brdp->nrdevs = nrdevs;
3441 brdp->hostoffset = hdrp->hostp - CDK_CDKADDR;
3442 brdp->slaveoffset = hdrp->slavep - CDK_CDKADDR;
3443 brdp->bitsize = (nrdevs + 7) / 8;
Alan Cox4ac43602006-06-28 04:26:52 -07003444 memoff = readl(&hdrp->memp);
3445 if (memoff > brdp->memsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 printk(KERN_ERR "STALLION: corrupted shared memory region?\n");
3447 rc = -EIO;
3448 goto stli_donestartup;
3449 }
Alan Cox4ac43602006-06-28 04:26:52 -07003450 memp = (cdkmem_t __iomem *) EBRDGETMEMPTR(brdp, memoff);
3451 if (readw(&memp->dtype) != TYP_ASYNCTRL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 printk(KERN_ERR "STALLION: no slave control device found\n");
3453 goto stli_donestartup;
3454 }
3455 memp++;
3456
3457/*
3458 * Cycle through memory allocation of each port. We are guaranteed to
3459 * have all ports inside the first page of slave window, so no need to
3460 * change pages while reading memory map.
3461 */
3462 for (i = 1, portnr = 0; (i < nrdevs); i++, portnr++, memp++) {
Alan Cox4ac43602006-06-28 04:26:52 -07003463 if (readw(&memp->dtype) != TYP_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 break;
3465 portp = brdp->ports[portnr];
Alan Cox4ac43602006-06-28 04:26:52 -07003466 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 break;
3468 portp->devnr = i;
Alan Cox4ac43602006-06-28 04:26:52 -07003469 portp->addr = readl(&memp->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 portp->reqbit = (unsigned char) (0x1 << (i * 8 / nrdevs));
3471 portp->portidx = (unsigned char) (i / 8);
3472 portp->portbit = (unsigned char) (0x1 << (i % 8));
3473 }
3474
Alan Cox4ac43602006-06-28 04:26:52 -07003475 writeb(0xff, &hdrp->slavereq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
3477/*
3478 * For each port setup a local copy of the RX and TX buffer offsets
3479 * and sizes. We do this separate from the above, because we need to
3480 * move the shared memory page...
3481 */
3482 for (i = 1, portnr = 0; (i < nrdevs); i++, portnr++) {
3483 portp = brdp->ports[portnr];
Alan Cox4ac43602006-06-28 04:26:52 -07003484 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 break;
3486 if (portp->addr == 0)
3487 break;
Alan Cox4ac43602006-06-28 04:26:52 -07003488 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
3489 if (ap != NULL) {
3490 portp->rxsize = readw(&ap->rxq.size);
3491 portp->txsize = readw(&ap->txq.size);
3492 portp->rxoffset = readl(&ap->rxq.offset);
3493 portp->txoffset = readl(&ap->txq.offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 }
3495 }
3496
3497stli_donestartup:
3498 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07003499 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
3501 if (rc == 0)
3502 brdp->state |= BST_STARTED;
3503
3504 if (! stli_timeron) {
3505 stli_timeron++;
Jiri Slabyff8efe92006-12-08 02:39:27 -08003506 mod_timer(&stli_timerlist, STLI_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 }
3508
Alan Cox4ac43602006-06-28 04:26:52 -07003509 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510}
3511
3512/*****************************************************************************/
3513
3514/*
3515 * Probe and initialize the specified board.
3516 */
3517
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003518static int __devinit stli_brdinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519{
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003520 int retval;
3521
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 switch (brdp->brdtype) {
3523 case BRD_ECP:
3524 case BRD_ECPE:
3525 case BRD_ECPMC:
3526 case BRD_ECPPCI:
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003527 retval = stli_initecp(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 break;
3529 case BRD_ONBOARD:
3530 case BRD_ONBOARDE:
3531 case BRD_ONBOARD2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 case BRD_BRUMBY4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 case BRD_STALLION:
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003534 retval = stli_initonb(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 default:
3537 printk(KERN_ERR "STALLION: board=%d is unknown board "
3538 "type=%d\n", brdp->brdnr, brdp->brdtype);
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003539 retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 }
3541
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003542 if (retval)
3543 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
3545 stli_initports(brdp);
3546 printk(KERN_INFO "STALLION: %s found, board=%d io=%x mem=%x "
3547 "nrpanels=%d nrports=%d\n", stli_brdnames[brdp->brdtype],
3548 brdp->brdnr, brdp->iobase, (int) brdp->memaddr,
3549 brdp->nrpanels, brdp->nrports);
Alan Cox4ac43602006-06-28 04:26:52 -07003550 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551}
3552
Jiri Slabya00f33f2006-12-08 02:39:20 -08003553#if STLI_EISAPROBE != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554/*****************************************************************************/
3555
3556/*
3557 * Probe around trying to find where the EISA boards shared memory
3558 * might be. This is a bit if hack, but it is the best we can do.
3559 */
3560
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003561static int stli_eisamemprobe(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562{
Alan Cox4ac43602006-06-28 04:26:52 -07003563 cdkecpsig_t ecpsig, __iomem *ecpsigp;
3564 cdkonbsig_t onbsig, __iomem *onbsigp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 int i, foundit;
3566
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567/*
3568 * First up we reset the board, to get it into a known state. There
3569 * is only 2 board types here we need to worry about. Don;t use the
3570 * standard board init routine here, it programs up the shared
3571 * memory address, and we don't know it yet...
3572 */
3573 if (brdp->brdtype == BRD_ECPE) {
3574 outb(0x1, (brdp->iobase + ECP_EIBRDENAB));
3575 outb(ECP_EISTOP, (brdp->iobase + ECP_EICONFR));
3576 udelay(10);
3577 outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
3578 udelay(500);
3579 stli_ecpeienable(brdp);
3580 } else if (brdp->brdtype == BRD_ONBOARDE) {
3581 outb(0x1, (brdp->iobase + ONB_EIBRDENAB));
3582 outb(ONB_EISTOP, (brdp->iobase + ONB_EICONFR));
3583 udelay(10);
3584 outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
3585 mdelay(100);
3586 outb(0x1, brdp->iobase);
3587 mdelay(1);
3588 stli_onbeenable(brdp);
3589 } else {
Alan Cox4ac43602006-06-28 04:26:52 -07003590 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 }
3592
3593 foundit = 0;
3594 brdp->memsize = ECP_MEMSIZE;
3595
3596/*
3597 * Board shared memory is enabled, so now we have a poke around and
3598 * see if we can find it.
3599 */
3600 for (i = 0; (i < stli_eisamempsize); i++) {
3601 brdp->memaddr = stli_eisamemprobeaddrs[i];
Alan Cox24cb2332008-04-30 00:54:19 -07003602 brdp->membase = ioremap_nocache(brdp->memaddr, brdp->memsize);
Alan Cox4ac43602006-06-28 04:26:52 -07003603 if (brdp->membase == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 continue;
3605
3606 if (brdp->brdtype == BRD_ECPE) {
Al Viro29756fa2006-10-10 22:47:27 +01003607 ecpsigp = stli_ecpeigetmemptr(brdp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 CDK_SIGADDR, __LINE__);
Alan Cox4ac43602006-06-28 04:26:52 -07003609 memcpy_fromio(&ecpsig, ecpsigp, sizeof(cdkecpsig_t));
3610 if (ecpsig.magic == cpu_to_le32(ECP_MAGIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 foundit = 1;
3612 } else {
Alan Cox4ac43602006-06-28 04:26:52 -07003613 onbsigp = (cdkonbsig_t __iomem *) stli_onbegetmemptr(brdp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 CDK_SIGADDR, __LINE__);
Alan Cox4ac43602006-06-28 04:26:52 -07003615 memcpy_fromio(&onbsig, onbsigp, sizeof(cdkonbsig_t));
3616 if ((onbsig.magic0 == cpu_to_le16(ONB_MAGIC0)) &&
3617 (onbsig.magic1 == cpu_to_le16(ONB_MAGIC1)) &&
3618 (onbsig.magic2 == cpu_to_le16(ONB_MAGIC2)) &&
3619 (onbsig.magic3 == cpu_to_le16(ONB_MAGIC3)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 foundit = 1;
3621 }
3622
3623 iounmap(brdp->membase);
3624 if (foundit)
3625 break;
3626 }
3627
3628/*
3629 * Regardless of whether we found the shared memory or not we must
3630 * disable the region. After that return success or failure.
3631 */
3632 if (brdp->brdtype == BRD_ECPE)
3633 stli_ecpeidisable(brdp);
3634 else
3635 stli_onbedisable(brdp);
3636
3637 if (! foundit) {
3638 brdp->memaddr = 0;
3639 brdp->membase = NULL;
3640 printk(KERN_ERR "STALLION: failed to probe shared memory "
3641 "region for %s in EISA slot=%d\n",
3642 stli_brdnames[brdp->brdtype], (brdp->iobase >> 12));
Alan Cox4ac43602006-06-28 04:26:52 -07003643 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 }
Alan Cox4ac43602006-06-28 04:26:52 -07003645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646}
Jiri Slabya00f33f2006-12-08 02:39:20 -08003647#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648
3649static int stli_getbrdnr(void)
3650{
Jiri Slaby1328d732006-12-08 02:39:19 -08003651 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
3653 for (i = 0; i < STL_MAXBRDS; i++) {
3654 if (!stli_brds[i]) {
3655 if (i >= stli_nrbrds)
3656 stli_nrbrds = i + 1;
3657 return i;
3658 }
3659 }
3660 return -1;
3661}
3662
Jiri Slabya00f33f2006-12-08 02:39:20 -08003663#if STLI_EISAPROBE != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664/*****************************************************************************/
3665
3666/*
3667 * Probe around and try to find any EISA boards in system. The biggest
3668 * problem here is finding out what memory address is associated with
3669 * an EISA board after it is found. The registers of the ECPE and
3670 * ONboardE are not readable - so we can't read them from there. We
3671 * don't have access to the EISA CMOS (or EISA BIOS) so we don't
3672 * actually have any way to find out the real value. The best we can
3673 * do is go probing around in the usual places hoping we can find it.
3674 */
3675
Al Viro6005e3e2008-11-22 17:34:14 +00003676static int __init stli_findeisabrds(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003678 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08003679 unsigned int iobase, eid, i;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003680 int brdnr, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
3682/*
Alan Cox4ac43602006-06-28 04:26:52 -07003683 * Firstly check if this is an EISA system. If this is not an EISA system then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 * don't bother going any further!
3685 */
Alan Cox4ac43602006-06-28 04:26:52 -07003686 if (EISA_bus)
3687 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
3689/*
3690 * Looks like an EISA system, so go searching for EISA boards.
3691 */
3692 for (iobase = 0x1000; (iobase <= 0xc000); iobase += 0x1000) {
3693 outb(0xff, (iobase + 0xc80));
3694 eid = inb(iobase + 0xc80);
3695 eid |= inb(iobase + 0xc81) << 8;
3696 if (eid != STL_EISAID)
3697 continue;
3698
3699/*
3700 * We have found a board. Need to check if this board was
3701 * statically configured already (just in case!).
3702 */
3703 for (i = 0; (i < STL_MAXBRDS); i++) {
3704 brdp = stli_brds[i];
Alan Cox4ac43602006-06-28 04:26:52 -07003705 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 continue;
3707 if (brdp->iobase == iobase)
3708 break;
3709 }
3710 if (i < STL_MAXBRDS)
3711 continue;
3712
3713/*
3714 * We have found a Stallion board and it is not configured already.
3715 * Allocate a board structure and initialize it.
3716 */
Alan Cox4ac43602006-06-28 04:26:52 -07003717 if ((brdp = stli_allocbrd()) == NULL)
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003718 return found ? : -ENOMEM;
Jiri Slaby1328d732006-12-08 02:39:19 -08003719 brdnr = stli_getbrdnr();
3720 if (brdnr < 0)
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003721 return found ? : -ENOMEM;
Jiri Slaby1328d732006-12-08 02:39:19 -08003722 brdp->brdnr = (unsigned int)brdnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 eid = inb(iobase + 0xc82);
3724 if (eid == ECP_EISAID)
3725 brdp->brdtype = BRD_ECPE;
3726 else if (eid == ONB_EISAID)
3727 brdp->brdtype = BRD_ONBOARDE;
3728 else
3729 brdp->brdtype = BRD_UNKNOWN;
3730 brdp->iobase = iobase;
3731 outb(0x1, (iobase + 0xc84));
3732 if (stli_eisamemprobe(brdp))
3733 outb(0, (iobase + 0xc84));
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003734 if (stli_brdinit(brdp) < 0) {
3735 kfree(brdp);
3736 continue;
3737 }
3738
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003739 stli_brds[brdp->brdnr] = brdp;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003740 found++;
Jiri Slabyec3dde52006-12-08 02:39:26 -08003741
3742 for (i = 0; i < brdp->nrports; i++)
3743 tty_register_device(stli_serial,
3744 brdp->brdnr * STL_MAXPORTS + i, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 }
3746
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003747 return found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748}
Jiri Slabya00f33f2006-12-08 02:39:20 -08003749#else
3750static inline int stli_findeisabrds(void) { return 0; }
3751#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
3753/*****************************************************************************/
3754
3755/*
3756 * Find the next available board number that is free.
3757 */
3758
3759/*****************************************************************************/
3760
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761/*
3762 * We have a Stallion board. Allocate a board structure and
3763 * initialize it. Read its IO and MEMORY resources from PCI
3764 * configuration space.
3765 */
3766
Jiri Slaby845bead2006-12-08 02:39:17 -08003767static int __devinit stli_pciprobe(struct pci_dev *pdev,
3768 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003770 struct stlibrd *brdp;
Jiri Slabyec3dde52006-12-08 02:39:26 -08003771 unsigned int i;
Jiri Slaby1328d732006-12-08 02:39:19 -08003772 int brdnr, retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Jiri Slaby845bead2006-12-08 02:39:17 -08003774 retval = pci_enable_device(pdev);
3775 if (retval)
3776 goto err;
3777 brdp = stli_allocbrd();
3778 if (brdp == NULL) {
3779 retval = -ENOMEM;
3780 goto err;
3781 }
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003782 mutex_lock(&stli_brdslock);
Jiri Slaby1328d732006-12-08 02:39:19 -08003783 brdnr = stli_getbrdnr();
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003784 if (brdnr < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 printk(KERN_INFO "STALLION: too many boards found, "
3786 "maximum supported %d\n", STL_MAXBRDS);
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003787 mutex_unlock(&stli_brdslock);
Jiri Slaby845bead2006-12-08 02:39:17 -08003788 retval = -EIO;
3789 goto err_fr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 }
Jiri Slaby1328d732006-12-08 02:39:19 -08003791 brdp->brdnr = (unsigned int)brdnr;
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003792 stli_brds[brdp->brdnr] = brdp;
3793 mutex_unlock(&stli_brdslock);
Jiri Slaby845bead2006-12-08 02:39:17 -08003794 brdp->brdtype = BRD_ECPPCI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795/*
3796 * We have all resources from the board, so lets setup the actual
3797 * board structure now.
3798 */
Jiri Slaby845bead2006-12-08 02:39:17 -08003799 brdp->iobase = pci_resource_start(pdev, 3);
3800 brdp->memaddr = pci_resource_start(pdev, 2);
3801 retval = stli_brdinit(brdp);
3802 if (retval)
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003803 goto err_null;
Jiri Slaby845bead2006-12-08 02:39:17 -08003804
Jiri Slaby39014172006-12-08 02:39:22 -08003805 brdp->state |= BST_PROBED;
Jiri Slaby845bead2006-12-08 02:39:17 -08003806 pci_set_drvdata(pdev, brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
Jiri Slaby140e92a2006-12-08 02:39:24 -08003808 EBRDENABLE(brdp);
3809 brdp->enable = NULL;
3810 brdp->disable = NULL;
3811
Jiri Slabyec3dde52006-12-08 02:39:26 -08003812 for (i = 0; i < brdp->nrports; i++)
3813 tty_register_device(stli_serial, brdp->brdnr * STL_MAXPORTS + i,
3814 &pdev->dev);
3815
Alan Cox4ac43602006-06-28 04:26:52 -07003816 return 0;
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003817err_null:
3818 stli_brds[brdp->brdnr] = NULL;
Jiri Slaby845bead2006-12-08 02:39:17 -08003819err_fr:
3820 kfree(brdp);
3821err:
3822 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823}
3824
Jiri Slaby845bead2006-12-08 02:39:17 -08003825static void stli_pciremove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003827 struct stlibrd *brdp = pci_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
Jiri Slaby845bead2006-12-08 02:39:17 -08003829 stli_cleanup_ports(brdp);
3830
3831 iounmap(brdp->membase);
3832 if (brdp->iosize > 0)
3833 release_region(brdp->iobase, brdp->iosize);
3834
3835 stli_brds[brdp->brdnr] = NULL;
3836 kfree(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837}
3838
Jiri Slaby845bead2006-12-08 02:39:17 -08003839static struct pci_driver stli_pcidriver = {
3840 .name = "istallion",
3841 .id_table = istallion_pci_tbl,
3842 .probe = stli_pciprobe,
3843 .remove = __devexit_p(stli_pciremove)
3844};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845/*****************************************************************************/
3846
3847/*
3848 * Allocate a new board structure. Fill out the basic info in it.
3849 */
3850
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003851static struct stlibrd *stli_allocbrd(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003853 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003855 brdp = kzalloc(sizeof(struct stlibrd), GFP_KERNEL);
Tobias Klauserb0b4ed72006-03-31 02:30:56 -08003856 if (!brdp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 printk(KERN_ERR "STALLION: failed to allocate memory "
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003858 "(size=%Zd)\n", sizeof(struct stlibrd));
Tobias Klauserb0b4ed72006-03-31 02:30:56 -08003859 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 brdp->magic = STLI_BOARDMAGIC;
Alan Cox4ac43602006-06-28 04:26:52 -07003862 return brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863}
3864
3865/*****************************************************************************/
3866
3867/*
3868 * Scan through all the boards in the configuration and see what we
3869 * can find.
3870 */
3871
Al Viro6005e3e2008-11-22 17:34:14 +00003872static int __init stli_initbrds(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003874 struct stlibrd *brdp, *nxtbrdp;
3875 struct stlconf conf;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003876 unsigned int i, j, found = 0;
Jiri Slaby1328d732006-12-08 02:39:19 -08003877 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08003879 for (stli_nrbrds = 0; stli_nrbrds < ARRAY_SIZE(stli_brdsp);
3880 stli_nrbrds++) {
3881 memset(&conf, 0, sizeof(conf));
3882 if (stli_parsebrd(&conf, stli_brdsp[stli_nrbrds]) == 0)
3883 continue;
Alan Cox4ac43602006-06-28 04:26:52 -07003884 if ((brdp = stli_allocbrd()) == NULL)
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08003885 continue;
3886 brdp->brdnr = stli_nrbrds;
3887 brdp->brdtype = conf.brdtype;
3888 brdp->iobase = conf.ioaddr1;
3889 brdp->memaddr = conf.memaddr;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003890 if (stli_brdinit(brdp) < 0) {
3891 kfree(brdp);
3892 continue;
3893 }
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003894 stli_brds[brdp->brdnr] = brdp;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003895 found++;
Jiri Slabyec3dde52006-12-08 02:39:26 -08003896
3897 for (i = 0; i < brdp->nrports; i++)
3898 tty_register_device(stli_serial,
3899 brdp->brdnr * STL_MAXPORTS + i, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 }
3901
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003902 retval = stli_findeisabrds();
3903 if (retval > 0)
3904 found += retval;
Jiri Slaby845bead2006-12-08 02:39:17 -08003905
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906/*
3907 * All found boards are initialized. Now for a little optimization, if
3908 * no boards are sharing the "shared memory" regions then we can just
3909 * leave them all enabled. This is in fact the usual case.
3910 */
3911 stli_shared = 0;
3912 if (stli_nrbrds > 1) {
3913 for (i = 0; (i < stli_nrbrds); i++) {
3914 brdp = stli_brds[i];
Alan Cox4ac43602006-06-28 04:26:52 -07003915 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 continue;
3917 for (j = i + 1; (j < stli_nrbrds); j++) {
3918 nxtbrdp = stli_brds[j];
Alan Cox4ac43602006-06-28 04:26:52 -07003919 if (nxtbrdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 continue;
3921 if ((brdp->membase >= nxtbrdp->membase) &&
3922 (brdp->membase <= (nxtbrdp->membase +
3923 nxtbrdp->memsize - 1))) {
3924 stli_shared++;
3925 break;
3926 }
3927 }
3928 }
3929 }
3930
3931 if (stli_shared == 0) {
3932 for (i = 0; (i < stli_nrbrds); i++) {
3933 brdp = stli_brds[i];
Alan Cox4ac43602006-06-28 04:26:52 -07003934 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 continue;
3936 if (brdp->state & BST_FOUND) {
3937 EBRDENABLE(brdp);
3938 brdp->enable = NULL;
3939 brdp->disable = NULL;
3940 }
3941 }
3942 }
3943
Jiri Slaby140e92a2006-12-08 02:39:24 -08003944 retval = pci_register_driver(&stli_pcidriver);
3945 if (retval && found == 0) {
3946 printk(KERN_ERR "Neither isa nor eisa cards found nor pci "
3947 "driver can be registered!\n");
3948 goto err;
3949 }
3950
Alan Cox4ac43602006-06-28 04:26:52 -07003951 return 0;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003952err:
3953 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954}
3955
3956/*****************************************************************************/
3957
3958/*
3959 * Code to handle an "staliomem" read operation. This device is the
3960 * contents of the board shared memory. It is used for down loading
3961 * the slave image (and debugging :-)
3962 */
3963
3964static ssize_t stli_memread(struct file *fp, char __user *buf, size_t count, loff_t *offp)
3965{
Alan Cox4ac43602006-06-28 04:26:52 -07003966 unsigned long flags;
Al Viro29756fa2006-10-10 22:47:27 +01003967 void __iomem *memptr;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003968 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08003969 unsigned int brdnr;
3970 int size, n;
Alan Cox4ac43602006-06-28 04:26:52 -07003971 void *p;
3972 loff_t off = *offp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973
Josef Sipeka7113a92006-12-08 02:36:55 -08003974 brdnr = iminor(fp->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 if (brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07003976 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07003978 if (brdp == NULL)
3979 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 if (brdp->state == 0)
Alan Cox4ac43602006-06-28 04:26:52 -07003981 return -ENODEV;
3982 if (off >= brdp->memsize || off + count < off)
3983 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08003985 size = min(count, (size_t)(brdp->memsize - off));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Alan Cox4ac43602006-06-28 04:26:52 -07003987 /*
3988 * Copy the data a page at a time
3989 */
3990
3991 p = (void *)__get_free_page(GFP_KERNEL);
3992 if(p == NULL)
3993 return -ENOMEM;
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 while (size > 0) {
Alan Cox4ac43602006-06-28 04:26:52 -07003996 spin_lock_irqsave(&brd_lock, flags);
3997 EBRDENABLE(brdp);
Al Viro29756fa2006-10-10 22:47:27 +01003998 memptr = EBRDGETMEMPTR(brdp, off);
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08003999 n = min(size, (int)(brdp->pagesize - (((unsigned long) off) % brdp->pagesize)));
4000 n = min(n, (int)PAGE_SIZE);
Alan Cox4ac43602006-06-28 04:26:52 -07004001 memcpy_fromio(p, memptr, n);
4002 EBRDDISABLE(brdp);
4003 spin_unlock_irqrestore(&brd_lock, flags);
4004 if (copy_to_user(buf, p, n)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 count = -EFAULT;
4006 goto out;
4007 }
Alan Cox4ac43602006-06-28 04:26:52 -07004008 off += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 buf += n;
4010 size -= n;
4011 }
4012out:
Alan Cox4ac43602006-06-28 04:26:52 -07004013 *offp = off;
4014 free_page((unsigned long)p);
4015 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016}
4017
4018/*****************************************************************************/
4019
4020/*
4021 * Code to handle an "staliomem" write operation. This device is the
4022 * contents of the board shared memory. It is used for down loading
4023 * the slave image (and debugging :-)
Alan Cox4ac43602006-06-28 04:26:52 -07004024 *
4025 * FIXME: copy under lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 */
4027
4028static ssize_t stli_memwrite(struct file *fp, const char __user *buf, size_t count, loff_t *offp)
4029{
Alan Cox4ac43602006-06-28 04:26:52 -07004030 unsigned long flags;
Al Viro29756fa2006-10-10 22:47:27 +01004031 void __iomem *memptr;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004032 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07004033 char __user *chbuf;
Jiri Slaby1328d732006-12-08 02:39:19 -08004034 unsigned int brdnr;
4035 int size, n;
Alan Cox4ac43602006-06-28 04:26:52 -07004036 void *p;
4037 loff_t off = *offp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
Josef Sipeka7113a92006-12-08 02:36:55 -08004039 brdnr = iminor(fp->f_path.dentry->d_inode);
Alan Cox4ac43602006-06-28 04:26:52 -07004040
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 if (brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07004042 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07004044 if (brdp == NULL)
4045 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 if (brdp->state == 0)
Alan Cox4ac43602006-06-28 04:26:52 -07004047 return -ENODEV;
4048 if (off >= brdp->memsize || off + count < off)
4049 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
4051 chbuf = (char __user *) buf;
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08004052 size = min(count, (size_t)(brdp->memsize - off));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053
Alan Cox4ac43602006-06-28 04:26:52 -07004054 /*
4055 * Copy the data a page at a time
4056 */
4057
4058 p = (void *)__get_free_page(GFP_KERNEL);
4059 if(p == NULL)
4060 return -ENOMEM;
4061
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 while (size > 0) {
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08004063 n = min(size, (int)(brdp->pagesize - (((unsigned long) off) % brdp->pagesize)));
4064 n = min(n, (int)PAGE_SIZE);
Alan Cox4ac43602006-06-28 04:26:52 -07004065 if (copy_from_user(p, chbuf, n)) {
4066 if (count == 0)
4067 count = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 goto out;
4069 }
Alan Cox4ac43602006-06-28 04:26:52 -07004070 spin_lock_irqsave(&brd_lock, flags);
4071 EBRDENABLE(brdp);
Al Viro29756fa2006-10-10 22:47:27 +01004072 memptr = EBRDGETMEMPTR(brdp, off);
Alan Cox4ac43602006-06-28 04:26:52 -07004073 memcpy_toio(memptr, p, n);
4074 EBRDDISABLE(brdp);
4075 spin_unlock_irqrestore(&brd_lock, flags);
4076 off += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 chbuf += n;
4078 size -= n;
4079 }
4080out:
Alan Cox4ac43602006-06-28 04:26:52 -07004081 free_page((unsigned long) p);
4082 *offp = off;
4083 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084}
4085
4086/*****************************************************************************/
4087
4088/*
4089 * Return the board stats structure to user app.
4090 */
4091
4092static int stli_getbrdstats(combrd_t __user *bp)
4093{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004094 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08004095 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
4097 if (copy_from_user(&stli_brdstats, bp, sizeof(combrd_t)))
4098 return -EFAULT;
4099 if (stli_brdstats.brd >= STL_MAXBRDS)
Alan Cox4ac43602006-06-28 04:26:52 -07004100 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 brdp = stli_brds[stli_brdstats.brd];
Alan Cox4ac43602006-06-28 04:26:52 -07004102 if (brdp == NULL)
4103 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
4105 memset(&stli_brdstats, 0, sizeof(combrd_t));
4106 stli_brdstats.brd = brdp->brdnr;
4107 stli_brdstats.type = brdp->brdtype;
4108 stli_brdstats.hwid = 0;
4109 stli_brdstats.state = brdp->state;
4110 stli_brdstats.ioaddr = brdp->iobase;
4111 stli_brdstats.memaddr = brdp->memaddr;
4112 stli_brdstats.nrpanels = brdp->nrpanels;
4113 stli_brdstats.nrports = brdp->nrports;
4114 for (i = 0; (i < brdp->nrpanels); i++) {
4115 stli_brdstats.panels[i].panel = i;
4116 stli_brdstats.panels[i].hwid = brdp->panelids[i];
4117 stli_brdstats.panels[i].nrports = brdp->panels[i];
4118 }
4119
4120 if (copy_to_user(bp, &stli_brdstats, sizeof(combrd_t)))
4121 return -EFAULT;
Alan Cox4ac43602006-06-28 04:26:52 -07004122 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123}
4124
4125/*****************************************************************************/
4126
4127/*
4128 * Resolve the referenced port number into a port struct pointer.
4129 */
4130
Jiri Slaby1328d732006-12-08 02:39:19 -08004131static struct stliport *stli_getport(unsigned int brdnr, unsigned int panelnr,
4132 unsigned int portnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004134 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08004135 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
Jiri Slaby1328d732006-12-08 02:39:19 -08004137 if (brdnr >= STL_MAXBRDS)
Alan Cox4ac43602006-06-28 04:26:52 -07004138 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07004140 if (brdp == NULL)
4141 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 for (i = 0; (i < panelnr); i++)
4143 portnr += brdp->panels[i];
Jiri Slaby1328d732006-12-08 02:39:19 -08004144 if (portnr >= brdp->nrports)
Alan Cox4ac43602006-06-28 04:26:52 -07004145 return NULL;
4146 return brdp->ports[portnr];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147}
4148
4149/*****************************************************************************/
4150
4151/*
4152 * Return the port stats structure to user app. A NULL port struct
4153 * pointer passed in means that we need to find out from the app
4154 * what port to get stats for (used through board control device).
4155 */
4156
Alan Coxd18a7502008-10-13 10:40:07 +01004157static int stli_portcmdstats(struct tty_struct *tty, struct stliport *portp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158{
4159 unsigned long flags;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004160 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 int rc;
4162
4163 memset(&stli_comstats, 0, sizeof(comstats_t));
4164
Alan Cox4ac43602006-06-28 04:26:52 -07004165 if (portp == NULL)
4166 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07004168 if (brdp == NULL)
4169 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170
4171 if (brdp->state & BST_STARTED) {
4172 if ((rc = stli_cmdwait(brdp, portp, A_GETSTATS,
4173 &stli_cdkstats, sizeof(asystats_t), 1)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -07004174 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 } else {
4176 memset(&stli_cdkstats, 0, sizeof(asystats_t));
4177 }
4178
4179 stli_comstats.brd = portp->brdnr;
4180 stli_comstats.panel = portp->panelnr;
4181 stli_comstats.port = portp->portnr;
4182 stli_comstats.state = portp->state;
Wang Chen42a77a12008-07-21 17:48:59 +08004183 stli_comstats.flags = portp->port.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
Alan Cox4ac43602006-06-28 04:26:52 -07004185 spin_lock_irqsave(&brd_lock, flags);
Alan Coxd18a7502008-10-13 10:40:07 +01004186 if (tty != NULL) {
4187 if (portp->port.tty == tty) {
4188 stli_comstats.ttystate = tty->flags;
Alan Cox4ac43602006-06-28 04:26:52 -07004189 stli_comstats.rxbuffered = -1;
Alan Coxd18a7502008-10-13 10:40:07 +01004190 if (tty->termios != NULL) {
4191 stli_comstats.cflags = tty->termios->c_cflag;
4192 stli_comstats.iflags = tty->termios->c_iflag;
4193 stli_comstats.oflags = tty->termios->c_oflag;
4194 stli_comstats.lflags = tty->termios->c_lflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 }
4196 }
4197 }
Alan Cox4ac43602006-06-28 04:26:52 -07004198 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199
4200 stli_comstats.txtotal = stli_cdkstats.txchars;
4201 stli_comstats.rxtotal = stli_cdkstats.rxchars + stli_cdkstats.ringover;
4202 stli_comstats.txbuffered = stli_cdkstats.txringq;
4203 stli_comstats.rxbuffered += stli_cdkstats.rxringq;
4204 stli_comstats.rxoverrun = stli_cdkstats.overruns;
4205 stli_comstats.rxparity = stli_cdkstats.parity;
4206 stli_comstats.rxframing = stli_cdkstats.framing;
4207 stli_comstats.rxlost = stli_cdkstats.ringover;
4208 stli_comstats.rxbreaks = stli_cdkstats.rxbreaks;
4209 stli_comstats.txbreaks = stli_cdkstats.txbreaks;
4210 stli_comstats.txxon = stli_cdkstats.txstart;
4211 stli_comstats.txxoff = stli_cdkstats.txstop;
4212 stli_comstats.rxxon = stli_cdkstats.rxstart;
4213 stli_comstats.rxxoff = stli_cdkstats.rxstop;
4214 stli_comstats.rxrtsoff = stli_cdkstats.rtscnt / 2;
4215 stli_comstats.rxrtson = stli_cdkstats.rtscnt - stli_comstats.rxrtsoff;
4216 stli_comstats.modem = stli_cdkstats.dcdcnt;
4217 stli_comstats.hwid = stli_cdkstats.hwid;
4218 stli_comstats.signals = stli_mktiocm(stli_cdkstats.signals);
4219
Alan Cox4ac43602006-06-28 04:26:52 -07004220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221}
4222
4223/*****************************************************************************/
4224
4225/*
4226 * Return the port stats structure to user app. A NULL port struct
4227 * pointer passed in means that we need to find out from the app
4228 * what port to get stats for (used through board control device).
4229 */
4230
Alan Coxd18a7502008-10-13 10:40:07 +01004231static int stli_getportstats(struct tty_struct *tty, struct stliport *portp,
4232 comstats_t __user *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004234 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07004235 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236
4237 if (!portp) {
4238 if (copy_from_user(&stli_comstats, cp, sizeof(comstats_t)))
4239 return -EFAULT;
4240 portp = stli_getport(stli_comstats.brd, stli_comstats.panel,
4241 stli_comstats.port);
4242 if (!portp)
4243 return -ENODEV;
4244 }
4245
4246 brdp = stli_brds[portp->brdnr];
4247 if (!brdp)
4248 return -ENODEV;
4249
Alan Coxd18a7502008-10-13 10:40:07 +01004250 if ((rc = stli_portcmdstats(tty, portp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 return rc;
4252
4253 return copy_to_user(cp, &stli_comstats, sizeof(comstats_t)) ?
4254 -EFAULT : 0;
4255}
4256
4257/*****************************************************************************/
4258
4259/*
4260 * Clear the port stats structure. We also return it zeroed out...
4261 */
4262
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004263static int stli_clrportstats(struct stliport *portp, comstats_t __user *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004265 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07004266 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267
4268 if (!portp) {
4269 if (copy_from_user(&stli_comstats, cp, sizeof(comstats_t)))
4270 return -EFAULT;
4271 portp = stli_getport(stli_comstats.brd, stli_comstats.panel,
4272 stli_comstats.port);
4273 if (!portp)
4274 return -ENODEV;
4275 }
4276
4277 brdp = stli_brds[portp->brdnr];
4278 if (!brdp)
4279 return -ENODEV;
4280
4281 if (brdp->state & BST_STARTED) {
4282 if ((rc = stli_cmdwait(brdp, portp, A_CLEARSTATS, NULL, 0, 0)) < 0)
4283 return rc;
4284 }
4285
4286 memset(&stli_comstats, 0, sizeof(comstats_t));
4287 stli_comstats.brd = portp->brdnr;
4288 stli_comstats.panel = portp->panelnr;
4289 stli_comstats.port = portp->portnr;
4290
4291 if (copy_to_user(cp, &stli_comstats, sizeof(comstats_t)))
4292 return -EFAULT;
4293 return 0;
4294}
4295
4296/*****************************************************************************/
4297
4298/*
4299 * Return the entire driver ports structure to a user app.
4300 */
4301
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004302static int stli_getportstruct(struct stliport __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303{
Jiri Slaby1328d732006-12-08 02:39:19 -08004304 struct stliport stli_dummyport;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004305 struct stliport *portp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004307 if (copy_from_user(&stli_dummyport, arg, sizeof(struct stliport)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 return -EFAULT;
4309 portp = stli_getport(stli_dummyport.brdnr, stli_dummyport.panelnr,
4310 stli_dummyport.portnr);
4311 if (!portp)
4312 return -ENODEV;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004313 if (copy_to_user(arg, portp, sizeof(struct stliport)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 return -EFAULT;
4315 return 0;
4316}
4317
4318/*****************************************************************************/
4319
4320/*
4321 * Return the entire driver board structure to a user app.
4322 */
4323
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004324static int stli_getbrdstruct(struct stlibrd __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325{
Jiri Slaby1328d732006-12-08 02:39:19 -08004326 struct stlibrd stli_dummybrd;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004327 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004329 if (copy_from_user(&stli_dummybrd, arg, sizeof(struct stlibrd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 return -EFAULT;
Jiri Slaby1328d732006-12-08 02:39:19 -08004331 if (stli_dummybrd.brdnr >= STL_MAXBRDS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 return -ENODEV;
4333 brdp = stli_brds[stli_dummybrd.brdnr];
4334 if (!brdp)
4335 return -ENODEV;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004336 if (copy_to_user(arg, brdp, sizeof(struct stlibrd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 return -EFAULT;
4338 return 0;
4339}
4340
4341/*****************************************************************************/
4342
4343/*
4344 * The "staliomem" device is also required to do some special operations on
4345 * the board. We need to be able to send an interrupt to the board,
4346 * reset it, and start/stop it.
4347 */
4348
4349static int stli_memioctl(struct inode *ip, struct file *fp, unsigned int cmd, unsigned long arg)
4350{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004351 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07004352 int brdnr, rc, done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 void __user *argp = (void __user *)arg;
4354
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355/*
4356 * First up handle the board independent ioctls.
4357 */
4358 done = 0;
4359 rc = 0;
4360
Alan Cox37361132008-04-30 00:53:19 -07004361 lock_kernel();
4362
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 switch (cmd) {
4364 case COM_GETPORTSTATS:
Alan Coxd18a7502008-10-13 10:40:07 +01004365 rc = stli_getportstats(NULL, NULL, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 done++;
4367 break;
4368 case COM_CLRPORTSTATS:
4369 rc = stli_clrportstats(NULL, argp);
4370 done++;
4371 break;
4372 case COM_GETBRDSTATS:
4373 rc = stli_getbrdstats(argp);
4374 done++;
4375 break;
4376 case COM_READPORT:
4377 rc = stli_getportstruct(argp);
4378 done++;
4379 break;
4380 case COM_READBOARD:
4381 rc = stli_getbrdstruct(argp);
4382 done++;
4383 break;
4384 }
Alan Cox37361132008-04-30 00:53:19 -07004385 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386
4387 if (done)
Alan Cox4ac43602006-06-28 04:26:52 -07004388 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
4390/*
4391 * Now handle the board specific ioctls. These all depend on the
4392 * minor number of the device they were called from.
4393 */
4394 brdnr = iminor(ip);
4395 if (brdnr >= STL_MAXBRDS)
Alan Cox4ac43602006-06-28 04:26:52 -07004396 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 brdp = stli_brds[brdnr];
4398 if (!brdp)
Alan Cox4ac43602006-06-28 04:26:52 -07004399 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 if (brdp->state == 0)
Alan Cox4ac43602006-06-28 04:26:52 -07004401 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
Alan Cox37361132008-04-30 00:53:19 -07004403 lock_kernel();
4404
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405 switch (cmd) {
4406 case STL_BINTR:
4407 EBRDINTR(brdp);
4408 break;
4409 case STL_BSTART:
4410 rc = stli_startbrd(brdp);
4411 break;
4412 case STL_BSTOP:
4413 brdp->state &= ~BST_STARTED;
4414 break;
4415 case STL_BRESET:
4416 brdp->state &= ~BST_STARTED;
4417 EBRDRESET(brdp);
4418 if (stli_shared == 0) {
4419 if (brdp->reenable != NULL)
4420 (* brdp->reenable)(brdp);
4421 }
4422 break;
4423 default:
4424 rc = -ENOIOCTLCMD;
4425 break;
4426 }
Alan Cox37361132008-04-30 00:53:19 -07004427 unlock_kernel();
Alan Cox4ac43602006-06-28 04:26:52 -07004428 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429}
4430
Jeff Dikeb68e31d2006-10-02 02:17:18 -07004431static const struct tty_operations stli_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 .open = stli_open,
4433 .close = stli_close,
4434 .write = stli_write,
4435 .put_char = stli_putchar,
4436 .flush_chars = stli_flushchars,
4437 .write_room = stli_writeroom,
4438 .chars_in_buffer = stli_charsinbuffer,
4439 .ioctl = stli_ioctl,
4440 .set_termios = stli_settermios,
4441 .throttle = stli_throttle,
4442 .unthrottle = stli_unthrottle,
4443 .stop = stli_stop,
4444 .start = stli_start,
4445 .hangup = stli_hangup,
4446 .flush_buffer = stli_flushbuffer,
4447 .break_ctl = stli_breakctl,
4448 .wait_until_sent = stli_waituntilsent,
4449 .send_xchar = stli_sendxchar,
4450 .read_proc = stli_readproc,
4451 .tiocmget = stli_tiocmget,
4452 .tiocmset = stli_tiocmset,
4453};
4454
Alan Cox31f35932009-01-02 13:45:05 +00004455static const struct tty_port_operations stli_port_ops = {
4456 .carrier_raised = stli_carrier_raised,
Alan Cox2a6eadb2009-01-02 13:46:18 +00004457 .raise_dtr_rts = stli_raise_dtr_rts,
Alan Cox31f35932009-01-02 13:45:05 +00004458};
4459
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460/*****************************************************************************/
Jiri Slabyf1cc54f2006-12-08 02:39:24 -08004461/*
4462 * Loadable module initialization stuff.
4463 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
Jiri Slabyf2362c92006-12-08 02:39:25 -08004465static void istallion_cleanup_isa(void)
Jiri Slabyf1cc54f2006-12-08 02:39:24 -08004466{
4467 struct stlibrd *brdp;
4468 unsigned int j;
Jiri Slabyf1cc54f2006-12-08 02:39:24 -08004469
4470 for (j = 0; (j < stli_nrbrds); j++) {
4471 if ((brdp = stli_brds[j]) == NULL || (brdp->state & BST_PROBED))
4472 continue;
4473
4474 stli_cleanup_ports(brdp);
4475
4476 iounmap(brdp->membase);
4477 if (brdp->iosize > 0)
4478 release_region(brdp->iobase, brdp->iosize);
4479 kfree(brdp);
4480 stli_brds[j] = NULL;
4481 }
4482}
4483
Jiri Slabyf2362c92006-12-08 02:39:25 -08004484static int __init istallion_module_init(void)
4485{
4486 unsigned int i;
4487 int retval;
4488
4489 printk(KERN_INFO "%s: version %s\n", stli_drvtitle, stli_drvversion);
4490
4491 spin_lock_init(&stli_lock);
4492 spin_lock_init(&brd_lock);
4493
4494 stli_txcookbuf = kmalloc(STLI_TXBUFSIZE, GFP_KERNEL);
4495 if (!stli_txcookbuf) {
4496 printk(KERN_ERR "STALLION: failed to allocate memory "
4497 "(size=%d)\n", STLI_TXBUFSIZE);
4498 retval = -ENOMEM;
4499 goto err;
4500 }
4501
4502 stli_serial = alloc_tty_driver(STL_MAXBRDS * STL_MAXPORTS);
4503 if (!stli_serial) {
4504 retval = -ENOMEM;
4505 goto err_free;
4506 }
4507
4508 stli_serial->owner = THIS_MODULE;
4509 stli_serial->driver_name = stli_drvname;
4510 stli_serial->name = stli_serialname;
4511 stli_serial->major = STL_SERIALMAJOR;
4512 stli_serial->minor_start = 0;
4513 stli_serial->type = TTY_DRIVER_TYPE_SERIAL;
4514 stli_serial->subtype = SERIAL_TYPE_NORMAL;
4515 stli_serial->init_termios = stli_deftermios;
Jiri Slabyec3dde52006-12-08 02:39:26 -08004516 stli_serial->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Jiri Slabyf2362c92006-12-08 02:39:25 -08004517 tty_set_operations(stli_serial, &stli_ops);
4518
4519 retval = tty_register_driver(stli_serial);
4520 if (retval) {
4521 printk(KERN_ERR "STALLION: failed to register serial driver\n");
4522 goto err_ttyput;
4523 }
4524
4525 retval = stli_initbrds();
4526 if (retval)
4527 goto err_ttyunr;
4528
4529/*
4530 * Set up a character driver for the shared memory region. We need this
4531 * to down load the slave code image. Also it is a useful debugging tool.
4532 */
4533 retval = register_chrdev(STL_SIOMEMMAJOR, "staliomem", &stli_fsiomem);
4534 if (retval) {
4535 printk(KERN_ERR "STALLION: failed to register serial memory "
4536 "device\n");
4537 goto err_deinit;
4538 }
4539
4540 istallion_class = class_create(THIS_MODULE, "staliomem");
4541 for (i = 0; i < 4; i++)
Greg Kroah-Hartman03457cd2008-07-21 20:03:34 -07004542 device_create(istallion_class, NULL, MKDEV(STL_SIOMEMMAJOR, i),
4543 NULL, "staliomem%d", i);
Jiri Slabyf2362c92006-12-08 02:39:25 -08004544
4545 return 0;
4546err_deinit:
4547 pci_unregister_driver(&stli_pcidriver);
4548 istallion_cleanup_isa();
4549err_ttyunr:
4550 tty_unregister_driver(stli_serial);
4551err_ttyput:
4552 put_tty_driver(stli_serial);
4553err_free:
4554 kfree(stli_txcookbuf);
4555err:
4556 return retval;
4557}
4558
4559/*****************************************************************************/
4560
4561static void __exit istallion_module_exit(void)
4562{
4563 unsigned int j;
4564
4565 printk(KERN_INFO "Unloading %s: version %s\n", stli_drvtitle,
4566 stli_drvversion);
4567
4568 if (stli_timeron) {
4569 stli_timeron = 0;
4570 del_timer_sync(&stli_timerlist);
4571 }
4572
4573 unregister_chrdev(STL_SIOMEMMAJOR, "staliomem");
4574
4575 for (j = 0; j < 4; j++)
tonyj@suse.de07c015e2007-08-07 22:28:44 -07004576 device_destroy(istallion_class, MKDEV(STL_SIOMEMMAJOR, j));
Jiri Slabyf2362c92006-12-08 02:39:25 -08004577 class_destroy(istallion_class);
4578
4579 pci_unregister_driver(&stli_pcidriver);
4580 istallion_cleanup_isa();
4581
4582 tty_unregister_driver(stli_serial);
4583 put_tty_driver(stli_serial);
4584
4585 kfree(stli_txcookbuf);
4586}
4587
Jiri Slabyf1cc54f2006-12-08 02:39:24 -08004588module_init(istallion_module_init);
4589module_exit(istallion_module_exit);