blob: ab2f3349c5c4cc9dc13e3021307a3ede3ddf9a92 [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>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040023#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/tty.h>
26#include <linux/tty_flip.h>
27#include <linux/serial.h>
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -070028#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/cdk.h>
30#include <linux/comstats.h>
31#include <linux/istallion.h>
32#include <linux/ioport.h>
33#include <linux/delay.h>
34#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/device.h>
36#include <linux/wait.h>
Alan Cox4ac43602006-06-28 04:26:52 -070037#include <linux/eisa.h>
Jiri Slabya3f8d9d2006-12-08 02:39:18 -080038#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <asm/io.h>
41#include <asm/uaccess.h>
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*****************************************************************************/
46
47/*
48 * Define different board types. Not all of the following board types
49 * are supported by this driver. But I will use the standard "assigned"
50 * board numbers. Currently supported boards are abbreviated as:
51 * ECP = EasyConnection 8/64, ONB = ONboard, BBY = Brumby and
52 * STAL = Stallion.
53 */
54#define BRD_UNKNOWN 0
55#define BRD_STALLION 1
56#define BRD_BRUMBY4 2
57#define BRD_ONBOARD2 3
58#define BRD_ONBOARD 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define BRD_ONBOARDE 7
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define BRD_ECP 23
61#define BRD_ECPE 24
62#define BRD_ECPMC 25
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define BRD_ECPPCI 29
64
65#define BRD_BRUMBY BRD_BRUMBY4
66
67/*
68 * Define a configuration structure to hold the board configuration.
69 * Need to set this up in the code (for now) with the boards that are
70 * to be configured into the system. This is what needs to be modified
71 * when adding/removing/modifying boards. Each line entry in the
72 * stli_brdconf[] array is a board. Each line contains io/irq/memory
73 * ranges for that board (as well as what type of board it is).
74 * Some examples:
75 * { BRD_ECP, 0x2a0, 0, 0xcc000, 0, 0 },
76 * This line will configure an EasyConnection 8/64 at io address 2a0,
77 * and shared memory address of cc000. Multiple EasyConnection 8/64
78 * boards can share the same shared memory address space. No interrupt
79 * is required for this board type.
80 * Another example:
81 * { BRD_ECPE, 0x5000, 0, 0x80000000, 0, 0 },
82 * This line will configure an EasyConnection 8/64 EISA in slot 5 and
83 * shared memory address of 0x80000000 (2 GByte). Multiple
84 * EasyConnection 8/64 EISA boards can share the same shared memory
85 * address space. No interrupt is required for this board type.
86 * Another example:
87 * { BRD_ONBOARD, 0x240, 0, 0xd0000, 0, 0 },
88 * This line will configure an ONboard (ISA type) at io address 240,
89 * and shared memory address of d0000. Multiple ONboards can share
90 * the same shared memory address space. No interrupt required.
91 * Another example:
92 * { BRD_BRUMBY4, 0x360, 0, 0xc8000, 0, 0 },
93 * This line will configure a Brumby board (any number of ports!) at
94 * io address 360 and shared memory address of c8000. All Brumby boards
95 * configured into a system must have their own separate io and memory
96 * addresses. No interrupt is required.
97 * Another example:
98 * { BRD_STALLION, 0x330, 0, 0xd0000, 0, 0 },
99 * This line will configure an original Stallion board at io address 330
100 * and shared memory address d0000 (this would only be valid for a "V4.0"
101 * or Rev.O Stallion board). All Stallion boards configured into the
102 * system must have their own separate io and memory addresses. No
103 * interrupt is required.
104 */
105
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800106struct stlconf {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 int brdtype;
108 int ioaddr1;
109 int ioaddr2;
110 unsigned long memaddr;
111 int irq;
112 int irqtype;
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800113};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Jiri Slaby1328d732006-12-08 02:39:19 -0800115static unsigned int stli_nrbrds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Alan Cox4ac43602006-06-28 04:26:52 -0700117/* stli_lock must NOT be taken holding brd_lock */
118static spinlock_t stli_lock; /* TTY logic lock */
119static spinlock_t brd_lock; /* Board logic lock */
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/*
122 * There is some experimental EISA board detection code in this driver.
123 * By default it is disabled, but for those that want to try it out,
124 * then set the define below to be 1.
125 */
126#define STLI_EISAPROBE 0
127
128/*****************************************************************************/
129
130/*
131 * Define some important driver characteristics. Device major numbers
132 * allocated as per Linux Device Registry.
133 */
134#ifndef STL_SIOMEMMAJOR
135#define STL_SIOMEMMAJOR 28
136#endif
137#ifndef STL_SERIALMAJOR
138#define STL_SERIALMAJOR 24
139#endif
140#ifndef STL_CALLOUTMAJOR
141#define STL_CALLOUTMAJOR 25
142#endif
143
144/*****************************************************************************/
145
146/*
147 * Define our local driver identity first. Set up stuff to deal with
148 * all the local structures required by a serial tty driver.
149 */
150static char *stli_drvtitle = "Stallion Intelligent Multiport Serial Driver";
151static char *stli_drvname = "istallion";
152static char *stli_drvversion = "5.6.0";
153static char *stli_serialname = "ttyE";
154
155static struct tty_driver *stli_serial;
Alan Cox31f35932009-01-02 13:45:05 +0000156static const struct tty_port_operations stli_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158#define STLI_TXBUFSIZE 4096
159
160/*
161 * Use a fast local buffer for cooked characters. Typically a whole
162 * bunch of cooked characters come in for a port, 1 at a time. So we
163 * save those up into a local buffer, then write out the whole lot
164 * with a large memcpy. Just use 1 buffer for all ports, since its
165 * use it is only need for short periods of time by each port.
166 */
167static char *stli_txcookbuf;
168static int stli_txcooksize;
169static int stli_txcookrealsize;
170static struct tty_struct *stli_txcooktty;
171
172/*
173 * Define a local default termios struct. All ports will be created
174 * with this termios initially. Basically all it defines is a raw port
175 * at 9600 baud, 8 data bits, no parity, 1 stop bit.
176 */
Alan Cox606d0992006-12-08 02:38:45 -0800177static struct ktermios stli_deftermios = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .c_cflag = (B9600 | CS8 | CREAD | HUPCL | CLOCAL),
179 .c_cc = INIT_C_CC,
Alan Cox606d0992006-12-08 02:38:45 -0800180 .c_ispeed = 9600,
181 .c_ospeed = 9600,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
184/*
185 * Define global stats structures. Not used often, and can be
186 * re-used for each stats call.
187 */
188static comstats_t stli_comstats;
189static combrd_t stli_brdstats;
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800190static struct asystats stli_cdkstats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192/*****************************************************************************/
193
Jiri Slabyb103b5c2006-12-08 02:39:21 -0800194static DEFINE_MUTEX(stli_brdslock);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800195static struct stlibrd *stli_brds[STL_MAXBRDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197static int stli_shared;
198
199/*
200 * Per board state flags. Used with the state field of the board struct.
201 * Not really much here... All we need to do is keep track of whether
202 * the board has been detected, and whether it is actually running a slave
203 * or not.
204 */
205#define BST_FOUND 0x1
206#define BST_STARTED 0x2
Jiri Slaby39014172006-12-08 02:39:22 -0800207#define BST_PROBED 0x4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209/*
210 * Define the set of port state flags. These are marked for internal
211 * state purposes only, usually to do with the state of communications
212 * with the slave. Most of them need to be updated atomically, so always
213 * use the bit setting operations (unless protected by cli/sti).
214 */
215#define ST_INITIALIZING 1
216#define ST_OPENING 2
217#define ST_CLOSING 3
218#define ST_CMDING 4
219#define ST_TXBUSY 5
220#define ST_RXING 6
221#define ST_DOFLUSHRX 7
222#define ST_DOFLUSHTX 8
223#define ST_DOSIGS 9
224#define ST_RXSTOP 10
225#define ST_GETSIGS 11
226
227/*
228 * Define an array of board names as printable strings. Handy for
229 * referencing boards when printing trace and stuff.
230 */
231static char *stli_brdnames[] = {
232 "Unknown",
233 "Stallion",
234 "Brumby",
235 "ONboard-MC",
236 "ONboard",
237 "Brumby",
238 "Brumby",
239 "ONboard-EI",
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800240 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 "ONboard",
242 "ONboard-MC",
243 "ONboard-MC",
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800244 NULL,
245 NULL,
246 NULL,
247 NULL,
248 NULL,
249 NULL,
250 NULL,
251 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 "EasyIO",
253 "EC8/32-AT",
254 "EC8/32-MC",
255 "EC8/64-AT",
256 "EC8/64-EI",
257 "EC8/64-MC",
258 "EC8/32-PCI",
259 "EC8/64-PCI",
260 "EasyIO-PCI",
261 "EC/RA-PCI",
262};
263
264/*****************************************************************************/
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266/*
267 * Define some string labels for arguments passed from the module
268 * load line. These allow for easy board definitions, and easy
269 * modification of the io, memory and irq resoucres.
270 */
271
272static char *board0[8];
273static char *board1[8];
274static char *board2[8];
275static char *board3[8];
276
277static char **stli_brdsp[] = {
278 (char **) &board0,
279 (char **) &board1,
280 (char **) &board2,
281 (char **) &board3
282};
283
284/*
285 * Define a set of common board names, and types. This is used to
286 * parse any module arguments.
287 */
288
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800289static struct stlibrdtype {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 char *name;
291 int type;
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800292} stli_brdstr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 { "stallion", BRD_STALLION },
294 { "1", BRD_STALLION },
295 { "brumby", BRD_BRUMBY },
296 { "brumby4", BRD_BRUMBY },
297 { "brumby/4", BRD_BRUMBY },
298 { "brumby-4", BRD_BRUMBY },
299 { "brumby8", BRD_BRUMBY },
300 { "brumby/8", BRD_BRUMBY },
301 { "brumby-8", BRD_BRUMBY },
302 { "brumby16", BRD_BRUMBY },
303 { "brumby/16", BRD_BRUMBY },
304 { "brumby-16", BRD_BRUMBY },
305 { "2", BRD_BRUMBY },
306 { "onboard2", BRD_ONBOARD2 },
307 { "onboard-2", BRD_ONBOARD2 },
308 { "onboard/2", BRD_ONBOARD2 },
309 { "onboard-mc", BRD_ONBOARD2 },
310 { "onboard/mc", BRD_ONBOARD2 },
311 { "onboard-mca", BRD_ONBOARD2 },
312 { "onboard/mca", BRD_ONBOARD2 },
313 { "3", BRD_ONBOARD2 },
314 { "onboard", BRD_ONBOARD },
315 { "onboardat", BRD_ONBOARD },
316 { "4", BRD_ONBOARD },
317 { "onboarde", BRD_ONBOARDE },
318 { "onboard-e", BRD_ONBOARDE },
319 { "onboard/e", BRD_ONBOARDE },
320 { "onboard-ei", BRD_ONBOARDE },
321 { "onboard/ei", BRD_ONBOARDE },
322 { "7", BRD_ONBOARDE },
323 { "ecp", BRD_ECP },
324 { "ecpat", BRD_ECP },
325 { "ec8/64", BRD_ECP },
326 { "ec8/64-at", BRD_ECP },
327 { "ec8/64-isa", BRD_ECP },
328 { "23", BRD_ECP },
329 { "ecpe", BRD_ECPE },
330 { "ecpei", BRD_ECPE },
331 { "ec8/64-e", BRD_ECPE },
332 { "ec8/64-ei", BRD_ECPE },
333 { "24", BRD_ECPE },
334 { "ecpmc", BRD_ECPMC },
335 { "ec8/64-mc", BRD_ECPMC },
336 { "ec8/64-mca", BRD_ECPMC },
337 { "25", BRD_ECPMC },
338 { "ecppci", BRD_ECPPCI },
339 { "ec/ra", BRD_ECPPCI },
340 { "ec/ra-pc", BRD_ECPPCI },
341 { "ec/ra-pci", BRD_ECPPCI },
342 { "29", BRD_ECPPCI },
343};
344
345/*
346 * Define the module agruments.
347 */
348MODULE_AUTHOR("Greg Ungerer");
349MODULE_DESCRIPTION("Stallion Intelligent Multiport Serial Driver");
350MODULE_LICENSE("GPL");
351
352
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800353module_param_array(board0, charp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354MODULE_PARM_DESC(board0, "Board 0 config -> name[,ioaddr[,memaddr]");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800355module_param_array(board1, charp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356MODULE_PARM_DESC(board1, "Board 1 config -> name[,ioaddr[,memaddr]");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800357module_param_array(board2, charp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358MODULE_PARM_DESC(board2, "Board 2 config -> name[,ioaddr[,memaddr]");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800359module_param_array(board3, charp, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360MODULE_PARM_DESC(board3, "Board 3 config -> name[,ioaddr[,memaddr]");
361
Jiri Slabya00f33f2006-12-08 02:39:20 -0800362#if STLI_EISAPROBE != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363/*
364 * Set up a default memory address table for EISA board probing.
365 * The default addresses are all bellow 1Mbyte, which has to be the
366 * case anyway. They should be safe, since we only read values from
367 * them, and interrupts are disabled while we do it. If the higher
368 * memory support is compiled in then we also try probing around
369 * the 1Gb, 2Gb and 3Gb areas as well...
370 */
371static unsigned long stli_eisamemprobeaddrs[] = {
372 0xc0000, 0xd0000, 0xe0000, 0xf0000,
373 0x80000000, 0x80010000, 0x80020000, 0x80030000,
374 0x40000000, 0x40010000, 0x40020000, 0x40030000,
375 0xc0000000, 0xc0010000, 0xc0020000, 0xc0030000,
376 0xff000000, 0xff010000, 0xff020000, 0xff030000,
377};
378
Tobias Klauserfe971072006-01-09 20:54:02 -0800379static int stli_eisamempsize = ARRAY_SIZE(stli_eisamemprobeaddrs);
Jiri Slabya00f33f2006-12-08 02:39:20 -0800380#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382/*
383 * Define the Stallion PCI vendor and device IDs.
384 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#ifndef PCI_DEVICE_ID_ECRA
386#define PCI_DEVICE_ID_ECRA 0x0004
387#endif
388
389static struct pci_device_id istallion_pci_tbl[] = {
Alan Cox4ac43602006-06-28 04:26:52 -0700390 { PCI_DEVICE(PCI_VENDOR_ID_STALLION, PCI_DEVICE_ID_ECRA), },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 { 0 }
392};
393MODULE_DEVICE_TABLE(pci, istallion_pci_tbl);
394
Jiri Slaby845bead2006-12-08 02:39:17 -0800395static struct pci_driver stli_pcidriver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/*****************************************************************************/
398
399/*
400 * Hardware configuration info for ECP boards. These defines apply
401 * to the directly accessible io ports of the ECP. There is a set of
402 * defines for each ECP board type, ISA, EISA, MCA and PCI.
403 */
404#define ECP_IOSIZE 4
405
406#define ECP_MEMSIZE (128 * 1024)
407#define ECP_PCIMEMSIZE (256 * 1024)
408
409#define ECP_ATPAGESIZE (4 * 1024)
410#define ECP_MCPAGESIZE (4 * 1024)
411#define ECP_EIPAGESIZE (64 * 1024)
412#define ECP_PCIPAGESIZE (64 * 1024)
413
414#define STL_EISAID 0x8c4e
415
416/*
417 * Important defines for the ISA class of ECP board.
418 */
419#define ECP_ATIREG 0
420#define ECP_ATCONFR 1
421#define ECP_ATMEMAR 2
422#define ECP_ATMEMPR 3
423#define ECP_ATSTOP 0x1
424#define ECP_ATINTENAB 0x10
425#define ECP_ATENABLE 0x20
426#define ECP_ATDISABLE 0x00
427#define ECP_ATADDRMASK 0x3f000
428#define ECP_ATADDRSHFT 12
429
430/*
431 * Important defines for the EISA class of ECP board.
432 */
433#define ECP_EIIREG 0
434#define ECP_EIMEMARL 1
435#define ECP_EICONFR 2
436#define ECP_EIMEMARH 3
437#define ECP_EIENABLE 0x1
438#define ECP_EIDISABLE 0x0
439#define ECP_EISTOP 0x4
440#define ECP_EIEDGE 0x00
441#define ECP_EILEVEL 0x80
442#define ECP_EIADDRMASKL 0x00ff0000
443#define ECP_EIADDRSHFTL 16
444#define ECP_EIADDRMASKH 0xff000000
445#define ECP_EIADDRSHFTH 24
446#define ECP_EIBRDENAB 0xc84
447
448#define ECP_EISAID 0x4
449
450/*
451 * Important defines for the Micro-channel class of ECP board.
452 * (It has a lot in common with the ISA boards.)
453 */
454#define ECP_MCIREG 0
455#define ECP_MCCONFR 1
456#define ECP_MCSTOP 0x20
457#define ECP_MCENABLE 0x80
458#define ECP_MCDISABLE 0x00
459
460/*
461 * Important defines for the PCI class of ECP board.
462 * (It has a lot in common with the other ECP boards.)
463 */
464#define ECP_PCIIREG 0
465#define ECP_PCICONFR 1
466#define ECP_PCISTOP 0x01
467
468/*
469 * Hardware configuration info for ONboard and Brumby boards. These
470 * defines apply to the directly accessible io ports of these boards.
471 */
472#define ONB_IOSIZE 16
473#define ONB_MEMSIZE (64 * 1024)
474#define ONB_ATPAGESIZE (64 * 1024)
475#define ONB_MCPAGESIZE (64 * 1024)
476#define ONB_EIMEMSIZE (128 * 1024)
477#define ONB_EIPAGESIZE (64 * 1024)
478
479/*
480 * Important defines for the ISA class of ONboard board.
481 */
482#define ONB_ATIREG 0
483#define ONB_ATMEMAR 1
484#define ONB_ATCONFR 2
485#define ONB_ATSTOP 0x4
486#define ONB_ATENABLE 0x01
487#define ONB_ATDISABLE 0x00
488#define ONB_ATADDRMASK 0xff0000
489#define ONB_ATADDRSHFT 16
490
491#define ONB_MEMENABLO 0
492#define ONB_MEMENABHI 0x02
493
494/*
495 * Important defines for the EISA class of ONboard board.
496 */
497#define ONB_EIIREG 0
498#define ONB_EIMEMARL 1
499#define ONB_EICONFR 2
500#define ONB_EIMEMARH 3
501#define ONB_EIENABLE 0x1
502#define ONB_EIDISABLE 0x0
503#define ONB_EISTOP 0x4
504#define ONB_EIEDGE 0x00
505#define ONB_EILEVEL 0x80
506#define ONB_EIADDRMASKL 0x00ff0000
507#define ONB_EIADDRSHFTL 16
508#define ONB_EIADDRMASKH 0xff000000
509#define ONB_EIADDRSHFTH 24
510#define ONB_EIBRDENAB 0xc84
511
512#define ONB_EISAID 0x1
513
514/*
515 * Important defines for the Brumby boards. They are pretty simple,
516 * there is not much that is programmably configurable.
517 */
518#define BBY_IOSIZE 16
519#define BBY_MEMSIZE (64 * 1024)
520#define BBY_PAGESIZE (16 * 1024)
521
522#define BBY_ATIREG 0
523#define BBY_ATCONFR 1
524#define BBY_ATSTOP 0x4
525
526/*
527 * Important defines for the Stallion boards. They are pretty simple,
528 * there is not much that is programmably configurable.
529 */
530#define STAL_IOSIZE 16
531#define STAL_MEMSIZE (64 * 1024)
532#define STAL_PAGESIZE (64 * 1024)
533
534/*
535 * Define the set of status register values for EasyConnection panels.
536 * The signature will return with the status value for each panel. From
537 * this we can determine what is attached to the board - before we have
538 * actually down loaded any code to it.
539 */
540#define ECH_PNLSTATUS 2
541#define ECH_PNL16PORT 0x20
542#define ECH_PNLIDMASK 0x07
543#define ECH_PNLXPID 0x40
544#define ECH_PNLINTRPEND 0x80
545
546/*
547 * Define some macros to do things to the board. Even those these boards
548 * are somewhat related there is often significantly different ways of
549 * doing some operation on it (like enable, paging, reset, etc). So each
550 * board class has a set of functions which do the commonly required
551 * operations. The macros below basically just call these functions,
552 * generally checking for a NULL function - which means that the board
553 * needs nothing done to it to achieve this operation!
554 */
555#define EBRDINIT(brdp) \
556 if (brdp->init != NULL) \
557 (* brdp->init)(brdp)
558
559#define EBRDENABLE(brdp) \
560 if (brdp->enable != NULL) \
561 (* brdp->enable)(brdp);
562
563#define EBRDDISABLE(brdp) \
564 if (brdp->disable != NULL) \
565 (* brdp->disable)(brdp);
566
567#define EBRDINTR(brdp) \
568 if (brdp->intr != NULL) \
569 (* brdp->intr)(brdp);
570
571#define EBRDRESET(brdp) \
572 if (brdp->reset != NULL) \
573 (* brdp->reset)(brdp);
574
575#define EBRDGETMEMPTR(brdp,offset) \
576 (* brdp->getmemptr)(brdp, offset, __LINE__)
577
578/*
579 * Define the maximal baud rate, and the default baud base for ports.
580 */
581#define STL_MAXBAUD 460800
582#define STL_BAUDBASE 115200
583#define STL_CLOSEDELAY (5 * HZ / 10)
584
585/*****************************************************************************/
586
587/*
588 * Define macros to extract a brd or port number from a minor number.
589 */
590#define MINOR2BRD(min) (((min) & 0xc0) >> 6)
591#define MINOR2PORT(min) ((min) & 0x3f)
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/*****************************************************************************/
594
595/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * Prototype all functions in this driver!
597 */
598
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800599static int stli_parsebrd(struct stlconf *confp, char **argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static int stli_open(struct tty_struct *tty, struct file *filp);
601static void stli_close(struct tty_struct *tty, struct file *filp);
602static int stli_write(struct tty_struct *tty, const unsigned char *buf, int count);
Wang Chen42a77a12008-07-21 17:48:59 +0800603static int stli_putchar(struct tty_struct *tty, unsigned char ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604static void stli_flushchars(struct tty_struct *tty);
605static int stli_writeroom(struct tty_struct *tty);
606static int stli_charsinbuffer(struct tty_struct *tty);
607static int stli_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg);
Alan Cox606d0992006-12-08 02:38:45 -0800608static void stli_settermios(struct tty_struct *tty, struct ktermios *old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609static void stli_throttle(struct tty_struct *tty);
610static void stli_unthrottle(struct tty_struct *tty);
611static void stli_stop(struct tty_struct *tty);
612static void stli_start(struct tty_struct *tty);
613static void stli_flushbuffer(struct tty_struct *tty);
Alan Cox9e989662008-07-22 11:18:03 +0100614static int stli_breakctl(struct tty_struct *tty, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615static void stli_waituntilsent(struct tty_struct *tty, int timeout);
616static void stli_sendxchar(struct tty_struct *tty, char ch);
617static void stli_hangup(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800619static int stli_brdinit(struct stlibrd *brdp);
620static int stli_startbrd(struct stlibrd *brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621static ssize_t stli_memread(struct file *fp, char __user *buf, size_t count, loff_t *offp);
622static ssize_t stli_memwrite(struct file *fp, const char __user *buf, size_t count, loff_t *offp);
623static int stli_memioctl(struct inode *ip, struct file *fp, unsigned int cmd, unsigned long arg);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800624static void stli_brdpoll(struct stlibrd *brdp, cdkhdr_t __iomem *hdrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625static void stli_poll(unsigned long arg);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800626static int stli_hostcmd(struct stlibrd *brdp, struct stliport *portp);
Alan Coxd18a7502008-10-13 10:40:07 +0100627static int stli_initopen(struct tty_struct *tty, struct stlibrd *brdp, struct stliport *portp);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800628static int stli_rawopen(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait);
629static int stli_rawclose(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait);
Alan Coxd18a7502008-10-13 10:40:07 +0100630static int stli_setport(struct tty_struct *tty);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800631static int stli_cmdwait(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_sendcmd(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback);
634static void stli_dodelaycmd(struct stliport *portp, cdkctrl_t __iomem *cp);
Alan Coxd18a7502008-10-13 10:40:07 +0100635static void stli_mkasyport(struct tty_struct *tty, struct stliport *portp, asyport_t *pp, struct ktermios *tiosp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636static void stli_mkasysigs(asysigs_t *sp, int dtr, int rts);
637static long stli_mktiocm(unsigned long sigvalue);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800638static void stli_read(struct stlibrd *brdp, struct stliport *portp);
639static int stli_getserial(struct stliport *portp, struct serial_struct __user *sp);
Alan Coxd18a7502008-10-13 10:40:07 +0100640static int stli_setserial(struct tty_struct *tty, struct serial_struct __user *sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641static int stli_getbrdstats(combrd_t __user *bp);
Alan Coxd18a7502008-10-13 10:40:07 +0100642static int stli_getportstats(struct tty_struct *tty, struct stliport *portp, comstats_t __user *cp);
643static int stli_portcmdstats(struct tty_struct *tty, struct stliport *portp);
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800644static int stli_clrportstats(struct stliport *portp, comstats_t __user *cp);
645static int stli_getportstruct(struct stliport __user *arg);
646static int stli_getbrdstruct(struct stlibrd __user *arg);
647static struct stlibrd *stli_allocbrd(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800649static void stli_ecpinit(struct stlibrd *brdp);
650static void stli_ecpenable(struct stlibrd *brdp);
651static void stli_ecpdisable(struct stlibrd *brdp);
652static void __iomem *stli_ecpgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
653static void stli_ecpreset(struct stlibrd *brdp);
654static void stli_ecpintr(struct stlibrd *brdp);
655static void stli_ecpeiinit(struct stlibrd *brdp);
656static void stli_ecpeienable(struct stlibrd *brdp);
657static void stli_ecpeidisable(struct stlibrd *brdp);
658static void __iomem *stli_ecpeigetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
659static void stli_ecpeireset(struct stlibrd *brdp);
660static void stli_ecpmcenable(struct stlibrd *brdp);
661static void stli_ecpmcdisable(struct stlibrd *brdp);
662static void __iomem *stli_ecpmcgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
663static void stli_ecpmcreset(struct stlibrd *brdp);
664static void stli_ecppciinit(struct stlibrd *brdp);
665static void __iomem *stli_ecppcigetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
666static void stli_ecppcireset(struct stlibrd *brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800668static void stli_onbinit(struct stlibrd *brdp);
669static void stli_onbenable(struct stlibrd *brdp);
670static void stli_onbdisable(struct stlibrd *brdp);
671static void __iomem *stli_onbgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
672static void stli_onbreset(struct stlibrd *brdp);
673static void stli_onbeinit(struct stlibrd *brdp);
674static void stli_onbeenable(struct stlibrd *brdp);
675static void stli_onbedisable(struct stlibrd *brdp);
676static void __iomem *stli_onbegetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
677static void stli_onbereset(struct stlibrd *brdp);
678static void stli_bbyinit(struct stlibrd *brdp);
679static void __iomem *stli_bbygetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
680static void stli_bbyreset(struct stlibrd *brdp);
681static void stli_stalinit(struct stlibrd *brdp);
682static void __iomem *stli_stalgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
683static void stli_stalreset(struct stlibrd *brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Jiri Slaby1328d732006-12-08 02:39:19 -0800685static struct stliport *stli_getport(unsigned int brdnr, unsigned int panelnr, unsigned int portnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800687static int stli_initecp(struct stlibrd *brdp);
688static int stli_initonb(struct stlibrd *brdp);
Jiri Slabya00f33f2006-12-08 02:39:20 -0800689#if STLI_EISAPROBE != 0
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800690static int stli_eisamemprobe(struct stlibrd *brdp);
Jiri Slabya00f33f2006-12-08 02:39:20 -0800691#endif
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800692static int stli_initports(struct stlibrd *brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694/*****************************************************************************/
695
696/*
697 * Define the driver info for a user level shared memory device. This
698 * device will work sort of like the /dev/kmem device - except that it
699 * will give access to the shared memory on the Stallion intelligent
700 * board. This is also a very useful debugging tool.
701 */
Arjan van de Ven62322d22006-07-03 00:24:21 -0700702static const struct file_operations stli_fsiomem = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 .owner = THIS_MODULE,
704 .read = stli_memread,
705 .write = stli_memwrite,
706 .ioctl = stli_memioctl,
707};
708
709/*****************************************************************************/
710
711/*
712 * Define a timer_list entry for our poll routine. The slave board
713 * is polled every so often to see if anything needs doing. This is
714 * much cheaper on host cpu than using interrupts. It turns out to
715 * not increase character latency by much either...
716 */
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700717static DEFINE_TIMER(stli_timerlist, stli_poll, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719static int stli_timeron;
720
721/*
722 * Define the calculation for the timeout routine.
723 */
724#define STLI_TIMEOUT (jiffies + 1)
725
726/*****************************************************************************/
727
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800728static struct class *istallion_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800730static void stli_cleanup_ports(struct stlibrd *brdp)
Jiri Slaby845bead2006-12-08 02:39:17 -0800731{
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800732 struct stliport *portp;
Jiri Slaby845bead2006-12-08 02:39:17 -0800733 unsigned int j;
Alan Coxd18a7502008-10-13 10:40:07 +0100734 struct tty_struct *tty;
Jiri Slaby845bead2006-12-08 02:39:17 -0800735
736 for (j = 0; j < STL_MAXPORTS; j++) {
737 portp = brdp->ports[j];
738 if (portp != NULL) {
Alan Coxd18a7502008-10-13 10:40:07 +0100739 tty = tty_port_tty_get(&portp->port);
740 if (tty != NULL) {
741 tty_hangup(tty);
742 tty_kref_put(tty);
743 }
Jiri Slaby845bead2006-12-08 02:39:17 -0800744 kfree(portp);
745 }
746 }
747}
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749/*****************************************************************************/
750
751/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 * Parse the supplied argument string, into the board conf struct.
753 */
754
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800755static int stli_parsebrd(struct stlconf *confp, char **argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Jiri Slaby1328d732006-12-08 02:39:19 -0800757 unsigned int i;
Alan Cox4ac43602006-06-28 04:26:52 -0700758 char *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Alan Cox4ac43602006-06-28 04:26:52 -0700760 if (argp[0] == NULL || *argp[0] == 0)
761 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 for (sp = argp[0], i = 0; ((*sp != 0) && (i < 25)); sp++, i++)
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800764 *sp = tolower(*sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Tobias Klauserfe971072006-01-09 20:54:02 -0800766 for (i = 0; i < ARRAY_SIZE(stli_brdstr); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (strcmp(stli_brdstr[i].name, argp[0]) == 0)
768 break;
769 }
Tobias Klauserfe971072006-01-09 20:54:02 -0800770 if (i == ARRAY_SIZE(stli_brdstr)) {
Alan Coxa6614992009-01-02 13:46:50 +0000771 printk(KERN_WARNING "istallion: unknown board name, %s?\n", argp[0]);
Tobias Klauserfe971072006-01-09 20:54:02 -0800772 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
775 confp->brdtype = stli_brdstr[i].type;
Alan Cox4ac43602006-06-28 04:26:52 -0700776 if (argp[1] != NULL && *argp[1] != 0)
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800777 confp->ioaddr1 = simple_strtoul(argp[1], NULL, 0);
Alan Cox4ac43602006-06-28 04:26:52 -0700778 if (argp[2] != NULL && *argp[2] != 0)
Jiri Slabya3f8d9d2006-12-08 02:39:18 -0800779 confp->memaddr = simple_strtoul(argp[2], NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return(1);
781}
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783/*****************************************************************************/
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785static int stli_open(struct tty_struct *tty, struct file *filp)
786{
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800787 struct stlibrd *brdp;
788 struct stliport *portp;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000789 struct tty_port *port;
Jiri Slaby1328d732006-12-08 02:39:19 -0800790 unsigned int minordev, brdnr, portnr;
791 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 minordev = tty->index;
794 brdnr = MINOR2BRD(minordev);
795 if (brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -0700796 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -0700798 if (brdp == NULL)
799 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if ((brdp->state & BST_STARTED) == 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700801 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 portnr = MINOR2PORT(minordev);
Jiri Slaby1328d732006-12-08 02:39:19 -0800803 if (portnr > brdp->nrports)
Alan Cox4ac43602006-06-28 04:26:52 -0700804 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 portp = brdp->ports[portnr];
Alan Cox4ac43602006-06-28 04:26:52 -0700807 if (portp == NULL)
808 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (portp->devnr < 1)
Alan Cox4ac43602006-06-28 04:26:52 -0700810 return -ENODEV;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000811 port = &portp->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813/*
814 * On the first open of the device setup the port hardware, and
815 * initialize the per port data structure. Since initializing the port
816 * requires several commands to the board we will need to wait for any
817 * other open that is already initializing the port.
Alan Cox2a6eadb2009-01-02 13:46:18 +0000818 *
819 * Review - locking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 */
Alan Cox2a6eadb2009-01-02 13:46:18 +0000821 tty_port_tty_set(port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 tty->driver_data = portp;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000823 port->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 wait_event_interruptible(portp->raw_wait,
826 !test_bit(ST_INITIALIZING, &portp->state));
827 if (signal_pending(current))
Alan Cox4ac43602006-06-28 04:26:52 -0700828 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Alan Coxb02f5ad62008-07-16 21:55:53 +0100830 if ((portp->port.flags & ASYNC_INITIALIZED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 set_bit(ST_INITIALIZING, &portp->state);
Alan Coxd18a7502008-10-13 10:40:07 +0100832 if ((rc = stli_initopen(tty, brdp, portp)) >= 0) {
Alan Cox2a6eadb2009-01-02 13:46:18 +0000833 /* Locking */
834 port->flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 clear_bit(TTY_IO_ERROR, &tty->flags);
836 }
837 clear_bit(ST_INITIALIZING, &portp->state);
838 wake_up_interruptible(&portp->raw_wait);
839 if (rc < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700840 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
Alan Cox2a6eadb2009-01-02 13:46:18 +0000842 return tty_port_block_til_ready(&portp->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
845/*****************************************************************************/
846
847static void stli_close(struct tty_struct *tty, struct file *filp)
848{
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800849 struct stlibrd *brdp;
850 struct stliport *portp;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000851 struct tty_port *port;
Alan Cox4ac43602006-06-28 04:26:52 -0700852 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -0700855 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return;
Alan Cox2a6eadb2009-01-02 13:46:18 +0000857 port = &portp->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Alan Coxa6614992009-01-02 13:46:50 +0000859 if (tty_port_close_start(port, tty, filp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862/*
863 * May want to wait for data to drain before closing. The BUSY flag
864 * keeps track of whether we are still transmitting or not. It is
865 * updated by messages from the slave - indicating when all chars
866 * really have drained.
867 */
Alan Cox2a6eadb2009-01-02 13:46:18 +0000868 spin_lock_irqsave(&stli_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (tty == stli_txcooktty)
870 stli_flushchars(tty);
Alan Cox4ac43602006-06-28 04:26:52 -0700871 spin_unlock_irqrestore(&stli_lock, flags);
872
Alan Coxa6614992009-01-02 13:46:50 +0000873 /* We end up doing this twice for the moment. This needs looking at
874 eventually. Note we still use portp->closing_wait as a result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (portp->closing_wait != ASYNC_CLOSING_WAIT_NONE)
876 tty_wait_until_sent(tty, portp->closing_wait);
877
Alan Cox2a6eadb2009-01-02 13:46:18 +0000878 /* FIXME: port locking here needs attending to */
879 port->flags &= ~ASYNC_INITIALIZED;
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 brdp = stli_brds[portp->brdnr];
882 stli_rawclose(brdp, portp, 0, 0);
883 if (tty->termios->c_cflag & HUPCL) {
884 stli_mkasysigs(&portp->asig, 0, 0);
885 if (test_bit(ST_CMDING, &portp->state))
886 set_bit(ST_DOSIGS, &portp->state);
887 else
888 stli_sendcmd(brdp, portp, A_SETSIGNALS, &portp->asig,
889 sizeof(asysigs_t), 0);
890 }
891 clear_bit(ST_TXBUSY, &portp->state);
892 clear_bit(ST_RXSTOP, &portp->state);
893 set_bit(TTY_IO_ERROR, &tty->flags);
Alan Coxed569bf2008-07-22 13:44:14 +0100894 tty_ldisc_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 set_bit(ST_DOFLUSHRX, &portp->state);
896 stli_flushbuffer(tty);
897
Alan Coxa6614992009-01-02 13:46:50 +0000898 tty_port_close_end(port, tty);
899 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
902/*****************************************************************************/
903
904/*
905 * Carry out first open operations on a port. This involves a number of
906 * commands to be sent to the slave. We need to open the port, set the
907 * notification events, set the initial port settings, get and set the
908 * initial signal values. We sleep and wait in between each one. But
909 * this still all happens pretty quickly.
910 */
911
Alan Coxd18a7502008-10-13 10:40:07 +0100912static int stli_initopen(struct tty_struct *tty,
913 struct stlibrd *brdp, struct stliport *portp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Alan Cox4ac43602006-06-28 04:26:52 -0700915 asynotify_t nt;
916 asyport_t aport;
917 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 if ((rc = stli_rawopen(brdp, portp, 0, 1)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700920 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 memset(&nt, 0, sizeof(asynotify_t));
923 nt.data = (DT_TXLOW | DT_TXEMPTY | DT_RXBUSY | DT_RXBREAK);
924 nt.signal = SG_DCD;
925 if ((rc = stli_cmdwait(brdp, portp, A_SETNOTIFY, &nt,
926 sizeof(asynotify_t), 0)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700927 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Alan Coxd18a7502008-10-13 10:40:07 +0100929 stli_mkasyport(tty, portp, &aport, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if ((rc = stli_cmdwait(brdp, portp, A_SETPORT, &aport,
931 sizeof(asyport_t), 0)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700932 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 set_bit(ST_GETSIGS, &portp->state);
935 if ((rc = stli_cmdwait(brdp, portp, A_GETSIGNALS, &portp->asig,
936 sizeof(asysigs_t), 1)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700937 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (test_and_clear_bit(ST_GETSIGS, &portp->state))
939 portp->sigs = stli_mktiocm(portp->asig.sigvalue);
940 stli_mkasysigs(&portp->asig, 1, 1);
941 if ((rc = stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
942 sizeof(asysigs_t), 0)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -0700943 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Alan Cox4ac43602006-06-28 04:26:52 -0700945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
948/*****************************************************************************/
949
950/*
951 * Send an open message to the slave. This will sleep waiting for the
952 * acknowledgement, so must have user context. We need to co-ordinate
953 * with close events here, since we don't want open and close events
954 * to overlap.
955 */
956
Jiri Slaby1f8ec432006-12-08 02:39:18 -0800957static int stli_rawopen(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Alan Cox4ac43602006-06-28 04:26:52 -0700959 cdkhdr_t __iomem *hdrp;
960 cdkctrl_t __iomem *cp;
961 unsigned char __iomem *bits;
962 unsigned long flags;
963 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965/*
966 * Send a message to the slave to open this port.
967 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969/*
970 * Slave is already closing this port. This can happen if a hangup
971 * occurs on this port. So we must wait until it is complete. The
972 * order of opens and closes may not be preserved across shared
973 * memory, so we must wait until it is complete.
974 */
975 wait_event_interruptible(portp->raw_wait,
976 !test_bit(ST_CLOSING, &portp->state));
977 if (signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 return -ERESTARTSYS;
979 }
980
981/*
982 * Everything is ready now, so write the open message into shared
983 * memory. Once the message is in set the service bits to say that
984 * this port wants service.
985 */
Alan Cox4ac43602006-06-28 04:26:52 -0700986 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -0700988 cp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->ctrl;
989 writel(arg, &cp->openarg);
990 writeb(1, &cp->open);
991 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
992 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -0700994 writeb(readb(bits) | portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 EBRDDISABLE(brdp);
996
997 if (wait == 0) {
Alan Cox4ac43602006-06-28 04:26:52 -0700998 spin_unlock_irqrestore(&brd_lock, flags);
999 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
1001
1002/*
1003 * Slave is in action, so now we must wait for the open acknowledgment
1004 * to come back.
1005 */
1006 rc = 0;
1007 set_bit(ST_OPENING, &portp->state);
Alan Cox4ac43602006-06-28 04:26:52 -07001008 spin_unlock_irqrestore(&brd_lock, flags);
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 wait_event_interruptible(portp->raw_wait,
1011 !test_bit(ST_OPENING, &portp->state));
1012 if (signal_pending(current))
1013 rc = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 if ((rc == 0) && (portp->rc != 0))
1016 rc = -EIO;
Alan Cox4ac43602006-06-28 04:26:52 -07001017 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
1020/*****************************************************************************/
1021
1022/*
1023 * Send a close message to the slave. Normally this will sleep waiting
1024 * for the acknowledgement, but if wait parameter is 0 it will not. If
1025 * wait is true then must have user context (to sleep).
1026 */
1027
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001028static int stli_rawclose(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Alan Cox4ac43602006-06-28 04:26:52 -07001030 cdkhdr_t __iomem *hdrp;
1031 cdkctrl_t __iomem *cp;
1032 unsigned char __iomem *bits;
1033 unsigned long flags;
1034 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036/*
1037 * Slave is already closing this port. This can happen if a hangup
1038 * occurs on this port.
1039 */
1040 if (wait) {
1041 wait_event_interruptible(portp->raw_wait,
1042 !test_bit(ST_CLOSING, &portp->state));
1043 if (signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return -ERESTARTSYS;
1045 }
1046 }
1047
1048/*
1049 * Write the close command into shared memory.
1050 */
Alan Cox4ac43602006-06-28 04:26:52 -07001051 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001053 cp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->ctrl;
1054 writel(arg, &cp->closearg);
1055 writeb(1, &cp->close);
1056 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1057 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -07001059 writeb(readb(bits) |portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 EBRDDISABLE(brdp);
1061
1062 set_bit(ST_CLOSING, &portp->state);
Alan Cox4ac43602006-06-28 04:26:52 -07001063 spin_unlock_irqrestore(&brd_lock, flags);
1064
1065 if (wait == 0)
1066 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068/*
1069 * Slave is in action, so now we must wait for the open acknowledgment
1070 * to come back.
1071 */
1072 rc = 0;
1073 wait_event_interruptible(portp->raw_wait,
1074 !test_bit(ST_CLOSING, &portp->state));
1075 if (signal_pending(current))
1076 rc = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 if ((rc == 0) && (portp->rc != 0))
1079 rc = -EIO;
Alan Cox4ac43602006-06-28 04:26:52 -07001080 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
1083/*****************************************************************************/
1084
1085/*
1086 * Send a command to the slave and wait for the response. This must
1087 * have user context (it sleeps). This routine is generic in that it
1088 * can send any type of command. Its purpose is to wait for that command
1089 * to complete (as opposed to initiating the command then returning).
1090 */
1091
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001092static 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 -07001093{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 wait_event_interruptible(portp->raw_wait,
1095 !test_bit(ST_CMDING, &portp->state));
Alan Cox4ac43602006-06-28 04:26:52 -07001096 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 stli_sendcmd(brdp, portp, cmd, arg, size, copyback);
1100
1101 wait_event_interruptible(portp->raw_wait,
1102 !test_bit(ST_CMDING, &portp->state));
Alan Cox4ac43602006-06-28 04:26:52 -07001103 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 if (portp->rc != 0)
Alan Cox4ac43602006-06-28 04:26:52 -07001107 return -EIO;
1108 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
1111/*****************************************************************************/
1112
1113/*
1114 * Send the termios settings for this port to the slave. This sleeps
1115 * waiting for the command to complete - so must have user context.
1116 */
1117
Alan Coxd18a7502008-10-13 10:40:07 +01001118static int stli_setport(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Alan Coxd18a7502008-10-13 10:40:07 +01001120 struct stliport *portp = tty->driver_data;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001121 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001122 asyport_t aport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Alan Cox4ac43602006-06-28 04:26:52 -07001124 if (portp == NULL)
1125 return -ENODEV;
Jiri Slaby1328d732006-12-08 02:39:19 -08001126 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001127 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001129 if (brdp == NULL)
1130 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Alan Coxd18a7502008-10-13 10:40:07 +01001132 stli_mkasyport(tty, portp, &aport, tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return(stli_cmdwait(brdp, portp, A_SETPORT, &aport, sizeof(asyport_t), 0));
1134}
1135
1136/*****************************************************************************/
1137
Alan Cox31f35932009-01-02 13:45:05 +00001138static int stli_carrier_raised(struct tty_port *port)
1139{
1140 struct stliport *portp = container_of(port, struct stliport, port);
1141 return (portp->sigs & TIOCM_CD) ? 1 : 0;
1142}
1143
Alan Coxfcc8ac12009-06-11 12:24:17 +01001144static void stli_dtr_rts(struct tty_port *port, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Alan Cox2a6eadb2009-01-02 13:46:18 +00001146 struct stliport *portp = container_of(port, struct stliport, port);
1147 struct stlibrd *brdp = stli_brds[portp->brdnr];
Alan Coxfcc8ac12009-06-11 12:24:17 +01001148 stli_mkasysigs(&portp->asig, on, on);
Alan Cox2a6eadb2009-01-02 13:46:18 +00001149 if (stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
1150 sizeof(asysigs_t), 0) < 0)
Alan Coxfcc8ac12009-06-11 12:24:17 +01001151 printk(KERN_WARNING "istallion: dtr set failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
Alan Cox2a6eadb2009-01-02 13:46:18 +00001154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155/*****************************************************************************/
1156
1157/*
1158 * Write routine. Take the data and put it in the shared memory ring
1159 * queue. If port is not already sending chars then need to mark the
1160 * service bits for this port.
1161 */
1162
1163static int stli_write(struct tty_struct *tty, const unsigned char *buf, int count)
1164{
Alan Cox4ac43602006-06-28 04:26:52 -07001165 cdkasy_t __iomem *ap;
1166 cdkhdr_t __iomem *hdrp;
1167 unsigned char __iomem *bits;
1168 unsigned char __iomem *shbuf;
1169 unsigned char *chbuf;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001170 struct stliport *portp;
1171 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001172 unsigned int len, stlen, head, tail, size;
1173 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (tty == stli_txcooktty)
1176 stli_flushchars(tty);
1177 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001178 if (portp == NULL)
1179 return 0;
Jiri Slaby1328d732006-12-08 02:39:19 -08001180 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001181 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001183 if (brdp == NULL)
1184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 chbuf = (unsigned char *) buf;
1186
1187/*
1188 * All data is now local, shove as much as possible into shared memory.
1189 */
Alan Cox4ac43602006-06-28 04:26:52 -07001190 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001192 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1193 head = (unsigned int) readw(&ap->txq.head);
1194 tail = (unsigned int) readw(&ap->txq.tail);
1195 if (tail != ((unsigned int) readw(&ap->txq.tail)))
1196 tail = (unsigned int) readw(&ap->txq.tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 size = portp->txsize;
1198 if (head >= tail) {
1199 len = size - (head - tail) - 1;
1200 stlen = size - head;
1201 } else {
1202 len = tail - head - 1;
1203 stlen = len;
1204 }
1205
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08001206 len = min(len, (unsigned int)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 count = 0;
Alan Cox4ac43602006-06-28 04:26:52 -07001208 shbuf = (char __iomem *) EBRDGETMEMPTR(brdp, portp->txoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 while (len > 0) {
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08001211 stlen = min(len, stlen);
Alan Cox4ac43602006-06-28 04:26:52 -07001212 memcpy_toio(shbuf + head, chbuf, stlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 chbuf += stlen;
1214 len -= stlen;
1215 count += stlen;
1216 head += stlen;
1217 if (head >= size) {
1218 head = 0;
1219 stlen = tail;
1220 }
1221 }
1222
Alan Cox4ac43602006-06-28 04:26:52 -07001223 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1224 writew(head, &ap->txq.head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (test_bit(ST_TXBUSY, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07001226 if (readl(&ap->changed.data) & DT_TXEMPTY)
1227 writel(readl(&ap->changed.data) & ~DT_TXEMPTY, &ap->changed.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
Alan Cox4ac43602006-06-28 04:26:52 -07001229 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1230 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -07001232 writeb(readb(bits) | portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 set_bit(ST_TXBUSY, &portp->state);
1234 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001235 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 return(count);
1238}
1239
1240/*****************************************************************************/
1241
1242/*
1243 * Output a single character. We put it into a temporary local buffer
1244 * (for speed) then write out that buffer when the flushchars routine
1245 * is called. There is a safety catch here so that if some other port
1246 * writes chars before the current buffer has been, then we write them
1247 * first them do the new ports.
1248 */
1249
Wang Chen42a77a12008-07-21 17:48:59 +08001250static int stli_putchar(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (tty != stli_txcooktty) {
Alan Cox4ac43602006-06-28 04:26:52 -07001253 if (stli_txcooktty != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 stli_flushchars(stli_txcooktty);
1255 stli_txcooktty = tty;
1256 }
1257
1258 stli_txcookbuf[stli_txcooksize++] = ch;
Wang Chen42a77a12008-07-21 17:48:59 +08001259 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
1262/*****************************************************************************/
1263
1264/*
1265 * Transfer characters from the local TX cooking buffer to the board.
1266 * We sort of ignore the tty that gets passed in here. We rely on the
1267 * info stored with the TX cook buffer to tell us which port to flush
1268 * the data on. In any case we clean out the TX cook buffer, for re-use
1269 * by someone else.
1270 */
1271
1272static void stli_flushchars(struct tty_struct *tty)
1273{
Alan Cox4ac43602006-06-28 04:26:52 -07001274 cdkhdr_t __iomem *hdrp;
1275 unsigned char __iomem *bits;
1276 cdkasy_t __iomem *ap;
1277 struct tty_struct *cooktty;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001278 struct stliport *portp;
1279 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001280 unsigned int len, stlen, head, tail, size, count, cooksize;
1281 unsigned char *buf;
1282 unsigned char __iomem *shbuf;
1283 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 cooksize = stli_txcooksize;
1286 cooktty = stli_txcooktty;
1287 stli_txcooksize = 0;
1288 stli_txcookrealsize = 0;
Alan Cox4ac43602006-06-28 04:26:52 -07001289 stli_txcooktty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Alan Cox4ac43602006-06-28 04:26:52 -07001291 if (cooktty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return;
1293 if (tty != cooktty)
1294 tty = cooktty;
1295 if (cooksize == 0)
1296 return;
1297
1298 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001299 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001301 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return;
1303 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001304 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 return;
1306
Alan Cox4ac43602006-06-28 04:26:52 -07001307 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 EBRDENABLE(brdp);
1309
Alan Cox4ac43602006-06-28 04:26:52 -07001310 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1311 head = (unsigned int) readw(&ap->txq.head);
1312 tail = (unsigned int) readw(&ap->txq.tail);
1313 if (tail != ((unsigned int) readw(&ap->txq.tail)))
1314 tail = (unsigned int) readw(&ap->txq.tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 size = portp->txsize;
1316 if (head >= tail) {
1317 len = size - (head - tail) - 1;
1318 stlen = size - head;
1319 } else {
1320 len = tail - head - 1;
1321 stlen = len;
1322 }
1323
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08001324 len = min(len, cooksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 count = 0;
Al Viro29756fa2006-10-10 22:47:27 +01001326 shbuf = EBRDGETMEMPTR(brdp, portp->txoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 buf = stli_txcookbuf;
1328
1329 while (len > 0) {
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08001330 stlen = min(len, stlen);
Alan Cox4ac43602006-06-28 04:26:52 -07001331 memcpy_toio(shbuf + head, buf, stlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 buf += stlen;
1333 len -= stlen;
1334 count += stlen;
1335 head += stlen;
1336 if (head >= size) {
1337 head = 0;
1338 stlen = tail;
1339 }
1340 }
1341
Alan Cox4ac43602006-06-28 04:26:52 -07001342 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1343 writew(head, &ap->txq.head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 if (test_bit(ST_TXBUSY, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07001346 if (readl(&ap->changed.data) & DT_TXEMPTY)
1347 writel(readl(&ap->changed.data) & ~DT_TXEMPTY, &ap->changed.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
Alan Cox4ac43602006-06-28 04:26:52 -07001349 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1350 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -07001352 writeb(readb(bits) | portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 set_bit(ST_TXBUSY, &portp->state);
1354
1355 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001356 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
1359/*****************************************************************************/
1360
1361static int stli_writeroom(struct tty_struct *tty)
1362{
Alan Cox4ac43602006-06-28 04:26:52 -07001363 cdkasyrq_t __iomem *rp;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001364 struct stliport *portp;
1365 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001366 unsigned int head, tail, len;
1367 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 if (tty == stli_txcooktty) {
1370 if (stli_txcookrealsize != 0) {
1371 len = stli_txcookrealsize - stli_txcooksize;
Alan Cox4ac43602006-06-28 04:26:52 -07001372 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374 }
1375
1376 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001377 if (portp == NULL)
1378 return 0;
Jiri Slaby1328d732006-12-08 02:39:19 -08001379 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001380 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001382 if (brdp == NULL)
1383 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Alan Cox4ac43602006-06-28 04:26:52 -07001385 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001387 rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->txq;
1388 head = (unsigned int) readw(&rp->head);
1389 tail = (unsigned int) readw(&rp->tail);
1390 if (tail != ((unsigned int) readw(&rp->tail)))
1391 tail = (unsigned int) readw(&rp->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 len = (head >= tail) ? (portp->txsize - (head - tail)) : (tail - head);
1393 len--;
1394 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001395 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 if (tty == stli_txcooktty) {
1398 stli_txcookrealsize = len;
1399 len -= stli_txcooksize;
1400 }
Alan Cox4ac43602006-06-28 04:26:52 -07001401 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
1403
1404/*****************************************************************************/
1405
1406/*
1407 * Return the number of characters in the transmit buffer. Normally we
1408 * will return the number of chars in the shared memory ring queue.
1409 * We need to kludge around the case where the shared memory buffer is
1410 * empty but not all characters have drained yet, for this case just
1411 * return that there is 1 character in the buffer!
1412 */
1413
1414static int stli_charsinbuffer(struct tty_struct *tty)
1415{
Alan Cox4ac43602006-06-28 04:26:52 -07001416 cdkasyrq_t __iomem *rp;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001417 struct stliport *portp;
1418 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001419 unsigned int head, tail, len;
1420 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (tty == stli_txcooktty)
1423 stli_flushchars(tty);
1424 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001425 if (portp == NULL)
1426 return 0;
Jiri Slaby1328d732006-12-08 02:39:19 -08001427 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001428 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001430 if (brdp == NULL)
1431 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Alan Cox4ac43602006-06-28 04:26:52 -07001433 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001435 rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->txq;
1436 head = (unsigned int) readw(&rp->head);
1437 tail = (unsigned int) readw(&rp->tail);
1438 if (tail != ((unsigned int) readw(&rp->tail)))
1439 tail = (unsigned int) readw(&rp->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 len = (head >= tail) ? (head - tail) : (portp->txsize - (tail - head));
1441 if ((len == 0) && test_bit(ST_TXBUSY, &portp->state))
1442 len = 1;
1443 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07001444 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Alan Cox4ac43602006-06-28 04:26:52 -07001446 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
1449/*****************************************************************************/
1450
1451/*
1452 * Generate the serial struct info.
1453 */
1454
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001455static int stli_getserial(struct stliport *portp, struct serial_struct __user *sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Alan Cox4ac43602006-06-28 04:26:52 -07001457 struct serial_struct sio;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001458 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 memset(&sio, 0, sizeof(struct serial_struct));
1461 sio.type = PORT_UNKNOWN;
1462 sio.line = portp->portnr;
1463 sio.irq = 0;
Alan Coxb02f5ad62008-07-16 21:55:53 +01001464 sio.flags = portp->port.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 sio.baud_base = portp->baud_base;
Alan Coxa6614992009-01-02 13:46:50 +00001466 sio.close_delay = portp->port.close_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 sio.closing_wait = portp->closing_wait;
1468 sio.custom_divisor = portp->custom_divisor;
1469 sio.xmit_fifo_size = 0;
1470 sio.hub6 = 0;
1471
1472 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001473 if (brdp != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 sio.port = brdp->iobase;
1475
1476 return copy_to_user(sp, &sio, sizeof(struct serial_struct)) ?
1477 -EFAULT : 0;
1478}
1479
1480/*****************************************************************************/
1481
1482/*
1483 * Set port according to the serial struct info.
1484 * At this point we do not do any auto-configure stuff, so we will
1485 * just quietly ignore any requests to change irq, etc.
1486 */
1487
Alan Coxd18a7502008-10-13 10:40:07 +01001488static int stli_setserial(struct tty_struct *tty, struct serial_struct __user *sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
Alan Cox4ac43602006-06-28 04:26:52 -07001490 struct serial_struct sio;
1491 int rc;
Alan Coxd18a7502008-10-13 10:40:07 +01001492 struct stliport *portp = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 if (copy_from_user(&sio, sp, sizeof(struct serial_struct)))
1495 return -EFAULT;
1496 if (!capable(CAP_SYS_ADMIN)) {
1497 if ((sio.baud_base != portp->baud_base) ||
Alan Coxa6614992009-01-02 13:46:50 +00001498 (sio.close_delay != portp->port.close_delay) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 ((sio.flags & ~ASYNC_USR_MASK) !=
Alan Coxb02f5ad62008-07-16 21:55:53 +01001500 (portp->port.flags & ~ASYNC_USR_MASK)))
Alan Cox4ac43602006-06-28 04:26:52 -07001501 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503
Alan Coxb02f5ad62008-07-16 21:55:53 +01001504 portp->port.flags = (portp->port.flags & ~ASYNC_USR_MASK) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 (sio.flags & ASYNC_USR_MASK);
1506 portp->baud_base = sio.baud_base;
Alan Coxa6614992009-01-02 13:46:50 +00001507 portp->port.close_delay = sio.close_delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 portp->closing_wait = sio.closing_wait;
1509 portp->custom_divisor = sio.custom_divisor;
1510
Alan Coxd18a7502008-10-13 10:40:07 +01001511 if ((rc = stli_setport(tty)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -07001512 return rc;
1513 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
1516/*****************************************************************************/
1517
1518static int stli_tiocmget(struct tty_struct *tty, struct file *file)
1519{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001520 struct stliport *portp = tty->driver_data;
1521 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 int rc;
1523
Alan Cox4ac43602006-06-28 04:26:52 -07001524 if (portp == NULL)
1525 return -ENODEV;
Jiri Slaby1328d732006-12-08 02:39:19 -08001526 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001527 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001529 if (brdp == NULL)
1530 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 if (tty->flags & (1 << TTY_IO_ERROR))
Alan Cox4ac43602006-06-28 04:26:52 -07001532 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 if ((rc = stli_cmdwait(brdp, portp, A_GETSIGNALS,
1535 &portp->asig, sizeof(asysigs_t), 1)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -07001536 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 return stli_mktiocm(portp->asig.sigvalue);
1539}
1540
1541static int stli_tiocmset(struct tty_struct *tty, struct file *file,
1542 unsigned int set, unsigned int clear)
1543{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001544 struct stliport *portp = tty->driver_data;
1545 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 int rts = -1, dtr = -1;
1547
Alan Cox4ac43602006-06-28 04:26:52 -07001548 if (portp == NULL)
1549 return -ENODEV;
Jiri Slaby1328d732006-12-08 02:39:19 -08001550 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001553 if (brdp == NULL)
1554 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (tty->flags & (1 << TTY_IO_ERROR))
Alan Cox4ac43602006-06-28 04:26:52 -07001556 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 if (set & TIOCM_RTS)
1559 rts = 1;
1560 if (set & TIOCM_DTR)
1561 dtr = 1;
1562 if (clear & TIOCM_RTS)
1563 rts = 0;
1564 if (clear & TIOCM_DTR)
1565 dtr = 0;
1566
1567 stli_mkasysigs(&portp->asig, dtr, rts);
1568
1569 return stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
1570 sizeof(asysigs_t), 0);
1571}
1572
1573static int stli_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg)
1574{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001575 struct stliport *portp;
1576 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001577 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 void __user *argp = (void __user *)arg;
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001581 if (portp == NULL)
1582 return -ENODEV;
Jiri Slaby1328d732006-12-08 02:39:19 -08001583 if (portp->brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07001584 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001586 if (brdp == NULL)
1587 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
1590 (cmd != COM_GETPORTSTATS) && (cmd != COM_CLRPORTSTATS)) {
1591 if (tty->flags & (1 << TTY_IO_ERROR))
Alan Cox4ac43602006-06-28 04:26:52 -07001592 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 }
1594
1595 rc = 0;
1596
1597 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 case TIOCGSERIAL:
1599 rc = stli_getserial(portp, argp);
1600 break;
1601 case TIOCSSERIAL:
Alan Coxd18a7502008-10-13 10:40:07 +01001602 rc = stli_setserial(tty, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604 case STL_GETPFLAG:
1605 rc = put_user(portp->pflag, (unsigned __user *)argp);
1606 break;
1607 case STL_SETPFLAG:
1608 if ((rc = get_user(portp->pflag, (unsigned __user *)argp)) == 0)
Alan Coxd18a7502008-10-13 10:40:07 +01001609 stli_setport(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 break;
1611 case COM_GETPORTSTATS:
Alan Coxd18a7502008-10-13 10:40:07 +01001612 rc = stli_getportstats(tty, portp, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 break;
1614 case COM_CLRPORTSTATS:
1615 rc = stli_clrportstats(portp, argp);
1616 break;
1617 case TIOCSERCONFIG:
1618 case TIOCSERGWILD:
1619 case TIOCSERSWILD:
1620 case TIOCSERGETLSR:
1621 case TIOCSERGSTRUCT:
1622 case TIOCSERGETMULTI:
1623 case TIOCSERSETMULTI:
1624 default:
1625 rc = -ENOIOCTLCMD;
1626 break;
1627 }
1628
Alan Cox4ac43602006-06-28 04:26:52 -07001629 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
1632/*****************************************************************************/
1633
1634/*
1635 * This routine assumes that we have user context and can sleep.
1636 * Looks like it is true for the current ttys implementation..!!
1637 */
1638
Alan Cox606d0992006-12-08 02:38:45 -08001639static void stli_settermios(struct tty_struct *tty, struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001641 struct stliport *portp;
1642 struct stlibrd *brdp;
Alan Cox606d0992006-12-08 02:38:45 -08001643 struct ktermios *tiosp;
Alan Cox4ac43602006-06-28 04:26:52 -07001644 asyport_t aport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001647 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001649 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 return;
1651 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001652 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return;
1654
1655 tiosp = tty->termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Alan Coxd18a7502008-10-13 10:40:07 +01001657 stli_mkasyport(tty, portp, &aport, tiosp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 stli_cmdwait(brdp, portp, A_SETPORT, &aport, sizeof(asyport_t), 0);
1659 stli_mkasysigs(&portp->asig, ((tiosp->c_cflag & CBAUD) ? 1 : 0), -1);
1660 stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
1661 sizeof(asysigs_t), 0);
1662 if ((old->c_cflag & CRTSCTS) && ((tiosp->c_cflag & CRTSCTS) == 0))
1663 tty->hw_stopped = 0;
1664 if (((old->c_cflag & CLOCAL) == 0) && (tiosp->c_cflag & CLOCAL))
Alan Coxb02f5ad62008-07-16 21:55:53 +01001665 wake_up_interruptible(&portp->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
1668/*****************************************************************************/
1669
1670/*
1671 * Attempt to flow control who ever is sending us data. We won't really
1672 * do any flow control action here. We can't directly, and even if we
1673 * wanted to we would have to send a command to the slave. The slave
1674 * knows how to flow control, and will do so when its buffers reach its
1675 * internal high water marks. So what we will do is set a local state
1676 * bit that will stop us sending any RX data up from the poll routine
1677 * (which is the place where RX data from the slave is handled).
1678 */
1679
1680static void stli_throttle(struct tty_struct *tty)
1681{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001682 struct stliport *portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001683 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 set_bit(ST_RXSTOP, &portp->state);
1686}
1687
1688/*****************************************************************************/
1689
1690/*
1691 * Unflow control the device sending us data... That means that all
1692 * we have to do is clear the RXSTOP state bit. The next poll call
1693 * will then be able to pass the RX data back up.
1694 */
1695
1696static void stli_unthrottle(struct tty_struct *tty)
1697{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001698 struct stliport *portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001699 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 clear_bit(ST_RXSTOP, &portp->state);
1702}
1703
1704/*****************************************************************************/
1705
1706/*
Alan Cox4ac43602006-06-28 04:26:52 -07001707 * Stop the transmitter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 */
1709
1710static void stli_stop(struct tty_struct *tty)
1711{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
1713
1714/*****************************************************************************/
1715
1716/*
Alan Cox4ac43602006-06-28 04:26:52 -07001717 * Start the transmitter again.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 */
1719
1720static void stli_start(struct tty_struct *tty)
1721{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
1724/*****************************************************************************/
1725
1726/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 * Hangup this port. This is pretty much like closing the port, only
1728 * a little more brutal. No waiting for data to drain. Shutdown the
1729 * port and maybe drop signals. This is rather tricky really. We want
1730 * to close the port as well.
1731 */
1732
1733static void stli_hangup(struct tty_struct *tty)
1734{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001735 struct stliport *portp;
1736 struct stlibrd *brdp;
Alan Cox2a6eadb2009-01-02 13:46:18 +00001737 struct tty_port *port;
Alan Cox4ac43602006-06-28 04:26:52 -07001738 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001741 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001743 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 return;
1745 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001746 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return;
Alan Cox2a6eadb2009-01-02 13:46:18 +00001748 port = &portp->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Alan Cox2a6eadb2009-01-02 13:46:18 +00001750 spin_lock_irqsave(&port->lock, flags);
1751 port->flags &= ~ASYNC_INITIALIZED;
1752 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Alan Cox4ac43602006-06-28 04:26:52 -07001754 if (!test_bit(ST_CLOSING, &portp->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 stli_rawclose(brdp, portp, 0, 0);
Alan Cox4ac43602006-06-28 04:26:52 -07001756
1757 spin_lock_irqsave(&stli_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (tty->termios->c_cflag & HUPCL) {
1759 stli_mkasysigs(&portp->asig, 0, 0);
1760 if (test_bit(ST_CMDING, &portp->state)) {
1761 set_bit(ST_DOSIGS, &portp->state);
1762 set_bit(ST_DOFLUSHTX, &portp->state);
1763 set_bit(ST_DOFLUSHRX, &portp->state);
1764 } else {
1765 stli_sendcmd(brdp, portp, A_SETSIGNALSF,
1766 &portp->asig, sizeof(asysigs_t), 0);
1767 }
1768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 clear_bit(ST_TXBUSY, &portp->state);
1771 clear_bit(ST_RXSTOP, &portp->state);
1772 set_bit(TTY_IO_ERROR, &tty->flags);
Alan Cox4ac43602006-06-28 04:26:52 -07001773 spin_unlock_irqrestore(&stli_lock, flags);
1774
Alan Cox2a6eadb2009-01-02 13:46:18 +00001775 tty_port_hangup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776}
1777
1778/*****************************************************************************/
1779
1780/*
1781 * Flush characters from the lower buffer. We may not have user context
1782 * so we cannot sleep waiting for it to complete. Also we need to check
1783 * if there is chars for this port in the TX cook buffer, and flush them
1784 * as well.
1785 */
1786
1787static void stli_flushbuffer(struct tty_struct *tty)
1788{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001789 struct stliport *portp;
1790 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07001791 unsigned long ftype, flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001794 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001796 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return;
1798 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001799 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 return;
1801
Alan Cox4ac43602006-06-28 04:26:52 -07001802 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (tty == stli_txcooktty) {
Alan Cox4ac43602006-06-28 04:26:52 -07001804 stli_txcooktty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 stli_txcooksize = 0;
1806 stli_txcookrealsize = 0;
1807 }
1808 if (test_bit(ST_CMDING, &portp->state)) {
1809 set_bit(ST_DOFLUSHTX, &portp->state);
1810 } else {
1811 ftype = FLUSHTX;
1812 if (test_bit(ST_DOFLUSHRX, &portp->state)) {
1813 ftype |= FLUSHRX;
1814 clear_bit(ST_DOFLUSHRX, &portp->state);
1815 }
Alan Cox4ac43602006-06-28 04:26:52 -07001816 __stli_sendcmd(brdp, portp, A_FLUSH, &ftype, sizeof(u32), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
Alan Cox4ac43602006-06-28 04:26:52 -07001818 spin_unlock_irqrestore(&brd_lock, flags);
1819 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820}
1821
1822/*****************************************************************************/
1823
Alan Cox9e989662008-07-22 11:18:03 +01001824static int stli_breakctl(struct tty_struct *tty, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001826 struct stlibrd *brdp;
1827 struct stliport *portp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 long arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001831 if (portp == NULL)
Alan Cox9e989662008-07-22 11:18:03 +01001832 return -EINVAL;
Jiri Slaby1328d732006-12-08 02:39:19 -08001833 if (portp->brdnr >= stli_nrbrds)
Alan Cox9e989662008-07-22 11:18:03 +01001834 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001836 if (brdp == NULL)
Alan Cox9e989662008-07-22 11:18:03 +01001837 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 arg = (state == -1) ? BREAKON : BREAKOFF;
1840 stli_cmdwait(brdp, portp, A_BREAK, &arg, sizeof(long), 0);
Alan Cox9e989662008-07-22 11:18:03 +01001841 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
1843
1844/*****************************************************************************/
1845
1846static void stli_waituntilsent(struct tty_struct *tty, int timeout)
1847{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001848 struct stliport *portp;
Alan Cox4ac43602006-06-28 04:26:52 -07001849 unsigned long tend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001852 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return;
1854
1855 if (timeout == 0)
1856 timeout = HZ;
1857 tend = jiffies + timeout;
1858
1859 while (test_bit(ST_TXBUSY, &portp->state)) {
1860 if (signal_pending(current))
1861 break;
1862 msleep_interruptible(20);
1863 if (time_after_eq(jiffies, tend))
1864 break;
1865 }
1866}
1867
1868/*****************************************************************************/
1869
1870static void stli_sendxchar(struct tty_struct *tty, char ch)
1871{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001872 struct stlibrd *brdp;
1873 struct stliport *portp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 asyctrl_t actrl;
1875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 portp = tty->driver_data;
Alan Cox4ac43602006-06-28 04:26:52 -07001877 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 return;
Jiri Slaby1328d732006-12-08 02:39:19 -08001879 if (portp->brdnr >= stli_nrbrds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return;
1881 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001882 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return;
1884
1885 memset(&actrl, 0, sizeof(asyctrl_t));
1886 if (ch == STOP_CHAR(tty)) {
1887 actrl.rxctrl = CT_STOPFLOW;
1888 } else if (ch == START_CHAR(tty)) {
1889 actrl.rxctrl = CT_STARTFLOW;
1890 } else {
1891 actrl.txctrl = CT_SENDCHR;
1892 actrl.tximdch = ch;
1893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 stli_cmdwait(brdp, portp, A_PORTCTRL, &actrl, sizeof(asyctrl_t), 0);
1895}
1896
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001897static void stli_portinfo(struct seq_file *m, struct stlibrd *brdp, struct stliport *portp, int portnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001899 char *uart;
1900 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Alan Coxd18a7502008-10-13 10:40:07 +01001902 rc = stli_portcmdstats(NULL, portp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 uart = "UNKNOWN";
1905 if (brdp->state & BST_STARTED) {
1906 switch (stli_comstats.hwid) {
Alan Cox4ac43602006-06-28 04:26:52 -07001907 case 0: uart = "2681"; break;
1908 case 1: uart = "SC26198"; break;
1909 default:uart = "CD1400"; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
1911 }
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001912 seq_printf(m, "%d: uart:%s ", portnr, uart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 if ((brdp->state & BST_STARTED) && (rc >= 0)) {
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001915 char sep;
1916
1917 seq_printf(m, "tx:%d rx:%d", (int) stli_comstats.txtotal,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 (int) stli_comstats.rxtotal);
1919
1920 if (stli_comstats.rxframing)
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001921 seq_printf(m, " fe:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 (int) stli_comstats.rxframing);
1923 if (stli_comstats.rxparity)
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001924 seq_printf(m, " pe:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 (int) stli_comstats.rxparity);
1926 if (stli_comstats.rxbreaks)
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001927 seq_printf(m, " brk:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 (int) stli_comstats.rxbreaks);
1929 if (stli_comstats.rxoverrun)
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001930 seq_printf(m, " oe:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 (int) stli_comstats.rxoverrun);
1932
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001933 sep = ' ';
1934 if (stli_comstats.signals & TIOCM_RTS) {
1935 seq_printf(m, "%c%s", sep, "RTS");
1936 sep = '|';
1937 }
1938 if (stli_comstats.signals & TIOCM_CTS) {
1939 seq_printf(m, "%c%s", sep, "CTS");
1940 sep = '|';
1941 }
1942 if (stli_comstats.signals & TIOCM_DTR) {
1943 seq_printf(m, "%c%s", sep, "DTR");
1944 sep = '|';
1945 }
1946 if (stli_comstats.signals & TIOCM_CD) {
1947 seq_printf(m, "%c%s", sep, "DCD");
1948 sep = '|';
1949 }
1950 if (stli_comstats.signals & TIOCM_DSR) {
1951 seq_printf(m, "%c%s", sep, "DSR");
1952 sep = '|';
1953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001955 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
1957
1958/*****************************************************************************/
1959
1960/*
1961 * Port info, read from the /proc file system.
1962 */
1963
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001964static int stli_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08001966 struct stlibrd *brdp;
1967 struct stliport *portp;
Jiri Slaby1328d732006-12-08 02:39:19 -08001968 unsigned int brdnr, portnr, totalport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 totalport = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001972 seq_printf(m, "%s: version %s\n", stli_drvtitle, stli_drvversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974/*
1975 * We scan through for each board, panel and port. The offset is
1976 * calculated on the fly, and irrelevant ports are skipped.
1977 */
1978 for (brdnr = 0; (brdnr < stli_nrbrds); brdnr++) {
1979 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001980 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 continue;
1982 if (brdp->state == 0)
1983 continue;
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 totalport = brdnr * STL_MAXPORTS;
1986 for (portnr = 0; (portnr < brdp->nrports); portnr++,
1987 totalport++) {
1988 portp = brdp->ports[portnr];
Alan Cox4ac43602006-06-28 04:26:52 -07001989 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 continue;
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001991 stli_portinfo(m, brdp, portp, totalport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
1993 }
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001994 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995}
1996
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07001997static int stli_proc_open(struct inode *inode, struct file *file)
1998{
1999 return single_open(file, stli_proc_show, NULL);
2000}
2001
2002static const struct file_operations stli_proc_fops = {
2003 .owner = THIS_MODULE,
2004 .open = stli_proc_open,
2005 .read = seq_read,
2006 .llseek = seq_lseek,
2007 .release = single_release,
2008};
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010/*****************************************************************************/
2011
2012/*
2013 * Generic send command routine. This will send a message to the slave,
2014 * of the specified type with the specified argument. Must be very
2015 * careful of data that will be copied out from shared memory -
2016 * containing command results. The command completion is all done from
2017 * a poll routine that does not have user context. Therefore you cannot
2018 * copy back directly into user space, or to the kernel stack of a
2019 * process. This routine does not sleep, so can be called from anywhere.
Alan Cox4ac43602006-06-28 04:26:52 -07002020 *
2021 * The caller must hold the brd_lock (see also stli_sendcmd the usual
2022 * entry point)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 */
2024
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002025static 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 -07002026{
Alan Cox4ac43602006-06-28 04:26:52 -07002027 cdkhdr_t __iomem *hdrp;
2028 cdkctrl_t __iomem *cp;
2029 unsigned char __iomem *bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031 if (test_bit(ST_CMDING, &portp->state)) {
Alan Coxa6614992009-01-02 13:46:50 +00002032 printk(KERN_ERR "istallion: command already busy, cmd=%x!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 (int) cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return;
2035 }
2036
2037 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07002038 cp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (size > 0) {
Alan Cox4ac43602006-06-28 04:26:52 -07002040 memcpy_toio((void __iomem *) &(cp->args[0]), arg, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 if (copyback) {
2042 portp->argp = arg;
2043 portp->argsize = size;
2044 }
2045 }
Alan Cox4ac43602006-06-28 04:26:52 -07002046 writel(0, &cp->status);
2047 writel(cmd, &cp->cmd);
2048 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
2049 bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 portp->portidx;
Alan Cox4ac43602006-06-28 04:26:52 -07002051 writeb(readb(bits) | portp->portbit, bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 set_bit(ST_CMDING, &portp->state);
2053 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07002054}
2055
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002056static 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 -07002057{
2058 unsigned long flags;
2059
2060 spin_lock_irqsave(&brd_lock, flags);
2061 __stli_sendcmd(brdp, portp, cmd, arg, size, copyback);
2062 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
2065/*****************************************************************************/
2066
2067/*
2068 * Read data from shared memory. This assumes that the shared memory
2069 * is enabled and that interrupts are off. Basically we just empty out
2070 * the shared memory buffer into the tty buffer. Must be careful to
2071 * handle the case where we fill up the tty buffer, but still have
2072 * more chars to unload.
2073 */
2074
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002075static void stli_read(struct stlibrd *brdp, struct stliport *portp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
Alan Cox4ac43602006-06-28 04:26:52 -07002077 cdkasyrq_t __iomem *rp;
2078 char __iomem *shbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 struct tty_struct *tty;
Alan Cox4ac43602006-06-28 04:26:52 -07002080 unsigned int head, tail, size;
2081 unsigned int len, stlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 if (test_bit(ST_RXSTOP, &portp->state))
2084 return;
Alan Coxd18a7502008-10-13 10:40:07 +01002085 tty = tty_port_tty_get(&portp->port);
Alan Cox4ac43602006-06-28 04:26:52 -07002086 if (tty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 return;
2088
Alan Cox4ac43602006-06-28 04:26:52 -07002089 rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->rxq;
2090 head = (unsigned int) readw(&rp->head);
2091 if (head != ((unsigned int) readw(&rp->head)))
2092 head = (unsigned int) readw(&rp->head);
2093 tail = (unsigned int) readw(&rp->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 size = portp->rxsize;
2095 if (head >= tail) {
2096 len = head - tail;
2097 stlen = len;
2098 } else {
2099 len = size - (tail - head);
2100 stlen = size - tail;
2101 }
2102
Alan Cox33f0f882006-01-09 20:54:13 -08002103 len = tty_buffer_request_room(tty, len);
Alan Cox4ac43602006-06-28 04:26:52 -07002104
2105 shbuf = (char __iomem *) EBRDGETMEMPTR(brdp, portp->rxoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 while (len > 0) {
Alan Cox4ac43602006-06-28 04:26:52 -07002108 unsigned char *cptr;
2109
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08002110 stlen = min(len, stlen);
Alan Cox4ac43602006-06-28 04:26:52 -07002111 tty_prepare_flip_string(tty, &cptr, stlen);
2112 memcpy_fromio(cptr, shbuf + tail, stlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 len -= stlen;
2114 tail += stlen;
2115 if (tail >= size) {
2116 tail = 0;
2117 stlen = head;
2118 }
2119 }
Alan Cox4ac43602006-06-28 04:26:52 -07002120 rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->rxq;
2121 writew(tail, &rp->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 if (head != tail)
2124 set_bit(ST_RXING, &portp->state);
2125
2126 tty_schedule_flip(tty);
Alan Coxd18a7502008-10-13 10:40:07 +01002127 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
2130/*****************************************************************************/
2131
2132/*
2133 * Set up and carry out any delayed commands. There is only a small set
2134 * of slave commands that can be done "off-level". So it is not too
2135 * difficult to deal with them here.
2136 */
2137
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002138static void stli_dodelaycmd(struct stliport *portp, cdkctrl_t __iomem *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
Alan Cox4ac43602006-06-28 04:26:52 -07002140 int cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 if (test_bit(ST_DOSIGS, &portp->state)) {
2143 if (test_bit(ST_DOFLUSHTX, &portp->state) &&
2144 test_bit(ST_DOFLUSHRX, &portp->state))
2145 cmd = A_SETSIGNALSF;
2146 else if (test_bit(ST_DOFLUSHTX, &portp->state))
2147 cmd = A_SETSIGNALSFTX;
2148 else if (test_bit(ST_DOFLUSHRX, &portp->state))
2149 cmd = A_SETSIGNALSFRX;
2150 else
2151 cmd = A_SETSIGNALS;
2152 clear_bit(ST_DOFLUSHTX, &portp->state);
2153 clear_bit(ST_DOFLUSHRX, &portp->state);
2154 clear_bit(ST_DOSIGS, &portp->state);
Alan Cox4ac43602006-06-28 04:26:52 -07002155 memcpy_toio((void __iomem *) &(cp->args[0]), (void *) &portp->asig,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 sizeof(asysigs_t));
Alan Cox4ac43602006-06-28 04:26:52 -07002157 writel(0, &cp->status);
2158 writel(cmd, &cp->cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 set_bit(ST_CMDING, &portp->state);
2160 } else if (test_bit(ST_DOFLUSHTX, &portp->state) ||
2161 test_bit(ST_DOFLUSHRX, &portp->state)) {
2162 cmd = ((test_bit(ST_DOFLUSHTX, &portp->state)) ? FLUSHTX : 0);
2163 cmd |= ((test_bit(ST_DOFLUSHRX, &portp->state)) ? FLUSHRX : 0);
2164 clear_bit(ST_DOFLUSHTX, &portp->state);
2165 clear_bit(ST_DOFLUSHRX, &portp->state);
Alan Cox4ac43602006-06-28 04:26:52 -07002166 memcpy_toio((void __iomem *) &(cp->args[0]), (void *) &cmd, sizeof(int));
2167 writel(0, &cp->status);
2168 writel(A_FLUSH, &cp->cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 set_bit(ST_CMDING, &portp->state);
2170 }
2171}
2172
2173/*****************************************************************************/
2174
2175/*
2176 * Host command service checking. This handles commands or messages
2177 * coming from the slave to the host. Must have board shared memory
2178 * enabled and interrupts off when called. Notice that by servicing the
2179 * read data last we don't need to change the shared memory pointer
2180 * during processing (which is a slow IO operation).
2181 * Return value indicates if this port is still awaiting actions from
2182 * the slave (like open, command, or even TX data being sent). If 0
2183 * then port is still busy, otherwise no longer busy.
2184 */
2185
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002186static int stli_hostcmd(struct stlibrd *brdp, struct stliport *portp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
Alan Cox4ac43602006-06-28 04:26:52 -07002188 cdkasy_t __iomem *ap;
2189 cdkctrl_t __iomem *cp;
2190 struct tty_struct *tty;
2191 asynotify_t nt;
2192 unsigned long oldsigs;
2193 int rc, donerx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Alan Cox4ac43602006-06-28 04:26:52 -07002195 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 cp = &ap->ctrl;
2197
2198/*
2199 * Check if we are waiting for an open completion message.
2200 */
2201 if (test_bit(ST_OPENING, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002202 rc = readl(&cp->openarg);
2203 if (readb(&cp->open) == 0 && rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 if (rc > 0)
2205 rc--;
Alan Cox4ac43602006-06-28 04:26:52 -07002206 writel(0, &cp->openarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 portp->rc = rc;
2208 clear_bit(ST_OPENING, &portp->state);
2209 wake_up_interruptible(&portp->raw_wait);
2210 }
2211 }
2212
2213/*
2214 * Check if we are waiting for a close completion message.
2215 */
2216 if (test_bit(ST_CLOSING, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002217 rc = (int) readl(&cp->closearg);
2218 if (readb(&cp->close) == 0 && rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 if (rc > 0)
2220 rc--;
Alan Cox4ac43602006-06-28 04:26:52 -07002221 writel(0, &cp->closearg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 portp->rc = rc;
2223 clear_bit(ST_CLOSING, &portp->state);
2224 wake_up_interruptible(&portp->raw_wait);
2225 }
2226 }
2227
2228/*
2229 * Check if we are waiting for a command completion message. We may
2230 * need to copy out the command results associated with this command.
2231 */
2232 if (test_bit(ST_CMDING, &portp->state)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002233 rc = readl(&cp->status);
2234 if (readl(&cp->cmd) == 0 && rc != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 if (rc > 0)
2236 rc--;
Alan Cox4ac43602006-06-28 04:26:52 -07002237 if (portp->argp != NULL) {
2238 memcpy_fromio(portp->argp, (void __iomem *) &(cp->args[0]),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 portp->argsize);
Alan Cox4ac43602006-06-28 04:26:52 -07002240 portp->argp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 }
Alan Cox4ac43602006-06-28 04:26:52 -07002242 writel(0, &cp->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 portp->rc = rc;
2244 clear_bit(ST_CMDING, &portp->state);
2245 stli_dodelaycmd(portp, cp);
2246 wake_up_interruptible(&portp->raw_wait);
2247 }
2248 }
2249
2250/*
2251 * Check for any notification messages ready. This includes lots of
2252 * different types of events - RX chars ready, RX break received,
2253 * TX data low or empty in the slave, modem signals changed state.
2254 */
2255 donerx = 0;
2256
2257 if (ap->notify) {
2258 nt = ap->changed;
2259 ap->notify = 0;
Alan Coxd18a7502008-10-13 10:40:07 +01002260 tty = tty_port_tty_get(&portp->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 if (nt.signal & SG_DCD) {
2263 oldsigs = portp->sigs;
2264 portp->sigs = stli_mktiocm(nt.sigvalue);
2265 clear_bit(ST_GETSIGS, &portp->state);
2266 if ((portp->sigs & TIOCM_CD) &&
2267 ((oldsigs & TIOCM_CD) == 0))
Alan Coxb02f5ad62008-07-16 21:55:53 +01002268 wake_up_interruptible(&portp->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if ((oldsigs & TIOCM_CD) &&
2270 ((portp->sigs & TIOCM_CD) == 0)) {
Alan Coxb02f5ad62008-07-16 21:55:53 +01002271 if (portp->port.flags & ASYNC_CHECK_CD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (tty)
Jiri Slabycfccaee2008-02-07 00:16:38 -08002273 tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 }
2275 }
2276 }
2277
2278 if (nt.data & DT_TXEMPTY)
2279 clear_bit(ST_TXBUSY, &portp->state);
2280 if (nt.data & (DT_TXEMPTY | DT_TXLOW)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002281 if (tty != NULL) {
2282 tty_wakeup(tty);
2283 EBRDENABLE(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 }
2285 }
2286
2287 if ((nt.data & DT_RXBREAK) && (portp->rxmarkmsk & BRKINT)) {
Alan Cox4ac43602006-06-28 04:26:52 -07002288 if (tty != NULL) {
Alan Cox33f0f882006-01-09 20:54:13 -08002289 tty_insert_flip_char(tty, 0, TTY_BREAK);
Alan Coxb02f5ad62008-07-16 21:55:53 +01002290 if (portp->port.flags & ASYNC_SAK) {
Alan Cox33f0f882006-01-09 20:54:13 -08002291 do_SAK(tty);
2292 EBRDENABLE(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 }
Alan Cox33f0f882006-01-09 20:54:13 -08002294 tty_schedule_flip(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 }
2296 }
Alan Coxd18a7502008-10-13 10:40:07 +01002297 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 if (nt.data & DT_RXBUSY) {
2300 donerx++;
2301 stli_read(brdp, portp);
2302 }
2303 }
2304
2305/*
2306 * It might seem odd that we are checking for more RX chars here.
2307 * But, we need to handle the case where the tty buffer was previously
2308 * filled, but we had more characters to pass up. The slave will not
2309 * send any more RX notify messages until the RX buffer has been emptied.
2310 * But it will leave the service bits on (since the buffer is not empty).
2311 * So from here we can try to process more RX chars.
2312 */
2313 if ((!donerx) && test_bit(ST_RXING, &portp->state)) {
2314 clear_bit(ST_RXING, &portp->state);
2315 stli_read(brdp, portp);
2316 }
2317
2318 return((test_bit(ST_OPENING, &portp->state) ||
2319 test_bit(ST_CLOSING, &portp->state) ||
2320 test_bit(ST_CMDING, &portp->state) ||
2321 test_bit(ST_TXBUSY, &portp->state) ||
2322 test_bit(ST_RXING, &portp->state)) ? 0 : 1);
2323}
2324
2325/*****************************************************************************/
2326
2327/*
2328 * Service all ports on a particular board. Assumes that the boards
2329 * shared memory is enabled, and that the page pointer is pointed
2330 * at the cdk header structure.
2331 */
2332
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002333static void stli_brdpoll(struct stlibrd *brdp, cdkhdr_t __iomem *hdrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002335 struct stliport *portp;
Alan Cox4ac43602006-06-28 04:26:52 -07002336 unsigned char hostbits[(STL_MAXCHANS / 8) + 1];
2337 unsigned char slavebits[(STL_MAXCHANS / 8) + 1];
2338 unsigned char __iomem *slavep;
2339 int bitpos, bitat, bitsize;
2340 int channr, nrdevs, slavebitchange;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
2342 bitsize = brdp->bitsize;
2343 nrdevs = brdp->nrdevs;
2344
2345/*
2346 * Check if slave wants any service. Basically we try to do as
2347 * little work as possible here. There are 2 levels of service
2348 * bits. So if there is nothing to do we bail early. We check
2349 * 8 service bits at a time in the inner loop, so we can bypass
2350 * the lot if none of them want service.
2351 */
Alan Cox4ac43602006-06-28 04:26:52 -07002352 memcpy_fromio(&hostbits[0], (((unsigned char __iomem *) hdrp) + brdp->hostoffset),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 bitsize);
2354
2355 memset(&slavebits[0], 0, bitsize);
2356 slavebitchange = 0;
2357
2358 for (bitpos = 0; (bitpos < bitsize); bitpos++) {
2359 if (hostbits[bitpos] == 0)
2360 continue;
2361 channr = bitpos * 8;
2362 for (bitat = 0x1; (channr < nrdevs); channr++, bitat <<= 1) {
2363 if (hostbits[bitpos] & bitat) {
2364 portp = brdp->ports[(channr - 1)];
2365 if (stli_hostcmd(brdp, portp)) {
2366 slavebitchange++;
2367 slavebits[bitpos] |= bitat;
2368 }
2369 }
2370 }
2371 }
2372
2373/*
2374 * If any of the ports are no longer busy then update them in the
2375 * slave request bits. We need to do this after, since a host port
2376 * service may initiate more slave requests.
2377 */
2378 if (slavebitchange) {
Alan Cox4ac43602006-06-28 04:26:52 -07002379 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
2380 slavep = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 for (bitpos = 0; (bitpos < bitsize); bitpos++) {
Alan Cox4ac43602006-06-28 04:26:52 -07002382 if (readb(slavebits + bitpos))
2383 writeb(readb(slavep + bitpos) & ~slavebits[bitpos], slavebits + bitpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 }
2385 }
2386}
2387
2388/*****************************************************************************/
2389
2390/*
2391 * Driver poll routine. This routine polls the boards in use and passes
2392 * messages back up to host when necessary. This is actually very
2393 * CPU efficient, since we will always have the kernel poll clock, it
2394 * adds only a few cycles when idle (since board service can be
2395 * determined very easily), but when loaded generates no interrupts
2396 * (with their expensive associated context change).
2397 */
2398
2399static void stli_poll(unsigned long arg)
2400{
Alan Cox4ac43602006-06-28 04:26:52 -07002401 cdkhdr_t __iomem *hdrp;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002402 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08002403 unsigned int brdnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Jiri Slabyff8efe92006-12-08 02:39:27 -08002405 mod_timer(&stli_timerlist, STLI_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407/*
2408 * Check each board and do any servicing required.
2409 */
2410 for (brdnr = 0; (brdnr < stli_nrbrds); brdnr++) {
2411 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07002412 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 continue;
2414 if ((brdp->state & BST_STARTED) == 0)
2415 continue;
2416
Alan Cox4ac43602006-06-28 04:26:52 -07002417 spin_lock(&brd_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07002419 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
2420 if (readb(&hdrp->hostreq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 stli_brdpoll(brdp, hdrp);
2422 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07002423 spin_unlock(&brd_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 }
2425}
2426
2427/*****************************************************************************/
2428
2429/*
2430 * Translate the termios settings into the port setting structure of
2431 * the slave.
2432 */
2433
Alan Coxd18a7502008-10-13 10:40:07 +01002434static void stli_mkasyport(struct tty_struct *tty, struct stliport *portp,
2435 asyport_t *pp, struct ktermios *tiosp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 memset(pp, 0, sizeof(asyport_t));
2438
2439/*
2440 * Start of by setting the baud, char size, parity and stop bit info.
2441 */
Alan Coxd18a7502008-10-13 10:40:07 +01002442 pp->baudout = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if ((tiosp->c_cflag & CBAUD) == B38400) {
Alan Coxb02f5ad62008-07-16 21:55:53 +01002444 if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 pp->baudout = 57600;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002446 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 pp->baudout = 115200;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002448 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 pp->baudout = 230400;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002450 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 pp->baudout = 460800;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002452 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 pp->baudout = (portp->baud_base / portp->custom_divisor);
2454 }
2455 if (pp->baudout > STL_MAXBAUD)
2456 pp->baudout = STL_MAXBAUD;
2457 pp->baudin = pp->baudout;
2458
2459 switch (tiosp->c_cflag & CSIZE) {
2460 case CS5:
2461 pp->csize = 5;
2462 break;
2463 case CS6:
2464 pp->csize = 6;
2465 break;
2466 case CS7:
2467 pp->csize = 7;
2468 break;
2469 default:
2470 pp->csize = 8;
2471 break;
2472 }
2473
2474 if (tiosp->c_cflag & CSTOPB)
2475 pp->stopbs = PT_STOP2;
2476 else
2477 pp->stopbs = PT_STOP1;
2478
2479 if (tiosp->c_cflag & PARENB) {
2480 if (tiosp->c_cflag & PARODD)
2481 pp->parity = PT_ODDPARITY;
2482 else
2483 pp->parity = PT_EVENPARITY;
2484 } else {
2485 pp->parity = PT_NOPARITY;
2486 }
2487
2488/*
2489 * Set up any flow control options enabled.
2490 */
2491 if (tiosp->c_iflag & IXON) {
2492 pp->flow |= F_IXON;
2493 if (tiosp->c_iflag & IXANY)
2494 pp->flow |= F_IXANY;
2495 }
2496 if (tiosp->c_cflag & CRTSCTS)
2497 pp->flow |= (F_RTSFLOW | F_CTSFLOW);
2498
2499 pp->startin = tiosp->c_cc[VSTART];
2500 pp->stopin = tiosp->c_cc[VSTOP];
2501 pp->startout = tiosp->c_cc[VSTART];
2502 pp->stopout = tiosp->c_cc[VSTOP];
2503
2504/*
2505 * Set up the RX char marking mask with those RX error types we must
2506 * catch. We can get the slave to help us out a little here, it will
2507 * ignore parity errors and breaks for us, and mark parity errors in
2508 * the data stream.
2509 */
2510 if (tiosp->c_iflag & IGNPAR)
2511 pp->iflag |= FI_IGNRXERRS;
2512 if (tiosp->c_iflag & IGNBRK)
2513 pp->iflag |= FI_IGNBREAK;
2514
2515 portp->rxmarkmsk = 0;
2516 if (tiosp->c_iflag & (INPCK | PARMRK))
2517 pp->iflag |= FI_1MARKRXERRS;
2518 if (tiosp->c_iflag & BRKINT)
2519 portp->rxmarkmsk |= BRKINT;
2520
2521/*
2522 * Set up clocal processing as required.
2523 */
2524 if (tiosp->c_cflag & CLOCAL)
Alan Coxb02f5ad62008-07-16 21:55:53 +01002525 portp->port.flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 else
Alan Coxb02f5ad62008-07-16 21:55:53 +01002527 portp->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529/*
2530 * Transfer any persistent flags into the asyport structure.
2531 */
2532 pp->pflag = (portp->pflag & 0xffff);
2533 pp->vmin = (portp->pflag & P_RXIMIN) ? 1 : 0;
2534 pp->vtime = (portp->pflag & P_RXITIME) ? 1 : 0;
2535 pp->cc[1] = (portp->pflag & P_RXTHOLD) ? 1 : 0;
2536}
2537
2538/*****************************************************************************/
2539
2540/*
2541 * Construct a slave signals structure for setting the DTR and RTS
2542 * signals as specified.
2543 */
2544
2545static void stli_mkasysigs(asysigs_t *sp, int dtr, int rts)
2546{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 memset(sp, 0, sizeof(asysigs_t));
2548 if (dtr >= 0) {
2549 sp->signal |= SG_DTR;
2550 sp->sigvalue |= ((dtr > 0) ? SG_DTR : 0);
2551 }
2552 if (rts >= 0) {
2553 sp->signal |= SG_RTS;
2554 sp->sigvalue |= ((rts > 0) ? SG_RTS : 0);
2555 }
2556}
2557
2558/*****************************************************************************/
2559
2560/*
2561 * Convert the signals returned from the slave into a local TIOCM type
2562 * signals value. We keep them locally in TIOCM format.
2563 */
2564
2565static long stli_mktiocm(unsigned long sigvalue)
2566{
Alan Cox4ac43602006-06-28 04:26:52 -07002567 long tiocm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 tiocm |= ((sigvalue & SG_DCD) ? TIOCM_CD : 0);
2569 tiocm |= ((sigvalue & SG_CTS) ? TIOCM_CTS : 0);
2570 tiocm |= ((sigvalue & SG_RI) ? TIOCM_RI : 0);
2571 tiocm |= ((sigvalue & SG_DSR) ? TIOCM_DSR : 0);
2572 tiocm |= ((sigvalue & SG_DTR) ? TIOCM_DTR : 0);
2573 tiocm |= ((sigvalue & SG_RTS) ? TIOCM_RTS : 0);
2574 return(tiocm);
2575}
2576
2577/*****************************************************************************/
2578
2579/*
2580 * All panels and ports actually attached have been worked out. All
2581 * we need to do here is set up the appropriate per port data structures.
2582 */
2583
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002584static int stli_initports(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002586 struct stliport *portp;
Jiri Slaby1328d732006-12-08 02:39:19 -08002587 unsigned int i, panelnr, panelport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 for (i = 0, panelnr = 0, panelport = 0; (i < brdp->nrports); i++) {
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002590 portp = kzalloc(sizeof(struct stliport), GFP_KERNEL);
Tobias Klauserb0b4ed72006-03-31 02:30:56 -08002591 if (!portp) {
Alan Coxa6614992009-01-02 13:46:50 +00002592 printk(KERN_WARNING "istallion: failed to allocate port structure\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 continue;
2594 }
Alan Coxd18a7502008-10-13 10:40:07 +01002595 tty_port_init(&portp->port);
Alan Cox31f35932009-01-02 13:45:05 +00002596 portp->port.ops = &stli_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 portp->magic = STLI_PORTMAGIC;
2598 portp->portnr = i;
2599 portp->brdnr = brdp->brdnr;
2600 portp->panelnr = panelnr;
2601 portp->baud_base = STL_BAUDBASE;
Alan Coxa6614992009-01-02 13:46:50 +00002602 portp->port.close_delay = STL_CLOSEDELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 portp->closing_wait = 30 * HZ;
Alan Coxb02f5ad62008-07-16 21:55:53 +01002604 init_waitqueue_head(&portp->port.open_wait);
2605 init_waitqueue_head(&portp->port.close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 init_waitqueue_head(&portp->raw_wait);
2607 panelport++;
2608 if (panelport >= brdp->panels[panelnr]) {
2609 panelport = 0;
2610 panelnr++;
2611 }
2612 brdp->ports[i] = portp;
2613 }
2614
Alan Cox4ac43602006-06-28 04:26:52 -07002615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616}
2617
2618/*****************************************************************************/
2619
2620/*
2621 * All the following routines are board specific hardware operations.
2622 */
2623
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002624static void stli_ecpinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
2626 unsigned long memconf;
2627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 outb(ECP_ATSTOP, (brdp->iobase + ECP_ATCONFR));
2629 udelay(10);
2630 outb(ECP_ATDISABLE, (brdp->iobase + ECP_ATCONFR));
2631 udelay(100);
2632
2633 memconf = (brdp->memaddr & ECP_ATADDRMASK) >> ECP_ATADDRSHFT;
2634 outb(memconf, (brdp->iobase + ECP_ATMEMAR));
2635}
2636
2637/*****************************************************************************/
2638
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002639static void stli_ecpenable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 outb(ECP_ATENABLE, (brdp->iobase + ECP_ATCONFR));
2642}
2643
2644/*****************************************************************************/
2645
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002646static void stli_ecpdisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 outb(ECP_ATDISABLE, (brdp->iobase + ECP_ATCONFR));
2649}
2650
2651/*****************************************************************************/
2652
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002653static void __iomem *stli_ecpgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
Al Viro29756fa2006-10-10 22:47:27 +01002655 void __iomem *ptr;
Alan Cox4ac43602006-06-28 04:26:52 -07002656 unsigned char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
2658 if (offset > brdp->memsize) {
Alan Coxa6614992009-01-02 13:46:50 +00002659 printk(KERN_ERR "istallion: shared memory pointer=%x out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 "range at line=%d(%d), brd=%d\n",
2661 (int) offset, line, __LINE__, brdp->brdnr);
2662 ptr = NULL;
2663 val = 0;
2664 } else {
2665 ptr = brdp->membase + (offset % ECP_ATPAGESIZE);
2666 val = (unsigned char) (offset / ECP_ATPAGESIZE);
2667 }
2668 outb(val, (brdp->iobase + ECP_ATMEMPR));
2669 return(ptr);
2670}
2671
2672/*****************************************************************************/
2673
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002674static void stli_ecpreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 outb(ECP_ATSTOP, (brdp->iobase + ECP_ATCONFR));
2677 udelay(10);
2678 outb(ECP_ATDISABLE, (brdp->iobase + ECP_ATCONFR));
2679 udelay(500);
2680}
2681
2682/*****************************************************************************/
2683
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002684static void stli_ecpintr(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 outb(0x1, brdp->iobase);
2687}
2688
2689/*****************************************************************************/
2690
2691/*
2692 * The following set of functions act on ECP EISA boards.
2693 */
2694
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002695static void stli_ecpeiinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
2697 unsigned long memconf;
2698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 outb(0x1, (brdp->iobase + ECP_EIBRDENAB));
2700 outb(ECP_EISTOP, (brdp->iobase + ECP_EICONFR));
2701 udelay(10);
2702 outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
2703 udelay(500);
2704
2705 memconf = (brdp->memaddr & ECP_EIADDRMASKL) >> ECP_EIADDRSHFTL;
2706 outb(memconf, (brdp->iobase + ECP_EIMEMARL));
2707 memconf = (brdp->memaddr & ECP_EIADDRMASKH) >> ECP_EIADDRSHFTH;
2708 outb(memconf, (brdp->iobase + ECP_EIMEMARH));
2709}
2710
2711/*****************************************************************************/
2712
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002713static void stli_ecpeienable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714{
2715 outb(ECP_EIENABLE, (brdp->iobase + ECP_EICONFR));
2716}
2717
2718/*****************************************************************************/
2719
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002720static void stli_ecpeidisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
2722 outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
2723}
2724
2725/*****************************************************************************/
2726
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002727static void __iomem *stli_ecpeigetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728{
Al Viro29756fa2006-10-10 22:47:27 +01002729 void __iomem *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 unsigned char val;
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 if (offset > brdp->memsize) {
Alan Coxa6614992009-01-02 13:46:50 +00002733 printk(KERN_ERR "istallion: shared memory pointer=%x out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 "range at line=%d(%d), brd=%d\n",
2735 (int) offset, line, __LINE__, brdp->brdnr);
2736 ptr = NULL;
2737 val = 0;
2738 } else {
2739 ptr = brdp->membase + (offset % ECP_EIPAGESIZE);
2740 if (offset < ECP_EIPAGESIZE)
2741 val = ECP_EIENABLE;
2742 else
2743 val = ECP_EIENABLE | 0x40;
2744 }
2745 outb(val, (brdp->iobase + ECP_EICONFR));
2746 return(ptr);
2747}
2748
2749/*****************************************************************************/
2750
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002751static void stli_ecpeireset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752{
2753 outb(ECP_EISTOP, (brdp->iobase + ECP_EICONFR));
2754 udelay(10);
2755 outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
2756 udelay(500);
2757}
2758
2759/*****************************************************************************/
2760
2761/*
2762 * The following set of functions act on ECP MCA boards.
2763 */
2764
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002765static void stli_ecpmcenable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766{
2767 outb(ECP_MCENABLE, (brdp->iobase + ECP_MCCONFR));
2768}
2769
2770/*****************************************************************************/
2771
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002772static void stli_ecpmcdisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773{
2774 outb(ECP_MCDISABLE, (brdp->iobase + ECP_MCCONFR));
2775}
2776
2777/*****************************************************************************/
2778
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002779static void __iomem *stli_ecpmcgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780{
Al Viro29756fa2006-10-10 22:47:27 +01002781 void __iomem *ptr;
Alan Cox4ac43602006-06-28 04:26:52 -07002782 unsigned char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 if (offset > brdp->memsize) {
Alan Coxa6614992009-01-02 13:46:50 +00002785 printk(KERN_ERR "istallion: shared memory pointer=%x out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 "range at line=%d(%d), brd=%d\n",
2787 (int) offset, line, __LINE__, brdp->brdnr);
2788 ptr = NULL;
2789 val = 0;
2790 } else {
2791 ptr = brdp->membase + (offset % ECP_MCPAGESIZE);
2792 val = ((unsigned char) (offset / ECP_MCPAGESIZE)) | ECP_MCENABLE;
2793 }
2794 outb(val, (brdp->iobase + ECP_MCCONFR));
2795 return(ptr);
2796}
2797
2798/*****************************************************************************/
2799
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002800static void stli_ecpmcreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801{
2802 outb(ECP_MCSTOP, (brdp->iobase + ECP_MCCONFR));
2803 udelay(10);
2804 outb(ECP_MCDISABLE, (brdp->iobase + ECP_MCCONFR));
2805 udelay(500);
2806}
2807
2808/*****************************************************************************/
2809
2810/*
2811 * The following set of functions act on ECP PCI boards.
2812 */
2813
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002814static void stli_ecppciinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 outb(ECP_PCISTOP, (brdp->iobase + ECP_PCICONFR));
2817 udelay(10);
2818 outb(0, (brdp->iobase + ECP_PCICONFR));
2819 udelay(500);
2820}
2821
2822/*****************************************************************************/
2823
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002824static void __iomem *stli_ecppcigetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825{
Al Viro29756fa2006-10-10 22:47:27 +01002826 void __iomem *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 unsigned char val;
2828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 if (offset > brdp->memsize) {
Alan Coxa6614992009-01-02 13:46:50 +00002830 printk(KERN_ERR "istallion: shared memory pointer=%x out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 "range at line=%d(%d), board=%d\n",
2832 (int) offset, line, __LINE__, brdp->brdnr);
2833 ptr = NULL;
2834 val = 0;
2835 } else {
2836 ptr = brdp->membase + (offset % ECP_PCIPAGESIZE);
2837 val = (offset / ECP_PCIPAGESIZE) << 1;
2838 }
2839 outb(val, (brdp->iobase + ECP_PCICONFR));
2840 return(ptr);
2841}
2842
2843/*****************************************************************************/
2844
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002845static void stli_ecppcireset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
2847 outb(ECP_PCISTOP, (brdp->iobase + ECP_PCICONFR));
2848 udelay(10);
2849 outb(0, (brdp->iobase + ECP_PCICONFR));
2850 udelay(500);
2851}
2852
2853/*****************************************************************************/
2854
2855/*
2856 * The following routines act on ONboards.
2857 */
2858
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002859static void stli_onbinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860{
2861 unsigned long memconf;
2862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 outb(ONB_ATSTOP, (brdp->iobase + ONB_ATCONFR));
2864 udelay(10);
2865 outb(ONB_ATDISABLE, (brdp->iobase + ONB_ATCONFR));
2866 mdelay(1000);
2867
2868 memconf = (brdp->memaddr & ONB_ATADDRMASK) >> ONB_ATADDRSHFT;
2869 outb(memconf, (brdp->iobase + ONB_ATMEMAR));
2870 outb(0x1, brdp->iobase);
2871 mdelay(1);
2872}
2873
2874/*****************************************************************************/
2875
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002876static void stli_onbenable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 outb((brdp->enabval | ONB_ATENABLE), (brdp->iobase + ONB_ATCONFR));
2879}
2880
2881/*****************************************************************************/
2882
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002883static void stli_onbdisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 outb((brdp->enabval | ONB_ATDISABLE), (brdp->iobase + ONB_ATCONFR));
2886}
2887
2888/*****************************************************************************/
2889
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002890static void __iomem *stli_onbgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
Al Viro29756fa2006-10-10 22:47:27 +01002892 void __iomem *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 if (offset > brdp->memsize) {
Alan Coxa6614992009-01-02 13:46:50 +00002895 printk(KERN_ERR "istallion: shared memory pointer=%x out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 "range at line=%d(%d), brd=%d\n",
2897 (int) offset, line, __LINE__, brdp->brdnr);
2898 ptr = NULL;
2899 } else {
2900 ptr = brdp->membase + (offset % ONB_ATPAGESIZE);
2901 }
2902 return(ptr);
2903}
2904
2905/*****************************************************************************/
2906
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002907static void stli_onbreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 outb(ONB_ATSTOP, (brdp->iobase + ONB_ATCONFR));
2910 udelay(10);
2911 outb(ONB_ATDISABLE, (brdp->iobase + ONB_ATCONFR));
2912 mdelay(1000);
2913}
2914
2915/*****************************************************************************/
2916
2917/*
2918 * The following routines act on ONboard EISA.
2919 */
2920
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002921static void stli_onbeinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922{
2923 unsigned long memconf;
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 outb(0x1, (brdp->iobase + ONB_EIBRDENAB));
2926 outb(ONB_EISTOP, (brdp->iobase + ONB_EICONFR));
2927 udelay(10);
2928 outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
2929 mdelay(1000);
2930
2931 memconf = (brdp->memaddr & ONB_EIADDRMASKL) >> ONB_EIADDRSHFTL;
2932 outb(memconf, (brdp->iobase + ONB_EIMEMARL));
2933 memconf = (brdp->memaddr & ONB_EIADDRMASKH) >> ONB_EIADDRSHFTH;
2934 outb(memconf, (brdp->iobase + ONB_EIMEMARH));
2935 outb(0x1, brdp->iobase);
2936 mdelay(1);
2937}
2938
2939/*****************************************************************************/
2940
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002941static void stli_onbeenable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 outb(ONB_EIENABLE, (brdp->iobase + ONB_EICONFR));
2944}
2945
2946/*****************************************************************************/
2947
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002948static void stli_onbedisable(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
2951}
2952
2953/*****************************************************************************/
2954
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002955static void __iomem *stli_onbegetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956{
Al Viro29756fa2006-10-10 22:47:27 +01002957 void __iomem *ptr;
Alan Cox4ac43602006-06-28 04:26:52 -07002958 unsigned char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960 if (offset > brdp->memsize) {
Alan Coxa6614992009-01-02 13:46:50 +00002961 printk(KERN_ERR "istallion: shared memory pointer=%x out of "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 "range at line=%d(%d), brd=%d\n",
2963 (int) offset, line, __LINE__, brdp->brdnr);
2964 ptr = NULL;
2965 val = 0;
2966 } else {
2967 ptr = brdp->membase + (offset % ONB_EIPAGESIZE);
2968 if (offset < ONB_EIPAGESIZE)
2969 val = ONB_EIENABLE;
2970 else
2971 val = ONB_EIENABLE | 0x40;
2972 }
2973 outb(val, (brdp->iobase + ONB_EICONFR));
2974 return(ptr);
2975}
2976
2977/*****************************************************************************/
2978
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002979static void stli_onbereset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 outb(ONB_EISTOP, (brdp->iobase + ONB_EICONFR));
2982 udelay(10);
2983 outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
2984 mdelay(1000);
2985}
2986
2987/*****************************************************************************/
2988
2989/*
2990 * The following routines act on Brumby boards.
2991 */
2992
Jiri Slaby1f8ec432006-12-08 02:39:18 -08002993static void stli_bbyinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 outb(BBY_ATSTOP, (brdp->iobase + BBY_ATCONFR));
2996 udelay(10);
2997 outb(0, (brdp->iobase + BBY_ATCONFR));
2998 mdelay(1000);
2999 outb(0x1, brdp->iobase);
3000 mdelay(1);
3001}
3002
3003/*****************************************************************************/
3004
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003005static void __iomem *stli_bbygetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006{
Al Viro29756fa2006-10-10 22:47:27 +01003007 void __iomem *ptr;
Alan Cox4ac43602006-06-28 04:26:52 -07003008 unsigned char val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Alan Cox4ac43602006-06-28 04:26:52 -07003010 BUG_ON(offset > brdp->memsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Alan Cox4ac43602006-06-28 04:26:52 -07003012 ptr = brdp->membase + (offset % BBY_PAGESIZE);
3013 val = (unsigned char) (offset / BBY_PAGESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 outb(val, (brdp->iobase + BBY_ATCONFR));
3015 return(ptr);
3016}
3017
3018/*****************************************************************************/
3019
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003020static void stli_bbyreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 outb(BBY_ATSTOP, (brdp->iobase + BBY_ATCONFR));
3023 udelay(10);
3024 outb(0, (brdp->iobase + BBY_ATCONFR));
3025 mdelay(1000);
3026}
3027
3028/*****************************************************************************/
3029
3030/*
3031 * The following routines act on original old Stallion boards.
3032 */
3033
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003034static void stli_stalinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 outb(0x1, brdp->iobase);
3037 mdelay(1000);
3038}
3039
3040/*****************************************************************************/
3041
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003042static void __iomem *stli_stalgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043{
Alan Cox4ac43602006-06-28 04:26:52 -07003044 BUG_ON(offset > brdp->memsize);
3045 return brdp->membase + (offset % STAL_PAGESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046}
3047
3048/*****************************************************************************/
3049
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003050static void stli_stalreset(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051{
Alan Cox4ac43602006-06-28 04:26:52 -07003052 u32 __iomem *vecp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Alan Cox4ac43602006-06-28 04:26:52 -07003054 vecp = (u32 __iomem *) (brdp->membase + 0x30);
3055 writel(0xffff0000, vecp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 outb(0, brdp->iobase);
3057 mdelay(1000);
3058}
3059
3060/*****************************************************************************/
3061
3062/*
3063 * Try to find an ECP board and initialize it. This handles only ECP
3064 * board types.
3065 */
3066
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003067static int stli_initecp(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
Alan Cox4ac43602006-06-28 04:26:52 -07003069 cdkecpsig_t sig;
3070 cdkecpsig_t __iomem *sigsp;
3071 unsigned int status, nxtid;
3072 char *name;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003073 int retval, panelnr, nrports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003075 if ((brdp->iobase == 0) || (brdp->memaddr == 0)) {
3076 retval = -ENODEV;
3077 goto err;
3078 }
3079
Ingo Korbb3061222007-07-17 04:05:23 -07003080 brdp->iosize = ECP_IOSIZE;
3081
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003082 if (!request_region(brdp->iobase, brdp->iosize, "istallion")) {
3083 retval = -EIO;
3084 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 }
3086
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087/*
3088 * Based on the specific board type setup the common vars to access
3089 * and enable shared memory. Set all board specific information now
3090 * as well.
3091 */
3092 switch (brdp->brdtype) {
3093 case BRD_ECP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 brdp->memsize = ECP_MEMSIZE;
3095 brdp->pagesize = ECP_ATPAGESIZE;
3096 brdp->init = stli_ecpinit;
3097 brdp->enable = stli_ecpenable;
3098 brdp->reenable = stli_ecpenable;
3099 brdp->disable = stli_ecpdisable;
3100 brdp->getmemptr = stli_ecpgetmemptr;
3101 brdp->intr = stli_ecpintr;
3102 brdp->reset = stli_ecpreset;
3103 name = "serial(EC8/64)";
3104 break;
3105
3106 case BRD_ECPE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 brdp->memsize = ECP_MEMSIZE;
3108 brdp->pagesize = ECP_EIPAGESIZE;
3109 brdp->init = stli_ecpeiinit;
3110 brdp->enable = stli_ecpeienable;
3111 brdp->reenable = stli_ecpeienable;
3112 brdp->disable = stli_ecpeidisable;
3113 brdp->getmemptr = stli_ecpeigetmemptr;
3114 brdp->intr = stli_ecpintr;
3115 brdp->reset = stli_ecpeireset;
3116 name = "serial(EC8/64-EI)";
3117 break;
3118
3119 case BRD_ECPMC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 brdp->memsize = ECP_MEMSIZE;
3121 brdp->pagesize = ECP_MCPAGESIZE;
3122 brdp->init = NULL;
3123 brdp->enable = stli_ecpmcenable;
3124 brdp->reenable = stli_ecpmcenable;
3125 brdp->disable = stli_ecpmcdisable;
3126 brdp->getmemptr = stli_ecpmcgetmemptr;
3127 brdp->intr = stli_ecpintr;
3128 brdp->reset = stli_ecpmcreset;
3129 name = "serial(EC8/64-MCA)";
3130 break;
3131
3132 case BRD_ECPPCI:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 brdp->memsize = ECP_PCIMEMSIZE;
3134 brdp->pagesize = ECP_PCIPAGESIZE;
3135 brdp->init = stli_ecppciinit;
3136 brdp->enable = NULL;
3137 brdp->reenable = NULL;
3138 brdp->disable = NULL;
3139 brdp->getmemptr = stli_ecppcigetmemptr;
3140 brdp->intr = stli_ecpintr;
3141 brdp->reset = stli_ecppcireset;
3142 name = "serial(EC/RA-PCI)";
3143 break;
3144
3145 default:
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003146 retval = -EINVAL;
3147 goto err_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 }
3149
3150/*
3151 * The per-board operations structure is all set up, so now let's go
3152 * and get the board operational. Firstly initialize board configuration
3153 * registers. Set the memory mapping info so we can get at the boards
3154 * shared memory.
3155 */
3156 EBRDINIT(brdp);
3157
Alan Cox24cb2332008-04-30 00:54:19 -07003158 brdp->membase = ioremap_nocache(brdp->memaddr, brdp->memsize);
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003159 if (brdp->membase == NULL) {
3160 retval = -ENOMEM;
3161 goto err_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 }
3163
3164/*
3165 * Now that all specific code is set up, enable the shared memory and
3166 * look for the a signature area that will tell us exactly what board
3167 * this is, and what it is connected to it.
3168 */
3169 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07003170 sigsp = (cdkecpsig_t __iomem *) EBRDGETMEMPTR(brdp, CDK_SIGADDR);
Al Viro634965f2006-09-23 01:20:31 +01003171 memcpy_fromio(&sig, sigsp, sizeof(cdkecpsig_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 EBRDDISABLE(brdp);
3173
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003174 if (sig.magic != cpu_to_le32(ECP_MAGIC)) {
3175 retval = -ENODEV;
3176 goto err_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 }
3178
3179/*
3180 * Scan through the signature looking at the panels connected to the
3181 * board. Calculate the total number of ports as we go.
3182 */
3183 for (panelnr = 0, nxtid = 0; (panelnr < STL_MAXPANELS); panelnr++) {
3184 status = sig.panelid[nxtid];
3185 if ((status & ECH_PNLIDMASK) != nxtid)
3186 break;
3187
3188 brdp->panelids[panelnr] = status;
3189 nrports = (status & ECH_PNL16PORT) ? 16 : 8;
3190 if ((nrports == 16) && ((status & ECH_PNLXPID) == 0))
3191 nxtid++;
3192 brdp->panels[panelnr] = nrports;
3193 brdp->nrports += nrports;
3194 nxtid++;
3195 brdp->nrpanels++;
3196 }
3197
3198
3199 brdp->state |= BST_FOUND;
Alan Cox4ac43602006-06-28 04:26:52 -07003200 return 0;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003201err_unmap:
3202 iounmap(brdp->membase);
3203 brdp->membase = NULL;
3204err_reg:
3205 release_region(brdp->iobase, brdp->iosize);
3206err:
3207 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208}
3209
3210/*****************************************************************************/
3211
3212/*
3213 * Try to find an ONboard, Brumby or Stallion board and initialize it.
3214 * This handles only these board types.
3215 */
3216
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003217static int stli_initonb(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
Alan Cox4ac43602006-06-28 04:26:52 -07003219 cdkonbsig_t sig;
3220 cdkonbsig_t __iomem *sigsp;
3221 char *name;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003222 int i, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
3224/*
3225 * Do a basic sanity check on the IO and memory addresses.
3226 */
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003227 if (brdp->iobase == 0 || brdp->memaddr == 0) {
3228 retval = -ENODEV;
3229 goto err;
3230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232 brdp->iosize = ONB_IOSIZE;
3233
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003234 if (!request_region(brdp->iobase, brdp->iosize, "istallion")) {
3235 retval = -EIO;
3236 goto err;
3237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239/*
3240 * Based on the specific board type setup the common vars to access
3241 * and enable shared memory. Set all board specific information now
3242 * as well.
3243 */
3244 switch (brdp->brdtype) {
3245 case BRD_ONBOARD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 case BRD_ONBOARD2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 brdp->memsize = ONB_MEMSIZE;
3248 brdp->pagesize = ONB_ATPAGESIZE;
3249 brdp->init = stli_onbinit;
3250 brdp->enable = stli_onbenable;
3251 brdp->reenable = stli_onbenable;
3252 brdp->disable = stli_onbdisable;
3253 brdp->getmemptr = stli_onbgetmemptr;
3254 brdp->intr = stli_ecpintr;
3255 brdp->reset = stli_onbreset;
3256 if (brdp->memaddr > 0x100000)
3257 brdp->enabval = ONB_MEMENABHI;
3258 else
3259 brdp->enabval = ONB_MEMENABLO;
3260 name = "serial(ONBoard)";
3261 break;
3262
3263 case BRD_ONBOARDE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 brdp->memsize = ONB_EIMEMSIZE;
3265 brdp->pagesize = ONB_EIPAGESIZE;
3266 brdp->init = stli_onbeinit;
3267 brdp->enable = stli_onbeenable;
3268 brdp->reenable = stli_onbeenable;
3269 brdp->disable = stli_onbedisable;
3270 brdp->getmemptr = stli_onbegetmemptr;
3271 brdp->intr = stli_ecpintr;
3272 brdp->reset = stli_onbereset;
3273 name = "serial(ONBoard/E)";
3274 break;
3275
3276 case BRD_BRUMBY4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 brdp->memsize = BBY_MEMSIZE;
3278 brdp->pagesize = BBY_PAGESIZE;
3279 brdp->init = stli_bbyinit;
3280 brdp->enable = NULL;
3281 brdp->reenable = NULL;
3282 brdp->disable = NULL;
3283 brdp->getmemptr = stli_bbygetmemptr;
3284 brdp->intr = stli_ecpintr;
3285 brdp->reset = stli_bbyreset;
3286 name = "serial(Brumby)";
3287 break;
3288
3289 case BRD_STALLION:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 brdp->memsize = STAL_MEMSIZE;
3291 brdp->pagesize = STAL_PAGESIZE;
3292 brdp->init = stli_stalinit;
3293 brdp->enable = NULL;
3294 brdp->reenable = NULL;
3295 brdp->disable = NULL;
3296 brdp->getmemptr = stli_stalgetmemptr;
3297 brdp->intr = stli_ecpintr;
3298 brdp->reset = stli_stalreset;
3299 name = "serial(Stallion)";
3300 break;
3301
3302 default:
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003303 retval = -EINVAL;
3304 goto err_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 }
3306
3307/*
3308 * The per-board operations structure is all set up, so now let's go
3309 * and get the board operational. Firstly initialize board configuration
3310 * registers. Set the memory mapping info so we can get at the boards
3311 * shared memory.
3312 */
3313 EBRDINIT(brdp);
3314
Alan Cox24cb2332008-04-30 00:54:19 -07003315 brdp->membase = ioremap_nocache(brdp->memaddr, brdp->memsize);
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003316 if (brdp->membase == NULL) {
3317 retval = -ENOMEM;
3318 goto err_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 }
3320
3321/*
3322 * Now that all specific code is set up, enable the shared memory and
3323 * look for the a signature area that will tell us exactly what board
3324 * this is, and how many ports.
3325 */
3326 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07003327 sigsp = (cdkonbsig_t __iomem *) EBRDGETMEMPTR(brdp, CDK_SIGADDR);
3328 memcpy_fromio(&sig, sigsp, sizeof(cdkonbsig_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 EBRDDISABLE(brdp);
3330
Alan Cox4ac43602006-06-28 04:26:52 -07003331 if (sig.magic0 != cpu_to_le16(ONB_MAGIC0) ||
3332 sig.magic1 != cpu_to_le16(ONB_MAGIC1) ||
3333 sig.magic2 != cpu_to_le16(ONB_MAGIC2) ||
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003334 sig.magic3 != cpu_to_le16(ONB_MAGIC3)) {
3335 retval = -ENODEV;
3336 goto err_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 }
3338
3339/*
3340 * Scan through the signature alive mask and calculate how many ports
3341 * there are on this board.
3342 */
3343 brdp->nrpanels = 1;
3344 if (sig.amask1) {
3345 brdp->nrports = 32;
3346 } else {
3347 for (i = 0; (i < 16); i++) {
3348 if (((sig.amask0 << i) & 0x8000) == 0)
3349 break;
3350 }
3351 brdp->nrports = i;
3352 }
3353 brdp->panels[0] = brdp->nrports;
3354
3355
3356 brdp->state |= BST_FOUND;
Alan Cox4ac43602006-06-28 04:26:52 -07003357 return 0;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003358err_unmap:
3359 iounmap(brdp->membase);
3360 brdp->membase = NULL;
3361err_reg:
3362 release_region(brdp->iobase, brdp->iosize);
3363err:
3364 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365}
3366
3367/*****************************************************************************/
3368
3369/*
3370 * Start up a running board. This routine is only called after the
3371 * code has been down loaded to the board and is operational. It will
3372 * read in the memory map, and get the show on the road...
3373 */
3374
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003375static int stli_startbrd(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376{
Alan Cox4ac43602006-06-28 04:26:52 -07003377 cdkhdr_t __iomem *hdrp;
3378 cdkmem_t __iomem *memp;
3379 cdkasy_t __iomem *ap;
3380 unsigned long flags;
Jiri Slaby1328d732006-12-08 02:39:19 -08003381 unsigned int portnr, nrdevs, i;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003382 struct stliport *portp;
Jiri Slaby1328d732006-12-08 02:39:19 -08003383 int rc = 0;
Alan Cox4ac43602006-06-28 04:26:52 -07003384 u32 memoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
Alan Cox4ac43602006-06-28 04:26:52 -07003386 spin_lock_irqsave(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 EBRDENABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07003388 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 nrdevs = hdrp->nrdevs;
3390
3391#if 0
3392 printk("%s(%d): CDK version %d.%d.%d --> "
3393 "nrdevs=%d memp=%x hostp=%x slavep=%x\n",
Alan Cox4ac43602006-06-28 04:26:52 -07003394 __FILE__, __LINE__, readb(&hdrp->ver_release), readb(&hdrp->ver_modification),
3395 readb(&hdrp->ver_fix), nrdevs, (int) readl(&hdrp->memp), readl(&hdrp->hostp),
3396 readl(&hdrp->slavep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397#endif
3398
3399 if (nrdevs < (brdp->nrports + 1)) {
Alan Coxa6614992009-01-02 13:46:50 +00003400 printk(KERN_ERR "istallion: slave failed to allocate memory for "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 "all devices, devices=%d\n", nrdevs);
3402 brdp->nrports = nrdevs - 1;
3403 }
3404 brdp->nrdevs = nrdevs;
3405 brdp->hostoffset = hdrp->hostp - CDK_CDKADDR;
3406 brdp->slaveoffset = hdrp->slavep - CDK_CDKADDR;
3407 brdp->bitsize = (nrdevs + 7) / 8;
Alan Cox4ac43602006-06-28 04:26:52 -07003408 memoff = readl(&hdrp->memp);
3409 if (memoff > brdp->memsize) {
Alan Coxa6614992009-01-02 13:46:50 +00003410 printk(KERN_ERR "istallion: corrupted shared memory region?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 rc = -EIO;
3412 goto stli_donestartup;
3413 }
Alan Cox4ac43602006-06-28 04:26:52 -07003414 memp = (cdkmem_t __iomem *) EBRDGETMEMPTR(brdp, memoff);
3415 if (readw(&memp->dtype) != TYP_ASYNCTRL) {
Alan Coxa6614992009-01-02 13:46:50 +00003416 printk(KERN_ERR "istallion: no slave control device found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 goto stli_donestartup;
3418 }
3419 memp++;
3420
3421/*
3422 * Cycle through memory allocation of each port. We are guaranteed to
3423 * have all ports inside the first page of slave window, so no need to
3424 * change pages while reading memory map.
3425 */
3426 for (i = 1, portnr = 0; (i < nrdevs); i++, portnr++, memp++) {
Alan Cox4ac43602006-06-28 04:26:52 -07003427 if (readw(&memp->dtype) != TYP_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 break;
3429 portp = brdp->ports[portnr];
Alan Cox4ac43602006-06-28 04:26:52 -07003430 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 break;
3432 portp->devnr = i;
Alan Cox4ac43602006-06-28 04:26:52 -07003433 portp->addr = readl(&memp->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 portp->reqbit = (unsigned char) (0x1 << (i * 8 / nrdevs));
3435 portp->portidx = (unsigned char) (i / 8);
3436 portp->portbit = (unsigned char) (0x1 << (i % 8));
3437 }
3438
Alan Cox4ac43602006-06-28 04:26:52 -07003439 writeb(0xff, &hdrp->slavereq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441/*
3442 * For each port setup a local copy of the RX and TX buffer offsets
3443 * and sizes. We do this separate from the above, because we need to
3444 * move the shared memory page...
3445 */
3446 for (i = 1, portnr = 0; (i < nrdevs); i++, portnr++) {
3447 portp = brdp->ports[portnr];
Alan Cox4ac43602006-06-28 04:26:52 -07003448 if (portp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 break;
3450 if (portp->addr == 0)
3451 break;
Alan Cox4ac43602006-06-28 04:26:52 -07003452 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
3453 if (ap != NULL) {
3454 portp->rxsize = readw(&ap->rxq.size);
3455 portp->txsize = readw(&ap->txq.size);
3456 portp->rxoffset = readl(&ap->rxq.offset);
3457 portp->txoffset = readl(&ap->txq.offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 }
3459 }
3460
3461stli_donestartup:
3462 EBRDDISABLE(brdp);
Alan Cox4ac43602006-06-28 04:26:52 -07003463 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465 if (rc == 0)
3466 brdp->state |= BST_STARTED;
3467
3468 if (! stli_timeron) {
3469 stli_timeron++;
Jiri Slabyff8efe92006-12-08 02:39:27 -08003470 mod_timer(&stli_timerlist, STLI_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 }
3472
Alan Cox4ac43602006-06-28 04:26:52 -07003473 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474}
3475
3476/*****************************************************************************/
3477
3478/*
3479 * Probe and initialize the specified board.
3480 */
3481
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003482static int __devinit stli_brdinit(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483{
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003484 int retval;
3485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 switch (brdp->brdtype) {
3487 case BRD_ECP:
3488 case BRD_ECPE:
3489 case BRD_ECPMC:
3490 case BRD_ECPPCI:
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003491 retval = stli_initecp(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 break;
3493 case BRD_ONBOARD:
3494 case BRD_ONBOARDE:
3495 case BRD_ONBOARD2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 case BRD_BRUMBY4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 case BRD_STALLION:
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003498 retval = stli_initonb(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 default:
Alan Coxa6614992009-01-02 13:46:50 +00003501 printk(KERN_ERR "istallion: board=%d is unknown board "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 "type=%d\n", brdp->brdnr, brdp->brdtype);
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003503 retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 }
3505
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003506 if (retval)
3507 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
3509 stli_initports(brdp);
Alan Coxa6614992009-01-02 13:46:50 +00003510 printk(KERN_INFO "istallion: %s found, board=%d io=%x mem=%x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 "nrpanels=%d nrports=%d\n", stli_brdnames[brdp->brdtype],
3512 brdp->brdnr, brdp->iobase, (int) brdp->memaddr,
3513 brdp->nrpanels, brdp->nrports);
Alan Cox4ac43602006-06-28 04:26:52 -07003514 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515}
3516
Jiri Slabya00f33f2006-12-08 02:39:20 -08003517#if STLI_EISAPROBE != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518/*****************************************************************************/
3519
3520/*
3521 * Probe around trying to find where the EISA boards shared memory
3522 * might be. This is a bit if hack, but it is the best we can do.
3523 */
3524
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003525static int stli_eisamemprobe(struct stlibrd *brdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526{
Alan Cox4ac43602006-06-28 04:26:52 -07003527 cdkecpsig_t ecpsig, __iomem *ecpsigp;
3528 cdkonbsig_t onbsig, __iomem *onbsigp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 int i, foundit;
3530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531/*
3532 * First up we reset the board, to get it into a known state. There
3533 * is only 2 board types here we need to worry about. Don;t use the
3534 * standard board init routine here, it programs up the shared
3535 * memory address, and we don't know it yet...
3536 */
3537 if (brdp->brdtype == BRD_ECPE) {
3538 outb(0x1, (brdp->iobase + ECP_EIBRDENAB));
3539 outb(ECP_EISTOP, (brdp->iobase + ECP_EICONFR));
3540 udelay(10);
3541 outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
3542 udelay(500);
3543 stli_ecpeienable(brdp);
3544 } else if (brdp->brdtype == BRD_ONBOARDE) {
3545 outb(0x1, (brdp->iobase + ONB_EIBRDENAB));
3546 outb(ONB_EISTOP, (brdp->iobase + ONB_EICONFR));
3547 udelay(10);
3548 outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
3549 mdelay(100);
3550 outb(0x1, brdp->iobase);
3551 mdelay(1);
3552 stli_onbeenable(brdp);
3553 } else {
Alan Cox4ac43602006-06-28 04:26:52 -07003554 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 }
3556
3557 foundit = 0;
3558 brdp->memsize = ECP_MEMSIZE;
3559
3560/*
3561 * Board shared memory is enabled, so now we have a poke around and
3562 * see if we can find it.
3563 */
3564 for (i = 0; (i < stli_eisamempsize); i++) {
3565 brdp->memaddr = stli_eisamemprobeaddrs[i];
Alan Cox24cb2332008-04-30 00:54:19 -07003566 brdp->membase = ioremap_nocache(brdp->memaddr, brdp->memsize);
Alan Cox4ac43602006-06-28 04:26:52 -07003567 if (brdp->membase == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 continue;
3569
3570 if (brdp->brdtype == BRD_ECPE) {
Al Viro29756fa2006-10-10 22:47:27 +01003571 ecpsigp = stli_ecpeigetmemptr(brdp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 CDK_SIGADDR, __LINE__);
Alan Cox4ac43602006-06-28 04:26:52 -07003573 memcpy_fromio(&ecpsig, ecpsigp, sizeof(cdkecpsig_t));
3574 if (ecpsig.magic == cpu_to_le32(ECP_MAGIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 foundit = 1;
3576 } else {
Alan Cox4ac43602006-06-28 04:26:52 -07003577 onbsigp = (cdkonbsig_t __iomem *) stli_onbegetmemptr(brdp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 CDK_SIGADDR, __LINE__);
Alan Cox4ac43602006-06-28 04:26:52 -07003579 memcpy_fromio(&onbsig, onbsigp, sizeof(cdkonbsig_t));
3580 if ((onbsig.magic0 == cpu_to_le16(ONB_MAGIC0)) &&
3581 (onbsig.magic1 == cpu_to_le16(ONB_MAGIC1)) &&
3582 (onbsig.magic2 == cpu_to_le16(ONB_MAGIC2)) &&
3583 (onbsig.magic3 == cpu_to_le16(ONB_MAGIC3)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 foundit = 1;
3585 }
3586
3587 iounmap(brdp->membase);
3588 if (foundit)
3589 break;
3590 }
3591
3592/*
3593 * Regardless of whether we found the shared memory or not we must
3594 * disable the region. After that return success or failure.
3595 */
3596 if (brdp->brdtype == BRD_ECPE)
3597 stli_ecpeidisable(brdp);
3598 else
3599 stli_onbedisable(brdp);
3600
3601 if (! foundit) {
3602 brdp->memaddr = 0;
3603 brdp->membase = NULL;
Alan Coxa6614992009-01-02 13:46:50 +00003604 printk(KERN_ERR "istallion: failed to probe shared memory "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 "region for %s in EISA slot=%d\n",
3606 stli_brdnames[brdp->brdtype], (brdp->iobase >> 12));
Alan Cox4ac43602006-06-28 04:26:52 -07003607 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 }
Alan Cox4ac43602006-06-28 04:26:52 -07003609 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610}
Jiri Slabya00f33f2006-12-08 02:39:20 -08003611#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
3613static int stli_getbrdnr(void)
3614{
Jiri Slaby1328d732006-12-08 02:39:19 -08003615 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
3617 for (i = 0; i < STL_MAXBRDS; i++) {
3618 if (!stli_brds[i]) {
3619 if (i >= stli_nrbrds)
3620 stli_nrbrds = i + 1;
3621 return i;
3622 }
3623 }
3624 return -1;
3625}
3626
Jiri Slabya00f33f2006-12-08 02:39:20 -08003627#if STLI_EISAPROBE != 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628/*****************************************************************************/
3629
3630/*
3631 * Probe around and try to find any EISA boards in system. The biggest
3632 * problem here is finding out what memory address is associated with
3633 * an EISA board after it is found. The registers of the ECPE and
3634 * ONboardE are not readable - so we can't read them from there. We
3635 * don't have access to the EISA CMOS (or EISA BIOS) so we don't
3636 * actually have any way to find out the real value. The best we can
3637 * do is go probing around in the usual places hoping we can find it.
3638 */
3639
Al Viro6005e3e2008-11-22 17:34:14 +00003640static int __init stli_findeisabrds(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003642 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08003643 unsigned int iobase, eid, i;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003644 int brdnr, found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645
3646/*
Alan Cox4ac43602006-06-28 04:26:52 -07003647 * Firstly check if this is an EISA system. If this is not an EISA system then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 * don't bother going any further!
3649 */
Alan Cox4ac43602006-06-28 04:26:52 -07003650 if (EISA_bus)
3651 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
3653/*
3654 * Looks like an EISA system, so go searching for EISA boards.
3655 */
3656 for (iobase = 0x1000; (iobase <= 0xc000); iobase += 0x1000) {
3657 outb(0xff, (iobase + 0xc80));
3658 eid = inb(iobase + 0xc80);
3659 eid |= inb(iobase + 0xc81) << 8;
3660 if (eid != STL_EISAID)
3661 continue;
3662
3663/*
3664 * We have found a board. Need to check if this board was
3665 * statically configured already (just in case!).
3666 */
3667 for (i = 0; (i < STL_MAXBRDS); i++) {
3668 brdp = stli_brds[i];
Alan Cox4ac43602006-06-28 04:26:52 -07003669 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 continue;
3671 if (brdp->iobase == iobase)
3672 break;
3673 }
3674 if (i < STL_MAXBRDS)
3675 continue;
3676
3677/*
3678 * We have found a Stallion board and it is not configured already.
3679 * Allocate a board structure and initialize it.
3680 */
Alan Cox4ac43602006-06-28 04:26:52 -07003681 if ((brdp = stli_allocbrd()) == NULL)
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003682 return found ? : -ENOMEM;
Jiri Slaby1328d732006-12-08 02:39:19 -08003683 brdnr = stli_getbrdnr();
3684 if (brdnr < 0)
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003685 return found ? : -ENOMEM;
Jiri Slaby1328d732006-12-08 02:39:19 -08003686 brdp->brdnr = (unsigned int)brdnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 eid = inb(iobase + 0xc82);
3688 if (eid == ECP_EISAID)
3689 brdp->brdtype = BRD_ECPE;
3690 else if (eid == ONB_EISAID)
3691 brdp->brdtype = BRD_ONBOARDE;
3692 else
3693 brdp->brdtype = BRD_UNKNOWN;
3694 brdp->iobase = iobase;
3695 outb(0x1, (iobase + 0xc84));
3696 if (stli_eisamemprobe(brdp))
3697 outb(0, (iobase + 0xc84));
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003698 if (stli_brdinit(brdp) < 0) {
3699 kfree(brdp);
3700 continue;
3701 }
3702
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003703 stli_brds[brdp->brdnr] = brdp;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003704 found++;
Jiri Slabyec3dde52006-12-08 02:39:26 -08003705
3706 for (i = 0; i < brdp->nrports; i++)
3707 tty_register_device(stli_serial,
3708 brdp->brdnr * STL_MAXPORTS + i, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 }
3710
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003711 return found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712}
Jiri Slabya00f33f2006-12-08 02:39:20 -08003713#else
3714static inline int stli_findeisabrds(void) { return 0; }
3715#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716
3717/*****************************************************************************/
3718
3719/*
3720 * Find the next available board number that is free.
3721 */
3722
3723/*****************************************************************************/
3724
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725/*
3726 * We have a Stallion board. Allocate a board structure and
3727 * initialize it. Read its IO and MEMORY resources from PCI
3728 * configuration space.
3729 */
3730
Jiri Slaby845bead2006-12-08 02:39:17 -08003731static int __devinit stli_pciprobe(struct pci_dev *pdev,
3732 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003734 struct stlibrd *brdp;
Jiri Slabyec3dde52006-12-08 02:39:26 -08003735 unsigned int i;
Jiri Slaby1328d732006-12-08 02:39:19 -08003736 int brdnr, retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Jiri Slaby845bead2006-12-08 02:39:17 -08003738 retval = pci_enable_device(pdev);
3739 if (retval)
3740 goto err;
3741 brdp = stli_allocbrd();
3742 if (brdp == NULL) {
3743 retval = -ENOMEM;
3744 goto err;
3745 }
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003746 mutex_lock(&stli_brdslock);
Jiri Slaby1328d732006-12-08 02:39:19 -08003747 brdnr = stli_getbrdnr();
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003748 if (brdnr < 0) {
Alan Coxa6614992009-01-02 13:46:50 +00003749 printk(KERN_INFO "istallion: too many boards found, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 "maximum supported %d\n", STL_MAXBRDS);
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003751 mutex_unlock(&stli_brdslock);
Jiri Slaby845bead2006-12-08 02:39:17 -08003752 retval = -EIO;
3753 goto err_fr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 }
Jiri Slaby1328d732006-12-08 02:39:19 -08003755 brdp->brdnr = (unsigned int)brdnr;
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003756 stli_brds[brdp->brdnr] = brdp;
3757 mutex_unlock(&stli_brdslock);
Jiri Slaby845bead2006-12-08 02:39:17 -08003758 brdp->brdtype = BRD_ECPPCI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759/*
3760 * We have all resources from the board, so lets setup the actual
3761 * board structure now.
3762 */
Jiri Slaby845bead2006-12-08 02:39:17 -08003763 brdp->iobase = pci_resource_start(pdev, 3);
3764 brdp->memaddr = pci_resource_start(pdev, 2);
3765 retval = stli_brdinit(brdp);
3766 if (retval)
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003767 goto err_null;
Jiri Slaby845bead2006-12-08 02:39:17 -08003768
Jiri Slaby39014172006-12-08 02:39:22 -08003769 brdp->state |= BST_PROBED;
Jiri Slaby845bead2006-12-08 02:39:17 -08003770 pci_set_drvdata(pdev, brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Jiri Slaby140e92a2006-12-08 02:39:24 -08003772 EBRDENABLE(brdp);
3773 brdp->enable = NULL;
3774 brdp->disable = NULL;
3775
Jiri Slabyec3dde52006-12-08 02:39:26 -08003776 for (i = 0; i < brdp->nrports; i++)
3777 tty_register_device(stli_serial, brdp->brdnr * STL_MAXPORTS + i,
3778 &pdev->dev);
3779
Alan Cox4ac43602006-06-28 04:26:52 -07003780 return 0;
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003781err_null:
3782 stli_brds[brdp->brdnr] = NULL;
Jiri Slaby845bead2006-12-08 02:39:17 -08003783err_fr:
3784 kfree(brdp);
3785err:
3786 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787}
3788
Mike Frysinger0b9ce5a2009-06-18 16:49:14 -07003789static void __devexit stli_pciremove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003791 struct stlibrd *brdp = pci_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792
Jiri Slaby845bead2006-12-08 02:39:17 -08003793 stli_cleanup_ports(brdp);
3794
3795 iounmap(brdp->membase);
3796 if (brdp->iosize > 0)
3797 release_region(brdp->iobase, brdp->iosize);
3798
3799 stli_brds[brdp->brdnr] = NULL;
3800 kfree(brdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801}
3802
Jiri Slaby845bead2006-12-08 02:39:17 -08003803static struct pci_driver stli_pcidriver = {
3804 .name = "istallion",
3805 .id_table = istallion_pci_tbl,
3806 .probe = stli_pciprobe,
3807 .remove = __devexit_p(stli_pciremove)
3808};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809/*****************************************************************************/
3810
3811/*
3812 * Allocate a new board structure. Fill out the basic info in it.
3813 */
3814
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003815static struct stlibrd *stli_allocbrd(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003817 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003819 brdp = kzalloc(sizeof(struct stlibrd), GFP_KERNEL);
Tobias Klauserb0b4ed72006-03-31 02:30:56 -08003820 if (!brdp) {
Alan Coxa6614992009-01-02 13:46:50 +00003821 printk(KERN_ERR "istallion: failed to allocate memory "
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003822 "(size=%Zd)\n", sizeof(struct stlibrd));
Tobias Klauserb0b4ed72006-03-31 02:30:56 -08003823 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 brdp->magic = STLI_BOARDMAGIC;
Alan Cox4ac43602006-06-28 04:26:52 -07003826 return brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827}
3828
3829/*****************************************************************************/
3830
3831/*
3832 * Scan through all the boards in the configuration and see what we
3833 * can find.
3834 */
3835
Al Viro6005e3e2008-11-22 17:34:14 +00003836static int __init stli_initbrds(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003838 struct stlibrd *brdp, *nxtbrdp;
3839 struct stlconf conf;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003840 unsigned int i, j, found = 0;
Jiri Slaby1328d732006-12-08 02:39:19 -08003841 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08003843 for (stli_nrbrds = 0; stli_nrbrds < ARRAY_SIZE(stli_brdsp);
3844 stli_nrbrds++) {
3845 memset(&conf, 0, sizeof(conf));
3846 if (stli_parsebrd(&conf, stli_brdsp[stli_nrbrds]) == 0)
3847 continue;
Alan Cox4ac43602006-06-28 04:26:52 -07003848 if ((brdp = stli_allocbrd()) == NULL)
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08003849 continue;
3850 brdp->brdnr = stli_nrbrds;
3851 brdp->brdtype = conf.brdtype;
3852 brdp->iobase = conf.ioaddr1;
3853 brdp->memaddr = conf.memaddr;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003854 if (stli_brdinit(brdp) < 0) {
3855 kfree(brdp);
3856 continue;
3857 }
Jiri Slabyb103b5c2006-12-08 02:39:21 -08003858 stli_brds[brdp->brdnr] = brdp;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003859 found++;
Jiri Slabyec3dde52006-12-08 02:39:26 -08003860
3861 for (i = 0; i < brdp->nrports; i++)
3862 tty_register_device(stli_serial,
3863 brdp->brdnr * STL_MAXPORTS + i, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 }
3865
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003866 retval = stli_findeisabrds();
3867 if (retval > 0)
3868 found += retval;
Jiri Slaby845bead2006-12-08 02:39:17 -08003869
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870/*
3871 * All found boards are initialized. Now for a little optimization, if
3872 * no boards are sharing the "shared memory" regions then we can just
3873 * leave them all enabled. This is in fact the usual case.
3874 */
3875 stli_shared = 0;
3876 if (stli_nrbrds > 1) {
3877 for (i = 0; (i < stli_nrbrds); i++) {
3878 brdp = stli_brds[i];
Alan Cox4ac43602006-06-28 04:26:52 -07003879 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 continue;
3881 for (j = i + 1; (j < stli_nrbrds); j++) {
3882 nxtbrdp = stli_brds[j];
Alan Cox4ac43602006-06-28 04:26:52 -07003883 if (nxtbrdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 continue;
3885 if ((brdp->membase >= nxtbrdp->membase) &&
3886 (brdp->membase <= (nxtbrdp->membase +
3887 nxtbrdp->memsize - 1))) {
3888 stli_shared++;
3889 break;
3890 }
3891 }
3892 }
3893 }
3894
3895 if (stli_shared == 0) {
3896 for (i = 0; (i < stli_nrbrds); i++) {
3897 brdp = stli_brds[i];
Alan Cox4ac43602006-06-28 04:26:52 -07003898 if (brdp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 continue;
3900 if (brdp->state & BST_FOUND) {
3901 EBRDENABLE(brdp);
3902 brdp->enable = NULL;
3903 brdp->disable = NULL;
3904 }
3905 }
3906 }
3907
Jiri Slaby140e92a2006-12-08 02:39:24 -08003908 retval = pci_register_driver(&stli_pcidriver);
3909 if (retval && found == 0) {
3910 printk(KERN_ERR "Neither isa nor eisa cards found nor pci "
3911 "driver can be registered!\n");
3912 goto err;
3913 }
3914
Alan Cox4ac43602006-06-28 04:26:52 -07003915 return 0;
Jiri Slaby8f8f5a52006-12-08 02:39:23 -08003916err:
3917 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918}
3919
3920/*****************************************************************************/
3921
3922/*
3923 * Code to handle an "staliomem" read operation. This device is the
3924 * contents of the board shared memory. It is used for down loading
3925 * the slave image (and debugging :-)
3926 */
3927
3928static ssize_t stli_memread(struct file *fp, char __user *buf, size_t count, loff_t *offp)
3929{
Alan Cox4ac43602006-06-28 04:26:52 -07003930 unsigned long flags;
Al Viro29756fa2006-10-10 22:47:27 +01003931 void __iomem *memptr;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003932 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08003933 unsigned int brdnr;
3934 int size, n;
Alan Cox4ac43602006-06-28 04:26:52 -07003935 void *p;
3936 loff_t off = *offp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
Josef Sipeka7113a92006-12-08 02:36:55 -08003938 brdnr = iminor(fp->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 if (brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07003940 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07003942 if (brdp == NULL)
3943 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 if (brdp->state == 0)
Alan Cox4ac43602006-06-28 04:26:52 -07003945 return -ENODEV;
3946 if (off >= brdp->memsize || off + count < off)
3947 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08003949 size = min(count, (size_t)(brdp->memsize - off));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
Alan Cox4ac43602006-06-28 04:26:52 -07003951 /*
3952 * Copy the data a page at a time
3953 */
3954
3955 p = (void *)__get_free_page(GFP_KERNEL);
3956 if(p == NULL)
3957 return -ENOMEM;
3958
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 while (size > 0) {
Alan Cox4ac43602006-06-28 04:26:52 -07003960 spin_lock_irqsave(&brd_lock, flags);
3961 EBRDENABLE(brdp);
Al Viro29756fa2006-10-10 22:47:27 +01003962 memptr = EBRDGETMEMPTR(brdp, off);
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08003963 n = min(size, (int)(brdp->pagesize - (((unsigned long) off) % brdp->pagesize)));
3964 n = min(n, (int)PAGE_SIZE);
Alan Cox4ac43602006-06-28 04:26:52 -07003965 memcpy_fromio(p, memptr, n);
3966 EBRDDISABLE(brdp);
3967 spin_unlock_irqrestore(&brd_lock, flags);
3968 if (copy_to_user(buf, p, n)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 count = -EFAULT;
3970 goto out;
3971 }
Alan Cox4ac43602006-06-28 04:26:52 -07003972 off += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 buf += n;
3974 size -= n;
3975 }
3976out:
Alan Cox4ac43602006-06-28 04:26:52 -07003977 *offp = off;
3978 free_page((unsigned long)p);
3979 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980}
3981
3982/*****************************************************************************/
3983
3984/*
3985 * Code to handle an "staliomem" write operation. This device is the
3986 * contents of the board shared memory. It is used for down loading
3987 * the slave image (and debugging :-)
Alan Cox4ac43602006-06-28 04:26:52 -07003988 *
3989 * FIXME: copy under lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 */
3991
3992static ssize_t stli_memwrite(struct file *fp, const char __user *buf, size_t count, loff_t *offp)
3993{
Alan Cox4ac43602006-06-28 04:26:52 -07003994 unsigned long flags;
Al Viro29756fa2006-10-10 22:47:27 +01003995 void __iomem *memptr;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08003996 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07003997 char __user *chbuf;
Jiri Slaby1328d732006-12-08 02:39:19 -08003998 unsigned int brdnr;
3999 int size, n;
Alan Cox4ac43602006-06-28 04:26:52 -07004000 void *p;
4001 loff_t off = *offp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Josef Sipeka7113a92006-12-08 02:36:55 -08004003 brdnr = iminor(fp->f_path.dentry->d_inode);
Alan Cox4ac43602006-06-28 04:26:52 -07004004
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 if (brdnr >= stli_nrbrds)
Alan Cox4ac43602006-06-28 04:26:52 -07004006 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07004008 if (brdp == NULL)
4009 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 if (brdp->state == 0)
Alan Cox4ac43602006-06-28 04:26:52 -07004011 return -ENODEV;
4012 if (off >= brdp->memsize || off + count < off)
4013 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014
4015 chbuf = (char __user *) buf;
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08004016 size = min(count, (size_t)(brdp->memsize - off));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Alan Cox4ac43602006-06-28 04:26:52 -07004018 /*
4019 * Copy the data a page at a time
4020 */
4021
4022 p = (void *)__get_free_page(GFP_KERNEL);
4023 if(p == NULL)
4024 return -ENOMEM;
4025
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 while (size > 0) {
Jiri Slabya3f8d9d2006-12-08 02:39:18 -08004027 n = min(size, (int)(brdp->pagesize - (((unsigned long) off) % brdp->pagesize)));
4028 n = min(n, (int)PAGE_SIZE);
Alan Cox4ac43602006-06-28 04:26:52 -07004029 if (copy_from_user(p, chbuf, n)) {
4030 if (count == 0)
4031 count = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 goto out;
4033 }
Alan Cox4ac43602006-06-28 04:26:52 -07004034 spin_lock_irqsave(&brd_lock, flags);
4035 EBRDENABLE(brdp);
Al Viro29756fa2006-10-10 22:47:27 +01004036 memptr = EBRDGETMEMPTR(brdp, off);
Alan Cox4ac43602006-06-28 04:26:52 -07004037 memcpy_toio(memptr, p, n);
4038 EBRDDISABLE(brdp);
4039 spin_unlock_irqrestore(&brd_lock, flags);
4040 off += n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 chbuf += n;
4042 size -= n;
4043 }
4044out:
Alan Cox4ac43602006-06-28 04:26:52 -07004045 free_page((unsigned long) p);
4046 *offp = off;
4047 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048}
4049
4050/*****************************************************************************/
4051
4052/*
4053 * Return the board stats structure to user app.
4054 */
4055
4056static int stli_getbrdstats(combrd_t __user *bp)
4057{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004058 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08004059 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060
4061 if (copy_from_user(&stli_brdstats, bp, sizeof(combrd_t)))
4062 return -EFAULT;
4063 if (stli_brdstats.brd >= STL_MAXBRDS)
Alan Cox4ac43602006-06-28 04:26:52 -07004064 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 brdp = stli_brds[stli_brdstats.brd];
Alan Cox4ac43602006-06-28 04:26:52 -07004066 if (brdp == NULL)
4067 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068
4069 memset(&stli_brdstats, 0, sizeof(combrd_t));
4070 stli_brdstats.brd = brdp->brdnr;
4071 stli_brdstats.type = brdp->brdtype;
4072 stli_brdstats.hwid = 0;
4073 stli_brdstats.state = brdp->state;
4074 stli_brdstats.ioaddr = brdp->iobase;
4075 stli_brdstats.memaddr = brdp->memaddr;
4076 stli_brdstats.nrpanels = brdp->nrpanels;
4077 stli_brdstats.nrports = brdp->nrports;
4078 for (i = 0; (i < brdp->nrpanels); i++) {
4079 stli_brdstats.panels[i].panel = i;
4080 stli_brdstats.panels[i].hwid = brdp->panelids[i];
4081 stli_brdstats.panels[i].nrports = brdp->panels[i];
4082 }
4083
4084 if (copy_to_user(bp, &stli_brdstats, sizeof(combrd_t)))
4085 return -EFAULT;
Alan Cox4ac43602006-06-28 04:26:52 -07004086 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087}
4088
4089/*****************************************************************************/
4090
4091/*
4092 * Resolve the referenced port number into a port struct pointer.
4093 */
4094
Jiri Slaby1328d732006-12-08 02:39:19 -08004095static struct stliport *stli_getport(unsigned int brdnr, unsigned int panelnr,
4096 unsigned int portnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004098 struct stlibrd *brdp;
Jiri Slaby1328d732006-12-08 02:39:19 -08004099 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
Jiri Slaby1328d732006-12-08 02:39:19 -08004101 if (brdnr >= STL_MAXBRDS)
Alan Cox4ac43602006-06-28 04:26:52 -07004102 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 brdp = stli_brds[brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07004104 if (brdp == NULL)
4105 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 for (i = 0; (i < panelnr); i++)
4107 portnr += brdp->panels[i];
Jiri Slaby1328d732006-12-08 02:39:19 -08004108 if (portnr >= brdp->nrports)
Alan Cox4ac43602006-06-28 04:26:52 -07004109 return NULL;
4110 return brdp->ports[portnr];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111}
4112
4113/*****************************************************************************/
4114
4115/*
4116 * Return the port stats structure to user app. A NULL port struct
4117 * pointer passed in means that we need to find out from the app
4118 * what port to get stats for (used through board control device).
4119 */
4120
Alan Coxd18a7502008-10-13 10:40:07 +01004121static int stli_portcmdstats(struct tty_struct *tty, struct stliport *portp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122{
4123 unsigned long flags;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004124 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 int rc;
4126
4127 memset(&stli_comstats, 0, sizeof(comstats_t));
4128
Alan Cox4ac43602006-06-28 04:26:52 -07004129 if (portp == NULL)
4130 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 brdp = stli_brds[portp->brdnr];
Alan Cox4ac43602006-06-28 04:26:52 -07004132 if (brdp == NULL)
4133 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
4135 if (brdp->state & BST_STARTED) {
4136 if ((rc = stli_cmdwait(brdp, portp, A_GETSTATS,
4137 &stli_cdkstats, sizeof(asystats_t), 1)) < 0)
Alan Cox4ac43602006-06-28 04:26:52 -07004138 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 } else {
4140 memset(&stli_cdkstats, 0, sizeof(asystats_t));
4141 }
4142
4143 stli_comstats.brd = portp->brdnr;
4144 stli_comstats.panel = portp->panelnr;
4145 stli_comstats.port = portp->portnr;
4146 stli_comstats.state = portp->state;
Wang Chen42a77a12008-07-21 17:48:59 +08004147 stli_comstats.flags = portp->port.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
Alan Cox4ac43602006-06-28 04:26:52 -07004149 spin_lock_irqsave(&brd_lock, flags);
Alan Coxd18a7502008-10-13 10:40:07 +01004150 if (tty != NULL) {
4151 if (portp->port.tty == tty) {
4152 stli_comstats.ttystate = tty->flags;
Alan Cox4ac43602006-06-28 04:26:52 -07004153 stli_comstats.rxbuffered = -1;
Alan Coxd18a7502008-10-13 10:40:07 +01004154 if (tty->termios != NULL) {
4155 stli_comstats.cflags = tty->termios->c_cflag;
4156 stli_comstats.iflags = tty->termios->c_iflag;
4157 stli_comstats.oflags = tty->termios->c_oflag;
4158 stli_comstats.lflags = tty->termios->c_lflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 }
4160 }
4161 }
Alan Cox4ac43602006-06-28 04:26:52 -07004162 spin_unlock_irqrestore(&brd_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163
4164 stli_comstats.txtotal = stli_cdkstats.txchars;
4165 stli_comstats.rxtotal = stli_cdkstats.rxchars + stli_cdkstats.ringover;
4166 stli_comstats.txbuffered = stli_cdkstats.txringq;
4167 stli_comstats.rxbuffered += stli_cdkstats.rxringq;
4168 stli_comstats.rxoverrun = stli_cdkstats.overruns;
4169 stli_comstats.rxparity = stli_cdkstats.parity;
4170 stli_comstats.rxframing = stli_cdkstats.framing;
4171 stli_comstats.rxlost = stli_cdkstats.ringover;
4172 stli_comstats.rxbreaks = stli_cdkstats.rxbreaks;
4173 stli_comstats.txbreaks = stli_cdkstats.txbreaks;
4174 stli_comstats.txxon = stli_cdkstats.txstart;
4175 stli_comstats.txxoff = stli_cdkstats.txstop;
4176 stli_comstats.rxxon = stli_cdkstats.rxstart;
4177 stli_comstats.rxxoff = stli_cdkstats.rxstop;
4178 stli_comstats.rxrtsoff = stli_cdkstats.rtscnt / 2;
4179 stli_comstats.rxrtson = stli_cdkstats.rtscnt - stli_comstats.rxrtsoff;
4180 stli_comstats.modem = stli_cdkstats.dcdcnt;
4181 stli_comstats.hwid = stli_cdkstats.hwid;
4182 stli_comstats.signals = stli_mktiocm(stli_cdkstats.signals);
4183
Alan Cox4ac43602006-06-28 04:26:52 -07004184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185}
4186
4187/*****************************************************************************/
4188
4189/*
4190 * Return the port stats structure to user app. A NULL port struct
4191 * pointer passed in means that we need to find out from the app
4192 * what port to get stats for (used through board control device).
4193 */
4194
Alan Coxd18a7502008-10-13 10:40:07 +01004195static int stli_getportstats(struct tty_struct *tty, struct stliport *portp,
4196 comstats_t __user *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004198 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07004199 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
4201 if (!portp) {
4202 if (copy_from_user(&stli_comstats, cp, sizeof(comstats_t)))
4203 return -EFAULT;
4204 portp = stli_getport(stli_comstats.brd, stli_comstats.panel,
4205 stli_comstats.port);
4206 if (!portp)
4207 return -ENODEV;
4208 }
4209
4210 brdp = stli_brds[portp->brdnr];
4211 if (!brdp)
4212 return -ENODEV;
4213
Alan Coxd18a7502008-10-13 10:40:07 +01004214 if ((rc = stli_portcmdstats(tty, portp)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 return rc;
4216
4217 return copy_to_user(cp, &stli_comstats, sizeof(comstats_t)) ?
4218 -EFAULT : 0;
4219}
4220
4221/*****************************************************************************/
4222
4223/*
4224 * Clear the port stats structure. We also return it zeroed out...
4225 */
4226
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004227static int stli_clrportstats(struct stliport *portp, comstats_t __user *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004229 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07004230 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231
4232 if (!portp) {
4233 if (copy_from_user(&stli_comstats, cp, sizeof(comstats_t)))
4234 return -EFAULT;
4235 portp = stli_getport(stli_comstats.brd, stli_comstats.panel,
4236 stli_comstats.port);
4237 if (!portp)
4238 return -ENODEV;
4239 }
4240
4241 brdp = stli_brds[portp->brdnr];
4242 if (!brdp)
4243 return -ENODEV;
4244
4245 if (brdp->state & BST_STARTED) {
4246 if ((rc = stli_cmdwait(brdp, portp, A_CLEARSTATS, NULL, 0, 0)) < 0)
4247 return rc;
4248 }
4249
4250 memset(&stli_comstats, 0, sizeof(comstats_t));
4251 stli_comstats.brd = portp->brdnr;
4252 stli_comstats.panel = portp->panelnr;
4253 stli_comstats.port = portp->portnr;
4254
4255 if (copy_to_user(cp, &stli_comstats, sizeof(comstats_t)))
4256 return -EFAULT;
4257 return 0;
4258}
4259
4260/*****************************************************************************/
4261
4262/*
4263 * Return the entire driver ports structure to a user app.
4264 */
4265
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004266static int stli_getportstruct(struct stliport __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267{
Jiri Slaby1328d732006-12-08 02:39:19 -08004268 struct stliport stli_dummyport;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004269 struct stliport *portp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004271 if (copy_from_user(&stli_dummyport, arg, sizeof(struct stliport)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 return -EFAULT;
4273 portp = stli_getport(stli_dummyport.brdnr, stli_dummyport.panelnr,
4274 stli_dummyport.portnr);
4275 if (!portp)
4276 return -ENODEV;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004277 if (copy_to_user(arg, portp, sizeof(struct stliport)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 return -EFAULT;
4279 return 0;
4280}
4281
4282/*****************************************************************************/
4283
4284/*
4285 * Return the entire driver board structure to a user app.
4286 */
4287
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004288static int stli_getbrdstruct(struct stlibrd __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289{
Jiri Slaby1328d732006-12-08 02:39:19 -08004290 struct stlibrd stli_dummybrd;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004291 struct stlibrd *brdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004293 if (copy_from_user(&stli_dummybrd, arg, sizeof(struct stlibrd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 return -EFAULT;
Jiri Slaby1328d732006-12-08 02:39:19 -08004295 if (stli_dummybrd.brdnr >= STL_MAXBRDS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 return -ENODEV;
4297 brdp = stli_brds[stli_dummybrd.brdnr];
4298 if (!brdp)
4299 return -ENODEV;
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004300 if (copy_to_user(arg, brdp, sizeof(struct stlibrd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 return -EFAULT;
4302 return 0;
4303}
4304
4305/*****************************************************************************/
4306
4307/*
4308 * The "staliomem" device is also required to do some special operations on
4309 * the board. We need to be able to send an interrupt to the board,
4310 * reset it, and start/stop it.
4311 */
4312
4313static int stli_memioctl(struct inode *ip, struct file *fp, unsigned int cmd, unsigned long arg)
4314{
Jiri Slaby1f8ec432006-12-08 02:39:18 -08004315 struct stlibrd *brdp;
Alan Cox4ac43602006-06-28 04:26:52 -07004316 int brdnr, rc, done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 void __user *argp = (void __user *)arg;
4318
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319/*
4320 * First up handle the board independent ioctls.
4321 */
4322 done = 0;
4323 rc = 0;
4324
Alan Cox37361132008-04-30 00:53:19 -07004325 lock_kernel();
4326
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 switch (cmd) {
4328 case COM_GETPORTSTATS:
Alan Coxd18a7502008-10-13 10:40:07 +01004329 rc = stli_getportstats(NULL, NULL, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 done++;
4331 break;
4332 case COM_CLRPORTSTATS:
4333 rc = stli_clrportstats(NULL, argp);
4334 done++;
4335 break;
4336 case COM_GETBRDSTATS:
4337 rc = stli_getbrdstats(argp);
4338 done++;
4339 break;
4340 case COM_READPORT:
4341 rc = stli_getportstruct(argp);
4342 done++;
4343 break;
4344 case COM_READBOARD:
4345 rc = stli_getbrdstruct(argp);
4346 done++;
4347 break;
4348 }
Alan Cox37361132008-04-30 00:53:19 -07004349 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350
4351 if (done)
Alan Cox4ac43602006-06-28 04:26:52 -07004352 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353
4354/*
4355 * Now handle the board specific ioctls. These all depend on the
4356 * minor number of the device they were called from.
4357 */
4358 brdnr = iminor(ip);
4359 if (brdnr >= STL_MAXBRDS)
Alan Cox4ac43602006-06-28 04:26:52 -07004360 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 brdp = stli_brds[brdnr];
4362 if (!brdp)
Alan Cox4ac43602006-06-28 04:26:52 -07004363 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 if (brdp->state == 0)
Alan Cox4ac43602006-06-28 04:26:52 -07004365 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366
Alan Cox37361132008-04-30 00:53:19 -07004367 lock_kernel();
4368
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 switch (cmd) {
4370 case STL_BINTR:
4371 EBRDINTR(brdp);
4372 break;
4373 case STL_BSTART:
4374 rc = stli_startbrd(brdp);
4375 break;
4376 case STL_BSTOP:
4377 brdp->state &= ~BST_STARTED;
4378 break;
4379 case STL_BRESET:
4380 brdp->state &= ~BST_STARTED;
4381 EBRDRESET(brdp);
4382 if (stli_shared == 0) {
4383 if (brdp->reenable != NULL)
4384 (* brdp->reenable)(brdp);
4385 }
4386 break;
4387 default:
4388 rc = -ENOIOCTLCMD;
4389 break;
4390 }
Alan Cox37361132008-04-30 00:53:19 -07004391 unlock_kernel();
Alan Cox4ac43602006-06-28 04:26:52 -07004392 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393}
4394
Jeff Dikeb68e31d2006-10-02 02:17:18 -07004395static const struct tty_operations stli_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 .open = stli_open,
4397 .close = stli_close,
4398 .write = stli_write,
4399 .put_char = stli_putchar,
4400 .flush_chars = stli_flushchars,
4401 .write_room = stli_writeroom,
4402 .chars_in_buffer = stli_charsinbuffer,
4403 .ioctl = stli_ioctl,
4404 .set_termios = stli_settermios,
4405 .throttle = stli_throttle,
4406 .unthrottle = stli_unthrottle,
4407 .stop = stli_stop,
4408 .start = stli_start,
4409 .hangup = stli_hangup,
4410 .flush_buffer = stli_flushbuffer,
4411 .break_ctl = stli_breakctl,
4412 .wait_until_sent = stli_waituntilsent,
4413 .send_xchar = stli_sendxchar,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 .tiocmget = stli_tiocmget,
4415 .tiocmset = stli_tiocmset,
Alexey Dobriyan5bd6de72009-03-31 15:19:16 -07004416 .proc_fops = &stli_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417};
4418
Alan Cox31f35932009-01-02 13:45:05 +00004419static const struct tty_port_operations stli_port_ops = {
4420 .carrier_raised = stli_carrier_raised,
Alan Coxfcc8ac12009-06-11 12:24:17 +01004421 .dtr_rts = stli_dtr_rts,
Alan Cox31f35932009-01-02 13:45:05 +00004422};
4423
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424/*****************************************************************************/
Jiri Slabyf1cc54f2006-12-08 02:39:24 -08004425/*
4426 * Loadable module initialization stuff.
4427 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428
Jiri Slabyf2362c92006-12-08 02:39:25 -08004429static void istallion_cleanup_isa(void)
Jiri Slabyf1cc54f2006-12-08 02:39:24 -08004430{
4431 struct stlibrd *brdp;
4432 unsigned int j;
Jiri Slabyf1cc54f2006-12-08 02:39:24 -08004433
4434 for (j = 0; (j < stli_nrbrds); j++) {
4435 if ((brdp = stli_brds[j]) == NULL || (brdp->state & BST_PROBED))
4436 continue;
4437
4438 stli_cleanup_ports(brdp);
4439
4440 iounmap(brdp->membase);
4441 if (brdp->iosize > 0)
4442 release_region(brdp->iobase, brdp->iosize);
4443 kfree(brdp);
4444 stli_brds[j] = NULL;
4445 }
4446}
4447
Jiri Slabyf2362c92006-12-08 02:39:25 -08004448static int __init istallion_module_init(void)
4449{
4450 unsigned int i;
4451 int retval;
4452
4453 printk(KERN_INFO "%s: version %s\n", stli_drvtitle, stli_drvversion);
4454
4455 spin_lock_init(&stli_lock);
4456 spin_lock_init(&brd_lock);
4457
4458 stli_txcookbuf = kmalloc(STLI_TXBUFSIZE, GFP_KERNEL);
4459 if (!stli_txcookbuf) {
Alan Coxa6614992009-01-02 13:46:50 +00004460 printk(KERN_ERR "istallion: failed to allocate memory "
Jiri Slabyf2362c92006-12-08 02:39:25 -08004461 "(size=%d)\n", STLI_TXBUFSIZE);
4462 retval = -ENOMEM;
4463 goto err;
4464 }
4465
4466 stli_serial = alloc_tty_driver(STL_MAXBRDS * STL_MAXPORTS);
4467 if (!stli_serial) {
4468 retval = -ENOMEM;
4469 goto err_free;
4470 }
4471
4472 stli_serial->owner = THIS_MODULE;
4473 stli_serial->driver_name = stli_drvname;
4474 stli_serial->name = stli_serialname;
4475 stli_serial->major = STL_SERIALMAJOR;
4476 stli_serial->minor_start = 0;
4477 stli_serial->type = TTY_DRIVER_TYPE_SERIAL;
4478 stli_serial->subtype = SERIAL_TYPE_NORMAL;
4479 stli_serial->init_termios = stli_deftermios;
Jiri Slabyec3dde52006-12-08 02:39:26 -08004480 stli_serial->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Jiri Slabyf2362c92006-12-08 02:39:25 -08004481 tty_set_operations(stli_serial, &stli_ops);
4482
4483 retval = tty_register_driver(stli_serial);
4484 if (retval) {
Alan Coxa6614992009-01-02 13:46:50 +00004485 printk(KERN_ERR "istallion: failed to register serial driver\n");
Jiri Slabyf2362c92006-12-08 02:39:25 -08004486 goto err_ttyput;
4487 }
4488
4489 retval = stli_initbrds();
4490 if (retval)
4491 goto err_ttyunr;
4492
4493/*
4494 * Set up a character driver for the shared memory region. We need this
4495 * to down load the slave code image. Also it is a useful debugging tool.
4496 */
4497 retval = register_chrdev(STL_SIOMEMMAJOR, "staliomem", &stli_fsiomem);
4498 if (retval) {
Alan Coxa6614992009-01-02 13:46:50 +00004499 printk(KERN_ERR "istallion: failed to register serial memory "
Jiri Slabyf2362c92006-12-08 02:39:25 -08004500 "device\n");
4501 goto err_deinit;
4502 }
4503
4504 istallion_class = class_create(THIS_MODULE, "staliomem");
4505 for (i = 0; i < 4; i++)
Greg Kroah-Hartman03457cd2008-07-21 20:03:34 -07004506 device_create(istallion_class, NULL, MKDEV(STL_SIOMEMMAJOR, i),
4507 NULL, "staliomem%d", i);
Jiri Slabyf2362c92006-12-08 02:39:25 -08004508
4509 return 0;
4510err_deinit:
4511 pci_unregister_driver(&stli_pcidriver);
4512 istallion_cleanup_isa();
4513err_ttyunr:
4514 tty_unregister_driver(stli_serial);
4515err_ttyput:
4516 put_tty_driver(stli_serial);
4517err_free:
4518 kfree(stli_txcookbuf);
4519err:
4520 return retval;
4521}
4522
4523/*****************************************************************************/
4524
4525static void __exit istallion_module_exit(void)
4526{
4527 unsigned int j;
4528
4529 printk(KERN_INFO "Unloading %s: version %s\n", stli_drvtitle,
4530 stli_drvversion);
4531
4532 if (stli_timeron) {
4533 stli_timeron = 0;
4534 del_timer_sync(&stli_timerlist);
4535 }
4536
4537 unregister_chrdev(STL_SIOMEMMAJOR, "staliomem");
4538
4539 for (j = 0; j < 4; j++)
tonyj@suse.de07c015e2007-08-07 22:28:44 -07004540 device_destroy(istallion_class, MKDEV(STL_SIOMEMMAJOR, j));
Jiri Slabyf2362c92006-12-08 02:39:25 -08004541 class_destroy(istallion_class);
4542
4543 pci_unregister_driver(&stli_pcidriver);
4544 istallion_cleanup_isa();
4545
4546 tty_unregister_driver(stli_serial);
4547 put_tty_driver(stli_serial);
4548
4549 kfree(stli_txcookbuf);
4550}
4551
Jiri Slabyf1cc54f2006-12-08 02:39:24 -08004552module_init(istallion_module_init);
4553module_exit(istallion_module_exit);